diff options
| author | Chris McDonough <chrism@plope.com> | 2011-01-16 17:49:54 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-01-16 17:49:54 -0500 |
| commit | 566004501e8a28c0ba8f8c882ca5ea0742e5d285 (patch) | |
| tree | cc5a742456bba6ba4d2bd06d03349c19eb8b1b1d | |
| parent | 9e45b104edb01f725d1ab22be1e1e5e96c1464a3 (diff) | |
| download | pyramid-566004501e8a28c0ba8f8c882ca5ea0742e5d285.tar.gz pyramid-566004501e8a28c0ba8f8c882ca5ea0742e5d285.tar.bz2 pyramid-566004501e8a28c0ba8f8c882ca5ea0742e5d285.zip | |
remove references to pylons paster templates
| -rw-r--r-- | pyramid/paster.py | 15 | ||||
| -rw-r--r-- | setup.py | 3 |
2 files changed, 0 insertions, 18 deletions
diff --git a/pyramid/paster.py b/pyramid/paster.py index 5ac043c19..488721ef0 100644 --- a/pyramid/paster.py +++ b/pyramid/paster.py @@ -39,21 +39,6 @@ class AlchemyProjectTemplate(PyramidTemplate): summary = 'pyramid SQLAlchemy project using traversal' template_renderer = staticmethod(paste_script_template_renderer) -class PylonsBasicProjectTemplate(PyramidTemplate): - _template_dir = 'paster_templates/pylons_basic' - summary = 'Pylons basic project' - template_renderer = staticmethod(paste_script_template_renderer) - -class PylonsMinimalProjectTemplate(PyramidTemplate): - _template_dir = 'paster_templates/pylons_minimal' - summary = 'Pylons minimal project' - template_renderer = staticmethod(paste_script_template_renderer) - -class PylonsSQLAlchemyProjectTemplate(PyramidTemplate): - _template_dir = 'paster_templates/pylons_sqla' - summary = 'Pylons SQLAlchemy project' - template_renderer = staticmethod(paste_script_template_renderer) - def get_app(config_file, name, loadapp=loadapp): """ Return the WSGI application named ``name`` in the PasteDeploy config file ``config_file``""" @@ -83,9 +83,6 @@ setup(name='pyramid', pyramid_zodb=pyramid.paster:ZODBProjectTemplate pyramid_routesalchemy=pyramid.paster:RoutesAlchemyProjectTemplate pyramid_alchemy=pyramid.paster:AlchemyProjectTemplate - pylons_basic=pyramid.paster:PylonsBasicProjectTemplate - pylons_minimal=pyramid.paster:PylonsMinimalProjectTemplate - pylons_sqla=pyramid.paster:PylonsSQLAlchemyProjectTemplate [paste.paster_command] pshell=pyramid.paster:PShellCommand proutes=pyramid.paster:PRoutesCommand |
