summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-12-10 13:55:57 -0500
committerChris McDonough <chrism@plope.com>2011-12-10 13:55:57 -0500
commit5c8251d91d00bcba9f8f66df892bac47dd73c719 (patch)
treeed6e213a674d3d4e138d63be91c2c00317b221eb /docs
parent0115f3cee78c3b99e517b89ea288b4f6f3213a68 (diff)
parentd587b4b6974c2e4a9074f5bde42095227acfdd1c (diff)
downloadpyramid-5c8251d91d00bcba9f8f66df892bac47dd73c719.tar.gz
pyramid-5c8251d91d00bcba9f8f66df892bac47dd73c719.tar.bz2
pyramid-5c8251d91d00bcba9f8f66df892bac47dd73c719.zip
merge 1.3-branch back to master
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py2
-rw-r--r--docs/narr/MyProject/myproject/templates/mytemplate.pt12
-rw-r--r--docs/whatsnew-1.3.rst16
3 files changed, 20 insertions, 10 deletions
diff --git a/docs/conf.py b/docs/conf.py
index b6986774b..9be5db325 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -161,7 +161,7 @@ html_theme_path = ['_themes']
html_theme = 'pyramid'
html_theme_options = dict(
github_url='https://github.com/Pylons/pyramid',
- in_progress='true'
+# in_progress='true'
)
# The style sheet to use for HTML and HTML Help pages. A file of that name
# must exist either in Sphinx' static/ path, or in one of the custom paths
diff --git a/docs/narr/MyProject/myproject/templates/mytemplate.pt b/docs/narr/MyProject/myproject/templates/mytemplate.pt
index ab698123e..0bfac946e 100644
--- a/docs/narr/MyProject/myproject/templates/mytemplate.pt
+++ b/docs/narr/MyProject/myproject/templates/mytemplate.pt
@@ -44,22 +44,22 @@
<a href="http://pylonsproject.org">Pylons Website</a>
</li>
<li>
- <a href="http://docs.pylonsproject.org/projects/pyramid/current/#narrative-documentation">Narrative Documentation</a>
+ <a href="http://docs.pylonsproject.org/projects/pyramid/en/1.3-branch/#narrative-documentation">Narrative Documentation</a>
</li>
<li>
- <a href="http://docs.pylonsproject.org/projects/pyramid/current/#api-documentation">API Documentation</a>
+ <a href="http://docs.pylonsproject.org/projects/pyramid/en/1.3-branch/#reference-material">API Documentation</a>
</li>
<li>
- <a href="http://docs.pylonsproject.org/projects/pyramid/current/#tutorials">Tutorials</a>
+ <a href="http://docs.pylonsproject.org/projects/pyramid/en/1.3-branch/#tutorials">Tutorials</a>
</li>
<li>
- <a href="http://docs.pylonsproject.org/projects/pyramid/current/#change-history">Change History</a>
+ <a href="http://docs.pylonsproject.org/projects/pyramid/en/1.3-branch/#detailed-change-history">Change History</a>
</li>
<li>
- <a href="http://docs.pylonsproject.org/projects/pyramid/current/#sample-applications">Sample Applications</a>
+ <a href="http://docs.pylonsproject.org/projects/pyramid/en/1.3-branch/#sample-applications">Sample Applications</a>
</li>
<li>
- <a href="http://docs.pylonsproject.org/projects/pyramid/current/#support-and-development">Support and Development</a>
+ <a href="http://docs.pylonsproject.org/projects/pyramid/en/1.3-branch/#support-and-development">Support and Development</a>
</li>
<li>
<a href="irc://irc.freenode.net#pyramid">IRC Channel</a>
diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst
index 9c6cc5804..d19935c97 100644
--- a/docs/whatsnew-1.3.rst
+++ b/docs/whatsnew-1.3.rst
@@ -17,14 +17,24 @@ Python 3 Compatibility
Pyramid is now Python 3 compatible. Python 3.2 or better is required.
+.. warning::
+
+ As of this writing (the release of Pyramid 1.3a1), if you attempt to
+ install a Pyramid project that used ``alchemy`` scaffold via ``setup.py
+ develop`` on Python 3.2, it may quit with an installation error while
+ trying to install ``Pygments``. If this happens, please rerun the
+ ``setup.py develop`` command again and it will complete. We're just as
+ clueless as you are as to why this happens at this point, but hopefully
+ we'll figure it out before Pyramid 1.3 leaves the alpha/beta phase.
+
This feature required us to make some compromises.
Pyramid no longer runs on Python 2.5. This includes the most recent release
of Jython and the Python 2.5 version of Google App Engine. We could not
easily "straddle" Python 2 and 3 versions and support Python 2 versions older
than Python 2.6. You will need Python 2.6 or better to run this version of
-Pyramid. If you need to use Pyramid on Python 2.5, you should use the most
-recent 1.2.X release of Pyramid there.
+Pyramid. If you need to use Python 2.5, you should use the most recent 1.2.X
+release of Pyramid.
Though many Pyramid add-ons have releases which are already Python 3
compatible (in particular ``pyramid_debugtoolbar``, ``pyramid_jinja2``,
@@ -105,7 +115,7 @@ A configuration introspection system was added; see
:ref:`using_introspection` and :ref:`introspection` for more information on
using the introspection system as a developer.
-The latest release of the pyramid debug toolbar (0.9.6) provides an
+The latest release of the pyramid debug toolbar (0.9.7+) provides an
"Introspection" panel that exposes introspection information to a Pyramid
application developer.