Changeset 2918 for trunk/gui/scripts


Ignore:
Timestamp:
Apr 1, 2012, 4:03:26 PM (13 years ago)
Author:
gah
Message:

normalize filename before giving to filexfer

Location:
trunk/gui/scripts
Files:
2 edited

Legend:

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

    r2788 r2918  
    323323        set job(output) ""
    324324        set job(error) ""
     325       
     326        # Make sure we normalize the file name here.  Don't count
     327        # on filexfer command understanding tildes.
     328        set file [file normalize $file]
    325329
    326330        set status [catch {blt::bgexec ::Rappture::filexfer::job(control) \
  • trunk/gui/scripts/xyprint.tcl

    r2744 r2918  
    12921292
    12931293    $page.titlefontfamily value $_settings($this-$axis-title-fontfamily)
    1294     $page.titlefontsize value   $_settings($this-axis-title-fontsize)
     1294    $page.titlefontsize value   $_settings($this-$axis-title-fontsize)
    12951295    $page.tickfontfamily value  $_settings($this-$axis-ticks-fontfamily)
    1296     $page.tickfontsize value    $_settings($this-axis-ticks-fontsize)
     1296    $page.tickfontsize value    $_settings($this-$axis-ticks-fontsize)
    12971297
    12981298    # Always hide the zero line.
Note: See TracChangeset for help on using the changeset viewer.