rewrote internationalization and help system
This commit is contained in:
parent
e0d4792587
commit
7bb6ac31c1
57 changed files with 11072 additions and 731 deletions
42
lib/WebGUI/Help/Article.pm
Normal file
42
lib/WebGUI/Help/Article.pm
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
package WebGUI::Help::Article;
|
||||
|
||||
our $HELP = {
|
||||
'article add/edit' => {
|
||||
title => 61,
|
||||
body => 71,
|
||||
related => [
|
||||
{
|
||||
tag => 'article template',
|
||||
namespace => 'Article'
|
||||
},
|
||||
{
|
||||
tag => 'forum discussion properties',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'article template' => {
|
||||
title => 72,
|
||||
body => 73,
|
||||
related => [
|
||||
{
|
||||
tag => 'article add/edit',
|
||||
namespace => 'Article'
|
||||
},
|
||||
{
|
||||
tag => 'pagination template variables',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
36
lib/WebGUI/Help/AuthLDAP.pm
Normal file
36
lib/WebGUI/Help/AuthLDAP.pm
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
package WebGUI::Help::AuthLDAP;
|
||||
|
||||
our $HELP = {
|
||||
'ldap authentication display account template' => {
|
||||
title => 'account-1',
|
||||
body => 'account-2',
|
||||
related => [
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'ldap authentication anonymous registration template' => {
|
||||
title => 'create-1',
|
||||
body => 'create-2',
|
||||
related => [
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'ldap authentication login template' => {
|
||||
title => 'login-1',
|
||||
body => 'login-2',
|
||||
related => [
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
36
lib/WebGUI/Help/AuthSMB.pm
Normal file
36
lib/WebGUI/Help/AuthSMB.pm
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
package WebGUI::Help::AuthSMB;
|
||||
|
||||
our $HELP = {
|
||||
'smb authentication display account template' => {
|
||||
title => 'account-1',
|
||||
body => 'account-2',
|
||||
related => [
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'smb authentication anonymous registration template' => {
|
||||
title => 'create-1',
|
||||
body => 'create-2',
|
||||
related => [
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'smb authentication login template' => {
|
||||
title => 'login-1',
|
||||
body => 'login-2',
|
||||
related => [
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
56
lib/WebGUI/Help/AuthWebGUI.pm
Normal file
56
lib/WebGUI/Help/AuthWebGUI.pm
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
package WebGUI::Help::AuthWebGUI;
|
||||
|
||||
our $HELP = {
|
||||
'webgui authentication display account template' => {
|
||||
title => 'account-1',
|
||||
body => 'account-2',
|
||||
related => [
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'webgui authentication anonymous registration template' => {
|
||||
title => 'create-1',
|
||||
body => 'create-2',
|
||||
related => [
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'webgui authentication password expiration template' => {
|
||||
title => 'expired-1',
|
||||
body => 'expired-2',
|
||||
related => [
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'webgui authentication login template' => {
|
||||
title => 'login-1',
|
||||
body => 'login-2',
|
||||
related => [
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'webgui authentication password recovery template' => {
|
||||
title => 'recovery-1',
|
||||
body => 'recovery-2',
|
||||
related => [
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
70
lib/WebGUI/Help/DataForm.pm
Normal file
70
lib/WebGUI/Help/DataForm.pm
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
package WebGUI::Help::DataForm;
|
||||
|
||||
our $HELP = {
|
||||
'data form add/edit' => {
|
||||
title => 61,
|
||||
body => 71,
|
||||
related => [
|
||||
{
|
||||
tag => 'data form fields add/edit',
|
||||
namespace => 'DataForm'
|
||||
},
|
||||
{
|
||||
tag => 'data form list template',
|
||||
namespace => 'DataForm'
|
||||
},
|
||||
{
|
||||
tag => 'data form template',
|
||||
namespace => 'DataForm'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'data form fields add/edit' => {
|
||||
title => 62,
|
||||
body => 72,
|
||||
related => [
|
||||
{
|
||||
tag => 'data form template',
|
||||
namespace => 'DataForm'
|
||||
},
|
||||
{
|
||||
tag => 'data form add/edit',
|
||||
namespace => 'DataForm'
|
||||
}
|
||||
]
|
||||
},
|
||||
'data form template' => {
|
||||
title => 82,
|
||||
body => 83,
|
||||
related => [
|
||||
{
|
||||
tag => 'data form fields add/edit',
|
||||
namespace => 'DataForm'
|
||||
},
|
||||
{
|
||||
tag => 'data form add/edit',
|
||||
namespace => 'DataForm'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'data form list template' => {
|
||||
title => 88,
|
||||
body => 89,
|
||||
related => [
|
||||
{
|
||||
tag => 'data form add/edit',
|
||||
namespace => 'DataForm'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
70
lib/WebGUI/Help/EventsCalendar.pm
Normal file
70
lib/WebGUI/Help/EventsCalendar.pm
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
package WebGUI::Help::EventsCalendar;
|
||||
|
||||
our $HELP = {
|
||||
'events calendar add/edit' => {
|
||||
title => 61,
|
||||
body => 71,
|
||||
related => [
|
||||
{
|
||||
tag => 'event add/edit',
|
||||
namespace => 'EventsCalendar'
|
||||
},
|
||||
{
|
||||
tag => 'events calendar template',
|
||||
namespace => 'EventsCalendar'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'event add/edit' => {
|
||||
title => 72,
|
||||
body => 73,
|
||||
related => [
|
||||
{
|
||||
tag => 'event template',
|
||||
namespace => 'EventsCalendar'
|
||||
},
|
||||
{
|
||||
tag => 'events calendar add/edit',
|
||||
namespace => 'EventsCalendar'
|
||||
}
|
||||
]
|
||||
},
|
||||
'events calendar template' => {
|
||||
title => 94,
|
||||
body => 95,
|
||||
related => [
|
||||
{
|
||||
tag => 'events calendar add/edit',
|
||||
namespace => 'EventsCalendar'
|
||||
},
|
||||
{
|
||||
tag => 'pagination template variables',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'event template' => {
|
||||
title => 96,
|
||||
body => 97,
|
||||
related => [
|
||||
{
|
||||
tag => 'event add/edit',
|
||||
namespace => 'EventsCalendar'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
52
lib/WebGUI/Help/FileManager.pm
Normal file
52
lib/WebGUI/Help/FileManager.pm
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
package WebGUI::Help::FileManager;
|
||||
|
||||
our $HELP = {
|
||||
'file manager add/edit' => {
|
||||
title => 61,
|
||||
body => 71,
|
||||
related => [
|
||||
{
|
||||
tag => 'file manager template',
|
||||
namespace => 'FileManager'
|
||||
},
|
||||
{
|
||||
tag => 'file add/edit',
|
||||
namespace => 'FileManager'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'file add/edit' => {
|
||||
title => 72,
|
||||
body => 73,
|
||||
related => [
|
||||
{
|
||||
tag => 'file manager add/edit',
|
||||
namespace => 'FileManager'
|
||||
}
|
||||
]
|
||||
},
|
||||
'file manager template' => {
|
||||
title => 75,
|
||||
body => 76,
|
||||
related => [
|
||||
{
|
||||
tag => 'file manager add/edit',
|
||||
namespace => 'FileManager'
|
||||
},
|
||||
{
|
||||
tag => 'pagination template variables',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
16
lib/WebGUI/Help/HttpProxy.pm
Normal file
16
lib/WebGUI/Help/HttpProxy.pm
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
package WebGUI::Help::HttpProxy;
|
||||
|
||||
our $HELP = {
|
||||
'http proxy add/edit' => {
|
||||
title => 10,
|
||||
body => 11,
|
||||
related => [
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
34
lib/WebGUI/Help/IndexedSearch.pm
Normal file
34
lib/WebGUI/Help/IndexedSearch.pm
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
package WebGUI::Help::IndexedSearch;
|
||||
|
||||
our $HELP = {
|
||||
'search add/edit' => {
|
||||
title => 26,
|
||||
body => 27,
|
||||
related => [
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'search template',
|
||||
namespace => 'IndexedSearch'
|
||||
}
|
||||
]
|
||||
},
|
||||
'search template' => {
|
||||
title => 29,
|
||||
body => 28,
|
||||
related => [
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'search add/edit',
|
||||
namespace => 'IndexedSearch'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
76
lib/WebGUI/Help/MessageBoard.pm
Normal file
76
lib/WebGUI/Help/MessageBoard.pm
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
package WebGUI::Help::MessageBoard;
|
||||
|
||||
our $HELP = {
|
||||
'message board add/edit' => {
|
||||
title => 61,
|
||||
body => 71,
|
||||
related => [
|
||||
{
|
||||
tag => 'forum add/edit',
|
||||
namespace => 'MessageBoard'
|
||||
},
|
||||
{
|
||||
tag => 'message board template',
|
||||
namespace => 'MessageBoard'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'message board template' => {
|
||||
title => 73,
|
||||
body => 74,
|
||||
related => [
|
||||
{
|
||||
tag => 'forum notification template',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'forum post form template',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'forum post template',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'forum search template',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'forum template',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'forum thread template',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'message board add/edit',
|
||||
namespace => 'MessageBoard'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'forum add/edit' => {
|
||||
title => 78,
|
||||
body => 79,
|
||||
related => [
|
||||
{
|
||||
tag => 'forum discussion properties',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'message board add/edit',
|
||||
namespace => 'MessageBoard'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
34
lib/WebGUI/Help/Poll.pm
Normal file
34
lib/WebGUI/Help/Poll.pm
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
package WebGUI::Help::Poll;
|
||||
|
||||
our $HELP = {
|
||||
'poll add/edit' => {
|
||||
title => 61,
|
||||
body => 71,
|
||||
related => [
|
||||
{
|
||||
tag => 'poll template',
|
||||
namespace => 'Poll'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'poll template' => {
|
||||
title => 73,
|
||||
body => 74,
|
||||
related => [
|
||||
{
|
||||
tag => 'poll add/edit',
|
||||
namespace => 'Poll'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
112
lib/WebGUI/Help/Product.pm
Normal file
112
lib/WebGUI/Help/Product.pm
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
package WebGUI::Help::Product;
|
||||
|
||||
our $HELP = {
|
||||
'product add/edit' => {
|
||||
title => 38,
|
||||
body => 39,
|
||||
related => [
|
||||
{
|
||||
tag => 'product related add/edit',
|
||||
namespace => 'Product'
|
||||
},
|
||||
{
|
||||
tag => 'product accessory add/edit',
|
||||
namespace => 'Product'
|
||||
},
|
||||
{
|
||||
tag => 'product benefit add/edit',
|
||||
namespace => 'Product'
|
||||
},
|
||||
{
|
||||
tag => 'product feature add/edit',
|
||||
namespace => 'Product'
|
||||
},
|
||||
{
|
||||
tag => 'product specification add/edit',
|
||||
namespace => 'Product'
|
||||
},
|
||||
{
|
||||
tag => 'product template',
|
||||
namespace => 'Product'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'product feature add/edit' => {
|
||||
title => 40,
|
||||
body => 41,
|
||||
related => [
|
||||
{
|
||||
tag => 'product benefit add/edit',
|
||||
namespace => 'Product'
|
||||
},
|
||||
{
|
||||
tag => 'product add/edit',
|
||||
namespace => 'Product'
|
||||
}
|
||||
]
|
||||
},
|
||||
'product specification add/edit' => {
|
||||
title => 42,
|
||||
body => 43,
|
||||
related => [
|
||||
{
|
||||
tag => 'product add/edit',
|
||||
namespace => 'Product'
|
||||
}
|
||||
]
|
||||
},
|
||||
'product accessory add/edit' => {
|
||||
title => 44,
|
||||
body => 45,
|
||||
related => [
|
||||
{
|
||||
tag => 'product add/edit',
|
||||
namespace => 'Product'
|
||||
}
|
||||
]
|
||||
},
|
||||
'product related add/edit' => {
|
||||
title => 46,
|
||||
body => 47,
|
||||
related => [
|
||||
{
|
||||
tag => 'product add/edit',
|
||||
namespace => 'Product'
|
||||
}
|
||||
]
|
||||
},
|
||||
'product benefit add/edit' => {
|
||||
title => 49,
|
||||
body => 50,
|
||||
related => [
|
||||
{
|
||||
tag => 'product feature add/edit',
|
||||
namespace => 'Product'
|
||||
},
|
||||
{
|
||||
tag => 'product add/edit',
|
||||
namespace => 'Product'
|
||||
}
|
||||
]
|
||||
},
|
||||
'product template' => {
|
||||
title => 62,
|
||||
body => 63,
|
||||
related => [
|
||||
{
|
||||
tag => 'product add/edit',
|
||||
namespace => 'Product'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
38
lib/WebGUI/Help/SQLReport.pm
Normal file
38
lib/WebGUI/Help/SQLReport.pm
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
package WebGUI::Help::SQLReport;
|
||||
|
||||
our $HELP = {
|
||||
'sql report add/edit' => {
|
||||
title => 61,
|
||||
body => 71,
|
||||
related => [
|
||||
{
|
||||
tag => 'sql report template',
|
||||
namespace => 'SQLReport'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'sql report template' => {
|
||||
title => 72,
|
||||
body => 73,
|
||||
related => [
|
||||
{
|
||||
tag => 'pagination template variables',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'sql report add/edit',
|
||||
namespace => 'SQLReport'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
34
lib/WebGUI/Help/SiteMap.pm
Normal file
34
lib/WebGUI/Help/SiteMap.pm
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
package WebGUI::Help::SiteMap;
|
||||
|
||||
our $HELP = {
|
||||
'site map add/edit' => {
|
||||
title => 61,
|
||||
body => 71,
|
||||
related => [
|
||||
{
|
||||
tag => 'site map template',
|
||||
namespace => 'SiteMap'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'site map template' => {
|
||||
title => 72,
|
||||
body => 73,
|
||||
related => [
|
||||
{
|
||||
tag => 'site map add/edit',
|
||||
namespace => 'SiteMap'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
44
lib/WebGUI/Help/Survey.pm
Normal file
44
lib/WebGUI/Help/Survey.pm
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
package WebGUI::Help::Survey;
|
||||
|
||||
our $HELP = {
|
||||
'survey add/edit' => {
|
||||
title => 3,
|
||||
body => 4,
|
||||
related => [
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'survey template' => {
|
||||
title => 88,
|
||||
body => 89,
|
||||
related => [
|
||||
{
|
||||
tag => 'survey template common vars',
|
||||
namespace => 'Survey'
|
||||
},
|
||||
{
|
||||
tag => 'survey add/edit',
|
||||
namespace => 'Survey'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'survey template common vars' => {
|
||||
title => 90,
|
||||
body => 91,
|
||||
related => [
|
||||
{
|
||||
tag => 'survey template',
|
||||
namespace => 'Survey'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
30
lib/WebGUI/Help/SyndicatedContent.pm
Normal file
30
lib/WebGUI/Help/SyndicatedContent.pm
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
package WebGUI::Help::SyndicatedContent;
|
||||
|
||||
our $HELP = {
|
||||
'syndicated content add/edit' => {
|
||||
title => 61,
|
||||
body => 71,
|
||||
related => [
|
||||
{
|
||||
tag => 'syndicated content template',
|
||||
namespace => 'SyndicatedContent'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'syndicated content template' => {
|
||||
title => 72,
|
||||
body => 73,
|
||||
related => [
|
||||
{
|
||||
tag => 'syndicated content add/edit',
|
||||
namespace => 'SyndicatedContent'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
74
lib/WebGUI/Help/USS.pm
Normal file
74
lib/WebGUI/Help/USS.pm
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
package WebGUI::Help::USS;
|
||||
|
||||
our $HELP = {
|
||||
'user submission system add/edit' => {
|
||||
title => 61,
|
||||
body => 71,
|
||||
related => [
|
||||
{
|
||||
tag => 'forum discussion properties',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'submission form template',
|
||||
namespace => 'USS'
|
||||
},
|
||||
{
|
||||
tag => 'submission template',
|
||||
namespace => 'USS'
|
||||
},
|
||||
{
|
||||
tag => 'user submission system template',
|
||||
namespace => 'USS'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'submission form template' => {
|
||||
title => 93,
|
||||
body => 94,
|
||||
related => [
|
||||
{
|
||||
tag => 'user submission system add/edit',
|
||||
namespace => 'USS'
|
||||
}
|
||||
]
|
||||
},
|
||||
'user submission system template' => {
|
||||
title => 74,
|
||||
body => 75,
|
||||
related => [
|
||||
{
|
||||
tag => 'pagination template variables',
|
||||
namespace => 'WebGUI'
|
||||
},
|
||||
{
|
||||
tag => 'user submission system add/edit',
|
||||
namespace => 'USS'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'submission template' => {
|
||||
title => 76,
|
||||
body => 77,
|
||||
related => [
|
||||
{
|
||||
tag => 'user submission system add/edit',
|
||||
namespace => 'USS'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
34
lib/WebGUI/Help/WSClient.pm
Normal file
34
lib/WebGUI/Help/WSClient.pm
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
package WebGUI::Help::WSClient;
|
||||
|
||||
our $HELP = {
|
||||
'web services client add/edit' => {
|
||||
title => 61,
|
||||
body => 71,
|
||||
related => [
|
||||
{
|
||||
tag => 'web services client template',
|
||||
namespace => 'WSClient'
|
||||
},
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
'web services client template' => {
|
||||
title => 72,
|
||||
body => 73,
|
||||
related => [
|
||||
{
|
||||
tag => 'web services client add/edit',
|
||||
namespace => 'WSClient'
|
||||
},
|
||||
{
|
||||
tag => 'wobject template',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
1114
lib/WebGUI/Help/WebGUI.pm
Normal file
1114
lib/WebGUI/Help/WebGUI.pm
Normal file
File diff suppressed because it is too large
Load diff
16
lib/WebGUI/Help/WobjectProxy.pm
Normal file
16
lib/WebGUI/Help/WobjectProxy.pm
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
package WebGUI::Help::WobjectProxy;
|
||||
|
||||
our $HELP = {
|
||||
'wobject proxy add/edit' => {
|
||||
title => 5,
|
||||
body => 6,
|
||||
related => [
|
||||
{
|
||||
tag => 'wobjects using',
|
||||
namespace => 'WebGUI'
|
||||
}
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
Loading…
Add table
Add a link
Reference in a new issue