moved scaffolds up one dir
This commit is contained in:
parent
c0b507f1a1
commit
ba092f90e4
20 changed files with 36 additions and 36 deletions
|
@ -1,35 +1,35 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
################################################################################
|
################################################################################
|
||||||
#
|
#
|
||||||
# edbob -- Pythonic Software Framework
|
# edbob -- Pythonic Software Framework
|
||||||
# Copyright © 2010-2012 Lance Edgar
|
# Copyright © 2010-2012 Lance Edgar
|
||||||
#
|
#
|
||||||
# This file is part of edbob.
|
# This file is part of edbob.
|
||||||
#
|
#
|
||||||
# edbob is free software: you can redistribute it and/or modify it under the
|
# edbob is free software: you can redistribute it and/or modify it under the
|
||||||
# terms of the GNU Affero General Public License as published by the Free
|
# terms of the GNU Affero General Public License as published by the Free
|
||||||
# Software Foundation, either version 3 of the License, or (at your option)
|
# Software Foundation, either version 3 of the License, or (at your option)
|
||||||
# any later version.
|
# any later version.
|
||||||
#
|
#
|
||||||
# edbob is distributed in the hope that it will be useful, but WITHOUT ANY
|
# edbob is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
|
# FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
|
||||||
# more details.
|
# more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
# along with edbob. If not, see <http://www.gnu.org/licenses/>.
|
# along with edbob. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
"""
|
"""
|
||||||
``edbob.pyramid.scaffolds`` -- App Scaffolding
|
``edbob.pyramid.scaffolds`` -- App Scaffolding
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from pyramid.scaffolds import PyramidTemplate
|
from pyramid.scaffolds import PyramidTemplate
|
||||||
|
|
||||||
|
|
||||||
class Template(PyramidTemplate):
|
class Template(PyramidTemplate):
|
||||||
|
|
||||||
_template_dir = 'edbob'
|
_template_dir = 'edbob'
|
||||||
summary = "Pyramid edbob project"
|
summary = "Pyramid edbob project"
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
2
setup.py
2
setup.py
|
@ -175,7 +175,7 @@ edbob = edbob.commands:main
|
||||||
edbobw = edbob.commands:main
|
edbobw = edbob.commands:main
|
||||||
|
|
||||||
[pyramid.scaffold]
|
[pyramid.scaffold]
|
||||||
edbob = edbob.pyramid.scaffolds:Template
|
edbob = edbob.scaffolds:Template
|
||||||
|
|
||||||
[edbob.commands]
|
[edbob.commands]
|
||||||
db = edbob.commands:DatabaseCommand
|
db = edbob.commands:DatabaseCommand
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue