Permalink
Please sign in to comment.
Showing
with
1,076 additions
and 0 deletions.
- +1 −0 .gitignore
- +3 −0 MANIFEST.in
- +19 −0 README.txt
- +10 −0 ScrumBoard.egg-info/PKG-INFO
- +33 −0 ScrumBoard.egg-info/SOURCES.txt
- +1 −0 ScrumBoard.egg-info/dependency_links.txt
- +7 −0 ScrumBoard.egg-info/entry_points.txt
- +1 −0 ScrumBoard.egg-info/not-zip-safe
- +2 −0 ScrumBoard.egg-info/paster_plugins.txt
- +3 −0 ScrumBoard.egg-info/requires.txt
- +1 −0 ScrumBoard.egg-info/top_level.txt
- +82 −0 development.ini
- +19 −0 docs/index.txt
- +275 −0 ez_setup.py
- 0 scrumboard/__init__.py
- 0 scrumboard/config/__init__.py
- +62 −0 scrumboard/config/deployment.ini_tmpl
- +46 −0 scrumboard/config/environment.py
- +64 −0 scrumboard/config/middleware.py
- +26 −0 scrumboard/config/routing.py
- 0 scrumboard/controllers/__init__.py
- +46 −0 scrumboard/controllers/error.py
- 0 scrumboard/lib/__init__.py
- +14 −0 scrumboard/lib/app_globals.py
- +21 −0 scrumboard/lib/base.py
- +7 −0 scrumboard/lib/helpers.py
- +38 −0 scrumboard/model/__init__.py
- +15 −0 scrumboard/model/meta.py
- BIN scrumboard/public/bg.png
- +137 −0 scrumboard/public/index.html
- BIN scrumboard/public/pylons-logo.gif
- +36 −0 scrumboard/tests/__init__.py
- 0 scrumboard/tests/functional/__init__.py
- 0 scrumboard/tests/test_models.py
- +17 −0 scrumboard/websetup.py
- +31 −0 setup.cfg
- +38 −0 setup.py
- +21 −0 test.ini
@@ -0,0 +1 @@ | ||
+*.pyc |
@@ -0,0 +1,3 @@ | ||
+include scrumboard/config/deployment.ini_tmpl | ||
+recursive-include scrumboard/public * | ||
+recursive-include scrumboard/templates * |
19
README.txt
@@ -0,0 +1,19 @@ | ||
+This file is for you to describe the ScrumBoard application. Typically | ||
+you would include information such as the information below: | ||
+ | ||
+Installation and Setup | ||
+====================== | ||
+ | ||
+Install ``ScrumBoard`` using easy_install:: | ||
+ | ||
+ easy_install ScrumBoard | ||
+ | ||
+Make a config file as follows:: | ||
+ | ||
+ paster make-config ScrumBoard config.ini | ||
+ | ||
+Tweak the config file as appropriate and then setup the application:: | ||
+ | ||
+ paster setup-app config.ini | ||
+ | ||
+Then you are ready to go. |
@@ -0,0 +1,10 @@ | ||
+Metadata-Version: 1.0 | ||
+Name: ScrumBoard | ||
+Version: 0.1dev | ||
+Summary: UNKNOWN | ||
+Home-page: UNKNOWN | ||
+Author: UNKNOWN | ||
+Author-email: UNKNOWN | ||
+License: UNKNOWN | ||
+Description: UNKNOWN | ||
+Platform: UNKNOWN |
@@ -0,0 +1,33 @@ | ||
+MANIFEST.in | ||
+README.txt | ||
+setup.cfg | ||
+setup.py | ||
+ScrumBoard.egg-info/PKG-INFO | ||
+ScrumBoard.egg-info/SOURCES.txt | ||
+ScrumBoard.egg-info/dependency_links.txt | ||
+ScrumBoard.egg-info/entry_points.txt | ||
+ScrumBoard.egg-info/not-zip-safe | ||
+ScrumBoard.egg-info/paster_plugins.txt | ||
+ScrumBoard.egg-info/requires.txt | ||
+ScrumBoard.egg-info/top_level.txt | ||
+scrumboard/__init__.py | ||
+scrumboard/websetup.py | ||
+scrumboard/config/__init__.py | ||
+scrumboard/config/deployment.ini_tmpl | ||
+scrumboard/config/environment.py | ||
+scrumboard/config/middleware.py | ||
+scrumboard/config/routing.py | ||
+scrumboard/controllers/__init__.py | ||
+scrumboard/controllers/error.py | ||
+scrumboard/lib/__init__.py | ||
+scrumboard/lib/app_globals.py | ||
+scrumboard/lib/base.py | ||
+scrumboard/lib/helpers.py | ||
+scrumboard/model/__init__.py | ||
+scrumboard/model/meta.py | ||
+scrumboard/public/bg.png | ||
+scrumboard/public/index.html | ||
+scrumboard/public/pylons-logo.gif | ||
+scrumboard/tests/__init__.py | ||
+scrumboard/tests/test_models.py | ||
+scrumboard/tests/functional/__init__.py |
@@ -0,0 +1 @@ | ||
+ |
@@ -0,0 +1,7 @@ | ||
+ | ||
+ [paste.app_factory] | ||
+ main = scrumboard.config.middleware:make_app | ||
+ | ||
+ [paste.app_install] | ||
+ main = pylons.util:PylonsInstaller | ||
+ |
@@ -0,0 +1 @@ | ||
+ |
@@ -0,0 +1,2 @@ | ||
+PasteScript | ||
+Pylons |
@@ -0,0 +1,3 @@ | ||
+Pylons>=0.9.6 | ||
+SQLAlchemy>=0.4 | ||
+Mako |
@@ -0,0 +1 @@ | ||
+scrumboard |
@@ -0,0 +1,82 @@ | ||
+# | ||
+# ScrumBoard - Pylons development environment configuration | ||
+# | ||
+# The %(here)s variable will be replaced with the parent directory of this file | ||
+# | ||
+[DEFAULT] | ||
+debug = true | ||
+# Uncomment and replace with the address which should receive any error reports | ||
+#email_to = you@yourdomain.com | ||
+smtp_server = localhost | ||
+error_email_from = paste@localhost | ||
+ | ||
+[server:main] | ||
+use = egg:Paste#http | ||
+host = 127.0.0.1 | ||
+port = 5000 | ||
+ | ||
+[app:main] | ||
+use = egg:ScrumBoard | ||
+full_stack = true | ||
+ | ||
+cache_dir = %(here)s/data | ||
+beaker.session.key = scrumboard | ||
+beaker.session.secret = somesecret | ||
+ | ||
+# If you'd like to fine-tune the individual locations of the cache data dirs | ||
+# for the Cache data, or the Session saves, un-comment the desired settings | ||
+# here: | ||
+#beaker.cache.data_dir = %(here)s/data/cache | ||
+#beaker.session.data_dir = %(here)s/data/sessions | ||
+ | ||
+# SQLAlchemy database URL | ||
+sqlalchemy.url = sqlite:///%(here)s/development.db | ||
+ | ||
+# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* | ||
+# Debug mode will enable the interactive debugging tool, allowing ANYONE to | ||
+# execute malicious code after an exception is raised. | ||
+#set debug = false | ||
+ | ||
+ | ||
+# Logging configuration | ||
+[loggers] | ||
+keys = root, routes, scrumboard, sqlalchemy | ||
+ | ||
+[handlers] | ||
+keys = console | ||
+ | ||
+[formatters] | ||
+keys = generic | ||
+ | ||
+[logger_root] | ||
+level = INFO | ||
+handlers = console | ||
+ | ||
+[logger_routes] | ||
+level = INFO | ||
+handlers = | ||
+qualname = routes.middleware | ||
+# "level = DEBUG" logs the route matched and routing variables. | ||
+ | ||
+[logger_scrumboard] | ||
+level = DEBUG | ||
+handlers = | ||
+qualname = scrumboard | ||
+ | ||
+[logger_sqlalchemy] | ||
+level = INFO | ||
+handlers = | ||
+qualname = sqlalchemy.engine | ||
+# "level = INFO" logs SQL queries. | ||
+# "level = DEBUG" logs SQL queries and results. | ||
+# "level = WARN" logs neither. (Recommended for production systems.) | ||
+ | ||
+[handler_console] | ||
+class = StreamHandler | ||
+args = (sys.stderr,) | ||
+level = NOTSET | ||
+formatter = generic | ||
+ | ||
+[formatter_generic] | ||
+format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | ||
+datefmt = %H:%M:%S |
@@ -0,0 +1,19 @@ | ||
+scrumboard | ||
+++++++++++ | ||
+ | ||
+This is the main index page of your documentation. It should be written in | ||
+`reStructuredText format <http://docutils.sourceforge.net/rst.html>`_. | ||
+ | ||
+You can generate your documentation in HTML format by running this command:: | ||
+ | ||
+ setup.py pudge | ||
+ | ||
+For this to work you will need to download and install `buildutils`_, | ||
+`pudge`_, and `pygments`_. The ``pudge`` command is disabled by | ||
+default; to ativate it in your project, run:: | ||
+ | ||
+ setup.py addcommand -p buildutils.pudge_command | ||
+ | ||
+.. _buildutils: http://pypi.python.org/pypi/buildutils | ||
+.. _pudge: http://pudge.lesscode.org/ | ||
+.. _pygments: http://pygments.org/ |

Oops, something went wrong.
0 comments on commit
771e875