From c4373aa487ea8206abecb64c4ba5fbbcc90690f7 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 4 Jan 2008 04:26:50 -0500 Subject: web commit by http://weakish.int.eu.org/ --- doc/bugs/pages_under_templates_are_invalid.mdwn | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 doc/bugs/pages_under_templates_are_invalid.mdwn (limited to 'doc/bugs') diff --git a/doc/bugs/pages_under_templates_are_invalid.mdwn b/doc/bugs/pages_under_templates_are_invalid.mdwn new file mode 100644 index 000000000..9a363a76d --- /dev/null +++ b/doc/bugs/pages_under_templates_are_invalid.mdwn @@ -0,0 +1,5 @@ +ages under templates/ are invalid (in fact, not only invalid, but also not well-formed) xhtml pages. + +This problem is especially serious when you change extension from .html to .xhtml in ikiwiki.setup and use Firefox. Since Firefox will display a error message only for not well-formed application/xhtml+xml pages. + +It seems that HTML::Template also support syntax instead of . Chaning to this syntax will solve this problem, I guess. -- cgit v1.2.3 From 78e3f5a657f2e207fc49c501f6522ec3c4065e00 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 4 Jan 2008 04:33:26 -0500 Subject: web commit by http://weakish.int.eu.org/ --- ...r_mismatched_tags_won__39__t_get_converted.mdwn | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn (limited to 'doc/bugs') diff --git a/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn b/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn new file mode 100644 index 000000000..1928d04f2 --- /dev/null +++ b/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn @@ -0,0 +1,34 @@ +If you put in something such as undefined tags or mismatched tags in .mdwn file, ikiwiki will put

around them. But ikiwiki will NOT convert < and > to &lt; and &gt;! + +
+ + some text + +
+ + +the output html + +

some text

+ +And another example of mismatched tags: + + + +
+ + some text + +
+ + + + The out put becomes: + +
+ + some text + +
+ +

-- cgit v1.2.3 From ce3b55de42502dfb2ec099990d74c38ce82bac7b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 4 Jan 2008 04:34:58 -0500 Subject: web commit by http://weakish.int.eu.org/: minor --- ...r_mismatched_tags_won__39__t_get_converted.mdwn | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'doc/bugs') diff --git a/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn b/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn index 1928d04f2..9289759f1 100644 --- a/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn +++ b/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn @@ -1,34 +1,34 @@ If you put in something such as undefined tags or mismatched tags in .mdwn file, ikiwiki will put

around them. But ikiwiki will NOT convert < and > to &lt; and &gt;! -
+
- some text + some text -
+
the output html -

some text

+

some text

And another example of mismatched tags: -
+
- some text + some text -
-
+ + - The out put becomes: +The out put is: -
+
- some text + some text -
+
-

+

-- cgit v1.2.3 From c9ea796b39e0d83aa54652250789bd7e246b13f0 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 4 Jan 2008 04:38:18 -0500 Subject: web commit by http://weakish.int.eu.org/: minor --- .../undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/bugs') diff --git a/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn b/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn index 9289759f1..9463cfb1b 100644 --- a/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn +++ b/doc/bugs/undefined_tags_or_mismatched_tags_won__39__t_get_converted.mdwn @@ -1,4 +1,4 @@ -If you put in something such as undefined tags or mismatched tags in .mdwn file, ikiwiki will put

around them. But ikiwiki will NOT convert < and > to &lt; and &gt;! +If you put in something such as undefined tags or mismatched tags in .mdwn file, ikiwiki will put <p></p> around them. But ikiwiki will NOT convert < and > to &lt; and &gt;!
-- cgit v1.2.3 From f22558faedd71f4c29ff7c7b5a9a5e0d7371e339 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 4 Jan 2008 12:20:41 -0500 Subject: web commit by http://weakish.int.eu.org/: some more thought --- doc/bugs/pages_under_templates_are_invalid.mdwn | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'doc/bugs') diff --git a/doc/bugs/pages_under_templates_are_invalid.mdwn b/doc/bugs/pages_under_templates_are_invalid.mdwn index 9a363a76d..da4ffb295 100644 --- a/doc/bugs/pages_under_templates_are_invalid.mdwn +++ b/doc/bugs/pages_under_templates_are_invalid.mdwn @@ -3,3 +3,8 @@ ages under templates/ are invalid (in fact, not only invalid, but also not well- This problem is especially serious when you change extension from .html to .xhtml in ikiwiki.setup and use Firefox. Since Firefox will display a error message only for not well-formed application/xhtml+xml pages. It seems that HTML::Template also support syntax instead of . Chaning to this syntax will solve this problem, I guess. + + +Even if changed to style, the problem may still exist if the template contains if else block. + +Maybe just encode all < and > when compling pages within the templates folder will solve this problem. -- cgit v1.2.3 From f9fa96ded77418851da8b094f73c25dbde8a9714 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 5 Jan 2008 01:01:11 -0500 Subject: web commit by adb --- doc/bugs/taint_issue_with_regular_expressions.mdwn | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 doc/bugs/taint_issue_with_regular_expressions.mdwn (limited to 'doc/bugs') diff --git a/doc/bugs/taint_issue_with_regular_expressions.mdwn b/doc/bugs/taint_issue_with_regular_expressions.mdwn new file mode 100644 index 000000000..174b4f1c5 --- /dev/null +++ b/doc/bugs/taint_issue_with_regular_expressions.mdwn @@ -0,0 +1,9 @@ +Built from 2.1.17 source, works fine on commandline, but not working from CGI wrapper. Traced problem to regular expressions failing to match, specifically in contexts like the following in Render.pm: + + my ($f)=/$config{wiki_file_regexp}/; # untaint + +It works if I replace it with: + + my ($f)=/(^[-[:alnum:]_.:\/+]+$)/; # untaint + +which is exactly the same regular expression drawn out as a constant. It appears that %config gets some tainted data and is itself being marked entirely tainted, which may prevent using regular expressions contained in it for untainting other data. I'm using Perl 5.8.8. -- cgit v1.2.3