Changeset 27
- Timestamp:
- 07/14/05 13:08:56 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
djangoproject.com/django_website/apps/docs/parts/build_documentation.py
r2 r27 11 11 from docutils.core import publish_parts 12 12 from docutils.writers import html4css1 13 from django.conf.settings import DJANGO_DOCUMENT_ROOT_PATH 13 14 14 15 SETTINGS = { … … 25 26 in_file = os.path.join(dir, fname) 26 27 out_file = os.path.join(dir, os.path.splitext(fname)[0] + ".html") 27 print "+++", in_file28 28 parts = publish_parts( 29 29 open(in_file).read(), … … 46 46 build(sys.argv[1:]) 47 47 else: 48 build([ os.getcwd()])48 build([DJANGO_DOCUMENT_ROOT_PATH])
