diff --git a/lib/WebGUI/Help/Asset_Article.pm b/lib/WebGUI/Help/Asset_Article.pm index f52d11342..c51a6e020 100644 --- a/lib/WebGUI/Help/Asset_Article.pm +++ b/lib/WebGUI/Help/Asset_Article.pm @@ -46,10 +46,15 @@ our $HELP = { }, ], }, + 'article template' => { title => '72', body => '73', isa => [ + { + namespace => "Asset_Article", + tag => "article asset template variables" + }, { namespace => "Asset_Template", tag => "template variables" @@ -143,12 +148,38 @@ our $HELP = { } ] }, + ], + related => [ + { + tag => 'article add/edit', + namespace => 'Asset_Article' + }, + ] + }, + + 'article asset template variables' => { + title => 'article asset template variables title', + body => 'article asset template variables body', + isa => [ + ], + fields => [ + ], + variables => [ { 'name' => 'linkTitle' }, { 'name' => 'linkURL' }, + { + 'name' => 'cacheTimeout' + }, + { + 'name' => 'templateId' + }, + { + 'name' => 'storageId' + }, ], related => [ { @@ -157,6 +188,7 @@ our $HELP = { }, ] }, + }; 1; diff --git a/lib/WebGUI/Help/Asset_DataForm.pm b/lib/WebGUI/Help/Asset_DataForm.pm index 6e6eaba64..f360bf275 100644 --- a/lib/WebGUI/Help/Asset_DataForm.pm +++ b/lib/WebGUI/Help/Asset_DataForm.pm @@ -397,7 +397,7 @@ our $HELP = { ], related => [ { - tag => 'data form fields add/edit', + tag => 'data form list template', namespace => 'Asset_DataForm' }, { @@ -410,6 +410,16 @@ our $HELP = { 'data form list template' => { title => '88', body => '89', + isa => [ + { + namespace => "Asset_Template", + tag => "template variables" + }, + { + tag => 'wobject template', + namespace => 'Asset_Wobject' + } + ], fields => [ ], variables => [ @@ -526,10 +536,14 @@ our $HELP = { } ], related => [ + { + tag => 'data form template', + namespace => 'Asset_DataForm' + }, { tag => 'data form add/edit', namespace => 'Asset_DataForm' - } + }, ] }, }; diff --git a/lib/WebGUI/Help/Asset_Event.pm b/lib/WebGUI/Help/Asset_Event.pm index 4696500ed..caee342ae 100644 --- a/lib/WebGUI/Help/Asset_Event.pm +++ b/lib/WebGUI/Help/Asset_Event.pm @@ -4,6 +4,12 @@ our $HELP = { 'event add/edit' => { title => '72', body => '73', + isa => [ + { + tag => 'asset fields', + namespace => 'Asset' + }, + ], fields => [ { title => '512', @@ -37,19 +43,28 @@ our $HELP = { }, ], related => [ - { - tag => 'asset fields', - namespace => 'Asset' - }, { tag => 'event template', namespace => 'Asset_Event' }, ] }, + + ##I didn't break out individual asset level variables here + ##because there are so few of them. --ck 'event template' => { title => '96', body => '97', + isa => [ + { + tag => 'asset template', + namespace => 'Asset' + }, + { + tag => 'template language', + namespace => 'Asset_Template' + }, + ], fields => [ ], variables => [ @@ -59,12 +74,18 @@ our $HELP = { { 'name' => 'start.label' }, + { + 'name' => 'eventStartDate' + }, { 'name' => 'start.date' }, { 'name' => 'start.time' }, + { + 'name' => 'eventEndDate' + }, { 'name' => 'end.date' }, diff --git a/lib/WebGUI/Help/Asset_EventsCalendar.pm b/lib/WebGUI/Help/Asset_EventsCalendar.pm index a8a2463e9..07499e189 100644 --- a/lib/WebGUI/Help/Asset_EventsCalendar.pm +++ b/lib/WebGUI/Help/Asset_EventsCalendar.pm @@ -54,10 +54,6 @@ our $HELP = { }, ], related => [ - { - tag => 'asset fields', - namespace => 'Asset' - }, { tag => 'event add/edit', namespace => 'Asset_Event' @@ -72,9 +68,20 @@ our $HELP = { } ] }, + 'events calendar template' => { title => '94', body => '95', + isa => [ + { + tag => 'wobject template', + namespace => 'Asset_Wobject' + }, + { + tag => 'template language', + namespace => 'Asset_Template' + }, + ], fields => [ ], variables => [ @@ -255,25 +262,16 @@ our $HELP = { 'name' => 'year' } ] - } + }, + { + 'name' => 'pagination.pageCount.isMultiple' + }, ], related => [ { tag => 'events calendar add/edit', namespace => 'Asset_EventsCalendar' }, - { - tag => 'pagination template variables', - namespace => 'WebGUI' - }, - { - tag => 'wobject template', - namespace => 'Asset_Wobject' - }, - { - tag => 'template language', - namespace => 'Asset_Template' - }, ] }, }; diff --git a/lib/WebGUI/i18n/English/Asset_Article.pm b/lib/WebGUI/i18n/English/Asset_Article.pm index 5708c55bf..b1e9e90a9 100644 --- a/lib/WebGUI/i18n/English/Asset_Article.pm +++ b/lib/WebGUI/i18n/English/Asset_Article.pm @@ -21,6 +21,21 @@ our $I18N = { lastUpdated => 1146455970 }, + 'cacheTimeout' => { + message => q|The amount of time this article will be cached.|, + lastUpdated => 1164841027 + }, + + 'templateId' => { + message => q|The Id of the template used to display this Asset.|, + lastUpdated => 1164841027 + }, + + 'storageId' => { + message => q|The Id of the storage object for this Asset that is used to store any attachments.|, + lastUpdated => 1164841027 + }, + '71' => { message => q|

Articles are the Swiss Army knife of WebGUI. Most pieces of static content can be added via the Article. Articles are Wobjects, so they inherit the properties of both Wobjects and Assets.

@@ -60,6 +75,17 @@ use templates from the "page" namespace.|, lastUpdated => 1119066250 }, + 'article asset template variables title' => { + message => q|Article Asset Template Variables|, + lastUpdated => 1164841146 + }, + + 'article asset template variables body' => { + message => q|Every asset provides a set of variables to most of its +templates based on the internal asset properties. Some of these variables may +be useful, others may not.|, + lastUpdated => 1164841201 + }, '28' => { message => q|View Responses|, diff --git a/lib/WebGUI/i18n/English/Asset_Event.pm b/lib/WebGUI/i18n/English/Asset_Event.pm index 7808996ea..6e3163816 100644 --- a/lib/WebGUI/i18n/English/Asset_Event.pm +++ b/lib/WebGUI/i18n/English/Asset_Event.pm @@ -70,24 +70,34 @@ our $I18N = { lastUpdated => 1149392729, }, + 'eventStartDate' => { + message => q|The date and time this event starts as an epoch.|, + lastUpdated => 1164744850, + }, + 'start.date' => { - message => q|The date this event starts.|, - lastUpdated => 1149392729, + message => q|The date this event starts in the user's default date format.|, + lastUpdated => 1164744850, }, 'start.time' => { - message => q|The time this event starts.|, - lastUpdated => 1149392729, + message => q|The time this event starts in the user's default time format.|, + lastUpdated => 1164744852, + }, + + 'eventEndDate' => { + message => q|The date and time this event ends as an epoch.|, + lastUpdated => 1164744850, }, 'end.date' => { - message => q|The date this event ends.|, - lastUpdated => 1149392729, + message => q|The date this event ends in the user's default date format.|, + lastUpdated => 1164744853, }, 'end.time' => { - message => q|The time this event ends.|, - lastUpdated => 1149392729, + message => q|The time this event ends in the user's default time format.|, + lastUpdated => 1164744855, }, 'end.label' => { diff --git a/lib/WebGUI/i18n/English/Asset_EventsCalendar.pm b/lib/WebGUI/i18n/English/Asset_EventsCalendar.pm index b74a19898..f620402f4 100644 --- a/lib/WebGUI/i18n/English/Asset_EventsCalendar.pm +++ b/lib/WebGUI/i18n/English/Asset_EventsCalendar.pm @@ -530,7 +530,13 @@ The title of an individual event. '507' => { 'lastUpdated' => 1108397891, 'message' => 'Calendar Scope' - } + }, + + 'pagination.pageCount.isMultiple' => { + message => q|Calendar Scope|, + lastUpdated => 1108397891, + }, + }; 1;