diff options
| author | Chris McDonough <chrism@plope.com> | 2010-11-05 00:55:01 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2010-11-05 00:55:01 -0400 |
| commit | 03b08acc6dc0c738207833e8a7c7568e79505293 (patch) | |
| tree | 48a4535c5f195c0ca9b300238ef4ecbf9648227d | |
| parent | 8f73240b0ba4c3082b428fcc094699d06f7d870e (diff) | |
| download | pyramid-03b08acc6dc0c738207833e8a7c7568e79505293.tar.gz pyramid-03b08acc6dc0c738207833e8a7c7568e79505293.tar.bz2 pyramid-03b08acc6dc0c738207833e8a7c7568e79505293.zip | |
fix url to source
| -rw-r--r-- | docs/tutorials/wiki/definingviews.rst | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst index 44543cb33..797eee0d9 100644 --- a/docs/tutorials/wiki/definingviews.rst +++ b/docs/tutorials/wiki/definingviews.rst @@ -238,14 +238,13 @@ Our templates name a single static resource named ``style.css``. We need to create this and place it in a file named ``style.css`` within our package's ``static`` directory. 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/default.css>`_. +<http://github.com/Pylons/pyramid/blob/master/docs/tutorials/wiki/src/views/tutorial/static/style.css>`_. This CSS file will be accessed via -e.g. ``http://localhost:6543/static/style.css`` by virtue of the -``static`` directive we've defined in the ``configure.zcml`` file. -Any number and type of static resources can be placed in this -directory (or subdirectories) and are just referred to by URL within -templates. +e.g. ``http://localhost:6543/static/style.css`` by virtue of the ``static`` +directive we've defined in the ``configure.zcml`` file. Any number and type +of static resources can be placed in this directory (or subdirectories) and +are just referred to by URL within templates. Testing the Views ================= |
