Fixed some bad help topic keys, and finished basic docs for

all workflow activities.
This commit is contained in:
Colin Kuskie 2006-07-02 05:18:58 +00:00
parent 23c17851ea
commit 3b5f69c8c7
13 changed files with 232 additions and 1 deletions

View file

@ -1,7 +1,7 @@
package WebGUI::Help::Workflow_Activity_SendQueuedMailMessages;
our $HELP = {
'get cs post' => {
'send queued mail messages' => {
title => 'topicName',
body => 'send queued mail messages body',
isa => [

View file

@ -0,0 +1,23 @@
package WebGUI::Help::Workflow_Activity_SummarizePassiveProfileLog;
our $HELP = {
'summarize passive profile log' => {
title => 'topicName',
body => 'summarize passive profile log body',
isa => [
{
namespace => "Workflow_Activity",
tag => "add/edit workflow activity"
},
],
fields => [
],
variables => [
],
related => [
],
},
};
1; ##All perl modules must return true

View file

@ -0,0 +1,23 @@
package WebGUI::Help::Workflow_Activity_SyncProfilesToLdap;
our $HELP = {
'sync profiles to ldap' => {
title => 'topicName',
body => 'sync profiles to ldap body',
isa => [
{
namespace => "Workflow_Activity",
tag => "add/edit workflow activity"
},
],
fields => [
],
variables => [
],
related => [
],
},
};
1; ##All perl modules must return true

View file

@ -0,0 +1,28 @@
package WebGUI::Help::Workflow_Activity_TrashClipboard;
our $HELP = {
'trash clipboard' => {
title => 'topicName',
body => 'trash clipboard body',
isa => [
{
namespace => "Workflow_Activity",
tag => "add/edit workflow activity"
},
],
fields => [
{
title => 'trash after',
description => 'trash after help',
namespace => 'Workflow_Activity_TrashClipboard',
},
],
variables => [
],
related => [
],
},
};
1; ##All perl modules must return true

View file

@ -0,0 +1,28 @@
package WebGUI::Help::Workflow_Activity_TrashExpiredEvents;
our $HELP = {
'trash expired events' => {
title => 'topicName',
body => 'trash expired events body',
isa => [
{
namespace => "Workflow_Activity",
tag => "add/edit workflow activity"
},
],
fields => [
{
title => 'trash after',
description => 'trash after help',
namespace => 'Asset_Event',
},
],
variables => [
],
related => [
],
},
};
1; ##All perl modules must return true

View file

@ -0,0 +1,23 @@
package WebGUI::Help::Workflow_Activity_TrashVersionTag;
our $HELP = {
'trash version tag' => {
title => 'topicName',
body => 'trash version tag body',
isa => [
{
namespace => "Workflow_Activity",
tag => "add/edit workflow activity"
},
],
fields => [
],
variables => [
],
related => [
],
},
};
1; ##All perl modules must return true

View file

@ -0,0 +1,23 @@
package WebGUI::Help::Workflow_Activity_UnlockVersionTag;
our $HELP = {
'unlock version tag' => {
title => 'topicName',
body => 'unlock version tag body',
isa => [
{
namespace => "Workflow_Activity",
tag => "add/edit workflow activity"
},
],
fields => [
],
variables => [
],
related => [
],
},
};
1; ##All perl modules must return true

View file

@ -7,6 +7,11 @@ our $I18N = {
lastUpdated => 0,
},
'summarize passive profile log body' => {
message => q|<p>This workflow activity will summarize passive profiling data for all users except for Visitor and then delete their previous passive log. If passive profiling is disabled in the site settings, the summarization will not be done.</p>|,
lastUpdated => 0,
},
};
1;

View file

@ -0,0 +1,17 @@
package WebGUI::i18n::English::Workflow_Activity_SyncProfilesToLdap;
our $I18N = {
'topicName' => {
message => q|Sync Profiles To LDAP|,
context => q|The name of this workflow activity.|,
lastUpdated => 0,
},
'sync profiles to ldap body' => {
message => q|<p>This workflow activity will synchronize the profiles of all users configured for LDAP authentication. Note that this only comes from LDAP and goes to WebGUI and not the other direction.</p>|,
lastUpdated => 0,
},
};
1;

View file

@ -19,6 +19,12 @@ our $I18N = {
lastUpdated => 0,
},
'trash clipboard body' => {
message => q|<p>This workflow activity will move all assets from the Clipboard to the Trash after they have been in the Clipboard for the specified interval.</p>
<p>WebGUI ships with a default Workflow that moves all assets from the Clipboard to the Trash if they have been in the Clipboard for 30 days.</p>|,
lastUpdated => 0,
},
};
1;

View file

@ -0,0 +1,19 @@
package WebGUI::i18n::English::Workflow_Activity_TrashExpiredEvents;
our $I18N = {
'topicName' => {
message => q|Trash Expired Events|,
context => q|The name of this workflow activity.|,
lastUpdated => 0,
},
'trash expired events body' => {
message => q|<p>This workflow activity will move all Event assets to the Trash after a user defined interval has passed from their end date.</p>
<p>The default interval is 30 days.</p>|,
lastUpdated => 0,
},
};
1;

View file

@ -0,0 +1,18 @@
package WebGUI::i18n::English::Workflow_Activity_TrashVersionTag;
our $I18N = {
'topicName' => {
message => q|Trash Version Tag|,
context => q|The name of this workflow activity.|,
lastUpdated => 0,
},
'trash version tag body' => {
message => q|<p>This workflow activity will move all assets in the version tag into the trash. After the move, the version tag is locked.</p>|,
lastUpdated => 0,
},
};
1;

View file

@ -0,0 +1,18 @@
package WebGUI::i18n::English::Workflow_Activity_UnlockVersionTag;
our $I18N = {
'topicName' => {
message => q|Unlock Version Tag|,
context => q|The name of this workflow activity.|,
lastUpdated => 0,
},
'unlock version tag body' => {
message => q|<p>This workflow activity will unlock a locked version tag so that the assets inside can be edited. Typically, this is used to unlock a committed version tag that was rejected in an authorization flow for tags.</p>|,
lastUpdated => 0,
},
};
1;