[Python-checkins] r64487 - in doctools/trunk: setup.py sphinx-web.py

georg.brandl python-checkins at python.org
Mon Jun 23 14:37:53 CEST 2008


Author: georg.brandl
Date: Mon Jun 23 14:37:53 2008
New Revision: 64487

Log:
Remove sphinx-web script.


Removed:
   doctools/trunk/sphinx-web.py
Modified:
   doctools/trunk/setup.py

Modified: doctools/trunk/setup.py
==============================================================================
--- doctools/trunk/setup.py	(original)
+++ doctools/trunk/setup.py	Mon Jun 23 14:37:53 2008
@@ -79,11 +79,10 @@
     packages=['sphinx'],
     include_package_data=True,
     # replaced by the entry points
-    #scripts=['sphinx-build.py', 'sphinx-web.py', 'sphinx-quickstart.py'],
+    #scripts=['sphinx-build.py', 'sphinx-quickstart.py'],
     entry_points={
         'console_scripts': [
             'sphinx-build = sphinx:main',
-            'sphinx-web = sphinx.web:main',
             'sphinx-quickstart = sphinx.quickstart:main'
         ]
     },

Deleted: doctools/trunk/sphinx-web.py
==============================================================================
--- doctools/trunk/sphinx-web.py	Mon Jun 23 14:37:53 2008
+++ (empty file)
@@ -1,17 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-    Sphinx - Python documentation webserver
-    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-    :copyright: 2007-2008 by Armin Ronacher, Georg Brandl.
-    :license: BSD.
-"""
-
-import sys
-
-if __name__ == '__main__':
-    print 'sphinx.web currently doesn\'t work -- it will undergo a ' \
-          'serious rewrite soon.'
-    sys.exit()
-    from sphinx.web import main
-    sys.exit(main(sys.argv))


More information about the Python-checkins mailing list