some more small release changes
authorArmin Ronacher <armin.ronacher@active-4.com>
Sat, 17 Nov 2007 20:56:19 +0000 (21:56 +0100)
committerArmin Ronacher <armin.ronacher@active-4.com>
Sat, 17 Nov 2007 20:56:19 +0000 (21:56 +0100)
--HG--
branch : trunk
rename : docs/build/jinjabanner.png => docs/html/jinjabanner.png
rename : docs/build/jinjalogo.png => docs/html/jinjalogo.png
rename : docs/build/style.css => docs/html/style.css
rename : docs/build/watermark.png => docs/html/watermark.png

MANIFEST.in
docs/generate.py
docs/html/jinjabanner.png [moved from docs/build/jinjabanner.png with 100% similarity]
docs/html/jinjalogo.png [moved from docs/build/jinjalogo.png with 100% similarity]
docs/html/style.css [moved from docs/build/style.css with 100% similarity]
docs/html/watermark.png [moved from docs/build/watermark.png with 100% similarity]
docs/src/designerdoc.txt
docs/src/frameworks.txt
setup.py

index 181a4aaefcd7ca255955c0b8dd69d3c5f1874468..d94a6dac95a37fbc475527793156754aed281c5a 100644 (file)
@@ -1,4 +1,4 @@
 include Makefile CHANGES LICENSE AUTHORS TODO ez_setup.py
-include docs/build/*.html
+include docs/html/*
 include docs/src/*.txt
 recursive-include tests *
index 6b6b0ac7d8ad87f1f53a979f0d3f43ee2d1fa7b3..8d9f3a03a7923b4145b3fc996ff805906dcffcfc 100755 (executable)
@@ -317,7 +317,7 @@ def run(dst, preproc, sources=(), handle_file=handle_file):
             f.close()
 
 
-def main(dst='build/', preproc=False, *sources):
+def main(dst='html/', preproc=False, *sources):
     run(os.path.realpath(dst), str(preproc).lower() == 'true', sources)
 
 
similarity index 100%
rename from docs/build/style.css
rename to docs/html/style.css
index 978565a05e439487f5777c09fb5cf864213564f7..cc0cbde75647d0aee388ab46a87ca29287dfb45f 100644 (file)
@@ -281,7 +281,7 @@ With Jinja 1.2 onwards it's possible to replace basic if/else blocks with the
 inline `if` / `else` expression.  The following two examples evaluate to the
 same:
 
-.. source:: jinja
+.. sourcecode:: jinja
 
     {{ "something" if expr else "otherthing" }}
 
index 88aafea027e1721f101d54cf5fe7d3840bfbf969..96a1cfa8c9d66814d706bd7e1a957bc6d7b93c50 100644 (file)
@@ -223,7 +223,7 @@ Available methods on the `register` object:
 
         {{ render_author_details('John Doe') }}
 
-``clean_inclusion (func, template[, name[, run_processors]]) ``
+``clean_inclusion (func, template[, name[, run_processors]])``
     Works like `context_inclusion` but doesn't use the calles
     context but an empty context. If `run_processors` is `True`
     it will lookup the context for a `request` object and pass
index 772e1eaad82bb6dc7fda684d4e3e0a4d34254bb4..b09a3805f7d60f18841d4e1e6f732d6e49e7d23b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -79,7 +79,7 @@ setup(
     keywords=['python.templating.engines'],
     packages=['jinja', 'jinja.translators'],
     data_files=[
-        ('docs', list(list_files('docs/build'))),
+        ('docs/html', list(list_files('docs/html'))),
         ('docs/txt', list(list_files('docs/src')))
     ],
     entry_points='''