Changeset 4754


Ignore:
Timestamp:
Nov 19, 2014, 2:50:42 AM (10 years ago)
Author:
ldelgass
Message:

merge r4668:4669 from trunk

Location:
tags/1.3.5
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • tags/1.3.5

  • tags/1.3.5/configure

    r4225 r4754  
    671671OCTAVE_VERSION_MAJOR
    672672OCTAVE_VERSION
     673SVN_URL
    673674SVN_VERSION
    674675MKOCTFILE3
     
    72927293
    72937294SVN_VERSION=`svnversion $srcdir`
     7295SVN_URL=`svn info $srcdir | sed -ne 's/^URL: //p'`
    72947296
    72957297make_command=""
     
    1010010102
    1010110103MAKE=${make_command}
     10104
    1010210105
    1010310106
  • tags/1.3.5/configure.in

    r4225 r4754  
    108108
    109109SVN_VERSION=`svnversion $srcdir`
     110SVN_URL=`svn info $srcdir | sed -ne 's/^URL: //p'`
    110111
    111112make_command=""
     
    375376AC_SUBST(MKOCTFILE3)
    376377AC_SUBST(SVN_VERSION)
     378AC_SUBST(SVN_URL)
    377379AC_SUBST(OCTAVE_VERSION)
    378380AC_SUBST(OCTAVE_VERSION_MAJOR)
  • tags/1.3.5/gui/scripts/flowvisviewer.tcl

    r4753 r4754  
    869869                set session $env(SESSION)
    870870            }
     871            lappend info "version" "$Rappture::version"
     872            lappend info "build" "$Rappture::build"
     873            lappend info "svnurl" "$Rappture::svnurl"
     874            lappend info "installdir" "$Rappture::installdir"
    871875            lappend info "hub" [exec hostname]
    872876            lappend info "client" "flowvisviewer"
  • tags/1.3.5/gui/scripts/molvisviewer.tcl

    r3844 r4754  
    691691                set session $env(SESSION)
    692692            }
     693            lappend info "version" "$Rappture::version"
     694            lappend info "build" "$Rappture::build"
     695            lappend info "svnurl" "$Rappture::svnurl"
     696            lappend info "installdir" "$Rappture::installdir"
    693697            lappend info "hub" [exec hostname]
    694698            lappend info "client" "molvisviewer"
  • tags/1.3.5/gui/scripts/nanovisviewer.tcl

    r4753 r4754  
    615615                set session $env(SESSION)
    616616            }
     617            lappend info "version" "$Rappture::version"
     618            lappend info "build" "$Rappture::build"
     619            lappend info "svnurl" "$Rappture::svnurl"
     620            lappend info "installdir" "$Rappture::installdir"
    617621            lappend info "hub" [exec hostname]
    618622            lappend info "client" "nanovisviewer"
  • tags/1.3.5/gui/scripts/vtkglyphviewer.tcl

    r4753 r4754  
    778778                set session $env(SESSION)
    779779            }
     780            lappend info "version" "$Rappture::version"
     781            lappend info "build" "$Rappture::build"
     782            lappend info "svnurl" "$Rappture::svnurl"
     783            lappend info "installdir" "$Rappture::installdir"
    780784            lappend info "hub" [exec hostname]
    781785            lappend info "client" "vtkglyphviewer"
  • tags/1.3.5/gui/scripts/vtkheightmapviewer.tcl

    r4753 r4754  
    767767                set session $env(SESSION)
    768768            }
     769            lappend info "version" "$Rappture::version"
     770            lappend info "build" "$Rappture::build"
     771            lappend info "svnurl" "$Rappture::svnurl"
     772            lappend info "installdir" "$Rappture::installdir"
    769773            lappend info "hub" [exec hostname]
    770774            lappend info "client" "vtkheightmapviewer"
  • tags/1.3.5/gui/scripts/vtkisosurfaceviewer.tcl

    r4752 r4754  
    825825            lappend info "version" "$Rappture::version"
    826826            lappend info "build" "$Rappture::build"
     827            lappend info "svnurl" "$Rappture::svnurl"
    827828            lappend info "installdir" "$Rappture::installdir"
    828829            lappend info "hub" [exec hostname]
  • tags/1.3.5/gui/scripts/vtkstreamlinesviewer.tcl

    r4753 r4754  
    800800                set session $env(SESSION)
    801801            }
     802            lappend info "version" "$Rappture::version"
     803            lappend info "build" "$Rappture::build"
     804            lappend info "svnurl" "$Rappture::svnurl"
     805            lappend info "installdir" "$Rappture::installdir"
    802806            lappend info "hub" [exec hostname]
    803807            lappend info "client" "vtkstreamlinesviewer"
  • tags/1.3.5/gui/scripts/vtkviewer.tcl

    r4753 r4754  
    840840                set session $env(SESSION)
    841841            }
     842            lappend info "version" "$Rappture::version"
     843            lappend info "build" "$Rappture::build"
     844            lappend info "svnurl" "$Rappture::svnurl"
     845            lappend info "installdir" "$Rappture::installdir"
    842846            lappend info "hub" [exec hostname]
    843847            lappend info "client" "vtkviewer"
  • tags/1.3.5/gui/scripts/vtkvolumeviewer.tcl

    r4753 r4754  
    763763                set session $env(SESSION)
    764764            }
     765            lappend info "version" "$Rappture::version"
     766            lappend info "build" "$Rappture::build"
     767            lappend info "svnurl" "$Rappture::svnurl"
     768            lappend info "installdir" "$Rappture::installdir"
    765769            lappend info "hub" [exec hostname]
    766770            lappend info "client" "vtkvolumeviewer"
  • tags/1.3.5/lang/tcl/pkgIndex.tcl.in

    r3739 r4754  
    66        variable version $version
    77        variable build "@SVN_VERSION@"
     8        variable svnurl "@SVN_URL@"
    89        variable installdir [file normalize $dir]
    910    }
Note: See TracChangeset for help on using the changeset viewer.