From 09a1854d8a7d4ccd75eb36eb49b7dad9637ab6fe Mon Sep 17 00:00:00 2001 From: jennylee Date: Mon, 21 Jan 2013 16:00:38 -0400 Subject: [PATCH 1/4] BUG 9873 Error creating Dynaform from a PM Table. When adding a field, the 'Field Name' must be an string without spaces in the middle, because this makes the name of some funtions were generated wrong, like getColosa Email() when it must be like getColosaEmail() or getColosa_Email(). So, this field in the creating PM Table form, was validated to transform any string into a string without spaces. --- workflow/engine/templates/pmTables/edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/templates/pmTables/edit.js b/workflow/engine/templates/pmTables/edit.js index 18c7c138e..855b4ca71 100755 --- a/workflow/engine/templates/pmTables/edit.js +++ b/workflow/engine/templates/pmTables/edit.js @@ -162,7 +162,7 @@ Ext.onReady(function(){ allowBlank: true, listeners:{ change: function(f,e){ - this.setValue(this.getValue().toUpperCase()); + this.setValue(this.getValue().replace(" ","").toUpperCase()); } } } From ba0eab3eaeece3177fc9fd1b39fdb6931901ef93 Mon Sep 17 00:00:00 2001 From: Marco Antonio Nina Date: Mon, 21 Jan 2013 16:05:21 -0400 Subject: [PATCH 2/4] BUG 10423 No se peude ejecutar un caso cuando el nombre del... SOLVED - Problem caused by rare characters. - was add validation. --- workflow/engine/methods/cases/casesStartPage_Ajax.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/engine/methods/cases/casesStartPage_Ajax.php b/workflow/engine/methods/cases/casesStartPage_Ajax.php index ee794e20d..fe1741776 100755 --- a/workflow/engine/methods/cases/casesStartPage_Ajax.php +++ b/workflow/engine/methods/cases/casesStartPage_Ajax.php @@ -62,7 +62,7 @@ function getProcessList () if (1) { foreach ($processList as $key => $processInfo) { $tempTree['text'] = $key; - $tempTree['id'] = $key; + $tempTree['id'] = preg_replace('([^A-Za-z0-9])', '', $key); $tempTree['cls'] = 'folder'; $tempTree['draggable'] = true; $tempTree['optionType'] = "category"; @@ -79,7 +79,7 @@ function getProcessList () //print_r($processInfo); $tempTreeChild['text'] = $keyChild; //ellipsis ( $keyChild, 50 ); //$tempTree['text']=$key; - $tempTreeChild['id'] = $keyChild; + $tempTreeChild['id'] = preg_replace('([^A-Za-z0-9 ()])', '', $keyChild); $tempTreeChild['draggable'] = true; $tempTreeChild['leaf'] = true; $tempTreeChild['icon'] = '/images/icon.trigger.png'; From d2d15bdd8505161a668ed78b7117a8e9d8e39b20 Mon Sep 17 00:00:00 2001 From: Julio Cesar Laura Date: Wed, 23 Jan 2013 09:22:35 -0400 Subject: [PATCH 3/4] BUG 10430 Link roto en pagina Page not Found SOLVED - Change to the correct link address --- gulliver/methods/errors/error403.php | 2 +- gulliver/methods/errors/error404.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gulliver/methods/errors/error403.php b/gulliver/methods/errors/error403.php index 3e28fff65..9c76fa9ef 100644 --- a/gulliver/methods/errors/error403.php +++ b/gulliver/methods/errors/error403.php @@ -75,7 +75,7 @@ twitter

- Privacy Statement | Security Statement | Terms of Service | Commercial License | Contact Us | RSS + Privacy Statement | Security Statement | Terms of Service | Commercial License | Contact Us | RSS © Copyright 2000 - 2012 Colosa, Inc. www.colosa.com

diff --git a/gulliver/methods/errors/error404.php b/gulliver/methods/errors/error404.php index 6150baeb0..640956a70 100644 --- a/gulliver/methods/errors/error404.php +++ b/gulliver/methods/errors/error404.php @@ -75,7 +75,7 @@ twitter

- Privacy Statement | Security Statement | Terms of Service | Commercial License | Contact Us | RSS + Privacy Statement | Security Statement | Terms of Service | Commercial License | Contact Us | RSS © Copyright 2000 - 2012 Colosa, Inc. www.colosa.com

From 184149a1bc119fb945c4abae2e75b6fde466bc9e Mon Sep 17 00:00:00 2001 From: jennylee Date: Wed, 23 Jan 2013 09:36:51 -0400 Subject: [PATCH 4/4] BUG 9873 Error creating Dynaform from a PM Table. When adding a field, the 'Field Name' must be an string without spaces in the middle, because this makes the name of some funtions were generated wrong, like getColosa Email() when it must be like getColosaEmail() or getColosa_Email(). So, this field in the creating PM Table form, was validated to transform any string into a string without spaces. --- workflow/engine/templates/pmTables/edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/templates/pmTables/edit.js b/workflow/engine/templates/pmTables/edit.js index 855b4ca71..0030798a6 100755 --- a/workflow/engine/templates/pmTables/edit.js +++ b/workflow/engine/templates/pmTables/edit.js @@ -162,7 +162,7 @@ Ext.onReady(function(){ allowBlank: true, listeners:{ change: function(f,e){ - this.setValue(this.getValue().replace(" ","").toUpperCase()); + this.setValue(this.getValue().replace(/\s/g,'').toUpperCase()); } } }