2007-07-23 09:02:25 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
Sphinx - Python documentation webserver
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2008-01-11 14:18:19 +00:00
|
|
|
:copyright: 2007-2008 by Armin Ronacher, Georg Brandl.
|
|
|
|
:license: BSD.
|
2007-07-23 09:02:25 +00:00
|
|
|
"""
|
|
|
|
|
2007-08-09 09:19:37 +00:00
|
|
|
import sys
|
2007-07-23 09:02:25 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2008-03-16 11:44:35 +00:00
|
|
|
print 'sphinx.web currently doesn\'t work -- it will undergo a ' \
|
|
|
|
'serious rewrite soon.'
|
|
|
|
sys.exit()
|
2007-08-09 09:19:37 +00:00
|
|
|
from sphinx.web import main
|
2007-07-23 09:02:25 +00:00
|
|
|
sys.exit(main(sys.argv))
|