The IndexPlugin is a JSPWikiPlugin that displays all of the pages in this Wiki in alphabetical order. The IndexPlugin was contributed by Alain Ravet.
See PageIndex.
The plugin includes an optional:
The IndexPlugin uses GLOB patterns which do not support multiple alternative matches. A summary of the supported syntax is here
Wikipedia provides good documentation of regular expressions. The simplest ones are:
Regular Expression | Description |
---|---|
. | Any character |
* | 0 or more repetition of the previous specification |
.* | a sequence of 0 or more characters |
[0-9] | characters 0 thru 9 |
[a-z0-9BCD] | characters a-z, 0-9 and BCD |
^ | Beginning marker (not needed because "exclude" specification assumes it by default) |
$ | End marker (not needed because "exclude" specification assumes it by default) |
For example, the regular expression "^Ab.*cd\.ef$" means:
Atom | Description |
---|---|
^ | Starts with |
Ab | the character "Ab" |
.* | is followed by as many characters necessary (including none) |
cd | until we also have the "cd" characters |
\. | and the actual "dot" character |
ef | and the "ef" characters |
$ | considering the above; terminating in "cd.ef" |
This should cover most simple cases.
See: JSPWikiCorePlugins