Since v1.6.3 you can now define your own plugins. These are just simply Java classes that implement the com.ecyrd.jspwiki.plugin.WikiPlugin interface and can be found from somewhere in your class path. The plugins work so that when you write a special code on the Wiki page, the plugins are invoked and their output is inserted into the page, verbatim.

The form is:

[{INSERT <plugin class> WHERE <param1=value1>,<param2=value2>,...}]

You can also use a shortcut: instead of using [{INSERT com.ecyrd.jspwiki.plugin.RecentChangesPlugin you can also use [{INSERT RecentChangesPlugin}]. This works only with the plugins that come with JSPWiki, though.

If a parameter contains spaces, you can use single quotes (') around the parameter. Like this:

[{INSERT CurrentTimePlugin format='dd MM yyyy'}]

Here are some sample plugins included in the archive:

com.ecyrd.jspwiki.plugin.RecentChangesPlugin

Inserts the latest changes in order.

Parameters:

  • since=n : show changes from the last n days.
  • format=(full|compact) : if "full", then display a long version with all possible info. If "compact", then be as compact as possible.

Example:

[{INSERT com.ecyrd.jspwiki.plugin.RecentChangesPlugin since=5, format=compact}]

Inserts the changes from the past 5 days in a compact format. You might use this to make an automatical list of changes to the LeftMenu, or LeftMenuFooter, for example.

com.ecyrd.jspwiki.plugin.UnusedPagesPlugin

Lists all pages that are not currently referred to by any other page, thus meaning they are inaccessible through any other means.

Parameters

  • maxwidth=n : Limits the length of the generated links to at most n characters. This should used to keep the LeftMenu or LeftMenuFooter at a manageable width. Default is to not limit the length at all.

Example:

See UnusedPages.

com.ecyrd.jspwiki.plugin.UndefinedPagesPlugin

Lists all pages that are referred to, but not yet created.

Parameters

  • maxwidth=n : Limits the length of the generated links to at most n characters. This should used to keep the LeftMenu or LeftMenuFooter at a manageable width. Default is to not limit the length at all.

Example:

See UndefinedPages.

com.ecyrd.jspwiki.plugin.ReferringPagesPlugin

Finds and lists all pages that refer to the current page.

Parameters

  • max=n : How many pages to list. Default is 10. Some pages might create very long lists, so it's a good idea to limit the list size.
  • maxwidth=n : Limits the length of the generated links to at most n characters. This should used to keep the LeftMenu or LeftMenuFooter at a manageable width. Default is to not limit the length at all.

Example

See LeftMenuFooter.

com.ecyrd.jspwiki.plugin.CurrentTimePlugin

Just displays the current server time.

Parameters

  • format=format string : How the date and time should be formatted. If you omit this, a default format will be used. The following characters are available to you:
 Symbol   Meaning                 Presentation        Example
 ------   -------                 ------------        -------
 G        era designator          (Text)              AD
 y        year                    (Number)            1996
 M        month in year           (Text & Number)     July & 07
 d        day in month            (Number)            10
 h        hour in am/pm (1~12)    (Number)            12
 H        hour in day (0~23)      (Number)            0
 m        minute in hour          (Number)            30
 s        second in minute        (Number)            55
 S        millisecond             (Number)            978
 E        day in week             (Text)              Tuesday
 D        day in year             (Number)            189
 F        day of week in month    (Number)            2 (2nd Wed in July)
 w        week in year            (Number)            27
 W        week in month           (Number)            2
 a        am/pm marker            (Text)              PM
 k        hour in day (1~24)      (Number)            24
 K        hour in am/pm (0~11)    (Number)            0
 z        time zone               (Text)              Pacific Standard Time
 \'       escape for text         (Delimiter)
 \''      single quote            (Literal)           '

For example, two 'y':s give you the year using two digits. Four 'y':s give you the year in four digits. Three 'M':s give you the month in letters, whereas two 'M':s give just the month number.

(Yes, these are exactly the Java SimpleDateFormat arguments. Sorry for copying them in.)

Example

Using [{INSERT CurrentTimePlugin format='yyyy.MM.dd G \'at\' hh:mm:ss z'}] would give you:

2008.10.06 AD at 01:44:49 GMT

Add new attachment

In order to upload a new attachment to this page, please use the following box to find the file, then click on “Upload”.
« This page (revision-1) was last changed on 11-May-2002 19:42 by unknown [RSS]
G’day (anonymous guest) My Prefs


Referenced by
TextFormattingRules

JSPWiki v2.6.0 [RSS]