Autogenerates a list/table of pages which are members of a category chosen by the user.
Administrators
No special actions required.
Note however that this plugin creates it's own help and test pages inside your wiki, for your benefit.These pages cannot be deleted without disabeling the formatter first. Markup Usage
What can you do?- Generate a list/table of pages that match a certain category
- Use numbered/unnumbered lists (# or *)
- Choose wether among the following page properties to display:
- comment
- summary
- keywords
- lastmodified
- linkedpages
- createtime
- pagename
- user
- creator
- Choose one or more Namespaces to search in, the namespace must of course contain the same category
- Use styled tables instead of lists or even your own custom style.
Usage:{ CategoryList cat= type= }Where: - Required:
- cat - Name of a valid category
- Optional:
- ns - Namespace(s) to search for pages in, ex. ns=root or ns='root,ProjectX'.
- Default the current Namespace is used
- type - Can be 1 of 4, *,#, or table
- "*"- Means unnumbered list
- "#"- Means numbered list
- "table" - Means use table instead of list
- Default is *
- To display additional columns use the table tags found here further down this page. Simply use the values described above in the 'cols' argument.
All args which have a value that contains whitespaces, must be encapsulated in ' ', ex. 'My Category'.
Example
On my homepage and at my work I use this plugin for handling small easy tasks/reminders.
Minimum
The combinations of lists.
Markup:{ CategoryList cat=MyCat type=* } Result: Markup:{ CategoryList cat=MyCat type=* cols=summary } Result: Markup:{ CategoryList cat=MyCat type=# cols='summary,user' } Result:1.
Page Link1 - Page Summary - Username
2.
Page Link2 - Page Summary - Username
3.
Page Link3 - Page Summary - Username
Markup:{ CategoryList cat=MyCat ns=ProjectX type=# cols='summary,user' } Result:1.
Page Link1 - Page Summary - Username
2.
Page Link2 - Page Summary - Username
3.
Page Link3 - Page Summary - Username
Tables and Styling ¶
The Keeper Garrett Screwturn Formatters currently consists of 4 formatters which all uses the same tables and styling scheme, they are:
Markup Usage
What can you do?- Add a heading to your table
- Add a footer to your table
- Show only specified columns
- Change column order
- Override column headers
- Use one of the 11 predefined styles
- Define your own style
- Use the default wiki theme style
- Use the default generic wiki theme style
Usage:{SomeFormatter( ...Formatter_Specific_Args=XX... head=XXX foot=YYY cols=ZZZ colnames=XYZ style=ZXY}Where: - head - Heading of the table
- foot - Footer of the table
- cols - Name and order of the columns to show, must be seperated by ,. Ex. 'col1,col2,col3'
- colnames - Custom column names, must be seperated by ,. Ex. 'col1,col2,col3'
- style - Name of one of the predefined styles, if not specified the default wiki style is used.
All args which have a value that contains whitespaces, must be encapsulated in ' ', ex. 'My Heading'. Add A Heading
Markup:{SomeFormatter( ... head='My Heading'} Result:My HeadingCol1 | Col2 |
---|
DataCell1 | DataCell2 |
Add A Footer
Markup:{SomeFormatter( ... foot='My Footer'} Result:Col1 | Col2 |
---|
DataCell1 | DataCell2 |
Change Column Order and Display ¶
Markup:{SomeFormatter( ... cols='Col1,Col3,Col2'} Result:Col1 | Col3 | Col2 |
---|
DataCell1 | DataCell3 | DataCell2 |
Here a 4 column called Col4 is omitted since it is not mentioned. Change Column Names ¶
Markup:{SomeFormatter( ... colnames='X,Y,Z'} Result:X | Y | Z |
---|
DataCell1 | DataCell2 | DataCell3 |
ORMarkup:{SomeFormatter( ... cols='Col1,Col3,Col2' colnames='X,Y,Z'} Result:X | Y | Z |
---|
DataCell1 | DataCell3 | DataCell2 |
Styling
Markup:
{SomeFormatter( ... style='generic'}
If the style argument is not supplied the default wiki table style is used.
There are 2 theme based styles and 11 predefined styles which are bundled with all the formatters (which uses tables).
Wiki Theme styles:- No style specified - will use the current theme's default style
- generic - will use the current theme's generic style
- There's a small section in the TableStyle.css which removes the generic padding so that the generic style mathces the one used in the wiki. Uncomment the generic section if you do not like this and save the TableStyle.css.
Predefined table styles:- hor-minimalist-a
- hor-minimalist-b
- ver-minimalist
- box-table-a
- box-table-b
- hor-zebra
- hor-zebra-a
- hor-zebra-b
- rounded-corner
- background-image
- gradient-style
All these styles are defined in the TableStyle.css file which is located in default file storage provider on the following path:/Keeper.Garrett.Formatters/Tables/TableStyle.css So to create your own custom style simply add your CSS to this file. Examples

