]> oss.titaniummirror.com Git - webber.git/commitdiff
misc re-orderings
authorHolger Schurig <holgerschurig@gmail.com>
Thu, 1 Jul 2010 08:51:29 +0000 (10:51 +0200)
committerHolger Schurig <holgerschurig@gmail.com>
Thu, 1 Jul 2010 08:51:29 +0000 (10:51 +0200)
in/index.md
in/pageformat.md
webber.py

index 29d57b7851640ce54fc7e07becaafe59e1de291d..7952eb344385b758a6867fbb2d50cd5728babc50 100644 (file)
@@ -6,6 +6,7 @@ mtime: 2009-06-24
 * [[configuration]]
  * [[commandline]]
  * [[inheritance]]
+* [[inheritance]]
 * [[Plugins]]
  * [[read_rst]]
  * [[read_markdown]]
index e0324816e30a097f5ed55fe72c25934c03dfeba5..0fc91b5aa0a3986d97ea32670ce980525ffcb9da 100644 (file)
@@ -26,8 +26,8 @@ by "`file.XXXX`" and you're free to invent your own keywords:
 
        Hi, I'm Mario and I won't tell you more about me :-)
 
-Now you can access "`${file.subtitle}`" in your template and as
-"`params.file.subtitle`" in your own [[macros|macros]] or
+Now you can access "`${file.subtitle}`" in your template or
+"`params.file.subtitle`" in your [[macros|macros]] and
 [[functions|functions]].
 
 
@@ -68,6 +68,12 @@ breadcrumbs and a side-menu.
 Used by [[hierarchy]] to indicate relationship.
 
 
+== links ==
+
+Used by [[hierarchy]] to indicate relationship. Usually it's better to use
+"`parent`" instead.
+
+
 == order ==
 
 All pages with the same "`parent`" will end up below the parent on the
@@ -78,11 +84,6 @@ If you don't want this default sort order, you can specify your own ordering.
 The default order is 100, so anything with a lower order will show up on the
 top, anything higher at the bottom of the side-menu.
 
-== links ==
-
-Used by [[hierarchy]] to indicate relationship. Usually it's better to use
-"`parent`" instead.
-
 
 == ctime ==
 
index 07136de40733244f7f26a0ce75918834d02c012b..3ab917827da945350d452cdf2bc3e03126e20df1 100644 (file)
--- a/webber.py
+++ b/webber.py
@@ -477,9 +477,9 @@ def read_file(direc, file):
                return_holder=False)
        if not contents:
                return
+       file.contents = contents
 
        log("filtering file %s" % file.rel_path, level=6)
-       file.contents = contents
        res = run_hooks("filter",
                direc=direc,
                file=file)