Chris McDonough
2011-11-27 1ddae497fc4ec9869123fdffb07a8d7eb20edc25
use correct github links for this branch
12 files modified
50 ■■■■ changed files
docs/_themes @ d0c25c 2 ●●● patch | view | raw | blame | history
docs/narr/hooks.rst 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki/authorization.rst 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki/basiclayout.rst 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki/definingmodels.rst 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki/definingviews.rst 6 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki/index.rst 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/authorization.rst 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/basiclayout.rst 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/definingmodels.rst 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/definingviews.rst 6 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/index.rst 4 ●●●● patch | view | raw | blame | history
docs/_themes
@@ -1 +1 @@
Subproject commit 03e5e5aaaeddc4c9aea887478c7e7b379a127b6f
Subproject commit d0c25c1398f7c975db6fc174ef957764242ccb85
docs/narr/hooks.rst
@@ -530,8 +530,8 @@
The default context URL generator is available for perusal as the class
:class:`pyramid.traversal.TraversalContextURL` in the `traversal module
<http://github.com/Pylons/pyramid/blob/master/pyramid/traversal.py>`_ of the
:term:`Pylons` GitHub Pyramid repository.
<http://github.com/Pylons/pyramid/blob/1.2-branch/pyramid/traversal.py>`_ of
the :term:`Pylons` GitHub Pyramid repository.
.. index::
   single: IResponse
docs/tutorials/wiki/authorization.rst
@@ -24,8 +24,8 @@
``view.pt`` and ``edit.pt`` to show a "Logout" link when not logged in.
The source code for this tutorial stage can be browsed via
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/authorization/
<http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/authorization/>`_.
`http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki/src/authorization/
<http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki/src/authorization/>`_.
Adding Authentication and Authorization Policies
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
docs/tutorials/wiki/basiclayout.rst
@@ -7,8 +7,8 @@
:term:`traversal` -based :app:`Pyramid` (and :term:`ZODB` based) projects.
The source code for this tutorial stage can be browsed via
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/basiclayout/
<http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/basiclayout/>`_.
`http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki/src/basiclayout/
<http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki/src/basiclayout/>`_.
App Startup with ``__init__.py``
--------------------------------
docs/tutorials/wiki/definingmodels.rst
@@ -15,8 +15,8 @@
objects, which will be instances of the "Page" class.
The source code for this tutorial stage can be browsed via
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/models/
<http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/models/>`_.
`http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki/src/models/
<http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki/src/models/>`_.
Deleting the Database
---------------------
docs/tutorials/wiki/definingviews.rst
@@ -29,8 +29,8 @@
into :app:`Pyramid` using some :term:`view configuration`.
The source code for this tutorial stage can be browsed via
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/views/
<http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/views/>`_.
`http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki/src/views/
<http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki/src/views/>`_.
Declaring Dependencies in Our ``setup.py`` File
===============================================
@@ -290,7 +290,7 @@
to create this file within our package's ``static`` directory because it was
provided at the time we created the project. This file is a little too long to
replicate within the body of this guide, however it is available `online
<http://github.com/Pylons/pyramid/blob/master/docs/tutorials/wiki/src/views/tutorial/static/pylons.css>`_.
<http://github.com/Pylons/pyramid/blob/1.2-branch/docs/tutorials/wiki/src/views/tutorial/static/pylons.css>`_.
This CSS file will be accessed via
e.g. ``http://localhost:6543/static/pylons.css`` by virtue of the call to
docs/tutorials/wiki/index.rst
@@ -11,8 +11,8 @@
For cut and paste purposes, the source code for all stages of this
tutorial can be browsed at
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/
<http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/>`_.
`http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki/src/
<http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki/src/>`_.
.. toctree::
   :maxdepth: 2
docs/tutorials/wiki2/authorization.rst
@@ -27,8 +27,8 @@
``view.pt`` and ``edit.pt`` to show a "Logout" link when not logged in.
The source code for this tutorial stage can be browsed at
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/authorization/
<http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/authorization/>`_.
`http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki2/src/authorization/
<http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki2/src/authorization/>`_.
Changing ``__init__.py`` For Authorization
-------------------------------------------
docs/tutorials/wiki2/basiclayout.rst
@@ -7,8 +7,8 @@
to most :term:`url dispatch` -based :app:`Pyramid` projects.
The source code for this tutorial stage can be browsed at
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/basiclayout/
<http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/basiclayout/>`_.
`http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki2/src/basiclayout/
<http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki2/src/basiclayout/>`_.
App Startup with ``__init__.py``
--------------------------------
docs/tutorials/wiki2/definingmodels.rst
@@ -7,8 +7,8 @@
do this inside our ``models.py`` file.
The source code for this tutorial stage can be browsed at
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/models/
<http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/models/>`_.
`http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki2/src/models/
<http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki2/src/models/>`_.
Making Edits to ``models.py``
-----------------------------
docs/tutorials/wiki2/definingviews.rst
@@ -32,8 +32,8 @@
``'foo'`` and a ``'two'`` key with the value ``'bar'``.
The source code for this tutorial stage can be browsed at
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/views/
<http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/views/>`_.
`http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki2/src/views/
<http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki2/src/views/>`_.
Declaring Dependencies in Our ``setup.py`` File
===============================================
@@ -260,7 +260,7 @@
to create this file within our package's ``static`` directory because it was
provided at the time we created the project. This file is a little too long
to replicate within the body of this guide, however it is available `online
<http://github.com/Pylons/pyramid/blob/master/docs/tutorials/wiki2/src/views/tutorial/static/pylons.css>`_.
<http://github.com/Pylons/pyramid/blob/1.2-branch/docs/tutorials/wiki2/src/views/tutorial/static/pylons.css>`_.
This CSS file will be accessed via
e.g. ``http://localhost:6543/static/pylons.css`` by virtue of the call to
docs/tutorials/wiki2/index.rst
@@ -11,8 +11,8 @@
For cut and paste purposes, the source code for all stages of this
tutorial can be browsed at
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/
<http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/>`_.
`http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki2/src/
<http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki2/src/>`_.
.. toctree::
   :maxdepth: 2