Steve Piercy
2018-05-19 53c785fe88005e6e745f94f604e225086cb8f9b2
Merge pull request #3293 from stevepiercy/1.9-branch

backport for #3182
16 files modified
74 ■■■■ changed files
docs/quick_tutorial/authentication.rst 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/authentication/setup.py 6 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/authorization/setup.py 6 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/cookiecutters/setup.py 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/databases/setup.py 12 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/forms.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/forms/setup.py 6 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/json/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/logging/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/more_view_classes/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/retail_forms/setup.py 6 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/routing/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/sessions/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/static_assets/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/templating/setup.py 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/view_classes/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/authentication.rst
@@ -39,7 +39,7 @@
   .. literalinclude:: authentication/setup.py
    :language: python
    :emphasize-lines: 7
    :emphasize-lines: 4
    :linenos:
#. We can now install our project in development mode:
@@ -94,7 +94,7 @@
#. Click the "Log In" link.
#. Submit the login form with the username ``editor`` and the password
#. Submit the login form with the username ``editor`` and the password
   ``editor``.
#. Note that the "Log In" link has changed to "Logout".
docs/quick_tutorial/authentication/setup.py
@@ -1,10 +1,10 @@
from setuptools import setup
requires = [
    'bcrypt',
    'pyramid',
    'waitress',
    'pyramid_chameleon',
    'bcrypt'
    'waitress',
]
setup(name='tutorial',
@@ -13,4 +13,4 @@
      [paste.app_factory]
      main = tutorial:main
      """,
)
)
docs/quick_tutorial/authorization/setup.py
@@ -1,10 +1,10 @@
from setuptools import setup
requires = [
    'bcrypt',
    'pyramid',
    'waitress',
    'pyramid_chameleon',
    'bcrypt'
    'waitress',
]
setup(name='tutorial',
@@ -13,4 +13,4 @@
      [paste.app_factory]
      main = tutorial:main
      """,
)
)
docs/quick_tutorial/cookiecutters/setup.py
@@ -10,8 +10,8 @@
requires = [
    'pyramid',
    'pyramid_jinja2',
    'pyramid_debugtoolbar',
    'pyramid_jinja2',
    'waitress',
]
docs/quick_tutorial/databases/setup.py
@@ -1,13 +1,13 @@
from setuptools import setup
requires = [
    'pyramid',
    'waitress',
    'pyramid_chameleon',
    'deform',
    'sqlalchemy',
    'pyramid',
    'pyramid_chameleon',
    'pyramid_tm',
    'zope.sqlalchemy'
    'sqlalchemy',
    'waitress',
    'zope.sqlalchemy',
]
setup(name='tutorial',
@@ -18,4 +18,4 @@
      [console_scripts]
      initialize_tutorial_db = tutorial.initialize_db:main
      """,
)
)
docs/quick_tutorial/forms.rst
@@ -41,7 +41,7 @@
   pulls in Colander as a dependency:
   .. literalinclude:: forms/setup.py
    :emphasize-lines: 7
    :emphasize-lines: 4
    :linenos:
#. We can now install our project in development mode:
docs/quick_tutorial/forms/setup.py
@@ -1,10 +1,10 @@
from setuptools import setup
requires = [
    'deform',
    'pyramid',
    'waitress',
    'pyramid_chameleon',
    'deform'
    'waitress',
]
setup(name='tutorial',
@@ -13,4 +13,4 @@
      [paste.app_factory]
      main = tutorial:main
      """,
)
)
docs/quick_tutorial/json/setup.py
@@ -2,8 +2,8 @@
requires = [
    'pyramid',
    'pyramid_chameleon',
    'waitress',
    'pyramid_chameleon'
]
setup(name='tutorial',
@@ -12,4 +12,4 @@
      [paste.app_factory]
      main = tutorial:main
      """,
)
)
docs/quick_tutorial/logging/setup.py
@@ -2,8 +2,8 @@
requires = [
    'pyramid',
    'pyramid_chameleon',
    'waitress',
    'pyramid_chameleon'
]
setup(name='tutorial',
@@ -12,4 +12,4 @@
      [paste.app_factory]
      main = tutorial:main
      """,
)
)
docs/quick_tutorial/more_view_classes/setup.py
@@ -2,8 +2,8 @@
requires = [
    'pyramid',
    'pyramid_chameleon',
    'waitress',
    'pyramid_chameleon'
]
setup(name='tutorial',
@@ -12,4 +12,4 @@
      [paste.app_factory]
      main = tutorial:main
      """,
)
)
docs/quick_tutorial/retail_forms/setup.py
@@ -1,10 +1,10 @@
from setuptools import setup
requires = [
    'deform',
    'pyramid',
    'waitress',
    'pyramid_chameleon',
    'deform'
    'waitress',
]
setup(name='tutorial',
@@ -13,4 +13,4 @@
      [paste.app_factory]
      main = tutorial:main
      """,
)
)
docs/quick_tutorial/routing/setup.py
@@ -2,8 +2,8 @@
requires = [
    'pyramid',
    'pyramid_chameleon',
    'waitress',
    'pyramid_chameleon'
]
setup(name='tutorial',
@@ -12,4 +12,4 @@
      [paste.app_factory]
      main = tutorial:main
      """,
)
)
docs/quick_tutorial/sessions/setup.py
@@ -2,8 +2,8 @@
requires = [
    'pyramid',
    'pyramid_chameleon',
    'waitress',
    'pyramid_chameleon'
]
setup(name='tutorial',
@@ -12,4 +12,4 @@
      [paste.app_factory]
      main = tutorial:main
      """,
)
)
docs/quick_tutorial/static_assets/setup.py
@@ -2,8 +2,8 @@
requires = [
    'pyramid',
    'pyramid_chameleon',
    'waitress',
    'pyramid_chameleon'
]
setup(name='tutorial',
@@ -12,4 +12,4 @@
      [paste.app_factory]
      main = tutorial:main
      """,
)
)
docs/quick_tutorial/templating/setup.py
@@ -2,8 +2,8 @@
requires = [
    'pyramid',
    'waitress',
    'pyramid_chameleon',
    'waitress',
]
setup(name='tutorial',
docs/quick_tutorial/view_classes/setup.py
@@ -2,8 +2,8 @@
requires = [
    'pyramid',
    'pyramid_chameleon',
    'waitress',
    'pyramid_chameleon'
]
setup(name='tutorial',
@@ -12,4 +12,4 @@
      [paste.app_factory]
      main = tutorial:main
      """,
)
)