-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jesse Stippel
authored and
Jesse Stippel
committed
Dec 17, 2015
0 parents
commit fea9eee
Showing
50 changed files
with
1,685 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[report] | ||
include = | ||
src/operun/* | ||
omit = | ||
*/test* | ||
*/upgrades/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[*] | ||
indent_style = space | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
|
||
[{*.py,*.cfg}] | ||
indent_size = 4 | ||
|
||
[{*.html,*.dtml,*.pt,*.zpt,*.xml,*.zcml,*.js}] | ||
indent_size = 2 | ||
|
||
[Makefile] | ||
indent_style = tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CHANGES.rst merge=union |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
<<<<<<< HEAD | ||
*.egg-info | ||
*.mo | ||
*.pyc | ||
.installed.cfg | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
.settings/ | ||
bin/ | ||
buildout-cache/ | ||
develop-eggs/ | ||
parts/ | ||
src/* | ||
!src/operun | ||
var/ | ||
htmlcov/ | ||
.coverage | ||
*.log | ||
output.xml | ||
*.swp | ||
log.html | ||
report.html | ||
======= | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*,cover | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
||
# node and grunt | ||
node_modules/ | ||
package.json | ||
Gruntfile.js | ||
temp_resources | ||
|
||
>>>>>>> 9c94bcb8ddaff54da1d5fe5f02a7403fafb761c4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
language: python | ||
sudo: false | ||
cache: | ||
pip: true | ||
directories: | ||
- $HOME/buildout-cache | ||
python: | ||
- 2.7 | ||
before_install: | ||
- mkdir -p $HOME/buildout-cache/{eggs,downloads} | ||
- mkdir $HOME/.buildout | ||
- echo "[buildout]" > $HOME/.buildout/default.cfg | ||
- echo "download-cache = $HOME/buildout-cache/downloads" >> $HOME/.buildout/default.cfg | ||
- echo "eggs-directory = $HOME/buildout-cache/eggs" >> $HOME/.buildout/default.cfg | ||
install: | ||
- python bootstrap-buildout.py -c travis.cfg | ||
- bin/buildout -Nc travis.cfg | ||
script: | ||
- bin/code-analysis | ||
- bin/test | ||
after_success: | ||
- bin/createcoverage | ||
- pip install coveralls | ||
- coveralls | ||
|
||
notifications: | ||
email: | ||
- [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Changelog | ||
========= | ||
|
||
|
||
1.0a1 (unreleased) | ||
------------------ | ||
|
||
- Initial release. | ||
[Netroxen] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- Jesse Stippel, [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
graft src/operun | ||
graft docs | ||
include *.rst | ||
global-exclude *.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
.. This README is meant for consumption by humans and pypi. Pypi can render rst files so please do not use Sphinx features. | ||
If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide_addons.html | ||
This text does not appear on pypi or github. It is a comment. | ||
============================================================================== | ||
operun.gallery | ||
============================================================================== | ||
|
||
Tell me what your product does | ||
|
||
Features | ||
-------- | ||
|
||
- Can be bullet points | ||
|
||
|
||
Examples | ||
-------- | ||
|
||
This add-on can be seen in action at the following sites: | ||
- Is there a page on the internet where everybody can see the features? | ||
|
||
|
||
Documentation | ||
------------- | ||
|
||
Full documentation for end users can be found in the "docs" folder, and is also available online at http://docs.plone.org/foo/bar | ||
|
||
|
||
Translations | ||
------------ | ||
|
||
This product has been translated into | ||
|
||
- Klingon (thanks, K'Plai) | ||
|
||
|
||
Installation | ||
------------ | ||
|
||
Install operun.gallery by adding it to your buildout:: | ||
|
||
[buildout] | ||
|
||
... | ||
|
||
eggs = | ||
operun.gallery | ||
|
||
|
||
and then running ``bin/buildout`` | ||
|
||
|
||
Contribute | ||
---------- | ||
|
||
- Issue Tracker: https://github.com/collective/operun.gallery/issues | ||
- Source Code: https://github.com/collective/operun.gallery | ||
- Documentation: https://docs.plone.org/foo/bar | ||
|
||
|
||
Support | ||
------- | ||
|
||
If you are having issues, please let us know. | ||
We have a mailing list located at: [email protected] | ||
|
||
|
||
License | ||
------- | ||
|
||
The project is licensed under the GPLv2. |
Oops, something went wrong.