Skip to content

Commit 17ac11e

Browse files
committed
Merge branch 'master' into cc0-da-legalcode
2 parents fd6ef56 + 09ae335 commit 17ac11e

File tree

229 files changed

+19290
-1984
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

229 files changed

+19290
-1984
lines changed

.gitignore

+13-53
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,17 @@
1-
cc-wp-theme
2-
vendor
3-
composer.phar
4-
python_env/bin
5-
!python_env/bin/ccengine.fcgi.in
6-
python_env/build
7-
python_env/include
8-
python_env/lib
9-
python_env/local
10-
python_env/paste_errors.log
11-
python_env/.Python
12-
python_env/src/
13-
docroot/license.rdf
14-
docroot/license_rdf
1+
# symantic web symlinks
152
docroot/rdf
16-
docroot/wp-content/
17-
docroot/wordpress/
18-
#docroot/sitemap.*
19-
docroot/wp-config-local.php
20-
vendor/*# -*- mode: gitignore; -*-
21-
*~
22-
\#*\#
23-
/.emacs.desktop
24-
/.emacs.desktop.lock
25-
*.elc
26-
#*.apk
27-
*.exe
28-
*.dmg
29-
auto-save-list
30-
tramp
31-
.\#*
32-
*.swp
33-
34-
# Org-mode
35-
.org-id-locations
36-
*_archive
37-
38-
# flymake-mode
39-
*_flymake.*
40-
41-
# eshell files
42-
/eshell/history
43-
/eshell/lastdir
44-
45-
# elpa packages
46-
/elpa/
47-
48-
# reftex files
49-
*.rel
3+
docroot/license_rdf
4+
docroot/cc.licenserdf
505

51-
# AUCTeX auto folder
52-
/auto/
6+
# repositories
7+
python_src/rdfadict/
8+
python_src/cc.licenserdf/
9+
python_src/cc.license/
10+
python_src/cc.i18n/
11+
python_src/cc.engine/
5312

54-
# apitest
55-
/apitest/node_modules
13+
# transstats.csv symlink
14+
transstats.csv
5615

57-
.DS_Store
16+
# vim
17+
*.swp

.venv/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

CODE_OF_CONDUCT.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ project and all other Creative Commons open source projects are governed by our
88

99
For a history of updates, see the [page history here][updates].
1010

11-
[code_of_conduct]:https://creativecommons.github.io/community/code-of-conduct/
12-
[reporting_guide]:https://creativecommons.github.io/community/code-of-conduct/enforcement/
13-
[updates]:https://github.com/creativecommons/creativecommons.github.io-source/commits/master/content/community/code-of-conduct/contents.lr
11+
[code_of_conduct]:https://opensource.creativecommons.org/community/code-of-conduct/
12+
[reporting_guide]:https://opensource.creativecommons.org/community/code-of-conduct/enforcement/
13+
[updates]:https://github.com/creativecommons/creativecommons.github.io-source/commits/master/content/community/code-of-conduct/contents.lr

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ a set of guidelines to help you contribute to this project.
88
By participating in this project, you are expected to uphold our [Code of
99
Conduct][code_of_conduct].
1010

11-
[code_of_conduct]:https://creativecommons.github.io/community/code-of-conduct/
11+
[code_of_conduct]:https://opensource.creativecommons.org/community/code-of-conduct/
1212

1313
## Project Documentation
1414

@@ -22,10 +22,10 @@ you'd like to see documented.
2222
Please follow the processes in our general [Contributing Code][contributing]
2323
guidelines on the Creative Common Open Source website.
2424

25-
[contributing]:https://creativecommons.github.io/contributing-code/
25+
[contributing]:https://opensource.creativecommons.org/contributing-code/
2626

2727
## Questions or Thoughts?
2828

2929
Talk to us on [one of our community forums][community].
3030

31-
[community]:https://creativecommons.github.io/community/
31+
[community]:https://opensource.creativecommons.org/community/

Pipfile

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# pipenv alone does not setup the License Engine. See scripts/setup_engine.sh
2+
# and README.md
3+
[[source]]
4+
name = "pypi"
5+
url = "https://pypi.org/simple"
6+
verify_ssl = true
7+
8+
[dev-packages]
9+
10+
[packages]
11+
[packages."cc.engine"]
12+
editable = true
13+
path = "python_src/cc.engine"
14+
[packages."cc.i18n"]
15+
editable = true
16+
path = "python_src/cc.i18n"
17+
[packages."cc.license"]
18+
editable = true
19+
path = "python_src/cc.license"
20+
[packages."cc.licenserdf"]
21+
editable = true
22+
path = "python_src/cc.licenserdf"
23+
[packages.future]
24+
[packages.rdfadict]
25+
editable = true
26+
path = "python_src/rdfadict"
27+
28+
[requires]
29+
python_version = "2.7"

0 commit comments

Comments
 (0)