Ignore:
Timestamp:
Jul 14, 2010 8:04:01 PM (14 years ago)
Author:
gah
Message:
 
Location:
branches/blt4/examples
Files:
10 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/blt4/examples/app-fermi/Makefile.in

    r1744 r1824  
    2323MEX =           @MEX@
    2424MKOCTFILE =     @MKOCTFILE@
    25 JAVA =          @JAVA@
     25JAVA_HOME =     @JAVA_HOME@
    2626
    2727.PHONY: tcl cee fortran octave matlab perl python ruby java 2.0 wrapper
     
    4646    LANGS += ruby
    4747endif
    48 ifneq ($(JAVA),)
     48ifneq ($(JAVA_HOME),)
    4949    LANGS += java
    5050endif
  • branches/blt4/examples/zoo/binary/tardir.tcl

    r702 r1824  
    2121close $fid
    2222
    23 catch {exec tar tvzf $file} dir
     23set status [catch {exec tar tvzf $file} result]
    2424file delete -force $file
    2525
     26if {$status != 0} {
     27    puts stderr "ERROR: $result"
     28    exit 1
     29}
     30
    2631$driver put output.string(dir).about.label "Contents"
    27 $driver put output.string(dir).current $dir
     32$driver put output.string(dir).current $result
    2833
    2934$driver put output.string(tarball).about.label "Original Tar File"
  • branches/blt4/examples/zoo/binary/tool.xml

    r684 r1824  
    1919      <description>Upload a gzipped tar file (Unix-style archive file).</description>
    2020    </about>
    21     <size>60x10</size>
     21    <size>binary</size>
    2222    <default></default>
    2323  </string>
  • branches/blt4/examples/zoo/image/tool.xml

    r1587 r1824  
    2323  </loader>
    2424  <image>
    25     <about><diffs>ignore</diffs></about>
     25    <about>
     26      <label>Image</label>
     27      <description>Input image that gets rotated.</description>
     28      <diffs>ignore</diffs>
     29    </about>
     30    <convert>bmp</convert>
    2631  </image>
    2732  <number id="angle">
Note: See TracChangeset for help on using the changeset viewer.