Help docs for CleanTempStorage, CommitVersionTag and CleanLoginHistory
This commit is contained in:
parent
9eacbed903
commit
5de311d6f3
6 changed files with 107 additions and 0 deletions
28
lib/WebGUI/Help/Workflow_Activity_CleanLoginHistory.pm
Normal file
28
lib/WebGUI/Help/Workflow_Activity_CleanLoginHistory.pm
Normal file
|
|
@ -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
|
||||
28
lib/WebGUI/Help/Workflow_Activity_CleanTempStorage.pm
Normal file
28
lib/WebGUI/Help/Workflow_Activity_CleanTempStorage.pm
Normal file
|
|
@ -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
|
||||
23
lib/WebGUI/Help/Workflow_Activity_CommitVersionTag.pm
Normal file
23
lib/WebGUI/Help/Workflow_Activity_CommitVersionTag.pm
Normal file
|
|
@ -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
|
||||
|
|
@ -19,6 +19,11 @@ our $I18N = {
|
|||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'clean login history body' => {
|
||||
message => q|<p>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.</p>|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
|
|||
|
|
@ -19,6 +19,11 @@ our $I18N = {
|
|||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'clean temp storage body' => {
|
||||
message => q|<p>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.</p>|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
|
|||
|
|
@ -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|<p>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.</p>|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
Loading…
Add table
Add a link
Reference in a new issue