Changes between Version 10 and Version 11 of HTMLGfx


Ignore:
Timestamp:
Dec 28, 2014, 8:17:40 PM (9 years ago)
Author:
romw
Comment:

Update to latest JavaScript? bindings

Legend:

Unmodified
Added
Removed
Modified
  • HTMLGfx

    v10 v11  
    9898        switch_to_url = running_url
    9999
    100     if ((is_vboxwrapper_job && web_api_port) && (switch_to_url is empty))
    101         switch_to_url  = "http://localhost:" + web_api_port + "/";
     100    if ((is_vbox_job && api_port) && (switch_to_url is empty))
     101        switch_to_url  = "http://localhost:" + api_port + "/";
    102102}}}
    103103
     
    115115==== Methods ====
    116116
    117 || Name                  || Returns || Description ||
    118 || !IsAppInitDataUpdated || Boolean || Informs the HTML document to refresh all the UI state information ||
    119 || !IsScreensaver        || Boolean || Was the graphics application launched in screensaver mode    ||
    120 || !IsSuspended          || Boolean || Whether the task is currently suspended ||
    121 || !IsNetworkSuspended   || Boolean || Should the UI suspend Internet activity ||
    122 || !IsExiting            || Boolean || Should the UI prepare to exit ||
    123 || !IsVboxwrapperJob     || Boolean || Is this task a vboxwrapper task? ||
    124 || !SetAppInitDataUpdate || void    || Sets the Boolean value to the specified input ||
     117|| Name                       || Returns || Description ||
     118|| log(string)                || void    || Logs a message to stderrgfx.txt ||
     119|| debug(string)              || void    || Logs a message with a category of 'DEBUG' to stderrgfx.txt ||
     120|| info(string)               || void    || Logs a message with a category of 'INFO' to stderrgfx.txt ||
     121|| warn(string)               || void    || Logs a message with a category of 'WARNING' to stderrgfx.txt ||
     122|| error(string)              || void    || Logs a message with a category of 'ERROR' to stderrgfx.txt ||
     123|| !isStateUpdated()          || Boolean || Returns true if it is time to refresh all the state in the UI ||
     124|| !resetStateUpdate(Boolean) || void    || Resets the state update flag to the given value ||
    125125
    126126==== Properties ====
    127127
    128128|| Name                  || Data Type || Description ||
    129 || !ApplicationName      || string    || ||
    130 || !ApplicationVersion   || long      || ||
    131 || !WorkunitName         || string    || ||
    132 || !ResultName           || string    || ||
    133 || !TeamName             || string    || ||
    134 || !UserName             || string    || ||
    135 || !UserCreditTotal      || float     || ||
    136 || !UserCreditAverage    || float     || ||
    137 || !HostCreditTotal      || float     || ||
    138 || !HostCreditAverage    || float     || ||
    139 || !ExitCountdown        || float     || ||
    140 || CPUTime               || float     || ||
    141 || !ElapsedTime          || float     || ||
    142 || !FractionDone         || float     || ||
    143 || !RemoteDesktopPort    || long      || ||
    144 || WebAPIPort            || long      || ||
     129|| appName               || string    || ||
     130|| appVersion            || long      || ||
     131|| wuName                || string    || ||
     132|| resName               || string    || ||
     133|| teamName              || string    || ||
     134|| userName              || string    || ||
     135|| userCreditTotal       || float     || ||
     136|| userCreditAverage     || float     || ||
     137|| hostCreditTotal       || float     || ||
     138|| hostCreditAverage     || float     || ||
     139|| scrsaveMode           || Boolean   || Was the graphics application launched in screensaver mode    ||
     140|| suspended             || Boolean   || Whether the task is currently suspended ||
     141|| networkSuspended      || Boolean   || Should the UI suspend Internet activity ||
     142|| exiting               || Boolean   || Should the UI prepare to exit ||
     143|| exitTimeout           || float     || ||
     144|| cpuTime               || float     || ||
     145|| elapsedTime           || float     || ||
     146|| fractionDone          || float     || ||
     147|| isVboxJob             || Boolean   || Is this task a vboxwrapper task? ||
     148|| rdpPort               || long      || ||
     149|| apiPort               || long      || ||
    145150
    146151