migrated a few of the run hourly scripts

fixed a cron bug
This commit is contained in:
JT Smith 2006-02-18 14:38:09 +00:00
parent a50a190642
commit e04a1b6fca
25 changed files with 766 additions and 256 deletions

View file

@ -0,0 +1,30 @@
package WebGUI::i18n::English::Workflow_Activity_CleanTempStorage;
our $I18N = {
'size limit help' => {
message => q|How big should WebGUI allow the file cache to get before pruning down old cache entries?|,
context => q|the hover help for the file cache field|,
lastUpdated => 0,
},
'size limit' => {
message => q|Size Limit|,
context => q|a label indicating how big we're willing to allow the file cache to get on this site|,
lastUpdated => 0,
},
'bytes' => {
message => q|Bytes|,
context => q|The unit of measurement for the size limit field.|,
lastUpdated => 0,
},
'topicName' => {
message => q|Clean File Cache|,
context => q|The name of this workflow activity.|,
lastUpdated => 0,
},
};
1;

View file

@ -0,0 +1,24 @@
package WebGUI::i18n::English::Workflow_Activity_CleanLoginHistory;
our $I18N = {
'age to delete help' => {
message => q|After what period of time is it ok to start deleteing entries from the user login history?|,
context => q|the hover help for the age to delete field|,
lastUpdated => 0,
},
'age to delete' => {
message => q|Age To Delete|,
context => q|a label how old we should allow the login history to get|,
lastUpdated => 0,
},
'topicName' => {
message => q|Clean Login History|,
context => q|The name of this workflow activity.|,
lastUpdated => 0,
},
};
1;

View file

@ -0,0 +1,36 @@
package WebGUI::i18n::English::Workflow_Activity_DecayKarma;
our $I18N = {
'decay factor help' => {
message => q|How many points of karma should be removed from a user's account when Decay Karma runs?|,
context => q|the hover help for the decay factor field|,
lastUpdated => 0,
},
'decay factor' => {
message => q|Decay Factor|,
context => q|a label indicating how much karma should be deleted from a user's account per run|,
lastUpdated => 0,
},
'minimum karma help' => {
message => q|What's the minimum amount that a user's karma can decay to?|,
context => q|the hover help for the minimum karma field|,
lastUpdated => 0,
},
'minimum karma' => {
message => q|Minimum Karma|,
context => q|a label indicating the lowest point karma can decay to|,
lastUpdated => 0,
},
'topicName' => {
message => q|Decay Karma|,
context => q|The name of this workflow activity.|,
lastUpdated => 0,
},
};
1;

View file

@ -0,0 +1,13 @@
package WebGUI::i18n::English::Workflow_Activity_RollbackVersionTag;
our $I18N = {
'topicName' => {
message => q|Rollback Version Tag|,
context => q|The name of this workflow activity.|,
lastUpdated => 0,
},
};
1;

View file

@ -0,0 +1,24 @@
package WebGUI::i18n::English::Workflow_Activity_TrashClipboard;
our $I18N = {
'trash after help' => {
message => q|How long should WebGUI let content sit in the clipboard before moving it to the trash?|,
context => q|the hover help for the trash after field|,
lastUpdated => 0,
},
'trash after' => {
message => q|Trash After|,
context => q|a label indicating how long content should sit in the clipboard|,
lastUpdated => 0,
},
'topicName' => {
message => q|Empty Clipboard to Trash|,
context => q|The name of this workflow activity.|,
lastUpdated => 0,
},
};
1;