[Python-checkins] r61699 - in doctools/trunk: doc/_templates/index.html setup.py

georg.brandl python-checkins at python.org
Fri Mar 21 16:31:32 CET 2008


Author: georg.brandl
Date: Fri Mar 21 16:31:32 2008
New Revision: 61699

Modified:
   doctools/trunk/doc/_templates/index.html
   doctools/trunk/setup.py
Log:
Prepare for release.


Modified: doctools/trunk/doc/_templates/index.html
==============================================================================
--- doctools/trunk/doc/_templates/index.html	(original)
+++ doctools/trunk/doc/_templates/index.html	Fri Mar 21 16:31:32 2008
@@ -1,10 +1,10 @@
 {% extends "layout.html" %}
 {% set title = 'Overview' %}
 {% block body %}
-  <p style="background-color: #fcc; font-size: large; border: 1px solid #f00; padding: 10px;">
+<!--  <p style="background-color: #fcc; font-size: large; border: 1px solid #f00; padding: 10px;">
     <b>Attention:</b> this is a preview. Sphinx is not released yet on PyPI,
     and the contents of this documentation are subject to change.
-  </p>
+  </p> -->
 
   <h1>Welcome</h1>
 
@@ -63,4 +63,4 @@
     Index</a>.
   </p>
   
-{% endblock %}
\ No newline at end of file
+{% endblock %}

Modified: doctools/trunk/setup.py
==============================================================================
--- doctools/trunk/setup.py	(original)
+++ doctools/trunk/setup.py	Fri Mar 21 16:31:32 2008
@@ -12,6 +12,10 @@
 but has now been cleaned up in the hope that it will be useful to many
 other projects.
 
+Sphinx uses reStructuredText as its markup language, and many of its strengths
+come from the power and straightforwardness of reStructuredText and its
+parsing and translating suite, the Docutils.
+
 Although it is still under constant development, the following features
 are already present, work fine and can be seen “in action” in the Python docs:
 
@@ -23,10 +27,8 @@
   links to siblings, parents and children
 * Automatic indices: general index as well as a module index
 * Code handling: automatic highlighting using the Pygments highlighter
-
-Sphinx uses reStructuredText as its markup language, and many of its strengths
-come from the power and straightforwardness of reStructuredText and its
-parsing and translating suite, the Docutils.
+* Various extensions are available, e.g. for automatic testing of snippets
+  and inclusion of appropriately formatted docstrings.
 '''
 
 setup(
@@ -41,7 +43,7 @@
     long_description=long_desc,
     zip_safe=False,
     lassifiers=[
-        'Development Status :: 2 - Pre-Alpha',
+        'Development Status :: 3 - Alpha',
         'Environment :: Console',
         'Environment :: Web Environment',
         'Intended Audience :: Developers',


More information about the Python-checkins mailing list