Added more i18n labels to HttpProxy so that error messages can be internationalized.
Added skeletal documentation for the new RSS modules. Fixed a bug in Search/Index.pm that was giving a warning during syntax checks.
This commit is contained in:
parent
7532d07507
commit
91ee102c5f
7 changed files with 211 additions and 5 deletions
30
lib/WebGUI/Help/Asset_RSSCapable.pm
Normal file
30
lib/WebGUI/Help/Asset_RSSCapable.pm
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
package WebGUI::Help::Asset_RSSCapable;
|
||||
|
||||
our $HELP = {
|
||||
'rss capable' => {
|
||||
title => 'rss capable title',
|
||||
body => 'rss capable body',
|
||||
# use the following to inherit stuff other help entries
|
||||
isa => [
|
||||
],
|
||||
fields => [ #This array is used to list hover help for form fields.
|
||||
{
|
||||
title => 'rssEnabled label',
|
||||
description => 'rssEnabled hoverHelp',
|
||||
namespace => 'Asset_RSSCapable',
|
||||
},
|
||||
{
|
||||
title => 'rssTemplateId label',
|
||||
description => 'rssTemplateId hoverHelp',
|
||||
namespace => 'Asset_RSSCapable',
|
||||
},
|
||||
],
|
||||
variables => [
|
||||
],
|
||||
related => [ ##This lists other help articles that are related to this one
|
||||
],
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1; ##All perl modules must return true
|
||||
67
lib/WebGUI/Help/Asset_RSSFromParent.pm
Normal file
67
lib/WebGUI/Help/Asset_RSSFromParent.pm
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
package WebGUI::Help::Asset_RSSFromParent;
|
||||
|
||||
our $HELP = {
|
||||
'rss from parent' => {
|
||||
title => 'rss from parent title',
|
||||
body => 'rss from parent body',
|
||||
# use the following to inherit stuff other help entries
|
||||
isa => [
|
||||
],
|
||||
fields => [ #This array is used to list hover help for form fields.
|
||||
],
|
||||
variables => [
|
||||
{
|
||||
'name' => 'title',
|
||||
'description' => 'title.parent'
|
||||
},
|
||||
{
|
||||
'name' => 'link',
|
||||
'description' => 'title.parent'
|
||||
},
|
||||
{
|
||||
'name' => 'description',
|
||||
'description' => 'description.parent'
|
||||
},
|
||||
{
|
||||
'name' => 'generator'
|
||||
},
|
||||
{
|
||||
'name' => 'lastBuildDate'
|
||||
},
|
||||
{
|
||||
'name' => 'webMaster'
|
||||
},
|
||||
{
|
||||
'name' => 'docs'
|
||||
},
|
||||
{
|
||||
'name' => 'item_loop',
|
||||
variables => [
|
||||
{
|
||||
'name' => 'title',
|
||||
'description' => 'title.item'
|
||||
},
|
||||
{
|
||||
'name' => 'link',
|
||||
'description' => 'title.item'
|
||||
},
|
||||
{
|
||||
'name' => 'description',
|
||||
'description' => 'description.item'
|
||||
},
|
||||
{
|
||||
'name' => 'guid'
|
||||
},
|
||||
{
|
||||
'name' => 'pubDate'
|
||||
},
|
||||
]
|
||||
},
|
||||
],
|
||||
related => [ ##This lists other help articles that are related to this one
|
||||
],
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1; ##All perl modules must return true
|
||||
Loading…
Add table
Add a link
Reference in a new issue