webgui/lib/WebGUI/Help/Asset_WikiPage.pm
Colin Kuskie 93288c8332 Huge amount of ISA work for Assets (as opposed to Wobjects).
Bug fix for toolbar button rows that do not go away when all buttons
are deselected.
2006-12-23 23:58:51 +00:00

183 lines
4.4 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 => [
{
tag => 'wiki page asset template variables',
namespace => 'Asset_WikiPage'
},
],
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 => [
],
},
'wiki page asset template variables' => {
title => 'vars title',
body => 'vars body',
isa => [
],
variables => [
{
name => 'storageId',
},
{
name => 'content variable',
},
{
name => 'views',
},
{
name => 'isProtected',
},
{
'name' => 'actionTaken',
},
{
'name' => 'actionTakenBy',
},
],
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;