diff --git a/workflow/engine/controllers/adminProxy.php b/workflow/engine/controllers/adminProxy.php
index df6a83f65..eec58ac5d 100644
--- a/workflow/engine/controllers/adminProxy.php
+++ b/workflow/engine/controllers/adminProxy.php
@@ -1267,21 +1267,18 @@ class adminProxy extends HttpProxyController
public function getMaintenanceInfo()
{
$data = array('info' => array());
- //$oauthClients = new OauthClients();
- //$oauthClients->
$pmRestClient = OauthClientsPeer::retrieveByPK('x-pm-local-client');
-
- $statuses['pm_rest_client'] = (!empty($pmRestClient));
-
- //$data = $pmRestClient->toArray(BasePeer::TYPE_COLNAME);
+ $status = ! empty($pmRestClient);
+ $row = $pmRestClient->toArray(BasePeer::TYPE_FIELDNAME);
$data['info'] = array(
array(
+ 'client_id' => $row["CLIENT_ID"],
'name' => 'PM Web Designer (REST Client)',
- 'value' => ($statuses['pm_rest_client']? 'Registered' : 'Not Registered'),
- 'value_ok' => $statuses['pm_rest_client'],
+ 'value' => ($status? 'Registered' : 'Not Registered'),
+ 'value_ok' => $status,
'option' => array(
- 'label' => ($statuses['pm_rest_client']? 'Restore' : 'Register'),
+ 'label' => ($status? 'Restore' : 'Register'),
'action' => 'doRegisterPMDesignerClient'
)
)
diff --git a/workflow/engine/methods/oauth2/authorize.php b/workflow/engine/methods/oauth2/authorize.php
index 4e0d37570..42ef379cb 100644
--- a/workflow/engine/methods/oauth2/authorize.php
+++ b/workflow/engine/methods/oauth2/authorize.php
@@ -9,15 +9,15 @@ switch ($_SERVER['REQUEST_METHOD']) {
break;
case 'POST':
- require_once PATH_CORE . 'src/Services/Api/OAuth2/Server.php';
+ require_once PATH_CORE . 'src/ProcessMaker/Services/OAuth2/Server.php';
list($host, $port) = strpos(DB_HOST, ':') !== false ? explode(':', DB_HOST) : array(DB_HOST, '');
$port = empty($port) ? '' : ";port=$port";
- \Services\Api\OAuth2\Server::setDatabaseSource(DB_USER, DB_PASS, DB_ADAPTER.":host=$host;dbname=".DB_NAME.$port);
- \Services\Api\OAuth2\Server::setPmClientId('x-pm-local-client');
+ \ProcessMaker\Services\OAuth2\Server::setDatabaseSource(DB_USER, DB_PASS, DB_ADAPTER.":host=$host;dbname=".DB_NAME.$port);
+ \ProcessMaker\Services\OAuth2\Server::setPmClientId('x-pm-local-client');
- $oauthServer = new \Services\Api\OAuth2\Server();
+ $oauthServer = new \ProcessMaker\Services\OAuth2\Server();
$userid = $_SESSION['USER_LOGGED'];
$authorize = isset($_POST['authorize']) ? (bool) $_POST['authorize'] : false;
diff --git a/workflow/engine/templates/admin/maintenance.html b/workflow/engine/templates/admin/maintenance.html
index 19fa3df9b..c726d2a83 100644
--- a/workflow/engine/templates/admin/maintenance.html
+++ b/workflow/engine/templates/admin/maintenance.html
@@ -15,6 +15,7 @@ function main()
reader : new Ext.data.JsonReader( {
root : 'info',
fields : [
+ {name : 'client_id'},
{name : 'name'},
{name : 'value'},
{name : 'value_ok'},
@@ -27,7 +28,7 @@ function main()
title : 'Maintenance',
stripeRows : true,
autoHeight : true,
- width : 550,
+ width : 600,
enableColumnHide: false,
enableColumnResize: false,
enableHdMenu: false,
@@ -38,13 +39,18 @@ function main()
store : store,
columns : [
{
+ id : 'client_id',
+ header : 'Client ID',
+ width : 160,
+ sortable : false,
+ dataIndex : 'client_id'
+ }, {
id : 'name',
header : 'Application',
- width : 350,
+ width : 250,
sortable : false,
dataIndex : 'name'
- },
- {
+ }, {
header : 'Status',
width : 100,
sortable : false,
@@ -56,8 +62,7 @@ function main()
return ''+val+'';
}
}
- },
- {
+ }, {
header : '',
width : 100,
sortable : false,
diff --git a/workflow/engine/templates/oauth2/authorize.php b/workflow/engine/templates/oauth2/authorize.php
index 821ee9c61..1ef64b46e 100644
--- a/workflow/engine/templates/oauth2/authorize.php
+++ b/workflow/engine/templates/oauth2/authorize.php
@@ -1,5 +1,5 @@
scope = array(
);
// $dsn is the Data Source Name for your database, for exmaple "mysql:dbname=my_oauth2_db;host=localhost"
-$storage = new Services\Api\OAuth2\PmPdo(array('dsn' => $dsn, 'username' => $username, 'password' => $password));
+$storage = new ProcessMaker\Services\OAuth2\PmPdo(array('dsn' => $dsn, 'username' => $username, 'password' => $password));
diff --git a/workflow/engine/xmlform/additionalTables/additionalTablesData.xml b/workflow/engine/xmlform/additionalTables/additionalTablesData.xml
index 1abc35a13..7a7a69c1d 100755
--- a/workflow/engine/xmlform/additionalTables/additionalTablesData.xml
+++ b/workflow/engine/xmlform/additionalTables/additionalTablesData.xml
@@ -1,20 +1,17 @@
-
-
-
-
- Name
-
-
-
- Description
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/additionalTables/additionalTablesDataImportForm.xml b/workflow/engine/xmlform/additionalTables/additionalTablesDataImportForm.xml
index e4d4c4627..33cae3ff7 100755
--- a/workflow/engine/xmlform/additionalTables/additionalTablesDataImportForm.xml
+++ b/workflow/engine/xmlform/additionalTables/additionalTablesDataImportForm.xml
@@ -1,31 +1,25 @@
-
-
-
-
- Import Data from CSV file
-
-
-
-
-
- CSV File
-
-
-
- Delimited by
-
-
-
- Save
-
-
- Cancel
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/additionalTables/additionalTablesEdit.xml b/workflow/engine/xmlform/additionalTables/additionalTablesEdit.xml
index 718c62846..ea45a21bc 100755
--- a/workflow/engine/xmlform/additionalTables/additionalTablesEdit.xml
+++ b/workflow/engine/xmlform/additionalTables/additionalTablesEdit.xml
@@ -1,351 +1,331 @@
-
-
-
-
- Table Information
-
-
-
-
-
- Table Name
-
-
-
- PHP Class Name
-
-
-
- Description
-
-
-
- Log Configuration
-
-
-
- Save log for insert actions
-
-
-
- Save log for update actions
-
-
-
- Save log for delete actions
-
-
-
-
-
- Delete related log when table is deleted
-
-
-
-
-
- Fields
-
-
-
-
-
- Save
-
-
-
- Cancel
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+ PHP Class Name
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/additionalTables/additionalTablesExportList.xml b/workflow/engine/xmlform/additionalTables/additionalTablesExportList.xml
index 1b22e5da4..8cee3b208 100755
--- a/workflow/engine/xmlform/additionalTables/additionalTablesExportList.xml
+++ b/workflow/engine/xmlform/additionalTables/additionalTablesExportList.xml
@@ -1,32 +1,24 @@
-
-
-
-
-
-
- Name
-
-
-
- Description
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/additionalTables/additionalTablesFields.xml b/workflow/engine/xmlform/additionalTables/additionalTablesFields.xml
index fc282a35d..aacc558eb 100755
--- a/workflow/engine/xmlform/additionalTables/additionalTablesFields.xml
+++ b/workflow/engine/xmlform/additionalTables/additionalTablesFields.xml
@@ -1,35 +1,26 @@
-
-
-
-
- Field Name
-
-
-
- Field Label
-
-
-
- Type
-
-
-
- Size
-
-
-
- Null
-
-
-
- Primary Key
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/additionalTables/additionalTablesFields2.xml b/workflow/engine/xmlform/additionalTables/additionalTablesFields2.xml
index 1a9d892c2..59665d4fe 100755
--- a/workflow/engine/xmlform/additionalTables/additionalTablesFields2.xml
+++ b/workflow/engine/xmlform/additionalTables/additionalTablesFields2.xml
@@ -1,39 +1,28 @@
-
-
-
-
- Field Name
-
-
-
- Field Label
-
-
-
- Type
-
-
-
- Size
-
-
-
- Null
-
-
-
- Primary Key
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
\ No newline at end of file
+
+
+
diff --git a/workflow/engine/xmlform/additionalTables/additionalTablesList.xml b/workflow/engine/xmlform/additionalTables/additionalTablesList.xml
index aea67eaa6..7a7a69c1d 100755
--- a/workflow/engine/xmlform/additionalTables/additionalTablesList.xml
+++ b/workflow/engine/xmlform/additionalTables/additionalTablesList.xml
@@ -1,20 +1,17 @@
-
-
-
-
- Name
-
-
-
- Description
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/additionalTables/additionalTablesNew.xml b/workflow/engine/xmlform/additionalTables/additionalTablesNew.xml
index 1c1ba3c7e..ee8eeab5c 100755
--- a/workflow/engine/xmlform/additionalTables/additionalTablesNew.xml
+++ b/workflow/engine/xmlform/additionalTables/additionalTablesNew.xml
@@ -1,404 +1,383 @@
-
-
-
-
- Table Information
-
-
-
-
-
- Table Name
-
-
-
-
-
- PHP Class Name
-
-
-
-
-
- Description
-
-
-
- Log configuration
-
-
-
- Save log for insert actions
-
-
-
- Save log for update actions
-
-
-
- Save log for delete actions
-
-
-
-
-
- Delete related log when table is deleted
-
-
-
-
-
- Fields
-
-
-
-
-
- Save
-
-
-
- Cancel
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+ PHP Class Name
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/additionalTables/additionalTablesOptions.xml b/workflow/engine/xmlform/additionalTables/additionalTablesOptions.xml
index b1cf8d69c..67a119112 100755
--- a/workflow/engine/xmlform/additionalTables/additionalTablesOptions.xml
+++ b/workflow/engine/xmlform/additionalTables/additionalTablesOptions.xml
@@ -1,13 +1,13 @@
- New
+
- Import
+
- Export
+
-
-
-
-@#ADD_TAB_NAME
-
-
\ No newline at end of file
+
+
+
+
+
diff --git a/workflow/engine/xmlform/additionalTables/additionalTablesToImport.xml b/workflow/engine/xmlform/additionalTables/additionalTablesToImport.xml
index 7f4394e62..b5ff56454 100755
--- a/workflow/engine/xmlform/additionalTables/additionalTablesToImport.xml
+++ b/workflow/engine/xmlform/additionalTables/additionalTablesToImport.xml
@@ -1,44 +1,37 @@
-
-
-
-
- Import PMTables
-
-
-
- Max upload file size in bytes
-
-
-
- File
-
-
-
- Overwrite if exist
-
-
-
- Import
-
-
-
- Cancel
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/additionalTables/doExport.xml b/workflow/engine/xmlform/additionalTables/doExport.xml
index f5c333433..239b26971 100755
--- a/workflow/engine/xmlform/additionalTables/doExport.xml
+++ b/workflow/engine/xmlform/additionalTables/doExport.xml
@@ -1,14 +1,14 @@
-
-
-
- File
-
-
- File size
-
-
- Summary
-
-
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/appFolder/appFolder.xml b/workflow/engine/xmlform/appFolder/appFolder.xml
index 0809c4214..0ee06fba3 100755
--- a/workflow/engine/xmlform/appFolder/appFolder.xml
+++ b/workflow/engine/xmlform/appFolder/appFolder.xml
@@ -1,32 +1,24 @@
-
-
- AppFolder form
-
-
-
- Folder Uid
-
-
-
- Folder Parent Uid
-
-
-
- Folder Name
-
-
-
- Folder Create Date
-
-
-
- Folder Update Date
-
-
-
- save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/appFolder/appFolderDelete.xml b/workflow/engine/xmlform/appFolder/appFolderDelete.xml
index 373385e31..c3943aa61 100755
--- a/workflow/engine/xmlform/appFolder/appFolderDelete.xml
+++ b/workflow/engine/xmlform/appFolder/appFolderDelete.xml
@@ -1,21 +1,14 @@
-
-
- Delete AppFolder
-
-
-
-
- Er Uid
-
-
-
+
+
+
+
+
+
+
-
-
-
- delete
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/appFolder/appFolderDocsListOptions.xml b/workflow/engine/xmlform/appFolder/appFolderDocsListOptions.xml
index d0fa390a2..a7b5d7cc3 100755
--- a/workflow/engine/xmlform/appFolder/appFolderDocsListOptions.xml
+++ b/workflow/engine/xmlform/appFolder/appFolderDocsListOptions.xml
@@ -1,27 +1,20 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-@#labelFolderAddFolder
-
-
-@#labelFolderAddFile
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/appFolder/appFolderDocumentInfo.xml b/workflow/engine/xmlform/appFolder/appFolderDocumentInfo.xml
index fe2360295..2ecf740f7 100755
--- a/workflow/engine/xmlform/appFolder/appFolderDocumentInfo.xml
+++ b/workflow/engine/xmlform/appFolder/appFolderDocumentInfo.xml
@@ -1,27 +1,24 @@
-
-
- Process
-
-
- Case Title
-
-
- File Name
-
-
- Version
-
-
- Type
-
-
-
- Creator
-
-
- Created
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/appFolder/appFolderDocumentList.xml b/workflow/engine/xmlform/appFolder/appFolderDocumentList.xml
index 2270948e7..31afd8b6f 100755
--- a/workflow/engine/xmlform/appFolder/appFolderDocumentList.xml
+++ b/workflow/engine/xmlform/appFolder/appFolderDocumentList.xml
@@ -1,61 +1,46 @@
-
-
- Process
-
-
- Case Title
-
-
- File Name
-
-
- Version
-
-
- Type
-
-
-
- Creator
-
-
- Created
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ Process
+
+
+ Case Title
+
+
+
+
+
+
+
+
+ Type
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/appFolder/appFolderDocumentListHeader.xml b/workflow/engine/xmlform/appFolder/appFolderDocumentListHeader.xml
index cc9e00ea6..605f292c7 100755
--- a/workflow/engine/xmlform/appFolder/appFolderDocumentListHeader.xml
+++ b/workflow/engine/xmlform/appFolder/appFolderDocumentListHeader.xml
@@ -1,18 +1,13 @@
-
-
-
+
SELECT FOLDER_UID, FOLDER_NAME FROM APP_FOLDER
- Move selected to:
+
-
-
-
-
-
-
- Move
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/appFolder/appFolderDocumentListHistory.xml b/workflow/engine/xmlform/appFolder/appFolderDocumentListHistory.xml
index 675fed50b..8f0ae4e5e 100755
--- a/workflow/engine/xmlform/appFolder/appFolderDocumentListHistory.xml
+++ b/workflow/engine/xmlform/appFolder/appFolderDocumentListHistory.xml
@@ -1,43 +1,36 @@
-
-
- Process
-
-
- Case Title
-
-
- File Name
-
-
- Version
-
-
- Type
-
-
-
- Creator
-
-
- Created
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ Process
+
+
+ Case Title
+
+
+
+
+
+
+
+
+ Type
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/appFolder/appFolderDocumentListSearch.xml b/workflow/engine/xmlform/appFolder/appFolderDocumentListSearch.xml
index 87c916598..7ddd8f298 100755
--- a/workflow/engine/xmlform/appFolder/appFolderDocumentListSearch.xml
+++ b/workflow/engine/xmlform/appFolder/appFolderDocumentListSearch.xml
@@ -1,54 +1,45 @@
-
-
- Process
-
-
- Case Title
-
-
- File Name
-
-
- Version
-
-
- Type
-
-
-
- Creator
-
-
- Created
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ Process
+
+
+ Case Title
+
+
+
+
+
+
+
+
+ Type
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/appFolder/appFolderEdit.xml b/workflow/engine/xmlform/appFolder/appFolderEdit.xml
index 3213fe049..f5091bbb0 100755
--- a/workflow/engine/xmlform/appFolder/appFolderEdit.xml
+++ b/workflow/engine/xmlform/appFolder/appFolderEdit.xml
@@ -1,43 +1,33 @@
-
-
-
- New Folder
-
-
-
-
- Path
-
-
-
- folder Uid
+
+
+
+
+
+
+
+
+ folder Uid
-
-
-
- Parent Parent Uid
+
+
+ Parent Parent Uid
-
-
-
- Folder Name
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/appFolder/appFolderList.xml b/workflow/engine/xmlform/appFolder/appFolderList.xml
index 92848802f..e2cb562d1 100755
--- a/workflow/engine/xmlform/appFolder/appFolderList.xml
+++ b/workflow/engine/xmlform/appFolder/appFolderList.xml
@@ -1,25 +1,18 @@
-
-
- Er Parent Uid
-
-
-
- Er Create Date
-
-
-
- Er Update Date
-
-
-
-
- Edit
-
-
-
- Delete
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/appFolder/appFolderOptions.xml b/workflow/engine/xmlform/appFolder/appFolderOptions.xml
index baeb572dd..5ebace761 100755
--- a/workflow/engine/xmlform/appFolder/appFolderOptions.xml
+++ b/workflow/engine/xmlform/appFolder/appFolderOptions.xml
@@ -1,8 +1,7 @@
-
-
- New
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/authSources/authSources_List.xml b/workflow/engine/xmlform/authSources/authSources_List.xml
index 2849c19db..37c3149cb 100755
--- a/workflow/engine/xmlform/authSources/authSources_List.xml
+++ b/workflow/engine/xmlform/authSources/authSources_List.xml
@@ -1,28 +1,23 @@
-
-
-
-
- Name
-
-
-
- Provider
-
-
-
- Server Name
-
-
-
- Port
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/authSources/authSources_Options.xml b/workflow/engine/xmlform/authSources/authSources_Options.xml
index a50fe9c29..461213386 100755
--- a/workflow/engine/xmlform/authSources/authSources_Options.xml
+++ b/workflow/engine/xmlform/authSources/authSources_Options.xml
@@ -1,13 +1,10 @@
-
-
- New
-
-
-
-
-
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/authSources/authSources_SearchUsers.xml b/workflow/engine/xmlform/authSources/authSources_SearchUsers.xml
index dfa2b2c80..71ea1b73c 100755
--- a/workflow/engine/xmlform/authSources/authSources_SearchUsers.xml
+++ b/workflow/engine/xmlform/authSources/authSources_SearchUsers.xml
@@ -1,29 +1,22 @@
-
-
- Search for user
-
-
-
-
-
- Keyword
-
-
-
- Search
-
-
-
- Import
-
-
-
- Cancel
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/authSources/authSources_SearchUsersMenu.xml b/workflow/engine/xmlform/authSources/authSources_SearchUsersMenu.xml
index 8171f0f17..593dadd2a 100644
--- a/workflow/engine/xmlform/authSources/authSources_SearchUsersMenu.xml
+++ b/workflow/engine/xmlform/authSources/authSources_SearchUsersMenu.xml
@@ -1,37 +1,35 @@
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/authSources/authSources_SelectType.xml b/workflow/engine/xmlform/authSources/authSources_SelectType.xml
index bbe8f96f5..dd8717449 100755
--- a/workflow/engine/xmlform/authSources/authSources_SelectType.xml
+++ b/workflow/engine/xmlform/authSources/authSources_SelectType.xml
@@ -1,24 +1,19 @@
-
-
- Available Authentication Source Types
-
-
-
+
+
+
+
SELECT sType, sLabel FROM authSourceTypes
- Provider
+
-
-
- Continue
-
-
-
- Cancel
-
-
-
+
+
+
+
+
+
-
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/authSources/ldapEdit.xml b/workflow/engine/xmlform/authSources/ldapEdit.xml
index 24b5927e3..42a35abec 100755
--- a/workflow/engine/xmlform/authSources/ldapEdit.xml
+++ b/workflow/engine/xmlform/authSources/ldapEdit.xml
@@ -1,79 +1,59 @@
-
-
- Authentication Source Information
-
-
-
-
-
- Name
-
-
-
-
-
- Type
-
-
-
- Server Name
-
-
-
- Port
-
-
-
- Enabled TLS
-
-
-
- Version
-
-
-
- Base DN
-
-
-
- Anonymous
-
-
-
- Search User
-
-
-
- Password
-
-
-
- Identifier for an imported user
-
-
-
- Object Classes
-
-
-
- Additional Filter
-
-
-
- Attributes
-
-
-
- Save
-
-
-
- Cancel
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/authSources/ldapSearchResults.xml b/workflow/engine/xmlform/authSources/ldapSearchResults.xml
index 9ed6d1218..6fc6d8209 100755
--- a/workflow/engine/xmlform/authSources/ldapSearchResults.xml
+++ b/workflow/engine/xmlform/authSources/ldapSearchResults.xml
@@ -1,20 +1,15 @@
-
-
- ]]>
-
-
-
- Name
-
-
-
- E-Mail]]>
-
-
-
- Distinguished Name
-
-
-
\ No newline at end of file
+
+ ]]>
+
+
+
+
+
+ E-Mail]]>
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/casesDemo.xml b/workflow/engine/xmlform/cases/casesDemo.xml
index 544c6f443..586a76b8c 100755
--- a/workflow/engine/xmlform/cases/casesDemo.xml
+++ b/workflow/engine/xmlform/cases/casesDemo.xml
@@ -1,19 +1,15 @@
-
- #
-
-
-
- name
-
-
-
- Task
-
-
-
- balance
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_AllDynaformsList.xml b/workflow/engine/xmlform/cases/cases_AllDynaformsList.xml
index 540d2f258..f01930937 100755
--- a/workflow/engine/xmlform/cases/cases_AllDynaformsList.xml
+++ b/workflow/engine/xmlform/cases/cases_AllDynaformsList.xml
@@ -1,13 +1,9 @@
-
-
-
-
- Title
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_AllInputdocsList.xml b/workflow/engine/xmlform/cases/cases_AllInputdocsList.xml
index ab00b7e36..f79bcd17a 100755
--- a/workflow/engine/xmlform/cases/cases_AllInputdocsList.xml
+++ b/workflow/engine/xmlform/cases/cases_AllInputdocsList.xml
@@ -1,47 +1,33 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Filename
-
-
-
- Comments
-
-
-
- Type
-
-
-
- Version
-
-
-
- Origin Task
-
-
-
- Created By
-
-
-
- Create Date
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_AllInputdocsList_Summary.xml b/workflow/engine/xmlform/cases/cases_AllInputdocsList_Summary.xml
index edd794c1b..8f6019aa7 100644
--- a/workflow/engine/xmlform/cases/cases_AllInputdocsList_Summary.xml
+++ b/workflow/engine/xmlform/cases/cases_AllInputdocsList_Summary.xml
@@ -1,35 +1,24 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Filename
-
-
-
- Comments
-
-
-
- Created By
-
-
-
- Create Date
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_AllOutputdocsList.xml b/workflow/engine/xmlform/cases/cases_AllOutputdocsList.xml
index f024dbf5c..594cc9c48 100755
--- a/workflow/engine/xmlform/cases/cases_AllOutputdocsList.xml
+++ b/workflow/engine/xmlform/cases/cases_AllOutputdocsList.xml
@@ -1,38 +1,35 @@
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
- Output Document
-Documento GeneradoDocumento Generado
-
-
- Origin Task
-Tarefa Origem
-
-
- Created By
-Creado por
-
-
- Create Date
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+ Documento Generado
+ Documento Generado
+
+
+
+
+ Tarefa Origem
+
+
+
+ Creado por
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_AllOutputdocsList_Summary.xml b/workflow/engine/xmlform/cases/cases_AllOutputdocsList_Summary.xml
index b3e6d0635..af853464a 100644
--- a/workflow/engine/xmlform/cases/cases_AllOutputdocsList_Summary.xml
+++ b/workflow/engine/xmlform/cases/cases_AllOutputdocsList_Summary.xml
@@ -1,31 +1,26 @@
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
- Output Document
-Documento GeneradoDocumento Generado
-
-
-
- Create Date
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+ Documento Generado
+ Documento Generado
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_AttachInputDocument1.xml b/workflow/engine/xmlform/cases/cases_AttachInputDocument1.xml
index 8cf4fd2de..b286938c5 100755
--- a/workflow/engine/xmlform/cases/cases_AttachInputDocument1.xml
+++ b/workflow/engine/xmlform/cases/cases_AttachInputDocument1.xml
@@ -1,56 +1,40 @@
-
-<__DYNAFORM_OPTIONS type="xmlmenu" xmlfile="gulliver/dynaforms_Options" colWidth="200px">
-
-
-
-
-
-
- Attach Input document
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
-
-
-
- File
-
-
-
- Comments
-
-
-
- Upload Multiple Input Documents
-
-
-
- Save
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_AttachInputDocument2.xml b/workflow/engine/xmlform/cases/cases_AttachInputDocument2.xml
index 924bd9f7d..717badab0 100755
--- a/workflow/engine/xmlform/cases/cases_AttachInputDocument2.xml
+++ b/workflow/engine/xmlform/cases/cases_AttachInputDocument2.xml
@@ -1,52 +1,37 @@
-
-<__DYNAFORM_OPTIONS type="xmlmenu" xmlfile="gulliver/dynaforms_Options">
-
-
-
-
-
-
- New Input document
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
-
-
-
- Comments
-
-
-
- Upload Multiple Input Documents
-
-
-
- Save
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_AttachInputDocument3.xml b/workflow/engine/xmlform/cases/cases_AttachInputDocument3.xml
index 08ef34c93..6309d6f57 100755
--- a/workflow/engine/xmlform/cases/cases_AttachInputDocument3.xml
+++ b/workflow/engine/xmlform/cases/cases_AttachInputDocument3.xml
@@ -1,56 +1,40 @@
-
-<__DYNAFORM_OPTIONS type="xmlmenu" xmlfile="gulliver/dynaforms_Options">
-
-
-
-
-
-
- Attach Input document
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
-
-
-
- File
-
-
-
- Comments
-
-
-
- Upload Multiple Input Documents
-
-
-
- Save
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_AttachInputDocumentGeneral.xml b/workflow/engine/xmlform/cases/cases_AttachInputDocumentGeneral.xml
index c41cde3a8..afea71511 100755
--- a/workflow/engine/xmlform/cases/cases_AttachInputDocumentGeneral.xml
+++ b/workflow/engine/xmlform/cases/cases_AttachInputDocumentGeneral.xml
@@ -1,65 +1,52 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- File
-
-
-
- Comments
-
-
-
- Upload Multiple Input Documents
-
-
-
- Cancel
-
-
-
- Save
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Upload Multiple Input Documents
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_CannotInitiateCase.xml b/workflow/engine/xmlform/cases/cases_CannotInitiateCase.xml
index df56a3b1d..162b6b53f 100755
--- a/workflow/engine/xmlform/cases/cases_CannotInitiateCase.xml
+++ b/workflow/engine/xmlform/cases/cases_CannotInitiateCase.xml
@@ -1,12 +1,9 @@
-
-
- Start a new case
-
-
-
- You cannot initiate a new case.
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_CatchSelfService.xml b/workflow/engine/xmlform/cases/cases_CatchSelfService.xml
index 6803e2b20..29a4c56b1 100755
--- a/workflow/engine/xmlform/cases/cases_CatchSelfService.xml
+++ b/workflow/engine/xmlform/cases/cases_CatchSelfService.xml
@@ -1,63 +1,42 @@
-
-
-
-
- Claim Case
-
-
-
- Process
-
-
-
- Case Status
-
-
-
- Case Title
-
-
-
- Case Number
-
-
-
- Case Uid
-
-
-
- Task
-
-
-
- Task Delegate Date
-
-
-
- Task Due Date
-
-
-
-
- Previous Task
-
-
-
- Previous User
-
-
-
- Claim this case
-
-
-
- Cancel
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_DynaformHistory.xml b/workflow/engine/xmlform/cases/cases_DynaformHistory.xml
index 587f5027e..5a8999db7 100755
--- a/workflow/engine/xmlform/cases/cases_DynaformHistory.xml
+++ b/workflow/engine/xmlform/cases/cases_DynaformHistory.xml
@@ -1,19 +1,18 @@
-
- Dynaform
-
-
- Dynaform
-
-
- Update Date
-
-
- User
-
-
- Fields
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_InputdocsList.xml b/workflow/engine/xmlform/cases/cases_InputdocsList.xml
index e2579567e..4ffd79808 100755
--- a/workflow/engine/xmlform/cases/cases_InputdocsList.xml
+++ b/workflow/engine/xmlform/cases/cases_InputdocsList.xml
@@ -1,51 +1,30 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
- Version
-
-
-
- Creator
-
-
-
- Comment
-
-
-
- Created Date
-
-
-
-
-
-
-
-
-
-
-
-
-Eliminar
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Eliminar
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_InputdocsListHistory.xml b/workflow/engine/xmlform/cases/cases_InputdocsListHistory.xml
index 91ef8095e..3d38eda5b 100755
--- a/workflow/engine/xmlform/cases/cases_InputdocsListHistory.xml
+++ b/workflow/engine/xmlform/cases/cases_InputdocsListHistory.xml
@@ -1,46 +1,21 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
- Version
-
-
-
- Creator
-
-
-
-
- Created Date
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_InputdocsListToRevise.xml b/workflow/engine/xmlform/cases/cases_InputdocsListToRevise.xml
index c3746e8b1..1b1dc2aca 100755
--- a/workflow/engine/xmlform/cases/cases_InputdocsListToRevise.xml
+++ b/workflow/engine/xmlform/cases/cases_InputdocsListToRevise.xml
@@ -1,25 +1,22 @@
-
-
-
-
-
-
-
-
-
-
- Type
-Tipo
-
-
- Type
-Tipo
-
-
- Create Date
-Crear Fecha
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+ Tipo
+
+
+
+ Tipo
+
+
+
+ Crear Fecha
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_List.xml b/workflow/engine/xmlform/cases/cases_List.xml
index bd5fe818f..09c7c042e 100755
--- a/workflow/engine/xmlform/cases/cases_List.xml
+++ b/workflow/engine/xmlform/cases/cases_List.xml
@@ -1,58 +1,71 @@
-
-
-
-
-
- #
-##
-
- Case
-CasoCaso
-
- Task
-TareaTarefa
-
- Process
-ProcesoProcesso
-
- Sent by
-Enviado porEnviado por
-
- Due Date
-Fecha de vencimientoData-limite
-
- Last Modify
-
-
-
- Finish Date
-Fecha finalData-limite
-
-
- Start Date
-Fechas inicial del casoData Inicial
-
-
-
-
-
-
-
-
-Eliminar
-
-
-
- Apply Filter
-Aplicar FiltroAplicar Filtro
-
-
-
-
+
+
+
+
+
+
+ #
+ #
+
+
+
+ Caso
+ Caso
+
+
+
+ Tarea
+ Tarefa
+
+
+
+ Proceso
+ Processo
+
+
+
+ Enviado por
+ Enviado por
+
+
+
+ Fecha de vencimiento
+ Data-limite
+
+
+
+
+
+
+
+
+ Fecha final
+ Data-limite
+
+
+
+ Fechas inicial del caso
+ Data Inicial
+
+
+
+
+
+
+ Eliminar
+
+
+
+
+ Aplicar Filtro
+ Aplicar Filtro
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ListAll.xml b/workflow/engine/xmlform/cases/cases_ListAll.xml
index bbee2f841..c0d5a297d 100755
--- a/workflow/engine/xmlform/cases/cases_ListAll.xml
+++ b/workflow/engine/xmlform/cases/cases_ListAll.xml
@@ -1,72 +1,77 @@
-
-
-
-
-
-
- #
-##
-
-
- Case
-CasoCaso
-
-
- Task
-TareaTarefa
-
-
- Process
-ProcesoProcesso
-
-
- Current User
-Usuario Actual
-
-
- Sent by
-Enviado porEnviado por
-
-
- Due Date
-Fecha de vencimientoData-limite
-
-
- Last Modify
-
-
-
- Start Date
-Fechas inicial del casoData Inicial
-
-
- Finish Date
-Fecha finalData Final
-
-
-
- Status
-EstadoEstado
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-Aplicar FiltroAplicar Filtro
-
-
-
-
+
+
+
+
+
+
+ #
+ #
+
+
+
+ Caso
+ Caso
+
+
+
+ Tarea
+ Tarefa
+
+
+
+ Proceso
+ Processo
+
+
+
+ Usuario Actual
+
+
+
+
+ Enviado por
+ Enviado por
+
+
+
+ Fecha de vencimiento
+ Data-limite
+
+
+
+
+
+
+
+
+ Fechas inicial del caso
+ Data Inicial
+
+
+
+ Fecha final
+ Data Final
+
+
+
+ Estado
+ Estado
+
+
+
+
+
+
+
+ Aplicar Filtro
+ Aplicar Filtro
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ListAllDelete.xml b/workflow/engine/xmlform/cases/cases_ListAllDelete.xml
index 5a470bcb5..ee0d46ea6 100755
--- a/workflow/engine/xmlform/cases/cases_ListAllDelete.xml
+++ b/workflow/engine/xmlform/cases/cases_ListAllDelete.xml
@@ -1,73 +1,81 @@
-
-
-
-
-
-
- #
-##
-
-
- Case
-CasoCaso
-
-
- Task
-TareaTarefa
-
-
- Process
-ProcesoProcesso
-
-
- Current User
-Usuario Actual
-
-
- Sent by
-Enviado porEnviado por
-
-
- Due Date
-Fecha de vencimientoData-limite
-
-
- Last Modify
-
-
-
- Start Date
-Fechas inicial del casoData Inicial
-
-
- Finish Date
-Fecha finalData Final
-
-
-
- Status
-EstadoEstado
-
-
-
-
-
-
-
-
-Eliminar
-
-
- Apply Filter
-Aplicar FiltroAplicar Filtro
-
-
-
-
+
+
+
+
+
+
+ #
+ #
+
+
+
+ Caso
+ Caso
+
+
+
+ Tarea
+ Tarefa
+
+
+
+ Proceso
+ Processo
+
+
+
+ Usuario Actual
+
+
+
+
+ Enviado por
+ Enviado por
+
+
+
+ Fecha de vencimiento
+ Data-limite
+
+
+
+
+
+
+
+
+ Fechas inicial del caso
+ Data Inicial
+
+
+
+ Fecha final
+ Data Final
+
+
+
+ Estado
+ Estado
+
+
+
+
+
+
+ Eliminar
+
+
+
+
+ Aplicar Filtro
+ Aplicar Filtro
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ListAll_Reassign.xml b/workflow/engine/xmlform/cases/cases_ListAll_Reassign.xml
index b336f81ad..b83e0b1e4 100755
--- a/workflow/engine/xmlform/cases/cases_ListAll_Reassign.xml
+++ b/workflow/engine/xmlform/cases/cases_ListAll_Reassign.xml
@@ -1,79 +1,69 @@
-
-
-
-
-
-
-
- #
-#
-
-
- Case
-Caso
-
-
- Task
-Tarea
-
-
- Process
-Proceso
-
-
- Current User
-Usuario actual
-
-
- Sent by
-Enviado por
-
-
- Due Date
-
-
-
- Last Modify
-
-
-
- Start Date
-Fecha inicial
-
-
- Finish Date
-Finalizar fecha
-
-
-
- Status
-Estado
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-Aplicar filtro
-
-
-
-
+
+
+
+
+
+
+
+ #
+
+
+
+ Caso
+
+
+
+ Tarea
+
+
+
+ Proceso
+
+
+
+ Usuario actual
+
+
+
+ Enviado por
+
+
+
+
+
+
+
+
+
+
+
+ Fecha inicial
+
+
+
+ Finalizar fecha
+
+
+
+ Estado
+
+
+
+
+
+
+
+
+
+
+ Aplicar filtro
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ListCancelled.xml b/workflow/engine/xmlform/cases/cases_ListCancelled.xml
index 4581bd3b3..ea084fbd1 100755
--- a/workflow/engine/xmlform/cases/cases_ListCancelled.xml
+++ b/workflow/engine/xmlform/cases/cases_ListCancelled.xml
@@ -1,65 +1,9 @@
-
-
-
-
-
-
-
- #
-##
-
-
- Case
-CasoCaso
-
-
- Task
-TareaTarefa
-
-
- Process
-ProcesoProcesso
-
-
- Sent by
-Enviado porEnviado por
-
-
- Due Date
-Fecha de vencimientoData-limite
-
-
- Last Modify
-
-
-
- Start Date
-Fechas inicial del casoData Inicial
-
-
- Finish Date
-Fecha finalData Final
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+##CasoCasoTareaTarefaProcesoProcessoEnviado porEnviado porFecha de vencimientoData-limiteFechas inicial del casoData InicialFecha finalData Final
reactivateCase
-
- Apply Filter
-Aplicar FiltroAplicar Filtro
+Aplicar FiltroAplicar Filtro
@@ -68,4 +12,4 @@ function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ListCompleted.xml b/workflow/engine/xmlform/cases/cases_ListCompleted.xml
index c040e79d9..22ff75492 100755
--- a/workflow/engine/xmlform/cases/cases_ListCompleted.xml
+++ b/workflow/engine/xmlform/cases/cases_ListCompleted.xml
@@ -1,87 +1,60 @@
-
-
-
-
-
-
-
-
- #
-
-
-
- Case
-
-
-
- Task
-
-
-
- Process
-
-
-
-
-
- Completed by user
-
-
-
- Due Date
-
-
-
- Last Modify
-
-
-
- Start Date
-
-
-
- Finish Date
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
-function pagedTableFilter( form ) {
- @#PAGED_TABLE_ID.doFilter( form );
-}
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+function pagedTableFilter( form ) {
+ @#PAGED_TABLE_ID.doFilter( form );
+}
+
+
diff --git a/workflow/engine/xmlform/cases/cases_ListDraft.xml b/workflow/engine/xmlform/cases/cases_ListDraft.xml
index 330ca6754..1bf5fadc0 100755
--- a/workflow/engine/xmlform/cases/cases_ListDraft.xml
+++ b/workflow/engine/xmlform/cases/cases_ListDraft.xml
@@ -1,61 +1,62 @@
-
-
-
-
-
-
- #
-##
-
-
- Case
-CasoCaso
-
-
- Task
-TareaTarefa
-
-
- Process
-ProcesoProcesso
-
-
- Due Date
-Fecha de vencimientoData-limite
-
-
- Last Modify
-
-
-
- Start Date
-Fechas inicial del casoData Inicial
-
-
-
-
-
-
-
-
-
-
-
-
-Eliminar
-
-
-
- Apply Filter
-Aplicar FiltroAplicar Filtro
-
-
-
-
+
+
+
+
+
+
+ #
+ #
+
+
+
+ Caso
+ Caso
+
+
+
+ Tarea
+ Tarefa
+
+
+
+ Proceso
+ Processo
+
+
+
+ Fecha de vencimiento
+ Data-limite
+
+
+
+
+
+
+
+
+ Fechas inicial del caso
+ Data Inicial
+
+
+
+
+
+
+
+ Eliminar
+
+
+
+
+ Aplicar Filtro
+ Aplicar Filtro
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ListOnHold.xml b/workflow/engine/xmlform/cases/cases_ListOnHold.xml
index 9e1df587b..46e7a0b73 100755
--- a/workflow/engine/xmlform/cases/cases_ListOnHold.xml
+++ b/workflow/engine/xmlform/cases/cases_ListOnHold.xml
@@ -1,68 +1,10 @@
-
-
-
-
-
-
-
- #
-##
-
-
- Case
-CasoCaso
-
-
- Task
-TareaTarefa
-
-
- Process
-ProcesoProcesso
-
-
- Sent by
-Enviado porEnviado por
-
-
- Last Modify
-Last Modification
-
-
-
- Due Date
-Fecha de vencimientoData-limite
-
-
-
-
-
- Start Date
-Fechas inicial del casoData Inicial
-
-
- Finish Date
-Fecha finalData Final
-
-
-
-
-
-
-
-
-
-
-
-
-
+##CasoCasoTareaTarefaProcesoProcessoEnviado porEnviado porLast ModificationFecha de vencimientoData-limite
+ Fechas inicial del casoData InicialFecha finalData Final
reactivateCase
-
- Apply Filter
-Aplicar FiltroAplicar Filtro
+Aplicar FiltroAplicar Filtro
@@ -71,4 +13,4 @@ function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ListSelfService.xml b/workflow/engine/xmlform/cases/cases_ListSelfService.xml
index 77f39fff4..22ff75492 100755
--- a/workflow/engine/xmlform/cases/cases_ListSelfService.xml
+++ b/workflow/engine/xmlform/cases/cases_ListSelfService.xml
@@ -1,87 +1,60 @@
-
-
-
-
-
-
-
-
- #
-
-
-
- Case
-
-
-
- Task
-
-
-
- Process
-
-
-
-
-
- Completed by user
-
-
-
- Due Date
-
-
-
- Last Modify
-
-
-
- Start Date
-
-
-
- Finish Date
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
-function pagedTableFilter( form ) {
- @#PAGED_TABLE_ID.doFilter( form );
-}
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+function pagedTableFilter( form ) {
+ @#PAGED_TABLE_ID.doFilter( form );
+}
+
+
diff --git a/workflow/engine/xmlform/cases/cases_ListSent.xml b/workflow/engine/xmlform/cases/cases_ListSent.xml
index 4146abea6..7d716bce0 100755
--- a/workflow/engine/xmlform/cases/cases_ListSent.xml
+++ b/workflow/engine/xmlform/cases/cases_ListSent.xml
@@ -1,73 +1,53 @@
-
-
-
-
-
-
-
- #
-
-
-
- Case
-
-
-
- Task
-
-
-
- Process
-
-
-
- Current User
-
-
-
- Sent by
-
-
-
- Due Date
-
-
-
- Last Modify
-
-
-
- Start Date
-
-
-
- Finish Date
-
-
-
-
- Status
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ListStarted.xml b/workflow/engine/xmlform/cases/cases_ListStarted.xml
index 7f72d53eb..77b959dcd 100755
--- a/workflow/engine/xmlform/cases/cases_ListStarted.xml
+++ b/workflow/engine/xmlform/cases/cases_ListStarted.xml
@@ -1,73 +1,53 @@
-
-
-
-
-
-
-
- #
-
-
-
- Case
-
-
-
- Task
-
-
-
- Process
-
-
-
- Current User
-
-
-
- Sent by
-
-
-
- Due Date
-
-
-
- Last Modify
-
-
-
- Start Date
-
-
-
- Finish Date
-
-
-
-
- Status
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ListToRevise.xml b/workflow/engine/xmlform/cases/cases_ListToRevise.xml
index 47ed7c93d..0f171ea2a 100755
--- a/workflow/engine/xmlform/cases/cases_ListToRevise.xml
+++ b/workflow/engine/xmlform/cases/cases_ListToRevise.xml
@@ -1,94 +1,58 @@
-
-
-
-
-
-
-
-
- #
-
-
-
- Case
-
-
-
- Task
-
-
-
- Process
-
-
-
- Current User
-
-
-
- Sent by
-
-
-
- Due Date
-
-
-
- Last Modify
-
-
-
- Priority
-
-
-
-
-
-
-
-
-
- Start Date
-
-
-
- Status
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
-function pagedTableFilter( form ) {
- @#PAGED_TABLE_ID.doFilter( form );
-}
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+function pagedTableFilter( form ) {
+ @#PAGED_TABLE_ID.doFilter( form );
+}
+
+
diff --git a/workflow/engine/xmlform/cases/cases_ListTodo.xml b/workflow/engine/xmlform/cases/cases_ListTodo.xml
index 3a6ac7280..6b07d5818 100755
--- a/workflow/engine/xmlform/cases/cases_ListTodo.xml
+++ b/workflow/engine/xmlform/cases/cases_ListTodo.xml
@@ -1,63 +1,48 @@
-
-
-
-
-
-
- #
-
-
-
- Case
-
-
-
- Task
-
-
-
- Process
-
-
-
- Sent by
-
-
-
- Due Date
-
-
-
- Last Modify
-
-
-
- Priority
-
-
-
- Start Date
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ListTodoNew.xml b/workflow/engine/xmlform/cases/cases_ListTodoNew.xml
index 88fc7fdb3..a20e4c2de 100755
--- a/workflow/engine/xmlform/cases/cases_ListTodoNew.xml
+++ b/workflow/engine/xmlform/cases/cases_ListTodoNew.xml
@@ -1,68 +1,68 @@
-
-
-
-
-
-
- #
-##
-
-
- Case
-CasoCaso
-
-
- Task
-TareaTarea
-
-
- Process
-ProcesoProcesso
-
-
- Sent by
-Enviado porEnviado por
-
-
- Due Date
-Fecha de vencimientoData-limite
-
-
- Last Modify
-
-
-
- Priority
-PrioridadPrioridade
-
-
- Start Date
-Fecha inicial del casoData Inicial
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-Aplicar FiltroAplicar Filtro
-
-
-
-
+
+
+
+
+
+
+ #
+ #
+
+
+
+ Caso
+ Caso
+
+
+
+ Tarea
+ Tarea
+
+
+
+ Proceso
+ Processo
+
+
+
+ Enviado por
+ Enviado por
+
+
+
+ Fecha de vencimiento
+ Data-limite
+
+
+
+
+
+
+
+
+ Prioridad
+ Prioridade
+
+
+
+ Fecha inicial del caso
+ Data Inicial
+
+
+
+
+
+
+
+
+ Aplicar Filtro
+ Aplicar Filtro
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_Messages.xml b/workflow/engine/xmlform/cases/cases_Messages.xml
index a6a623746..ea01c223c 100755
--- a/workflow/engine/xmlform/cases/cases_Messages.xml
+++ b/workflow/engine/xmlform/cases/cases_Messages.xml
@@ -1,34 +1,25 @@
-
-
-
-
-
- Type
-
-
-
- Date
-
-
-
- Subject
-
-
-
- From
-
-
-
- To
-
-
-
- Status
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_MessagesView.xml b/workflow/engine/xmlform/cases/cases_MessagesView.xml
index 8a73914e2..9f13cfc88 100755
--- a/workflow/engine/xmlform/cases/cases_MessagesView.xml
+++ b/workflow/engine/xmlform/cases/cases_MessagesView.xml
@@ -1,27 +1,21 @@
-
-
- MESSAGE
-
-
-
- SUBJECT
-
-
-
- FROM
-
-
-
- TO
-
-
-
- DATE
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_New.xml b/workflow/engine/xmlform/cases/cases_New.xml
index b133a5a2e..5c489fb36 100755
--- a/workflow/engine/xmlform/cases/cases_New.xml
+++ b/workflow/engine/xmlform/cases/cases_New.xml
@@ -1,22 +1,19 @@
-
-
-
-
- Start a new case
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT * FROM NewCase
- Process
+
-
-
- Start
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_NewRadioGroup.xml b/workflow/engine/xmlform/cases/cases_NewRadioGroup.xml
index e6e1d477c..98692cf19 100755
--- a/workflow/engine/xmlform/cases/cases_NewRadioGroup.xml
+++ b/workflow/engine/xmlform/cases/cases_NewRadioGroup.xml
@@ -1,27 +1,19 @@
-
-
-
-
-
-
-
-
- Start a new case
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT * FROM NewCase
-
+
-
-
- Start
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_Options.xml b/workflow/engine/xmlform/cases/cases_Options.xml
index 09d6fc228..c04de451f 100755
--- a/workflow/engine/xmlform/cases/cases_Options.xml
+++ b/workflow/engine/xmlform/cases/cases_Options.xml
@@ -1,134 +1,126 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- select PRO_UID, APP_PRO_TITLE from _PROCESSES
- Process
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+ select PRO_UID, APP_PRO_TITLE from _PROCESSES
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_OptionsSent.xml b/workflow/engine/xmlform/cases/cases_OptionsSent.xml
index e40eff908..f6f576470 100755
--- a/workflow/engine/xmlform/cases/cases_OptionsSent.xml
+++ b/workflow/engine/xmlform/cases/cases_OptionsSent.xml
@@ -1,210 +1,192 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- select PRO_UID, APP_PRO_TITLE from _PROCESSES
- Process
-
-
-
-
-
- Status
-
-
-
-
-
-
-
-
- Started by me
-
-
-
- Read
-
-
-
- Unread
-
-
-
- All
-
-
-
-
-
-
-
-
-
-
-
- -1 ){
- var strQueryString = strHref.substr(strHref.indexOf("&")).toLowerCase();
- var aQueryString = strQueryString.split("&");
- for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
- if (aQueryString[iParam].indexOf(strParamName + "=") > -1 ){
- var aParam = aQueryString[iParam].split("=");
- strReturn = aParam[1];
- break;
- }
- }
- }
- return strReturn;
-}
-
-function casesDelete(app) {
- ajax_function('cases_Delete','','APP_UID='+encodeURIComponent(app));
- @#PAGED_TABLE_ID.refresh();
-}
-
-var cancelCase = function(sUID, iIndex) {
- new leimnud.module.app.confirm().make({
- label : G_STRINGS.ID_CONFIRM_CANCEL_CASE,
- action: function() {
- var oRPC = new leimnud.module.rpc.xmlhttp({
- url: 'cases_Ajax',
- args: 'action=cancelCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
- });
- oRPC.callback = function(oRPC) {
- @#PAGED_TABLE_ID.refresh();
- }.extend(this);
- oRPC.make();
- }.extend(this)
- });
-};
-
-var pauseCase = function(sUID, iIndex)
-{
- new leimnud.module.app.confirm().make({
- label : G_STRINGS.ID_CONFIRM_PAUSE_CASE,
- action: function() {
- var oRPC = new leimnud.module.rpc.xmlhttp({
- url: 'cases_Ajax',
- args: 'action=pauseCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
- });
- oRPC.callback = function(oRPC) {
- @#PAGED_TABLE_ID.refresh();
- }.extend(this);
- oRPC.make();
- }.extend(this)
- });
-};
-
-var reactivateCase = function(sUID, iIndex) {
- new leimnud.module.app.confirm().make({
- label : G_STRINGS.ID_MSG_CONFIRM_REACTIVATE_CASES,
- action: function() {
- var oRPC = new leimnud.module.rpc.xmlhttp({
- url: 'cases_Ajax',
- args: 'action=reactivateCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
- });
- oRPC.callback = function(oRPC) {
- @#PAGED_TABLE_ID.refresh();
- }.extend(this);
- oRPC.make();
- }.extend(this)
- });
-};
-
-var unpauseCase = function(sUID, iIndex)
-{
- new leimnud.module.app.confirm().make({
- label : G_STRINGS.ID_CONFIRM_UNPAUSE_CASE,
- action: function() {
- var oRPC = new leimnud.module.rpc.xmlhttp({
- url: 'cases_Ajax',
- args: 'action=unpauseCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
- });
- oRPC.callback = function(oRPC) {
- @#PAGED_TABLE_ID.refresh();
- }.extend(this);
- oRPC.make();
- }.extend(this)
- });
-};
-
-getField("PAGED_TABLE_JUMP").onkeypress = function(event) {
- event = window.event ? window.event : event;
- if (event.keyCode===13) Jump();
-};
-
-function Jump(){
- window.location.href='@#cases_Open?APP_NUMBER='+encodeURIComponent(getField('PAGED_TABLE_JUMP').value)+"&content=inner";
-}
-
-// Additional filter -- By Erik
-leimnud.event.add(getField('PROCESS_FILTER'), 'change', function() {
- loc = new String(window.location);
- tmp = (loc.indexOf('&') != -1 )? loc.indexOf('&'): loc.length;
- uri = loc.substring(0, tmp);
- location.href = uri + '&PROCESS_UID='+this.value+'&APP_STATUS_FILTER='+getField('APP_STATUS_FILTER').value+'&r='+Math.floor(Math.random()*999999);
-}.extend(getField('PROCESS_FILTER')));
-
-leimnud.event.add(getField('APP_STATUS_FILTER'), 'change', function() {
- loc = new String(window.location);
- tmp = (loc.indexOf('&') != -1 )? loc.indexOf('&'): loc.length;
- uri = loc.substring(0, tmp);
- location.href = uri + '&PROCESS_UID='+getField('PROCESS_FILTER').value+'&APP_STATUS_FILTER='+this.value+'&r='+Math.floor(Math.random()*999999);
-}.extend(getField('APP_STATUS_FILTER')));
-
-function selectionHighlight(filter) {
-
- switch (filter.toUpperCase()) {
- case 'MINE' : getField("MINE").style.fontWeight = 'bold';
- getField("READ_FILTER").style.fontWeight = 'normal';
- getField("UNREAD_FILTER").style.fontWeight = 'normal';
- getField("ALL_FILTER").style.fontWeight = 'normal';
- break;
- case 'READ' : getField("MINE").style.fontWeight = 'normal';
- getField("READ_FILTER").style.fontWeight = 'bold';
- getField("UNREAD_FILTER").style.fontWeight = 'normal';
- getField("ALL_FILTER").style.fontWeight = 'normal';
- break;
- case 'UNREAD': getField("MINE").style.fontWeight = 'normal';
- getField("READ_FILTER").style.fontWeight = 'normal';
- getField("UNREAD_FILTER").style.fontWeight = 'bold';
- getField("ALL_FILTER").style.fontWeight = 'normal';
- break;
- case 'ALL' : getField("MINE").style.fontWeight = 'normal';
- getField("READ_FILTER").style.fontWeight = 'normal';
- getField("UNREAD_FILTER").style.fontWeight = 'normal';
- getField("ALL_FILTER").style.fontWeight = 'bold';
- break;
- }
-
-}
-
-function applyAdditionalFilter(filter){
- selectionHighlight(filter);
- loc = new String(window.location);
- tmp = (loc.indexOf('&') != -1 )? loc.indexOf('&'): loc.length;
- uri = loc.substring(0, tmp);
-
- location.href = uri + '&APP_STATUS_FILTER='+getField('APP_STATUS_FILTER').value + '&PROCESS_UID='+getField('PROCESS_FILTER').value + '&' + filter + '=1'+'&r='+Math.floor(Math.random()*999999) + '&filterTit=' + filter;
-}
-
-]]>
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+ select PRO_UID, APP_PRO_TITLE from _PROCESSES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -1 ){
+ var strQueryString = strHref.substr(strHref.indexOf("&")).toLowerCase();
+ var aQueryString = strQueryString.split("&");
+ for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
+ if (aQueryString[iParam].indexOf(strParamName + "=") > -1 ){
+ var aParam = aQueryString[iParam].split("=");
+ strReturn = aParam[1];
+ break;
+ }
+ }
+ }
+ return strReturn;
+}
+
+function casesDelete(app) {
+ ajax_function('cases_Delete','','APP_UID='+encodeURIComponent(app));
+ @#PAGED_TABLE_ID.refresh();
+}
+
+var cancelCase = function(sUID, iIndex) {
+ new leimnud.module.app.confirm().make({
+ label : G_STRINGS.ID_CONFIRM_CANCEL_CASE,
+ action: function() {
+ var oRPC = new leimnud.module.rpc.xmlhttp({
+ url: 'cases_Ajax',
+ args: 'action=cancelCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
+ });
+ oRPC.callback = function(oRPC) {
+ @#PAGED_TABLE_ID.refresh();
+ }.extend(this);
+ oRPC.make();
+ }.extend(this)
+ });
+};
+
+var pauseCase = function(sUID, iIndex)
+{
+ new leimnud.module.app.confirm().make({
+ label : G_STRINGS.ID_CONFIRM_PAUSE_CASE,
+ action: function() {
+ var oRPC = new leimnud.module.rpc.xmlhttp({
+ url: 'cases_Ajax',
+ args: 'action=pauseCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
+ });
+ oRPC.callback = function(oRPC) {
+ @#PAGED_TABLE_ID.refresh();
+ }.extend(this);
+ oRPC.make();
+ }.extend(this)
+ });
+};
+
+var reactivateCase = function(sUID, iIndex) {
+ new leimnud.module.app.confirm().make({
+ label : G_STRINGS.ID_MSG_CONFIRM_REACTIVATE_CASES,
+ action: function() {
+ var oRPC = new leimnud.module.rpc.xmlhttp({
+ url: 'cases_Ajax',
+ args: 'action=reactivateCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
+ });
+ oRPC.callback = function(oRPC) {
+ @#PAGED_TABLE_ID.refresh();
+ }.extend(this);
+ oRPC.make();
+ }.extend(this)
+ });
+};
+
+var unpauseCase = function(sUID, iIndex)
+{
+ new leimnud.module.app.confirm().make({
+ label : G_STRINGS.ID_CONFIRM_UNPAUSE_CASE,
+ action: function() {
+ var oRPC = new leimnud.module.rpc.xmlhttp({
+ url: 'cases_Ajax',
+ args: 'action=unpauseCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
+ });
+ oRPC.callback = function(oRPC) {
+ @#PAGED_TABLE_ID.refresh();
+ }.extend(this);
+ oRPC.make();
+ }.extend(this)
+ });
+};
+
+getField("PAGED_TABLE_JUMP").onkeypress = function(event) {
+ event = window.event ? window.event : event;
+ if (event.keyCode===13) Jump();
+};
+
+function Jump(){
+ window.location.href='@#cases_Open?APP_NUMBER='+encodeURIComponent(getField('PAGED_TABLE_JUMP').value)+"&content=inner";
+}
+
+// Additional filter -- By Erik
+leimnud.event.add(getField('PROCESS_FILTER'), 'change', function() {
+ loc = new String(window.location);
+ tmp = (loc.indexOf('&') != -1 )? loc.indexOf('&'): loc.length;
+ uri = loc.substring(0, tmp);
+ location.href = uri + '&PROCESS_UID='+this.value+'&APP_STATUS_FILTER='+getField('APP_STATUS_FILTER').value+'&r='+Math.floor(Math.random()*999999);
+}.extend(getField('PROCESS_FILTER')));
+
+leimnud.event.add(getField('APP_STATUS_FILTER'), 'change', function() {
+ loc = new String(window.location);
+ tmp = (loc.indexOf('&') != -1 )? loc.indexOf('&'): loc.length;
+ uri = loc.substring(0, tmp);
+ location.href = uri + '&PROCESS_UID='+getField('PROCESS_FILTER').value+'&APP_STATUS_FILTER='+this.value+'&r='+Math.floor(Math.random()*999999);
+}.extend(getField('APP_STATUS_FILTER')));
+
+function selectionHighlight(filter) {
+
+ switch (filter.toUpperCase()) {
+ case 'MINE' : getField("MINE").style.fontWeight = 'bold';
+ getField("READ_FILTER").style.fontWeight = 'normal';
+ getField("UNREAD_FILTER").style.fontWeight = 'normal';
+ getField("ALL_FILTER").style.fontWeight = 'normal';
+ break;
+ case 'READ' : getField("MINE").style.fontWeight = 'normal';
+ getField("READ_FILTER").style.fontWeight = 'bold';
+ getField("UNREAD_FILTER").style.fontWeight = 'normal';
+ getField("ALL_FILTER").style.fontWeight = 'normal';
+ break;
+ case 'UNREAD': getField("MINE").style.fontWeight = 'normal';
+ getField("READ_FILTER").style.fontWeight = 'normal';
+ getField("UNREAD_FILTER").style.fontWeight = 'bold';
+ getField("ALL_FILTER").style.fontWeight = 'normal';
+ break;
+ case 'ALL' : getField("MINE").style.fontWeight = 'normal';
+ getField("READ_FILTER").style.fontWeight = 'normal';
+ getField("UNREAD_FILTER").style.fontWeight = 'normal';
+ getField("ALL_FILTER").style.fontWeight = 'bold';
+ break;
+ }
+
+}
+
+function applyAdditionalFilter(filter){
+ selectionHighlight(filter);
+ loc = new String(window.location);
+ tmp = (loc.indexOf('&') != -1 )? loc.indexOf('&'): loc.length;
+ uri = loc.substring(0, tmp);
+
+ location.href = uri + '&APP_STATUS_FILTER='+getField('APP_STATUS_FILTER').value + '&PROCESS_UID='+getField('PROCESS_FILTER').value + '&' + filter + '=1'+'&r='+Math.floor(Math.random()*999999) + '&filterTit=' + filter;
+}
+
+]]>
+
diff --git a/workflow/engine/xmlform/cases/cases_OptionsToDo.xml b/workflow/engine/xmlform/cases/cases_OptionsToDo.xml
index 8d66b1c7a..2e5637b27 100755
--- a/workflow/engine/xmlform/cases/cases_OptionsToDo.xml
+++ b/workflow/engine/xmlform/cases/cases_OptionsToDo.xml
@@ -1,189 +1,176 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- select PRO_UID, APP_PRO_TITLE from _PROCESSES
- Process
-
-
-
-
-
- Read
-
-
-
- Unread
-
-
-
- All
-
-
-
-
-
-
-
-
-
-
-
-
-
- -1 ){
- var strQueryString = strHref.substr(strHref.indexOf("&")).toLowerCase();
- var aQueryString = strQueryString.split("&");
- for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
- if (aQueryString[iParam].indexOf(strParamName + "=") > -1 ){
- var aParam = aQueryString[iParam].split("=");
- strReturn = aParam[1];
- break;
- }
- }
- }
- return strReturn;
-}
-
-function casesDelete(app) {
- ajax_function('cases_Delete','','APP_UID='+encodeURIComponent(app));
- @#PAGED_TABLE_ID.refresh();
-}
-
-var cancelCase = function(sUID, iIndex) {
- new leimnud.module.app.confirm().make({
- label : G_STRINGS.ID_CONFIRM_CANCEL_CASE,
- action: function() {
- var oRPC = new leimnud.module.rpc.xmlhttp({
- url: 'cases_Ajax',
- args: 'action=cancelCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
- });
- oRPC.callback = function(oRPC) {
- @#PAGED_TABLE_ID.refresh();
- }.extend(this);
- oRPC.make();
- }.extend(this)
- });
-};
-
-var pauseCase = function(sUID, iIndex)
-{
- new leimnud.module.app.confirm().make({
- label : G_STRINGS.ID_CONFIRM_PAUSE_CASE,
- action: function() {
- var oRPC = new leimnud.module.rpc.xmlhttp({
- url: 'cases_Ajax',
- args: 'action=pauseCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
- });
- oRPC.callback = function(oRPC) {
- @#PAGED_TABLE_ID.refresh();
- }.extend(this);
- oRPC.make();
- }.extend(this)
- });
-};
-
-var reactivateCase = function(sUID, iIndex) {
- new leimnud.module.app.confirm().make({
- label : G_STRINGS.ID_MSG_CONFIRM_REACTIVATE_CASES,
- action: function() {
- var oRPC = new leimnud.module.rpc.xmlhttp({
- url: 'cases_Ajax',
- args: 'action=reactivateCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
- });
- oRPC.callback = function(oRPC) {
- @#PAGED_TABLE_ID.refresh();
- }.extend(this);
- oRPC.make();
- }.extend(this)
- });
-};
-
-var unpauseCase = function(sUID, iIndex)
-{
- new leimnud.module.app.confirm().make({
- label : G_STRINGS.ID_CONFIRM_UNPAUSE_CASE,
- action: function() {
- var oRPC = new leimnud.module.rpc.xmlhttp({
- url: 'cases_Ajax',
- args: 'action=unpauseCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
- });
- oRPC.callback = function(oRPC) {
- @#PAGED_TABLE_ID.refresh();
- }.extend(this);
- oRPC.make();
- }.extend(this)
- });
-};
-
-getField("PAGED_TABLE_JUMP").onkeypress = function(event) {
- event = window.event ? window.event : event;
- if (event.keyCode===13) Jump();
-};
-
-function Jump(){
- window.location.href='@#cases_Open?APP_NUMBER='+encodeURIComponent(getField('PAGED_TABLE_JUMP').value)+"&content=inner";
-}
-
-// Additional filter -- By Erik
-leimnud.event.add(getField('PROCESS_FILTER'), 'change', function() {
- loc = new String(window.location);
- tmp = (loc.indexOf('&') != -1 )? loc.indexOf('&'): loc.length;
- uri = loc.substring(0, tmp);
-
- if(uri.indexOf('?l=to_do')==-1) uri=uri+'?l=to_do';
-
- document.location.href = uri + '&PROCESS_UID='+this.value+'&r='+Math.floor(Math.random()*999999);
-}.extend(getField('PROCESS_FILTER')));
-
-function selectionHighlight(filter) {
- switch (param.toUpperCase()) {
- case 'READ' : getField("READ_FILTER").style.fontWeight = 'bold';
- getField("UNREAD_FILTER").style.fontWeight = 'normal';
- getField("ALL_FILTER").style.fontWeight = 'normal';
- break;
- case 'UNREAD': getField("READ_FILTER").style.fontWeight = 'normal';
- getField("UNREAD_FILTER").style.fontWeight = 'bold';
- getField("ALL_FILTER").style.fontWeight = 'normal';
- break;
- case 'ALL' : getField("READ_FILTER").style.fontWeight = 'normal';
- getField("UNREAD_FILTER").style.fontWeight = 'normal';
- getField("ALL_FILTER").style.fontWeight = 'bold';
- break;
- default : getField("READ_FILTER").style.fontWeight = 'normal';
- getField("UNREAD_FILTER").style.fontWeight = 'normal';
- getField("ALL_FILTER").style.fontWeight = 'bold';
- break;
- }
-}
-
-function applyAdditionalFilter(filter){
- selectionHighlight(filter);
- loc = new String(window.location);
- tmp = (loc.indexOf('&') != -1 )? loc.indexOf('&'): loc.length;
- uri = loc.substring(0, tmp);
-
- location.href = uri + '&PROCESS_UID='+getField('PROCESS_FILTER').value + '&' + filter + '=1'+'&r='+Math.floor(Math.random()*999999) + '&filter=' + filter;
-}
-
-]]>
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+ select PRO_UID, APP_PRO_TITLE from _PROCESSES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -1 ){
+ var strQueryString = strHref.substr(strHref.indexOf("&")).toLowerCase();
+ var aQueryString = strQueryString.split("&");
+ for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
+ if (aQueryString[iParam].indexOf(strParamName + "=") > -1 ){
+ var aParam = aQueryString[iParam].split("=");
+ strReturn = aParam[1];
+ break;
+ }
+ }
+ }
+ return strReturn;
+}
+
+function casesDelete(app) {
+ ajax_function('cases_Delete','','APP_UID='+encodeURIComponent(app));
+ @#PAGED_TABLE_ID.refresh();
+}
+
+var cancelCase = function(sUID, iIndex) {
+ new leimnud.module.app.confirm().make({
+ label : G_STRINGS.ID_CONFIRM_CANCEL_CASE,
+ action: function() {
+ var oRPC = new leimnud.module.rpc.xmlhttp({
+ url: 'cases_Ajax',
+ args: 'action=cancelCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
+ });
+ oRPC.callback = function(oRPC) {
+ @#PAGED_TABLE_ID.refresh();
+ }.extend(this);
+ oRPC.make();
+ }.extend(this)
+ });
+};
+
+var pauseCase = function(sUID, iIndex)
+{
+ new leimnud.module.app.confirm().make({
+ label : G_STRINGS.ID_CONFIRM_PAUSE_CASE,
+ action: function() {
+ var oRPC = new leimnud.module.rpc.xmlhttp({
+ url: 'cases_Ajax',
+ args: 'action=pauseCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
+ });
+ oRPC.callback = function(oRPC) {
+ @#PAGED_TABLE_ID.refresh();
+ }.extend(this);
+ oRPC.make();
+ }.extend(this)
+ });
+};
+
+var reactivateCase = function(sUID, iIndex) {
+ new leimnud.module.app.confirm().make({
+ label : G_STRINGS.ID_MSG_CONFIRM_REACTIVATE_CASES,
+ action: function() {
+ var oRPC = new leimnud.module.rpc.xmlhttp({
+ url: 'cases_Ajax',
+ args: 'action=reactivateCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
+ });
+ oRPC.callback = function(oRPC) {
+ @#PAGED_TABLE_ID.refresh();
+ }.extend(this);
+ oRPC.make();
+ }.extend(this)
+ });
+};
+
+var unpauseCase = function(sUID, iIndex)
+{
+ new leimnud.module.app.confirm().make({
+ label : G_STRINGS.ID_CONFIRM_UNPAUSE_CASE,
+ action: function() {
+ var oRPC = new leimnud.module.rpc.xmlhttp({
+ url: 'cases_Ajax',
+ args: 'action=unpauseCase&sApplicationUID=' + sUID + '&iIndex=' + iIndex
+ });
+ oRPC.callback = function(oRPC) {
+ @#PAGED_TABLE_ID.refresh();
+ }.extend(this);
+ oRPC.make();
+ }.extend(this)
+ });
+};
+
+getField("PAGED_TABLE_JUMP").onkeypress = function(event) {
+ event = window.event ? window.event : event;
+ if (event.keyCode===13) Jump();
+};
+
+function Jump(){
+ window.location.href='@#cases_Open?APP_NUMBER='+encodeURIComponent(getField('PAGED_TABLE_JUMP').value)+"&content=inner";
+}
+
+// Additional filter -- By Erik
+leimnud.event.add(getField('PROCESS_FILTER'), 'change', function() {
+ loc = new String(window.location);
+ tmp = (loc.indexOf('&') != -1 )? loc.indexOf('&'): loc.length;
+ uri = loc.substring(0, tmp);
+
+ if(uri.indexOf('?l=to_do')==-1) uri=uri+'?l=to_do';
+
+ document.location.href = uri + '&PROCESS_UID='+this.value+'&r='+Math.floor(Math.random()*999999);
+}.extend(getField('PROCESS_FILTER')));
+
+function selectionHighlight(filter) {
+ switch (param.toUpperCase()) {
+ case 'READ' : getField("READ_FILTER").style.fontWeight = 'bold';
+ getField("UNREAD_FILTER").style.fontWeight = 'normal';
+ getField("ALL_FILTER").style.fontWeight = 'normal';
+ break;
+ case 'UNREAD': getField("READ_FILTER").style.fontWeight = 'normal';
+ getField("UNREAD_FILTER").style.fontWeight = 'bold';
+ getField("ALL_FILTER").style.fontWeight = 'normal';
+ break;
+ case 'ALL' : getField("READ_FILTER").style.fontWeight = 'normal';
+ getField("UNREAD_FILTER").style.fontWeight = 'normal';
+ getField("ALL_FILTER").style.fontWeight = 'bold';
+ break;
+ default : getField("READ_FILTER").style.fontWeight = 'normal';
+ getField("UNREAD_FILTER").style.fontWeight = 'normal';
+ getField("ALL_FILTER").style.fontWeight = 'bold';
+ break;
+ }
+}
+
+function applyAdditionalFilter(filter){
+ selectionHighlight(filter);
+ loc = new String(window.location);
+ tmp = (loc.indexOf('&') != -1 )? loc.indexOf('&'): loc.length;
+ uri = loc.substring(0, tmp);
+
+ location.href = uri + '&PROCESS_UID='+getField('PROCESS_FILTER').value + '&' + filter + '=1'+'&r='+Math.floor(Math.random()*999999) + '&filter=' + filter;
+}
+
+]]>
+
diff --git a/workflow/engine/xmlform/cases/cases_OutputdocsListToRevise.xml b/workflow/engine/xmlform/cases/cases_OutputdocsListToRevise.xml
index c5752a273..dd2a0886b 100755
--- a/workflow/engine/xmlform/cases/cases_OutputdocsListToRevise.xml
+++ b/workflow/engine/xmlform/cases/cases_OutputdocsListToRevise.xml
@@ -1,21 +1,16 @@
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
- Create Date
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_ProcessInformation.xml b/workflow/engine/xmlform/cases/cases_ProcessInformation.xml
index 9267a2145..0548119a9 100755
--- a/workflow/engine/xmlform/cases/cases_ProcessInformation.xml
+++ b/workflow/engine/xmlform/cases/cases_ProcessInformation.xml
@@ -1,21 +1,15 @@
-
-
-
-
- Title
-
-
-
- Description
-
-
-
- Author
-
-
-
- Create Date
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_Reassign.xml b/workflow/engine/xmlform/cases/cases_Reassign.xml
index 1488e73dc..7f22549b7 100755
--- a/workflow/engine/xmlform/cases/cases_Reassign.xml
+++ b/workflow/engine/xmlform/cases/cases_Reassign.xml
@@ -1,26 +1,20 @@
-
-
- Finish Reassigned
-
-
-
- Case #
-
-
-
- Reassigned to
-
-
-
- BACK
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ReassignBy.xml b/workflow/engine/xmlform/cases/cases_ReassignBy.xml
index 066baeff0..b4ab421b0 100755
--- a/workflow/engine/xmlform/cases/cases_ReassignBy.xml
+++ b/workflow/engine/xmlform/cases/cases_ReassignBy.xml
@@ -1,76 +1,69 @@
-
-
- Reassignment of Cases]]>
-
-
-
- Reassign By
-
-
-
+ Reassignment of Cases]]>
+
+
+
+
+
-
-
-
+ ]]>
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ReassignShowInfo.xml b/workflow/engine/xmlform/cases/cases_ReassignShowInfo.xml
index b7564c4e6..ef37a69ea 100755
--- a/workflow/engine/xmlform/cases/cases_ReassignShowInfo.xml
+++ b/workflow/engine/xmlform/cases/cases_ReassignShowInfo.xml
@@ -1,19 +1,18 @@
-
- Reassigned Cases Resume]]>
-
-
-
-
-
- BACK
-
-
-
+ Reassigned Cases Resume]]>
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+]]>
+
diff --git a/workflow/engine/xmlform/cases/cases_ReassignUsers.xml b/workflow/engine/xmlform/cases/cases_ReassignUsers.xml
index 2e82b71f4..643dba949 100755
--- a/workflow/engine/xmlform/cases/cases_ReassignUsers.xml
+++ b/workflow/engine/xmlform/cases/cases_ReassignUsers.xml
@@ -1,7 +1,6 @@
- 'CLOSED'
- ]]>User
-
-
\ No newline at end of file
+ ]]>
+
diff --git a/workflow/engine/xmlform/cases/cases_Resume.xml b/workflow/engine/xmlform/cases/cases_Resume.xml
index dfa96a2cd..8bc4e4ddf 100755
--- a/workflow/engine/xmlform/cases/cases_Resume.xml
+++ b/workflow/engine/xmlform/cases/cases_Resume.xml
@@ -1,54 +1,54 @@
-
-
-
- Case Properties
-
-
- Process
-
-
- Case Title
-
-
- Case Number
-
-
- Case Status
-
-
- Case Uid
-
-
- Creator
-
-
- Create Date
-
-
- Last Update
-
-
- Current Task Properties
-
-
- Task
-
-
- Current User
-
-
- Task Delegate Date
-
-
- Task Init Date
-
-
- Task Due Date
-
-
- Finish Date
-
-
- Case Description
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_Scheduler_Edit.xml b/workflow/engine/xmlform/cases/cases_Scheduler_Edit.xml
index 97a80812e..fdbf86bb9 100755
--- a/workflow/engine/xmlform/cases/cases_Scheduler_Edit.xml
+++ b/workflow/engine/xmlform/cases/cases_Scheduler_Edit.xml
@@ -1,917 +1,844 @@
-
-
-
-
-
-
-
-General Information
-
-
-Enter the username and password of the user who will be assigned to the initial task in the case.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-User Name
-
-
-Password
-
-
-
- Test User
-
-
- Edit User
-
-
-
-Properties
-
-
-
-
-Name
-
-
-
-
-
-Task
-
-
-
-
-
-
- Perform this task
-
-
-
-Select the date and time for case(s) to be initiated.
-
-
-
-Execution time
-
-
-
-Select date
-
-
-
-Start date
-
-
-
- Daily
-
-
-
-
-
-
-
- Weekly
-
-
-
-Every
-
-
-
-Select the day(s) of the week
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Monthly
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Of the month(s)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Advanced Options
-
-
-
-End Date
-
-
-End Date
-
-
-Repeat Task
-
-
-
-
-
-Record the time.
-
-
-Execute every
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Start a case based on following registered Plugin.
-
-
-
-
-
-
-
-Update
-
-
-
- disable(getField('SCH_REPEAT_EVERY_OPT'));
- // disable(getField('SCH_REPEAT_UNTIL'));
- // disable(getField('SCH_REPEAT_STOP_IF_RUNNING'));
- getField('UPDATE').disabled=true;
-
- document.getElementById('form[SELECT_DATE]').style.display='none';
- document.getElementById('form[SELECT_1]').style.display='none';
- document.getElementById('form[SELECT_2]').style.display='none';
- document.getElementById('form[SELECT_3]').style.display='none';
-
-}
-
-function hideAll() {
- contractSubtitle('SELECT_PLUGIN');
- contractSubtitle('SELECT_TIME_DAY');
- contractSubtitle('SELECT_DATE');
- contractSubtitle('SELECT_1');
- contractSubtitle('SELECT_2');
- contractSubtitle('SELECT_3');
- contractSubtitle('SELECT_EVERY');
-
- //contractSubtitle('ADVANCED_4');
- document.getElementById('startTime').style.display='none';
- document.getElementById('everyTime').style.display='none';
-
-}
-function showPluginSelection(opt,pro_uid) {
-document.getElementById("pluginsListContent").innerHTML ="";
-if(opt!=""){
-var oRPCProcess = new leimnud.module.rpc.xmlhttp({
- url : '../cases/cases_SchedulerGetPlugins',
- async : true,
- method: 'POST',
- args : "action=pluginCaseSchedulerForm&selectedOption="+opt+"&sch_uid="+getField('SCH_UID').value+"&pro_uid="+pro_uid
- });
- oRPCProcess.callback = function(rpc){
- //alert(rpc.xmlhttp.responseText);
- if(rpc.xmlhttp.responseText!=""){
-
- document.getElementById("pluginsListContent").innerHTML = rpc.xmlhttp.responseText;
- }
-
- }.extend(this);
-
- oRPCProcess.make();
-}
-}
-function showSelection(opt) {
- if (opt!=0) {
- expandSubtitle('SELECT_TIME_DAY');
- getField('UPDATE').disabled=false;
- plgUid=getField('CASE_SH_PLUGIN_UID').value;
- var oRPCProcess = new leimnud.module.rpc.xmlhttp({
- url : '../cases/cases_SchedulerGetPlugins',
- async : true,
- method: 'POST',
- args : "action=pluginsList&sch_uid="+getField('SCH_UID').value+"&plg_uid="+getField('CASE_SH_PLUGIN_UID').value
- });
-
- oRPCProcess.callback = function(rpc){
- //alert(rpc.xmlhttp.responseText);
- if(rpc.xmlhttp.responseText!=""){
- document.getElementById('form[SELECT_PLUGIN]').style.display='';
- expandSubtitle('SELECT_PLUGIN');
- document.getElementById("pluginsListDropdown").innerHTML = rpc.xmlhttp.responseText;
- showPluginSelection(plgUid,getField('PRO_UID').value);
- }
-
- }.extend(this);
-
- oRPCProcess.make();
-
-
- } else {
- contractSubtitle('SELECT_TIME_DAY');
- getField('UPDATE').disabled=true;
- }
- switch(opt){
- case '0' : hideAll();
- break;
- case '1' : expandSubtitle('SELECT_DATE');
- expandSubtitle('SELECT_1');
- contractSubtitle('SELECT_2');
- contractSubtitle('SELECT_3');
-
- document.getElementById('form[SELECT_EVERY]').style.display='none';
- document.getElementById('endDateTable').style.display='';
- document.getElementById('startTime').style.display='';
- document.getElementById('everyTime').style.display='none';
- // SCH_START_DATE
- break;
- case '2' : contractSubtitle('SELECT_DATE');
- contractSubtitle('SELECT_1');
- expandSubtitle('SELECT_2');
- contractSubtitle('SELECT_3');
- hideRow('SCH_EVERY_DAYS');
-
- document.getElementById('form[SELECT_EVERY]').style.display='none';
- document.getElementById('endDateTable').style.display='';
- document.getElementById('startTime').style.display='';
- document.getElementById('everyTime').style.display='none';
- break;
- case '3' : contractSubtitle('SELECT_DATE');
- contractSubtitle('SELECT_1');
- contractSubtitle('SELECT_2');
- expandSubtitle('SELECT_3');
- if (getField('SCH_START_DAY][1').checked){
- getField('SCH_START_DAY_OPT_1').disabled=false;
- getField('SCH_START_DAY_OPT_1').style.display="";
- getField('SCH_START_DAY_OPT_2_WEEKS').disabled=true;
- getField('SCH_START_DAY_OPT_2_WEEKS').style.display="none";
- getField('SCH_START_DAY_OPT_2_DAYS_WEEK').disabled=true;
- getField('SCH_START_DAY_OPT_2_DAYS_WEEK').style.display="none";
- } else {
- getField('SCH_START_DAY_OPT_1').disabled=true;
- getField('SCH_START_DAY_OPT_1').style.display="none";
- getField('SCH_START_DAY_OPT_2_WEEKS').disabled=false;
- getField('SCH_START_DAY_OPT_2_WEEKS').style.display="";
- getField('SCH_START_DAY_OPT_2_DAYS_WEEK').disabled=false;
- getField('SCH_START_DAY_OPT_2_DAYS_WEEK').style.display="";
- }
-
- document.getElementById('form[SELECT_EVERY]').style.display='none';
- document.getElementById('endDateTable').style.display='';
- document.getElementById('startTime').style.display='';
- document.getElementById('everyTime').style.display='none';
- break;
- case '4' : expandSubtitle('SELECT_DATE');
- contractSubtitle('SELECT_1');
- contractSubtitle('SELECT_2');
- contractSubtitle('SELECT_3');
-
- document.getElementById('form[SELECT_EVERY]').style.display='none';
- document.getElementById('endDateTable').style.display='none';
- document.getElementById('startTime').style.display='';
- document.getElementById('everyTime').style.display='none';
- break;
- case '5' : expandSubtitle('SELECT_EVERY');
- contractSubtitle('SELECT_1');
- contractSubtitle('SELECT_2');
- contractSubtitle('SELECT_3');
- enable(getField('SCH_REPEAT_EVERY'));
-
- document.getElementById('form[SELECT_TIME_DAY]').style.display='none';
- document.getElementById('endDateTable').style.display='none';
- document.getElementById('startTime').style.display='none';
- document.getElementById('everyTime').style.display='';
- break;
-
- }
-
-}
-
-leimnud.event.add(getField('SCH_OPTION'), 'change', function() {
- var opt = getField('SCH_OPTION').value;
- showSelection(opt);
-
-});
-
-leimnud.event.add(getField('SCH_START_DAY][1'), 'click', function() {
- getField('SCH_START_DAY_OPT_1').disabled=false;
- getField('SCH_START_DAY_OPT_1').style.display="";
- getField('SCH_START_DAY_OPT_2_WEEKS').disabled=true;
- getField('SCH_START_DAY_OPT_2_WEEKS').style.display="none";
- getField('SCH_START_DAY_OPT_2_DAYS_WEEK').disabled=true;
- getField('SCH_START_DAY_OPT_2_DAYS_WEEK').style.display="none";
-});
-leimnud.event.add(getField('SCH_START_DAY][2'), 'click', function() {
- getField('SCH_START_DAY_OPT_1').disabled=true;
- getField('SCH_START_DAY_OPT_1').style.display="none";
- getField('SCH_START_DAY_OPT_2_WEEKS').disabled=false;
- getField('SCH_START_DAY_OPT_2_WEEKS').style.display="";
- getField('SCH_START_DAY_OPT_2_DAYS_WEEK').disabled=false;
- getField('SCH_START_DAY_OPT_2_DAYS_WEEK').style.display="";
-});
-
-leimnud.event.add(getField('SCH_DAYS_PERFORM_TASK][1'), 'change', function() {
- getField('SCH_DAYS_PERFORM_TASK_OPT_3').disabled=true;
-});
-leimnud.event.add(getField('SCH_DAYS_PERFORM_TASK][2'), 'change', function() {
- getField('SCH_DAYS_PERFORM_TASK_OPT_3').disabled=true;
-});
-leimnud.event.add(getField('SCH_DAYS_PERFORM_TASK][3'), 'change', function() {
- getField('SCH_DAYS_PERFORM_TASK_OPT_3').disabled=false;
-});
-
-
-leimnud.event.add(getField('SCH_DAYS_PERFORM_TASK_OPT_3'), 'change', function() {
- days = getField('SCH_DAYS_PERFORM_TASK_OPT_3').value;
- if(!(days>=1 && days<=365)){
- msgBox('Days must be between 1 and 365', 'alert'); // confirm, info
- getField('SCH_DAYS_PERFORM_TASK_OPT_3').value = '1';
- }
-});
-
-leimnud.event.add(getField('SCH_EVERY_DAYS'), 'change', function() {
- weeks = getField('SCH_EVERY_DAYS').value;
- if(!(weeks>=1 && weeks<=52) ) {
- msgBox('Weeks must be between 1 and 52', 'alert');
- getField('SCH_EVERY_DAYS').value = '';
- }
-});
-
-leimnud.event.add(getField('SCH_START_DAY_OPT_1'), 'change', function() {
- days = getField('SCH_START_DAY_OPT_1').value;
- if(!(days>=1 && days<=31) ) {
- msgBox('The days must be between 1 and 31', 'alert');
- getField('SCH_START_DAY_OPT_1').value = '1';
- }
-});
-
-
-
-// for advanced
-
-leimnud.event.add(getField('SCH_END_DATE_CHK'), 'click', function() {
- if(getField('SCH_END_DATE_CHK').checked){
- enable(getField('SCH_END_DATE'));
- }
- else {
- document.getElementById('form[SCH_END_DATE]').value = '';
- document.getElementById('form[SCH_END_DATE][div]').innerHTML = '';
- disable(getField('SCH_END_DATE'));
- }
-
-});
-
-leimnud.event.add(getField('SCH_REPEAT_TASK_CHK'), 'click', function() {
- if(getField('SCH_REPEAT_TASK_CHK').checked){
- enable(getField('SCH_REPEAT_EVERY'));
- enable(getField('SCH_REPEAT_EVERY_OPT'));
- // enable(getField('SCH_REPEAT_UNTIL'));
- // enable(getField('SCH_REPEAT_STOP_IF_RUNNING'));
- } else {
-
-
- // disable(getField('SCH_REPEAT_UNTIL'));
- // disable(getField('SCH_REPEAT_STOP_IF_RUNNING'));
- }
-
-});
-
-
-leimnud.event.add(getField('SCH_START_TIME'), 'change', function() {
- hours = getField('SCH_START_TIME').value;
- answer = hours;
- var parties = answer.split(':');
-
- if(parties[0]>23){
- msgBox(G_STRINGS.ID_SCHEDULER_CANT_PUT_TIME, 'alert');
- getField('SCH_START_TIME').value='';
- //getField('SCH_REPEAT_UNTIL').value='';
- //getField('SCH_REPEAT_UNTIL').focus();
- getField('UPDATE').focus();
- }
- if(parties[1]>59){
- msgBox(G_STRINGS.ID_SCHEDULER_CANT_PUT_MINUTES, 'alert');
- getField('SCH_START_TIME').value='';
- //getField('SCH_REPEAT_UNTIL').value='';
- //getField('SCH_REPEAT_UNTIL').focus();
- getField('UPDATE').focus();
- }
-});
-
-leimnud.event.add(getField('SCH_REPEAT_EVERY'), 'change', function() {
- hours = getField('SCH_REPEAT_EVERY').value;
- answer = hours;
- var parties = answer.split('.');
-
- if(parties[0]>23){
- msgBox(G_STRINGS.ID_SCHEDULER_CANT_PUT_TIME, 'alert');
- getField('SCH_REPEAT_EVERY').value='';
- getField('UPDATE').focus();
-
- }
- if(parties[1]>99){
- msgBox('The minutes can not be greater than 99', 'alert');
- getField('SCH_REPEAT_EVERY').value='';
- getField('UPDATE').focus();
- }
-});
-
-
-
-leimnud.event.add(getField('SCH_REPEAT_UNTIL'), 'change', function() {
- hours = getField('SCH_REPEAT_UNTIL').value;
- answer = hours;
- var parties = answer.split(':');
-
- if(parties[0]>23){
- msgBox(G_STRINGS.ID_SCHEDULER_CANT_PUT_TIME, 'alert');
- getField('SCH_START_TIME').value='';
- //getField('SCH_REPEAT_UNTIL').value='';
- //getField('SCH_REPEAT_UNTIL').focus();
- getField('UPDATE').focus();
-
- }
- if(parties[1]>59){
- msgBox(G_STRINGS.ID_SCHEDULER_CANT_PUT_MINUTES, 'alert');
- //getField('SCH_REPEAT_UNTIL').value='';
- //getField('SCH_REPEAT_UNTIL').focus();
- getField('UPDATE').focus();
- }
-});
-/*
- * @function case_userSchedulerValidate
- * @author gustavo cruz gustavo[at]colsoa[dot]com
- * @desc This function makes an Ajax call in order to validate if a user is registered in the system.
- * @return void
- */
-function case_userSchedulerValidate(username, password) {
- var user_uid;
-
- var oRPC = new leimnud.module.rpc.xmlhttp({
- url : '../cases/cases_SchedulerValidateUser',
- async : true,
- method: 'POST',
- args : "USERNAME="+username+"&PASSWORD="+password+"&PRO_UID="+$_GET('PRO_UID')
- });
-
- oRPC.callback = function(rpc){
- sresponse = rpc.xmlhttp.responseText.parseJSON();
-
- if (sresponse.status_code != 0) {
- msgBox(sresponse.message, "alert");
- return false;
- }
-
- getField('SCH_USER_UID').value = sresponse.message;
- user_uid = sresponse.message;
-
- var oRPCProcess = new leimnud.module.rpc.xmlhttp({
- url : '../cases/cases_SchedulerGetProcesses',
- async : true,
- method: 'POST',
- args : "USR_UID="+user_uid
- });
-
- oRPCProcess.callback = function(rpc){
- if (getField('PRO_UID')!=null){
- var process_uid = getField('PRO_UID').value;
- loadTasksDropdown(process_uid,user_uid);
- document.getElementById('form[UPDATE]').disabled=false;
- showProperties();
- } else {
- msgBox("The User login data seems to be invalid.","alert");
- }
- }.extend(this);
-
- oRPCProcess.make();
-
-
- }.extend(this);
- oRPC.make();
-
-
-}
-
-function resetForm(){
-document.getElementById('form[UPDATE]').disabled=true;
-document.getElementById('form[SCH_USER_NAME]').readOnly=false;
-document.getElementById('form[SCH_USER_PASSWORD]').readOnly=false;
-document.getElementById('form[SCH_USER_PASSWORD]').value='';
-document.getElementById('form[TEST_CONNECTION]').style.display='';
-document.getElementById('form[EDIT_USER]').style.display='none';
-//hideAll();
-//hideProperties();
-}
-/**
- * @desc Load Tasks Dropdown
- * @author gustavo cruz gustavo[at]colosa[dot]com
- * @desc This function loads the Task Dropdown filtered by process.
- * @return void
- */
-function loadTasksDropdown(process,user_uid){
- //alert(process);
- var oRPCTasks = new leimnud.module.rpc.xmlhttp({
- url : '../cases/cases_SchedulerGetTasks',
- async : true,
- method: 'POST',
- args : "USR_UID="+user_uid+"&PRO_UID="+process
- });
-
- oRPCTasks.callback = function(rpc){
- document.getElementById("taskListDropdown").innerHTML = rpc.xmlhttp.responseText;
- }.extend(this);
- oRPCTasks.make();
-}
-/*
- * @function collapseAdvancedOption
- * @author gustavo cruz gustavo[at]colsoa[dot]com
- * @desc This function collapses the Advanced Options Fields.
- * @return void
- */
-
-function collapseAdvancedOptions(){
- var flag = document.getElementById('EditLogAdvancedOptions').innerHTML;
- if (flag=='visible'){
- //contractSubtitle('ADVANCED_4');
- document.getElementById('EditLogAdvancedOptions').innerHTML = 'hidden';
- document.getElementById('checkAdvanced').checked = false;
- document.getElementById('form[SCH_END_DATE_CHK]').checked = false;
- document.getElementById('form[SCH_END_DATE]').value = '';
- document.getElementById('form[SCH_END_DATE][div]').innerHTML = '';
- document.getElementById('form[SCH_REPEAT_TASK_CHK]').checked = false;
-
-
- } else {
- //expandSubtitle('ADVANCED_4');
- document.getElementById('checkAdvanced').checked = true;
- document.getElementById('EditLogAdvancedOptions').innerHTML = 'visible';
- }
-}
-
-/**
- * @function validateSchedulerFields
- * @author gustavo cruz gustavo[at]colsoa[dot]com
- * @desc This function validates the special cases for the scheduler data fields.
- * @return true/false boolean
- */
-
-function validateSchedulerFields(oForm) {
-
- var schedulerTitle = document.getElementById('form[SCH_NAME]').value;
- schedulerTitle = schedulerTitle.replace(/^\s*|\s*$/g,"");
- if (schedulerTitle == '') {
- document.getElementById('form[SCH_NAME]').focus();
- msgBox("@G::LoadTranslation(ID_REQUIRED_NAME_CASE_SCHEDULER)", 'alert');
- return false;
- }
-
- var listNames = document.getElementById('form[SCH_LIST]').value;
- listNames = listNames.split("^");
- for (var i= 1; iendDate){
- badFormatFields = badFormatFields + 'Start Date can\'t be greater than End Date';
- validFields = false;
- }
- }
-
- if (document.getElementById('form[SCH_START_TIME]').value=='') {
- requiredFields = requiredFields + 'Start Time,';
- validFields = false;
- }
- // check if the field time is compliant with the regular expression
- // for time format hh:mm
- var regExpString = "([0-1]\\d|2[0-3]):([0-5]\\d)";
- var timeRegexp = new RegExp(regExpString);
- if (!timeRegexp.test(document.getElementById('form[SCH_START_TIME]').value)) {
- msgBox('The time format is invalid','alert');
- return false;
- }
- if (document.getElementById('form[SCH_OPTION]').value == 5) {
- if (document.getElementById('form[SCH_REPEAT_EVERY]').value=='') {
- requiredFields = requiredFields + 'Every,';
- validFields = false;
- }
- }
- switch(document.getElementById('form[SCH_OPTION]').value) {
- case '1':
- // daily
- //if(document.getElementById('form[SCH_DAYS_PERFORM_TASK][1]').checked==true||document.getElementById('form[SCH_DAYS_PERFORM_TASK][2]').checked==true||document.getElementById('form[SCH_DAYS_PERFORM_TASK][3]').checked==true){
- if(document.getElementById('form[SCH_DAYS_PERFORM_TASK]').value!=''){
- validFields = true;
- } else {
- requiredFields = requiredFields + 'Weekdays,';
- validFields = false;
- }
- break;
- case '2':
- // weekly
- if (document.getElementById('form[SCH_EVERY_DAYS]').value=='') {
- requiredFields = requiredFields + 'Number of Weeks,';
- validFields = false;
- } else {
- for (week=1;week<=4;week++) {
- weekIdOne = 'form[SCH_WEEK_DAYS]['+week+']';
- if (document.getElementById(weekIdOne).checked==true) {
- validFields = true;
- break;
- } else {
- validFields = false;
- }
- }
- if (!validFields){
- for (week=1;week<=3;week++) {
- weekIdTwo = 'form[SCH_WEEK_DAYS_2]['+(week+4)+']';
- if (document.getElementById(weekIdTwo).checked==true) {
- validFields = true;
- break;
- } else {
- validFields = false;
- }
- }
- }
- if (!validFields) {
- requiredFields = requiredFields + 'Weeks,';
- validFields = false;
- }
- }
- break;
- case '3':
- //monthly
- if (document.getElementById('form[SCH_START_DAY][1]').checked==true||document.getElementById('form[SCH_START_DAY][2]').checked==true) {
- for (month=1;month<=4;month++) {
- monthIdOne = 'form[SCH_MONTHS]['+month+']';
- monthIdTwo = 'form[SCH_MONTHS_2]['+(month+4)+']';
- monthIdThree = 'form[SCH_MONTHS_3]['+(month+8)+']';
- if (document.getElementById(monthIdOne).checked==true||document.getElementById(monthIdTwo).checked==true||document.getElementById(monthIdThree).checked==true) {
- validFields = true;
- break;
- } else {
- validFields = false;
- }
- }
- if (!validFields) {
- requiredFields = requiredFields + 'Months,';
- validFields = false;
- }
- } else {
- requiredFields = requiredFields + 'Start Day,';
- validFields = false;
- }
- break;
- case '4':
- //run once
- validFields = true;
- break;
- case '5':
- //run once
- validFields = true;
- break;
- default:
- validFields = false;
- break;
- }
- if (requiredFields!='') {
- var message = "The fields "+requiredFields+" can\'t be empty";
- msgBox(message, 'alert');
- return false;
- } else {
- if (badFormatFields!=''){
- var message = badFormatFields;
- msgBox(message, 'alert');
- return false;
- } else {
- oForm.submit();
- }
- }
-}
-
-]]>
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ disable(getField('SCH_REPEAT_EVERY_OPT'));
+ // disable(getField('SCH_REPEAT_UNTIL'));
+ // disable(getField('SCH_REPEAT_STOP_IF_RUNNING'));
+ getField('UPDATE').disabled=true;
+
+ document.getElementById('form[SELECT_DATE]').style.display='none';
+ document.getElementById('form[SELECT_1]').style.display='none';
+ document.getElementById('form[SELECT_2]').style.display='none';
+ document.getElementById('form[SELECT_3]').style.display='none';
+
+}
+
+function hideAll() {
+ contractSubtitle('SELECT_PLUGIN');
+ contractSubtitle('SELECT_TIME_DAY');
+ contractSubtitle('SELECT_DATE');
+ contractSubtitle('SELECT_1');
+ contractSubtitle('SELECT_2');
+ contractSubtitle('SELECT_3');
+ contractSubtitle('SELECT_EVERY');
+
+ //contractSubtitle('ADVANCED_4');
+ document.getElementById('startTime').style.display='none';
+ document.getElementById('everyTime').style.display='none';
+
+}
+function showPluginSelection(opt,pro_uid) {
+document.getElementById("pluginsListContent").innerHTML ="";
+if(opt!=""){
+var oRPCProcess = new leimnud.module.rpc.xmlhttp({
+ url : '../cases/cases_SchedulerGetPlugins',
+ async : true,
+ method: 'POST',
+ args : "action=pluginCaseSchedulerForm&selectedOption="+opt+"&sch_uid="+getField('SCH_UID').value+"&pro_uid="+pro_uid
+ });
+ oRPCProcess.callback = function(rpc){
+ //alert(rpc.xmlhttp.responseText);
+ if(rpc.xmlhttp.responseText!=""){
+
+ document.getElementById("pluginsListContent").innerHTML = rpc.xmlhttp.responseText;
+ }
+
+ }.extend(this);
+
+ oRPCProcess.make();
+}
+}
+function showSelection(opt) {
+ if (opt!=0) {
+ expandSubtitle('SELECT_TIME_DAY');
+ getField('UPDATE').disabled=false;
+ plgUid=getField('CASE_SH_PLUGIN_UID').value;
+ var oRPCProcess = new leimnud.module.rpc.xmlhttp({
+ url : '../cases/cases_SchedulerGetPlugins',
+ async : true,
+ method: 'POST',
+ args : "action=pluginsList&sch_uid="+getField('SCH_UID').value+"&plg_uid="+getField('CASE_SH_PLUGIN_UID').value
+ });
+
+ oRPCProcess.callback = function(rpc){
+ //alert(rpc.xmlhttp.responseText);
+ if(rpc.xmlhttp.responseText!=""){
+ document.getElementById('form[SELECT_PLUGIN]').style.display='';
+ expandSubtitle('SELECT_PLUGIN');
+ document.getElementById("pluginsListDropdown").innerHTML = rpc.xmlhttp.responseText;
+ showPluginSelection(plgUid,getField('PRO_UID').value);
+ }
+
+ }.extend(this);
+
+ oRPCProcess.make();
+
+
+ } else {
+ contractSubtitle('SELECT_TIME_DAY');
+ getField('UPDATE').disabled=true;
+ }
+ switch(opt){
+ case '0' : hideAll();
+ break;
+ case '1' : expandSubtitle('SELECT_DATE');
+ expandSubtitle('SELECT_1');
+ contractSubtitle('SELECT_2');
+ contractSubtitle('SELECT_3');
+
+ document.getElementById('form[SELECT_EVERY]').style.display='none';
+ document.getElementById('endDateTable').style.display='';
+ document.getElementById('startTime').style.display='';
+ document.getElementById('everyTime').style.display='none';
+ // SCH_START_DATE
+ break;
+ case '2' : contractSubtitle('SELECT_DATE');
+ contractSubtitle('SELECT_1');
+ expandSubtitle('SELECT_2');
+ contractSubtitle('SELECT_3');
+ hideRow('SCH_EVERY_DAYS');
+
+ document.getElementById('form[SELECT_EVERY]').style.display='none';
+ document.getElementById('endDateTable').style.display='';
+ document.getElementById('startTime').style.display='';
+ document.getElementById('everyTime').style.display='none';
+ break;
+ case '3' : contractSubtitle('SELECT_DATE');
+ contractSubtitle('SELECT_1');
+ contractSubtitle('SELECT_2');
+ expandSubtitle('SELECT_3');
+ if (getField('SCH_START_DAY][1').checked){
+ getField('SCH_START_DAY_OPT_1').disabled=false;
+ getField('SCH_START_DAY_OPT_1').style.display="";
+ getField('SCH_START_DAY_OPT_2_WEEKS').disabled=true;
+ getField('SCH_START_DAY_OPT_2_WEEKS').style.display="none";
+ getField('SCH_START_DAY_OPT_2_DAYS_WEEK').disabled=true;
+ getField('SCH_START_DAY_OPT_2_DAYS_WEEK').style.display="none";
+ } else {
+ getField('SCH_START_DAY_OPT_1').disabled=true;
+ getField('SCH_START_DAY_OPT_1').style.display="none";
+ getField('SCH_START_DAY_OPT_2_WEEKS').disabled=false;
+ getField('SCH_START_DAY_OPT_2_WEEKS').style.display="";
+ getField('SCH_START_DAY_OPT_2_DAYS_WEEK').disabled=false;
+ getField('SCH_START_DAY_OPT_2_DAYS_WEEK').style.display="";
+ }
+
+ document.getElementById('form[SELECT_EVERY]').style.display='none';
+ document.getElementById('endDateTable').style.display='';
+ document.getElementById('startTime').style.display='';
+ document.getElementById('everyTime').style.display='none';
+ break;
+ case '4' : expandSubtitle('SELECT_DATE');
+ contractSubtitle('SELECT_1');
+ contractSubtitle('SELECT_2');
+ contractSubtitle('SELECT_3');
+
+ document.getElementById('form[SELECT_EVERY]').style.display='none';
+ document.getElementById('endDateTable').style.display='none';
+ document.getElementById('startTime').style.display='';
+ document.getElementById('everyTime').style.display='none';
+ break;
+ case '5' : expandSubtitle('SELECT_EVERY');
+ contractSubtitle('SELECT_1');
+ contractSubtitle('SELECT_2');
+ contractSubtitle('SELECT_3');
+ enable(getField('SCH_REPEAT_EVERY'));
+
+ document.getElementById('form[SELECT_TIME_DAY]').style.display='none';
+ document.getElementById('endDateTable').style.display='none';
+ document.getElementById('startTime').style.display='none';
+ document.getElementById('everyTime').style.display='';
+ break;
+
+ }
+
+}
+
+leimnud.event.add(getField('SCH_OPTION'), 'change', function() {
+ var opt = getField('SCH_OPTION').value;
+ showSelection(opt);
+
+});
+
+leimnud.event.add(getField('SCH_START_DAY][1'), 'click', function() {
+ getField('SCH_START_DAY_OPT_1').disabled=false;
+ getField('SCH_START_DAY_OPT_1').style.display="";
+ getField('SCH_START_DAY_OPT_2_WEEKS').disabled=true;
+ getField('SCH_START_DAY_OPT_2_WEEKS').style.display="none";
+ getField('SCH_START_DAY_OPT_2_DAYS_WEEK').disabled=true;
+ getField('SCH_START_DAY_OPT_2_DAYS_WEEK').style.display="none";
+});
+leimnud.event.add(getField('SCH_START_DAY][2'), 'click', function() {
+ getField('SCH_START_DAY_OPT_1').disabled=true;
+ getField('SCH_START_DAY_OPT_1').style.display="none";
+ getField('SCH_START_DAY_OPT_2_WEEKS').disabled=false;
+ getField('SCH_START_DAY_OPT_2_WEEKS').style.display="";
+ getField('SCH_START_DAY_OPT_2_DAYS_WEEK').disabled=false;
+ getField('SCH_START_DAY_OPT_2_DAYS_WEEK').style.display="";
+});
+
+leimnud.event.add(getField('SCH_DAYS_PERFORM_TASK][1'), 'change', function() {
+ getField('SCH_DAYS_PERFORM_TASK_OPT_3').disabled=true;
+});
+leimnud.event.add(getField('SCH_DAYS_PERFORM_TASK][2'), 'change', function() {
+ getField('SCH_DAYS_PERFORM_TASK_OPT_3').disabled=true;
+});
+leimnud.event.add(getField('SCH_DAYS_PERFORM_TASK][3'), 'change', function() {
+ getField('SCH_DAYS_PERFORM_TASK_OPT_3').disabled=false;
+});
+
+
+leimnud.event.add(getField('SCH_DAYS_PERFORM_TASK_OPT_3'), 'change', function() {
+ days = getField('SCH_DAYS_PERFORM_TASK_OPT_3').value;
+ if(!(days>=1 && days<=365)){
+ msgBox('Days must be between 1 and 365', 'alert'); // confirm, info
+ getField('SCH_DAYS_PERFORM_TASK_OPT_3').value = '1';
+ }
+});
+
+leimnud.event.add(getField('SCH_EVERY_DAYS'), 'change', function() {
+ weeks = getField('SCH_EVERY_DAYS').value;
+ if(!(weeks>=1 && weeks<=52) ) {
+ msgBox('Weeks must be between 1 and 52', 'alert');
+ getField('SCH_EVERY_DAYS').value = '';
+ }
+});
+
+leimnud.event.add(getField('SCH_START_DAY_OPT_1'), 'change', function() {
+ days = getField('SCH_START_DAY_OPT_1').value;
+ if(!(days>=1 && days<=31) ) {
+ msgBox('The days must be between 1 and 31', 'alert');
+ getField('SCH_START_DAY_OPT_1').value = '1';
+ }
+});
+
+
+
+// for advanced
+
+leimnud.event.add(getField('SCH_END_DATE_CHK'), 'click', function() {
+ if(getField('SCH_END_DATE_CHK').checked){
+ enable(getField('SCH_END_DATE'));
+ }
+ else {
+ document.getElementById('form[SCH_END_DATE]').value = '';
+ document.getElementById('form[SCH_END_DATE][div]').innerHTML = '';
+ disable(getField('SCH_END_DATE'));
+ }
+
+});
+
+leimnud.event.add(getField('SCH_REPEAT_TASK_CHK'), 'click', function() {
+ if(getField('SCH_REPEAT_TASK_CHK').checked){
+ enable(getField('SCH_REPEAT_EVERY'));
+ enable(getField('SCH_REPEAT_EVERY_OPT'));
+ // enable(getField('SCH_REPEAT_UNTIL'));
+ // enable(getField('SCH_REPEAT_STOP_IF_RUNNING'));
+ } else {
+
+
+ // disable(getField('SCH_REPEAT_UNTIL'));
+ // disable(getField('SCH_REPEAT_STOP_IF_RUNNING'));
+ }
+
+});
+
+
+leimnud.event.add(getField('SCH_START_TIME'), 'change', function() {
+ hours = getField('SCH_START_TIME').value;
+ answer = hours;
+ var parties = answer.split(':');
+
+ if(parties[0]>23){
+ msgBox(G_STRINGS.ID_SCHEDULER_CANT_PUT_TIME, 'alert');
+ getField('SCH_START_TIME').value='';
+ //getField('SCH_REPEAT_UNTIL').value='';
+ //getField('SCH_REPEAT_UNTIL').focus();
+ getField('UPDATE').focus();
+ }
+ if(parties[1]>59){
+ msgBox(G_STRINGS.ID_SCHEDULER_CANT_PUT_MINUTES, 'alert');
+ getField('SCH_START_TIME').value='';
+ //getField('SCH_REPEAT_UNTIL').value='';
+ //getField('SCH_REPEAT_UNTIL').focus();
+ getField('UPDATE').focus();
+ }
+});
+
+leimnud.event.add(getField('SCH_REPEAT_EVERY'), 'change', function() {
+ hours = getField('SCH_REPEAT_EVERY').value;
+ answer = hours;
+ var parties = answer.split('.');
+
+ if(parties[0]>23){
+ msgBox(G_STRINGS.ID_SCHEDULER_CANT_PUT_TIME, 'alert');
+ getField('SCH_REPEAT_EVERY').value='';
+ getField('UPDATE').focus();
+
+ }
+ if(parties[1]>99){
+ msgBox('The minutes can not be greater than 99', 'alert');
+ getField('SCH_REPEAT_EVERY').value='';
+ getField('UPDATE').focus();
+ }
+});
+
+
+
+leimnud.event.add(getField('SCH_REPEAT_UNTIL'), 'change', function() {
+ hours = getField('SCH_REPEAT_UNTIL').value;
+ answer = hours;
+ var parties = answer.split(':');
+
+ if(parties[0]>23){
+ msgBox(G_STRINGS.ID_SCHEDULER_CANT_PUT_TIME, 'alert');
+ getField('SCH_START_TIME').value='';
+ //getField('SCH_REPEAT_UNTIL').value='';
+ //getField('SCH_REPEAT_UNTIL').focus();
+ getField('UPDATE').focus();
+
+ }
+ if(parties[1]>59){
+ msgBox(G_STRINGS.ID_SCHEDULER_CANT_PUT_MINUTES, 'alert');
+ //getField('SCH_REPEAT_UNTIL').value='';
+ //getField('SCH_REPEAT_UNTIL').focus();
+ getField('UPDATE').focus();
+ }
+});
+/*
+ * @function case_userSchedulerValidate
+ * @author gustavo cruz gustavo[at]colsoa[dot]com
+ * @desc This function makes an Ajax call in order to validate if a user is registered in the system.
+ * @return void
+ */
+function case_userSchedulerValidate(username, password) {
+ var user_uid;
+
+ var oRPC = new leimnud.module.rpc.xmlhttp({
+ url : '../cases/cases_SchedulerValidateUser',
+ async : true,
+ method: 'POST',
+ args : "USERNAME="+username+"&PASSWORD="+password+"&PRO_UID="+$_GET('PRO_UID')
+ });
+
+ oRPC.callback = function(rpc){
+ sresponse = rpc.xmlhttp.responseText.parseJSON();
+
+ if (sresponse.status_code != 0) {
+ msgBox(sresponse.message, "alert");
+ return false;
+ }
+
+ getField('SCH_USER_UID').value = sresponse.message;
+ user_uid = sresponse.message;
+
+ var oRPCProcess = new leimnud.module.rpc.xmlhttp({
+ url : '../cases/cases_SchedulerGetProcesses',
+ async : true,
+ method: 'POST',
+ args : "USR_UID="+user_uid
+ });
+
+ oRPCProcess.callback = function(rpc){
+ if (getField('PRO_UID')!=null){
+ var process_uid = getField('PRO_UID').value;
+ loadTasksDropdown(process_uid,user_uid);
+ document.getElementById('form[UPDATE]').disabled=false;
+ showProperties();
+ } else {
+ msgBox("The User login data seems to be invalid.","alert");
+ }
+ }.extend(this);
+
+ oRPCProcess.make();
+
+
+ }.extend(this);
+ oRPC.make();
+
+
+}
+
+function resetForm(){
+document.getElementById('form[UPDATE]').disabled=true;
+document.getElementById('form[SCH_USER_NAME]').readOnly=false;
+document.getElementById('form[SCH_USER_PASSWORD]').readOnly=false;
+document.getElementById('form[SCH_USER_PASSWORD]').value='';
+document.getElementById('form[TEST_CONNECTION]').style.display='';
+document.getElementById('form[EDIT_USER]').style.display='none';
+//hideAll();
+//hideProperties();
+}
+/**
+ * @desc Load Tasks Dropdown
+ * @author gustavo cruz gustavo[at]colosa[dot]com
+ * @desc This function loads the Task Dropdown filtered by process.
+ * @return void
+ */
+function loadTasksDropdown(process,user_uid){
+ //alert(process);
+ var oRPCTasks = new leimnud.module.rpc.xmlhttp({
+ url : '../cases/cases_SchedulerGetTasks',
+ async : true,
+ method: 'POST',
+ args : "USR_UID="+user_uid+"&PRO_UID="+process
+ });
+
+ oRPCTasks.callback = function(rpc){
+ document.getElementById("taskListDropdown").innerHTML = rpc.xmlhttp.responseText;
+ }.extend(this);
+ oRPCTasks.make();
+}
+/*
+ * @function collapseAdvancedOption
+ * @author gustavo cruz gustavo[at]colsoa[dot]com
+ * @desc This function collapses the Advanced Options Fields.
+ * @return void
+ */
+
+function collapseAdvancedOptions(){
+ var flag = document.getElementById('EditLogAdvancedOptions').innerHTML;
+ if (flag=='visible'){
+ //contractSubtitle('ADVANCED_4');
+ document.getElementById('EditLogAdvancedOptions').innerHTML = 'hidden';
+ document.getElementById('checkAdvanced').checked = false;
+ document.getElementById('form[SCH_END_DATE_CHK]').checked = false;
+ document.getElementById('form[SCH_END_DATE]').value = '';
+ document.getElementById('form[SCH_END_DATE][div]').innerHTML = '';
+ document.getElementById('form[SCH_REPEAT_TASK_CHK]').checked = false;
+
+
+ } else {
+ //expandSubtitle('ADVANCED_4');
+ document.getElementById('checkAdvanced').checked = true;
+ document.getElementById('EditLogAdvancedOptions').innerHTML = 'visible';
+ }
+}
+
+/**
+ * @function validateSchedulerFields
+ * @author gustavo cruz gustavo[at]colsoa[dot]com
+ * @desc This function validates the special cases for the scheduler data fields.
+ * @return true/false boolean
+ */
+
+function validateSchedulerFields(oForm) {
+
+ var schedulerTitle = document.getElementById('form[SCH_NAME]').value;
+ schedulerTitle = schedulerTitle.replace(/^\s*|\s*$/g,"");
+ if (schedulerTitle == '') {
+ document.getElementById('form[SCH_NAME]').focus();
+ msgBox("@G::LoadTranslation(ID_REQUIRED_NAME_CASE_SCHEDULER)", 'alert');
+ return false;
+ }
+
+ var listNames = document.getElementById('form[SCH_LIST]').value;
+ listNames = listNames.split("^");
+ for (var i= 1; iendDate){
+ badFormatFields = badFormatFields + 'Start Date can\'t be greater than End Date';
+ validFields = false;
+ }
+ }
+
+ if (document.getElementById('form[SCH_START_TIME]').value=='') {
+ requiredFields = requiredFields + 'Start Time,';
+ validFields = false;
+ }
+ // check if the field time is compliant with the regular expression
+ // for time format hh:mm
+ var regExpString = "([0-1]\\d|2[0-3]):([0-5]\\d)";
+ var timeRegexp = new RegExp(regExpString);
+ if (!timeRegexp.test(document.getElementById('form[SCH_START_TIME]').value)) {
+ msgBox('The time format is invalid','alert');
+ return false;
+ }
+ if (document.getElementById('form[SCH_OPTION]').value == 5) {
+ if (document.getElementById('form[SCH_REPEAT_EVERY]').value=='') {
+ requiredFields = requiredFields + 'Every,';
+ validFields = false;
+ }
+ }
+ switch(document.getElementById('form[SCH_OPTION]').value) {
+ case '1':
+ // daily
+ //if(document.getElementById('form[SCH_DAYS_PERFORM_TASK][1]').checked==true||document.getElementById('form[SCH_DAYS_PERFORM_TASK][2]').checked==true||document.getElementById('form[SCH_DAYS_PERFORM_TASK][3]').checked==true){
+ if(document.getElementById('form[SCH_DAYS_PERFORM_TASK]').value!=''){
+ validFields = true;
+ } else {
+ requiredFields = requiredFields + 'Weekdays,';
+ validFields = false;
+ }
+ break;
+ case '2':
+ // weekly
+ if (document.getElementById('form[SCH_EVERY_DAYS]').value=='') {
+ requiredFields = requiredFields + 'Number of Weeks,';
+ validFields = false;
+ } else {
+ for (week=1;week<=4;week++) {
+ weekIdOne = 'form[SCH_WEEK_DAYS]['+week+']';
+ if (document.getElementById(weekIdOne).checked==true) {
+ validFields = true;
+ break;
+ } else {
+ validFields = false;
+ }
+ }
+ if (!validFields){
+ for (week=1;week<=3;week++) {
+ weekIdTwo = 'form[SCH_WEEK_DAYS_2]['+(week+4)+']';
+ if (document.getElementById(weekIdTwo).checked==true) {
+ validFields = true;
+ break;
+ } else {
+ validFields = false;
+ }
+ }
+ }
+ if (!validFields) {
+ requiredFields = requiredFields + 'Weeks,';
+ validFields = false;
+ }
+ }
+ break;
+ case '3':
+ //monthly
+ if (document.getElementById('form[SCH_START_DAY][1]').checked==true||document.getElementById('form[SCH_START_DAY][2]').checked==true) {
+ for (month=1;month<=4;month++) {
+ monthIdOne = 'form[SCH_MONTHS]['+month+']';
+ monthIdTwo = 'form[SCH_MONTHS_2]['+(month+4)+']';
+ monthIdThree = 'form[SCH_MONTHS_3]['+(month+8)+']';
+ if (document.getElementById(monthIdOne).checked==true||document.getElementById(monthIdTwo).checked==true||document.getElementById(monthIdThree).checked==true) {
+ validFields = true;
+ break;
+ } else {
+ validFields = false;
+ }
+ }
+ if (!validFields) {
+ requiredFields = requiredFields + 'Months,';
+ validFields = false;
+ }
+ } else {
+ requiredFields = requiredFields + 'Start Day,';
+ validFields = false;
+ }
+ break;
+ case '4':
+ //run once
+ validFields = true;
+ break;
+ case '5':
+ //run once
+ validFields = true;
+ break;
+ default:
+ validFields = false;
+ break;
+ }
+ if (requiredFields!='') {
+ var message = "The fields "+requiredFields+" can\'t be empty";
+ msgBox(message, 'alert');
+ return false;
+ } else {
+ if (badFormatFields!=''){
+ var message = badFormatFields;
+ msgBox(message, 'alert');
+ return false;
+ } else {
+ oForm.submit();
+ }
+ }
+}
+
+]]>
+
diff --git a/workflow/engine/xmlform/cases/cases_Scheduler_List.xml b/workflow/engine/xmlform/cases/cases_Scheduler_List.xml
index dbb5cf0b9..fbe12dd37 100755
--- a/workflow/engine/xmlform/cases/cases_Scheduler_List.xml
+++ b/workflow/engine/xmlform/cases/cases_Scheduler_List.xml
@@ -1,36 +1,29 @@
-
-
-
- Name
-
-
-
- Process
-
-
-
- Task
-
-
-
- Next execution time
-
-
- Last execution time
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_Scheduler_Log.xml b/workflow/engine/xmlform/cases/cases_Scheduler_Log.xml
index 26ec4a638..d85af4241 100755
--- a/workflow/engine/xmlform/cases/cases_Scheduler_Log.xml
+++ b/workflow/engine/xmlform/cases/cases_Scheduler_Log.xml
@@ -1,39 +1,28 @@
-
-
-
-
-
-
-
-
-
-
-
- Date
-
-
-
- Time
-
-
-
- User
-
- Result
-
-
-
- Created Case Status
-
-
-
- Routed Case Status
-
-
-
- View
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_Scheduler_Log_Detail.xml b/workflow/engine/xmlform/cases/cases_Scheduler_Log_Detail.xml
index efc48b1eb..fd8804a55 100755
--- a/workflow/engine/xmlform/cases/cases_Scheduler_Log_Detail.xml
+++ b/workflow/engine/xmlform/cases/cases_Scheduler_Log_Detail.xml
@@ -1,38 +1,30 @@
-
-
- Scheduled Task ID
-
-
- Task ID
-
-
- Process Id
-
-
-
-
- User
-
-
-
- Execution Date
-
-
-
- Execution Hour
-
-
-
- Execution Status
-
-
-
- Created Case Status
-
-
-
- Routed Case Status
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_Scheduler_New.xml b/workflow/engine/xmlform/cases/cases_Scheduler_New.xml
index d86aa6fc0..6bd2f70f1 100755
--- a/workflow/engine/xmlform/cases/cases_Scheduler_New.xml
+++ b/workflow/engine/xmlform/cases/cases_Scheduler_New.xml
@@ -1,86 +1,62 @@
-
-
-
-
-
-General Information
-
-
-
-Enter the username and password of the user who will be assigned to the initial task in the case.
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-User Name
-
-
-Password
-
-
-
- Test User
-
-
- Edit User
-
-
-
-Properties
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-Task
-
-
-
-Name
-
-
-
-Perform this task
-
-
-
-
-
-
-
-
-
-
-Select the date and time for case(s) to be initiated.
-
-
-
-Execution time
-
-
-
-Select date
-
-
-
-Start date
-
-
-
- Daily
-
-
-
+
-
-
- Weekly
-
-
-
-Every
-
-
-
-Select the day(s) of the week below
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Monthly
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Of the month(s)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-End Date
-
-
-Repeat Task
-
-
-
-
-
-Execute every
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-Start a case based on following registered Plugin.
-
-
-
-Save
-
-
-
-Cancel
-
-
-
+
+
+
+
+
+
+
+
+
-
- Back to list
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_Scheduler_Options.xml b/workflow/engine/xmlform/cases/cases_Scheduler_Options.xml
index de1ad2ce1..f6d106c00 100755
--- a/workflow/engine/xmlform/cases/cases_Scheduler_Options.xml
+++ b/workflow/engine/xmlform/cases/cases_Scheduler_Options.xml
@@ -1,26 +1,18 @@
-
-
-
-
-
-
-
-
-
-
-
- New
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_TaskDetails.xml b/workflow/engine/xmlform/cases/cases_TaskDetails.xml
index 3d9cb9c8a..6e21bf066 100755
--- a/workflow/engine/xmlform/cases/cases_TaskDetails.xml
+++ b/workflow/engine/xmlform/cases/cases_TaskDetails.xml
@@ -1,28 +1,21 @@
-
-
- Title
-
-
-
- User
-
-
-
- Init Date
-
-
-
- Due date
-
-
-
- Finish date
-
-
-
- Duration
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_TaskInformation.xml b/workflow/engine/xmlform/cases/cases_TaskInformation.xml
index 948f1184d..8cd507320 100755
--- a/workflow/engine/xmlform/cases/cases_TaskInformation.xml
+++ b/workflow/engine/xmlform/cases/cases_TaskInformation.xml
@@ -1,29 +1,21 @@
-
-
-
- Title
-
-
-
- Description
-
-
-
- Init Date
-
-
-
- Due Date
-
-
-
- Finish date
-
-
-
- Duration
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_ToReassignByUserList.xml b/workflow/engine/xmlform/cases/cases_ToReassignByUserList.xml
index 216358cd9..945077485 100755
--- a/workflow/engine/xmlform/cases/cases_ToReassignByUserList.xml
+++ b/workflow/engine/xmlform/cases/cases_ToReassignByUserList.xml
@@ -1,46 +1,33 @@
-
-
-
-
-
-
- Case #
-
-
-
- Task
-
-
-
- Process
-
-
-
- Priority
-
-
-
- Init. date
-
-
-
- Due date
-
-
-
-
-
- Status
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ToReassignByUserList2.xml b/workflow/engine/xmlform/cases/cases_ToReassignByUserList2.xml
index 946ea3db3..1a699b455 100755
--- a/workflow/engine/xmlform/cases/cases_ToReassignByUserList2.xml
+++ b/workflow/engine/xmlform/cases/cases_ToReassignByUserList2.xml
@@ -1,39 +1,26 @@
-
-
-
-
- Case #
-
-
-
- Task
-
-
-
- Process
-
-
-
-
-
- Status
-
-
-
-
-
-
- Reassign to
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ToReviseInputdocsList.xml b/workflow/engine/xmlform/cases/cases_ToReviseInputdocsList.xml
index 1cd8648a1..bdcaf7208 100755
--- a/workflow/engine/xmlform/cases/cases_ToReviseInputdocsList.xml
+++ b/workflow/engine/xmlform/cases/cases_ToReviseInputdocsList.xml
@@ -1,42 +1,29 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
- Version
-
-
-
- Creator
-
-
-
- Comment
-
-
-
- Created Date
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_TransferHistory.xml b/workflow/engine/xmlform/cases/cases_TransferHistory.xml
index bd5d10c5d..5afcf042d 100755
--- a/workflow/engine/xmlform/cases/cases_TransferHistory.xml
+++ b/workflow/engine/xmlform/cases/cases_TransferHistory.xml
@@ -1,46 +1,34 @@
-
- Task
-
-
-
- Delegated User
-
-
-
- Delegated User
-
-
-
- Delegated User
-
-
-
- Task Transfer Date
-
-
-
- Start Date
-
-
-
- End Date
-
-
-
- Action
-
-
-
- Enable Action
-
-
-
- Disable Action
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+ Delegated User
+
+
+ Delegated User
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_UnpauseDateInput.xml b/workflow/engine/xmlform/cases/cases_UnpauseDateInput.xml
index 12608ee70..3e6c7e039 100755
--- a/workflow/engine/xmlform/cases/cases_UnpauseDateInput.xml
+++ b/workflow/engine/xmlform/cases/cases_UnpauseDateInput.xml
@@ -1,20 +1,15 @@
-
-
-
-
-
-
- ]]>
-
-
-
- Unpause date
-
-
-
- Pause
-
-
-
\ No newline at end of file
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument.xml b/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument.xml
index 7cba89ed5..476fe37ad 100755
--- a/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument.xml
@@ -1,32 +1,22 @@
-
-
-
-
-
-
- Filename
-
-
-
- Created Date
-
-
-
- Creator
-
-
-
- Origin Task
-
-
-
-
-
-
-
- File
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument1.xml b/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument1.xml
index 0200219f3..5a18214fc 100755
--- a/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument1.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument1.xml
@@ -1,49 +1,34 @@
-
-
-
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
- Created Date
-
-
-
- Creator
-
-
-
- Origin Task
-
-
-
-
-
-
-
-
-
- File
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument2.xml b/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument2.xml
index b5be5d0f8..36d0de296 100755
--- a/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument2.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument2.xml
@@ -1,45 +1,32 @@
-
-
-
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
- Created Date
-
-
-
- Creator
-
-
-
- Origin Task
-
-
-
-
-
- Comments
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument3.xml b/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument3.xml
index 7b3d16347..312e0bc5e 100755
--- a/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument3.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewAnyInputDocument3.xml
@@ -1,53 +1,37 @@
-
-
-
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
- Created Date
-
-
-
- Creator
-
-
-
- Origin Task
-
-
-
-
-
- Comments
-
-
-
-
-
-
-
- File
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewAnyOutputDocument.xml b/workflow/engine/xmlform/cases/cases_ViewAnyOutputDocument.xml
index 162227faf..1596bf112 100755
--- a/workflow/engine/xmlform/cases/cases_ViewAnyOutputDocument.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewAnyOutputDocument.xml
@@ -1,36 +1,24 @@
-
-
- Output document
-
-
-
-
-
- Create Date
-
-
-
-
-
-
-
-
-
- File (.doc)
-
-
-
- File (.pdf)
-
-
-
- Creator
-
-
-
- Origin Task
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewInputDocument1.xml b/workflow/engine/xmlform/cases/cases_ViewInputDocument1.xml
index 237a5f4b7..a85944bfc 100755
--- a/workflow/engine/xmlform/cases/cases_ViewInputDocument1.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewInputDocument1.xml
@@ -1,53 +1,37 @@
-
-<__DYNAFORM_OPTIONS type="xmlmenu" xmlfile="gulliver/dynaforms_Options">
-
-
-
-
-
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
- Created Date
-
-
-
- Creator
-
-
-
-
-
-
-
-
-
- File
-
-
-
- Back
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewInputDocument2.xml b/workflow/engine/xmlform/cases/cases_ViewInputDocument2.xml
index d6d49502e..060c68f61 100755
--- a/workflow/engine/xmlform/cases/cases_ViewInputDocument2.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewInputDocument2.xml
@@ -1,49 +1,35 @@
-
-<__DYNAFORM_OPTIONS type="xmlmenu" xmlfile="gulliver/dynaforms_Options">
-
-
-
-
-
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
- Created Date
-
-
-
- Creator
-
-
-
-
-
- Comments
-
-
-
- Back
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewInputDocument3.xml b/workflow/engine/xmlform/cases/cases_ViewInputDocument3.xml
index da6b9e8aa..60243f1aa 100755
--- a/workflow/engine/xmlform/cases/cases_ViewInputDocument3.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewInputDocument3.xml
@@ -1,57 +1,40 @@
-
-<__DYNAFORM_OPTIONS type="xmlmenu" xmlfile="gulliver/dynaforms_Options">
-
-
-
-
-
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
- Created Date
-
-
-
- Creator
-
-
-
-
-
- Comments
-
-
-
-
-
-
-
- File
-
-
-
- Back
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewInputDocumentToRevise.xml b/workflow/engine/xmlform/cases/cases_ViewInputDocumentToRevise.xml
index 75933f95a..9342b0776 100755
--- a/workflow/engine/xmlform/cases/cases_ViewInputDocumentToRevise.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewInputDocumentToRevise.xml
@@ -1,52 +1,37 @@
-
-
-
-
-
-
-
-
-
- Title
-
-
-
- Comment
-
-
-
- Type
-
-
-
- Format
-
-
-
- Created Date
-
-
-
- Creator
-
-
-
-
-
-
-
-
-
- File
-
-
-
- Back
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
var back = function()
@@ -55,5 +40,4 @@ var back = function()
};
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewOutputDocument1.xml b/workflow/engine/xmlform/cases/cases_ViewOutputDocument1.xml
index f66ee94c3..2914ecc32 100755
--- a/workflow/engine/xmlform/cases/cases_ViewOutputDocument1.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewOutputDocument1.xml
@@ -1,48 +1,35 @@
-
-<__DYNAFORM_OPTIONS type="xmlmenu" xmlfile="gulliver/dynaforms_Options">
-
-
-
-
- Output document
-
-
-
- Description
-
-
-
- Create Date
-
-
-
-
-
-
-
-
-
-
-
- File (.doc)
-
-
-
- File (.pdf)
-
-
-
- Next step
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewOutputDocument2.xml b/workflow/engine/xmlform/cases/cases_ViewOutputDocument2.xml
index b0c48df75..669cf2ff4 100755
--- a/workflow/engine/xmlform/cases/cases_ViewOutputDocument2.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewOutputDocument2.xml
@@ -1,44 +1,32 @@
-
-<__DYNAFORM_OPTIONS type="xmlmenu" xmlfile="gulliver/dynaforms_Options">
-
-
-
-
- Output document
-
-
-
- Description
-
-
-
- Create Date
-
-
-
-
-
-
-
-
-
-
-
- File (.doc)
-
-
-
- Next step
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewOutputDocument3.xml b/workflow/engine/xmlform/cases/cases_ViewOutputDocument3.xml
index 4dfde66e0..f9d6d5352 100755
--- a/workflow/engine/xmlform/cases/cases_ViewOutputDocument3.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewOutputDocument3.xml
@@ -1,44 +1,32 @@
-
-<__DYNAFORM_OPTIONS type="xmlmenu" xmlfile="gulliver/dynaforms_Options">
-
-
-
-
- Output document
-
-
-
- Description
-
-
-
- Create Date
-
-
-
-
-
-
-
-
-
-
-
- File (.pdf)
-
-
-
- Next step
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_ViewOutputDocumentToRevise.xml b/workflow/engine/xmlform/cases/cases_ViewOutputDocumentToRevise.xml
index 786b59b6d..f278745b5 100755
--- a/workflow/engine/xmlform/cases/cases_ViewOutputDocumentToRevise.xml
+++ b/workflow/engine/xmlform/cases/cases_ViewOutputDocumentToRevise.xml
@@ -1,37 +1,27 @@
-
-
- Output document
-
-
-
- Description
-
-
-
- Create Date
-
-
-
-
-
-
-
-
-
-
- File (.doc)
-
-
-
- File (.pdf)
-
-
-
- Back
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_advancedSearch.xml b/workflow/engine/xmlform/cases/cases_advancedSearch.xml
index 5aa5e6b89..7e94c737f 100755
--- a/workflow/engine/xmlform/cases/cases_advancedSearch.xml
+++ b/workflow/engine/xmlform/cases/cases_advancedSearch.xml
@@ -1,73 +1,77 @@
-
-
-
-
-
-
- #
-##
-
-
- Case
-CasoCaso
-
-
- Task
-TareaTarefa
-
-
- Process
-ProcesoProcesso
-
-
- Current User
-Usuario Actual
-
-
- Sent by
-Enviado porEnviado por
-
-
- Due Date
-Fecha de vencimientoData-limite
-
-
- Last Modification
-
-
-
- Start Date
-Fechas inicial del casoData Inicial
-
-
- Finish Date
-Fecha finalData Final
-
-
-
- Status
-EstadoEstado
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-Aplicar FiltroAplicar Filtro
-
-
-
-
+
+
+
+
+
+
+ #
+ #
+
+
+
+ Caso
+ Caso
+
+
+
+ Tarea
+ Tarefa
+
+
+
+ Proceso
+ Processo
+
+
+
+ Usuario Actual
+
+
+
+
+ Enviado por
+ Enviado por
+
+
+
+ Fecha de vencimiento
+ Data-limite
+
+
+
+
+
+
+
+
+ Fechas inicial del caso
+ Data Inicial
+
+
+
+ Fecha final
+ Data Final
+
+
+
+ Estado
+ Estado
+
+
+
+
+
+
+
+ Aplicar Filtro
+ Aplicar Filtro
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/cases/cases_advancedSearchFilter.xml b/workflow/engine/xmlform/cases/cases_advancedSearchFilter.xml
index 7fb8dbb9b..8c1a6682e 100755
--- a/workflow/engine/xmlform/cases/cases_advancedSearchFilter.xml
+++ b/workflow/engine/xmlform/cases/cases_advancedSearchFilter.xml
@@ -1,51 +1,37 @@
-
-
- Case Number
-
-
-
+
+
+ Process
-
-
-
+ Tasks
-
-
-
+ Current User
-
-
-
+ Sent by
-
-
-
- From
-
-
-
- To
-
-
-
- Status
-
-
-
- Filter
-
-
-
\ No newline at end of file
+ ]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/dbConnections/dbConnections.xml b/workflow/engine/xmlform/dbConnections/dbConnections.xml
index 667db3865..c93bfcede 100755
--- a/workflow/engine/xmlform/dbConnections/dbConnections.xml
+++ b/workflow/engine/xmlform/dbConnections/dbConnections.xml
@@ -1,46 +1,33 @@
-
-
-
-
-
-
- Type
-
-
-
- Server
-
-
-
- Database Name
-
-
-
- Description
-
-
-
- Edit
-
-
-
- Delete
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter(form) {
@#PAGED_TABLE_ID.doFilter(form);
}
-
diff --git a/workflow/engine/xmlform/dbConnections/dbConnections_Edit.xml b/workflow/engine/xmlform/dbConnections/dbConnections_Edit.xml
index f3452d507..956d1cc96 100755
--- a/workflow/engine/xmlform/dbConnections/dbConnections_Edit.xml
+++ b/workflow/engine/xmlform/dbConnections/dbConnections_Edit.xml
@@ -1,57 +1,44 @@
-
-
-
- UID
-
-
-
+
+
+
+
+
SELECT * FROM BDCONNECTIONS
- Engine
+
-
-
- Encode
-
-
-
- Server
-
-
-
- Database Name
-
-
-
- Username
-
-
-
- Password
-
-
-
- Port
-
-
-
- Description
-
-
-
- Test Connection
-
-
-
- Save
-
-
-
- Cancel
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dbConnections/dbConnections_New.xml b/workflow/engine/xmlform/dbConnections/dbConnections_New.xml
index 7a2939afa..e63c278aa 100755
--- a/workflow/engine/xmlform/dbConnections/dbConnections_New.xml
+++ b/workflow/engine/xmlform/dbConnections/dbConnections_New.xml
@@ -1,56 +1,42 @@
-
-
-
-
-
-
+
+
+
SELECT * FROM BDCONNECTIONS
- Engine
+
-
-
- Encode
-
-
-
- Server
-
-
-
- Database Name
-
-
-
- Username
-
-
-
- Password
-
-
-
- Port
-
-
-
- Description
-
-
-
- Test Connection
-
-
-
- Create
-
-
-
- Cancel
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dbConnections/dbConnections_Options.xml b/workflow/engine/xmlform/dbConnections/dbConnections_Options.xml
index c3778a9eb..ac7e1f3d4 100755
--- a/workflow/engine/xmlform/dbConnections/dbConnections_Options.xml
+++ b/workflow/engine/xmlform/dbConnections/dbConnections_Options.xml
@@ -1,17 +1,13 @@
-
-
-
-
- New
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/departments/departments_AddUnAssignedUsers.xml b/workflow/engine/xmlform/departments/departments_AddUnAssignedUsers.xml
index c412a4e6e..287b5d9b7 100755
--- a/workflow/engine/xmlform/departments/departments_AddUnAssignedUsers.xml
+++ b/workflow/engine/xmlform/departments/departments_AddUnAssignedUsers.xml
@@ -1,43 +1,30 @@
-
-
-
-
-
-
-
-
-
-
- Firstname
-
-
-
- Lastname
-
-
-
-
-
-
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/departments/departments_AvailableUsers.xml b/workflow/engine/xmlform/departments/departments_AvailableUsers.xml
index 362ba74a6..b6c74c3bc 100755
--- a/workflow/engine/xmlform/departments/departments_AvailableUsers.xml
+++ b/workflow/engine/xmlform/departments/departments_AvailableUsers.xml
@@ -1,25 +1,18 @@
-
-
-
-
-
-
- Firstname
-
-
-
- Lastname
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/departments/departments_Edit.xml b/workflow/engine/xmlform/departments/departments_Edit.xml
index 6dc4d252a..44e7bb334 100755
--- a/workflow/engine/xmlform/departments/departments_Edit.xml
+++ b/workflow/engine/xmlform/departments/departments_Edit.xml
@@ -1,88 +1,69 @@
-
-
-
- Department Information
-
-
-
-
-
-
- Name
-
-
-
- Status
-
-
-
-
-
-
-SELECT USR_UID, USR_USERNAME from USERS where DEP_UID = "@#DEP_UID"
- Manager/Supervisor
-
-
-
-
-
-
- var sGroupname;
- sGroupname = document.forms[0].elements['form[DEPO_TITLE]'].value;
-
-var verifyDptoname = function()
-{
- document.forms[0].elements['form[DEPO_TITLE]'].disabled = true;
- document.forms[0].elements['form[button]'].disabled = true;
- var oRPC = new leimnud.module.rpc.xmlhttp({
- url :'departments_Ajax',
- async : false,
- method :'POST',
- args :'action=verifyDptoname&sOriginalGroupname=' + sGroupname + '&sGroupname=' + encodeURIComponent(this.value)});
- oRPC.make();
- var sResponse = oRPC.xmlhttp.responseText;
- document.forms[0].elements['form[DEPO_TITLE]'].disabled = false;
- if (sResponse == '1')
- {
- new leimnud.module.app.alert().make({
- label: G_STRINGS.ID_MSJ_DEPTO
- });
- document.forms[0].elements['form[DEPO_TITLE]'].focus();
- }
- else
- {
- document.forms[0].elements['form[button]'].disabled = false;
- }
-};
-
-var validateLocalFields = function(oForm)
-{ oAux1 = oForm.elements['form[DEPO_TITLE]'];
- if (oAux1.value == '')
- {
- new leimnud.module.app.alert().make({
- label:G_STRINGS.DBCONNECTIONS_ALERT
- });
- oAux1.focus();
- bContinue = false;
- return false;
- }
- else{
- savedeptomain(oForm);
- }
-
-}
-
-leimnud.event.add(document.forms[0].elements['form[DEPO_TITLE]'],'change',verifyDptoname);
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+SELECT USR_UID, USR_USERNAME from USERS where DEP_UID = "@#DEP_UID"
+
+
+
+
+ var sGroupname;
+ sGroupname = document.forms[0].elements['form[DEPO_TITLE]'].value;
+
+var verifyDptoname = function()
+{
+ document.forms[0].elements['form[DEPO_TITLE]'].disabled = true;
+ document.forms[0].elements['form[button]'].disabled = true;
+ var oRPC = new leimnud.module.rpc.xmlhttp({
+ url :'departments_Ajax',
+ async : false,
+ method :'POST',
+ args :'action=verifyDptoname&sOriginalGroupname=' + sGroupname + '&sGroupname=' + encodeURIComponent(this.value)});
+ oRPC.make();
+ var sResponse = oRPC.xmlhttp.responseText;
+ document.forms[0].elements['form[DEPO_TITLE]'].disabled = false;
+ if (sResponse == '1')
+ {
+ new leimnud.module.app.alert().make({
+ label: G_STRINGS.ID_MSJ_DEPTO
+ });
+ document.forms[0].elements['form[DEPO_TITLE]'].focus();
+ }
+ else
+ {
+ document.forms[0].elements['form[button]'].disabled = false;
+ }
+};
+
+var validateLocalFields = function(oForm)
+{ oAux1 = oForm.elements['form[DEPO_TITLE]'];
+ if (oAux1.value == '')
+ {
+ new leimnud.module.app.alert().make({
+ label:G_STRINGS.DBCONNECTIONS_ALERT
+ });
+ oAux1.focus();
+ bContinue = false;
+ return false;
+ }
+ else{
+ savedeptomain(oForm);
+ }
+
+}
+
+leimnud.event.add(document.forms[0].elements['form[DEPO_TITLE]'],'change',verifyDptoname);
+
+
diff --git a/workflow/engine/xmlform/departments/departments_New.xml b/workflow/engine/xmlform/departments/departments_New.xml
index 265c7f19a..01a14502f 100755
--- a/workflow/engine/xmlform/departments/departments_New.xml
+++ b/workflow/engine/xmlform/departments/departments_New.xml
@@ -1,94 +1,82 @@
-
-
-
-
- Department Information
-
-
-
-
-
-
- Department Name
-
-
-
- Cancel
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/departments/departments_Options.xml b/workflow/engine/xmlform/departments/departments_Options.xml
index ddfb8a50d..3ac3960b8 100755
--- a/workflow/engine/xmlform/departments/departments_Options.xml
+++ b/workflow/engine/xmlform/departments/departments_Options.xml
@@ -1,12 +1,8 @@
-
-
-
-
-
-
- Assign user
-
-
-
\ No newline at end of file
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/departments/departments_SubNew.xml b/workflow/engine/xmlform/departments/departments_SubNew.xml
index c0d7b0c48..d7ac5bd42 100755
--- a/workflow/engine/xmlform/departments/departments_SubNew.xml
+++ b/workflow/engine/xmlform/departments/departments_SubNew.xml
@@ -1,25 +1,25 @@
- Department Information
+
select CON_VALUE, CON_VALUE FROM CONTENT WHERE CON_ID= '@#DEP_PARENT'
- Parent Department
+
- Department Name
+
- Cancel
+
diff --git a/workflow/engine/xmlform/departments/departments_UsersList.xml b/workflow/engine/xmlform/departments/departments_UsersList.xml
index 3724a756d..d86caeb4d 100755
--- a/workflow/engine/xmlform/departments/departments_UsersList.xml
+++ b/workflow/engine/xmlform/departments/departments_UsersList.xml
@@ -1,26 +1,19 @@
-
-
-
-
-
- Username
-
-
-
- User
-
-
-
- Manager
-
-
-
- Reports To
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/datemask.xml b/workflow/engine/xmlform/dynaforms/datemask.xml
index 7ebb53372..90727be04 100755
--- a/workflow/engine/xmlform/dynaforms/datemask.xml
+++ b/workflow/engine/xmlform/dynaforms/datemask.xml
@@ -1,11 +1,11 @@
-
-
-Options Mask
-
-
-
+
+
+
+
+ %A — full weekday name
%b — abbreviated month name
%B — full month name
@@ -32,6 +32,5 @@
%y — year without the century (range 00 to 99)
%Y — year with the century
%% — a literal '%' character]]>
-
-
-
\ No newline at end of file
+
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaform_Fields.xml b/workflow/engine/xmlform/dynaforms/dynaform_Fields.xml
index 15163b237..26180a284 100755
--- a/workflow/engine/xmlform/dynaforms/dynaform_Fields.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaform_Fields.xml
@@ -1,22 +1,18 @@
-
-
-
- Field
-
-
-
- Type
-
-
-
-
- Apply Filter
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_AssignVariables.xml b/workflow/engine/xmlform/dynaforms/dynaforms_AssignVariables.xml
index 937a871e3..bb6a423cb 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_AssignVariables.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_AssignVariables.xml
@@ -1,30 +1,24 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Save
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+]]>
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_AssignVariablesGrid.xml b/workflow/engine/xmlform/dynaforms/dynaforms_AssignVariablesGrid.xml
index 60beb36a9..02abe6ed4 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_AssignVariablesGrid.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_AssignVariablesGrid.xml
@@ -1,13 +1,9 @@
-
-
-
- Primary Key
-
-
-
- Variables
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_AvailableSupervisorDynaforms.xml b/workflow/engine/xmlform/dynaforms/dynaforms_AvailableSupervisorDynaforms.xml
index 1c1531b7f..9ea1acdfe 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_AvailableSupervisorDynaforms.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_AvailableSupervisorDynaforms.xml
@@ -1,27 +1,18 @@
-
-
-
-
-
-
- Title
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_ChoseType.xml b/workflow/engine/xmlform/dynaforms/dynaforms_ChoseType.xml
index 809f0da74..5c9706ea3 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_ChoseType.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_ChoseType.xml
@@ -1,63 +1,45 @@
-
-
-
-
-
-
-
- Please select the Dynaform Type
-
-
-
- Type
-
-
-
-
-
-
-
- Cancel
-
-
-
- Select
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHide.xml b/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHide.xml
index db04cbe6f..3b1046876 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHide.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHide.xml
@@ -4,114 +4,93 @@
-
- Conditions Editor
+
-
- Function
+
-
- Applying the function fields
+
-
- Selected fields
+
-
- Condition
+
-
-
- /
+
+
-
- (
+
+
-
- )
+
+
-
- AND
+
+
-
-
-
- *
+
+
-
+
-
+
]]>
-
- OR
+
+
-
-
- -
+
+
-
+
-
+
=]]>
-
- NOT
+
+
-
-
- +
+
+
-
- ==
+
+
-
- !=
+
+
- @#
+
-
-
-
- On load event
+
-
- On change event
+
-
- Field event owner
+
-
- Selected field event owner
+
-
- Enabled
+
-
- Test condition
+
-
- Cancel
-
-
+
+
- Save
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideList.xml b/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideList.xml
index a46fd6e42..a77eff255 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideList.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideList.xml
@@ -1,36 +1,31 @@
-
-
-
- #
-
-
- Function
-
-
- Fields
-
-
- Condition
-
-
- Events
-
-
- Event Owner
-
-
-
- Enabled
-
-
-
- Edit
-
-
-
- Delete
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideOptions.xml b/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideOptions.xml
index 49da30e2a..702c44542 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideOptions.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideOptions.xml
@@ -1,12 +1,11 @@
-
- New
+
+
-
oConditional = new Conditional(@@DYN_UID);
//oConditional.showID();
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideTest.xml b/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideTest.xml
index ac5e60524..7ae9856c2 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideTest.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideTest.xml
@@ -1,17 +1,15 @@
- Test values for DynaForm fields
+
-
- Save values
+
-
oConditional.populateTestConditionSetup();
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideTestGrid.xml b/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideTestGrid.xml
index 89a245de2..3eb7308a1 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideTestGrid.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_ConditionalShowHideTestGrid.xml
@@ -1,13 +1,10 @@
-
- Field name
+
-
- Value
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_Edit.xml b/workflow/engine/xmlform/dynaforms/dynaforms_Edit.xml
index d36b63ec2..65a551ebe 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_Edit.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_Edit.xml
@@ -1,267 +1,220 @@
-
-
-
-
-
-
-
-
- Dynaform Information
-
-
-
- SELECT * FROM ADDITIONAL_TABLES
- Create from a PM Table
-
-
-
- Title
-
-
-
- Type
-
-
-
-
-
-
- Description
-
-
-
- Save
-
-
-
- Save
-
-
-
-
-
-
-
- Cancel
-
-
-
-
-
-
-
- Process
-
-
-
-
-
-
- Showing forms of type
-
-
-
-
-
-
-
-
-
- Dynaform to copy/import
-
-
-
-
-
- Title of the new dynaform
-
-
-
-
-
- Description of the new dynaform
-
-
-
-
-
-
-
-
-
-
-
- Cancel
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+ SELECT * FROM ADDITIONAL_TABLES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_HtmlEditor.xml b/workflow/engine/xmlform/dynaforms/dynaforms_HtmlEditor.xml
index f6d675450..7699960fa 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_HtmlEditor.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_HtmlEditor.xml
@@ -1,35 +1,26 @@
-
-
-
-
-
-
- Enable HTML Editing
-
-
-
-Restore Original HTML
-
-
-
-
-
-
-
-HTML View
-
-
-
-
-
-
-
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_JSEditor.xml b/workflow/engine/xmlform/dynaforms/dynaforms_JSEditor.xml
index 58f7bbe50..7f76fea44 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_JSEditor.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_JSEditor.xml
@@ -1,49 +1,39 @@
-
-
-
-
-
-There is no javascript code
-
-
-
-SELECT XMLNODE_NAME AS UID, XMLNODE_NAME AS NAME FROM dynaForm WHERE TYPE = "javascript"
- Section
-
-
-
- Code
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+SELECT XMLNODE_NAME AS UID, XMLNODE_NAME AS NAME FROM dynaForm WHERE TYPE = "javascript"
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_List.xml b/workflow/engine/xmlform/dynaforms/dynaforms_List.xml
index b881bdce4..2f8a3de0d 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_List.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_List.xml
@@ -1,34 +1,28 @@
-
-
-
-
-
-
-
- Dynaform
-
-
-
- Type
-
-
-
- Description
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_Options.xml b/workflow/engine/xmlform/dynaforms/dynaforms_Options.xml
index fd0791527..d128962ad 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_Options.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_Options.xml
@@ -1,28 +1,18 @@
-
-
- New
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
-
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_Properties.xml b/workflow/engine/xmlform/dynaforms/dynaforms_Properties.xml
index dc853e461..d36a612d9 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_Properties.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_Properties.xml
@@ -1,80 +1,50 @@
-
-
-
- Properties
-
-
-
-
-
-
-
-
- Dynaform
-
-
-
- Type
-
-
-
-
-
-
- Description
-
-
-
- Others
-
-
-
- Width
-
-
-
- Mode
-
-
-
-
-
-
-
- Next Step Link
-
-
-
-
-
-
-
-Show print dynaform button
-
-
-
- Adjust the grid width to the width of the main form
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- Apply
-
-
- Revert
-
-
-
-
-
+
+
+
+
+
+
-
-
+]]>
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_Saveas.xml b/workflow/engine/xmlform/dynaforms/dynaforms_Saveas.xml
index 7665f9eb6..0e8af3f80 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_Saveas.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_Saveas.xml
@@ -1,33 +1,25 @@
-
-
-
-
-
-
- Dynaform Information
-
-
-
- Title
-
-
-
- Description
-
-
-
- Cancel
-
-
-
- Save
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_ShortList.xml b/workflow/engine/xmlform/dynaforms/dynaforms_ShortList.xml
index db81a1f98..2a8e463cb 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_ShortList.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_ShortList.xml
@@ -1,34 +1,25 @@
-
-
-
-
-
- Title
-
-
-
- Type
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_Supervisor.xml b/workflow/engine/xmlform/dynaforms/dynaforms_Supervisor.xml
index 9485be375..a27e26669 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_Supervisor.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_Supervisor.xml
@@ -1,31 +1,20 @@
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_SupervisorOptions.xml b/workflow/engine/xmlform/dynaforms/dynaforms_SupervisorOptions.xml
index c22bc435f..e6c285fbf 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_SupervisorOptions.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_SupervisorOptions.xml
@@ -1,22 +1,17 @@
-
-
-
-
- Assign
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_WebEntry.xml b/workflow/engine/xmlform/dynaforms/dynaforms_WebEntry.xml
index 787bdb7a9..289f9dab5 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_WebEntry.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_WebEntry.xml
@@ -1,61 +1,48 @@
-
-
-
-
- Properties
-
-
-
+
+
+
+
+ Initial Task
-
-
-
+ Initial Dynaform
-
-
-
- Method
-
-
-
- Input Documents Access
-
-
-
-
-
-
- Web Service User
-
-
- Web Service Passsword
-
-
-
- Cyclical Assignment
-
-
-
- Test Configuration
-
-
-
- Generate Web Entry Page
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_WebEntryList.xml b/workflow/engine/xmlform/dynaforms/dynaforms_WebEntryList.xml
index 667dd5cfd..4ca95f5bd 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_WebEntryList.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_WebEntryList.xml
@@ -1,15 +1,11 @@
-
-
-
-
-
-
-
-
-
- Delete
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_WebEntryOptions.xml b/workflow/engine/xmlform/dynaforms/dynaforms_WebEntryOptions.xml
index 787754689..0adad2f1d 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_WebEntryOptions.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_WebEntryOptions.xml
@@ -1,78 +1,74 @@
+
+
+
+
+
+var oPanel;
+var webEntry_new = function(sProcessUID) {
+ oPanel = new leimnud.module.panel();
+ oPanel.options = {
+ size :{w:500,h:400},
+ position:{x:0,y:0,center:true},
+ title :G_STRINGS.ID_WEB_ENTRY,
+ theme :'processmaker',
+ statusBar:false,
+ control :{resize:false,roll:false},
+ fx :{modal:true,opacity:true,blinkToFront:false,fadeIn:false,drag:false}
+ };
+ oPanel.events = {
+ remove: function() { delete(oPanel); }.extend(this)
+ };
+ oPanel.make();
+ oPanel.loader.show();
+
+ var oRPC = new leimnud.module.rpc.xmlhttp({
+ url : '../processes/processes_Ajax',
+ args:"action=webEntry_new&data="+{
+ PRO_UID :sProcessUID
+ }.toJSONString()
+ });
+
+ oRPC.callback = function(rpc) {
+ oPanel.loader.hide();
+ oPanel.addContent(rpc.xmlhttp.responseText);
+ var scs = rpc.xmlhttp.responseText.extractScript();
+ scs.evalScript();
+ }.extend(this);
+ oRPC.make();
+};
-
- New
-
-
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_XmlEditor.xml b/workflow/engine/xmlform/dynaforms/dynaforms_XmlEditor.xml
index abe89f60a..f4627ebe6 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_XmlEditor.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_XmlEditor.xml
@@ -1,12 +1,10 @@
-
-
-
-
-XML
-
-
+
+
+
+
-
+
diff --git a/workflow/engine/xmlform/dynaforms/dynaforms_vars.xml b/workflow/engine/xmlform/dynaforms/dynaforms_vars.xml
index 08c35460a..4646329eb 100755
--- a/workflow/engine/xmlform/dynaforms/dynaforms_vars.xml
+++ b/workflow/engine/xmlform/dynaforms/dynaforms_vars.xml
@@ -1,10 +1,10 @@
-
-
-
-
- SELECT * FROM DYNAFIELDS
-
-
-
\ No newline at end of file
+
+
+
+
+ SELECT * FROM DYNAFIELDS
+
+
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/_options.xml b/workflow/engine/xmlform/dynaforms/fields/_options.xml
index 7a3848434..3ad64e2e3 100755
--- a/workflow/engine/xmlform/dynaforms/fields/_options.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/_options.xml
@@ -1,10 +1,9 @@
-
- Value
-
-
+
+
+
+
-
diff --git a/workflow/engine/xmlform/dynaforms/fields/_optionsOptGroup.xml b/workflow/engine/xmlform/dynaforms/fields/_optionsOptGroup.xml
index 0e10ec5e0..881608874 100644
--- a/workflow/engine/xmlform/dynaforms/fields/_optionsOptGroup.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/_optionsOptGroup.xml
@@ -1,13 +1,12 @@
-
- Value
-
-
-
+
+
+
+
+
-
diff --git a/workflow/engine/xmlform/dynaforms/fields/button.xml b/workflow/engine/xmlform/dynaforms/fields/button.xml
index 9f1b35cde..e25f9e8ab 100755
--- a/workflow/engine/xmlform/dynaforms/fields/button.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/button.xml
@@ -1,36 +1,30 @@
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
-
- JavaScript to Execute
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/checkbox.xml b/workflow/engine/xmlform/dynaforms/fields/checkbox.xml
index 935e8d2b3..a3aa6538a 100755
--- a/workflow/engine/xmlform/dynaforms/fields/checkbox.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/checkbox.xml
@@ -1,74 +1,64 @@
-
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
-SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
-
- Label
-
-
-
- Behaviour
-
-
-
- Value
-
-
- Value if not checked
-
-
- Default Value
-
-
- Read Only
-
-
- Hint
-
-
-
- Appearance
-
-
-
-
- Label on the right side
-
-
- Enable Html
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/checkgroup.xml b/workflow/engine/xmlform/dynaforms/fields/checkgroup.xml
index 192660132..3e61708a0 100755
--- a/workflow/engine/xmlform/dynaforms/fields/checkgroup.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/checkgroup.xml
@@ -1,73 +1,56 @@
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Behaviour
-
-
-
- Default Value
-
-
- Hint
-
-
- Appearance
-
-
-
-
- Mode
-
-
-
-
-
- Data
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sql Connection
-
-
-
-
- Sql
-
-
-
- Options
-
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/currency.xml b/workflow/engine/xmlform/dynaforms/fields/currency.xml
index f23a0faee..47b602d46 100755
--- a/workflow/engine/xmlform/dynaforms/fields/currency.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/currency.xml
@@ -1,102 +1,88 @@
-
-
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Behaviour
-
-
-
- Currency
-
-
- Validate
-
-
- Decimal Separator
-
-
- Mask
-
-
- Required
-
-
- Read Only
-
-
- Default Value
-
-
-
- Hint
-
-
-
- Appearance
-
-
-
- Size
-
-
-
-
- Mode
-
-
-
- Operations
-
-
- Formula
-
-
- Function
-
-
-
- Data
-
-
+ Currency
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sql Connection
-
-
- Sql
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Type of date range
-
-
-
-
-
-
- Start and End Dates
-
-
-
- Start Date
-
-
-
- End Date
-
-
-
- Relative Start and End Dates
-
-
-
- Data Codes: A number followed by a letter to indicate the unit of time (d=day m=month y=year).
Use negative numbers for past dates and positive numbers for future dates
NOTE. When these relative dates are set have the priority, leave empty to use Start and End dates.]]>
-
-
-
- Start Relative Date
-
-
-
- End Relative Date
-
-
-
- Mask: %Y=Year, %m=Month, %d=Day]]>
-
-
-
-
-
- Mask
-
-
-
- Behaviour
-
-
-
- Editable
-
-
- Required
-
-
- Read Only
-
-
- Show time
-
-
-
- Default
-
-
-
-
-
-
-
- Hint
-
-
-
- Appearance
-
-
-
- Size
-
-
-
-
- Mode
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Data Codes: A number followed by a letter to indicate the unit of time (d=day m=month y=year).
Use negative numbers for past dates and positive numbers for future dates
NOTE. When these relative dates are set have the priority, leave empty to use Start and End dates.]]>
+
+
+
+
+
+
+
+
+ Mask: %Y=Year, %m=Month, %d=Day]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/dropdown.xml b/workflow/engine/xmlform/dynaforms/fields/dropdown.xml
index c89b20177..e85483ecc 100755
--- a/workflow/engine/xmlform/dynaforms/fields/dropdown.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/dropdown.xml
@@ -1,90 +1,72 @@
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Behaviour
-
-
-
- Required
-
-
- Read Only
-
-
- Include Option Group
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @@PME_XMLNODE_NAME AND XMLNODE_NAME <> "" AND ( TYPE="text" or TYPE="textarea" or TYPE="dropdown" or TYPE="listbox" or TYPE="hidden" )
- ]]>Dependent Fields
-
-
- Default Value
-
-
-
-
- Hint
-
-
-
- Appearance
-
-
-
-
-
- Mode
-
-
-
-
- Data
-
-
+
+
+
+
+
+
+
+
+
+
+
+ Sql Connection
-
-
-
- Sql
-
-
-
- Options
-
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
diff --git a/workflow/engine/xmlform/dynaforms/fields/file.xml b/workflow/engine/xmlform/dynaforms/fields/file.xml
index c067da16a..6e1cda0bc 100755
--- a/workflow/engine/xmlform/dynaforms/fields/file.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/file.xml
@@ -1,56 +1,43 @@
-
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
+
+
+ Input
-
-
-
-
-
-
-
-
- Behaviour
-
-
- Required
-
-
- Hint
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/grid.xml b/workflow/engine/xmlform/dynaforms/fields/grid.xml
index a9ba70711..530646b66 100755
--- a/workflow/engine/xmlform/dynaforms/fields/grid.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/grid.xml
@@ -1,41 +1,34 @@
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-Grid
-
-
-
- Add new rows
-
-
-
- Delete rows
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/hidden.xml b/workflow/engine/xmlform/dynaforms/fields/hidden.xml
index bf6393e6e..a5e7b6c07 100755
--- a/workflow/engine/xmlform/dynaforms/fields/hidden.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/hidden.xml
@@ -1,50 +1,39 @@
-
-
-
-
-
- Properties
-
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Default Value
-
-
-
+
+
+
+
-
-
- Data
-
-
-
+
+
+ Sql Connection
-
-
-
- Sql
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/javascript.xml b/workflow/engine/xmlform/dynaforms/fields/javascript.xml
index a7e4e98bd..401e00e0a 100755
--- a/workflow/engine/xmlform/dynaforms/fields/javascript.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/javascript.xml
@@ -1,32 +1,28 @@
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Code
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
-
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/listbox.xml b/workflow/engine/xmlform/dynaforms/fields/listbox.xml
index da364422b..a4166dfc2 100755
--- a/workflow/engine/xmlform/dynaforms/fields/listbox.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/listbox.xml
@@ -1,82 +1,62 @@
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Behaviour
-
-
-
- Required
-
-
- Default Value
-
-
-
- Hint
-
-
-
- Appearance
-
-
-
- Size
-
-
-
-
- Mode
-
-
-
-
-
- Data
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sql Connection
-
-
-
- Sql
-
-
-
- Options
-
-
-
-
-
- Cancel
-
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/password.xml b/workflow/engine/xmlform/dynaforms/fields/password.xml
index c64956718..086868943 100755
--- a/workflow/engine/xmlform/dynaforms/fields/password.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/password.xml
@@ -1,66 +1,54 @@
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Behaviour
-
-
-
- Max. Length
-
-
- Required
-
-
- Autocomplete
-
-
-
- Read Only
-
-
-
- Hint
-
-
- Appearance
-
-
-
-
- Size
-
-
-
-
- Mode
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/percentage.xml b/workflow/engine/xmlform/dynaforms/fields/percentage.xml
index 9b0c0687b..ef74c4ea9 100755
--- a/workflow/engine/xmlform/dynaforms/fields/percentage.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/percentage.xml
@@ -1,106 +1,85 @@
-
-
-
-
-
-
- Properties
-
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Behaviour
-
-
-
- Validate
-
-
- Decimal Separator
-
-
-
- Mask
-
-
-
- Required
-
-
-
- Read Only
-
-
- Default Value
-
-
-
- Hint
-
-
-
- Appearance
-
-
-
-
- Size
-
-
-
-
- Mode
-
-
-
- Operations
-
-
- Formula
-
-
- Function
-
-
-
- Data
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sql Connection
-
-
-
- Sql
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/radiogroup.xml b/workflow/engine/xmlform/dynaforms/fields/radiogroup.xml
index 0dc974959..24a6ad1a8 100755
--- a/workflow/engine/xmlform/dynaforms/fields/radiogroup.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/radiogroup.xml
@@ -1,76 +1,59 @@
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Behaviour
-
-
-
- Required
-
-
- Default Value
-
-
- Hint
-
-
- Appearance
-
-
-
-
-
- Mode
-
-
-
-
-
- Data
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sql Connection
-
-
-
- Sql
-
-
-
- Options
-
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/radiogroupview.xml b/workflow/engine/xmlform/dynaforms/fields/radiogroupview.xml
index cddc03e68..acd9240db 100755
--- a/workflow/engine/xmlform/dynaforms/fields/radiogroupview.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/radiogroupview.xml
@@ -1,38 +1,30 @@
-
-
-
- Field name
-
-
-
-
-
- Required
-
-
- Default Value
-
-
-
- Appearance
-
-
-
-
- EnableHtml
-
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/reset.xml b/workflow/engine/xmlform/dynaforms/fields/reset.xml
index 86a5b30e6..c9cf59de7 100755
--- a/workflow/engine/xmlform/dynaforms/fields/reset.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/reset.xml
@@ -1,32 +1,27 @@
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/submit.xml b/workflow/engine/xmlform/dynaforms/fields/submit.xml
index a2f4b4639..de2ba372e 100755
--- a/workflow/engine/xmlform/dynaforms/fields/submit.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/submit.xml
@@ -1,37 +1,30 @@
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
-
-
- Javascript to Execute On Click
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/subtitle.xml b/workflow/engine/xmlform/dynaforms/fields/subtitle.xml
index a8ae4e0a2..1631e00a0 100755
--- a/workflow/engine/xmlform/dynaforms/fields/subtitle.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/subtitle.xml
@@ -1,42 +1,33 @@
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Content
-
-
-
- Appearance
-
-
-
-
-
- Enable Html
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/suggest.xml b/workflow/engine/xmlform/dynaforms/fields/suggest.xml
index a977ac385..f3221b36e 100755
--- a/workflow/engine/xmlform/dynaforms/fields/suggest.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/suggest.xml
@@ -1,38 +1,27 @@
-
-
-
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Behaviour
-
-
-
-
-
-
- Required
-
-
-
-
- @@PME_XMLNODE_NAME AND XMLNODE_NAME <> "" AND ( TYPE="text" or TYPE="textarea" or TYPE="dropdown" or TYPE="listbox" or TYPE="hidden" or TYPE="suggest")
- ]]>Dependent Fields
-
-
-
- Hint
-
-
-
- Appearance
-
-
-
- Size
-
-
-
-
- Mode
-
-
-
-
-
-
-
- Autosuggest behaviour
-
-
-
+ ]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT * FROM DB_CONNECTIONS
- Sql Connection
+
-
-
- Sql
-
-
-
- Max Results
-
-
-
- Show no results message
-
-
-
- Save selected option as
-
-
-
-
-
-
- Store new entry
-
-
-
- Search Type
-
-
-
-
-
-
-
-
- Table
-
-
-
-
- Primary Key
-
-
-
-
-
-
- Type
-
-
-
-
-
-
-
- Javascript callback to execute by a selection
-
-
-
- Cancel
-
-
-
- Save
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Behaviour
-
-
-
- Max. Length
-
-
-
- Validate
-
-
-
- Mask
-
-
-
- Text transform to
-
-
- Required
-
-
- Read Only
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @@PME_XMLNODE_NAME AND XMLNODE_NAME <> "" AND ( TYPE="text" or TYPE="textarea" or TYPE="dropdown" or TYPE="listbox" or TYPE="hidden" )
- ]]>Dependent Fields
-
-
- Default Value
-
-
- Hint
-
-
-
- Appearance
-
-
-
- Size
-
-
-
- Mode
-
-
-
- Operations
-
-
- Formula
-
-
- Function
-
-
-
- Data
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sql Connection
-
-
-
- Sql
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Behaviour
-
-
-
- Required
-
-
- Read Only
-
-
- Default Value
-
-
- Hint
-
-
-
- Appearance
-
-
-
- Rows
-
-
- Columns
-
-
-
- Mode
-
-
-
-
- Data
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sql Connection
-
-
-
- Sql
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/title.xml b/workflow/engine/xmlform/dynaforms/fields/title.xml
index 2f9e1fa9b..a3608dad3 100755
--- a/workflow/engine/xmlform/dynaforms/fields/title.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/title.xml
@@ -1,41 +1,33 @@
-
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Appearance
-
-
-
-
- Enable Html
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields/yesno.xml b/workflow/engine/xmlform/dynaforms/fields/yesno.xml
index 673aff55e..d8bf68b6d 100755
--- a/workflow/engine/xmlform/dynaforms/fields/yesno.xml
+++ b/workflow/engine/xmlform/dynaforms/fields/yesno.xml
@@ -1,57 +1,45 @@
-
-
-
- Properties
-
-
- Field Name
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT XMLNODE_NAME, TYPE FROM dynaForm WHERE XMLNODE_NAME = @@PME_XMLNODE_NAME
-
-
- Label
-
-
-
- Behaviour
-
-
-
-
- Read Only
-
-
-
- Default Value
-
-
- Hint
-
-
- Appearance
-
-
-
-
-
- Mode
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields_Edit.xml b/workflow/engine/xmlform/dynaforms/fields_Edit.xml
index 0f79a154d..0ab82ca8c 100755
--- a/workflow/engine/xmlform/dynaforms/fields_Edit.xml
+++ b/workflow/engine/xmlform/dynaforms/fields_Edit.xml
@@ -1,24 +1,19 @@
-
-
- Field name
-
-
-
- Type
-
-
-
- Default value
-
-
-
-
-
- Save
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/dynaforms/fields_List.xml b/workflow/engine/xmlform/dynaforms/fields_List.xml
index cc6b5fedf..560cb40a9 100755
--- a/workflow/engine/xmlform/dynaforms/fields_List.xml
+++ b/workflow/engine/xmlform/dynaforms/fields_List.xml
@@ -1,29 +1,25 @@
-
- Field Name
-
-
-
-
- Type
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields_ShortList.xml b/workflow/engine/xmlform/dynaforms/fields_ShortList.xml
index 2a73cf558..97272f5e2 100755
--- a/workflow/engine/xmlform/dynaforms/fields_ShortList.xml
+++ b/workflow/engine/xmlform/dynaforms/fields_ShortList.xml
@@ -1,21 +1,19 @@
-
-
- Field name
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/dynaforms/fields_Toolbar.xml b/workflow/engine/xmlform/dynaforms/fields_Toolbar.xml
index c5d041fbd..0951b738c 100755
--- a/workflow/engine/xmlform/dynaforms/fields_Toolbar.xml
+++ b/workflow/engine/xmlform/dynaforms/fields_Toolbar.xml
@@ -1,99 +1,99 @@
-
-
-
-
-
-
- Save
-
-
- Save as
-
-
-
-
- Text field
-
-
- Currency
-
-
- Percentage
-
-
- Password
-
-
- Suggest
-
-
-
-
-
- Title
-
-
- Subtitle
-
-
-
-
-
- Submit
-
-
- Reset
-
-
-
-
- Dropdown
-
-
- Yes/No
-
-
- Listbox
-
-
-
-
- Checkbox
-
-
- CheckGroup
-
-
- RadioGroup
-
-
-
-
- Date
-
-
- Hidden
-
-
- Link
-
-
- File
-
-
-
-
- Javascript
-
-
-
-
- Grid
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/dynaforms/fields_ToolbarGrid.xml b/workflow/engine/xmlform/dynaforms/fields_ToolbarGrid.xml
index 9e368b346..9aa5d9d3c 100755
--- a/workflow/engine/xmlform/dynaforms/fields_ToolbarGrid.xml
+++ b/workflow/engine/xmlform/dynaforms/fields_ToolbarGrid.xml
@@ -1,59 +1,59 @@
-
+
-
-
+
+
- Save
+
- Save as
+
- Text field
+
- Currency
+
- Percentage
+
- Suggest
+
- Dropdown
+
- Yes/No
+
- Checkbox
+
- Date
+
- Hidden
+
- Link
+
- File
+
-
-
\ No newline at end of file
+
+
diff --git a/workflow/engine/xmlform/events/appEventsList.xml b/workflow/engine/xmlform/events/appEventsList.xml
index 639ed4f1f..8f1ebba54 100755
--- a/workflow/engine/xmlform/events/appEventsList.xml
+++ b/workflow/engine/xmlform/events/appEventsList.xml
@@ -1,30 +1,19 @@
-
-
-
-
- Task
-
-
-
- Case Title
-
-
-
- Action date
-
-
-
- Event Description
-
-
-
- Event type
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/events/appEventsListCompleted.xml b/workflow/engine/xmlform/events/appEventsListCompleted.xml
index a2890fd89..5521fcfcb 100755
--- a/workflow/engine/xmlform/events/appEventsListCompleted.xml
+++ b/workflow/engine/xmlform/events/appEventsListCompleted.xml
@@ -1,30 +1,19 @@
-
-
-
-
- Case Title
-
-
-
- Action date
-
-
-
- Last Execution
-
-
-
- Event Description
-
-
-
- Event type
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/events/dynavarsList.xml b/workflow/engine/xmlform/events/dynavarsList.xml
index ddca713e3..040515d7f 100755
--- a/workflow/engine/xmlform/events/dynavarsList.xml
+++ b/workflow/engine/xmlform/events/dynavarsList.xml
@@ -2,9 +2,9 @@
- Variable
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/events/eventsEdit.xml b/workflow/engine/xmlform/events/eventsEdit.xml
index 64b100751..5e8789e94 100755
--- a/workflow/engine/xmlform/events/eventsEdit.xml
+++ b/workflow/engine/xmlform/events/eventsEdit.xml
@@ -1,101 +1,73 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Description
-
-
-
- Status
-
-
-
- Behaviour
-
-
-
- Execution time
-
-
-
- Type
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT TAS_UID, TAS_TITLE FROM tasks
- The time starts with task
+
-
-
+
SELECT TAS_UID, TAS_TITLE FROM tasks
- The time starts from task
+
-
-
+
SELECT TAS_UID, TAS_TITLE FROM tasks
- To
+
-
-
- Estimated Task duration
-
-
-
-
-
-
-
- days
-
-
-
- Action
-
-
-
- Condition
-
-
-
- Execute trigger
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT * FROM TMP_TRIGGERS
-
-
+
-
-
- Event scheduled graph
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
-
-
diff --git a/workflow/engine/xmlform/events/eventsEditAction.xml b/workflow/engine/xmlform/events/eventsEditAction.xml
index 370fdab0e..cb3565d82 100755
--- a/workflow/engine/xmlform/events/eventsEditAction.xml
+++ b/workflow/engine/xmlform/events/eventsEditAction.xml
@@ -1,97 +1,66 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Subject
-
-
-
-
-
-
-
- Send to
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT id,name FROM eventomsgto
- TO
+
-
-
- Carbon Copy
-
-
-
+
+
+
+
+
SELECT id,name FROM eventomsgcc
- CC
+
-
-
- Blind Carbon Copy
-
-
-
+
+
+
+
+
SELECT id,name FROM eventomsgbcc
- BCC
+
-
-
+
SELECT TEMPLATE1, TEMPLATE2 FROM templates
- E-Mail Template
+
-
-
+
SELECT TRI_UID, TRI_TITLE FROM triggers
- Trigger
+
-
-
- Cancel
-
-
-
- Save
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/events/eventsNew.xml b/workflow/engine/xmlform/events/eventsNew.xml
index a9641d068..218f4de8d 100755
--- a/workflow/engine/xmlform/events/eventsNew.xml
+++ b/workflow/engine/xmlform/events/eventsNew.xml
@@ -1,103 +1,73 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Description
-
-
-
- Status
-
-
-
- Behaviour
-
-
-
- Execution time
-
-
-
- Type
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT TAS_UID, TAS_TITLE FROM tasks
- The time starts with task
+
-
-
+
SELECT TAS_UID, TAS_TITLE FROM tasks
- The time starts from task
+
-
-
+
SELECT TAS_UID, TAS_TITLE FROM tasks
- To
+
-
-
- Estimated Task duration
-
-
-
-
-
-
-
- days
-
-
-
- Action
-
-
-
-
- Condition
-
-
-
- Execute trigger
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT * FROM TMP_TRIGGERS
-
-
-
+
-
-
- Event scheduled graph
-
-
-
- Cancel
-
-
-
- Continue
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
diff --git a/workflow/engine/xmlform/events/eventsOptions.xml b/workflow/engine/xmlform/events/eventsOptions.xml
index 1febf63d5..fd351530a 100755
--- a/workflow/engine/xmlform/events/eventsOptions.xml
+++ b/workflow/engine/xmlform/events/eventsOptions.xml
@@ -1,26 +1,17 @@
-
-
- New
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/events/eventsShortList.xml b/workflow/engine/xmlform/events/eventsShortList.xml
index fe2431992..9105d30d7 100755
--- a/workflow/engine/xmlform/events/eventsShortList.xml
+++ b/workflow/engine/xmlform/events/eventsShortList.xml
@@ -1,28 +1,21 @@
-
-
- Description
+
-
- When occurs
+
-
- Type
+
-
- Status
+
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/events/groupmailList.xml b/workflow/engine/xmlform/events/groupmailList.xml
index ff5200a15..2a0e6038f 100755
--- a/workflow/engine/xmlform/events/groupmailList.xml
+++ b/workflow/engine/xmlform/events/groupmailList.xml
@@ -1,12 +1,8 @@
-
-
-
-
- Group name
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/events/usermailList.xml b/workflow/engine/xmlform/events/usermailList.xml
index d5a95172c..6ead155ad 100755
--- a/workflow/engine/xmlform/events/usermailList.xml
+++ b/workflow/engine/xmlform/events/usermailList.xml
@@ -1,16 +1,11 @@
-
-
-
-
- Fullname
-
-
-
- email
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/groups/groups_AddUser.xml b/workflow/engine/xmlform/groups/groups_AddUser.xml
index 6fcbb9da0..8acef0ef0 100755
--- a/workflow/engine/xmlform/groups/groups_AddUser.xml
+++ b/workflow/engine/xmlform/groups/groups_AddUser.xml
@@ -1,19 +1,14 @@
-
-
- User
-
-
-
+
+
+
+
SELECT USR_UID, USR_USERNAME FROM USERS
- User
+
-
-
-
-
-
-
\ No newline at end of file
+
+
+
diff --git a/workflow/engine/xmlform/groups/groups_AvailableUsers.xml b/workflow/engine/xmlform/groups/groups_AvailableUsers.xml
index 9bb69e04c..b6c74c3bc 100755
--- a/workflow/engine/xmlform/groups/groups_AvailableUsers.xml
+++ b/workflow/engine/xmlform/groups/groups_AvailableUsers.xml
@@ -1,25 +1,18 @@
-
-
-
-
-
-
- Firstname
-
-
-
- Lastname
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/groups/groups_Edit.xml b/workflow/engine/xmlform/groups/groups_Edit.xml
index 5e98fbcc2..caa0fecf3 100755
--- a/workflow/engine/xmlform/groups/groups_Edit.xml
+++ b/workflow/engine/xmlform/groups/groups_Edit.xml
@@ -1,91 +1,84 @@
-
-
-
-
- Group Information
-
-
-
-
-
-
- Name
-
-
-
- Status
-
-
-
- Cancel
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/groups/groups_List.xml b/workflow/engine/xmlform/groups/groups_List.xml
index bfea35078..22681e2da 100755
--- a/workflow/engine/xmlform/groups/groups_List.xml
+++ b/workflow/engine/xmlform/groups/groups_List.xml
@@ -1,23 +1,17 @@
-
-
- Group properties
-
-
-
+
+
+
+
-
-
- Group
-
-
-
- Status
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/groups/groups_Options.xml b/workflow/engine/xmlform/groups/groups_Options.xml
index 74dc0e0f6..c3b9986ce 100755
--- a/workflow/engine/xmlform/groups/groups_Options.xml
+++ b/workflow/engine/xmlform/groups/groups_Options.xml
@@ -1,13 +1,9 @@
-
-
-
-
-
-
- Assign
- Asignar
-
-
-
\ No newline at end of file
+
+
+
+
+ Asignar
+
+
diff --git a/workflow/engine/xmlform/groups/groups_Search.xml b/workflow/engine/xmlform/groups/groups_Search.xml
index c8811645a..2d8313e8d 100755
--- a/workflow/engine/xmlform/groups/groups_Search.xml
+++ b/workflow/engine/xmlform/groups/groups_Search.xml
@@ -1,25 +1,20 @@
-
-
- User name
-
-
-
- User name}
+
+
+
+ User name}
-
+
var currentPagedTable = @#PAGED_TABLE_ID;
-
-
-
- Apply Filter
-
-
-
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/groups/groups_SelectUsers.xml b/workflow/engine/xmlform/groups/groups_SelectUsers.xml
index 0ccc0e34c..d3e7a5d6a 100755
--- a/workflow/engine/xmlform/groups/groups_SelectUsers.xml
+++ b/workflow/engine/xmlform/groups/groups_SelectUsers.xml
@@ -1,8 +1,6 @@
-
-
- Assign
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/groups/groups_UsersList.xml b/workflow/engine/xmlform/groups/groups_UsersList.xml
index bbb4e1b45..39e47cd97 100755
--- a/workflow/engine/xmlform/groups/groups_UsersList.xml
+++ b/workflow/engine/xmlform/groups/groups_UsersList.xml
@@ -1,21 +1,17 @@
-
-
-
-
- Username
-
-
-
- First Name
-
-
-
- Last Name
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/groups/groups_UsersListTitle.xml b/workflow/engine/xmlform/groups/groups_UsersListTitle.xml
index d941ac3b5..b16506cac 100755
--- a/workflow/engine/xmlform/groups/groups_UsersListTitle.xml
+++ b/workflow/engine/xmlform/groups/groups_UsersListTitle.xml
@@ -1,10 +1,7 @@
-
-
-
-
-@#GRP_NAME
-
-
-
\ No newline at end of file
+
+
+
+
+
diff --git a/workflow/engine/xmlform/gulliver/dynaforms_Options.xml b/workflow/engine/xmlform/gulliver/dynaforms_Options.xml
index a73eff84a..605d3df14 100755
--- a/workflow/engine/xmlform/gulliver/dynaforms_Options.xml
+++ b/workflow/engine/xmlform/gulliver/dynaforms_Options.xml
@@ -1,21 +1,18 @@
-
-
-
-
-
-
-
-
-
- Previous Step
-
-
-
-
- Next Step
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/gulliver/dynaforms_OptionsPrint.xml b/workflow/engine/xmlform/gulliver/dynaforms_OptionsPrint.xml
index 1be364e9c..e89f89d95 100755
--- a/workflow/engine/xmlform/gulliver/dynaforms_OptionsPrint.xml
+++ b/workflow/engine/xmlform/gulliver/dynaforms_OptionsPrint.xml
@@ -1,23 +1,20 @@
-
-
-
-
-
-
-
-
-
- Print form
-
-
-
- Previous Step
-
-
-
-
- Next Step
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/inputdocs/inputdocs_AvailableSupervisorInputs.xml b/workflow/engine/xmlform/inputdocs/inputdocs_AvailableSupervisorInputs.xml
index c77852091..f3af42d61 100755
--- a/workflow/engine/xmlform/inputdocs/inputdocs_AvailableSupervisorInputs.xml
+++ b/workflow/engine/xmlform/inputdocs/inputdocs_AvailableSupervisorInputs.xml
@@ -1,27 +1,18 @@
-
-
-
-
-
-
- Title
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/inputdocs/inputdocs_Edit.xml b/workflow/engine/xmlform/inputdocs/inputdocs_Edit.xml
index a3ac665bf..cee02cb5b 100755
--- a/workflow/engine/xmlform/inputdocs/inputdocs_Edit.xml
+++ b/workflow/engine/xmlform/inputdocs/inputdocs_Edit.xml
@@ -1,52 +1,38 @@
-
-
-
-
-
-
- Input Document Information
-
-
-
- Title
-
-
-
- Document Type
-
-
-
- Format
-
-
-
-
-
- Description
-
-
-
- Enable Versioning
-
-
-
- Destination Path
-
-
- Tags
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/inputdocs/inputdocs_List.xml b/workflow/engine/xmlform/inputdocs/inputdocs_List.xml
index 71505fed8..dabc23c74 100755
--- a/workflow/engine/xmlform/inputdocs/inputdocs_List.xml
+++ b/workflow/engine/xmlform/inputdocs/inputdocs_List.xml
@@ -1,36 +1,32 @@
-
-
-
-
- Input document
-
-
- Type
-
-
-
- Original
-
-
-
- Access type
-
-
- Description
-
-
-
-
-
-
-
- Apply Filter
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
+
diff --git a/workflow/engine/xmlform/inputdocs/inputdocs_Options.xml b/workflow/engine/xmlform/inputdocs/inputdocs_Options.xml
index a55c1fc2c..6f68276fc 100755
--- a/workflow/engine/xmlform/inputdocs/inputdocs_Options.xml
+++ b/workflow/engine/xmlform/inputdocs/inputdocs_Options.xml
@@ -1,16 +1,14 @@
-
-
- New
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
\ No newline at end of file
+
+
diff --git a/workflow/engine/xmlform/inputdocs/inputdocs_ShortList.xml b/workflow/engine/xmlform/inputdocs/inputdocs_ShortList.xml
index 07b132b96..a31ea6184 100755
--- a/workflow/engine/xmlform/inputdocs/inputdocs_ShortList.xml
+++ b/workflow/engine/xmlform/inputdocs/inputdocs_ShortList.xml
@@ -1,29 +1,21 @@
-
-
-
-
- Title
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter(form) {
@#PAGED_TABLE_ID.doFilter(form);
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/inputdocs/inputdocs_Supervisor.xml b/workflow/engine/xmlform/inputdocs/inputdocs_Supervisor.xml
index 7b8f0cfea..186420f2b 100755
--- a/workflow/engine/xmlform/inputdocs/inputdocs_Supervisor.xml
+++ b/workflow/engine/xmlform/inputdocs/inputdocs_Supervisor.xml
@@ -1,31 +1,20 @@
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/inputdocs/inputdocs_SupervisorOptions.xml b/workflow/engine/xmlform/inputdocs/inputdocs_SupervisorOptions.xml
index c3a5b12ab..9ab47876f 100755
--- a/workflow/engine/xmlform/inputdocs/inputdocs_SupervisorOptions.xml
+++ b/workflow/engine/xmlform/inputdocs/inputdocs_SupervisorOptions.xml
@@ -1,18 +1,12 @@
-
-
-
-
- Assign
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/login/changePassword.xml b/workflow/engine/xmlform/login/changePassword.xml
index 8ab49df6f..8cc44cf6f 100755
--- a/workflow/engine/xmlform/login/changePassword.xml
+++ b/workflow/engine/xmlform/login/changePassword.xml
@@ -1,27 +1,27 @@
-
- Change password
-
-
-
- @#DESCRIPTION
-
-
- Password
-
-
- Re-Type Password
-
-
- Save
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/login/dbInfo.xml b/workflow/engine/xmlform/login/dbInfo.xml
index 0f09e8e9e..9f0685fba 100755
--- a/workflow/engine/xmlform/login/dbInfo.xml
+++ b/workflow/engine/xmlform/login/dbInfo.xml
@@ -1,52 +1,49 @@
-
-
-
-
-
-
- System Information
-
-
- ProcessMaker
-
-
- Operating System
-
-
- Time zone
-
-
- Web Server
-
-
- Server Name
-
-
- Server IP Address
-
-
- PHP version
-
-
- Database
-
-
- Database Server IP Address
-
-
- Database Name
-
-
- Available Databases
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
diff --git a/workflow/engine/xmlform/login/forgotPassword.xml b/workflow/engine/xmlform/login/forgotPassword.xml
index 45a79d4b4..f33c100fa 100755
--- a/workflow/engine/xmlform/login/forgotPassword.xml
+++ b/workflow/engine/xmlform/login/forgotPassword.xml
@@ -1,21 +1,21 @@
- I forgot my password
+
- User
+
- Email
+
- Send Request
+
- Cancel
+
-
-
diff --git a/workflow/engine/xmlform/login/login.xml b/workflow/engine/xmlform/login/login.xml
index 45913cd43..fe24f8e73 100755
--- a/workflow/engine/xmlform/login/login.xml
+++ b/workflow/engine/xmlform/login/login.xml
@@ -1,28 +1,27 @@
-
- Login
-
-
- User
-
-
- Password
-
-
+
+
+
+
+
+
+
+
+
+
SELECT LANG_ID, LANG_NAME FROM langOptions
- Language
+
-
-
-
- Login
-
-
- Forgot Password
-
-
-
+
+
+
+
+
+
+
+
-
-
-
\ No newline at end of file
+]]>
+
diff --git a/workflow/engine/xmlform/login/newSite.xml b/workflow/engine/xmlform/login/newSite.xml
index 02a6a4f53..b079e42ac 100755
--- a/workflow/engine/xmlform/login/newSite.xml
+++ b/workflow/engine/xmlform/login/newSite.xml
@@ -1,44 +1,43 @@
-
- New Workspace
-
-
- Name
-
-
- Database Options
-
-
- Workflow Database:
-
-
- Rbac Database:
-
-
- Report Database:
-
-
- Drop database if exist
-
-
- Workspace Administrator
-
-
-
- Username:
-
-
- Password (admin) ]]> (Max. length 20):
-
-
- Re-type Password:
-
-
-
- Test
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ (Max. length 20):]]>
+
+
+
+
+
+
+
+
+
-
+
diff --git a/workflow/engine/xmlform/login/newSiteAdd.xml b/workflow/engine/xmlform/login/newSiteAdd.xml
index 099ec7116..db745fb22 100755
--- a/workflow/engine/xmlform/login/newSiteAdd.xml
+++ b/workflow/engine/xmlform/login/newSiteAdd.xml
@@ -1,64 +1,61 @@
-
- New Workspace
-
-
- Name
-
-
- Database Options
-
-
- Workflow Database:
-
-
- Rbac Database:
-
-
- Report Database:
-
-
- Drop database if exists
-
-
- Workspace Administrator
-
-
- Username:
-
-
- Password (admin):
-
-
- Re-type Password:
-
-
-
- Define Database
-
-
- Engine:
-
-
- Server:
-
-
- Port:
-
-
- Username:
-
-
- Password:
-
-
-
-
- Test
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Login to system
-
-
-
+
-
- The account you are logged in under does not have enough security privileges to view this page
-
+
-
- Please press back button to continue working with this system.
-
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/login/nologin.xml b/workflow/engine/xmlform/login/nologin.xml
index ac55138e0..f29b27e77 100755
--- a/workflow/engine/xmlform/login/nologin.xml
+++ b/workflow/engine/xmlform/login/nologin.xml
@@ -1,22 +1,15 @@
Login to system
-
- [CDATA]
+[CDATA]
Your session has expired.
- [/CDATA]
-
+ [/CDATA]
-
-
-
-
+
-
- Login
-
-
\ No newline at end of file
+
+
diff --git a/workflow/engine/xmlform/login/showInfo.xml b/workflow/engine/xmlform/login/showInfo.xml
index 94dc685c0..20e3dc99b 100755
--- a/workflow/engine/xmlform/login/showInfo.xml
+++ b/workflow/engine/xmlform/login/showInfo.xml
@@ -1,9 +1,9 @@
-
- Information
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/login/showInfoUpdate.xml b/workflow/engine/xmlform/login/showInfoUpdate.xml
index 4a3e81dcf..7706d8f1e 100755
--- a/workflow/engine/xmlform/login/showInfoUpdate.xml
+++ b/workflow/engine/xmlform/login/showInfoUpdate.xml
@@ -1,29 +1,22 @@
-
-
- Information
-
-
-
-
- Affected Files
-
-
-
-
- Errors
-
-
-
-
- Environments Updated
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/login/showMessage.xml b/workflow/engine/xmlform/login/showMessage.xml
index f6fdbbd6b..ac683c8ba 100755
--- a/workflow/engine/xmlform/login/showMessage.xml
+++ b/workflow/engine/xmlform/login/showMessage.xml
@@ -1,9 +1,9 @@
-
- Error
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/login/sysLogin.xml b/workflow/engine/xmlform/login/sysLogin.xml
index 3ae6b521c..0a85100f3 100755
--- a/workflow/engine/xmlform/login/sysLogin.xml
+++ b/workflow/engine/xmlform/login/sysLogin.xml
@@ -1,53 +1,47 @@
-
-
-
- Login
-
-
-
- User
-
-
-
- Password
-
-
-
-SELECT ENV_ID, ENV_NAME FROM availableWorkspace
-Workspace
-
-
-
-SELECT LANG_ID, LANG_NAME FROM langOptions
-Language
-
-
-
- Login
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+SELECT ENV_ID, ENV_NAME FROM availableWorkspace
+
+
+
+SELECT LANG_ID, LANG_NAME FROM langOptions
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/login/sysLoginNoWS.xml b/workflow/engine/xmlform/login/sysLoginNoWS.xml
index f4a1c78fc..7e24eebde 100755
--- a/workflow/engine/xmlform/login/sysLoginNoWS.xml
+++ b/workflow/engine/xmlform/login/sysLoginNoWS.xml
@@ -1,52 +1,46 @@
-
-
-
- Login
-
-
-
- User
-
-
-
- Password
-
-
-
-Workspace
-
-
-
-SELECT LANG_ID, LANG_NAME FROM langOptions
-Language
-
-
-
- Login
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+SELECT LANG_ID, LANG_NAME FROM langOptions
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/messages/messages_Edit.xml b/workflow/engine/xmlform/messages/messages_Edit.xml
index ce6b0da66..f0b1e7cb3 100755
--- a/workflow/engine/xmlform/messages/messages_Edit.xml
+++ b/workflow/engine/xmlform/messages/messages_Edit.xml
@@ -1,19 +1,17 @@
-
-
-
- Message Title
-
-
- Send as
-
-
-
- Content
-
-
-
- Save
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/messages/messages_List.xml b/workflow/engine/xmlform/messages/messages_List.xml
index a9fcc3d7a..b04b05f8f 100755
--- a/workflow/engine/xmlform/messages/messages_List.xml
+++ b/workflow/engine/xmlform/messages/messages_List.xml
@@ -1,28 +1,28 @@
-
-
-
- Output document
-
-
-
- Type
-
-
- Content
-
-
-
-
-
-
-
- Apply Filter
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/messages/messages_Options.xml b/workflow/engine/xmlform/messages/messages_Options.xml
index e06ce585e..20b83a0b7 100755
--- a/workflow/engine/xmlform/messages/messages_Options.xml
+++ b/workflow/engine/xmlform/messages/messages_Options.xml
@@ -1,15 +1,14 @@
-
-
- New
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
\ No newline at end of file
+
+
diff --git a/workflow/engine/xmlform/messages/messages_ShortList.xml b/workflow/engine/xmlform/messages/messages_ShortList.xml
index 654ae3ed2..2494c293d 100755
--- a/workflow/engine/xmlform/messages/messages_ShortList.xml
+++ b/workflow/engine/xmlform/messages/messages_ShortList.xml
@@ -1,21 +1,22 @@
-
-
-
- Output document
-
-
-
-
-
-
-
- Apply Filter
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/outputdocs/outputdocsDynaformList.xml b/workflow/engine/xmlform/outputdocs/outputdocsDynaformList.xml
index d96e94e2a..26ec9466f 100755
--- a/workflow/engine/xmlform/outputdocs/outputdocsDynaformList.xml
+++ b/workflow/engine/xmlform/outputdocs/outputdocsDynaformList.xml
@@ -1,23 +1,16 @@
-
-
-
-
-
+ Dynaform
-
-
-
- Template
-
-
-
- Save
-
-
-
\ No newline at end of file
+ ]]>
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/outputdocs/outputdocsUploadFile.xml b/workflow/engine/xmlform/outputdocs/outputdocsUploadFile.xml
index 8cb9fc477..cd3e7ecc8 100755
--- a/workflow/engine/xmlform/outputdocs/outputdocsUploadFile.xml
+++ b/workflow/engine/xmlform/outputdocs/outputdocsUploadFile.xml
@@ -1,36 +1,27 @@
-
-
-
-
-
-
-
-
- Download
-
-
-
- Click in the link to download current file
-
-
-
- Upload
-
-
-
- Upload a modified file
-
-
-
- upload
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/outputdocs/outputdocs_Edit.xml b/workflow/engine/xmlform/outputdocs/outputdocs_Edit.xml
index 345326fa7..30c1e9c61 100755
--- a/workflow/engine/xmlform/outputdocs/outputdocs_Edit.xml
+++ b/workflow/engine/xmlform/outputdocs/outputdocs_Edit.xml
@@ -1,44 +1,37 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Save
-
-
- Cancel
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/outputdocs/outputdocs_List.xml b/workflow/engine/xmlform/outputdocs/outputdocs_List.xml
index 0cd923a13..32dc56416 100755
--- a/workflow/engine/xmlform/outputdocs/outputdocs_List.xml
+++ b/workflow/engine/xmlform/outputdocs/outputdocs_List.xml
@@ -1,27 +1,28 @@
-
-
-
- Output document
-
-
- Filename
-
-
- Description
-
-
-
-
-
-
-
- Apply Filter
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/outputdocs/outputdocs_New.xml b/workflow/engine/xmlform/outputdocs/outputdocs_New.xml
index f00df950b..69753d222 100755
--- a/workflow/engine/xmlform/outputdocs/outputdocs_New.xml
+++ b/workflow/engine/xmlform/outputdocs/outputdocs_New.xml
@@ -1,109 +1,94 @@
-
-
-
-
-
-
-
-
- Output Document Information
-
-
-
- Type of Output Document
-
-
-Dynaform
-
-
-
- Title
-
-
-
- Filename generated
-
-
-
- Description
-
-
-
-
-
-
-
-
-
- Template
-
-
-
- Save
-
-
- Save submit
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/outputdocs/outputdocs_Options.xml b/workflow/engine/xmlform/outputdocs/outputdocs_Options.xml
index 93088e9a1..036716efa 100755
--- a/workflow/engine/xmlform/outputdocs/outputdocs_Options.xml
+++ b/workflow/engine/xmlform/outputdocs/outputdocs_Options.xml
@@ -1,18 +1,6 @@
-
-
-
- New
-
-
-
-
-
-]]>
-
-
-
-
+]]>
-
-
-
-
+]]>
diff --git a/workflow/engine/xmlform/outputdocs/outputdocs_Properties.xml b/workflow/engine/xmlform/outputdocs/outputdocs_Properties.xml
index 68bc82010..be09a8368 100755
--- a/workflow/engine/xmlform/outputdocs/outputdocs_Properties.xml
+++ b/workflow/engine/xmlform/outputdocs/outputdocs_Properties.xml
@@ -1,121 +1,74 @@
-
-
-
-
-
-
- Output Document Information
-
-
-
- Title
-
-
-
- Filename generated
-
-
-
- Description
-
-
-
- Report Generator
-
-
-
-
-
-
- Orientation
-
-
-
- Output Document to Generate
-
-
-
- Enable Versioning
-
-
-
- Media
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Left
-
-
- Right
-
-
- Top
-
-
- Bottom
-
-
- Destination Path
-
-
- Tags
-
-
-
- PDF Security
-
-
-
- Open Password
-
-
- Owner Password
-
-
- Allowed Permissions
-
-
-
-
-
-
-
-
- By clicking on the generated file link
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ By clicking on the generated file link
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/outputdocs/outputdocs_ShortList.xml b/workflow/engine/xmlform/outputdocs/outputdocs_ShortList.xml
index 73994c1ab..727e4752b 100755
--- a/workflow/engine/xmlform/outputdocs/outputdocs_ShortList.xml
+++ b/workflow/engine/xmlform/outputdocs/outputdocs_ShortList.xml
@@ -1,35 +1,27 @@
-
-
-
-
- Title
-
-
-
- Type
-
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter(form) {
@#PAGED_TABLE_ID.doFilter(form);
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/patterns/patterns_Current.xml b/workflow/engine/xmlform/patterns/patterns_Current.xml
index b808ed4b4..645cb9f8e 100755
--- a/workflow/engine/xmlform/patterns/patterns_Current.xml
+++ b/workflow/engine/xmlform/patterns/patterns_Current.xml
@@ -1,48 +1,31 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Workflow Pattern
-
-
-
- Type
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ Next Task
-
-
-
- Selection of executant
-
-
-
-
-
-
-
-
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/patterns/patterns_Discriminator.xml b/workflow/engine/xmlform/patterns/patterns_Discriminator.xml
index 787be5194..736a02cd6 100755
--- a/workflow/engine/xmlform/patterns/patterns_Discriminator.xml
+++ b/workflow/engine/xmlform/patterns/patterns_Discriminator.xml
@@ -1,37 +1,24 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Discriminator
-
-
-
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/patterns/patterns_Evaluate.xml b/workflow/engine/xmlform/patterns/patterns_Evaluate.xml
index 9e2900d5d..f6ec505b3 100755
--- a/workflow/engine/xmlform/patterns/patterns_Evaluate.xml
+++ b/workflow/engine/xmlform/patterns/patterns_Evaluate.xml
@@ -1,34 +1,23 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Evaluation
-
-
-
-
-
-
-
- Cancel
-
-
-
- Save
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/patterns/patterns_GridDiscriminator.xml b/workflow/engine/xmlform/patterns/patterns_GridDiscriminator.xml
index 13cd73192..4c9021573 100755
--- a/workflow/engine/xmlform/patterns/patterns_GridDiscriminator.xml
+++ b/workflow/engine/xmlform/patterns/patterns_GridDiscriminator.xml
@@ -1,20 +1,12 @@
-
-Next Task
-
-
-
- No of Task to be Discriminated
-
-
-
-Type of Discriminator
-
-
-
-
-
-
\ No newline at end of file
+ ]]>
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/patterns/patterns_GridEvaluateType.xml b/workflow/engine/xmlform/patterns/patterns_GridEvaluateType.xml
index 337beb03b..3fb9b95a7 100755
--- a/workflow/engine/xmlform/patterns/patterns_GridEvaluateType.xml
+++ b/workflow/engine/xmlform/patterns/patterns_GridEvaluateType.xml
@@ -1,14 +1,9 @@
-
-Next Task
-
-
-
- Condition
-
-
-
-
\ No newline at end of file
+ ]]>
+
+
+
+
diff --git a/workflow/engine/xmlform/patterns/patterns_GridParallelByEvaluationType.xml b/workflow/engine/xmlform/patterns/patterns_GridParallelByEvaluationType.xml
index 0107272c2..946ca97a4 100755
--- a/workflow/engine/xmlform/patterns/patterns_GridParallelByEvaluationType.xml
+++ b/workflow/engine/xmlform/patterns/patterns_GridParallelByEvaluationType.xml
@@ -1,14 +1,8 @@
-
-
- Next Task
-
-
-
-
+
- Condition
+
diff --git a/workflow/engine/xmlform/patterns/patterns_GridParallelType.xml b/workflow/engine/xmlform/patterns/patterns_GridParallelType.xml
index 538eb3445..3e5b8c4c2 100755
--- a/workflow/engine/xmlform/patterns/patterns_GridParallelType.xml
+++ b/workflow/engine/xmlform/patterns/patterns_GridParallelType.xml
@@ -1,9 +1,6 @@
-
-Next Task
-
-
-
\ No newline at end of file
+ ]]>
+
diff --git a/workflow/engine/xmlform/patterns/patterns_GridSelectType.xml b/workflow/engine/xmlform/patterns/patterns_GridSelectType.xml
index a989eb02c..1f077a3c9 100755
--- a/workflow/engine/xmlform/patterns/patterns_GridSelectType.xml
+++ b/workflow/engine/xmlform/patterns/patterns_GridSelectType.xml
@@ -1,14 +1,9 @@
-
-Next Task
-
-
-
- Description
-
-
-
-
\ No newline at end of file
+ ]]>
+
+
+
+
diff --git a/workflow/engine/xmlform/patterns/patterns_Parallel.xml b/workflow/engine/xmlform/patterns/patterns_Parallel.xml
index 6359f1940..a6d003626 100755
--- a/workflow/engine/xmlform/patterns/patterns_Parallel.xml
+++ b/workflow/engine/xmlform/patterns/patterns_Parallel.xml
@@ -1,35 +1,23 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Parallel
-
-
-
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/patterns/patterns_ParallelByEvaluation.xml b/workflow/engine/xmlform/patterns/patterns_ParallelByEvaluation.xml
index 444fda8f9..531948fb3 100755
--- a/workflow/engine/xmlform/patterns/patterns_ParallelByEvaluation.xml
+++ b/workflow/engine/xmlform/patterns/patterns_ParallelByEvaluation.xml
@@ -1,35 +1,23 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Parallel By Evaluation
-
-
-
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/patterns/patterns_ParallelJoin.xml b/workflow/engine/xmlform/patterns/patterns_ParallelJoin.xml
index bf5bf5ba3..295c5c13d 100755
--- a/workflow/engine/xmlform/patterns/patterns_ParallelJoin.xml
+++ b/workflow/engine/xmlform/patterns/patterns_ParallelJoin.xml
@@ -1,36 +1,22 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Parallel Join
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ Next Task
-
-
-
-
-
- Save
-
-
-
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/patterns/patterns_Select.xml b/workflow/engine/xmlform/patterns/patterns_Select.xml
index 935b0711c..bc6f8f904 100755
--- a/workflow/engine/xmlform/patterns/patterns_Select.xml
+++ b/workflow/engine/xmlform/patterns/patterns_Select.xml
@@ -1,36 +1,23 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Selection
-
-
-
-
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/patterns/patterns_Sequential.xml b/workflow/engine/xmlform/patterns/patterns_Sequential.xml
index 079722d21..ad5bee571 100755
--- a/workflow/engine/xmlform/patterns/patterns_Sequential.xml
+++ b/workflow/engine/xmlform/patterns/patterns_Sequential.xml
@@ -1,38 +1,25 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Sequential
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ Next Task
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processCategory/processCategory.xml b/workflow/engine/xmlform/processCategory/processCategory.xml
index 0a8ba203b..2d65d1ee6 100755
--- a/workflow/engine/xmlform/processCategory/processCategory.xml
+++ b/workflow/engine/xmlform/processCategory/processCategory.xml
@@ -1,28 +1,21 @@
-
-
- Process Category form
-
-
-
- Category UID
-
-
-
- Category Parent
-
-
-
- Category Name
-
-
-
- Category Icon
-
-
-
- Save
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processCategory/processCategoryDelete.xml b/workflow/engine/xmlform/processCategory/processCategoryDelete.xml
index d7464727b..a75f4eadb 100755
--- a/workflow/engine/xmlform/processCategory/processCategoryDelete.xml
+++ b/workflow/engine/xmlform/processCategory/processCategoryDelete.xml
@@ -1,32 +1,25 @@
-
-
-
-
- Delete Process Category
-
-
-
-
-
-
- Category Name
-
-
-
-
-
-
- delete
-
-
- Cancel
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processCategory/processCategoryEdit.xml b/workflow/engine/xmlform/processCategory/processCategoryEdit.xml
index 4519b387d..9c0b1394a 100755
--- a/workflow/engine/xmlform/processCategory/processCategoryEdit.xml
+++ b/workflow/engine/xmlform/processCategory/processCategoryEdit.xml
@@ -1,7 +1,7 @@
- Process Category form
+
@@ -11,8 +11,7 @@
Gory Parent
- Category Name
-
+
@@ -20,11 +19,11 @@
- save
+
- Cancel
+
-
-
-
- Gory Parent
-
-
-
- Category Name
-
-
-
- Category Icon
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+ Gory Parent
+
+
+
+
+
+ Category Icon
+
+
+
+
diff --git a/workflow/engine/xmlform/processCategory/processCategoryNew.xml b/workflow/engine/xmlform/processCategory/processCategoryNew.xml
index b7d6967ac..faad1aaf8 100755
--- a/workflow/engine/xmlform/processCategory/processCategoryNew.xml
+++ b/workflow/engine/xmlform/processCategory/processCategoryNew.xml
@@ -1,7 +1,7 @@
- Process Category form
+
@@ -11,8 +11,7 @@
Gory Parent
- Category Name
-
+
@@ -20,11 +19,11 @@
- save
+
- Cancel
+
-
-
-
- New
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/objectpmView.xml b/workflow/engine/xmlform/processes/objectpmView.xml
index 0c0c03d49..1c239d114 100755
--- a/workflow/engine/xmlform/processes/objectpmView.xml
+++ b/workflow/engine/xmlform/processes/objectpmView.xml
@@ -1,83 +1,57 @@
-
-
- Process Properties
-
-
-
-
-
- Title
-
-
-
- Version
-
-
-
- P.M. rev. required
-
-
-
- Category
-
-
-
-
-
- Rating
-
-
-
- Downloads
-
-
-
- Subscriptions
-
-
-
- Author
-
-
-
- Privacy
-
-
-
-
-
-
-
-
- Create Date
-
-
-
- Update Date
-
-
-
- Description
-
-
-
- Install Steps
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
diff --git a/workflow/engine/xmlform/processes/processes_Assignuser.xml b/workflow/engine/xmlform/processes/processes_Assignuser.xml
index 4c3c3322f..a7b159813 100755
--- a/workflow/engine/xmlform/processes/processes_Assignuser.xml
+++ b/workflow/engine/xmlform/processes/processes_Assignuser.xml
@@ -1,74 +1,70 @@
-
-
-
-
-
-
- Assign
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_DeleteCases.xml b/workflow/engine/xmlform/processes/processes_DeleteCases.xml
index 3be148962..e75907762 100755
--- a/workflow/engine/xmlform/processes/processes_DeleteCases.xml
+++ b/workflow/engine/xmlform/processes/processes_DeleteCases.xml
@@ -1,32 +1,25 @@
-
-
-
-
-
-
- Are you sure that you want to delete this process?
-
-
-
-
-
-
-
- To Do
-
-
-
- Completed
-
-
-
- Draft
-
-
-
- Cancelled
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_DirectoriesList.xml b/workflow/engine/xmlform/processes/processes_DirectoriesList.xml
index 8affbb160..3715098e0 100755
--- a/workflow/engine/xmlform/processes/processes_DirectoriesList.xml
+++ b/workflow/engine/xmlform/processes/processes_DirectoriesList.xml
@@ -1,6 +1,6 @@
-
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_Edit.xml b/workflow/engine/xmlform/processes/processes_Edit.xml
index 5a9380cf0..38a9d2f59 100755
--- a/workflow/engine/xmlform/processes/processes_Edit.xml
+++ b/workflow/engine/xmlform/processes/processes_Edit.xml
@@ -1,21 +1,15 @@
-
-
- Process Information
-
-
-
-
-
-
-
-
-
- Title
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT
PRO_UID
FROM
@@ -24,94 +18,39 @@ FROM
WHERE
CON_LANG = @@SYS_LANG AND
CON_VALUE = TRIM(@@PRO_TITLE)
- Title
+
-
-
- Description
-
-
-
-
-Calendar
-
-
-
-
-
-
-Process Category
-
-
-
-
-
-
-Dynaform to show a case summary
-
-
-
-
-
+
+
+
+
+
+
+
SELECT FILE,NAME FROM _TEMPLATES1
- Routing Screen Template
-
-
+
-
-
-
- Debug
-
-
-
- Hide the case number and the case title in the steps
-
-
-
- This a sub process
-
-
-
-
-Execute a trigger when a case is deleted
-
-
-
-
-
-
-Execute a trigger when a case is cancelled
-
-
-
-
-
-
-Execute a trigger when a case is paused
-
-
-
-
-
-
-Execute a trigger when a case is reassigned
-
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
\ No newline at end of file
+]]>
+
diff --git a/workflow/engine/xmlform/processes/processes_EditObjectPermission.xml b/workflow/engine/xmlform/processes/processes_EditObjectPermission.xml
index 8d378cc5f..6df21df00 100755
--- a/workflow/engine/xmlform/processes/processes_EditObjectPermission.xml
+++ b/workflow/engine/xmlform/processes/processes_EditObjectPermission.xml
@@ -1,85 +1,51 @@
-
- Edit Specific Permission
-
-
-
-
-
-
- Status Case
-
-
-
-
-
-
-
-
-
-
- Target Task
-
-
-
-
-
- Group or User
-
-
-
-
-
- Origin Task
-
-
-
- Participation required?
-
-
- Type
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT * FROM allObjects
- Object
-
-
+
-
+
SELECT * FROM allDynaforms
- DynaForm
+
-
+
SELECT * FROM allInputs
- Input Document
+
-
+
SELECT * FROM allOutputs
- Output Document
+
-
- Permission
-
-
-
-
-
-
-
-
- Save
-
-
-
-
+
+
+
+
+
+
+
+
-
-
- processes Info
-
-
-
- Process Title
-
-
-
- Process Uid
-
-
-
- Description
-
-
-
- Size in bytes
-
-
-
-
-
-
- File
-
-
-
+
+
+
+
+
+
+ Process Uid
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_FileEdit.xml b/workflow/engine/xmlform/processes/processes_FileEdit.xml
index e71f71001..7143a8f0d 100755
--- a/workflow/engine/xmlform/processes/processes_FileEdit.xml
+++ b/workflow/engine/xmlform/processes/processes_FileEdit.xml
@@ -1,26 +1,20 @@
-
-
-
-
-
- Edit @#filename email template]]>
-
-
-
-
-
-
-
- Save
-
-
- Cancel
-
-
-
-
+
+
+ Edit @#filename email template]]>
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_FileEditCreateEmpty.xml b/workflow/engine/xmlform/processes/processes_FileEditCreateEmpty.xml
index 20d88723c..e0d6a0074 100755
--- a/workflow/engine/xmlform/processes/processes_FileEditCreateEmpty.xml
+++ b/workflow/engine/xmlform/processes/processes_FileEditCreateEmpty.xml
@@ -1,9 +1,9 @@
-
- Filename
-
-
- Create
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_FilesList.xml b/workflow/engine/xmlform/processes/processes_FilesList.xml
index 4c5aeec2f..ae51fa542 100755
--- a/workflow/engine/xmlform/processes/processes_FilesList.xml
+++ b/workflow/engine/xmlform/processes/processes_FilesList.xml
@@ -1,17 +1,18 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_FilesOptions.xml b/workflow/engine/xmlform/processes/processes_FilesOptions.xml
index 2ea24df15..8b6b7a4b8 100755
--- a/workflow/engine/xmlform/processes/processes_FilesOptions.xml
+++ b/workflow/engine/xmlform/processes/processes_FilesOptions.xml
@@ -1,21 +1,15 @@
-
-
- New
-
-
-
- Upload
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
diff --git a/workflow/engine/xmlform/processes/processes_Import.xml b/workflow/engine/xmlform/processes/processes_Import.xml
index b6b3f4d30..b84daf475 100755
--- a/workflow/engine/xmlform/processes/processes_Import.xml
+++ b/workflow/engine/xmlform/processes/processes_Import.xml
@@ -1,38 +1,31 @@
-
-
-
-
- Import Process
-
-
-
-
- File
-
-
-
- Import
-
-
-
- Cancel
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_ImportExisting.xml b/workflow/engine/xmlform/processes/processes_ImportExisting.xml
index 9450f9e22..0f287fe4d 100755
--- a/workflow/engine/xmlform/processes/processes_ImportExisting.xml
+++ b/workflow/engine/xmlform/processes/processes_ImportExisting.xml
@@ -1,44 +1,30 @@
-
-
-
-
-
- Importing Existing Process]]>
-
-
-
- The process you are trying to import already exist. Please select one of the following options to continue:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Save
-
-
- Cancel
-
-
-
-
-
\ No newline at end of file
+
+
+
+ Importing Existing Process]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_ImportExistingXpdl.xml b/workflow/engine/xmlform/processes/processes_ImportExistingXpdl.xml
index 756497af6..f613ecc5c 100755
--- a/workflow/engine/xmlform/processes/processes_ImportExistingXpdl.xml
+++ b/workflow/engine/xmlform/processes/processes_ImportExistingXpdl.xml
@@ -1,42 +1,28 @@
-
-
-
-
-
- Importing Existing Process]]>
-
-
-
- The process you are trying to import already exist. Please select one of the following options to continue:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Save
-
-
- Cancel
-
-
-
-
-
\ No newline at end of file
+
+
+
+ Importing Existing Process]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_ImportSucessful.xml b/workflow/engine/xmlform/processes/processes_ImportSucessful.xml
index 3e4238777..caea48c85 100755
--- a/workflow/engine/xmlform/processes/processes_ImportSucessful.xml
+++ b/workflow/engine/xmlform/processes/processes_ImportSucessful.xml
@@ -1,37 +1,27 @@
-
-
-
- Process sucessfully imported
-
-
-
- Process Title
-
-
- Version
-
-
-
- Category
-
-
-
- Process Uid
-
-
-
- Please follow these instructions to complete installation
-
-
-
-
-
-
-
-
- Continue
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_ImportXpdl.xml b/workflow/engine/xmlform/processes/processes_ImportXpdl.xml
index f80af2489..1a85137f3 100755
--- a/workflow/engine/xmlform/processes/processes_ImportXpdl.xml
+++ b/workflow/engine/xmlform/processes/processes_ImportXpdl.xml
@@ -1,38 +1,31 @@
-
-
-
-
- Import Process
-
-
-
-
- File
-
-
-
- Import
-
-
-
- Cancel
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_List.xml b/workflow/engine/xmlform/processes/processes_List.xml
index d6468722d..701b736af 100755
--- a/workflow/engine/xmlform/processes/processes_List.xml
+++ b/workflow/engine/xmlform/processes/processes_List.xml
@@ -1,23 +1,19 @@
-
-
- Category
-
-
- Title
-
-
- Description
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
-
-
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_ListPublic.xml b/workflow/engine/xmlform/processes/processes_ListPublic.xml
index 7aff0161d..e9c5ac1d9 100755
--- a/workflow/engine/xmlform/processes/processes_ListPublic.xml
+++ b/workflow/engine/xmlform/processes/processes_ListPublic.xml
@@ -1,43 +1,30 @@
-
-
- Title
-
-
-
- Category
-
-
-
- Version
-
-
-
- Downloads
-
-
-
- Rating
-
-
-
- Subscriptions
-
-
-
-
- Author
-
-
-
- Update Date
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_ListPublicMenu.xml b/workflow/engine/xmlform/processes/processes_ListPublicMenu.xml
index 6732ee752..9dad585e9 100644
--- a/workflow/engine/xmlform/processes/processes_ListPublicMenu.xml
+++ b/workflow/engine/xmlform/processes/processes_ListPublicMenu.xml
@@ -1,10 +1,8 @@
-
-
- Back
-
-
-
-
-
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_New.xml b/workflow/engine/xmlform/processes/processes_New.xml
index ee453c22a..c78dc57b3 100755
--- a/workflow/engine/xmlform/processes/processes_New.xml
+++ b/workflow/engine/xmlform/processes/processes_New.xml
@@ -1,34 +1,26 @@
-
-
-
-
-
-
- Process Information
-
-
-
- Title
-
-
-
- Description
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT * from ProcessesNew
- Template
+
-
-
- Save
-
-
-
-
-
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_NewObjectPermission.xml b/workflow/engine/xmlform/processes/processes_NewObjectPermission.xml
index 5e75caf33..bf2fb57bf 100755
--- a/workflow/engine/xmlform/processes/processes_NewObjectPermission.xml
+++ b/workflow/engine/xmlform/processes/processes_NewObjectPermission.xml
@@ -1,87 +1,53 @@
-
- New Specific Permission
-
-
-
-
-
-
- Status Case
-
-
-
-
-
-
-
-
-
-
- Target Task
-
-
-
-
-
- Group or User
-
-
-
-
-
- Origin Task
-
-
-
- Participation required?
-
-
- Type
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT * FROM allObjects
- Object
-
-
+
-
+
SELECT * FROM allDynaforms
- DynaForm
+
-
+
SELECT * FROM allInputs
- Input Document
+
-
+
SELECT * FROM allOutputs
- Output Document
+
-
- Permission
-
-
-
-
-
-
- Cancel
-
-
-
- Create
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_NewOptions.xml b/workflow/engine/xmlform/processes/processes_NewOptions.xml
index a1071eda4..296d983bd 100755
--- a/workflow/engine/xmlform/processes/processes_NewOptions.xml
+++ b/workflow/engine/xmlform/processes/processes_NewOptions.xml
@@ -1,6 +1,6 @@
-
- Back to list
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_NewSimple.xml b/workflow/engine/xmlform/processes/processes_NewSimple.xml
index 58e465f1e..9f5e99213 100755
--- a/workflow/engine/xmlform/processes/processes_NewSimple.xml
+++ b/workflow/engine/xmlform/processes/processes_NewSimple.xml
@@ -1,38 +1,30 @@
-
-
-
-
-
-
-
- Process Information
-
-
-
- Title
-
-
-
- Description
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT CATEGORY_UID, CATEGORY_NAME FROM PROCESS_CATEGORY
-Process Category
+
-
-
- Save
-
-
-
- Cancel
-
-
-
-
-
+
+
+
+
+
+
+
+
document.onkeypress=function(e){
var esIE=(document.all);
@@ -75,5 +67,4 @@ function cancel(){
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_ObjectsPermissionsList.xml b/workflow/engine/xmlform/processes/processes_ObjectsPermissionsList.xml
index d64507651..1871a2df3 100755
--- a/workflow/engine/xmlform/processes/processes_ObjectsPermissionsList.xml
+++ b/workflow/engine/xmlform/processes/processes_ObjectsPermissionsList.xml
@@ -1,37 +1,52 @@
-
-
- Target Task
-Tarea ObjetivoTarefa Alvo
-
- Group or User
-Grupo o Usuario
-
- Origin Task
-Tarea de OrigenTarefa Origem
-
- Participation
-
-
- Type
-TipoTipo
-
-
- Permission
-Permiso
-
- Status
-Estado
-
-
- Edit
-Editar
-
-
-
- Delete
-BorrarEliminar
-
\ No newline at end of file
+
+
+
+ Tarea Objetivo
+ Tarefa Alvo
+
+
+
+ Grupo o Usuario
+
+
+
+
+ Tarea de Origen
+ Tarefa Origem
+
+
+
+
+
+
+
+
+ Tipo
+ Tipo
+
+
+
+
+ Permiso
+
+
+
+
+ Estado
+
+
+
+ Editar
+
+
+
+ Borrar
+ Eliminar
+
+
diff --git a/workflow/engine/xmlform/processes/processes_ObjectsPermissionsOptions.xml b/workflow/engine/xmlform/processes/processes_ObjectsPermissionsOptions.xml
index 512ef0b20..ce1b2ad32 100755
--- a/workflow/engine/xmlform/processes/processes_ObjectsPermissionsOptions.xml
+++ b/workflow/engine/xmlform/processes/processes_ObjectsPermissionsOptions.xml
@@ -1,15 +1,12 @@
-
-
-
-
- New
-Nuevo
-
-
-
-
+
+
+ Nuevo
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_Options.xml b/workflow/engine/xmlform/processes/processes_Options.xml
index 380e3af38..9c85affcb 100755
--- a/workflow/engine/xmlform/processes/processes_Options.xml
+++ b/workflow/engine/xmlform/processes/processes_Options.xml
@@ -1,23 +1,18 @@
-
-
- New
-
-
-
- Import
-
-
-
- Browse Library
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_Properties.xml b/workflow/engine/xmlform/processes/processes_Properties.xml
index b610e3190..39582dd24 100755
--- a/workflow/engine/xmlform/processes/processes_Properties.xml
+++ b/workflow/engine/xmlform/processes/processes_Properties.xml
@@ -1,29 +1,22 @@
-
-
-
-
-
-
- Process Information
-
-
-
- Title
-
-
-
- Description
-
-
-
- Save
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_Search.xml b/workflow/engine/xmlform/processes/processes_Search.xml
index 36ce5fdab..2950769da 100755
--- a/workflow/engine/xmlform/processes/processes_Search.xml
+++ b/workflow/engine/xmlform/processes/processes_Search.xml
@@ -1,20 +1,15 @@
-
-
- UID
-
-
-
- Title
-
-
-
- Description
-
-
-
- Apply Filter
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_UploadFilesForm.xml b/workflow/engine/xmlform/processes/processes_UploadFilesForm.xml
index 2f3f8115e..97f839f49 100755
--- a/workflow/engine/xmlform/processes/processes_UploadFilesForm.xml
+++ b/workflow/engine/xmlform/processes/processes_UploadFilesForm.xml
@@ -1,41 +1,30 @@
-
-
- Upload Files
-
-
-
-
-
-
-
-
-
- File 1
-
-
-
- File 2
-
-
-
- File 3
-
-
-
- File 4
-
-
-
- File 5
-
-
-
- Upload
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_User.xml b/workflow/engine/xmlform/processes/processes_User.xml
index 17fb5d5c8..c894072c2 100755
--- a/workflow/engine/xmlform/processes/processes_User.xml
+++ b/workflow/engine/xmlform/processes/processes_User.xml
@@ -1,20 +1,13 @@
-
-
-
-
-
-
-
-
- User or Group
-
-
-
- Type
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_ValidatingGroups.xml b/workflow/engine/xmlform/processes/processes_ValidatingGroups.xml
index c18449671..f6ea9839b 100755
--- a/workflow/engine/xmlform/processes/processes_ValidatingGroups.xml
+++ b/workflow/engine/xmlform/processes/processes_ValidatingGroups.xml
@@ -1,39 +1,25 @@
-
-
-
- Importing Groups]]>
-
-
-
- Some of the groups that are you trying to import, already exist. Please select one of the following options to continue:
-
-
-
+
+ Importing Groups]]>
+
+
+
+
+
-
-
+
-
-
+
-
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
-
-
- Save
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_View.xml b/workflow/engine/xmlform/processes/processes_View.xml
index 84006a367..c803a6bd4 100755
--- a/workflow/engine/xmlform/processes/processes_View.xml
+++ b/workflow/engine/xmlform/processes/processes_View.xml
@@ -1,20 +1,15 @@
-
-
-
-
-
-
- Process Information
-
-
-
- Title
-
-
-
- Description
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_ViewOptions.xml b/workflow/engine/xmlform/processes/processes_ViewOptions.xml
index add7b07d4..078c0d6f2 100755
--- a/workflow/engine/xmlform/processes/processes_ViewOptions.xml
+++ b/workflow/engine/xmlform/processes/processes_ViewOptions.xml
@@ -1,6 +1,6 @@
-
- Back to list
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_availableProcessesUser.xml b/workflow/engine/xmlform/processes/processes_availableProcessesUser.xml
index 09624e11a..23e6527c9 100755
--- a/workflow/engine/xmlform/processes/processes_availableProcessesUser.xml
+++ b/workflow/engine/xmlform/processes/processes_availableProcessesUser.xml
@@ -1,12 +1,12 @@
-
+
- User or Group
+
- Type
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_subProcess.xml b/workflow/engine/xmlform/processes/processes_subProcess.xml
index 5b4e9d0a6..e2e55e53d 100755
--- a/workflow/engine/xmlform/processes/processes_subProcess.xml
+++ b/workflow/engine/xmlform/processes/processes_subProcess.xml
@@ -1,55 +1,41 @@
-
-
-
- Sub-Process
-
-
-
-
-
-
-
-
-
-
-
-SubProcess name
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
SELECT * FROM NewCase
- Process
+
-
-
+
SELECT * FROM TheProcesses
-
+
-
-
- Type
-
-
-
- Variables Out
-
-
-
-
- Variables In
-
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/processes_subProcess_In.xml b/workflow/engine/xmlform/processes/processes_subProcess_In.xml
index 30850b5af..2ddf43849 100755
--- a/workflow/engine/xmlform/processes/processes_subProcess_In.xml
+++ b/workflow/engine/xmlform/processes/processes_subProcess_In.xml
@@ -1,12 +1,9 @@
-
-
-Origin
-
-
-
-Target
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_subProcess_Out.xml b/workflow/engine/xmlform/processes/processes_subProcess_Out.xml
index 9e4cf4c56..4ebd71fce 100755
--- a/workflow/engine/xmlform/processes/processes_subProcess_Out.xml
+++ b/workflow/engine/xmlform/processes/processes_subProcess_Out.xml
@@ -1,12 +1,9 @@
-
-
-Origin
-
-
-
-Target
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/processes/processes_viewreassignCase.xml b/workflow/engine/xmlform/processes/processes_viewreassignCase.xml
index e63ac48a0..208010f7f 100755
--- a/workflow/engine/xmlform/processes/processes_viewreassignCase.xml
+++ b/workflow/engine/xmlform/processes/processes_viewreassignCase.xml
@@ -1,25 +1,17 @@
-
-
-
-
- First Name
-
-
-
- Last Name
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/processes/registerPML.xml b/workflow/engine/xmlform/processes/registerPML.xml
index 12361a559..d00a5fc7f 100755
--- a/workflow/engine/xmlform/processes/registerPML.xml
+++ b/workflow/engine/xmlform/processes/registerPML.xml
@@ -1,28 +1,20 @@
-
-
-
-
- Login into ProcessMaker Library
-
-
-
- Username (or Live Workspace)
-
-
-
- Password
-
-
-
- Login
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reportTables/reportTables_Edit.xml b/workflow/engine/xmlform/reportTables/reportTables_Edit.xml
index 7cfc2fe83..cd8036d92 100755
--- a/workflow/engine/xmlform/reportTables/reportTables_Edit.xml
+++ b/workflow/engine/xmlform/reportTables/reportTables_Edit.xml
@@ -1,46 +1,35 @@
-
-
-
-
-
-
-
- Report Table Information
-
-
-
- Title
-
-
-
- Table Name
-
-
-
- Type
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT * FROM processGridFields
- Grid Fields
+
-
-
+
SELECT * FROM processFields
- Fields
+
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/reportTables/reportTables_Options.xml b/workflow/engine/xmlform/reportTables/reportTables_Options.xml
index f4f879c52..feafb36ea 100755
--- a/workflow/engine/xmlform/reportTables/reportTables_Options.xml
+++ b/workflow/engine/xmlform/reportTables/reportTables_Options.xml
@@ -1,101 +1,90 @@
+
+
+
+
+
+
+
+
- New
-
+function reportTablesNew()
+{
+ popupWindow('@G::LoadTranslation(ID_NEW_REPORT_TABLE)', '@G::encryptlink(@#reportTablesEdit)?PRO_UID=@%PRO_UID' , 500, 550);
+}
+function reportTablesEdit(sUID)
+{
+ popupWindow('@G::LoadTranslation(ID_EDIT_REPORT_TABLE)', '@G::encryptlink(@#reportTablesEdit)?REP_TAB_UID=' + sUID , 500, 550);
+}
+function reportTablesSave(form)
+{
+ var bContinue = true;
+ if (getField('REP_TAB_TITLE').value == '') {
+ bContinue = false;
+ }
+ if (getField('REP_TAB_NAME').value == '') {
+ bContinue = false;
+ }
+ var j = 0;
+ if (getField('REP_TAB_TYPE').value == 'NORMAL') {
+ var i;
+ var oAux = getField('FIELDS');
+ var iMax = oAux.length;
+ for (i = 0; i < oAux.length; i++) {
+ if (oAux.options[i].selected) {
+ j++;
+ }
+ }
+ if ((j < 1) || (j > 80)) {
+ bContinue = false;
+ }
+ }
+ else {
+ if (getField('REP_TAB_GRID').value == '') {
+ bContinue = false;
+ }
+ }
+ if (bContinue) {
+ ajax_post(form.action, form, 'POST');
+ currentPopupWindow.remove();
+ @#PAGED_TABLE_ID.refresh();
+ }
+ else {
+ if (getField('REP_TAB_TYPE').value == 'NORMAL') {
+ if (j == 0) {
+ new leimnud.module.app.alert().make({
+ label:'@G::LoadTranslation(ID_PLEASE_ENTER_REQUIRED_FIELDS)'
+ });
+ }
+ else {
+ new leimnud.module.app.alert().make({
+ label:'@G::LoadTranslation(ID_PLEASE_SELECT_MAX_X_FIELDS)'
+ });
+ }
+ }
+ else {
+ new leimnud.module.app.alert().make({
+ label:'@G::LoadTranslation(ID_PLEASE_ENTER_REQUIRED_FIELDS)'
+ });
+ }
+ }
+}
-
-
-
-
-
-
-
-
- 80)) {
- bContinue = false;
- }
- }
- else {
- if (getField('REP_TAB_GRID').value == '') {
- bContinue = false;
- }
- }
- if (bContinue) {
- ajax_post(form.action, form, 'POST');
- currentPopupWindow.remove();
- @#PAGED_TABLE_ID.refresh();
- }
- else {
- if (getField('REP_TAB_TYPE').value == 'NORMAL') {
- if (j == 0) {
- new leimnud.module.app.alert().make({
- label:'@G::LoadTranslation(ID_PLEASE_ENTER_REQUIRED_FIELDS)'
- });
- }
- else {
- new leimnud.module.app.alert().make({
- label:'@G::LoadTranslation(ID_PLEASE_SELECT_MAX_X_FIELDS)'
- });
- }
- }
- else {
- new leimnud.module.app.alert().make({
- label:'@G::LoadTranslation(ID_PLEASE_ENTER_REQUIRED_FIELDS)'
- });
- }
- }
-}
-
-function reportTablesDelete(sUID)
-{
- new leimnud.module.app.confirm().make({
- label:'@G::LoadTranslation(ID_MSG_CONFIRM_DELETE_REPORT_TABLE)',
- action:function()
- {
- ajax_function('@G::encryptlink(@#reportTablesDelete)', '', 'REP_TAB_UID=' + sUID, 'POST');
- @#PAGED_TABLE_ID.refresh();
- }.extend(this)
- });
-}
+function reportTablesDelete(sUID)
+{
+ new leimnud.module.app.confirm().make({
+ label:'@G::LoadTranslation(ID_MSG_CONFIRM_DELETE_REPORT_TABLE)',
+ action:function()
+ {
+ ajax_function('@G::encryptlink(@#reportTablesDelete)', '', 'REP_TAB_UID=' + sUID, 'POST');
+ @#PAGED_TABLE_ID.refresh();
+ }.extend(this)
+ });
+}
]]>
-
-
-
-
-
\ No newline at end of file
+
+
diff --git a/workflow/engine/xmlform/reportTables/reportTables_ShortList.xml b/workflow/engine/xmlform/reportTables/reportTables_ShortList.xml
index 4886e3214..2f10faff4 100755
--- a/workflow/engine/xmlform/reportTables/reportTables_ShortList.xml
+++ b/workflow/engine/xmlform/reportTables/reportTables_ShortList.xml
@@ -1,27 +1,23 @@
-
-
-
-
- Title
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter(form) {
@#PAGED_TABLE_ID.doFilter(form);
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/reports/report1.xml b/workflow/engine/xmlform/reports/report1.xml
index db57bff30..0c8b37a96 100755
--- a/workflow/engine/xmlform/reports/report1.xml
+++ b/workflow/engine/xmlform/reports/report1.xml
@@ -1,33 +1,25 @@
-
-
-
- Processes
-
-
-
- Cases
-
-
-
- Best Completion Time
-
-
-
- Slowest Completion Time
-
-
-
- Total Duration (Hours)
-
-
-
- Average (Hours)
-
-
-
- Detaills
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report1_back.xml b/workflow/engine/xmlform/reports/report1_back.xml
index f3dd2c774..6ad85a4af 100755
--- a/workflow/engine/xmlform/reports/report1_back.xml
+++ b/workflow/engine/xmlform/reports/report1_back.xml
@@ -1,8 +1,6 @@
-
-
- Back
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report1_dashboard.xml b/workflow/engine/xmlform/reports/report1_dashboard.xml
index 2f0f8df2a..372fc2014 100755
--- a/workflow/engine/xmlform/reports/report1_dashboard.xml
+++ b/workflow/engine/xmlform/reports/report1_dashboard.xml
@@ -1,26 +1,18 @@
-
-
- Processes
-
-
-
- Total Cases
-
-
-
-
-
- Slowest Time
-
-
-
- Total Duration
-
-
-
- Average
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report1_search.xml b/workflow/engine/xmlform/reports/report1_search.xml
index 96ff3c383..72e7c171c 100755
--- a/workflow/engine/xmlform/reports/report1_search.xml
+++ b/workflow/engine/xmlform/reports/report1_search.xml
@@ -1,21 +1,15 @@
-
-
- FROM
-
-
-
- TO
-
-
-
+
+
+
+
+
+ STARTED BY
-
-
-
- Filter
-
-
-
\ No newline at end of file
+ ]]>
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report2.xml b/workflow/engine/xmlform/reports/report2.xml
index e74d1d58a..8ffdfbf59 100755
--- a/workflow/engine/xmlform/reports/report2.xml
+++ b/workflow/engine/xmlform/reports/report2.xml
@@ -1,28 +1,21 @@
-
-
- Processes
-
-
-
- Total Cases
-
-
-
- Best Completion Time
-
-
-
- Slowest Completion Time
-
-
-
- Cases last month
-
-
-
- Cases last day
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report2_dashboard.xml b/workflow/engine/xmlform/reports/report2_dashboard.xml
index 7928dbaf0..2cb10b1ae 100755
--- a/workflow/engine/xmlform/reports/report2_dashboard.xml
+++ b/workflow/engine/xmlform/reports/report2_dashboard.xml
@@ -1,26 +1,18 @@
-
-
- Processes
-
-
-
- Total Cases
-
-
-
-
-
- Slowest Time
-
-
-
- Last month
-
-
-
- Last day
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report3.xml b/workflow/engine/xmlform/reports/report3.xml
index 116d10a16..5fd85a85b 100755
--- a/workflow/engine/xmlform/reports/report3.xml
+++ b/workflow/engine/xmlform/reports/report3.xml
@@ -1,28 +1,21 @@
-
-
- Date
-
-
-
- Total Cases
-
-
-
- Best Completion Time
-
-
-
- Slowest Completion Time
-
-
-
- Total Duration (Hours)
-
-
-
- Average (Hours)
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report3_dashboard.xml b/workflow/engine/xmlform/reports/report3_dashboard.xml
index a9d30034f..f71cd13cd 100755
--- a/workflow/engine/xmlform/reports/report3_dashboard.xml
+++ b/workflow/engine/xmlform/reports/report3_dashboard.xml
@@ -1,26 +1,18 @@
-
-
- Date
-
-
-
- Total Cases
-
-
-
-
-
- Slowest Time
-
-
-
- Total Duration
-
-
-
- Average
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report4.xml b/workflow/engine/xmlform/reports/report4.xml
index db0d0cfbc..3123f636e 100755
--- a/workflow/engine/xmlform/reports/report4.xml
+++ b/workflow/engine/xmlform/reports/report4.xml
@@ -1,28 +1,21 @@
-
-
- User
-
-
-
- Total Cases
-
-
-
- Best Completion Time
-
-
-
- Slowest Completion Time
-
-
-
- Total Duration (Hours)
-
-
-
- Average (Hours)
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report4_dashboard.xml b/workflow/engine/xmlform/reports/report4_dashboard.xml
index eea16ef29..4962f7d2e 100755
--- a/workflow/engine/xmlform/reports/report4_dashboard.xml
+++ b/workflow/engine/xmlform/reports/report4_dashboard.xml
@@ -1,26 +1,18 @@
-
-
- User
-
-
-
- Total Cases
-
-
-
-
-
- Slowest Time
-
-
-
- Total Duration
-
-
-
- Average
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report5.xml b/workflow/engine/xmlform/reports/report5.xml
index db0d0cfbc..3123f636e 100755
--- a/workflow/engine/xmlform/reports/report5.xml
+++ b/workflow/engine/xmlform/reports/report5.xml
@@ -1,28 +1,21 @@
-
-
- User
-
-
-
- Total Cases
-
-
-
- Best Completion Time
-
-
-
- Slowest Completion Time
-
-
-
- Total Duration (Hours)
-
-
-
- Average (Hours)
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report5_dashboard.xml b/workflow/engine/xmlform/reports/report5_dashboard.xml
index eea16ef29..4962f7d2e 100755
--- a/workflow/engine/xmlform/reports/report5_dashboard.xml
+++ b/workflow/engine/xmlform/reports/report5_dashboard.xml
@@ -1,26 +1,18 @@
-
-
- User
-
-
-
- Total Cases
-
-
-
-
-
- Slowest Time
-
-
-
- Total Duration
-
-
-
- Average
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/report_filter.xml b/workflow/engine/xmlform/reports/report_filter.xml
index 0b6e82fc0..4179b4c34 100755
--- a/workflow/engine/xmlform/reports/report_filter.xml
+++ b/workflow/engine/xmlform/reports/report_filter.xml
@@ -1,26 +1,22 @@
-
-Process
-ProcesoProcesso
-
-ProcesoProcesso
+ Tasks
-TareasTarefas
-
-
- Filter
-FiltroFiltro
-
-TareasTarefas
+
+
+ Filtro
+ Filtro
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/reports/reportsList.xml b/workflow/engine/xmlform/reports/reportsList.xml
index e7846542b..1d013be55 100755
--- a/workflow/engine/xmlform/reports/reportsList.xml
+++ b/workflow/engine/xmlform/reports/reportsList.xml
@@ -1,18 +1,13 @@
-
-
- #
-
-
-
- Reports
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/reports_Description.xml b/workflow/engine/xmlform/reports/reports_Description.xml
index 4b1bcbdd5..fddde50a8 100755
--- a/workflow/engine/xmlform/reports/reports_Description.xml
+++ b/workflow/engine/xmlform/reports/reports_Description.xml
@@ -1,24 +1,18 @@
-
-
- Task
-
-
-
- Best Completion Time
-
-
-
- Slowest Completion Time
-
-
-
- Total Duration (Hours)
-
-
-
- Average (Hours)
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/reports/reports_Description_search.xml b/workflow/engine/xmlform/reports/reports_Description_search.xml
index cda5056fa..065f3518f 100755
--- a/workflow/engine/xmlform/reports/reports_Description_search.xml
+++ b/workflow/engine/xmlform/reports/reports_Description_search.xml
@@ -1,26 +1,21 @@
-
-
-
- FROM
-
-
-
- TO
-
-
-
+
+
+
+
+
+
+
+
SELECT USR_UID, USR_USERNAME FROM USERS
- STARTED BY
+
-
-
- Filter
-
-
-
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/reports/rpt_filters.xml b/workflow/engine/xmlform/reports/rpt_filters.xml
index 3bd734fb9..e108d720f 100755
--- a/workflow/engine/xmlform/reports/rpt_filters.xml
+++ b/workflow/engine/xmlform/reports/rpt_filters.xml
@@ -1,16 +1,12 @@
-
-
- Initial date
-
-
-
- End date
-
-
-
- Filter
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/roles/roles_Edit.xml b/workflow/engine/xmlform/roles/roles_Edit.xml
index 60a090708..4f907dec6 100755
--- a/workflow/engine/xmlform/roles/roles_Edit.xml
+++ b/workflow/engine/xmlform/roles/roles_Edit.xml
@@ -1,38 +1,29 @@
-
-
- Edit role
-
-
-
-
-
-
- Role Code
-
-
-
- Role Name
-
-
-
- Status
-
-
-
- Cancel
-
-
-
- Update
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
diff --git a/workflow/engine/xmlform/roles/roles_List.xml b/workflow/engine/xmlform/roles/roles_List.xml
index 8fe241492..ac6ed4fcc 100755
--- a/workflow/engine/xmlform/roles/roles_List.xml
+++ b/workflow/engine/xmlform/roles/roles_List.xml
@@ -1,36 +1,27 @@
-
-
- Code
-
-
-
- Name
-
-
-
- Create date
-
-
-
- Update date
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/roles/roles_ListUsers.xml b/workflow/engine/xmlform/roles/roles_ListUsers.xml
index c77731f0f..5b5d12a32 100755
--- a/workflow/engine/xmlform/roles/roles_ListUsers.xml
+++ b/workflow/engine/xmlform/roles/roles_ListUsers.xml
@@ -1,27 +1,19 @@
-
-
-
-
-
-
-
-
- Firstname
-
-
-
- Lastname
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
+
diff --git a/workflow/engine/xmlform/roles/roles_New.xml b/workflow/engine/xmlform/roles/roles_New.xml
index 0dfd0f8f0..ef5b83abd 100755
--- a/workflow/engine/xmlform/roles/roles_New.xml
+++ b/workflow/engine/xmlform/roles/roles_New.xml
@@ -1,36 +1,28 @@
-
-
- Create a new Role
-
-
-
- Role Code
-
-
-
- Role Name
-
-
-
- Status
-
-
-
- Cancel
-
-
-
- Create
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/roles/roles_Options.xml b/workflow/engine/xmlform/roles/roles_Options.xml
index eeb7dbc30..f6138dc3a 100755
--- a/workflow/engine/xmlform/roles/roles_Options.xml
+++ b/workflow/engine/xmlform/roles/roles_Options.xml
@@ -1,19 +1,15 @@
-
-
- New
-NuevoNovo
-
-
-
-
-
-
-
-
-
-
+
+ Nuevo
+ Novo
+
+
+
+
+
+
-
diff --git a/workflow/engine/xmlform/services/serviceMessage.xml b/workflow/engine/xmlform/services/serviceMessage.xml
index f48be2c05..998490868 100755
--- a/workflow/engine/xmlform/services/serviceMessage.xml
+++ b/workflow/engine/xmlform/services/serviceMessage.xml
@@ -1,9 +1,9 @@
-
-Information
-
-
-The access for the service is currently unavailable from the processmaker web interface.
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/calendarEdit.xml b/workflow/engine/xmlform/setup/calendarEdit.xml
index 6c424fe9d..829f33f40 100755
--- a/workflow/engine/xmlform/setup/calendarEdit.xml
+++ b/workflow/engine/xmlform/setup/calendarEdit.xml
@@ -4,9 +4,8 @@
Ndar Uid
-
+
-
@@ -19,20 +18,11 @@
-
-
-
-
-
-
-
-
-
-
+
@@ -52,10 +42,10 @@
-
+
-
+
-
+]]>
diff --git a/workflow/engine/xmlform/setup/calendarEdit_BusinessHours.xml b/workflow/engine/xmlform/setup/calendarEdit_BusinessHours.xml
index 6fe84c943..1cb545084 100755
--- a/workflow/engine/xmlform/setup/calendarEdit_BusinessHours.xml
+++ b/workflow/engine/xmlform/setup/calendarEdit_BusinessHours.xml
@@ -1,15 +1,12 @@
-
- Day
-
-
- Start (hh:mm)
-
-
-
-
- End (hh:mm)
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/calendarEdit_Holidays.xml b/workflow/engine/xmlform/setup/calendarEdit_Holidays.xml
index bca356aef..251e9b456 100755
--- a/workflow/engine/xmlform/setup/calendarEdit_Holidays.xml
+++ b/workflow/engine/xmlform/setup/calendarEdit_Holidays.xml
@@ -1,12 +1,12 @@
-
-Name
-
-
-Start Date (Recurrent "Y-m-d")
-
-
-End Date (Recurrent "Y-m-d")
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/calendarList.xml b/workflow/engine/xmlform/setup/calendarList.xml
index 8467548e4..3fc8478e4 100755
--- a/workflow/engine/xmlform/setup/calendarList.xml
+++ b/workflow/engine/xmlform/setup/calendarList.xml
@@ -1,29 +1,21 @@
-
-
- Name
-
-
-
- Description
-
-
-
- Status
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/calendarList_Options.xml b/workflow/engine/xmlform/setup/calendarList_Options.xml
index 0176bed0a..e65e66dfa 100755
--- a/workflow/engine/xmlform/setup/calendarList_Options.xml
+++ b/workflow/engine/xmlform/setup/calendarList_Options.xml
@@ -2,6 +2,6 @@
- New
+
diff --git a/workflow/engine/xmlform/setup/emailSetupTest.xml b/workflow/engine/xmlform/setup/emailSetupTest.xml
index f33b5fb9b..a7b494d20 100755
--- a/workflow/engine/xmlform/setup/emailSetupTest.xml
+++ b/workflow/engine/xmlform/setup/emailSetupTest.xml
@@ -1,36 +1,27 @@
-
-
- Mail System Test Page
-
-
-
- Domain
-
-
-
- To:
-
-
-
- From Name:
-
-
-
- From Email:
-
-
-
- Subject:
-
-
-
- File
-
-
-
- Send Email
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/emails.xml b/workflow/engine/xmlform/setup/emails.xml
index 5c5963ac8..611e3b703 100755
--- a/workflow/engine/xmlform/setup/emails.xml
+++ b/workflow/engine/xmlform/setup/emails.xml
@@ -1,285 +1,259 @@
-
-
-
-
- Configuration
-
-
-
- Enable Email Notifications
-
-
-
- select * from mails
- Email Engine
-
-
-
- Server
-
-
-
- Port (default 25)
-
-
-
- Require authentication
-
-
-
- SMTP Username
-
-
-
- SMTP Password
-
-
-
-
-
-
-
- Send a test mail
-
-
-
- Mail to
-
-
-
- Use Secure Connection
-
-
-
-
-
-
-
- Run in the background
-
-
-
- Execute every (in minutes)
-
-
-
- Maximun number of mails sended by attempt
-
-
-
- Try send mails inmediatly
-
-
-
- Test
-
-
-
- Save Changes
-
-
- Save Changes
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ select * from mails
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/emails_Sended.xml b/workflow/engine/xmlform/setup/emails_Sended.xml
index 0edf7f02a..bb18046e5 100755
--- a/workflow/engine/xmlform/setup/emails_Sended.xml
+++ b/workflow/engine/xmlform/setup/emails_Sended.xml
@@ -1,14 +1,10 @@
-
-
-
-
- @#MESSAGE_VALUE
-
-
-
- Close
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/emails_TestForm.xml b/workflow/engine/xmlform/setup/emails_TestForm.xml
index bfd03dc6f..c72637f9d 100755
--- a/workflow/engine/xmlform/setup/emails_TestForm.xml
+++ b/workflow/engine/xmlform/setup/emails_TestForm.xml
@@ -1,27 +1,21 @@
-
-
- Mail Configuration Test Page
-
-
-
- From Name:
-
-
-
- From Email:
-
-
-
- To:
-
-
-
- Send Email
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/setup/holiday.xml b/workflow/engine/xmlform/setup/holiday.xml
index fb3f85b9e..c1480754c 100755
--- a/workflow/engine/xmlform/setup/holiday.xml
+++ b/workflow/engine/xmlform/setup/holiday.xml
@@ -1,19 +1,15 @@
-
-
- Holiday
-
-
-
- Date
-
-
-
- Description
-
-
-
- Accept
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/holidayList.xml b/workflow/engine/xmlform/setup/holidayList.xml
index 2d3d4f990..98b00452b 100755
--- a/workflow/engine/xmlform/setup/holidayList.xml
+++ b/workflow/engine/xmlform/setup/holidayList.xml
@@ -1,20 +1,15 @@
-
-
- UID
-
-
-
- Date
-
-
-
- Description
-
-
-
- Delete
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/holidayListMenu.xml b/workflow/engine/xmlform/setup/holidayListMenu.xml
index 70d0f8624..bfe8ccfc1 100755
--- a/workflow/engine/xmlform/setup/holidayListMenu.xml
+++ b/workflow/engine/xmlform/setup/holidayListMenu.xml
@@ -1,6 +1,6 @@
-
- New
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/language.xml b/workflow/engine/xmlform/setup/language.xml
index c65475914..4a9060ab4 100755
--- a/workflow/engine/xmlform/setup/language.xml
+++ b/workflow/engine/xmlform/setup/language.xml
@@ -1,16 +1,12 @@
-
-
- Language
-
-
-
+
+
+
+ Language
-
-
-
- Add
-
-
-
\ No newline at end of file
+ ]]>
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/language_table.xml b/workflow/engine/xmlform/setup/language_table.xml
index bb7b7ef13..5282061bc 100755
--- a/workflow/engine/xmlform/setup/language_table.xml
+++ b/workflow/engine/xmlform/setup/language_table.xml
@@ -1,16 +1,13 @@
-
-
- Language
-
-
-
+
+
+
+
+
SELECT LAN_ID,LAN_NAME FROM LANGUAGE ORDER BY LAN_NAME
- Language
+
-
-
- Add
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/languages.xml b/workflow/engine/xmlform/setup/languages.xml
index bb68b2425..e47d0321f 100755
--- a/workflow/engine/xmlform/setup/languages.xml
+++ b/workflow/engine/xmlform/setup/languages.xml
@@ -1,12 +1,12 @@
- Code
+
- Language
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/setup/languages_ImportForm.xml b/workflow/engine/xmlform/setup/languages_ImportForm.xml
index 0b2a20e86..0212af289 100755
--- a/workflow/engine/xmlform/setup/languages_ImportForm.xml
+++ b/workflow/engine/xmlform/setup/languages_ImportForm.xml
@@ -1,21 +1,17 @@
-
- Import or Update Language
+
-
- File
+
-
- Import
+
- Cancel
+
-
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/setup/languages_Options.xml b/workflow/engine/xmlform/setup/languages_Options.xml
index 922861701..b5afdb615 100755
--- a/workflow/engine/xmlform/setup/languages_Options.xml
+++ b/workflow/engine/xmlform/setup/languages_Options.xml
@@ -1,10 +1,9 @@
-
- Import / Update
-
-
-
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/setup/location.xml b/workflow/engine/xmlform/setup/location.xml
index 407ee5f39..15dbe92c4 100755
--- a/workflow/engine/xmlform/setup/location.xml
+++ b/workflow/engine/xmlform/setup/location.xml
@@ -1,34 +1,28 @@
-
-
- Region
- منطقه
-
-
-
- Add
- اضافه کردن
-
-
-
- Region
-
-
- COUNTRIES
-
-
-
+
+
+ منطقه
+
+
+
+ اضافه کردن
+
+
+
+
+
+
+
+
+
select uid, caption from TERRITORY where RELATION = @@USR_COUNTRY
- CITY
+
-
-
- Add city
-
-
-
- ACCEPT
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/mail.xml b/workflow/engine/xmlform/setup/mail.xml
index 65da81e90..21afb5df6 100755
--- a/workflow/engine/xmlform/setup/mail.xml
+++ b/workflow/engine/xmlform/setup/mail.xml
@@ -1,41 +1,33 @@
-
- Email Settings
-
-
-
- Method
-
-
-
- Server
-
-
-
- Port
-
-
- Timeout
-
-
-
- Requires Authentication
-
-
-
- Email Account
-
-
-
- Password
-
-
-
- Save
-
-
-
- Test
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/mailTest.xml b/workflow/engine/xmlform/setup/mailTest.xml
index 0d501db99..e12125be5 100755
--- a/workflow/engine/xmlform/setup/mailTest.xml
+++ b/workflow/engine/xmlform/setup/mailTest.xml
@@ -1,14 +1,12 @@
-
- Test Email
-
-
-
- Send to :
-
-
-
- Test
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/noProcesses.xml b/workflow/engine/xmlform/setup/noProcesses.xml
index 6f4b888a4..7feffe315 100755
--- a/workflow/engine/xmlform/setup/noProcesses.xml
+++ b/workflow/engine/xmlform/setup/noProcesses.xml
@@ -1,8 +1,6 @@
-
-
- No processes available for this environment
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/pluginImport.xml b/workflow/engine/xmlform/setup/pluginImport.xml
index d5c898366..a431cfc72 100755
--- a/workflow/engine/xmlform/setup/pluginImport.xml
+++ b/workflow/engine/xmlform/setup/pluginImport.xml
@@ -1,41 +1,33 @@
-
-
-
-
- Import Plugin
-
-
-
- Max upload file size in bytes
-
-
-
- File
-
-
-
- Import
-
-
-
- Cancel
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/pluginList.xml b/workflow/engine/xmlform/setup/pluginList.xml
index f6ffef07f..8d9c0f3d5 100755
--- a/workflow/engine/xmlform/setup/pluginList.xml
+++ b/workflow/engine/xmlform/setup/pluginList.xml
@@ -1,38 +1,27 @@
-
-
- #
-
-
-
- Name (File)
-
-
-
- Description
-
-
-
- Version
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/plugin_ListOptions.xml b/workflow/engine/xmlform/setup/plugin_ListOptions.xml
index df5f620ef..22bc7d44a 100755
--- a/workflow/engine/xmlform/setup/plugin_ListOptions.xml
+++ b/workflow/engine/xmlform/setup/plugin_ListOptions.xml
@@ -1,6 +1,6 @@
-
- Import
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/setup/processHeartBeatConfig.xml b/workflow/engine/xmlform/setup/processHeartBeatConfig.xml
index 1f1bbf1d7..c25b13efd 100755
--- a/workflow/engine/xmlform/setup/processHeartBeatConfig.xml
+++ b/workflow/engine/xmlform/setup/processHeartBeatConfig.xml
@@ -1,19 +1,16 @@
- Processmaker Heartbeat
+
- Enable Heartbeat
-
-
-
+
- save
+
- Read Online Documentation
+
var sendValues=function(form){
diff --git a/workflow/engine/xmlform/setup/showMessage.xml b/workflow/engine/xmlform/setup/showMessage.xml
index 8d310b279..141ef8f34 100755
--- a/workflow/engine/xmlform/setup/showMessage.xml
+++ b/workflow/engine/xmlform/setup/showMessage.xml
@@ -1,9 +1,10 @@
-
- Error
-Error
-
-
-
-
\ No newline at end of file
+
+
+ Error
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/skinsList.xml b/workflow/engine/xmlform/setup/skinsList.xml
index 9eeb6f653..ecfc4fd68 100755
--- a/workflow/engine/xmlform/setup/skinsList.xml
+++ b/workflow/engine/xmlform/setup/skinsList.xml
@@ -1,24 +1,18 @@
-
-
- #
-
-
-
- Name (File)
-
-
-
- Description
-
-
-
- Version
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/skinsListOptions.xml b/workflow/engine/xmlform/setup/skinsListOptions.xml
index 7d2a0b098..9528d99f4 100755
--- a/workflow/engine/xmlform/setup/skinsListOptions.xml
+++ b/workflow/engine/xmlform/setup/skinsListOptions.xml
@@ -1,8 +1,6 @@
-
-
- New
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/skinsNew.xml b/workflow/engine/xmlform/setup/skinsNew.xml
index 283da2991..9077c0e3e 100755
--- a/workflow/engine/xmlform/setup/skinsNew.xml
+++ b/workflow/engine/xmlform/setup/skinsNew.xml
@@ -1,45 +1,38 @@
-
-
-
-
- New Skin
-
-
-
-
- Skin Name
-
-
-
- Description
-
-
-
- Continue
-
-
-
- Cancel
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/upgrade.xml b/workflow/engine/xmlform/setup/upgrade.xml
index 70b8d5683..28ce0c9b6 100755
--- a/workflow/engine/xmlform/setup/upgrade.xml
+++ b/workflow/engine/xmlform/setup/upgrade.xml
@@ -1,34 +1,24 @@
-
-
- Upgrade System
-
-
-
-
- Current Version
-
-
-
- Max upload file size in bytes
-
-
-
- File
-
-
-
-
-
- Upgrade
-
-
-
-
-
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/setup/uplogo.xml b/workflow/engine/xmlform/setup/uplogo.xml
index 74fe0ffca..c40278d57 100755
--- a/workflow/engine/xmlform/setup/uplogo.xml
+++ b/workflow/engine/xmlform/setup/uplogo.xml
@@ -1,27 +1,21 @@
-
-
- Upload your logo
-
-
-
- Max upload file size in bytes
-
-
-
- File
-
-
-
-
-
- Upload
-
-
-
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/setup/uplogoList.xml b/workflow/engine/xmlform/setup/uplogoList.xml
index 96313a971..5f30b8151 100755
--- a/workflow/engine/xmlform/setup/uplogoList.xml
+++ b/workflow/engine/xmlform/setup/uplogoList.xml
@@ -1,27 +1,22 @@
-
-
- No.
-
-
- imagen
-
-
- name
-
-
- size
-
-
-
- Description
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/webServicesDetails.xml b/workflow/engine/xmlform/setup/webServicesDetails.xml
index 32fb7863e..03cd65ae6 100755
--- a/workflow/engine/xmlform/setup/webServicesDetails.xml
+++ b/workflow/engine/xmlform/setup/webServicesDetails.xml
@@ -1,28 +1,22 @@
-
-
- WSDL Server Details
-
-
-
- Server
-
-
-
- Port
-
-
-
- WSDL URI
-
-
-
- Workspace
- Espacio de Trabajo
-
-
-
- Session ID
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Espacio de Trabajo
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/webServicesSetup.xml b/workflow/engine/xmlform/setup/webServicesSetup.xml
index a575ca866..1b8d900de 100755
--- a/workflow/engine/xmlform/setup/webServicesSetup.xml
+++ b/workflow/engine/xmlform/setup/webServicesSetup.xml
@@ -1,36 +1,33 @@
-
-
- Client Setup
-
-
-
+
+
+
+
+
select * from protocol
- Protocol
+
Protocolo
-
-
- Server Host
-Host Servidor
-
-
- Workspace
-Espacio de Trabajo
-
-
- Port
-Puerto
-
-
-
-
- Cancel
-
-
-
+
+ Host Servidor
+
+
+
+ Espacio de Trabajo
+
+
+
+ Puerto
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/setup/weekend.xml b/workflow/engine/xmlform/setup/weekend.xml
index 55a369d52..291102dee 100755
--- a/workflow/engine/xmlform/setup/weekend.xml
+++ b/workflow/engine/xmlform/setup/weekend.xml
@@ -1,31 +1,30 @@
-
- Weekend days
-
-
- Monday
-
-
- Tuesday
-
-
- Wednesday
-
-
- Thursday
-
-
- Friday
-
-
- Saturday
-
-
- Sunday
-
-
- Accept
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/workPeriod.xml b/workflow/engine/xmlform/setup/workPeriod.xml
index dce11c6d2..4713293a9 100755
--- a/workflow/engine/xmlform/setup/workPeriod.xml
+++ b/workflow/engine/xmlform/setup/workPeriod.xml
@@ -1,59 +1,48 @@
-
- Weekend days
-
-
- Sunday
-
-
- Monday
-
-
- Tuesday
-
-
- Wednesday
-
-
- Thursday
-
-
- Friday
-
-
- Saturday
-
-
-
- First Period
-
-
-
- Start time
-
-
-
-
- End time
-
-
-
-
- Second period
-
-
-
- Start time
-
-
-
-
- End time
-
-
-
- Accept
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsAssignUserToGroup.xml b/workflow/engine/xmlform/setup/wsAssignUserToGroup.xml
index 65cc7ee8c..c98f69a72 100755
--- a/workflow/engine/xmlform/setup/wsAssignUserToGroup.xml
+++ b/workflow/engine/xmlform/setup/wsAssignUserToGroup.xml
@@ -1,26 +1,21 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
SELECT * from user
- User ID
+
ID User
-
-
+
SELECT * from group
- Group ID
+
ID Group
-
-
+
-
-
- AssignUserToGroup
- Usuario Asignado para un Grupo
-
-
-
\ No newline at end of file
+
+
+ Usuario Asignado para un Grupo
+
+
diff --git a/workflow/engine/xmlform/setup/wsCaseList.xml b/workflow/engine/xmlform/setup/wsCaseList.xml
index c8a3e2290..26cdfb404 100755
--- a/workflow/engine/xmlform/setup/wsCaseList.xml
+++ b/workflow/engine/xmlform/setup/wsCaseList.xml
@@ -1,15 +1,13 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
-
-
- CaseList
-Lista de casos
-
-
\ No newline at end of file
+
+
+ Lista de casos
+
+
diff --git a/workflow/engine/xmlform/setup/wsCreateUser.xml b/workflow/engine/xmlform/setup/wsCreateUser.xml
index 7e78c280d..454e9c130 100755
--- a/workflow/engine/xmlform/setup/wsCreateUser.xml
+++ b/workflow/engine/xmlform/setup/wsCreateUser.xml
@@ -1,42 +1,38 @@
-
-
- Session Id
-
-
-
- User ID
-ID de Usuario
-
-
- Password
-
-
-
- First Name
-Nombres
-
-
- Last Name
-Apellidos
-
-
- Email
-
-
-
+
+
+
+
+
+
+ ID de Usuario
+
+
+
+
+
+
+
+ Nombres
+
+
+
+ Apellidos
+
+
+
+
+
+
SELECT * from role
- Role
+
Rol
-
-
+
-
-
- CreateUser
- Craer Usuario
-
-
-
\ No newline at end of file
+
+
+ Craer Usuario
+
+
diff --git a/workflow/engine/xmlform/setup/wsDerivateCase.xml b/workflow/engine/xmlform/setup/wsDerivateCase.xml
index fb7d2091d..716c7091d 100755
--- a/workflow/engine/xmlform/setup/wsDerivateCase.xml
+++ b/workflow/engine/xmlform/setup/wsDerivateCase.xml
@@ -1,25 +1,19 @@
-
-
- Session Id
-
-
-
+
+
+
+
SELECT * from case
- Case ID
+
-
-
+
SELECT * from taskCases
- Task Case(delindex)
+
-
-
-
-
-
- DerivateCase
-
-
-
\ No newline at end of file
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsGroupList.xml b/workflow/engine/xmlform/setup/wsGroupList.xml
index 3cd2f348a..34d86037a 100755
--- a/workflow/engine/xmlform/setup/wsGroupList.xml
+++ b/workflow/engine/xmlform/setup/wsGroupList.xml
@@ -1,15 +1,13 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
-
-
- GroupList
-Lista de Grupo
-
-
\ No newline at end of file
+
+
+ Lista de Grupo
+
+
diff --git a/workflow/engine/xmlform/setup/wsInputDocumentList.xml b/workflow/engine/xmlform/setup/wsInputDocumentList.xml
index da0645631..49fa7a060 100755
--- a/workflow/engine/xmlform/setup/wsInputDocumentList.xml
+++ b/workflow/engine/xmlform/setup/wsInputDocumentList.xml
@@ -1,20 +1,15 @@
-
-
- Session Id
-
-
-
+
+
+
+
SELECT * from case
- Case ID
+
-
-
+
-
-
- InputDocumentList
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsInputDocumentProcessList.xml b/workflow/engine/xmlform/setup/wsInputDocumentProcessList.xml
index 8b0647c42..5be4a2c15 100755
--- a/workflow/engine/xmlform/setup/wsInputDocumentProcessList.xml
+++ b/workflow/engine/xmlform/setup/wsInputDocumentProcessList.xml
@@ -1,20 +1,15 @@
-
-
- Session Id
-
-
-
+
+
+
+
SELECT * from process
- Process ID
+
-
-
+
-
-
- InputDocumentProcessList
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsLogin.xml b/workflow/engine/xmlform/setup/wsLogin.xml
index 3398ddb0b..7e56625a7 100755
--- a/workflow/engine/xmlform/setup/wsLogin.xml
+++ b/workflow/engine/xmlform/setup/wsLogin.xml
@@ -1,26 +1,20 @@
-
-
- Login to WSDL Server
-
-
-
- User ID
-
-
-
- Password
-
-
-
-
-
-
- Login
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/setup/wsMessage.xml b/workflow/engine/xmlform/setup/wsMessage.xml
index cac96d591..3f3bf2923 100755
--- a/workflow/engine/xmlform/setup/wsMessage.xml
+++ b/workflow/engine/xmlform/setup/wsMessage.xml
@@ -1,8 +1,7 @@
-
-
- You do not have enabled the SOAP extension
-
-
-
\ No newline at end of file
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsNewCase.xml b/workflow/engine/xmlform/setup/wsNewCase.xml
index 5d498b108..bf6b8af96 100755
--- a/workflow/engine/xmlform/setup/wsNewCase.xml
+++ b/workflow/engine/xmlform/setup/wsNewCase.xml
@@ -1,27 +1,22 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
SELECT * from process
- Process ID
+
ID de Proceso
-
-
+
SELECT * from task
- Task ID
+
ID de Tarea
-
-
-
-
+
+
-
-
- NewCase
-Caso Nuevo
-
-
\ No newline at end of file
+
+
+ Caso Nuevo
+
+
diff --git a/workflow/engine/xmlform/setup/wsNewCaseImpersonate.xml b/workflow/engine/xmlform/setup/wsNewCaseImpersonate.xml
index 038464853..ff989fcab 100755
--- a/workflow/engine/xmlform/setup/wsNewCaseImpersonate.xml
+++ b/workflow/engine/xmlform/setup/wsNewCaseImpersonate.xml
@@ -1,27 +1,22 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
SELECT * from process
- Process ID
+
ID Proceso
-
-
+
SELECT * from user
- User ID
+
ID Usuario
-
-
-
-
+
+
-
-
- NewCaseImpersonate
-Nuevo caso
-
-
\ No newline at end of file
+
+
+ Nuevo caso
+
+
diff --git a/workflow/engine/xmlform/setup/wsOutputDocumentList.xml b/workflow/engine/xmlform/setup/wsOutputDocumentList.xml
index d872443c3..5f24bd96a 100755
--- a/workflow/engine/xmlform/setup/wsOutputDocumentList.xml
+++ b/workflow/engine/xmlform/setup/wsOutputDocumentList.xml
@@ -1,21 +1,15 @@
-
-
- Session Id
-
-
-
+
+
+
+
SELECT * from case
- Case ID
+
-
-
-
+
-
-
- OutputDocumentList
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsProcessList.xml b/workflow/engine/xmlform/setup/wsProcessList.xml
index 39b8c3350..524b36209 100755
--- a/workflow/engine/xmlform/setup/wsProcessList.xml
+++ b/workflow/engine/xmlform/setup/wsProcessList.xml
@@ -1,15 +1,13 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
-
-
- ProcessList
-Lista de Proceso
-
-
\ No newline at end of file
+
+
+ Lista de Proceso
+
+
diff --git a/workflow/engine/xmlform/setup/wsReassignCase.xml b/workflow/engine/xmlform/setup/wsReassignCase.xml
index d4042d6a9..3f1799035 100755
--- a/workflow/engine/xmlform/setup/wsReassignCase.xml
+++ b/workflow/engine/xmlform/setup/wsReassignCase.xml
@@ -1,35 +1,27 @@
-
-
- Session Id
-
-
-
+
+
+
+
SELECT * from case
- Case ID
+
-
-
+
SELECT * from taskCases
- Delindex
+
-
-
+
SELECT * from user
- User Source
+
-
-
+
SELECT * from user
- User Target
+
-
-
+
-
-
- ReassignCase
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsRemoveDocument.xml b/workflow/engine/xmlform/setup/wsRemoveDocument.xml
index 5e7d842a4..b417f5f25 100755
--- a/workflow/engine/xmlform/setup/wsRemoveDocument.xml
+++ b/workflow/engine/xmlform/setup/wsRemoveDocument.xml
@@ -1,20 +1,15 @@
-
-
- Session Id
-
-
-
+
+
+
+
SELECT * from documents
- Document ID
+
-
-
+
-
-
- RemoveDocument
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsRoleList.xml b/workflow/engine/xmlform/setup/wsRoleList.xml
index c0f23b55c..57744b8b5 100755
--- a/workflow/engine/xmlform/setup/wsRoleList.xml
+++ b/workflow/engine/xmlform/setup/wsRoleList.xml
@@ -1,15 +1,13 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
-
-
- RoleList
-Lista de Roles
-
-
\ No newline at end of file
+
+
+ Lista de Roles
+
+
diff --git a/workflow/engine/xmlform/setup/wsSendFiles.xml b/workflow/engine/xmlform/setup/wsSendFiles.xml
index 5d14a28f1..b8dcfdee8 100755
--- a/workflow/engine/xmlform/setup/wsSendFiles.xml
+++ b/workflow/engine/xmlform/setup/wsSendFiles.xml
@@ -1,39 +1,30 @@
-
-
- Session Id
-
-
-
-
+
+
+
+
+
-
-
- Send your file to the server
-
-
-
- Upload Option
-
-
-
+
+
+
+
+
+
+
SELECT * from documents
- Input Document
+
-
-
- File to Send
-
-
-
+
+
+
+
-
-
- Sending
-
-
-
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/setup/wsSendMessage.xml b/workflow/engine/xmlform/setup/wsSendMessage.xml
index f535a7943..eb6235115 100755
--- a/workflow/engine/xmlform/setup/wsSendMessage.xml
+++ b/workflow/engine/xmlform/setup/wsSendMessage.xml
@@ -1,44 +1,35 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
SELECT * from case
- Case ID
+
-
-
- From
-
-
-
- TO
-
-
-
- CC
-
-
-
- BCC
-
-
-
- Subject
-
-
-
- Message
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- SendMessage
-Enviar Mensaje
-
-
\ No newline at end of file
+
+
+ Enviar Mensaje
+
+
diff --git a/workflow/engine/xmlform/setup/wsSendVariables.xml b/workflow/engine/xmlform/setup/wsSendVariables.xml
index a052f4ca3..f64124255 100755
--- a/workflow/engine/xmlform/setup/wsSendVariables.xml
+++ b/workflow/engine/xmlform/setup/wsSendVariables.xml
@@ -1,36 +1,33 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
SELECT * from case
- Case ID
+
ID de Caso
-
-
- Name 1
-Nombre 1
-
-
- Value 1
-Valor 1
-
-
- Name 2
-Nombre 2
-
-
- Value 2
-Valor 2
-
-
+
+
+ Nombre 1
+
+
+
+ Valor 1
+
+
+
+ Nombre 2
+
+
+
+ Valor 2
+
+
-
-
- SendVariables
-Variables Enviadas
-
-
\ No newline at end of file
+
+
+ Variables Enviadas
+
+
diff --git a/workflow/engine/xmlform/setup/wsShowResult.xml b/workflow/engine/xmlform/setup/wsShowResult.xml
index 4beed2f1a..3dd76d908 100755
--- a/workflow/engine/xmlform/setup/wsShowResult.xml
+++ b/workflow/engine/xmlform/setup/wsShowResult.xml
@@ -1,15 +1,15 @@
-
-
- Status Code
-
-
-
- Message
-Mensaje
-
-
- Time Stamp
-Time Stamp
-
\ No newline at end of file
+
+
+
+
+
+
+ Mensaje
+
+
+
+ Time Stamp
+
+
diff --git a/workflow/engine/xmlform/setup/wsTaskCase.xml b/workflow/engine/xmlform/setup/wsTaskCase.xml
index 5b1a8520e..c60a6b4f7 100755
--- a/workflow/engine/xmlform/setup/wsTaskCase.xml
+++ b/workflow/engine/xmlform/setup/wsTaskCase.xml
@@ -1,20 +1,17 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
SELECT * from case
- Case ID
+
ID de Caso
-
-
+
-
-
- TaskCase
-Caso de Tareas
-
-
\ No newline at end of file
+
+
+ Caso de Tareas
+
+
diff --git a/workflow/engine/xmlform/setup/wsTaskList.xml b/workflow/engine/xmlform/setup/wsTaskList.xml
index e8c95e6c8..56511d24c 100755
--- a/workflow/engine/xmlform/setup/wsTaskList.xml
+++ b/workflow/engine/xmlform/setup/wsTaskList.xml
@@ -1,15 +1,13 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
-
-
- TaskList
-Lista de Tarea
-
-
\ No newline at end of file
+
+
+ Lista de Tarea
+
+
diff --git a/workflow/engine/xmlform/setup/wsTriggerList.xml b/workflow/engine/xmlform/setup/wsTriggerList.xml
index 6fb4d469a..93fd00e8d 100755
--- a/workflow/engine/xmlform/setup/wsTriggerList.xml
+++ b/workflow/engine/xmlform/setup/wsTriggerList.xml
@@ -1,15 +1,11 @@
-
-
- Session Id
-
-
-
+
+
+
+
-
-
- TriggerList
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsUnassignedCaseList.xml b/workflow/engine/xmlform/setup/wsUnassignedCaseList.xml
index 1c86843b4..b0516a4f6 100644
--- a/workflow/engine/xmlform/setup/wsUnassignedCaseList.xml
+++ b/workflow/engine/xmlform/setup/wsUnassignedCaseList.xml
@@ -1,15 +1,13 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
-
-
- UnassignedCaseList
-Lista de casos
-
-
\ No newline at end of file
+
+
+ Lista de casos
+
+
diff --git a/workflow/engine/xmlform/setup/wsUserList.xml b/workflow/engine/xmlform/setup/wsUserList.xml
index 7899fc905..33893af7e 100755
--- a/workflow/engine/xmlform/setup/wsUserList.xml
+++ b/workflow/engine/xmlform/setup/wsUserList.xml
@@ -1,15 +1,13 @@
-
-
- Session Id
-
-
-
+
+
+
+
+
-
-
- UserList
-Lista de Usuario
-
-
\ No newline at end of file
+
+
+ Lista de Usuario
+
+
diff --git a/workflow/engine/xmlform/setup/wsVariablesGrid.xml b/workflow/engine/xmlform/setup/wsVariablesGrid.xml
index f23a7796c..f3397e6c5 100755
--- a/workflow/engine/xmlform/setup/wsVariablesGrid.xml
+++ b/workflow/engine/xmlform/setup/wsVariablesGrid.xml
@@ -1,9 +1,11 @@
-
- Name
-Nombre
-
- Value
-Valor
-
\ No newline at end of file
+
+
+ Nombre
+
+
+
+ Valor
+
+
diff --git a/workflow/engine/xmlform/setup/wsrCaseList.xml b/workflow/engine/xmlform/setup/wsrCaseList.xml
index 507cb1292..dae5d4208 100755
--- a/workflow/engine/xmlform/setup/wsrCaseList.xml
+++ b/workflow/engine/xmlform/setup/wsrCaseList.xml
@@ -1,20 +1,15 @@
-
-
- GUID
-
-
-
- Case Title
-
-
-
- Status
-
-
-
- Del Index
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsrGroupList.xml b/workflow/engine/xmlform/setup/wsrGroupList.xml
index 28be59065..717d6cd41 100755
--- a/workflow/engine/xmlform/setup/wsrGroupList.xml
+++ b/workflow/engine/xmlform/setup/wsrGroupList.xml
@@ -1,12 +1,11 @@
-
-
- GUID
-
-
-
- Group Title
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsrInputDocumentList.xml b/workflow/engine/xmlform/setup/wsrInputDocumentList.xml
index 61d35a04d..cb526dcc6 100755
--- a/workflow/engine/xmlform/setup/wsrInputDocumentList.xml
+++ b/workflow/engine/xmlform/setup/wsrInputDocumentList.xml
@@ -1,30 +1,22 @@
-
-
-
-
- Filename
-
-
-
- Document GUID
-
-
-
- version
-
-
-
- create Date
-
-
-
- created by
-
-
-
- type
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsrInputDocumentProcessList.xml b/workflow/engine/xmlform/setup/wsrInputDocumentProcessList.xml
index d91e051c7..f9b23a248 100755
--- a/workflow/engine/xmlform/setup/wsrInputDocumentProcessList.xml
+++ b/workflow/engine/xmlform/setup/wsrInputDocumentProcessList.xml
@@ -1,18 +1,12 @@
-
-
-
- InputDocument GUID
-
-
-
- Name
-
-
-
- description
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsrOutputDocumentList.xml b/workflow/engine/xmlform/setup/wsrOutputDocumentList.xml
index 4a5b1b3d7..cb526dcc6 100755
--- a/workflow/engine/xmlform/setup/wsrOutputDocumentList.xml
+++ b/workflow/engine/xmlform/setup/wsrOutputDocumentList.xml
@@ -1,30 +1,22 @@
-
-
-
-
- Filename
-
-
-
- Document GUID
-
-
-
- version
-
-
-
- create Date
-
-
-
- created by
-
-
-
- type
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsrProcessList.xml b/workflow/engine/xmlform/setup/wsrProcessList.xml
index 6e63e047d..810c5af10 100755
--- a/workflow/engine/xmlform/setup/wsrProcessList.xml
+++ b/workflow/engine/xmlform/setup/wsrProcessList.xml
@@ -1,13 +1,11 @@
-
-
- GUID
-GUID
-
-
- Process Title
-
-
-
-
\ No newline at end of file
+
+
+ GUID
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsrRoleList.xml b/workflow/engine/xmlform/setup/wsrRoleList.xml
index eb9a46e3b..c9b926335 100755
--- a/workflow/engine/xmlform/setup/wsrRoleList.xml
+++ b/workflow/engine/xmlform/setup/wsrRoleList.xml
@@ -1,12 +1,11 @@
-
-
- GUID
-GUID
-
-
- Role Title
-
-
-
\ No newline at end of file
+
+
+ GUID
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsrTaskCase.xml b/workflow/engine/xmlform/setup/wsrTaskCase.xml
index e0ffb9530..6e1d393df 100755
--- a/workflow/engine/xmlform/setup/wsrTaskCase.xml
+++ b/workflow/engine/xmlform/setup/wsrTaskCase.xml
@@ -1,16 +1,12 @@
-
-
- Task Uid
-
-
-
- Task Title
-
-
-
- Delegate Index
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsrTaskList.xml b/workflow/engine/xmlform/setup/wsrTaskList.xml
index 9c07832c5..2326136ed 100755
--- a/workflow/engine/xmlform/setup/wsrTaskList.xml
+++ b/workflow/engine/xmlform/setup/wsrTaskList.xml
@@ -1,12 +1,11 @@
-
-
- GUID
-GUID
-
-
- Task Title
-
-
-
\ No newline at end of file
+
+
+ GUID
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsrTriggerList.xml b/workflow/engine/xmlform/setup/wsrTriggerList.xml
index 67a916115..f43ab1bc9 100755
--- a/workflow/engine/xmlform/setup/wsrTriggerList.xml
+++ b/workflow/engine/xmlform/setup/wsrTriggerList.xml
@@ -1,16 +1,12 @@
-
-
- GUID
-
-
-
- Task Title
-
-
-
- Process GUID/Title
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsrUnassignedCaseList.xml b/workflow/engine/xmlform/setup/wsrUnassignedCaseList.xml
index eafff347c..1d1e2c4b2 100644
--- a/workflow/engine/xmlform/setup/wsrUnassignedCaseList.xml
+++ b/workflow/engine/xmlform/setup/wsrUnassignedCaseList.xml
@@ -1,16 +1,12 @@
-
-
- GUID
-
-
-
- Case Title
-
-
-
- Del Index
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/setup/wsrUserList.xml b/workflow/engine/xmlform/setup/wsrUserList.xml
index 4c166ac50..16c43ea85 100755
--- a/workflow/engine/xmlform/setup/wsrUserList.xml
+++ b/workflow/engine/xmlform/setup/wsrUserList.xml
@@ -1,12 +1,11 @@
-
-
- GUID
-GUID
-
-
- User
-Usuario
-
-
\ No newline at end of file
+
+
+ GUID
+
+
+
+ Usuario
+
+
diff --git a/workflow/engine/xmlform/setup/wsremoveUserFromGroup.xml b/workflow/engine/xmlform/setup/wsremoveUserFromGroup.xml
index f4eb9884c..632458dab 100755
--- a/workflow/engine/xmlform/setup/wsremoveUserFromGroup.xml
+++ b/workflow/engine/xmlform/setup/wsremoveUserFromGroup.xml
@@ -1,18 +1,18 @@
- Session Id
+
SELECT * from user
- User ID
+
SELECT * from group
- Group ID
+
-
+
- RemoveUserToGroup
+
diff --git a/workflow/engine/xmlform/steps/conditions_Edit.xml b/workflow/engine/xmlform/steps/conditions_Edit.xml
index 0f84b7b96..9f20a3945 100755
--- a/workflow/engine/xmlform/steps/conditions_Edit.xml
+++ b/workflow/engine/xmlform/steps/conditions_Edit.xml
@@ -1,21 +1,15 @@
-
-
-
-
-
-
-
-
- Condition
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/steps/conditions_List.xml b/workflow/engine/xmlform/steps/conditions_List.xml
index 6b294a873..eb5808337 100755
--- a/workflow/engine/xmlform/steps/conditions_List.xml
+++ b/workflow/engine/xmlform/steps/conditions_List.xml
@@ -1,32 +1,24 @@
-
-
-
-
-
-
-
-
- Title
-
-
-
- Condition
-
-
-
-
-
-
- Apply Filter
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/steps/steps_List.xml b/workflow/engine/xmlform/steps/steps_List.xml
index ff962706c..15af79f78 100755
--- a/workflow/engine/xmlform/steps/steps_List.xml
+++ b/workflow/engine/xmlform/steps/steps_List.xml
@@ -1,44 +1,31 @@
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
- Type
-
-
-
- Mode
-
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/steps/steps_Options.xml b/workflow/engine/xmlform/steps/steps_Options.xml
index f5883db85..bad297ea6 100755
--- a/workflow/engine/xmlform/steps/steps_Options.xml
+++ b/workflow/engine/xmlform/steps/steps_Options.xml
@@ -1,32 +1,19 @@
-
-
- New
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/steps/steps_availableBB.xml b/workflow/engine/xmlform/steps/steps_availableBB.xml
index 53b38df72..6ddffe9fb 100755
--- a/workflow/engine/xmlform/steps/steps_availableBB.xml
+++ b/workflow/engine/xmlform/steps/steps_availableBB.xml
@@ -1,24 +1,24 @@
-
-
-
-
- Title
-
-
- Type
-
-
-
- Mode
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter( form ) {
@#PAGED_TABLE_ID.doFilter( form );
}
-
+
diff --git a/workflow/engine/xmlform/steps/triggersAfter_List.xml b/workflow/engine/xmlform/steps/triggersAfter_List.xml
index 4c1b89994..a3ddd9bfd 100755
--- a/workflow/engine/xmlform/steps/triggersAfter_List.xml
+++ b/workflow/engine/xmlform/steps/triggersAfter_List.xml
@@ -1,28 +1,18 @@
-
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/steps/triggersAfter_Options.xml b/workflow/engine/xmlform/steps/triggersAfter_Options.xml
index 4fb33c027..b24ca006a 100755
--- a/workflow/engine/xmlform/steps/triggersAfter_Options.xml
+++ b/workflow/engine/xmlform/steps/triggersAfter_Options.xml
@@ -1,18 +1,12 @@
-
-
-
-
- Add
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
\ No newline at end of file
+]]>
+
diff --git a/workflow/engine/xmlform/steps/triggersBefore_List.xml b/workflow/engine/xmlform/steps/triggersBefore_List.xml
index fcf7f4b31..1f127d172 100755
--- a/workflow/engine/xmlform/steps/triggersBefore_List.xml
+++ b/workflow/engine/xmlform/steps/triggersBefore_List.xml
@@ -1,28 +1,18 @@
-
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/steps/triggersBefore_Options.xml b/workflow/engine/xmlform/steps/triggersBefore_Options.xml
index e2f043d96..192a00466 100755
--- a/workflow/engine/xmlform/steps/triggersBefore_Options.xml
+++ b/workflow/engine/xmlform/steps/triggersBefore_Options.xml
@@ -1,17 +1,12 @@
-
-
-
-
- Add
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
\ No newline at end of file
+]]>
+
diff --git a/workflow/engine/xmlform/steps/triggersCondition_Edit.xml b/workflow/engine/xmlform/steps/triggersCondition_Edit.xml
index 091d373a5..38498378a 100755
--- a/workflow/engine/xmlform/steps/triggersCondition_Edit.xml
+++ b/workflow/engine/xmlform/steps/triggersCondition_Edit.xml
@@ -1,85 +1,75 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Condition
-
-
-
-
-
-Save
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/steps/triggers_Assign.xml b/workflow/engine/xmlform/steps/triggers_Assign.xml
index 7c6388994..7ba1aeee9 100755
--- a/workflow/engine/xmlform/steps/triggers_Assign.xml
+++ b/workflow/engine/xmlform/steps/triggers_Assign.xml
@@ -1,99 +1,86 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Available Triggers
-
-
-Triggers
-
-
-
-
-
-Condition
-
-
-
-Assign
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/steps/triggers_NoAssign.xml b/workflow/engine/xmlform/steps/triggers_NoAssign.xml
index ba05663f4..fe74a8bfa 100755
--- a/workflow/engine/xmlform/steps/triggers_NoAssign.xml
+++ b/workflow/engine/xmlform/steps/triggers_NoAssign.xml
@@ -1,12 +1,9 @@
-
-
-Triggers not created or all the triggers available were assigned!
-
-
-
-Close
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tasks/tasks_AssignmentRules.xml b/workflow/engine/xmlform/tasks/tasks_AssignmentRules.xml
index 81b6f0591..dffd432a8 100755
--- a/workflow/engine/xmlform/tasks/tasks_AssignmentRules.xml
+++ b/workflow/engine/xmlform/tasks/tasks_AssignmentRules.xml
@@ -1,77 +1,43 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Case to be assigned by
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- Variable for Value Based Assignment
-
-
-
- Variable for Self Service Value Based Assignment
-
-
-
-
-
- Set a timeout
-
-
-
- Time
-
-
-
-
- Time unit
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
- Trigger to execute
-
-
-
-
-
+
-
-
diff --git a/workflow/engine/xmlform/tasks/tasks_Definition.xml b/workflow/engine/xmlform/tasks/tasks_Definition.xml
index ca5fb95e0..6c45c4f60 100755
--- a/workflow/engine/xmlform/tasks/tasks_Definition.xml
+++ b/workflow/engine/xmlform/tasks/tasks_Definition.xml
@@ -1,38 +1,26 @@
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
- Description
-
-
-
- Variable for Case priority
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT FILE,NAME FROM _TEMPLATES1
- Routing Screen Template
-
-
+
-
-
- Starting task
-
-
-
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/tasks/tasks_Labels.xml b/workflow/engine/xmlform/tasks/tasks_Labels.xml
index b37c975d0..036213c0a 100755
--- a/workflow/engine/xmlform/tasks/tasks_Labels.xml
+++ b/workflow/engine/xmlform/tasks/tasks_Labels.xml
@@ -1,25 +1,16 @@
-
-
-
-
-
-
-
-
-
-
- Case Title
-
-
-
- Case Description
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/tasks/tasks_Notifications.xml b/workflow/engine/xmlform/tasks/tasks_Notifications.xml
index 264f1221e..b9aa507c7 100755
--- a/workflow/engine/xmlform/tasks/tasks_Notifications.xml
+++ b/workflow/engine/xmlform/tasks/tasks_Notifications.xml
@@ -1,230 +1,219 @@
-
-
-
-
-
-
-
-
-
-
- After routing notify the next assigned user(s)
-
-
-
- Subject
-
-
-
- Content Type
-
-
-
-
-
-
- Message
-
-
-
- SELECT FILE,NAME FROM _TEMPLATES1
- Template
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SELECT FILE,NAME FROM _TEMPLATES1
+
+
+
+
diff --git a/workflow/engine/xmlform/tasks/tasks_Owner.xml b/workflow/engine/xmlform/tasks/tasks_Owner.xml
index 3df914dbe..aef24b322 100755
--- a/workflow/engine/xmlform/tasks/tasks_Owner.xml
+++ b/workflow/engine/xmlform/tasks/tasks_Owner.xml
@@ -1,12 +1,8 @@
-
-
-
-
-
-
- Set task performer as
-
-
-
\ No newline at end of file
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tasks/tasks_Permissions.xml b/workflow/engine/xmlform/tasks/tasks_Permissions.xml
index b50115c68..170741104 100755
--- a/workflow/engine/xmlform/tasks/tasks_Permissions.xml
+++ b/workflow/engine/xmlform/tasks/tasks_Permissions.xml
@@ -1,29 +1,15 @@
-
-
-
-
-
-
-
-
- Exceptions Handling
-
-
-
-
-
-
-
- Allow arbitrary transfer (Ad hoc)
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/tasks/tasks_TimingControl.xml b/workflow/engine/xmlform/tasks/tasks_TimingControl.xml
index f03df29a6..6a6587205 100755
--- a/workflow/engine/xmlform/tasks/tasks_TimingControl.xml
+++ b/workflow/engine/xmlform/tasks/tasks_TimingControl.xml
@@ -1,34 +1,25 @@
-
-
-
-
-
-
-
-
- Allow user defined timing control
-
-
-
- Task duration
-
-
-
- Time unit
-
-
-
- Count days by
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT CALENDAR_UID, CALENDAR_NAME FROM availableCalendars
-Calendar
+
-
-
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/tools/translationAdd.xml b/workflow/engine/xmlform/tools/translationAdd.xml
index 47a83bf55..c9b884ebf 100755
--- a/workflow/engine/xmlform/tools/translationAdd.xml
+++ b/workflow/engine/xmlform/tools/translationAdd.xml
@@ -1,25 +1,18 @@
-
-
-
- Insert Translation
-
-
-
- category
-
-
-
- Id
-
-
-
- value
-
-
-
- save
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tools/translationsList.xml b/workflow/engine/xmlform/tools/translationsList.xml
index f6addf5af..fbe2e554e 100755
--- a/workflow/engine/xmlform/tools/translationsList.xml
+++ b/workflow/engine/xmlform/tools/translationsList.xml
@@ -1,33 +1,18 @@
-
-
-
-
- Category
-
-
-
- Id
-
-
-
- Value
-
-
-
- Edit
-
-
-
- Delete
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tools/updateTranslation.xml b/workflow/engine/xmlform/tools/updateTranslation.xml
index 4ce62dc8b..e07af3bec 100755
--- a/workflow/engine/xmlform/tools/updateTranslation.xml
+++ b/workflow/engine/xmlform/tools/updateTranslation.xml
@@ -1,29 +1,21 @@
-
-
-
- UpdateTranslation
-
-
-
- file
-
-
-
- rows
-
-
-
- JavaScript Update Translation
-
-
-
- file
-
-
-
- rows
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/login.xml b/workflow/engine/xmlform/tracker/login.xml
index 4dc4fbeca..6ecfeb0d6 100755
--- a/workflow/engine/xmlform/tracker/login.xml
+++ b/workflow/engine/xmlform/tracker/login.xml
@@ -1,18 +1,15 @@
-
- CASE TRACKER
-
-
-
- Case Code
-
-
-
- Pin
-
-
-
- Enter
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_AvailableCaseTrackerObjects.xml b/workflow/engine/xmlform/tracker/tracker_AvailableCaseTrackerObjects.xml
index 4c18be443..31ad06ae6 100755
--- a/workflow/engine/xmlform/tracker/tracker_AvailableCaseTrackerObjects.xml
+++ b/workflow/engine/xmlform/tracker/tracker_AvailableCaseTrackerObjects.xml
@@ -1,18 +1,14 @@
-
-
-
-
-
-
- Title
-
-
-
- Type
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_AvailableStageTasks.xml b/workflow/engine/xmlform/tracker/tracker_AvailableStageTasks.xml
index 9fb7baa1d..4c23cef5c 100755
--- a/workflow/engine/xmlform/tracker/tracker_AvailableStageTasks.xml
+++ b/workflow/engine/xmlform/tracker/tracker_AvailableStageTasks.xml
@@ -1,14 +1,11 @@
-
-
-
-
-
-
- Title
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_ConditionsEdit.xml b/workflow/engine/xmlform/tracker/tracker_ConditionsEdit.xml
index 4329a0771..1596874c7 100755
--- a/workflow/engine/xmlform/tracker/tracker_ConditionsEdit.xml
+++ b/workflow/engine/xmlform/tracker/tracker_ConditionsEdit.xml
@@ -1,19 +1,14 @@
-
-
-
-
-
-
- Condition
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/tracker/tracker_Configuration.xml b/workflow/engine/xmlform/tracker/tracker_Configuration.xml
index fea72b18b..1358ba9e6 100755
--- a/workflow/engine/xmlform/tracker/tracker_Configuration.xml
+++ b/workflow/engine/xmlform/tracker/tracker_Configuration.xml
@@ -1,33 +1,25 @@
-
-
-
-
- Map type
-
-
-
- Edit
-
-
-
- Routing History
-
-
-
- Messages History
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/tracker/tracker_DynaDocs.xml b/workflow/engine/xmlform/tracker/tracker_DynaDocs.xml
index 87ae11a15..b31926c1d 100755
--- a/workflow/engine/xmlform/tracker/tracker_DynaDocs.xml
+++ b/workflow/engine/xmlform/tracker/tracker_DynaDocs.xml
@@ -1,18 +1,13 @@
-
+
-
-
-
-
- Title
-
-
-
- Type
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_Inputdocs.xml b/workflow/engine/xmlform/tracker/tracker_Inputdocs.xml
index 8233c8606..63dc1b555 100755
--- a/workflow/engine/xmlform/tracker/tracker_Inputdocs.xml
+++ b/workflow/engine/xmlform/tracker/tracker_Inputdocs.xml
@@ -1,20 +1,13 @@
-
+
-
-
-
-
-
-
-
-
-
-
- Filename/Comments
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_Messages.xml b/workflow/engine/xmlform/tracker/tracker_Messages.xml
index 10eb9660b..670a36f68 100755
--- a/workflow/engine/xmlform/tracker/tracker_Messages.xml
+++ b/workflow/engine/xmlform/tracker/tracker_Messages.xml
@@ -1,27 +1,20 @@
-
+
-
-
-
-
-
- DATE
-
-
-
- SUBJECT
-
-
-
- FROM
-
-
-
- TO
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_MessagesView.xml b/workflow/engine/xmlform/tracker/tracker_MessagesView.xml
index 63673c632..299a8e4cc 100755
--- a/workflow/engine/xmlform/tracker/tracker_MessagesView.xml
+++ b/workflow/engine/xmlform/tracker/tracker_MessagesView.xml
@@ -1,32 +1,24 @@
-
+
-
-
-
-
-
-
- MESSAGE
-
-
-
- SUBJECT
-
-
-
- FROM
-
-
-
- TO
-
-
-
- DATE
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_No.xml b/workflow/engine/xmlform/tracker/tracker_No.xml
index 6a4d416d0..d24446f07 100755
--- a/workflow/engine/xmlform/tracker/tracker_No.xml
+++ b/workflow/engine/xmlform/tracker/tracker_No.xml
@@ -1,10 +1,6 @@
-
+
-
-
-
- It is not possible to see information related to this case. Please contact the System Administrator.
-
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_Outputdocs.xml b/workflow/engine/xmlform/tracker/tracker_Outputdocs.xml
index c13241f20..5d2cfb0c7 100755
--- a/workflow/engine/xmlform/tracker/tracker_Outputdocs.xml
+++ b/workflow/engine/xmlform/tracker/tracker_Outputdocs.xml
@@ -1,18 +1,13 @@
-
+
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_StageEdit.xml b/workflow/engine/xmlform/tracker/tracker_StageEdit.xml
index 2463165d3..f21bc6097 100755
--- a/workflow/engine/xmlform/tracker/tracker_StageEdit.xml
+++ b/workflow/engine/xmlform/tracker/tracker_StageEdit.xml
@@ -1,32 +1,23 @@
-
+
-
-
- Stage Information
-
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/tracker/tracker_StageTasks.xml b/workflow/engine/xmlform/tracker/tracker_StageTasks.xml
index 2348d5725..7b21b48ef 100755
--- a/workflow/engine/xmlform/tracker/tracker_StageTasks.xml
+++ b/workflow/engine/xmlform/tracker/tracker_StageTasks.xml
@@ -1,12 +1,8 @@
-
+
-
-
-
-
- Title
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_TasksOptions.xml b/workflow/engine/xmlform/tracker/tracker_TasksOptions.xml
index 3f9ac90ea..7be5df2f9 100755
--- a/workflow/engine/xmlform/tracker/tracker_TasksOptions.xml
+++ b/workflow/engine/xmlform/tracker/tracker_TasksOptions.xml
@@ -1,17 +1,12 @@
-
-
-
-
-
-
-
- Assign
-
-
-
-
-
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/tracker/tracker_TransferHistory.xml b/workflow/engine/xmlform/tracker/tracker_TransferHistory.xml
index ae27dadd2..f82addb0d 100755
--- a/workflow/engine/xmlform/tracker/tracker_TransferHistory.xml
+++ b/workflow/engine/xmlform/tracker/tracker_TransferHistory.xml
@@ -1,35 +1,27 @@
-
- Task
-
-
-
- Delegated User
-
-
-
- Delegated User
-
-
-
- Delegated User
-
-
-
- Task Transfer Date
-
-
-
- Start Date
-
-
-
- End Date
-
-
-
- Action
-
-
-
\ No newline at end of file
+
+
+
+
+ Delegated User
+
+
+ Delegated User
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument.xml b/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument.xml
index 9b8e7fe66..bcca7eede 100755
--- a/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument.xml
+++ b/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument.xml
@@ -1,24 +1,16 @@
-
-
-
-
-
-
- Filename
-
-
-
- Created Date
-
-
-
-
-
-
-
- File
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument1.xml b/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument1.xml
index bb275e48d..a7a97ce12 100755
--- a/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument1.xml
+++ b/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument1.xml
@@ -1,40 +1,28 @@
-
-
-
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
- Created Date
-
-
-
-
-
-
-
-
- File
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument2.xml b/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument2.xml
index 107a24eae..e9af610b8 100755
--- a/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument2.xml
+++ b/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument2.xml
@@ -1,37 +1,26 @@
-
+
-
-
-
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
- Created Date
-
-
-
-
-
- Comments
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument3.xml b/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument3.xml
index 9d603f5d8..4ca6ab2d4 100755
--- a/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument3.xml
+++ b/workflow/engine/xmlform/tracker/tracker_ViewAnyInputDocument3.xml
@@ -1,45 +1,31 @@
-
-
-
-
-
-
- Title
-
-
-
- Description
-
-
-
- Document Type
-
-
-
- Format
-
-
-
- Created Date
-
-
-
-
-
- Comments
-
-
-
-
-
-
-
- File
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/tracker/tracker_ViewAnyOutputDocument.xml b/workflow/engine/xmlform/tracker/tracker_ViewAnyOutputDocument.xml
index 7f94414b7..26a7e5b81 100755
--- a/workflow/engine/xmlform/tracker/tracker_ViewAnyOutputDocument.xml
+++ b/workflow/engine/xmlform/tracker/tracker_ViewAnyOutputDocument.xml
@@ -1,28 +1,18 @@
-
-
- Output document
-
-
-
-
-
- Create Date
-
-
-
-
-
-
-
-
-
- File (.doc)
-
-
-
- File (.pdf)
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_back.xml b/workflow/engine/xmlform/tracker/tracker_back.xml
index 267cae6d5..1f62528da 100755
--- a/workflow/engine/xmlform/tracker/tracker_back.xml
+++ b/workflow/engine/xmlform/tracker/tracker_back.xml
@@ -1,9 +1,6 @@
-
-
-
- Back
-
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_objectsList.xml b/workflow/engine/xmlform/tracker/tracker_objectsList.xml
index 4ae810e7c..4a5301832 100755
--- a/workflow/engine/xmlform/tracker/tracker_objectsList.xml
+++ b/workflow/engine/xmlform/tracker/tracker_objectsList.xml
@@ -1,28 +1,17 @@
-
+
-
-
-
-
-
-
-
-
-
-
- Title
-
-
-
- Type
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/tracker/tracker_objectsOptions.xml b/workflow/engine/xmlform/tracker/tracker_objectsOptions.xml
index 5da56fe98..1f935a66f 100755
--- a/workflow/engine/xmlform/tracker/tracker_objectsOptions.xml
+++ b/workflow/engine/xmlform/tracker/tracker_objectsOptions.xml
@@ -1,17 +1,12 @@
-
-
-
-
-
- Assign
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/triggers/dynavars.xml b/workflow/engine/xmlform/triggers/dynavars.xml
index fbd7edcc1..5aad10c1f 100755
--- a/workflow/engine/xmlform/triggers/dynavars.xml
+++ b/workflow/engine/xmlform/triggers/dynavars.xml
@@ -1,18 +1,13 @@
-
-
-
-
- Variable
-
-
-
- Variable
-
-
-
-
-
\ No newline at end of file
+
+
+ Variable
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/triggers/triggerCopy.xml b/workflow/engine/xmlform/triggers/triggerCopy.xml
index 3aad51d18..b0dc6c3af 100644
--- a/workflow/engine/xmlform/triggers/triggerCopy.xml
+++ b/workflow/engine/xmlform/triggers/triggerCopy.xml
@@ -1,89 +1,52 @@
-
-
-
-
-
-
-
-
-
- Trigger Information
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
- Process
-
-
-
-
-
-
+
-
-
- Trigger
-
-
-
-
-
-
+
-
-
-
-
- Title of the new trigger
-
-
-
-
+
+
+
+
-
- Description of the new trigger
-
-
-
-
+
-
- Script
-
-
-
- Copy/Import and Save
-
-
-
- Cancel
-
-
-
-
+
+
+
+
+
+
+
-
+ ]]>
-
diff --git a/workflow/engine/xmlform/triggers/triggersCustom.xml b/workflow/engine/xmlform/triggers/triggersCustom.xml
index 37337233a..599ae0fdc 100755
--- a/workflow/engine/xmlform/triggers/triggersCustom.xml
+++ b/workflow/engine/xmlform/triggers/triggersCustom.xml
@@ -1,36 +1,29 @@
-
-
-
-
-
- Trigger Information
-
-
-
-
- Title
-
-
-
-
-
- Description
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- Save
-
-
-
- Cancel
-
-
-
-
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/triggers/triggersNarrowEdit.xml b/workflow/engine/xmlform/triggers/triggersNarrowEdit.xml
index 30534920f..c9c3b732a 100755
--- a/workflow/engine/xmlform/triggers/triggersNarrowEdit.xml
+++ b/workflow/engine/xmlform/triggers/triggersNarrowEdit.xml
@@ -1,31 +1,23 @@
-
+
-
-
-
-
- Trigger Script
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Cancel
-
-
-
- Save
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/triggers/triggersProperties.xml b/workflow/engine/xmlform/triggers/triggersProperties.xml
index a7b1b45ed..da44efbcb 100755
--- a/workflow/engine/xmlform/triggers/triggersProperties.xml
+++ b/workflow/engine/xmlform/triggers/triggersProperties.xml
@@ -3,21 +3,21 @@
- Trigger Information
+
- Title
+
- Description
+
- Cancel
+
- Save
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
- Cancel
-
-
-
- Save
-
-
+
+
+
+
+
+
-
+
diff --git a/workflow/engine/xmlform/triggers/triggers_Options.xml b/workflow/engine/xmlform/triggers/triggers_Options.xml
index 3adab43c3..929a79476 100755
--- a/workflow/engine/xmlform/triggers/triggers_Options.xml
+++ b/workflow/engine/xmlform/triggers/triggers_Options.xml
@@ -1,230 +1,208 @@
-
-
-
-
- New
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- "+ response.xmlhttp.responseText);
- }
- }.extend(this);
- oRPC.make();
- }
-
- function triggerNewWizard(nameFunction, library) {//alert('@G::encryptlink(@#triggerNewWizard)?PRO_UID=@%PRO_UID&NAME_FUN='+nameFunction+'& PARAMETERS_FUN='+parametersFunct+'&PAGED_TABLE_ID='+@#PAGED_TABLE_ID);return;
- popupWindow('@G::LoadTranslation(ID_NEW_TRIGGERS)', '@G::encryptlink(@#triggerNewWizard)?PRO_UID=@%PRO_UID&NAME_FUN='+nameFunction+'&LIBRARY='+library+'&PAGED_TABLE_ID='+@#PAGED_TABLE_ID , 600, 600);
- }
-
- function reloadTriggersShortList(){
- //@#PAGED_TABLE_ID.refresh();
- if(Pm.panels.buildingBlocks){
- Pm.data.render.buildingBlocks.injector('triggers');
- }
- }
-
-]]>
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "+ response.xmlhttp.responseText);
+ }
+ }.extend(this);
+ oRPC.make();
+ }
+
+ function triggerNewWizard(nameFunction, library) {//alert('@G::encryptlink(@#triggerNewWizard)?PRO_UID=@%PRO_UID&NAME_FUN='+nameFunction+'& PARAMETERS_FUN='+parametersFunct+'&PAGED_TABLE_ID='+@#PAGED_TABLE_ID);return;
+ popupWindow('@G::LoadTranslation(ID_NEW_TRIGGERS)', '@G::encryptlink(@#triggerNewWizard)?PRO_UID=@%PRO_UID&NAME_FUN='+nameFunction+'&LIBRARY='+library+'&PAGED_TABLE_ID='+@#PAGED_TABLE_ID , 600, 600);
+ }
+
+ function reloadTriggersShortList(){
+ //@#PAGED_TABLE_ID.refresh();
+ if(Pm.panels.buildingBlocks){
+ Pm.data.render.buildingBlocks.injector('triggers');
+ }
+ }
+
+]]>
+
+
+
+
diff --git a/workflow/engine/xmlform/triggers/triggers_ShortList.xml b/workflow/engine/xmlform/triggers/triggers_ShortList.xml
index ad58fa8ee..298537e8f 100755
--- a/workflow/engine/xmlform/triggers/triggers_ShortList.xml
+++ b/workflow/engine/xmlform/triggers/triggers_ShortList.xml
@@ -1,33 +1,23 @@
-
-
-
-
-
-
- Title
-
-
-
-
-
-
-
-
-
-
-
-
- Apply Filter
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
function pagedTableFilter(form) {
@#PAGED_TABLE_ID.doFilter(form);
}
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/triggers/wizardOptions.xml b/workflow/engine/xmlform/triggers/wizardOptions.xml
index 359ea0e75..6db7833d3 100755
--- a/workflow/engine/xmlform/triggers/wizardOptions.xml
+++ b/workflow/engine/xmlform/triggers/wizardOptions.xml
@@ -1,10 +1,9 @@
-
+
-
-
- Param Name
-
-
- Param Value
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/users/myInfo.xml b/workflow/engine/xmlform/users/myInfo.xml
index 69742f337..f7e009488 100755
--- a/workflow/engine/xmlform/users/myInfo.xml
+++ b/workflow/engine/xmlform/users/myInfo.xml
@@ -1,128 +1,94 @@
-
- Profile
+
-
- Photo
+
-
- Resume
+
-
- Personal Information
+
-
- First Name
+
-
- Last Name
+
- User ID
+
-
- Email
+
-
- Address
+
-
- Zip/Postal Code
+
-
SELECT IC_UID, IC_NAME FROM ISO_COUNTRY ORDER BY IC_NAME
- Country
+
-
-
-
- State or Region
-
-
-
- Location
-
+
+
- Phone
+
- Position
+
-
- Expiration Date
+
- Status
+
-
-
- Role
-
-
-
- Reports to
+
+
+
-
- Department
-
-
-
+
+
- Change Password
+
-
- New Password
+
-
- Confirm Password
+
-
- Preferences
+
-
-
SELECT * FROM menutab
- Default Main Menu Option
+
-
SELECT * FROM CASES_MENU
- Default Cases Menu Option
+
-
- Save
+
-
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/myInfo2.xml b/workflow/engine/xmlform/users/myInfo2.xml
index a291af1a5..c5d706ab9 100755
--- a/workflow/engine/xmlform/users/myInfo2.xml
+++ b/workflow/engine/xmlform/users/myInfo2.xml
@@ -1,128 +1,129 @@
-
-
+
-
-
-
-
- Profile
-
-
-
-
-
- Photo
-
-
-
- Resume
-
-
-
- Personal Information
-
-
-
- First Name
-NombresNome
-
- Last Name
-ApellidosSobrenome
-
- User ID
-ID Usuario
-
-
- Email
-Email
-
-
- Address
-
-
-
- Zip/Postal Code
-CEP
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Nombres
+ Nome
+
+
+
+ Apellidos
+ Sobrenome
+
+
+
+ ID Usuario
+
+
+
+
+ Email
+
+
+
+
+
+
+
+
+
+
+ CEP
+
+
SELECT IC_UID, IC_NAME FROM ISO_COUNTRY ORDER BY IC_NAME
- Country
+
-State or Region
-
-
+ Location
-LocalidadCidade
-
- Phone
-Telefone
-
- Position
-
-
-
- Expiration Date
-
-
- Status
-EstadoEstado
-LocalidadCidade
+
+
+
+ Telefone
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Estado
+ Estado
+
+ Role
-RolePapel
-
-
- Reports to
-
-
-
- Department
-
-
-
- Change Password
-Alterar Senha
-
-
- New Password
-Nova Senha
-
-
- Confirm Password
-Confirmar Senha
-
-
- Preferences
-
-
-RolePapel
+
+
+
+
+
+
+
+
+
+ Alterar Senha
+
+
+
+
+ Nova Senha
+
+
+
+
+ Confirmar Senha
+
+
+
+
+ Default languaje
-
-
-
+ ]]>
+
SELECT * FROM menutab
- Default menu option
+
-
-
- Save
-GuardarSalvar
-
-
-
-
-
-
-
-
-
-
+
+ Guardar
+ Salvar
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/myInfoOptions.xml b/workflow/engine/xmlform/users/myInfoOptions.xml
index eaf78f068..08561cf4d 100755
--- a/workflow/engine/xmlform/users/myInfoOptions.xml
+++ b/workflow/engine/xmlform/users/myInfoOptions.xml
@@ -1,9 +1,9 @@
-
- Edit
-
-
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/myInfoOptionsView.xml b/workflow/engine/xmlform/users/myInfoOptionsView.xml
index f4579a3a1..ed822ff8e 100755
--- a/workflow/engine/xmlform/users/myInfoOptionsView.xml
+++ b/workflow/engine/xmlform/users/myInfoOptionsView.xml
@@ -1,9 +1,9 @@
-
+
-
- Cancel
-
-
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/myInfoView.xml b/workflow/engine/xmlform/users/myInfoView.xml
index 22da07585..7fbb878b1 100755
--- a/workflow/engine/xmlform/users/myInfoView.xml
+++ b/workflow/engine/xmlform/users/myInfoView.xml
@@ -1,139 +1,102 @@
-
+
-
-
- Profile
+
-
-
- Photo
+
-
- Resume
+
-
- Personal Information
+
-
- First Name
+
-
- Last Name
+
-
- User ID
+
-
SELECT USR_UID, USR_USERNAME FROM USERS WHERE USR_USERNAME = @@USR_USERNAME
Exists
-
- Email
+
-
- Address
+
-
- Zip/Postal Code
+
-
SELECT IC_UID, IC_NAME FROM ISO_COUNTRY ORDER BY IC_NAME
- Country
+
-
State or Region
-
-
+ ]]>
Location
-
-
+ ]]>
- Phone
+
-
- Position
+
-
- Expiration Date
+
-
- Status
+
-
Role
-
-
-
- Reports to
-
-
-
- Department
-
-
-
+ ]]>
+
+
+
+
+
+
- Change Password
+
-
- New Password
+
-
- Confirm Password
+
-
- Preferences
+
-
-
SELECT * FROM menutab
- Default Main Menu Option
+
-
SELECT * FROM CASES_MENU
- Default Cases Menu Option
+
-
- Save
+
-
-
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/myInfoView2.xml b/workflow/engine/xmlform/users/myInfoView2.xml
index 4c85b2061..cad0cd30d 100755
--- a/workflow/engine/xmlform/users/myInfoView2.xml
+++ b/workflow/engine/xmlform/users/myInfoView2.xml
@@ -1,134 +1,98 @@
-
+
-
- Profile
+
-
-
- Photo
+
-
- Resume
+
-
- Personal Information
+
-
- First Name
+
-
- Last Name
+
-
- User ID
+
-
SELECT USR_UID, USR_USERNAME FROM USERS WHERE USR_USERNAME = @@USR_USERNAME
Exists
-
- Email
+
-
- Address
+
-
- Zip/Postal Code
+
-
SELECT IC_UID, IC_NAME FROM ISO_COUNTRY ORDER BY IC_NAME
- Country
+
-
State or Region
-
-
+ ]]>
Location
-
-
+ ]]>
- Phone
+
-
- Position
+
-
- Expiration Date
+
-
- Status
+
-
Role
-
-
-
- Reports to
-
-
-
- Department
-
-
+ ]]>
+
+
+
+
+
+
- Change Password
+
-
- New Password
+
-
- Confirm Password
+
-
- Preferences
+
-
Default languaje
-
-
+ ]]>
SELECT * FROM menutab
- Default menu option
+
-
SELECT * FROM CASES_MENU
- Default Cases menu option
+
-
- Save
+
-
-
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_AuthSource.xml b/workflow/engine/xmlform/users/users_AuthSource.xml
index 7cf9a73ba..a2ff74843 100755
--- a/workflow/engine/xmlform/users/users_AuthSource.xml
+++ b/workflow/engine/xmlform/users/users_AuthSource.xml
@@ -1,30 +1,23 @@
-
-
- Authentication Source Assignment
-
-
-
-
-
+
+
+
+
+
SELECT AUTH_SOURCE_UID, AUTH_SOURCE_NAME FROM AUTHENTICATION_SOURCE
- Authentication Source
+
-
-
- DN
-
-
-
- Cancel
-
-
-
- Save
-
-
-
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_AvailableUsers.xml b/workflow/engine/xmlform/users/users_AvailableUsers.xml
index 8eb04fc3a..4efe956f3 100755
--- a/workflow/engine/xmlform/users/users_AvailableUsers.xml
+++ b/workflow/engine/xmlform/users/users_AvailableUsers.xml
@@ -1,12 +1,13 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/users/users_DeleteAssign.xml b/workflow/engine/xmlform/users/users_DeleteAssign.xml
index c18a9d72f..778c47518 100755
--- a/workflow/engine/xmlform/users/users_DeleteAssign.xml
+++ b/workflow/engine/xmlform/users/users_DeleteAssign.xml
@@ -1,25 +1,21 @@
-
-
- User cases summary]]>
-
-
-
-
-
-
-
- To Do
-
-
- Draft
-
-
- Completed
-
-
- Cancelled
-
-
-
\ No newline at end of file
+
+ User cases summary]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/users/users_Edit.xml b/workflow/engine/xmlform/users/users_Edit.xml
index 921ab6227..8c7469726 100755
--- a/workflow/engine/xmlform/users/users_Edit.xml
+++ b/workflow/engine/xmlform/users/users_Edit.xml
@@ -1,134 +1,95 @@
-
-
-
-
-
-
-
-
-
-
- Profile
-
-
-
- Photo
-
-
- Resume
-
-
-
-
- Personal Information
-
-
-
-
-
- First Name
-
-
-
- Last Name
-
-
-
- User ID (*)
-
-
-
- Email
-
-
-
- Address
-
-
-
- Zip/Postal Code
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT IC_UID, IC_NAME FROM ISO_COUNTRY ORDER BY IC_NAME
- Country
+
-
-State or Region
-
-
-
+ Location
-
-
-
- Phone
-
-
-
- Position
-
-
-
+
+
+
+
+
+
+ Reports to
-
-
-
+ Replaced by
-
-
-
- Expiration Date
-
-
-
+ ]]>
+
+
+
+
SELECT CALENDAR_UID, CALENDAR_NAME FROM availableCalendars
-Calendar
+
-
-
- Status
-
-
-
+
+
+ Role
-
-
-
- Change Password
-
-
-
- New Password
-
-
-
- Confirm Password
-
-
-
- Save
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_EditAdmin.xml b/workflow/engine/xmlform/users/users_EditAdmin.xml
index 459686cd5..16b68ca0c 100755
--- a/workflow/engine/xmlform/users/users_EditAdmin.xml
+++ b/workflow/engine/xmlform/users/users_EditAdmin.xml
@@ -1,127 +1,125 @@
-
-
-
-
-
-
-
-
-
-
- Personal Information
-
-
-
-
-
- First Name
-NombreNome
-
-
- Last Name
-ApellidoSobrenome
-
-
- User ID (*)
-ID de usuario (*)
-
-
- Email
-
-
-
- Address
-
-
-
- Zip/Postal Code
-CEP
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Nombre
+ Nome
+
+
+
+ Apellido
+ Sobrenome
+
+
+
+ ID de usuario (*)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CEP
+
+
SELECT IC_UID, IC_NAME FROM ISO_COUNTRY ORDER BY IC_NAME
- Country
+
-
-State or Region
-
-
-
+ Location
-Cidade
-
-
- Phone
-Telefone
-
-
-
- Position
-
-
-Cidade
+
+
+
+ Telefone
+
+
+
+
+
+
+ Reports to
-
-
-
+ Replaced by
-
-
-
- Expiration Date
-Fecha de vencimiento
-
-
- Status
-EstadoEstado
-
-
+
+
+ Fecha de vencimiento
+
+
+
+
+ Estado
+ Estado
+
+ Role
-RolPapel
-
-
- Change Password
-Alterar Senha
-
-
- New Password
-Nova Senha
-
-
- Confirm Password
-Confirmar Senha
-
-
- Additional Information
-
-
-
- Photo
-Fotografia
-
- Resume
-Hoja de vidaRetomar
-
-
- Save
-GuardarSalvar
-
-
-
-
-
-
-
-
-
-RolPapel
+
+
+
+ Alterar Senha
+
+
+
+
+ Nova Senha
+
+
+
+
+ Confirmar Senha
+
+
+
+
+
+
+
+
+
+ Fotografia
+
+
+
+ Hoja de vida
+ Retomar
+
+
+
+ Guardar
+ Salvar
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_EditLDAP.xml b/workflow/engine/xmlform/users/users_EditLDAP.xml
index 4cb3dff18..916056f3c 100644
--- a/workflow/engine/xmlform/users/users_EditLDAP.xml
+++ b/workflow/engine/xmlform/users/users_EditLDAP.xml
@@ -4,102 +4,93 @@
- Profile
+
-
+
- Photo
+
- Resume
+
- Max upload files size in bytes
+
- Personal Information
+
- First Name
+
- Last Name
+
- User ID (*)
+
- Email
+
- Address
+
- Zip/Postal Code
+
SELECT IC_UID, IC_NAME FROM ISO_COUNTRY ORDER BY IC_NAME
- Country
+
State or Region
-
+ SELECT IS_UID, IS_NAME FROM ISO_SUBDIVISION WHERE IC_UID = "@#USR_COUNTRY" ORDER BY IS_NAME ]]>
Location
-
+ SELECT IL_UID, IL_NAME FROM ISO_LOCATION WHERE IC_UID = "@#USR_COUNTRY" AND IS_UID = "@#USR_CITY" AND IS_UID NOT IN ("") ORDER BY IL_NAME ]]>
- Phone
+
- Position
+
- Reports to
+
- Department
+
SELECT * FROM aUserInfo
- Replaced by
+
- Expiration Date
+
SELECT CALENDAR_UID, CALENDAR_NAME FROM availableCalendars
- Calendar
-
-
+
- Status
-
-
-
-
+
Role
-
+ SELECT ROL_CODE AS USR_ROLE, ROL_CODE AS CODE FROM ROLES WHERE ROL_SYSTEM = '00000000000000000000000000000002' AND ROL_STATUS = 1 ORDER BY ROL_CODE ]]>
- Change Password
+
- New Password
+
- Confirm Password
+
- Save
+
- Cancel
+
@@ -252,5 +243,4 @@
}
]]>
-
diff --git a/workflow/engine/xmlform/users/users_EditOptions.xml b/workflow/engine/xmlform/users/users_EditOptions.xml
index 3661c4f8d..8e7b43a5a 100755
--- a/workflow/engine/xmlform/users/users_EditOptions.xml
+++ b/workflow/engine/xmlform/users/users_EditOptions.xml
@@ -1,10 +1,9 @@
-
- Back to list
-
-
-
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_EditRT.xml b/workflow/engine/xmlform/users/users_EditRT.xml
index ff0d363e4..15bebdaaa 100755
--- a/workflow/engine/xmlform/users/users_EditRT.xml
+++ b/workflow/engine/xmlform/users/users_EditRT.xml
@@ -3,108 +3,96 @@
-
- Personal Information
+
- First Name
+
- Last Name
+
- User ID (*)
+
- Email
+
- Address
+
- Zip/Postal Code
+
SELECT IC_UID, IC_NAME FROM ISO_COUNTRY ORDER BY IC_NAME
- Country
+
State or Region
-
+ SELECT IS_UID, IS_NAME FROM ISO_SUBDIVISION WHERE IC_UID = "@#USR_COUNTRY" ORDER BY IS_NAME ]]>
Location
-
+ SELECT IL_UID, IL_NAME FROM ISO_LOCATION WHERE IC_UID = "@#USR_COUNTRY" AND IS_UID = "@#USR_CITY" AND IS_UID NOT IN ("") ORDER BY IL_NAME ]]>
- Phone
+
- Position
+
- Reports to
+
- Department
+
SELECT * FROM aUserInfo
- Replaced by
+
- Expiration Date
+
SELECT CALENDAR_UID, CALENDAR_NAME FROM availableCalendars
- Calendar
-
-
+
- Status
-
-
-
-
+
Role
-
+ SELECT ROL_CODE AS USR_ROLE, ROL_CODE AS CODE FROM ROLES WHERE ROL_SYSTEM = '00000000000000000000000000000002' AND ROL_STATUS = 1 ORDER BY ROL_CODE ]]>
- Change Password
+
- New Password
+
- Confirm Password
+
-
- Profile
+
-
+
- Photo
+
-
- Max upload file size
+
-
- Save
+
- Cancel
+
@@ -289,5 +277,4 @@
}
]]>
-
diff --git a/workflow/engine/xmlform/users/users_List.xml b/workflow/engine/xmlform/users/users_List.xml
index 35e53dcaf..21b4278c5 100755
--- a/workflow/engine/xmlform/users/users_List.xml
+++ b/workflow/engine/xmlform/users/users_List.xml
@@ -1,39 +1,34 @@
-
+
-
-
- Full Name
-
-
- Username
-
-
- E-Mail
-
-
- Role
-
-
- Due Date
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
diff --git a/workflow/engine/xmlform/users/users_New.xml b/workflow/engine/xmlform/users/users_New.xml
index 56a3f0cbf..4409d66d0 100755
--- a/workflow/engine/xmlform/users/users_New.xml
+++ b/workflow/engine/xmlform/users/users_New.xml
@@ -6,105 +6,96 @@
-
- Personal Information
+
- First Name
+
- Last Name
+
- User ID (*)
+
- Email
+
- Address
+
- Zip/Postal Code
+
SELECT IC_UID, IC_NAME FROM ISO_COUNTRY ORDER BY IC_NAME
- Country
+
SELECT IS_UID, IS_NAME FROM ISO_SUBDIVISION WHERE IC_UID = "@#USR_COUNTRY" ORDER BY IS_NAME
- State or Region
+
SELECT IL_UID, IL_NAME FROM ISO_LOCATION WHERE IC_UID = "@#USR_COUNTRY" AND IS_UID = "@#USR_CITY" AND IS_UID NOT IN ("") ORDER BY IL_NAME
- Location
+
- Phone
+
- Position
+
SELECT * FROM aUserInfo
- Reports to
+
SELECT * FROM aUserInfo
- Replaced by
+
- Expiration Date
+
SELECT CALENDAR_UID, CALENDAR_NAME FROM availableCalendars
-Calendar
-
-
+
- Status
-
-
-
-
+
SELECT ROL_CODE AS USR_ROLE, ROL_CODE AS CODE FROM ROLES WHERE ROL_SYSTEM = '00000000000000000000000000000002' AND ROL_STATUS = 1 ORDER BY ROL_CODE
- Role
+
- Change Password
+
- New Password
+
- Confirm Password
+
- Save
+
-
- Profile
+
- Photo
+
-
- Max upload file size
+
-
- Cancel
+
diff --git a/workflow/engine/xmlform/users/users_NewOptions.xml b/workflow/engine/xmlform/users/users_NewOptions.xml
index 5e86f0437..e9e2dccf6 100755
--- a/workflow/engine/xmlform/users/users_NewOptions.xml
+++ b/workflow/engine/xmlform/users/users_NewOptions.xml
@@ -1,6 +1,6 @@
-
+
-
- Back to list
-
-
\ No newline at end of file
+
+
+
+
diff --git a/workflow/engine/xmlform/users/users_Options.xml b/workflow/engine/xmlform/users/users_Options.xml
index 334a56c00..e5ce51115 100755
--- a/workflow/engine/xmlform/users/users_Options.xml
+++ b/workflow/engine/xmlform/users/users_Options.xml
@@ -1,207 +1,200 @@
-
-
-
-
- New
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/users/users_ReassignCases.xml b/workflow/engine/xmlform/users/users_ReassignCases.xml
index 433a86a2e..95e3ed85b 100755
--- a/workflow/engine/xmlform/users/users_ReassignCases.xml
+++ b/workflow/engine/xmlform/users/users_ReassignCases.xml
@@ -1,18 +1,12 @@
-
-
-
-
-
-
- Process
-
-
-
- No. of cases
-
-
-
- Reassign to
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/users/users_ReassignSelectSubType.xml b/workflow/engine/xmlform/users/users_ReassignSelectSubType.xml
index c50783075..12cc8a948 100755
--- a/workflow/engine/xmlform/users/users_ReassignSelectSubType.xml
+++ b/workflow/engine/xmlform/users/users_ReassignSelectSubType.xml
@@ -1,29 +1,22 @@
-
-
- Select the type grouping of the cases
-
-
-
-
-
- Reassign Type
-
-
-
- Group Cases By
-
-
-
- Cancel
-
-
-
- Continue
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_ReassignSelectType.xml b/workflow/engine/xmlform/users/users_ReassignSelectType.xml
index 29b682960..246d7e24b 100755
--- a/workflow/engine/xmlform/users/users_ReassignSelectType.xml
+++ b/workflow/engine/xmlform/users/users_ReassignSelectType.xml
@@ -1,25 +1,19 @@
-
-
- Select the reassign type
-
-
-
-
-
- Type
-
-
-
- Cancel
-
-
-
- Continue
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_ReassignShowInfo.xml b/workflow/engine/xmlform/users/users_ReassignShowInfo.xml
index 03d6a6c1a..4425db930 100755
--- a/workflow/engine/xmlform/users/users_ReassignShowInfo.xml
+++ b/workflow/engine/xmlform/users/users_ReassignShowInfo.xml
@@ -1,27 +1,21 @@
-
- Information
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Delete
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_Search.xml b/workflow/engine/xmlform/users/users_Search.xml
index f9461ca6a..d8f15f26e 100755
--- a/workflow/engine/xmlform/users/users_Search.xml
+++ b/workflow/engine/xmlform/users/users_Search.xml
@@ -1,12 +1,9 @@
-
+
-
-
- Full name
-
-
-
- Apply Filter
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/users/users_ShortList.xml b/workflow/engine/xmlform/users/users_ShortList.xml
index 04dedc3f5..df82e026a 100755
--- a/workflow/engine/xmlform/users/users_ShortList.xml
+++ b/workflow/engine/xmlform/users/users_ShortList.xml
@@ -1,12 +1,12 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/users/users_ShortList2.xml b/workflow/engine/xmlform/users/users_ShortList2.xml
index 56fffd948..18ada2950 100755
--- a/workflow/engine/xmlform/users/users_ShortList2.xml
+++ b/workflow/engine/xmlform/users/users_ShortList2.xml
@@ -1,12 +1,12 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/users/users_ShortListAdhoc.xml b/workflow/engine/xmlform/users/users_ShortListAdhoc.xml
index 6002fc727..d6a0f740a 100755
--- a/workflow/engine/xmlform/users/users_ShortListAdhoc.xml
+++ b/workflow/engine/xmlform/users/users_ShortListAdhoc.xml
@@ -1,12 +1,12 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
diff --git a/workflow/engine/xmlform/users/users_ShortOptions.xml b/workflow/engine/xmlform/users/users_ShortOptions.xml
index f44768436..4d4ed88cd 100755
--- a/workflow/engine/xmlform/users/users_ShortOptions.xml
+++ b/workflow/engine/xmlform/users/users_ShortOptions.xml
@@ -1,21 +1,15 @@
-
-
-
-
-
-
-
-
- Assign
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_ShortOptions2.xml b/workflow/engine/xmlform/users/users_ShortOptions2.xml
index 1a1e59aa3..fe928c789 100755
--- a/workflow/engine/xmlform/users/users_ShortOptions2.xml
+++ b/workflow/engine/xmlform/users/users_ShortOptions2.xml
@@ -1,19 +1,13 @@
-
-
-
-
-
-
-
-
-
-
- Assign
-
-
-
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml b/workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml
index 628a88d70..c1253dae9 100644
--- a/workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml
+++ b/workflow/engine/xmlform/users/users_ShortOptionsAdhoc.xml
@@ -1,19 +1,13 @@
-
-
-
-
-
-
-
-
- Assign
-
-
-
-
-
+
+
+
+
+
+
+
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_View.xml b/workflow/engine/xmlform/users/users_View.xml
index 710facf0d..5876957c9 100755
--- a/workflow/engine/xmlform/users/users_View.xml
+++ b/workflow/engine/xmlform/users/users_View.xml
@@ -1,119 +1,85 @@
-
-
-
-
-
-
- Profile
-
-
-
-
-
- Photo
-
-
-
- Resume
-
-
-
- Personal Information
-
-
-
- First Name
-
-
-
- Last Name
-
-
-
- User ID
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SELECT USR_UID, USR_USERNAME FROM USERS WHERE USR_USERNAME = @@USR_USERNAME
Exists
-
-
- Email
-
-
-
- Address
-
-
-
- Zip/Postal Code
-
-
-
+
+
+
+
+
+
+
+
+
+
SELECT IC_UID, IC_NAME FROM ISO_COUNTRY ORDER BY IC_NAME
- Country
+
-
-State or Region
-
-
-
+ Location
-
-
-
- Phone
-
-
-
- Position
-
-
-
+
+
+
+
+
+
+ Reports to
-
-
-
+ Replaced by
-
-
-
- Expiration Date
-
-
-
- Status
-
-
-
+
+
+
+
+
+
+ Role
-
-
-
- Change Password
-
-
-
- New Password
-
-
-
- Confirm Password
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/workflow/engine/xmlform/users/users_ViewOptions.xml b/workflow/engine/xmlform/users/users_ViewOptions.xml
index 1db10099b..73404710e 100755
--- a/workflow/engine/xmlform/users/users_ViewOptions.xml
+++ b/workflow/engine/xmlform/users/users_ViewOptions.xml
@@ -1,12 +1,12 @@
-
- Back to list
-
-
- Edit
-
-
+
+
+
+
+
+
-
\ No newline at end of file
+