diff --git a/lib/WebGUI/Help/Workflow_Activity_CleanLoginHistory.pm b/lib/WebGUI/Help/Workflow_Activity_CleanLoginHistory.pm new file mode 100644 index 000000000..82e9eeade --- /dev/null +++ b/lib/WebGUI/Help/Workflow_Activity_CleanLoginHistory.pm @@ -0,0 +1,28 @@ +package WebGUI::Help::Workflow_Activity_CleanLoginHistory; + +our $HELP = { + 'clean login history' => { + title => 'topicName', + body => 'clean login history body', + isa => [ + { + namespace => "Workflow_Activity", + tag => "add/edit workflow activity" + }, + ], + fields => [ + { + title => 'age to delete', + description => 'age to delete help', + namespace => 'Workflow_Activity_CleanLoginHistory', + }, + ], + variables => [ + ], + related => [ + ], + }, + +}; + +1; ##All perl modules must return true diff --git a/lib/WebGUI/Help/Workflow_Activity_CleanTempStorage.pm b/lib/WebGUI/Help/Workflow_Activity_CleanTempStorage.pm new file mode 100644 index 000000000..cf5e6aa26 --- /dev/null +++ b/lib/WebGUI/Help/Workflow_Activity_CleanTempStorage.pm @@ -0,0 +1,28 @@ +package WebGUI::Help::Workflow_Activity_CleanTempStorage; + +our $HELP = { + 'clean file cache' => { + title => 'topicName', + body => 'clean temp storage body', + isa => [ + { + namespace => "Workflow_Activity", + tag => "add/edit workflow activity" + }, + ], + fields => [ + { + title => 'storage timeout', + description => 'storage timeout help', + namespace => 'Workflow_Activity_CleanTempStorage', + }, + ], + variables => [ + ], + related => [ + ], + }, + +}; + +1; ##All perl modules must return true diff --git a/lib/WebGUI/Help/Workflow_Activity_CommitVersionTag.pm b/lib/WebGUI/Help/Workflow_Activity_CommitVersionTag.pm new file mode 100644 index 000000000..a783ef9b0 --- /dev/null +++ b/lib/WebGUI/Help/Workflow_Activity_CommitVersionTag.pm @@ -0,0 +1,23 @@ +package WebGUI::Help::Workflow_Activity_CommitVersionTag; + +our $HELP = { + 'clean login history' => { + title => 'topicName', + body => 'commit version tag body', + isa => [ + { + namespace => "Workflow_Activity", + tag => "add/edit workflow activity" + }, + ], + fields => [ + ], + variables => [ + ], + related => [ + ], + }, + +}; + +1; ##All perl modules must return true diff --git a/lib/WebGUI/i18n/English/Workflow_Activity_CleanLoginHistory.pm b/lib/WebGUI/i18n/English/Workflow_Activity_CleanLoginHistory.pm index 458bb1514..1f4390558 100644 --- a/lib/WebGUI/i18n/English/Workflow_Activity_CleanLoginHistory.pm +++ b/lib/WebGUI/i18n/English/Workflow_Activity_CleanLoginHistory.pm @@ -19,6 +19,11 @@ our $I18N = { lastUpdated => 0, }, + 'clean login history body' => { + message => q|
This workflow activity will go through the User Login Log table in the WebGUI database and prune entries that are older than the user configured time limit.
|, + lastUpdated => 0, + }, + }; 1; diff --git a/lib/WebGUI/i18n/English/Workflow_Activity_CleanTempStorage.pm b/lib/WebGUI/i18n/English/Workflow_Activity_CleanTempStorage.pm index 6a6efa40c..f86bee04d 100644 --- a/lib/WebGUI/i18n/English/Workflow_Activity_CleanTempStorage.pm +++ b/lib/WebGUI/i18n/English/Workflow_Activity_CleanTempStorage.pm @@ -19,6 +19,11 @@ our $I18N = { lastUpdated => 0, }, + 'clean temp storage body' => { + message => q|This workflow activity goes through the temporary area of the uploads directory for this site and deletes any files that are older than the user configured timeout.
|, + lastUpdated => 0, + }, + }; 1; diff --git a/lib/WebGUI/i18n/English/Workflow_Activity_CommitVersionTag.pm b/lib/WebGUI/i18n/English/Workflow_Activity_CommitVersionTag.pm new file mode 100644 index 000000000..239049c19 --- /dev/null +++ b/lib/WebGUI/i18n/English/Workflow_Activity_CommitVersionTag.pm @@ -0,0 +1,18 @@ +package WebGUI::i18n::English::Workflow_Activity_CommitVersionTag; + +our $I18N = { + + 'topicName' => { + message => q|Commit Version Tag|, + context => q|The name of this workflow activity.|, + lastUpdated => 0, + }, + + 'commit version tag body' => { + message => q|This workflow activity commits a version tag. It should be used as the last step in any workflow dealing with committing version tags. For example, if you built a workflow that required someone else to authorize the committing of a version tag, this activity would be the last step in the workflow and its execution would depend on the authorization actually heppening and being positive.
|, + lastUpdated => 0, + }, + +}; + +1;