webgui/lib/WebGUI/Help/Asset_WikiPage.pm
Colin Kuskie bea0ae472a Two bug fixes, for Wiki History and initial drop down setting in the Group Search dialog.
Documented the Wiki Page history template and i18n'ed the delete confirmation in the history
interface.
2006-12-18 22:57:38 +00:00

150 lines
3.7 KiB
Perl

package WebGUI::Help::Asset_WikiPage;
our $HELP = {
'wiki page add/edit' => {
title => 'add/edit title',
body => 'add/edit body',
isa => [
],
variables => [
{
name => 'title',
},
{
name => 'formHeader',
required => 1,
},
{
name => 'formTitle',
},
{
name => 'titleLabel',
description => 'titleLabel variable',
},
{
name => 'formContent',
},
{
name => 'contentLabel',
description => 'contentLabel variable',
},
{
name => 'formProtect',
},
{
name => 'protectQuestionLabel',
description => 'protectQuestionLabel variable',
},
{
name => 'formSubmit',
required => 1,
},
{
name => 'formFooter',
required => 1,
},
{
name => 'isNew',
},
{
name => 'canAdminister',
},
{
name => 'isProtected',
},
{
name => 'deleteLabel',
description => 'deleteLabel variable',
},
{
name => 'deleteUrl',
},
],
related => [
],
},
'view template' => {
title => 'view title',
body => 'view body',
isa => [
],
variables => [
{
name => 'viewLabel',
description => 'viewLabel variable',
},
{
name => 'editLabel',
description => 'editLabel variable',
},
{
name => 'historyLabel',
description => 'historyLabel variable',
},
{
name => 'historyUrl',
},
{
'name' => 'wikiHomeLabel',
'description' => 'wikiHomeLabel variable',
},
{
'name' => 'wikiHomeUrl',
},
{
'name' => 'mostPopularUrl',
},
{
'name' => 'mostPopularLabel variable',
},
{
'name' => 'recentChangesUrl',
},
{
'name' => 'recentChangesLabel',
},
{
'name' => 'searchLabel',
'description' => 'searchLabel variable',
},
{
'name' => 'editContent',
},
{
'name' => 'content',
},
],
related => [
],
},
'history template' => {
title => 'history title',
body => 'history body',
isa => [
],
variables => [
{
'name' => 'history toolbar',
},
{
'name' => 'history date',
},
{
'name' => 'history username',
},
{
'name' => 'history actionTaken',
},
{
'name' => 'history interval',
},
],
related => [
],
},
};
1;