gitextract_jwapr307/ ├── .gitignore ├── .hgignore ├── .hgtags ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.rst ├── UPGRADING ├── ez_setup.py ├── pylons/ │ ├── __init__.py │ ├── commands.py │ ├── configuration.py │ ├── controllers/ │ │ ├── __init__.py │ │ ├── core.py │ │ ├── jsonrpc.py │ │ ├── util.py │ │ └── xmlrpc.py │ ├── decorators/ │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── rest.py │ │ ├── secure.py │ │ └── util.py │ ├── docs/ │ │ ├── en/ │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── _oldstatic/ │ │ │ │ ├── akhet.css │ │ │ │ ├── default.css │ │ │ │ ├── pygments.css │ │ │ │ └── pylons_as_onion.ai │ │ │ ├── _oldtemplates/ │ │ │ │ ├── genindex.html │ │ │ │ ├── layout.html │ │ │ │ ├── modindex.html │ │ │ │ └── page.html │ │ │ ├── advanced_models.rst │ │ │ ├── advanced_pylons/ │ │ │ │ ├── creating_paste_templates.rst │ │ │ │ ├── entry_points_and_plugins.rst │ │ │ │ ├── index.rst │ │ │ │ ├── paster.rst │ │ │ │ └── paster_commands.rst │ │ │ ├── caching.rst │ │ │ ├── concepts.rst │ │ │ ├── conf.py │ │ │ ├── configuration.rst │ │ │ ├── controllers.rst │ │ │ ├── debugging.rst │ │ │ ├── deployment.rst │ │ │ ├── events.rst │ │ │ ├── execution.rst │ │ │ ├── forms.rst │ │ │ ├── gettingstarted.rst │ │ │ ├── glossary.rst │ │ │ ├── helpers.rst │ │ │ ├── i18n.rst │ │ │ ├── index.rst │ │ │ ├── jython.rst │ │ │ ├── logging.rst │ │ │ ├── models.rst │ │ │ ├── modules/ │ │ │ │ ├── commands.rst │ │ │ │ ├── configuration.rst │ │ │ │ ├── controllers.rst │ │ │ │ ├── controllers_core.rst │ │ │ │ ├── controllers_util.rst │ │ │ │ ├── controllers_xmlrpc.rst │ │ │ │ ├── decorators.rst │ │ │ │ ├── decorators_cache.rst │ │ │ │ ├── decorators_rest.rst │ │ │ │ ├── decorators_secure.rst │ │ │ │ ├── error.rst │ │ │ │ ├── i18n_translation.rst │ │ │ │ ├── index.rst │ │ │ │ ├── log.rst │ │ │ │ ├── middleware.rst │ │ │ │ ├── templating.rst │ │ │ │ ├── test.rst │ │ │ │ ├── util.rst │ │ │ │ └── wsgiapp.rst │ │ │ ├── objects.inv │ │ │ ├── python23_install.rst │ │ │ ├── security_policy_for_bugs.rst │ │ │ ├── sessions.rst │ │ │ ├── testing.rst │ │ │ ├── thirdparty/ │ │ │ │ ├── formencode_api.rst │ │ │ │ ├── index.rst │ │ │ │ ├── weberror.rst │ │ │ │ ├── webob.rst │ │ │ │ └── webtest.rst │ │ │ ├── tutorials/ │ │ │ │ ├── index.rst │ │ │ │ ├── quickwiki_tutorial.rst │ │ │ │ └── understanding_unicode.rst │ │ │ ├── upgrading.rst │ │ │ ├── views.rst │ │ │ ├── windowsnotes.rst │ │ │ └── wsgi_support.rst │ │ └── uploader.py │ ├── error.py │ ├── i18n/ │ │ ├── __init__.py │ │ └── translation.py │ ├── log.py │ ├── media/ │ │ ├── javascripts/ │ │ │ └── traceback.js │ │ └── style/ │ │ ├── black.css │ │ ├── itraceback.css │ │ └── orange.css │ ├── middleware.py │ ├── templates/ │ │ ├── __init__.py │ │ ├── controller.py_tmpl │ │ ├── default_project/ │ │ │ ├── +package+/ │ │ │ │ ├── __init__.py_tmpl │ │ │ │ ├── config/ │ │ │ │ │ ├── __init__.py_tmpl │ │ │ │ │ ├── deployment.ini_tmpl_tmpl │ │ │ │ │ ├── environment.py_tmpl │ │ │ │ │ ├── middleware.py_tmpl │ │ │ │ │ └── routing.py_tmpl │ │ │ │ ├── controllers/ │ │ │ │ │ ├── __init__.py_tmpl │ │ │ │ │ └── error.py_tmpl │ │ │ │ ├── lib/ │ │ │ │ │ ├── __init__.py_tmpl │ │ │ │ │ ├── app_globals.py_tmpl │ │ │ │ │ ├── base.py_tmpl │ │ │ │ │ └── helpers.py_tmpl │ │ │ │ ├── model/ │ │ │ │ │ ├── __init__.py_tmpl │ │ │ │ │ └── meta.py_tmpl │ │ │ │ ├── public/ │ │ │ │ │ └── index.html_tmpl │ │ │ │ ├── templates/ │ │ │ │ │ ├── .distutils_placeholder │ │ │ │ │ └── __init__.py_tmpl │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py_tmpl │ │ │ │ │ ├── functional/ │ │ │ │ │ │ └── __init__.py_tmpl │ │ │ │ │ └── test_models.py_tmpl │ │ │ │ └── websetup.py_tmpl │ │ │ ├── MANIFEST.in_tmpl │ │ │ ├── README.txt_tmpl │ │ │ ├── development.ini_tmpl │ │ │ ├── ez_setup.py │ │ │ ├── setup.cfg_tmpl │ │ │ ├── setup.py_tmpl │ │ │ └── test.ini_tmpl │ │ ├── minimal_project/ │ │ │ ├── +package+/ │ │ │ │ ├── __init__.py_tmpl │ │ │ │ ├── config/ │ │ │ │ │ └── deployment.ini_tmpl_tmpl │ │ │ │ ├── controllers/ │ │ │ │ │ └── __init__.py_tmpl │ │ │ │ ├── helpers.py_tmpl │ │ │ │ ├── public/ │ │ │ │ │ └── index.html_tmpl │ │ │ │ ├── routing.py_tmpl │ │ │ │ ├── templates/ │ │ │ │ │ ├── .distutils_placeholder │ │ │ │ │ └── __init__.py_tmpl │ │ │ │ ├── tests/ │ │ │ │ │ └── __init__.py_tmpl │ │ │ │ └── wsgiapp.py_tmpl │ │ │ ├── MANIFEST.in_tmpl │ │ │ ├── README.txt_tmpl │ │ │ ├── development.ini_tmpl │ │ │ ├── ez_setup.py │ │ │ ├── setup.cfg_tmpl │ │ │ ├── setup.py_tmpl │ │ │ └── test.ini_tmpl │ │ ├── restcontroller.py_tmpl │ │ ├── test_controller.py_tmpl │ │ └── test_restcontroller.py_tmpl │ ├── templating.py │ ├── test.py │ ├── testutil.py │ ├── url.py │ ├── util.py │ └── wsgiapp.py ├── rtd.txt ├── scripts/ │ ├── gen-go-pylons.py │ ├── go-pylons.py │ └── pylintrc ├── setup.cfg ├── setup.py ├── test_files/ │ ├── __init__.py │ ├── event_file.py │ └── sample_controllers/ │ ├── __init__.py │ ├── controllers/ │ │ ├── __init__.py │ │ ├── goodbye.py │ │ ├── hello.py │ │ └── i18nc.py │ ├── i18n/ │ │ ├── es/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── sample_controllers.mo │ │ │ └── sample_controllers.po │ │ ├── fr/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── sample_controllers.mo │ │ │ └── sample_controllers.po │ │ └── ja/ │ │ └── LC_MESSAGES/ │ │ ├── sample_controllers.mo │ │ └── sample_controllers.po │ └── templates/ │ ├── hello.html │ └── time.html └── tests/ ├── __init__.py ├── conftest.py ├── test_units/ │ ├── __init__.py │ ├── test_basic_app.py │ ├── test_controller.py │ ├── test_decorator_authenticate_form.py │ ├── test_decorator_cache.py │ ├── test_decorator_https.py │ ├── test_decorator_jsonify.py │ ├── test_decorator_validate.py │ ├── test_helpers.py │ ├── test_i18n.py │ ├── test_jsonrpc.py │ ├── test_middleware.py │ ├── test_templating.py │ └── test_xmlrpc.py └── test_webapps/ ├── __init__.py ├── filestotest/ │ ├── app_globals.py │ ├── base_with_xmlrpc.py │ ├── cache_controller.py │ ├── controller_sample.py │ ├── controller_sqlatest.py │ ├── controller_xmlrpc.py │ ├── development.ini │ ├── development_sqlatesting.ini │ ├── environment_def_engine.py │ ├── environment_def_sqlamodel.py │ ├── functional_controller_cache_decorator.py │ ├── functional_controller_xmlrpc.py │ ├── functional_sample_controller_i18n.py │ ├── functional_sample_controller_jinja2.py │ ├── functional_sample_controller_mako.py │ ├── functional_sample_controller_sample1.py │ ├── functional_sample_controller_sample2.py │ ├── functional_sample_controller_sample3.py │ ├── functional_sample_controller_sample4.py │ ├── functional_sample_controller_sqlatesting.py │ ├── helpers_sample.py │ ├── messages.ja.mo │ ├── messages.ja.po │ ├── messages.pot │ ├── middleware_mako.py │ ├── model__init__.py │ ├── rest_routing.py │ ├── test_mako.html │ ├── test_sqlalchemy.html │ ├── testgenshi.html │ ├── testjinja2.html │ ├── tests__init__.py │ └── websetup.py └── test_make_project.py