Upgrade to GAS 3.10

Standardize to GBC

The internal product code is being standardized to GBC. You should review the following:

  • The GWC-JS configuration parameter is changed to GBC.
  • The GWC_JS_LOOKUP_PATH configuration parameter is hanged to GBC_LOOKUP_PATH.

NOTE :The legacy tags (GWC-JS and GWC_JS_LOOKUP_PATH) and resources (res.gwc-js, res.path.gwcjs.user) will continue to work as an alias for compatibility and to ease migration.

Local Storage

Starting with GBC version 1.00.16, new localStorage front calls replace the GAS-specific session.setVar and session.getVar used previously. Applications that used calls to the session module, for example:

CALL ui.Interface.frontCall("session", "getVar", [key], [value])

should now use calls to the localstorage functions instead, for example:

CALL ui.Interface.frontCall("localStorage", "getItem", [key,value], [])