Changeset 3376 for trunk/gui/scripts


Ignore:
Timestamp:
Feb 27, 2013, 9:39:10 PM (12 years ago)
Author:
gah
Message:

new version of stats file handling without file locking

Location:
trunk/gui/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/scripts/molvisviewer.tcl

    r3330 r3376  
    11071107            # what data objects are using the renderer until be get here.
    11081108            global env
    1109             lappend out "hub" [exec hostname]
     1109            set hub [exec hostname]
    11101110            lappend out "viewer" "molvisviewer"
    11111111            if { [info exists env(USER)] } {
    11121112                lappend out "user" $env(USER)
    11131113            }
     1114            set session "unknown"
    11141115            if { [info exists env(SESSION)] } {
    1115                 lappend out "session" $env(SESSION)
     1116                set session $env(SESSION)
    11161117            }
    11171118            set parent [$_first parent -as object]
     
    11261127            lappend out "tool_revision" \
    11271128                [$xmlobj get tool.version.application.revision]
    1128             SendCmd "clientinfo $out"
     1129            SendCmd "clientinfo $hub/$session [list $out]"
    11291130        }
    11301131
  • trunk/gui/scripts/vtkheightmapviewer.tcl

    r3374 r3376  
    989989            lappend out "tool_title"   [$_first hints toolTitle]
    990990            lappend out "tool_dataset" [$_first hints label]
    991             SendCmd "clientinfo [list $out]"
     991            SendCmd "clientinfo $hub/$user/$session [list $out]"
    992992        }
    993993        set _fieldNames [$_first hints fieldnames]
Note: See TracChangeset for help on using the changeset viewer.