|
\) # )
|
- \w+\([^\)]+\) # command(params)
+ \w+\([^\)]*\) # command(params)
|
[^\s()]+ # any other text
)
atom feeds, and also changing the publication time for a feed to the
newest modiciation time (was newest creation time).
* The patch also adds dcterms:creator to rss items that have a known author.
+ * Support pagespec "functions" with no parameters, like included() in the
+ conditional plugin.
- -- Joey Hess <joeyh@debian.org> Sat, 11 Aug 2007 18:25:28 -0400
+ -- Joey Hess <joeyh@debian.org> Sat, 11 Aug 2007 19:26:14 -0400
ikiwiki (2.5) unstable; urgency=low
return IkiWiki::FailReason->new("syntax error") if $@;
return $ret;
} #}}}
-</pre>
\ No newline at end of file
+</pre>
+
+> Thanks, [[done]] --[[Joey]]
+>
+> Note that the printing of the error isn't needed though. pagespec_match()
+> returns an IkiWiki::FailReason object if parsing fails, and its caller
+> can use that as desired to print the error.