Skip to content

Commit

Permalink
use correct github links for this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc committed Nov 27, 2011
1 parent 044b029 commit 1ddae49
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion docs/_themes
4 changes: 2 additions & 2 deletions docs/narr/hooks.rst
Expand Up @@ -530,8 +530,8 @@ The API that must be implemented by a class that provides
The default context URL generator is available for perusal as the class The default context URL generator is available for perusal as the class
:class:`pyramid.traversal.TraversalContextURL` in the `traversal module :class:`pyramid.traversal.TraversalContextURL` in the `traversal module
<http://github.com/Pylons/pyramid/blob/master/pyramid/traversal.py>`_ of the <http://github.com/Pylons/pyramid/blob/1.2-branch/pyramid/traversal.py>`_ of
:term:`Pylons` GitHub Pyramid repository. the :term:`Pylons` GitHub Pyramid repository.


.. index:: .. index::
single: IResponse single: IResponse
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/wiki/authorization.rst
Expand Up @@ -24,8 +24,8 @@ Finally, we will add a ``login.pt`` template and change the existing
``view.pt`` and ``edit.pt`` to show a "Logout" link when not logged in. ``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 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/1.2-branch/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/>`_.


Adding Authentication and Authorization Policies Adding Authentication and Authorization Policies
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/wiki/basiclayout.rst
Expand Up @@ -7,8 +7,8 @@ they provide a good orientation for the high-level patterns common to most
:term:`traversal` -based :app:`Pyramid` (and :term:`ZODB` based) projects. :term:`traversal` -based :app:`Pyramid` (and :term:`ZODB` based) projects.


The source code for this tutorial stage can be browsed via 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/1.2-branch/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/>`_.


App Startup with ``__init__.py`` App Startup with ``__init__.py``
-------------------------------- --------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/wiki/definingmodels.rst
Expand Up @@ -15,8 +15,8 @@ single instance of the "Wiki" class will serve as a container for "Page"
objects, which will be instances of the "Page" class. objects, which will be instances of the "Page" class.


The source code for this tutorial stage can be browsed via 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/1.2-branch/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/>`_.


Deleting the Database Deleting the Database
--------------------- ---------------------
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorials/wiki/definingviews.rst
Expand Up @@ -29,8 +29,8 @@ We're going to define several :term:`view callable` functions, then wire them
into :app:`Pyramid` using some :term:`view configuration`. into :app:`Pyramid` using some :term:`view configuration`.


The source code for this tutorial stage can be browsed via 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/1.2-branch/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/>`_.


Declaring Dependencies in Our ``setup.py`` File Declaring Dependencies in Our ``setup.py`` File
=============================================== ===============================================
Expand Down Expand Up @@ -290,7 +290,7 @@ Our templates name a single static asset named ``pylons.css``. We don't need
to create this file within our package's ``static`` directory because it was 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 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 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 This CSS file will be accessed via
e.g. ``http://localhost:6543/static/pylons.css`` by virtue of the call to e.g. ``http://localhost:6543/static/pylons.css`` by virtue of the call to
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/wiki/index.rst
Expand Up @@ -11,8 +11,8 @@ authentication.


For cut and paste purposes, the source code for all stages of this For cut and paste purposes, the source code for all stages of this
tutorial can be browsed at tutorial can be browsed at
`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/master/docs/tutorials/wiki/src/>`_. <http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki/src/>`_.


.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/wiki2/authorization.rst
Expand Up @@ -27,8 +27,8 @@ Finally, we will add a ``login.pt`` template and change the existing
``view.pt`` and ``edit.pt`` to show a "Logout" link when not logged in. ``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 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/1.2-branch/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/>`_.


Changing ``__init__.py`` For Authorization Changing ``__init__.py`` For Authorization
------------------------------------------- -------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/wiki2/basiclayout.rst
Expand Up @@ -7,8 +7,8 @@ basic, but they provide a good orientation for the high-level patterns common
to most :term:`url dispatch` -based :app:`Pyramid` projects. to most :term:`url dispatch` -based :app:`Pyramid` projects.


The source code for this tutorial stage can be browsed at 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/1.2-branch/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/>`_.


App Startup with ``__init__.py`` App Startup with ``__init__.py``
-------------------------------- --------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/wiki2/definingmodels.rst
Expand Up @@ -7,8 +7,8 @@ to define a :term:`domain model` constructor representing a wiki page. We'll
do this inside our ``models.py`` file. do this inside our ``models.py`` file.


The source code for this tutorial stage can be browsed at 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/1.2-branch/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/>`_.


Making Edits to ``models.py`` Making Edits to ``models.py``
----------------------------- -----------------------------
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorials/wiki2/definingviews.rst
Expand Up @@ -32,8 +32,8 @@ the request passed to the view would have a ``'one'`` key with the value
``'foo'`` and a ``'two'`` key with the value ``'bar'``. ``'foo'`` and a ``'two'`` key with the value ``'bar'``.


The source code for this tutorial stage can be browsed at 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/1.2-branch/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/>`_.


Declaring Dependencies in Our ``setup.py`` File Declaring Dependencies in Our ``setup.py`` File
=============================================== ===============================================
Expand Down Expand Up @@ -260,7 +260,7 @@ Our templates name a single static asset named ``pylons.css``. We don't need
to create this file within our package's ``static`` directory because it was 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 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 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 This CSS file will be accessed via
e.g. ``http://localhost:6543/static/pylons.css`` by virtue of the call to e.g. ``http://localhost:6543/static/pylons.css`` by virtue of the call to
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/wiki2/index.rst
Expand Up @@ -11,8 +11,8 @@ basic Wiki application with authentication.


For cut and paste purposes, the source code for all stages of this For cut and paste purposes, the source code for all stages of this
tutorial can be browsed at tutorial can be browsed at
`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/master/docs/tutorials/wiki2/src/>`_. <http://github.com/Pylons/pyramid/tree/1.2-branch/docs/tutorials/wiki2/src/>`_.


.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
Expand Down

0 comments on commit 1ddae49

Please sign in to comment.