documentation for the show running workflows screen
This commit is contained in:
parent
6721913320
commit
1d9151e68b
3 changed files with 29 additions and 3 deletions
|
|
@ -7,6 +7,23 @@ our $HELP = {
|
|||
fields => [
|
||||
],
|
||||
related => [
|
||||
{
|
||||
tag => 'show running workflows',
|
||||
namespace => 'Workflow'
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
'show running workflows' => {
|
||||
title => 'show running workflows',
|
||||
body => 'show running workflows body',
|
||||
fields => [
|
||||
],
|
||||
related => [
|
||||
{
|
||||
tag => 'manage workflows',
|
||||
namespace => 'Workflow'
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -421,7 +421,8 @@ sub www_showRunningWorkflows {
|
|||
my $ac = WebGUI::AdminConsole->new($session,"workflow");
|
||||
$ac->addSubmenuItem($session->url->page("op=addWorkflow"), $i18n->get("add a new workflow"));
|
||||
$ac->addSubmenuItem($session->url->page("op=manageWorkflows"), $i18n->get("manage workflows"));
|
||||
return $ac->render($output);
|
||||
$ac->setHelp('show running workflows', 'Workflow');
|
||||
return $ac->render($output, 'show running workflows');
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -130,9 +130,17 @@ our $I18N = {
|
|||
'manage workflow help body' => {
|
||||
message => q|
|
||||
<p>This is the master screen for managing workflows. All configured workflows are shown in a table by the title of the workflow, along with icons to edit or delete the workflow and the workflow's status, enabled or disabled. Links are provided to add new workflows and to show which, if any, workflows are presently running.</p>
|
||||
<p>The manage workflow screen is accessed from the Admin Console.</p>
|
||||
<p>The Manage Workflow screen is accessed from the Admin Console.</p>
|
||||
|,
|
||||
lastUpdated => 0,
|
||||
lastUpdated => 1151719637,
|
||||
},
|
||||
|
||||
'show running workflows body' => {
|
||||
message => q|
|
||||
<p>This screen can help you debug problems with workflows by showing which workflows are currently running. The workflows are shown in a table with the name of the workflow, the date it started running. If the workflow has a defined status, then that status will also be shown, along with the date the workflow's status was last updated.</p>
|
||||
<p>The screen will not automatically update. To update the list of running workflows, reload the page.</p>
|
||||
|,
|
||||
lastUpdated => 1151719633,
|
||||
},
|
||||
|
||||
'topicName' => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue