int-modules-pgsql - Build # 1690 - Fixed:

Check console output at https://ci.openbravo.com/job/int-modules-pgsql/1690/ to 
view the results.


Committers since last success:

Changes for Build #1689

    Carlos Aristu <[email protected]> null
    fixes issue 33367: testChangedClasses doesn't calculate the past date 
correctly
600 days in milliseconds overflows Integer.MAX_VALUE, so the resulting past 
Date using that value was not correct. Now the value is turned into long before 
substracting it to the current time.
        src-test/src/org/openbravo/test/system/SystemServiceTest.java

    Carlos Aristu <[email protected]> null
    fixes issue 33355: Potential security issue in Process Definitions
The problem was that in SecurityChecker the checking for write access was not 
considering that the object being written could be an instance of Client (This 
class is the only DAL generated class which does not implement the 
ClientEnabled interface).
        src/org/openbravo/dal/security/SecurityChecker.java

Changes for Build #1690

    Carlos Aristu <[email protected]> null
    fixes issue 33263: Implement Client Side Event Handler Extensions
      
    Carlos Aristu <[email protected]> null
    [client-event-handlers] Add extra check for registry on getEntries function
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/utilities/ob-function-registry.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Define registry at parent level
The registry property is defined at the top of the register hierarchy. Also, it 
is initialized in the register function because otherwise the it was being 
shared between all OBFunctionRegistry child objects
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/ob-onchange-registry.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-event-handler-registry.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/utilities/ob-function-registry.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Code review improvements
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/ob-onchange-registry.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/ob-view-form.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/grid/ob-view-grid.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-event-handler-registry.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-view.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-window.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/utilities/ob-function-registry.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Use me variable in cellEditEnd()
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/grid/ob-view-grid.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Merge with pi
      
    Carlos Aristu <[email protected]> null
    [client-event-handlers] Use me variable in saveRow()
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-view.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Execute pre-save actions when saving grid from 
keyboard
Pre-save actions should be fired also before saving a record in the grid with 
the up, down, enter or tab keys.
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/grid/ob-view-grid.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Not execute pre-save actions when save is not 
accepted
Pre-Save actions should not be executed if the answer to the confirmation 
prompt is negative.
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-window.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Execute pre-save actions after auto-save 
confirmation
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-window.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Use existing getDirtyEditForm() to detect changes
There is no need to create a new hasChanges() function. The existing 
getDirtyEditForm() function can be used for the same purpose.
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-window.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Use activeView to detect if exists post-save actions
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-window.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Implement pre-save action calling in standard 
windows
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/grid/ob-view-grid.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-view.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-window.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Minor refactor to use new existsAction function
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-view.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-window.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Implement post-save actions calling in standard 
forms
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/ob-view-form.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Remove unneeded variable
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/grid/ob-view-grid.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Use a better name
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/grid/ob-view-grid.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Special grid refresh for client event handlers
The refreshGridAfterSave is a new function that can be invoked by the client 
event handler actions. It passes a callback to the original refreshGrid 
function which now accepts a third argument. This argument is used to invoke 
the callback once the filtering performed by the function finishes (this 
callback invocation is the last statement that will be executed).
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/grid/ob-view-grid.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Implement post-save actions calling in standard 
grids
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/grid/ob-view-grid.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Updated copyright year
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-window.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Postpone auto-save action if post-save actions exist
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-window.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Make use of event handler registry in standard view
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-view.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Send missing parameter
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-event-handler-registry.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Added extraParameters
Added extraParameters argument for call and callbackExecutor functions of 
EventHandlerRegistry
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-event-handler-registry.js

    Carlos Aristu <[email protected]> null
    [client-event-handlers] Registry infrastructure
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-event-handler-registry.js
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/utilities/ob-function-registry.js
        
modules/org.openbravo.client.application/src/org/openbravo/client/application/ApplicationComponentProvider.java
        
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/ob-onchange-registry.js




Last 20 lines of the console output:

[...truncated 3489 lines...]
Total time: 3 seconds

executing script 'Tomcat stop'
[int-modules-pgsql] $ /bin/bash /tmp/build_step_template2158635180643056247.sh 
ENABLE
DEBUG: Tomcat stop called with parameters: ENABLED=ENABLE
 * Stopping Tomcat servlet engine for Openbravo tomcat
   ...done.

executing script 'Check log'
[int-modules-pgsql] $ /bin/bash /tmp/build_step_template2340312496967466953.sh 
ENABLE
DEBUG: Check log called with parameters: ENABLED=ENABLE
Check log: openbravo log (artifact: int-modules-pgsql.log) is clean

Recording test results
Archiving artifacts
Checking \] ERROR|\] WARN
Email was triggered for: Fixed
Trigger Success was overridden by another trigger and will not send an email.
Sending email for trigger: Fixed
------------------------------------------------------------------------------
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are 
consuming the most bandwidth. Provides multi-vendor support for NetFlow, 
J-Flow, sFlow and other flows. Make informed decisions using capacity planning
reports.http://sdm.link/zohodev2dev
_______________________________________________
Openbravo-builds mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-builds

Reply via email to