Commit Graph

741 Commits

Author SHA1 Message Date
julceslauhub
3c050e64db Merge pull request #1016 from ralpheav/master
Removing not in use directory ./server from gulliver/js/maborak/core
2012-11-29 11:58:26 -08:00
julceslauhub
2499c39ab1 Merge pull request #1015 from marcoAntonioNina/BUG-7384
BUG 7384 JavaScript getControlsInTheRow() function does not work... SOLVED
2012-11-29 11:43:57 -08:00
Marco Antonio Nina
b3d66a84b0 BUG 7384 JavaScript getControlsInTheRow() function does not work... SOLVED
- No loaded the all fields of grid.
- Was add the fields missing.
2012-11-29 15:39:08 -04:00
ralph
5e2db4b348 Removing not in use directory ./server from gulliver/js/maborak/core 2012-11-29 14:30:11 -04:00
ralph
2df7ff709a Changing deprecated json->decode json->encode by Bootstrap functions. 2012-11-29 14:25:06 -04:00
Julio Cesar Laura
9581c9d3e7 BUG 7222 Etiquetas con HTML muestran caracteres html extra en las filas SOLVED
- El valor que se coloca en el atributo pm:label no estaba siendo validado
- El valor ahora es validado usando entidades
2012-11-28 14:19:35 -04:00
ralph
4d53c8af4f Performace adds:
- jpeg MIME content.
- changing echo instead print for js and css files.
2012-11-27 13:44:02 -04:00
julceslauhub
295ca5216c Merge pull request #996 from Jennydmz/BUG-6855
BUG-6855 Error message in 'Database Conections' clicking in Edit or Delete title.
2012-11-27 07:07:27 -08:00
jennylee
11c7fe3b42 BUG-6855 Error message in 'Database Conections' clicking in Edit or Delete title.
I put an 'IF' validation in file 'workflow/engine/classes/class.propelTable.php.php', to prevent that this columns were sortable.
2012-11-27 10:21:32 -04:00
julceslauhub
1804224a12 Merge pull request #994 from ralpheav/master
Adding SteepSuperVisorPeer interface class
2012-11-27 05:11:56 -08:00
ralph
c0ec55ee2b Fix for Json message makes Trigger dropdown list fail. 2012-11-26 18:03:59 -04:00
julceslauhub
17453ebc78 Merge pull request #993 from ralpheav/master
Adding fix for Save button at Dynaform Fields properties
2012-11-26 13:59:57 -08:00
ralph
3d12c70be4 Adding js library to set classes instance abbr and adding maborak.loader.js 2012-11-26 17:42:27 -04:00
julceslauhub
16feb42a49 Merge pull request #992 from ralpheav/master
Adding fix for installation incomplete loading.
2012-11-26 13:36:08 -08:00
ralph
1d9986711e Adding fix for incomplete Installation loading. 2012-11-26 17:17:10 -04:00
julceslauhub
4a5b6093f4 Merge pull request #985 from victorsl/BUG-6828
BUG 6828 "Request that the address and label of link fields in..." SOLVED
2012-11-25 19:10:27 -08:00
jennylee
1079ae5eee BUG-6855 Error message in 'Database Conections' clicking in Edit or Delete title.
I put an 'IF' validation in file 'gulliver/methods/propelTableAjax.php', to prevent that this columns were sortable.
2012-11-23 17:43:05 -04:00
ralph
b162bba543 Removing innecessary function mylog 2012-11-23 12:10:40 -04:00
ralph
b4a937b1bc Adding AppFolder to autoloader, missed in Save Cases feature. 2012-11-23 11:49:08 -04:00
Victor Saisa Lopez
1851b43d5b BUG 6828 "Request that the address and label of link fields in..." SOLVED
- New feature
- Request that the address and label of link fields in DynaForms can be
  set and saved using case variables
- Populate links in a grid via trigger
- Added this new funcionality
- Take into account the following (examples):
    > Triggers
        * Populate a link field
            @@MyLink = "http://www.php.net";
            @@MyLink_label = "Read about PHP";

        * Populate links in a grid
            @=MYGRID = array();
            $i = 1;

            $rs = $stmt->executeQuery("SELECT USR_USERNAME FROM USERS", ResultSet::FETCHMODE_ASSOC);

            while ($rs->next()) {
                $row = $rs->getRow();

                @=MYGRID[$i] = array(
                    "MyField" => $row["USR_USERNAME"],
                    "MyLink" => "http://www.php.net",
                    "MyLink_label" => "Read about PHP, $i"
                );

                $i = $i + 1;
            }
    > JavaScript, populate a link field:
        getField("MyLink").href = "http://www.php.net";
        getField("MyLink").innerHTML = "Read about PHP";
* Available from version 2.0.46
2012-11-22 17:50:52 -04:00
ralph
7b2a2a8300 Adding fix for Bootstrap::SendHeader at set time for a non file. 2012-11-22 16:55:52 -04:00
ralph
acc8676d87 Adding time for CSS. 2012-11-22 10:32:22 -04:00
user
f38c4d368c Removing requiere_once call to gain loading time. 2012-11-20 16:45:09 -04:00
user
24cb5bce52 Merge remote-tracking branch 'upstream/master' into speedy 2012-11-20 14:04:40 -04:00
jennylee
7c8b33049a BUG-7802 In Advanced Search -> Information -> Dynaform, the Submit Button was enabled, like in edition mode.
I added a javascript code to disable the Submit Button on file 'workflow/engine/methods/cases/casesHistoryDynaformPage_Ajax.php'.
2012-11-20 10:58:11 -04:00
user
6c0d91b0e6 Adding "translations" js file 2012-11-19 15:03:13 -04:00
jennylee
0ed503d625 BUG-7802 In Advanced Search -> Information -> Dynaform, the Submit Button was enabled, like in edition mode.
I changed the render of the Submit Button on file 'class.xmlform.php' in a view mode, to show this button disabled.
2012-11-19 13:16:10 -04:00
Hector Cortez
c779f7cfe3 BUG 7301 With Aymara translation can not use Date Picker dialog... SOLVED
- With Aymara translation can not use Date Picker dialog and can't open Output Documents for editing
- Adjustment in the condition of the calendar when the language doesn't exist.
2012-11-19 11:16:46 -04:00
Hector Cortez
faea923491 BUG 7301 With Aymara translation can not use Date Picker dialog...SOLVED
- With Aymara translation can not use Date Picker dialog and can't open Output Documents for editing
- Added of the condition in calendar when the language doesn't exist.
2012-11-16 17:16:02 -04:00
user
923e375e5a Merge remote-tracking branch 'upstream/master' into speedy 2012-11-15 15:11:31 -04:00
Brayan Osmar Pereyra Suxo
bb92d18f64 BUG 9962 I added a validation to field SOLVED
I added a validation to text field
2012-11-15 10:10:04 -04:00
user
cdc66b1270 -Commenting an add of a js file into Css file handling.
-Cleaning a comment int /methods/processes/main.php.
2012-11-14 09:54:17 -04:00
Fernando Ontiveros
a8e8cf0295 SPEEDY adding the autloader feature in class.bootstrap.php 2012-11-13 13:48:16 -04:00
Julio Cesar Laura
c67cf39f83 Added validation when a empty value is sent to mb_strlen function 2012-11-12 18:48:15 -04:00
Fernando Ontiveros
b5c11b4198 SPEEDY first version of boostrap.php, with many changes 2012-11-12 14:44:44 -04:00
Julio Cesar Laura
9c6a4f1839 BUG 10050 Integridad Referencial SOLVED
- Added instruction suggested
2012-11-12 14:28:25 -04:00
Julio Cesar Laura
e929d81042 BUG 10052 Problema al realizar instalacion de cero en tetsing.2 SOLVED
- Missing validation whhit PATH_DATA constant in new function isPMUnderUpdating
- Add validation when PATH_DATA doesn' exists
2012-11-12 13:19:32 -04:00
Hector Cortez
aecf461295 BUG 9898 PDF limit 6 pages SOLVED
- When we generate a pdf in process, it can be created and download, but it can't over 6 pages.
- Was added new report generator pdf.
2012-11-09 16:40:49 -04:00
user
bdceea960f Adding encryptLink function 2012-11-09 16:30:52 -04:00
Fernando Ontiveros
85db81e978 Merge remote branch 'origin/master' into speedy 2012-11-09 15:42:11 -04:00
Fernando Ontiveros
0408a9bf0a SPEEDY removing some unused js files 2012-11-09 14:51:49 -04:00
user
ed7b355d65 Removing browser_detection function, cause it is too big
Adding get_current_browser instead to get browse name info only.
+ generateUniqueID() used in authentification process.
2012-11-09 13:59:06 -04:00
Fernando Ontiveros
e10f18a077 SPEEDY GONZALES minify maborak.js and maborak.loader.js 2012-11-09 12:23:55 -04:00
Fernando Ontiveros
8fb7d5609c SPEEDY GONZALES minify maborak and maborak.js 2012-11-09 11:55:46 -04:00
Fernando Ontiveros
ae211bea3a Merge remote branch 'upstream/master' 2012-11-09 09:16:04 -04:00
Fernando Ontiveros
ec6413a2ce SPEEDY use Rake and closure-compile to generate maborak.js 2012-11-09 09:15:56 -04:00
Fernando Ontiveros
ae65ae8817 CODE STYLE class.bootstrap.php 2012-11-08 18:40:37 -04:00
user
f8226b1864 Adding class.bootstrap.php 2012-11-08 18:06:09 -04:00
Julio Cesar Laura
8ff41d0b5a Add validation with masks in dates in view mode 2012-11-08 17:15:56 -04:00
Fernando Ontiveros
028ef9abf6 SPEEDY fixing sysGeneric to stream files - commit6 2012-11-08 15:47:14 -04:00