diff options
author | Joey Hess <joey@kitenet.net> | 2010-06-27 13:50:02 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-06-27 13:50:02 -0400 |
commit | be60d261e6cbee094e4df74e1bb24c8ad3dc393d (patch) | |
tree | 23d6f355734a34a0d56e14ebd27f883b93423880 /doc/bugs | |
parent | bb5193fde1dbe5ebffe84deddc6ed4aac80a36b0 (diff) | |
parent | 6e68a48b63a532369d97709dd189d233c5fd0298 (diff) |
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Diffstat (limited to 'doc/bugs')
-rw-r--r-- | doc/bugs/po_vs_templates.mdwn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/bugs/po_vs_templates.mdwn b/doc/bugs/po_vs_templates.mdwn new file mode 100644 index 000000000..a0ccc5f53 --- /dev/null +++ b/doc/bugs/po_vs_templates.mdwn @@ -0,0 +1,17 @@ +The po plugin's protection against processing loops (i.e. the +alreadyfiltered stuff) is playing against us: the template plugin +triggers a filter hooks run with the very same ($page, $destpage) +arguments pair that is used to identify an already filtered page. + +Processing an included template can then mark the whole translation +page as already filtered, which prevented `po_to_markup` to be called on +the PO content. + +Symptoms: the unprocessed gettext file goes unfiltered to the +generated HTML. + +This has been fixed in my po branch. + +-- [[intrigeri]] + +[[!tag patch]] |