Add the missing documentation for the by keyword template in the WikiMaster.

This commit is contained in:
Colin Kuskie 2010-05-03 18:37:38 -07:00
parent 10d86dbf1a
commit b2dd6135b6
2 changed files with 68 additions and 0 deletions

View file

@ -278,6 +278,38 @@ our $HELP = {
related => [],
},
'by keyword template' => {
title => 'by keyword template title',
body => '',
isa => [
{ namespace => "WebGUI",
tag => "pagination template variables"
},
],
variables => [
{ name => 'keyword',
description => 'by keyword keyword',
},
{ name => 'pagesLoop',
description => 'by keyword pagesLoop',
variables => [
{ name => 'title',
description => 'by keyword title',
},
{ name => 'url',
description => 'by keyword url',
},
{ name => 'synopsis',
description => 'by keyword synopsis',
},
],
},
],
fields => [],
related => [],
},
};
1;

View file

@ -572,6 +572,42 @@ listing of pages that are related to a specific keyword?| },
context => q{Help for template variable},
},
'by keyword template title' => {
message => q{Wiki By Keyword Template Variables},
lastUpdated => 0,
context => q{Help for template variable},
},
'by keyword keyword' => {
message => q{The keyword that was requested.},
lastUpdated => 0,
context => q{Help for template variable},
},
'by keyword pagesLoop' => {
message => q{A loop of pages that contain the requested keyword.},
lastUpdated => 0,
context => q{Help for template variable},
},
'by keyword title' => {
message => q{The title of this page in the loop.},
lastUpdated => 0,
context => q{Help for template variable},
},
'by keyword url' => {
message => q{The url of this page in the loop.},
lastUpdated => 0,
context => q{Help for template variable},
},
'by keyword synopsis' => {
message => q{The synopsis of this page in the loop.},
lastUpdated => 0,
context => q{Help for template variable},
},
};
1;