2007-04-27 09:55:40 +02:00
|
|
|
[[template id=plugin name=testpagespec author="[[Joey]]"]]
|
|
|
|
[[tag type/useful]]
|
|
|
|
|
|
|
|
This plugin allows testing a [[PageSpec]] to see if it matches a page, and
|
2007-04-27 10:34:09 +02:00
|
|
|
to see the part that matches, or causes the match to fail.
|
2007-04-27 09:55:40 +02:00
|
|
|
|
2007-04-27 10:34:09 +02:00
|
|
|
Example uses:
|
2007-04-27 09:55:40 +02:00
|
|
|
|
|
|
|
\[[testpagespec pagespec="foopage and barpage" match="foopage"]]
|
|
|
|
|
2007-04-27 10:34:09 +02:00
|
|
|
This will print out something like "no match: barpage does not match foopage",
|
2007-04-27 09:55:40 +02:00
|
|
|
highlighting which part of the [[PageSpec]] is causing the match to fail.
|
2007-04-27 10:34:09 +02:00
|
|
|
|
|
|
|
\[[testpagespec pagespec="foopage or !bar*" match="barpage"]]
|
|
|
|
|
2007-04-27 19:01:52 +02:00
|
|
|
This will print out something like "no match: bar* matches barpage", since
|
|
|
|
the part of the [[PageSpec]] that fails is this negated match.
|
2007-04-27 10:34:09 +02:00
|
|
|
|
|
|
|
\[[testpagespec pagespec="foopage or barpage" match="barpage"]]
|
|
|
|
|
|
|
|
This will print out something like "match: barpage matches barpage",
|
2007-04-27 19:01:52 +02:00
|
|
|
indicating the part of the [[PageSpec]] that caused it to match.
|