Changeset 3959
- Timestamp:
- Sep 24, 2013 4:43:55 PM (10 years ago)
- Location:
- branches/blt4
- Files:
-
- 25 added
- 1 deleted
- 220 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/blt4/aclocal.m4
r2742 r3959 9 9 builtin(include,./cf/rpLangMatlab.m4) 10 10 builtin(include,./cf/rpLangR.m4) 11 builtin(include,./cf/rpLangRuby.m4) -
branches/blt4/builder/Makefile.in
r2170 r3959 29 29 destdir = $(libdir)/$(name) 30 30 31 .PHONY: all install install-pkg install-scripts clean distclean 32 31 33 all: 32 34 $(MAKE) -C scripts all … … 46 48 47 49 distclean: clean 48 $(RM) Makefile *~50 $(RM) Makefile pkgIndex.tcl *~ -
branches/blt4/builder/scripts/Makefile.in
r2936 r3959 45 45 destdir = $(libdir)/$(name)/scripts 46 46 47 .PHONY: all install install_scripts install_templates install_images clean distclean 48 47 49 all: tclIndex 48 50 … … 51 53 --outfile tclIndex 52 54 53 install: install_scripts install_templates install_images55 install: all install_scripts install_templates install_images 54 56 55 57 install_scripts: -
branches/blt4/builder/scripts/dragdrop.tcl
r2170 r3959 21 21 # ====================================================================== 22 22 # AUTHOR: Michael McLennan, Purdue University 23 # Copyright (c) 2004-201 0 Purdue Research Foundation23 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 24 24 # 25 25 # See the file "license.terms" for information on usage and -
branches/blt4/builder/scripts/filmstrip.tcl
r2170 r3959 7 7 # ====================================================================== 8 8 # AUTHOR: Michael McLennan, Purdue University 9 # Copyright (c) 2004-201 0 Purdue Research Foundation9 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 # 11 11 # See the file "license.terms" for information on usage and -
branches/blt4/builder/scripts/hierlist.tcl
r2275 r3959 6 6 # ====================================================================== 7 7 # AUTHOR: Michael McLennan, Purdue University 8 # Copyright (c) 2004-201 0 Purdue Research Foundation8 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 9 9 # 10 10 # See the file "license.terms" for information on usage and 11 11 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 12 12 # ====================================================================== 13 #package require Itk13 package require Itk 14 14 package require BLT 15 15 … … 93 93 dragdrop source $itk_component(area) 94 94 95 set _imh(open) [image create p icture]96 set _imh(close) [image create p icture]95 set _imh(open) [image create photo] 96 set _imh(close) [image create photo] 97 97 98 98 eval itk_initialize $args … … 371 371 # ---------------------------------------------------------------------- 372 372 itcl::body Rappture::Hierlist::dd_get_source {widget x y} { 373 # convert from screen coords to canvas coords (for scrollbars) 374 set x [$widget canvasx $x] 375 set y [$widget canvasy $y] 376 373 377 set data "" 374 foreach id [$ itk_component(area)find overlapping $x $y $x $y] {375 foreach tag [$ itk_component(area)gettags $id] {378 foreach id [$widget find overlapping $x $y $x $y] { 379 foreach tag [$widget gettags $id] { 376 380 # search for a tag like item:NNN and make sure it's selected 377 381 if {[regexp {^item:([0-9]+)$} $tag match node] -
branches/blt4/builder/scripts/main.tcl
r2294 r3959 14 14 # ====================================================================== 15 15 # AUTHOR: Michael McLennan, Purdue University 16 # Copyright (c) 2004-201 0 Purdue Research Foundation16 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 17 17 # 18 18 # See the file "license.terms" for information on usage and … … 87 87 88 88 switch $tcl_platform(platform) { 89 unix - windows { 89 unix { 90 event add <<PopupMenu>> <ButtonPress-3> 91 92 # make Ctrl-V binding work: 93 # not strict Motif, and remove conflicting binding in Tk library 94 set tk_strictMotif 0 95 bind Text <Control-v> "" 96 } 97 windows { 90 98 event add <<PopupMenu>> <ButtonPress-3> 91 99 } … … 659 667 # ---------------------------------------------------------------------- 660 668 proc main_saveas {{option "start"}} { 661 global SaveAs ToolXml LastToolXmlFile LastToolXmlLoaded669 global tcl_platform SaveAs ToolXml LastToolXmlFile LastToolXmlLoaded 662 670 663 671 switch -- $option { … … 673 681 # something went wrong while saving the xml 674 682 # pull up the build tab, so we can see the error 675 .func select "Build"683 .func select [.func index -name "Build"] 676 684 return 677 685 } 678 686 679 687 if {[main_errors]} { 680 .func select "Build"688 .func select [.func index -name "Build"] 681 689 pack .func.build.options.errs \ 682 690 -before .func.build.options.panes \ … … 846 854 set pfile "main$SaveAs(ext)" 847 855 } 856 set fname [file tail $pfile] 848 857 set mfile [file join [file dirname $pfile] Makefile] 849 858 if {[file exists $mfile]} { … … 858 867 } 859 868 860 set fname [file tail $pfile] 861 set dir [file dirname [file dirname $::Rappture::installdir]] 869 # /apps/rappture/current for 32-bit systems 870 # /apps/share64/rappture/current for 64-bit systems 871 if {$tcl_platform(wordSize) == 8 872 && [file isdirectory /apps/share64/rappture/current]} { 873 set dir /apps/share64/rappture/current 874 } else { 875 set dir /apps/rappture/current 876 } 877 if {![file isdirectory $dir]} { 878 # if all else fails, ask the current Rappture for its install dir 879 set dir [file dirname [file dirname $::Rappture::installdir]] 880 } 881 862 882 set macros [list @@RAPPTUREDIR@@ $dir] 863 883 lappend macros @@FILENAME@@ $fname … … 1003 1023 # something went wrong while saving the xml 1004 1024 # pull up the build tab, so we can see the error 1005 .func select "Build"1025 .func select [.func index -name "Build"] 1006 1026 return 1007 1027 } 1008 1028 1009 if {[main_errors ]} {1010 .func select "Build"1029 if {[main_errors -strict]} { 1030 .func select [.func index -name "Build"] 1011 1031 pack .func.build.options.errs -before .func.build.options.panes \ 1012 1032 -pady {10 0} -fill x … … 1083 1103 # turn off download options and clear button 1084 1104 $f.analyze component download configure -state disabled 1085 $f.analyze component resultse tcomponent clear configure -state disabled1086 # remove the "---" and "Download..." options from the resultselector1087 $f.analyze component resultselector choices delete end1088 $f.analyze component resultselector choices delete end1105 $f.analyze component resultselector component clear configure -state disabled 1106 # remove the "---" and "Download..." options from the view selector 1107 $f.analyze component viewselector choices delete end 1108 $f.analyze component viewselector choices delete end 1089 1109 } 1090 1110 … … 1467 1487 1468 1488 # use this frame to cover preview before it appears 1469 set bg [blt::bgpattern create tile -image [Rappture::icon diag]] 1470 blt::tk::frame .func.preview.stripes -bg $bg 1489 blt::tile::frame .func.preview.stripes -tile [Rappture::icon diag] 1471 1490 1472 1491 # ---------------------------------------------------------------------- … … 1528 1547 set ErrFocusAttr "" 1529 1548 1530 if { "" != $params(-tool)} {1549 if {$params(-tool) ne ""} { 1531 1550 if {![file exists $params(-tool)]} { 1532 1551 puts stderr "can't find tool \"$params(-tool)\"" … … 1534 1553 } 1535 1554 main_open $params(-tool) 1555 } elseif {[file exists tool.xml]} { 1556 main_open tool.xml 1536 1557 } else { 1537 1558 main_open -new -
branches/blt4/builder/scripts/objpath.tcl
r2170 r3959 8 8 # ====================================================================== 9 9 # AUTHOR: Michael McLennan, Purdue University 10 # Copyright (c) 2004-201 0 Purdue Research Foundation10 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 # 12 12 # See the file "license.terms" for information on usage and -
branches/blt4/builder/scripts/slideframes.tcl
r2170 r3959 8 8 # ====================================================================== 9 9 # AUTHOR: Michael McLennan, Purdue University 10 # Copyright (c) 2004-201 0 Purdue Research Foundation10 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 # 12 12 # See the file "license.terms" for information on usage and -
branches/blt4/builder/scripts/templates.tcl
r2170 r3959 15 15 # ====================================================================== 16 16 # AUTHOR: Michael McLennan, Purdue University 17 # Copyright (c) 2004-201 1 Purdue Research Foundation17 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 18 18 # 19 19 # See the file "license.terms" for information on usage and -
branches/blt4/builder/scripts/templates/clang.tl
r3017 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-201 1 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and … … 134 134 code "\n/* save output value for $path */" 135 135 code "/* this shows just one point -- modify as needed */" 136 code "/* (x, y) = x-label, y-coordinate is height of bar*/"137 code "sprintf(line, \"% s %g\\n\", x, y);"138 code "rpPutString(io,\"$path.component.x y\", line, RPLIB_APPEND);"136 code "/* (x,h,w) = x-coord, height of bar, and width of bar (optional) */" 137 code "sprintf(line, \"%g %g %g\\n\", x, h, w);" 138 code "rpPutString(io,\"$path.component.xhw\", line, RPLIB_APPEND);" 139 139 } 140 140 output image { -
branches/blt4/builder/scripts/templates/fortran77.tl
r3017 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-201 1 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and … … 130 130 code "\nc save output value for $path" 131 131 code "c this shows just one point -- modify as needed" 132 code "c (x, y) = x-label, y-coordinate is height of bar"133 code " write(strVal,'( A20,E20.12,A)') label, x, h, char(10)"134 code " call rp_lib_put_str(io,\n + \"$path.component.x y\",strVal,1)"132 code "c (x,h,w) = x-coord, height of bar, and width of bar (optional)" 133 code " write(strVal,'(E20.12,E20.12,E20.12,A)') x, h, w, char(10)" 134 code " call rp_lib_put_str(io,\n + \"$path.component.xhw\",strVal,1)" 135 135 } 136 136 output image { -
branches/blt4/builder/scripts/templates/java.tl
r3017 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-201 1 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and … … 91 91 code "\n// save output value for $path" 92 92 code "// this shows just one point -- modify as needed" 93 code "// (x, y) = x-label, y-coordinate is height of bar"94 code "str = String.format(\"% s %g\\n\", x, y);"95 code "io.put(\"$path.component.x y\", line, true);"93 code "// (x,h,w) = x-coord, height of bar, and width of bar (optional)" 94 code "str = String.format(\"%g %g %g\\n\", x, h, w);" 95 code "io.put(\"$path.component.xhw\", line, true);" 96 96 } 97 97 output image { -
branches/blt4/builder/scripts/templates/matlab.tl
r3017 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-201 1 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and … … 83 83 output histogram { 84 84 code "\n% save output value for $path" 85 code "% vectors x, y: x-label, y-coordinate is height of bar"86 code "x ydata = \[x;y\];"87 code "str = sprintf('% s %12g\\n', x, y);"88 code "rpLibPutString(io,'$path.component.x y',str,0);"85 code "% vectors x,h,w: x-coord, height of bar, and width of bar (optional)" 86 code "xhwdata = \[x;h;w\];" 87 code "str = sprintf('%12g %12g %12g\\n', xhwdata);" 88 code "rpLibPutString(io,'$path.component.xhw',str,0);" 89 89 } 90 90 output image { -
branches/blt4/builder/scripts/templates/octave.tl
r3017 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-201 1 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and … … 95 95 output integer { 96 96 code "\n% save output value for $path" 97 code "rpLibPutString(io,'$path.current', int2str($id),0);"97 code "rpLibPutString(io,'$path.current',num2str($id),0);" 98 98 } 99 99 output number { -
branches/blt4/builder/scripts/templates/perl.tl
r3017 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-201 1 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and … … 79 79 code "\n# save output value for $path" 80 80 code "# this shows just one point -- modify as needed" 81 code "# (x, y) = x-label, y-coordinate is height of bar"82 code "\$io->put(\"$path.component.x y\", \"\$x \$y\\n\", 1);"81 code "# (x,h,w) = x-coord, height of bar, and width of bar (optional)" 82 code "\$io->put(\"$path.component.xhw\", \"\$x \$h \$w\\n\", 1);" 83 83 } 84 84 output image { -
branches/blt4/builder/scripts/templates/python.tl
r3017 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-201 1 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and … … 85 85 code "\n# save output value for $path" 86 86 code "# this shows just one point -- modify as needed" 87 code "# (x, y) = x-label, y-coordinate is height of bar"88 code "line = \"% s %g\n\" % (x, y)"89 code "io.put('$path.component.x y', line, append=1)"87 code "# (x,h,w) = x-coord, height of bar, and width of bar (optional)" 88 code "line = \"%g %g %g\n\" % (x, h, w)" 89 code "io.put('$path.component.xhw', line, append=1)" 90 90 } 91 91 output image { -
branches/blt4/builder/scripts/templates/r.tl
r3017 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-201 1 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and … … 79 79 code "\n# save output value for $path" 80 80 code "# assumes output in vectors x and y" 81 code "str <- paste(sprintf(\"% s%g\\n\",x,y), collapse=\"\")"81 code "str <- paste(sprintf(\"%g %g\\n\",x,y), collapse=\"\")" 82 82 code "rp_lib_put_string(io,\"$path.component.xy\",str,FALSE)" 83 83 } -
branches/blt4/builder/scripts/templates/ruby.tl
r3017 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-201 1 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and … … 79 79 code "\n# save output value for $path" 80 80 code "# this shows just one point -- modify as needed" 81 code "# (x, y) = x-label, y-coordinate is height of bar"82 code "str = sprintf(\"%g %g %g\\n\", x, y)"81 code "# (x,h,w) = x-coord, height of bar, and width of bar (optional)" 82 code "str = sprintf(\"%g %g %g\\n\", x, h, w)" 83 83 code "io.put(\"$path.component.xhw\", str, Rappture::APPEND)" 84 84 } … … 86 86 code "\n# save output value for $path" 87 87 code "# data should be base64-encoded image data" 88 code "io.put(\"$path.current\", imdata )"88 code "io.put(\"$path.current\", imdata, Rappture::OVERWRITE)" 89 89 } 90 90 output * { 91 91 code "\n# save output value for $path" 92 code "io.put(\"$path.current\",$id )"92 code "io.put(\"$path.current\",$id, Rappture::OVERWRITE)" 93 93 } 94 94 } -
branches/blt4/builder/scripts/templates/tcl.tl
r3017 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-201 1 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and … … 16 16 # ---------------------------------------------------------------------- 17 17 package require Rappture 18 package require Img 18 19 19 20 # open the XML file containing the run parameters … … 79 80 code "\n# save output value for $path" 80 81 code "# this shows just one point -- modify as needed" 81 code "# (x, y) = x-label, y-coordinate is height of bar"82 code "\$io put -append yes $path.component.xy \"\$x \$ y\\n\""82 code "# (x,h,w) = x-coord, height of bar, and width of bar (optional)" 83 code "\$io put -append yes $path.component.xy \"\$x \$h \$w\\n\"" 83 84 } 84 85 output image { … … 89 90 output * { 90 91 code "\n# save output value for $path" 91 code "\$io put $path.current \$ id"92 code "\$io put $path.current \$$id" 92 93 } 93 94 } -
branches/blt4/builder/scripts/tweener.tcl
r2170 r3959 10 10 # ====================================================================== 11 11 # AUTHOR: Michael McLennan, Purdue University 12 # Copyright (c) 2004-201 0 Purdue Research Foundation12 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 13 13 # 14 14 # See the file "license.terms" for information on usage and -
branches/blt4/configure
r3064 r3959 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.69 for Rappture 1. 1.3 # Generated by GNU Autoconf 2.69 for Rappture 1.4. 4 4 # 5 5 # Report bugs to <rappture@nanohub.org>. … … 581 581 PACKAGE_NAME='Rappture' 582 582 PACKAGE_TARNAME='rappture' 583 PACKAGE_VERSION='1. 1'584 PACKAGE_STRING='Rappture 1. 1'583 PACKAGE_VERSION='1.4' 584 PACKAGE_STRING='Rappture 1.4' 585 585 PACKAGE_BUGREPORT='rappture@nanohub.org' 586 586 PACKAGE_URL='' … … 671 671 OCTAVE_VERSION_MAJOR 672 672 OCTAVE_VERSION 673 SVN_VERSION 673 674 MKOCTFILE3 674 675 MKOCTFILE2 … … 684 685 HAVE_FFMPEG_LIBS 685 686 ENABLE_GUI 687 FFMPEG 686 688 LDFLAGS_DEFAULT 687 689 CFLAGS_DEFAULT 688 RUBY_EXTRA_LIBS 689 RUBY_SITE_PKG 690 host_os 691 host_vendor 692 host_cpu 693 host 694 build_os 695 build_vendor 696 build_cpu 697 build 698 HAVE_RUBY_H 699 RUBY_SITELIBDIR 700 RUBY_LIBRUBYARG_STATIC 701 RUBY_LIBRUBYARG 702 RUBY_LIBS 690 703 RUBY_LDFLAGS 704 RUBY_CXXFLAGS 705 RUBY_CFLAGS 691 706 RUBY_CPPFLAGS 692 AWK 693 RUBY_VERSION 694 SED 707 RUBY_VERSION_CODE 695 708 RUBY 696 709 R … … 816 829 with_R 817 830 with_ruby 831 with_ruby_sitelibdir 818 832 enable_shared 819 833 enable_symbols … … 1374 1388 # This message is too long to be a string in the A/UX 3.1 sh. 1375 1389 cat <<_ACEOF 1376 \`configure' configures Rappture 1. 1to adapt to many kinds of systems.1390 \`configure' configures Rappture 1.4 to adapt to many kinds of systems. 1377 1391 1378 1392 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1430 1444 1431 1445 cat <<\_ACEOF 1446 1447 System types: 1448 --build=BUILD configure for building on BUILD [guessed] 1449 --host=HOST cross-compile to build programs to run on HOST [BUILD] 1432 1450 _ACEOF 1433 1451 fi … … 1435 1453 if test -n "$ac_init_help"; then 1436 1454 case $ac_init_help in 1437 short | recursive ) echo "Configuration of Rappture 1. 1:";;1455 short | recursive ) echo "Configuration of Rappture 1.4:";; 1438 1456 esac 1439 1457 cat <<\_ACEOF … … 1468 1486 --with-java=DIR location of java [default=yes] 1469 1487 --with-R=DIR location of R interpreter [default=yes] 1470 --with-ruby=DIR location of ruby [default=yes] 1488 --with-ruby=PATH path to the ruby interpreter [[ruby]] 1489 --with-ruby-sitelibdir=PATH 1490 path to install ruby scripts [[auto-detect]] 1471 1491 1472 1492 Some influential environment variables: … … 1551 1571 if $ac_init_version; then 1552 1572 cat <<\_ACEOF 1553 Rappture configure 1. 11573 Rappture configure 1.4 1554 1574 generated by GNU Autoconf 2.69 1555 1575 … … 2371 2391 running configure, to aid debugging if configure makes a mistake. 2372 2392 2373 It was created by Rappture $as_me 1. 1, which was2393 It was created by Rappture $as_me 1.4, which was 2374 2394 generated by GNU Autoconf 2.69. Invocation command line was 2375 2395 … … 4731 4751 done 4732 4752 4753 for ac_func in gettimeofday 4754 do : 4755 ac_fn_cxx_check_func "$LINENO" "gettimeofday" "ac_cv_func_gettimeofday" 4756 if test "x$ac_cv_func_gettimeofday" = xyes; then : 4757 cat >>confdefs.h <<_ACEOF 4758 #define HAVE_GETTIMEOFDAY 1 4759 _ACEOF 4760 4761 fi 4762 done 4763 4764 ac_fn_cxx_check_func "$LINENO" "localtime" "ac_cv_func_localtime" 4765 if test "x$ac_cv_func_localtime" = xyes; then : 4766 4767 else 4768 as_fn_error $? "oops! no localtime ?!?" "$LINENO" 5 4769 fi 4770 4771 ac_fn_cxx_check_func "$LINENO" "getenv" "ac_cv_func_getenv" 4772 if test "x$ac_cv_func_getenv" = xyes; then : 4773 4774 else 4775 as_fn_error $? "oops! no getenv ?!?" "$LINENO" 5 4776 fi 4777 4778 4733 4779 ac_ext=cpp 4734 4780 ac_cpp='$CXXCPP $CPPFLAGS' … … 4895 4941 4896 4942 4897 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lm" >&54898 $as_echo_n "checking for main in -lm... " >&6; }4899 if ${ac_cv_lib_m_main+:} false; then :4900 $as_echo_n "(cached) " >&64901 else4902 ac_check_lib_save_LIBS=$LIBS4903 LIBS="-lm $LIBS"4904 cat confdefs.h - <<_ACEOF >conftest.$ac_ext4905 /* end confdefs.h. */4906 4907 4908 int4909 main ()4910 {4911 return main ();4912 ;4913 return 0;4914 }4915 _ACEOF4916 if ac_fn_cxx_try_link "$LINENO"; then :4917 ac_cv_lib_m_main=yes4918 else4919 ac_cv_lib_m_main=no4920 fi4921 rm -f core conftest.err conftest.$ac_objext \4922 conftest$ac_exeext conftest.$ac_ext4923 LIBS=$ac_check_lib_save_LIBS4924 fi4925 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_main" >&54926 $as_echo "$ac_cv_lib_m_main" >&6; }4927 if test "x$ac_cv_lib_m_main" = xyes; then :4928 cat >>confdefs.h <<_ACEOF4929 #define HAVE_LIBM 14930 _ACEOF4931 4932 LIBS="-lm $LIBS"4933 4934 else4935 as_fn_error $? "librappture requires libm" "$LINENO" 54936 fi4937 4938 4939 4943 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clrtoeol in -lncurses" >&5 4940 4944 $as_echo_n "checking for clrtoeol in -lncurses... " >&6; } … … 4981 4985 4982 4986 else 4983 as_fn_error $? "ncurse rs library missing?" "$LINENO" 54987 as_fn_error $? "ncurses library missing?" "$LINENO" 5 4984 4988 fi 4985 4989 … … 7284 7288 7285 7289 7290 SVN_VERSION=`svnversion $srcdir` 7291 7286 7292 make_command="" 7287 7293 for m in "$MAKE" make gmake gnumake ; do … … 7451 7457 for path in \ 7452 7458 $libdir \ 7459 $prefix/lib/tcltk \ 7453 7460 $prefix/lib \ 7454 7461 $exec_prefix/lib \ … … 8615 8622 ${JAVA_HOME} \ 8616 8623 /apps/java/jdk1.6* \ 8617 /usr/lib/jvm/java-6-openjdk \8618 /usr/lib/jvm/icedtea-6 \8619 /usr/lib/jvm/*sun-1.6* \8620 8624 /opt/sun-jdk-1.6* \ 8621 /usr/lib/jvm/icedtea-7 \8622 8625 /opt/icedtea6-* \ 8623 8626 /opt/sun-jdk-1.5* \ 8624 /usr/lib/jvm/*sun-1.5* 8627 /usr/lib/jvm/*sun* \ 8628 /usr/lib/jvm/*icedtea* \ 8629 /usr/lib/jvm/*openjdk* 8625 8630 do 8626 8631 if test -r "${d}/include/jni.h" ; then … … 8740 8745 8741 8746 8742 8743 RUBY="" 8744 RUBY_DEV_PKG="no" 8747 # Make sure we can run config.sub. 8748 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || 8749 as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 8750 8751 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 8752 $as_echo_n "checking build system type... " >&6; } 8753 if ${ac_cv_build+:} false; then : 8754 $as_echo_n "(cached) " >&6 8755 else 8756 ac_build_alias=$build_alias 8757 test "x$ac_build_alias" = x && 8758 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` 8759 test "x$ac_build_alias" = x && 8760 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 8761 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || 8762 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 8763 8764 fi 8765 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 8766 $as_echo "$ac_cv_build" >&6; } 8767 case $ac_cv_build in 8768 *-*-*) ;; 8769 *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; 8770 esac 8771 build=$ac_cv_build 8772 ac_save_IFS=$IFS; IFS='-' 8773 set x $ac_cv_build 8774 shift 8775 build_cpu=$1 8776 build_vendor=$2 8777 shift; shift 8778 # Remember, the first character of IFS is used to create $*, 8779 # except with old shells: 8780 build_os=$* 8781 IFS=$ac_save_IFS 8782 case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac 8783 8784 8785 { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 8786 $as_echo_n "checking host system type... " >&6; } 8787 if ${ac_cv_host+:} false; then : 8788 $as_echo_n "(cached) " >&6 8789 else 8790 if test "x$host_alias" = x; then 8791 ac_cv_host=$ac_cv_build 8792 else 8793 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || 8794 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 8795 fi 8796 8797 fi 8798 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 8799 $as_echo "$ac_cv_host" >&6; } 8800 case $ac_cv_host in 8801 *-*-*) ;; 8802 *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; 8803 esac 8804 host=$ac_cv_host 8805 ac_save_IFS=$IFS; IFS='-' 8806 set x $ac_cv_host 8807 shift 8808 host_cpu=$1 8809 host_vendor=$2 8810 shift; shift 8811 # Remember, the first character of IFS is used to create $*, 8812 # except with old shells: 8813 host_os=$* 8814 IFS=$ac_save_IFS 8815 case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac 8816 8817 8818 8745 8819 8746 8820 8747 8821 # Check whether --with-ruby was given. 8748 8822 if test "${with_ruby+set}" = set; then : 8749 withval=$with_ruby; 8750 else 8751 with_ruby="yes" 8752 fi 8753 8754 8755 if test "${with_ruby}" != "no" ; then 8756 if test "${with_ruby}" = "yes" ; then 8757 # Extract the first word of "ruby", so it can be a program name with args. 8758 set dummy ruby; ac_word=$2 8759 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 8760 $as_echo_n "checking for $ac_word... " >&6; } 8761 if ${ac_cv_path_RUBY+:} false; then : 8762 $as_echo_n "(cached) " >&6 8763 else 8764 case $RUBY in 8765 [\\/]* | ?:[\\/]*) 8766 ac_cv_path_RUBY="$RUBY" # Let the user override the test with a path. 8767 ;; 8768 *) 8769 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 8770 for as_dir in $PATH 8771 do 8772 IFS=$as_save_IFS 8773 test -z "$as_dir" && as_dir=. 8774 for ac_exec_ext in '' $ac_executable_extensions; do 8775 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 8776 ac_cv_path_RUBY="$as_dir/$ac_word$ac_exec_ext" 8777 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 8778 break 2 8823 withval=$with_ruby; RUBY=$withval 8824 else 8825 RUBY=ruby 8826 fi 8827 8828 8829 # Check whether --with-ruby_sitelibdir was given. 8830 if test "${with_ruby_sitelibdir+set}" = set; then : 8831 withval=$with_ruby_sitelibdir; ruby_sitelibdir=$withval 8832 else 8833 ruby_sitelibdir=NONE 8834 fi 8835 8836 8837 8838 8839 RUBY_VERSION_CODE=`$RUBY -e "puts RUBY_VERSION.gsub(/\./, '')"` 8840 8841 8842 RUBY_CONFIG_SO_NAME=` 8843 $RUBY -rrbconfig -e "puts(Config::CONFIG['RUBY_SO_NAME'] || '')"` 8844 RUBY_CONFIG_ARCHDIR=` 8845 $RUBY -rrbconfig -e "puts(Config::CONFIG['archdir'] || '')"` 8846 RUBY_CONFIG_ARCH=` 8847 $RUBY -rrbconfig -e "puts(Config::CONFIG['arch'] || '')"` 8848 RUBY_CONFIG_LIBDIR=` 8849 $RUBY -rrbconfig -e "puts(Config::CONFIG['libdir'] || '')"` 8850 RUBY_CONFIG_BINDIR=` 8851 $RUBY -rrbconfig -e "puts(Config::CONFIG['bindir'] || '')"` 8852 RUBY_CONFIG_RUBYHDRDIR=` 8853 $RUBY -rrbconfig -e "puts(Config::CONFIG['rubyhdrdir'] || '')"` 8854 RUBY_CONFIG_CFLAGS=` 8855 $RUBY -rrbconfig -e "puts(Config::CONFIG['CFLAGS'] || '')"` 8856 RUBY_CONFIG_LIBS=` 8857 $RUBY -rrbconfig -e "puts(Config::CONFIG['LIBS'] || '')"` 8858 RUBY_CONFIG_DLDLIBS=` 8859 $RUBY -rrbconfig -e "puts(Config::CONFIG['DLDLIBS'] || '')"` 8860 RUBY_CONFIG_LDFLAGS=` 8861 $RUBY -rrbconfig -e "puts(Config::CONFIG['LDFLAGS'] || '')"` 8862 RUBY_CONFIG_LIBRUBYARG=` 8863 $RUBY -rrbconfig -e "puts(Config::CONFIG['LIBRUBYARG'] || '')"` 8864 RUBY_CONFIG_LIBRUBYARG_STATIC=` 8865 $RUBY -rrbconfig -e "puts(Config::CONFIG['LIBRUBYARG_STATIC'] || '')"` 8866 RUBY_CONFIG_CCDLFLAGS=` 8867 $RUBY -rrbconfig -e "puts(Config::CONFIG['CCDLFLAGS'] || '')"` 8868 8869 if test "x${RUBY_CONFIG_RUBYHDRDIR}x" != "xx"; then 8870 # 1.9 8871 RUBY_CPPFLAGS="-I${RUBY_CONFIG_RUBYHDRDIR}" 8872 RUBY_CPPFLAGS="${RUBY_CPPFLAGS} -I${RUBY_CONFIG_RUBYHDRDIR}/${RUBY_CONFIG_ARCH}" 8873 else 8874 # 1.8 8875 RUBY_CPPFLAGS="-I${RUBY_CONFIG_ARCHDIR}" 8876 fi 8877 8878 8879 RUBY_CFLAGS="${RUBY_CONFIG_CFLAGS} ${RUBY_CONFIG_CCDLFLAGS}" 8880 8881 8882 RUBY_CXXFLAGS="${RUBY_CONFIG_CFLAGS} ${RUBY_CONFIG_CCDLFLAGS}" 8883 8884 8885 RUBY_LDFLAGS="-L${RUBY_CONFIG_ARCHDIR} -L${RUBY_CONFIG_LIBDIR} ${RUBY_CONFIG_LDFLAGS}" 8886 8887 8888 RUBY_LIBS="${RUBY_CONFIG_LIBS} ${RUBY_CONFIG_DLDLIBS}" 8889 8890 8891 RUBY_LIBRUBYARG="${RUBY_CONFIG_LIBRUBYARG}" 8892 8893 8894 RUBY_LIBRUBYARG_STATIC="${RUBY_CONFIG_LIBRUBYARG_STATIC}" 8895 8896 8897 if test "x${ruby_sitelibdir}x" != "xNONEx" 8898 then 8899 RUBY_SITELIBDIR="${ruby_sitelibdir}" 8900 else 8901 if test "x${prefix}x" = "xNONEx" 8902 then 8903 RUBY_SITELIBDIR=` 8904 $RUBY -rrbconfig -e "puts(Config::CONFIG['sitelibdir'] || '')"` 8905 else 8906 sitelibdir_no_prefix=`$RUBY -rrbconfig \ 8907 -e "include Config; \ 8908 puts CONFIG['sitelibdir'].sub(CONFIG['prefix'], '')"` 8909 RUBY_SITELIBDIR="${prefix}/${sitelibdir_no_prefix}" 8779 8910 fi 8780 done 8781 done 8782 IFS=$as_save_IFS 8783 8784 ;; 8911 fi 8912 8913 8914 CPPFLAGS_save="${CPPFLAGS}" 8915 CPPFLAGS="${CPPFLAGS} ${RUBY_CPPFLAGS}" 8916 CXXFLAGS="${CPPFLAGS}" 8917 for ac_header in ruby.h 8918 do : 8919 ac_fn_cxx_check_header_mongrel "$LINENO" "ruby.h" "ac_cv_header_ruby_h" "$ac_includes_default" 8920 if test "x$ac_cv_header_ruby_h" = xyes; then : 8921 cat >>confdefs.h <<_ACEOF 8922 #define HAVE_RUBY_H 1 8923 _ACEOF 8924 8925 fi 8926 8927 done 8928 8929 HAVE_RUBY_H=${ac_cv_header_ruby_h} 8930 8931 8932 for ac_header in node.h 8933 do : 8934 ac_fn_cxx_check_header_compile "$LINENO" "node.h" "ac_cv_header_node_h" " 8935 #include <ruby.h> 8936 8937 " 8938 if test "x$ac_cv_header_node_h" = xyes; then : 8939 cat >>confdefs.h <<_ACEOF 8940 #define HAVE_NODE_H 1 8941 _ACEOF 8942 8943 fi 8944 8945 done 8946 8947 for ac_header in ruby/node.h 8948 do : 8949 ac_fn_cxx_check_header_compile "$LINENO" "ruby/node.h" "ac_cv_header_ruby_node_h" " 8950 #include <ruby.h> 8951 8952 " 8953 if test "x$ac_cv_header_ruby_node_h" = xyes; then : 8954 cat >>confdefs.h <<_ACEOF 8955 #define HAVE_RUBY_NODE_H 1 8956 _ACEOF 8957 8958 $as_echo "#define REALLY_HAVE_RUBY_NODE_H /**/" >>confdefs.h 8959 8960 fi 8961 8962 done 8963 8964 for ac_header in version.h 8965 do : 8966 ac_fn_cxx_check_header_compile "$LINENO" "version.h" "ac_cv_header_version_h" " 8967 #include <ruby.h> 8968 8969 " 8970 if test "x$ac_cv_header_version_h" = xyes; then : 8971 cat >>confdefs.h <<_ACEOF 8972 #define HAVE_VERSION_H 1 8973 _ACEOF 8974 8975 fi 8976 8977 done 8978 8979 for ac_header in env.h 8980 do : 8981 ac_fn_cxx_check_header_compile "$LINENO" "env.h" "ac_cv_header_env_h" " 8982 #include <ruby.h> 8983 8984 " 8985 if test "x$ac_cv_header_env_h" = xyes; then : 8986 cat >>confdefs.h <<_ACEOF 8987 #define HAVE_ENV_H 1 8988 _ACEOF 8989 8990 fi 8991 8992 done 8993 8994 8995 CPPFLAGS="${CPPFLAGS_save}" 8996 8997 8998 case $host_os in 8999 *mingw32* ) MINGW32=yes;; 9000 * ) MINGW32=no;; 8785 9001 esac 8786 fi 8787 RUBY=$ac_cv_path_RUBY 8788 if test -n "$RUBY"; then 8789 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RUBY" >&5 8790 $as_echo "$RUBY" >&6; } 8791 else 8792 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 8793 $as_echo "no" >&6; } 8794 fi 8795 8796 8797 else 8798 # Extract the first word of "ruby", so it can be a program name with args. 8799 set dummy ruby; ac_word=$2 8800 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 8801 $as_echo_n "checking for $ac_word... " >&6; } 8802 if ${ac_cv_path_RUBY+:} false; then : 8803 $as_echo_n "(cached) " >&6 8804 else 8805 case $RUBY in 8806 [\\/]* | ?:[\\/]*) 8807 ac_cv_path_RUBY="$RUBY" # Let the user override the test with a path. 8808 ;; 8809 *) 8810 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 8811 as_dummy="${with_ruby}/bin:${with_ruby}" 8812 for as_dir in $as_dummy 8813 do 8814 IFS=$as_save_IFS 8815 test -z "$as_dir" && as_dir=. 8816 for ac_exec_ext in '' $ac_executable_extensions; do 8817 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 8818 ac_cv_path_RUBY="$as_dir/$ac_word$ac_exec_ext" 8819 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 8820 break 2 8821 fi 8822 done 8823 done 8824 IFS=$as_save_IFS 8825 8826 ;; 8827 esac 8828 fi 8829 RUBY=$ac_cv_path_RUBY 8830 if test -n "$RUBY"; then 8831 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RUBY" >&5 8832 $as_echo "$RUBY" >&6; } 8833 else 8834 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 8835 $as_echo "no" >&6; } 8836 fi 8837 8838 8839 fi 8840 fi 8841 8842 RUBY_VERSION_RV= 8843 RUBY_PLATFORM= 8844 if test "x${RUBY}" != "x" ; then 8845 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 8846 $as_echo_n "checking for a sed that does not truncate output... " >&6; } 8847 if ${ac_cv_path_SED+:} false; then : 8848 $as_echo_n "(cached) " >&6 8849 else 8850 ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ 8851 for ac_i in 1 2 3 4 5 6 7; do 8852 ac_script="$ac_script$as_nl$ac_script" 8853 done 8854 echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed 8855 { ac_script=; unset ac_script;} 8856 if test -z "$SED"; then 8857 ac_path_SED_found=false 8858 # Loop through the user's path and test for each of PROGNAME-LIST 8859 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 8860 for as_dir in $PATH 8861 do 8862 IFS=$as_save_IFS 8863 test -z "$as_dir" && as_dir=. 8864 for ac_prog in sed gsed; do 8865 for ac_exec_ext in '' $ac_executable_extensions; do 8866 ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" 8867 as_fn_executable_p "$ac_path_SED" || continue 8868 # Check for GNU ac_path_SED and select it if it is found. 8869 # Check for GNU $ac_path_SED 8870 case `"$ac_path_SED" --version 2>&1` in 8871 *GNU*) 8872 ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; 8873 *) 8874 ac_count=0 8875 $as_echo_n 0123456789 >"conftest.in" 8876 while : 8877 do 8878 cat "conftest.in" "conftest.in" >"conftest.tmp" 8879 mv "conftest.tmp" "conftest.in" 8880 cp "conftest.in" "conftest.nl" 8881 $as_echo '' >> "conftest.nl" 8882 "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break 8883 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break 8884 as_fn_arith $ac_count + 1 && ac_count=$as_val 8885 if test $ac_count -gt ${ac_path_SED_max-0}; then 8886 # Best one so far, save it but keep looking for a better one 8887 ac_cv_path_SED="$ac_path_SED" 8888 ac_path_SED_max=$ac_count 8889 fi 8890 # 10*(2^10) chars as input seems more than enough 8891 test $ac_count -gt 10 && break 8892 done 8893 rm -f conftest.in conftest.tmp conftest.nl conftest.out;; 8894 esac 8895 8896 $ac_path_SED_found && break 3 8897 done 8898 done 8899 done 8900 IFS=$as_save_IFS 8901 if test -z "$ac_cv_path_SED"; then 8902 as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 8903 fi 8904 else 8905 ac_cv_path_SED=$SED 8906 fi 8907 8908 fi 8909 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 8910 $as_echo "$ac_cv_path_SED" >&6; } 8911 SED="$ac_cv_path_SED" 8912 rm -f conftest.sed 8913 8914 8915 8916 8917 8918 if test -n "$RUBY"; then : 8919 8920 ax_ruby_version="" 8921 8922 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ruby version" >&5 8923 $as_echo_n "checking for ruby version... " >&6; } 8924 8925 ruby_version=`$RUBY --version 2>&1 | $GREP "^ruby " | $SED -e 's/^.* \([0-9]*\.[0-9]*\.[0-9]*\) .*/\1/'` 8926 8927 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ruby_version" >&5 8928 $as_echo "$ruby_version" >&6; } 8929 8930 RUBY_VERSION=$ruby_version 8931 8932 8933 8934 for ac_prog in gawk mawk nawk awk 8935 do 8936 # Extract the first word of "$ac_prog", so it can be a program name with args. 8937 set dummy $ac_prog; ac_word=$2 8938 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 8939 $as_echo_n "checking for $ac_word... " >&6; } 8940 if ${ac_cv_prog_AWK+:} false; then : 8941 $as_echo_n "(cached) " >&6 8942 else 8943 if test -n "$AWK"; then 8944 ac_cv_prog_AWK="$AWK" # Let the user override the test. 8945 else 8946 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 8947 for as_dir in $PATH 8948 do 8949 IFS=$as_save_IFS 8950 test -z "$as_dir" && as_dir=. 8951 for ac_exec_ext in '' $ac_executable_extensions; do 8952 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 8953 ac_cv_prog_AWK="$ac_prog" 8954 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 8955 break 2 8956 fi 8957 done 8958 done 8959 IFS=$as_save_IFS 8960 8961 fi 8962 fi 8963 AWK=$ac_cv_prog_AWK 8964 if test -n "$AWK"; then 8965 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 8966 $as_echo "$AWK" >&6; } 8967 else 8968 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 8969 $as_echo "no" >&6; } 8970 fi 8971 8972 8973 test -n "$AWK" && break 8974 done 8975 8976 8977 # Used to indicate true or false condition 8978 ax_compare_version=false 8979 8980 # Convert the two version strings to be compared into a format that 8981 # allows a simple string comparison. The end result is that a version 8982 # string of the form 1.12.5-r617 will be converted to the form 8983 # 0001001200050617. In other words, each number is zero padded to four 8984 # digits, and non digits are removed. 8985 8986 ax_compare_version_A=`echo "$ax_ruby_version" | sed -e 's/\([0-9]*\)/Z\1Z/g' \ 8987 -e 's/Z\([0-9]\)Z/Z0\1Z/g' \ 8988 -e 's/Z\([0-9][0-9]\)Z/Z0\1Z/g' \ 8989 -e 's/Z\([0-9][0-9][0-9]\)Z/Z0\1Z/g' \ 8990 -e 's/[^0-9]//g'` 8991 8992 8993 ax_compare_version_B=`echo "$ruby_version" | sed -e 's/\([0-9]*\)/Z\1Z/g' \ 8994 -e 's/Z\([0-9]\)Z/Z0\1Z/g' \ 8995 -e 's/Z\([0-9][0-9]\)Z/Z0\1Z/g' \ 8996 -e 's/Z\([0-9][0-9][0-9]\)Z/Z0\1Z/g' \ 8997 -e 's/[^0-9]//g'` 8998 8999 9000 ax_compare_version=`echo "x$ax_compare_version_A 9001 x$ax_compare_version_B" | sed 's/^ *//' | sort | sed "s/x${ax_compare_version_A}/true/;s/x${ax_compare_version_B}/false/;1q"` 9002 9003 9004 9005 if test "$ax_compare_version" = "true" ; then 9006 9007 : 9008 9009 9010 else 9011 : 9012 9013 9014 fi 9015 9016 9017 else 9018 9019 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: could not find the ruby interpreter" >&5 9020 $as_echo "$as_me: WARNING: could not find the ruby interpreter" >&2;} 9021 9022 9023 fi 9024 9025 RUBY_VERSION_RV=`echo ${RUBY_VERSION} | cut -d'.' -f1-2` 9026 RUBY_PLATFORM=`ruby -e 'puts RUBY_PLATFORM'` 9027 ac_mkmf_result=`${RUBY} -r mkmf -e ";" 2>&1` 9028 if test -z "$ac_mkmf_result"; then 9029 HAVE_RUBY_DEVEL="yes" 9030 9031 # 9032 # Check for Ruby include path 9033 # 9034 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Ruby include path" >&5 9035 $as_echo_n "checking for Ruby include path... " >&6; } 9036 if test -z "$RUBY_CPPFLAGS"; then 9037 ruby_path=`$RUBY -rmkmf -e 'print Config::CONFIG["archdir"]'` 9038 if test -n "${ruby_path}"; then 9039 ruby_path="-I$ruby_path" 9040 fi 9041 RUBY_CPPFLAGS=$ruby_path 9042 fi 9043 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RUBY_CPPFLAGS" >&5 9044 $as_echo "$RUBY_CPPFLAGS" >&6; } 9045 9046 9047 # 9048 # Check for Ruby library path 9049 # 9050 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Ruby library path" >&5 9051 $as_echo_n "checking for Ruby library path... " >&6; } 9052 if test -z "$RUBY_LDFLAGS"; then 9053 RUBY_LDFLAGS=`$RUBY -rmkmf -e 'print Config::CONFIG["LIBRUBYARG_SHARED"]'` 9054 fi 9055 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RUBY_LDFLAGS" >&5 9056 $as_echo "$RUBY_LDFLAGS" >&6; } 9057 9058 9059 # 9060 # Check for site packages 9061 # 9062 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Ruby site-packages path" >&5 9063 $as_echo_n "checking for Ruby site-packages path... " >&6; } 9064 if test -z "$RUBY_SITE_PKG"; then 9065 RUBY_SITE_PKG=`$RUBY -rmkmf -e 'print Config::CONFIG["sitearchdir"]'` 9066 fi 9067 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RUBY_SITE_PKG" >&5 9068 $as_echo "$RUBY_SITE_PKG" >&6; } 9069 9070 9071 # 9072 # libraries which must be linked in when embedding 9073 # 9074 { $as_echo "$as_me:${as_lineno-$LINENO}: checking ruby extra libraries" >&5 9075 $as_echo_n "checking ruby extra libraries... " >&6; } 9076 if test -z "$RUBY_EXTRA_LIBS"; then 9077 RUBY_EXTRA_LIBS=`$RUBY -rmkmf -e 'print Config::CONFIG["SOLIBS"]'` 9078 fi 9079 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RUBY_EXTRA_LIBS" >&5 9080 $as_echo "$RUBY_EXTRA_LIBS" >&6; } 9081 9082 9083 # 9084 # linking flags needed when embedding 9085 # (is it even needed for Ruby?) 9086 # 9087 # AC_MSG_CHECKING(ruby extra linking flags) 9088 # if test -z "$RUBY_EXTRA_LDFLAGS"; then 9089 # RUBY_EXTRA_LDFLAGS=`$RUBY -rmkmf -e 'print Config::CONFIG[["LINKFORSHARED"]]'` 9090 # fi 9091 # AC_MSG_RESULT([$RUBY_EXTRA_LDFLAGS]) 9092 # AC_SUBST(RUBY_EXTRA_LDFLAGS) 9093 9094 # this flags breaks ruby.h, and is sometimes defined by KDE m4 macros 9095 CFLAGS="`echo "$CFLAGS" | sed -e 's/-std=iso9899:1990//g;'`" 9096 # 9097 # final check to see if everything compiles alright 9098 # 9099 { $as_echo "$as_me:${as_lineno-$LINENO}: checking consistency of all components of ruby development environment" >&5 9100 $as_echo_n "checking consistency of all components of ruby development environment... " >&6; } 9101 ac_ext=c 9102 ac_cpp='$CPP $CPPFLAGS' 9103 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' 9104 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 9105 ac_compiler_gnu=$ac_cv_c_compiler_gnu 9106 9107 # save current global flags 9108 ac_save_LIBS="$LIBS" 9109 LIBS="$ac_save_LIBS $RUBY_LDFLAGS" 9110 ac_save_CPPFLAGS="$CPPFLAGS" 9111 CPPFLAGS="$ac_save_CPPFLAGS $RUBY_CPPFLAGS" 9112 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 9113 /* end confdefs.h. */ 9114 9115 #include <ruby.h> 9116 9117 int 9118 main () 9119 { 9120 9121 ruby_init(); 9122 9123 ; 9124 return 0; 9125 } 9126 _ACEOF 9127 if ac_fn_c_try_link "$LINENO"; then : 9128 rubyexists=yes 9129 else 9130 rubyexists=no 9131 fi 9132 rm -f core conftest.err conftest.$ac_objext \ 9133 conftest$ac_exeext conftest.$ac_ext 9134 9135 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $rubyexists" >&5 9136 $as_echo "$rubyexists" >&6; } 9137 9138 if test "$rubyexists" = "no"; then 9139 HAVE_RUBY_DEVEL="no" 9140 fi 9141 ac_ext=cpp 9142 ac_cpp='$CXXCPP $CPPFLAGS' 9143 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' 9144 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 9145 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 9146 9147 # turn back to default flags 9148 CPPFLAGS="$ac_save_CPPFLAGS" 9149 LIBS="$ac_save_LIBS" 9150 9151 # 9152 # all done! 9153 # 9154 9155 fi 9156 fi 9002 9003 9004 if test x"${MINGW32}"x = xyesx; then 9005 9006 RUBY_LIBS=`echo ${RUBY_LIBS} | sed -e "s%oldnames.lib%-lmoldname%"` 9007 RUBY_LIBS=`echo ${RUBY_LIBS} | sed -e "s%user32.lib%-luser32%"` 9008 RUBY_LIBS=`echo ${RUBY_LIBS} | sed -e "s%advapi32.lib%-ladvapi32%"` 9009 RUBY_LIBS=`echo ${RUBY_LIBS} | sed -e "s%ws2_32.lib%-lws2_32%"` 9010 RUBY_LIBRUBYARG=`echo ${RUBY_LIBRUBYARG} | sed -e "s%\(msvcrt-ruby.*\).lib%${RUBY_CONFIG_BINDIR}/\1.dll%"` 9011 RUBY_LIBRUBYARG_STATIC=`echo ${RUBY_LIBRUBYARG_STATIC} | sed -e "s%\(msvcrt-ruby.*\).lib%${RUBY_CONFIG_LIBDIR}/\1.lib%"` 9012 9013 fi 9014 9157 9015 9158 9016 … … 9634 9492 # search for ffmpeg libraries libavcodec, libavformat, libswscale 9635 9493 #-------------------------------------------------------------------- 9636 9637 for ac_header in ffmpeg/avcodec.h libavcodec/avcodec.h ffmpeg/avformat.h libavformat/avformat.h ffmpeg/avutil.h libavutil/avutil.h ffmpeg/swscale.h libswscale/swscale.h 9494 if test "${with_ffmpeg}" != "no" ; then 9495 if test "${with_ffmpeg}" = "yes" ; then 9496 # Extract the first word of "ffmpeg", so it can be a program name with args. 9497 set dummy ffmpeg; ac_word=$2 9498 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 9499 $as_echo_n "checking for $ac_word... " >&6; } 9500 if ${ac_cv_path_FFMPEG+:} false; then : 9501 $as_echo_n "(cached) " >&6 9502 else 9503 case $FFMPEG in 9504 [\\/]* | ?:[\\/]*) 9505 ac_cv_path_FFMPEG="$FFMPEG" # Let the user override the test with a path. 9506 ;; 9507 *) 9508 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 9509 for as_dir in $PATH 9510 do 9511 IFS=$as_save_IFS 9512 test -z "$as_dir" && as_dir=. 9513 for ac_exec_ext in '' $ac_executable_extensions; do 9514 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 9515 ac_cv_path_FFMPEG="$as_dir/$ac_word$ac_exec_ext" 9516 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 9517 break 2 9518 fi 9519 done 9520 done 9521 IFS=$as_save_IFS 9522 9523 ;; 9524 esac 9525 fi 9526 FFMPEG=$ac_cv_path_FFMPEG 9527 if test -n "$FFMPEG"; then 9528 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FFMPEG" >&5 9529 $as_echo "$FFMPEG" >&6; } 9530 else 9531 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 9532 $as_echo "no" >&6; } 9533 fi 9534 9535 9536 else 9537 # Extract the first word of "ffmpeg", so it can be a program name with args. 9538 set dummy ffmpeg; ac_word=$2 9539 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 9540 $as_echo_n "checking for $ac_word... " >&6; } 9541 if ${ac_cv_path_FFMPEG+:} false; then : 9542 $as_echo_n "(cached) " >&6 9543 else 9544 case $FFMPEG in 9545 [\\/]* | ?:[\\/]*) 9546 ac_cv_path_FFMPEG="$FFMPEG" # Let the user override the test with a path. 9547 ;; 9548 *) 9549 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 9550 as_dummy="${with_ffmpeg}/bin:${with_ffmpeg}" 9551 for as_dir in $as_dummy 9552 do 9553 IFS=$as_save_IFS 9554 test -z "$as_dir" && as_dir=. 9555 for ac_exec_ext in '' $ac_executable_extensions; do 9556 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 9557 ac_cv_path_FFMPEG="$as_dir/$ac_word$ac_exec_ext" 9558 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 9559 break 2 9560 fi 9561 done 9562 done 9563 IFS=$as_save_IFS 9564 9565 ;; 9566 esac 9567 fi 9568 FFMPEG=$ac_cv_path_FFMPEG 9569 if test -n "$FFMPEG"; then 9570 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FFMPEG" >&5 9571 $as_echo "$FFMPEG" >&6; } 9572 else 9573 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 9574 $as_echo "no" >&6; } 9575 fi 9576 9577 9578 fi 9579 if test "${FFMPEG}x" != "x" ; then 9580 9581 $as_echo "#define HAVE_FFMPEG 1" >>confdefs.h 9582 9583 fi 9584 fi 9585 9586 for ac_header in ffmpeg/avcodec.h libavcodec/avcodec.h ffmpeg/avformat.h libavformat/avformat.h ffmpeg/avutil.h libavutil/avutil.h libavutil/mathematics.h ffmpeg/swscale.h libswscale/swscale.h 9638 9587 do : 9639 9588 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` … … 10132 10081 10133 10082 10083 10134 10084 MAKE=${make_command} 10135 10085 … … 10203 10153 10204 10154 10155 10205 10156 ac_configure_args="--disable-threads --enable-shared" 10206 10157 … … 10209 10160 10210 10161 10211 ac_config_files="$ac_config_files Makefile packages/Makefile src/Makefile src/core/Makefile src/core2/Makefile src/objects/Makefile src/objects/RpHash.h gui/Makefile gui/apps/Makefile gui/apps/about gui/apps/copy_rappture_examples gui/apps/encodedata gui/apps/rappture gui/apps/rappture-csh.env gui/apps/rappture.env gui/apps/rappture.use gui/apps/rerun gui/apps/simsim gui/apps/xmldiff gui/pkgIndex.tcl gui/scripts/Makefile gui/src/Makefile builder/Makefile builder/pkgIndex.tcl builder/scripts/Makefile tester/Makefile tester/pkgIndex.tcl tester/scripts/Makefile lang/Makefile lang/java/Makefile lang/java/rappture/Makefile lang/perl/Makefile lang/perl/Makefile.PL lang/python/Makefile lang/python/setup.py lang/matlab/Makefile lang/octave/Makefile lang/octave/octave2/Makefile lang/octave/octave3/Makefile lang/R/Makefile lang/ruby/Makefile lang/ruby/build.rb lang/tcl/Makefile lang/tcl/pkgIndex.tcl lang/tcl/s rc/Makefile lang/tcl/scripts/Makefile lang/tcl/tests/Makefile lib/Makefile examples/3D/Makefile examples/Makefile examples/app-fermi/2.0/Makefile examples/app-fermi/Makefile examples/app-fermi/cee/Makefile examples/app-fermi/fortran/Makefile examples/app-fermi/java/Makefile examples/app-fermi/matlab/Makefile examples/app-fermi/matlab/compiled/Makefile examples/app-fermi/matlab/uncompiled/Makefile examples/app-fermi/octave/octave2/Makefile examples/app-fermi/octave/octave3/Makefile examples/app-fermi/octave/Makefile examples/app-fermi/perl/Makefile examples/app-fermi/python/Makefile examples/app-fermi/ruby/Makefile examples/app-fermi/tcl/Makefile examples/app-fermi/wrapper/Makefile examples/app-fermi/wrapper/cee/Makefile examples/app-fermi/wrapper/perl/Makefile examples/app-fermi/wrapper/python/Makefile examples/app-fermi/wrapper/tcl/Makefile examples/app-fermi/R/Makefile examples/c-example/Makefile examples/canvas/Makefile examples/demo.bash examples/flow/Makefile examples/flow/demo1/Makefile examples/flow/demo2/Makefile examples/flow/demo3/Makefile examples/graph/Makefile examples/objects/Makefile examples/objects/axis/Makefile examples/objects/contour/Makefile examples/objects/curve/Makefile examples/objects/dxWriter/Makefile examples/objects/floatBuffer/Makefile examples/objects/histogram/Makefile examples/objects/library/Makefile examples/objects/number/Makefile examples/objects/path/Makefile examples/objects/plot/Makefile examples/objects/scatter/Makefile examples/objects/string/Makefile examples/objects/tree/Makefile examples/objects/xmlparser/Makefile examples/zoo/Makefile examples/zoo/binary/Makefile examples/zoo/boolean/Makefile examples/zoo/choice/Makefile examples/zoo/cloud/Makefile examples/zoo/cloud/matlab/Makefile examples/zoo/curve/Makefile examples/zoo/datatable/Makefile examples/zoo/datatable/matlab/Makefile examples/zoo/enable/Makefile examples/zoo/field/Makefile examples/zoo/filechoice/Makefile examples/zoo/group/Makefile examples/zoo/histogram/Makefile examples/zoo/image/Makefile examples/zoo/image/docs/Makefile examples/zoo/image/examples/Makefile examples/zoo/integer/Makefile examples/zoo/integer2/Makefile examples/zoo/loader/Makefile examples/zoo/loader/examples/Makefile examples/zoo/loadrun/Makefile examples/zoo/log/Makefile examples/zoo/note/Makefile examples/zoo/note/docs/Makefile examples/zoo/number/Makefile examples/zoo/number2/Makefile examples/zoo/parallelepiped/Makefile examples/zoo/periodicelement/Makefile examples/zoo/phase/Makefile examples/zoo/sequence/Makefile examples/zoo/sequence/examples/Makefile examples/zoo/string/Makefile examples/zoo/structure/Makefile examples/zoo/structure/examples/Makefile examples/zoo/table/Makefile examples/zoo/unirect2d/Makefile video/Makefile video/pkgIndex.tcl oldtest/Makefile oldtest/src/Makefile"10162 ac_config_files="$ac_config_files Makefile packages/Makefile src/Makefile src/core/Makefile src/core2/Makefile src/objects/Makefile src/objects/RpHash.h gui/Makefile gui/apps/Makefile gui/apps/about gui/apps/copy_rappture_examples gui/apps/encodedata gui/apps/rappture gui/apps/rappture-csh.env gui/apps/rappture.env gui/apps/rappture.use gui/apps/rerun gui/apps/simsim gui/apps/xmldiff gui/pkgIndex.tcl gui/scripts/Makefile gui/src/Makefile builder/Makefile builder/pkgIndex.tcl builder/scripts/Makefile tester/Makefile tester/pkgIndex.tcl tester/scripts/Makefile lang/Makefile lang/java/Makefile lang/java/rappture/Makefile lang/perl/Makefile lang/perl/Makefile.PL lang/python/Makefile lang/python/setup.py lang/matlab/Makefile lang/octave/Makefile lang/octave/octave2/Makefile lang/octave/octave3/Makefile lang/R/Makefile lang/ruby/Makefile lang/ruby/build.rb lang/tcl/Makefile lang/tcl/pkgIndex.tcl lang/tcl/scripts/Makefile lang/tcl/src/Makefile lang/tcl/tests/Makefile lib/Makefile examples/3D/Makefile examples/Makefile examples/app-fermi/2.0/Makefile examples/app-fermi/Makefile examples/app-fermi/cee/Makefile examples/app-fermi/fortran/Makefile examples/app-fermi/java/Makefile examples/app-fermi/matlab/Makefile examples/app-fermi/matlab/compiled/Makefile examples/app-fermi/matlab/uncompiled/Makefile examples/app-fermi/octave/octave2/Makefile examples/app-fermi/octave/octave3/Makefile examples/app-fermi/octave/Makefile examples/app-fermi/perl/Makefile examples/app-fermi/python/Makefile examples/app-fermi/ruby/Makefile examples/app-fermi/tcl/Makefile examples/app-fermi/wrapper/Makefile examples/app-fermi/wrapper/cee/Makefile examples/app-fermi/wrapper/perl/Makefile examples/app-fermi/wrapper/python/Makefile examples/app-fermi/wrapper/tcl/Makefile examples/app-fermi/R/Makefile examples/c-example/Makefile examples/canvas/Makefile examples/demo.bash examples/flow/Makefile examples/flow/demo1/Makefile examples/flow/demo2/Makefile examples/flow/demo3/Makefile examples/graph/Makefile examples/objects/Makefile examples/objects/axis/Makefile examples/objects/curve/Makefile examples/objects/dxWriter/Makefile examples/objects/floatBuffer/Makefile examples/objects/histogram/Makefile examples/objects/library/Makefile examples/objects/number/Makefile examples/objects/path/Makefile examples/objects/plot/Makefile examples/objects/scatter/Makefile examples/objects/string/Makefile examples/objects/tree/Makefile examples/objects/xmlparser/Makefile examples/zoo/Makefile examples/zoo/binary/Makefile examples/zoo/boolean/Makefile examples/zoo/choice/Makefile examples/zoo/curve/Makefile examples/zoo/datatable/Makefile examples/zoo/datatable/matlab/Makefile examples/zoo/drawing/Makefile examples/zoo/enable/Makefile examples/zoo/field/Makefile examples/zoo/filechoice/Makefile examples/zoo/group/Makefile examples/zoo/histogram/Makefile examples/zoo/image/Makefile examples/zoo/image/docs/Makefile examples/zoo/image/examples/Makefile examples/zoo/integer/Makefile examples/zoo/integer2/Makefile examples/zoo/loader/Makefile examples/zoo/loader/examples/Makefile examples/zoo/log/Makefile examples/zoo/mesh/Makefile examples/zoo/note/Makefile examples/zoo/note/docs/Makefile examples/zoo/number/Makefile examples/zoo/number2/Makefile examples/zoo/parallelepiped/Makefile examples/zoo/periodicelement/Makefile examples/zoo/phase/Makefile examples/zoo/sequence/Makefile examples/zoo/sequence/examples/Makefile examples/zoo/string/Makefile examples/zoo/structure/Makefile examples/zoo/structure/examples/Makefile examples/zoo/table/Makefile video/Makefile video/pkgIndex.tcl oldtest/Makefile oldtest/src/Makefile" 10212 10163 10213 10164 cat >confcache <<\_ACEOF … … 10718 10669 # values after options handling. 10719 10670 ac_log=" 10720 This file was extended by Rappture $as_me 1. 1, which was10671 This file was extended by Rappture $as_me 1.4, which was 10721 10672 generated by GNU Autoconf 2.69. Invocation command line was 10722 10673 … … 10780 10731 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" 10781 10732 ac_cs_version="\\ 10782 Rappture config.status 1. 110733 Rappture config.status 1.4 10783 10734 configured by $0, generated by GNU Autoconf 2.69, 10784 10735 with options \\"\$ac_cs_config\\" … … 10792 10743 INSTALL='$INSTALL' 10793 10744 MKDIR_P='$MKDIR_P' 10794 AWK='$AWK'10795 10745 test -n "\$AWK" || AWK=awk 10796 10746 _ACEOF … … 10949 10899 "lang/tcl/Makefile") CONFIG_FILES="$CONFIG_FILES lang/tcl/Makefile" ;; 10950 10900 "lang/tcl/pkgIndex.tcl") CONFIG_FILES="$CONFIG_FILES lang/tcl/pkgIndex.tcl" ;; 10901 "lang/tcl/scripts/Makefile") CONFIG_FILES="$CONFIG_FILES lang/tcl/scripts/Makefile" ;; 10951 10902 "lang/tcl/src/Makefile") CONFIG_FILES="$CONFIG_FILES lang/tcl/src/Makefile" ;; 10952 "lang/tcl/scripts/Makefile") CONFIG_FILES="$CONFIG_FILES lang/tcl/scripts/Makefile" ;;10953 10903 "lang/tcl/tests/Makefile") CONFIG_FILES="$CONFIG_FILES lang/tcl/tests/Makefile" ;; 10954 10904 "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;; … … 10986 10936 "examples/objects/Makefile") CONFIG_FILES="$CONFIG_FILES examples/objects/Makefile" ;; 10987 10937 "examples/objects/axis/Makefile") CONFIG_FILES="$CONFIG_FILES examples/objects/axis/Makefile" ;; 10988 "examples/objects/contour/Makefile") CONFIG_FILES="$CONFIG_FILES examples/objects/contour/Makefile" ;;10989 10938 "examples/objects/curve/Makefile") CONFIG_FILES="$CONFIG_FILES examples/objects/curve/Makefile" ;; 10990 10939 "examples/objects/dxWriter/Makefile") CONFIG_FILES="$CONFIG_FILES examples/objects/dxWriter/Makefile" ;; … … 11003 10952 "examples/zoo/boolean/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/boolean/Makefile" ;; 11004 10953 "examples/zoo/choice/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/choice/Makefile" ;; 11005 "examples/zoo/cloud/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/cloud/Makefile" ;;11006 "examples/zoo/cloud/matlab/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/cloud/matlab/Makefile" ;;11007 10954 "examples/zoo/curve/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/curve/Makefile" ;; 11008 10955 "examples/zoo/datatable/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/datatable/Makefile" ;; 11009 10956 "examples/zoo/datatable/matlab/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/datatable/matlab/Makefile" ;; 10957 "examples/zoo/drawing/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/drawing/Makefile" ;; 11010 10958 "examples/zoo/enable/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/enable/Makefile" ;; 11011 10959 "examples/zoo/field/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/field/Makefile" ;; … … 11020 10968 "examples/zoo/loader/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/loader/Makefile" ;; 11021 10969 "examples/zoo/loader/examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/loader/examples/Makefile" ;; 11022 "examples/zoo/loadrun/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/loadrun/Makefile" ;;11023 10970 "examples/zoo/log/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/log/Makefile" ;; 10971 "examples/zoo/mesh/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/mesh/Makefile" ;; 11024 10972 "examples/zoo/note/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/note/Makefile" ;; 11025 10973 "examples/zoo/note/docs/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/note/docs/Makefile" ;; … … 11035 10983 "examples/zoo/structure/examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/structure/examples/Makefile" ;; 11036 10984 "examples/zoo/table/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/table/Makefile" ;; 11037 "examples/zoo/unirect2d/Makefile") CONFIG_FILES="$CONFIG_FILES examples/zoo/unirect2d/Makefile" ;;11038 10985 "video/Makefile") CONFIG_FILES="$CONFIG_FILES video/Makefile" ;; 11039 10986 "video/pkgIndex.tcl") CONFIG_FILES="$CONFIG_FILES video/pkgIndex.tcl" ;; -
branches/blt4/configure.in
r2936 r3959 1 1 2 AC_INIT([Rappture],[1. 1],[rappture@nanohub.org])2 AC_INIT([Rappture],[1.4],[rappture@nanohub.org]) 3 3 AC_CONFIG_AUX_DIR(cf) 4 4 AC_CONFIG_HEADER(src/core/config.h) … … 56 56 AC_LANG([C++]) 57 57 58 AC_CHECK_FUNCS([sysinfo]) 58 AC_CHECK_FUNCS(sysinfo) 59 AC_CHECK_FUNCS(gettimeofday) 60 AC_CHECK_FUNC(localtime,,AC_MSG_ERROR(oops! no localtime ?!?)) 61 AC_CHECK_FUNC(getenv,,AC_MSG_ERROR(oops! no getenv ?!?)) 62 59 63 AC_CHECK_HEADERS(sys/sysinfo.h) 60 64 61 AC_CHECK_LIB(m, main,,AC_MSG_ERROR(librappture requires libm)) 62 63 AC_CHECK_LIB(ncurses, clrtoeol,,AC_MSG_ERROR([ncursers library missing?])) 65 AC_CHECK_LIB(ncurses, clrtoeol,,AC_MSG_ERROR([ncurses library missing?])) 64 66 AC_CHECK_HEADERS(ncurses.h,,AC_MSG_WARN(ncurses headers missing ?)) 65 67 … … 105 107 SC_CONFIG_CFLAGS 106 108 109 SVN_VERSION=`svnversion $srcdir` 110 107 111 make_command="" 108 112 for m in "$MAKE" make gmake gnumake ; do … … 183 187 for path in \ 184 188 $libdir \ 189 $prefix/lib/tcltk \ 185 190 $prefix/lib \ 186 191 $exec_prefix/lib \ … … 206 211 RP_LANG_JAVA 207 212 RP_LANG_R 208 209 RUBY="" 210 RUBY_DEV_PKG="no" 211 212 AC_ARG_WITH( 213 [ruby], 214 [AS_HELP_STRING([--with-ruby=DIR], [location of ruby @<:@default=yes@:>@])], 215 [], 216 [with_ruby="yes"]) 217 218 if test "${with_ruby}" != "no" ; then 219 if test "${with_ruby}" = "yes" ; then 220 AC_PATH_PROG(RUBY, ruby) 221 else 222 AC_PATH_PROG(RUBY, ruby, [], [${with_ruby}/bin:${with_ruby}]) 223 fi 224 fi 225 226 RUBY_VERSION_RV= 227 RUBY_PLATFORM= 228 if test "x${RUBY}" != "x" ; then 229 AX_PROG_RUBY_VERSION 230 RUBY_VERSION_RV=`echo ${RUBY_VERSION} | cut -d'.' -f1-2` 231 RUBY_PLATFORM=`ruby -e 'puts RUBY_PLATFORM'` 232 ac_mkmf_result=`${RUBY} -r mkmf -e ";" 2>&1` 233 if test -z "$ac_mkmf_result"; then 234 HAVE_RUBY_DEVEL="yes" 235 AX_RUBY_DEV_FLAGS([${RUBY}]) 236 fi 237 fi 238 213 RP_LANG_RUBY 239 214 240 215 RP_BASE=`pwd` … … 285 260 # search for ffmpeg libraries libavcodec, libavformat, libswscale 286 261 #-------------------------------------------------------------------- 287 288 AC_CHECK_HEADERS([ffmpeg/avcodec.h libavcodec/avcodec.h ffmpeg/avformat.h libavformat/avformat.h ffmpeg/avutil.h libavutil/avutil.h ffmpeg/swscale.h libswscale/swscale.h],,,[ 262 if test "${with_ffmpeg}" != "no" ; then 263 if test "${with_ffmpeg}" = "yes" ; then 264 AC_PATH_PROG(FFMPEG, ffmpeg, [], $PATH) 265 else 266 AC_PATH_PROG(FFMPEG, ffmpeg, [], [${with_ffmpeg}/bin:${with_ffmpeg}]) 267 fi 268 if test "${FFMPEG}x" != "x" ; then 269 AC_DEFINE(HAVE_FFMPEG, 1, [Render servers can use ffmpeg]) 270 fi 271 fi 272 273 AC_CHECK_HEADERS([ffmpeg/avcodec.h libavcodec/avcodec.h ffmpeg/avformat.h libavformat/avformat.h ffmpeg/avutil.h libavutil/avutil.h libavutil/mathematics.h ffmpeg/swscale.h libswscale/swscale.h],,,[ 289 274 #define __STDC_CONSTANT_MACROS 1 290 275 ]) … … 357 342 AC_SUBST(CFLAGS_OPTIMIZE) 358 343 AC_SUBST(ENABLE_GUI) 344 AC_SUBST(FFMPEG) 359 345 AC_SUBST(HAVE_FFMPEG_LIBS) 360 346 AC_SUBST(HAVE_INTTYPES_H) … … 376 362 AC_SUBST(MKOCTFILE2) 377 363 AC_SUBST(MKOCTFILE3) 364 AC_SUBST(SVN_VERSION) 378 365 AC_SUBST(OCTAVE_VERSION) 379 366 AC_SUBST(OCTAVE_VERSION_MAJOR) … … 487 474 lang/tcl/Makefile 488 475 lang/tcl/pkgIndex.tcl 476 lang/tcl/scripts/Makefile 489 477 lang/tcl/src/Makefile 490 lang/tcl/scripts/Makefile491 478 lang/tcl/tests/Makefile 492 479 lib/Makefile … … 524 511 examples/objects/Makefile 525 512 examples/objects/axis/Makefile 526 examples/objects/contour/Makefile527 513 examples/objects/curve/Makefile 528 514 examples/objects/dxWriter/Makefile … … 541 527 examples/zoo/boolean/Makefile 542 528 examples/zoo/choice/Makefile 543 examples/zoo/cloud/Makefile544 examples/zoo/cloud/matlab/Makefile545 529 examples/zoo/curve/Makefile 546 530 examples/zoo/datatable/Makefile 547 531 examples/zoo/datatable/matlab/Makefile 532 examples/zoo/drawing/Makefile 548 533 examples/zoo/enable/Makefile 549 534 examples/zoo/field/Makefile … … 558 543 examples/zoo/loader/Makefile 559 544 examples/zoo/loader/examples/Makefile 560 examples/zoo/loadrun/Makefile561 545 examples/zoo/log/Makefile 546 examples/zoo/mesh/Makefile 562 547 examples/zoo/note/Makefile 563 548 examples/zoo/note/docs/Makefile … … 573 558 examples/zoo/structure/examples/Makefile 574 559 examples/zoo/table/Makefile 575 examples/zoo/unirect2d/Makefile576 560 video/Makefile 577 561 video/pkgIndex.tcl -
branches/blt4/gui/apps/Makefile.in
r2944 r3959 27 27 $(srcdir)/grabdata \ 28 28 $(srcdir)/nanovis-test \ 29 $(srcdir)/vtk contour-test \29 $(srcdir)/vtkglyphs-test \ 30 30 $(srcdir)/vtkheightmap-test \ 31 $(srcdir)/vtkisosurface-test \ 31 32 $(srcdir)/vtkstreamlines-test \ 32 33 $(srcdir)/vtkviewer-test \ … … 34 35 $(srcdir)/flowvis-test \ 35 36 $(srcdir)/rpdiff \ 37 $(srcdir)/rptimes \ 36 38 rappture \ 37 39 rappture.env \ … … 47 49 $(srcdir)/rerun.cmd 48 50 51 .PHONY: all install clean distclean 52 49 53 all: 50 54 51 install: 55 install: all 52 56 $(MKDIR_P) -m 0755 $(bindir) 53 57 @for i in $(SCRIPTS); do \ … … 59 63 60 64 distclean: clean 61 $(RM) encodedata rappture.env rappture rappture.use rerun simsim xmldiff65 $(RM) about copy_rappture_examples encodedata rappture.env rappture-csh.env rappture rappture.use rerun simsim xmldiff 62 66 $(RM) Makefile *~ 63 67 -
branches/blt4/gui/apps/about.in
r2944 r3959 14 14 # ====================================================================== 15 15 # AUTHOR: Michael McLennan, Purdue University 16 # Copyright (c) 2004-20 08 Purdue Research Foundation16 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 17 17 # 18 18 # See the file "license.terms" for information on usage and -
branches/blt4/gui/apps/copy_rappture_examples.in
r2944 r3959 2 2 # -*- mode: Tcl -*- 3 3 # ====================================================================== 4 # Copyright (c) 2004-2012 Purdue Research Foundation4 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 # 6 6 # See the file "license.terms" for information on usage and -
branches/blt4/gui/apps/encodedata.in
r2793 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Derrick S. Kearney, Purdue University 5 # Copyright (c) 2004-20 09 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and -
branches/blt4/gui/apps/flowvis-test
r2793 r3959 11 11 # 12 12 # ====================================================================== 13 # Copyright (c) 2004-20 09 Purdue Research Foundation13 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 14 14 # 15 15 # See the file "license.terms" for information on usage and -
branches/blt4/gui/apps/grabdata
r1396 r3959 15 15 # ====================================================================== 16 16 # AUTHOR: Derrick Kearney, Purdue University 17 # Copyright (c) 200 5-2008 Purdue Research Foundation17 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 18 18 # 19 19 # See the file "license.terms" for information on usage and -
branches/blt4/gui/apps/launcher.tcl
r2536 r3959 19 19 # ====================================================================== 20 20 # AUTHOR: Michael McLennan, Purdue University 21 # Copyright (c) 2004-201 1 Purdue Research Foundation21 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 22 22 # 23 23 # See the file "license.terms" for information on usage and -
branches/blt4/gui/apps/nanovis-test
r2793 r3959 12 12 # ====================================================================== 13 13 # AUTHOR: Michael McLennan, Purdue University 14 # Copyright (c) 2004-20 07 Purdue Research Foundation14 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 15 15 # 16 16 # See the file "license.terms" for information on usage and -
branches/blt4/gui/apps/rappture-csh.env.in
r2712 r3959 9 9 # ====================================================================== 10 10 # AUTHOR: Michael McLennan, Purdue University 11 # Copyright (c) 2004-20 08 Purdue Research Foundation11 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 # 13 13 # See the file "license.terms" for information on usage and … … 99 99 setenv CLASSPATH "${libdir}/java" 100 100 endif 101 101 102 102 if ( $?R_LIBS ) then 103 103 setenv R_LIBS "${libdir}/R:$R_LIBS" -
branches/blt4/gui/apps/rappture.env.in
r2712 r3959 9 9 # ====================================================================== 10 10 # AUTHOR: Michael McLennan, Purdue University 11 # Copyright (c) 2004-20 08 Purdue Research Foundation11 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 # 13 13 # See the file "license.terms" for information on usage and … … 28 28 PATH=${bindir}:$PATH 29 29 30 LD_LIBRARY_PATH=${libdir}:$ {vtkdir}:$LD_LIBRARY_PATH30 LD_LIBRARY_PATH=${libdir}:$LD_LIBRARY_PATH 31 31 32 32 # For MacOS X 33 DYLD_LIBRARY_PATH=${libdir}:$ {vtkdir}:$DYLD_LIBRARY_PATH33 DYLD_LIBRARY_PATH=${libdir}:$DYLD_LIBRARY_PATH 34 34 35 35 export PATH LD_LIBRARY_PATH DYLD_LIBRARY_PATH -
branches/blt4/gui/apps/rappture.in
r3159 r3959 9 9 # ====================================================================== 10 10 # AUTHOR: Michael McLennan, Purdue University 11 # Copyright (c) 2004-201 1 Purdue Research Foundation11 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 # 13 13 # See the file "license.terms" for information on usage and -
branches/blt4/gui/apps/rappture.use.in
r2742 r3959 18 18 prepend PATH ${bindir} 19 19 20 prepend LD_LIBRARY_PATH ${vtkdir}21 20 prepend LD_LIBRARY_PATH ${libdir} 22 prepend DYLD_LIBRARY_PATH ${vtkdir}23 21 prepend DYLD_LIBRARY_PATH ${libdir} 24 22 -
branches/blt4/gui/apps/rerun.in
r2793 r3959 23 23 # ====================================================================== 24 24 # AUTHOR: Derrick Kearney, Purdue University 25 # Copyright (c) 2004-20 08 Purdue Research Foundation25 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 26 26 # 27 27 # See the file "license.terms" for information on usage and -
branches/blt4/gui/apps/rpdiff
r2690 r3959 16 16 # ====================================================================== 17 17 # AUTHOR: Michael McLennan, Purdue University 18 # Copyright (c) 2004-201 1 Purdue Research Foundation18 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 19 19 # 20 20 # See the file "license.terms" for information on usage and -
branches/blt4/gui/apps/simsim.in
r2944 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Derrick S. Kearney, Purdue University 5 # Copyright (c) 2004-20 08 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and -
branches/blt4/gui/apps/vtkheightmap-test
r2944 r3959 2 2 # -*- mode: Tcl -*- 3 3 # ---------------------------------------------------------------------- 4 # TEST PROGRAM for Vtk ContourViewer4 # TEST PROGRAM for VtkHeightmapViewer 5 5 # 6 6 # This program is a test harness for the VtkVis visualization … … 12 12 # ====================================================================== 13 13 # AUTHOR: Michael McLennan, Purdue University 14 # Copyright (c) 2004-20 07 Purdue Research Foundation14 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 15 15 # 16 16 # See the file "license.terms" for information on usage and … … 78 78 Rappture::Field::constructor [Rappture::library standard] "" 79 79 } { 80 set _reader [vtkDataSetReader $this-xvtkDataSetReader] 81 $_reader SetFileName [lindex $args 0] 82 $_reader Update 83 set _data [$_reader GetOutput] 84 } 85 destructor { 86 rename _data "" 87 rename _reader "" 88 } 80 set _data [lindex $args 0] 81 GetTypeAndSize $_cname 82 GetAssociation $_cname 83 ReadVtkDataSet $_cname $_data 84 set _type [lindex $args 1] 85 } 86 89 87 public method components {args} { 88 Rappture::getopts args params { 89 flag what -name default 90 flag what -dimensions 91 flag what -style 92 flag what -particles 93 flag what -flow 94 flag what -box 95 } 96 if { $params(what) == "-dimensions" } { 97 return "${_dim}D" 98 } 90 99 if {[llength $args] == 0} { 91 return "one"100 return $_cname 92 101 } 93 102 return "" 94 103 } 95 public method mesh {args} { 96 switch -- [$_data GetClassName] { 97 vtkPolyData { 98 if {[$_data GetNumberOfCells] > 0} { 99 return $_data 100 } else { 101 return [$_data GetPoints] 102 } 103 } 104 vtkStructuredPoints - 105 vtkUniformGrid - 106 vtkImageData { 107 foreach { x1 y1 z1 } [$_data GetOrigin] break 108 foreach { xN yN zN } [$_data GetDimensions] break 109 foreach { xS yS zS } [$_data GetSpacing] break 110 set x2 [expr {$x1 + $xN * $xS}] 111 set y2 [expr {$x1 + $yN * $yS}] 112 set z2 [expr {$x1 + $zN * $zS}] 113 if {$zN == 1} { 114 lappend out $x1 $x2 $xN $y1 $y2 $yN 115 } else { 116 lappend out $x1 $x2 $xN $y1 $y2 $yN $z1 $z2 $zN 117 } 118 return $out 119 } 120 default { 121 return $_data 122 } 123 } 124 } 125 public method isunirect2d {args} { 126 if {[$_data GetClassName] != "vtkImageData" && 127 [$_data GetClassName] != "vtkStructuredPoints" && 128 [$_data GetClassName] != "vtkUniformGrid"} { 129 return 0 130 } 131 foreach { xN yN zN } [$_data GetDimensions] break 132 if {$zN == 1} { 133 return 1 134 } else { 135 return 0 136 } 137 } 138 public method isunirect3d {args} { 139 if {[$_data GetClassName] != "vtkImageData" && 140 [$_data GetClassName] != "vtkStructuredPoints" && 141 [$_data GetClassName] != "vtkUniformGrid"} { 142 return 0 143 } 144 foreach { xN yN zN } [$_data GetDimensions] break 145 if {$zN > 1} { 146 return 1 147 } else { 148 return 0 149 } 104 public method isvalid {} { 105 return 1 150 106 } 151 107 public method data {args} { 152 return [values $args] 108 return $_data 109 } 110 public method vtkdata {args} { 111 return $_data 153 112 } 154 113 public method values {args} { 155 set dataAttrs [$_data GetPointData] 156 if {"" == $dataAttrs} { 157 puts stderr "No point data" 158 return "" 159 } 160 set scalarArr [$dataAttrs GetScalars] 161 if {"" == $scalarArr} { 162 for {set i 0} {$i < [$dataAttrs GetNumberOfArrays]} {incr i} { 163 if {[[$dataAttrs GetArray $i] GetNumberOfComponents] == 1} { 164 $dataAttrs SetActiveScalars [$dataAttrs GetArrayName $i] 165 puts stderr "Set scalars to '[$dataAttrs GetArrayName $i]'" 166 break 167 } 168 } 169 set scalarArr [$dataAttrs GetScalars] 170 if {"" == $scalarArr} { 171 puts stderr "No scalar point data" 172 return "" 173 } 174 } 175 if {[isunirect2d] || [isunirect3d]} { 176 for {set i 0} {$i < [$scalarArr GetNumberOfTuples]} {incr i} { 177 lappend out [$scalarArr GetComponent $i 0] 178 } 179 return $out 180 } 181 return $scalarArr 182 } 183 public method limits {which} { 184 foreach { xMin xMax yMin yMax zMin zMax} [$_data GetBounds] break 185 set min "" 186 set max "" 187 188 switch -- $which { 189 x - xlin - xlog { 190 set min $xMin 191 set max $xMax 192 set axis "xaxis" 193 } 194 y - ylin - ylog { 195 set min $yMin 196 set max $yMax 197 set axis "yaxis" 198 } 199 z - zlin - zlog { 200 set min $zMin 201 set max $zMax 202 set axis "zaxis" 203 } 204 v - vlin - vlog { 205 foreach { min max } [$_data GetScalarRange] break 206 set axis "vaxis" 207 } 208 default { 209 error "unknown axis description \"$which\"" 210 } 211 } 212 return [list $min $max] 114 return $_data 115 } 116 public method style {args} { 117 return "" 213 118 } 214 119 public method hints {args} { 215 120 return "" 216 121 } 217 122 public method type {args} { 123 return $_type 124 } 125 public method viewer {args} { 126 return "contour" 127 } 128 129 private variable _cname "one" 218 130 private variable _data "" 219 private variable _ reader""131 private variable _type "" 220 132 } 221 133 … … 229 141 global widgets 230 142 231 set file [tk_getOpenFile -title "Open VTK File"] 232 if {"" != $file} { 233 set obj [visData #auto $file] 143 set file [tk_getOpenFile -title "Open VTK File As Contour"] 144 if {"" != $file && [catch { 145 set fid [open $file r] 146 fconfigure $fid -translation binary -encoding binary 147 set info [read $fid] 148 close $fid 149 }] == 0} { 150 set obj [visData #auto $info "vtk"] 234 151 $widgets(vtkheightmapviewer) add $obj 152 $widgets(vtkheightmapviewer) scale $obj 235 153 } 236 154 } -
branches/blt4/gui/apps/vtkstreamlines-test
r2793 r3959 12 12 # ====================================================================== 13 13 # AUTHOR: Michael McLennan, Purdue University 14 # Copyright (c) 2004-20 07 Purdue Research Foundation14 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 15 15 # 16 16 # See the file "license.terms" for information on usage and … … 78 78 } { 79 79 set _data [lindex $args 0] 80 GetTypeAndSize $_cname 81 GetAssociation $_cname 82 ReadVtkDataSet $_cname $_data 80 83 set _type [lindex $args 1] 81 84 } 82 85 83 86 public method components {args} { 87 Rappture::getopts args params { 88 flag what -name default 89 flag what -dimensions 90 flag what -style 91 flag what -particles 92 flag what -flow 93 flag what -box 94 } 95 if { $params(what) == "-dimensions" } { 96 return "${_dim}D" 97 } 84 98 if {[llength $args] == 0} { 85 return "one"99 return $_cname 86 100 } 87 101 return "" 88 102 } 89 public method blob {args} {90 return $_data103 public method isvalid {} { 104 return 1 91 105 } 92 106 public method data {args} { 93 107 return $_data 94 108 } 109 public method vtkdata {args} { 110 return $_data 111 } 95 112 public method values {args} { 96 113 return $_data 97 114 } 115 public method style {args} { 116 return "" 117 } 98 118 public method hints {args} { 99 119 return "" 100 120 } 101 public method style {args} {102 return ""103 }104 121 public method type {args} { 105 122 return $_type 106 123 } 107 124 public method viewer {args} { 125 return "streamlines" 126 } 127 128 private variable _cname "one" 108 129 private variable _data "" 109 130 private variable _type "" … … 128 149 set obj [visData #auto $info "vtk"] 129 150 $widgets(vtkviewer) add $obj 130 } 131 } 132 133 # ---------------------------------------------------------------------- 134 # USAGE: send_streamlines_file 135 # 136 # Prompts the user for a text file, and then sends the text within 137 # that file along to the rendering widget. 138 # ---------------------------------------------------------------------- 139 proc send_streamlines_file {} { 140 global widgets 141 142 set file [tk_getOpenFile -title "Open VTK File as Streamlines"] 143 if {"" != $file && [catch { 144 set fid [open $file r] 145 fconfigure $fid -translation binary -encoding binary 146 set info [read $fid] 147 close $fid 148 }] == 0} { 149 set obj [visData #auto $info "vtkstreamlines"] 150 $widgets(vtkviewer) add $obj 151 $widgets(vtkviewer) scale $obj 151 152 } 152 153 } … … 348 349 menu .mbar.file 349 350 .mbar.file add command -label "Send VTK File..." -underline 0 -command send_file 350 .mbar.file add command -label "Send VTK File as Streamlines..." -underline 0 -command send_streamlines_file351 351 .mbar.file add command -label "Load script..." -underline 0 -command load_script 352 352 .mbar.file add command -label "Reset" -underline 0 -command reset -
branches/blt4/gui/apps/vtkviewer-test
r2793 r3959 12 12 # ====================================================================== 13 13 # AUTHOR: Michael McLennan, Purdue University 14 # Copyright (c) 2004-20 07 Purdue Research Foundation14 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 15 15 # 16 16 # See the file "license.terms" for information on usage and … … 102 102 return $_type 103 103 } 104 public method shape {args} { 105 return "sphere" 106 } 104 107 105 108 private variable _data "" … … 116 119 global widgets 117 120 118 set file [tk_getOpenFile -title "Open VTK File "]121 set file [tk_getOpenFile -title "Open VTK File as PolyData"] 119 122 if {"" != $file && [catch { 120 123 set fid [open $file r] … … 123 126 close $fid 124 127 }] == 0} { 125 set obj [visData #auto $info " "]128 set obj [visData #auto $info "polydata"] 126 129 $widgets(vtkviewer) add $obj 127 130 } … … 150 153 151 154 # ---------------------------------------------------------------------- 152 # USAGE: send_ spheres_file155 # USAGE: send_glyphs_file 153 156 # 154 157 # Prompts the user for a text file, and then sends the text within 155 158 # that file along to the rendering widget. 156 159 # ---------------------------------------------------------------------- 157 proc send_ spheres_file {} {158 global widgets 159 160 set file [tk_getOpenFile -title "Open VTK File as Spheres"]160 proc send_glyphs_file {} { 161 global widgets 162 163 set file [tk_getOpenFile -title "Open VTK File as Glyphs"] 161 164 if {"" != $file && [catch { 162 165 set fid [open $file r] … … 165 168 close $fid 166 169 }] == 0} { 167 set obj [visData #auto $info "spheres"] 170 set obj [visData #auto $info "glyphs"] 171 $widgets(vtkviewer) add $obj 172 } 173 } 174 175 # ---------------------------------------------------------------------- 176 # USAGE: send_molecule_file 177 # 178 # Prompts the user for a text file, and then sends the text within 179 # that file along to the rendering widget. 180 # ---------------------------------------------------------------------- 181 proc send_molecule_file {} { 182 global widgets 183 184 set file [tk_getOpenFile -title "Open VTK File as Molecule"] 185 if {"" != $file && [catch { 186 set fid [open $file r] 187 fconfigure $fid -translation binary 188 set info [read $fid] 189 close $fid 190 }] == 0} { 191 set obj [visData #auto $info "molecule"] 168 192 $widgets(vtkviewer) add $obj 169 193 } … … 367 391 .mbar.file add command -label "Send VTK File..." -underline 0 -command send_file 368 392 .mbar.file add command -label "Send VTK File as Streamlines..." -underline 0 -command send_streamlines_file 369 .mbar.file add command -label "Send VTK File as Spheres..." -underline 0 -command send_spheres_file 393 .mbar.file add command -label "Send VTK File as Glyphs..." -underline 0 -command send_glyphs_file 394 .mbar.file add command -label "Send VTK File as Molecule..." -underline 0 -command send_molecule_file 370 395 .mbar.file add command -label "Load script..." -underline 0 -command load_script 371 396 .mbar.file add command -label "Reset" -underline 0 -command reset -
branches/blt4/gui/apps/vtkvolume-test
r2944 r3959 12 12 # ====================================================================== 13 13 # AUTHOR: Michael McLennan, Purdue University 14 # Copyright (c) 2004-20 07 Purdue Research Foundation14 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 15 15 # 16 16 # See the file "license.terms" for information on usage and … … 78 78 } { 79 79 set _data [lindex $args 0] 80 GetTypeAndSize $_cname 81 GetAssociation $_cname 82 ReadVtkDataSet $_cname $_data 80 83 set _type [lindex $args 1] 81 84 } 82 85 83 86 public method components {args} { 87 Rappture::getopts args params { 88 flag what -name default 89 flag what -dimensions 90 flag what -style 91 flag what -particles 92 flag what -flow 93 flag what -box 94 } 95 if { $params(what) == "-dimensions" } { 96 return "${_dim}D" 97 } 84 98 if {[llength $args] == 0} { 85 99 return "one" … … 87 101 return "" 88 102 } 89 public method blob {args} {90 return $_data103 public method isvalid {} { 104 return 1 91 105 } 92 106 public method data {args} { … … 99 113 return $_data 100 114 } 115 public method style {args} { 116 return "" 117 } 101 118 public method hints {args} { 102 119 return "" … … 105 122 return $_type 106 123 } 107 124 public method viewer {args} { 125 return "vtkvolume" 126 } 127 128 private variable _cname "one" 108 129 private variable _data "" 109 130 private variable _type "" … … 126 147 close $fid 127 148 }] == 0} { 128 set obj [visData #auto $info "vtk "]149 set obj [visData #auto $info "vtkvolume"] 129 150 $widgets(vtkviewer) add $obj 151 $widgets(vtkviewer) scale $obj 130 152 } 131 153 } -
branches/blt4/gui/apps/xmldiff.in
r1922 r3959 7 7 # ====================================================================== 8 8 # AUTHOR: Derrick S. Kearney, Purdue University 9 # Copyright (c) 200 5-2008 Purdue Research Foundation9 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 # 11 11 # See the file "license.terms" for information on usage and -
branches/blt4/gui/cf/mkindex.tcl
r2690 r3959 7 7 # ====================================================================== 8 8 # AUTHOR: Michael McLennan, Purdue University 9 # Copyright (c) 2004-20 05 Purdue Research Foundation9 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 # 11 11 # See the file "license.terms" for information on usage and -
branches/blt4/gui/cf/patchlevel.tcl
r2690 r3959 6 6 # ====================================================================== 7 7 # AUTHOR: Michael McLennan, Purdue University 8 # Copyright (c) 2004-20 05 Purdue Research Foundation8 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 9 9 # 10 10 # See the file "license.terms" for information on usage and -
branches/blt4/license.terms
r168 r3959 1 1 2 Copyright (c) 2004-20 06, Purdue Research Foundation2 Copyright (c) 2004-2012 HUBzero Foundation, LLC 3 3 All rights reserved. 4 4 -
branches/blt4/oldtest/Makefile.in
r1018 r3959 29 29 30 30 31 .PHONY: src jobs32 31 .PHONY: all clean distclean src jobs 32 33 33 all: src jobs 34 34 … … 39 39 40 40 clean: 41 41 42 42 distclean: clean 43 43 $(RM) Makefile -
branches/blt4/oldtest/jobs/coredumps/coredump.tcl
r743 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-20 07 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and -
branches/blt4/oldtest/jobs/coredumps/genoutput.tcl
r743 r3959 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-20 07 Purdue Research Foundation5 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 # 7 7 # See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/Makefile.in
r1022 r3959 81 81 FC_FLAGS = $(CFLAGS) $(INCLUDES) 82 82 83 .PHONY: src jobs83 .PHONY: all clean distclean src jobs c_tests fortran_tests matlab_tests objs_tests octave_tests 84 84 85 85 MATLAB_TESTS = RpMatlab_test -
branches/blt4/oldtest/src/RpBoolean_test.cc
r115 r3959 1 1 /* 2 2 * ====================================================================== 3 * Copyright (c) 2004-20 05 Purdue Research Foundation3 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 4 4 * 5 5 * See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpChoice_test.cc
r115 r3959 1 1 /* 2 2 * ====================================================================== 3 * Copyright (c) 2004-20 05 Purdue Research Foundation3 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 4 4 * 5 5 * See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpFortranDocExamples.f
r165 r3959 7 7 c ====================================================================== 8 8 c AUTHOR: Derrick S. Kearney, Purdue University 9 c Copyright (c) 2004-20 05 Purdue Research Foundation9 c Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 c 11 11 c See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpLibraryC_test.c
r157 r3959 1 1 /* 2 2 * ====================================================================== 3 * Copyright (c) 2004-20 05 Purdue Research Foundation3 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 4 4 * 5 5 * See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpLibraryF_test.f
r496 r3959 6 6 c ====================================================================== 7 7 c AUTHOR: Derrick S. Kearney, Purdue University 8 c Copyright (c) 2004-20 05 Purdue Research Foundation8 c Copyright (c) 2004-2012 HUBzero Foundation, LLC 9 9 c 10 10 c See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpLibrary_test.cc
r1022 r3959 6 6 * libaray, a simple wrapper around the expat parser 7 7 * 8 * Copyright (c) 2004-20 05 Purdue Research Foundation8 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 9 9 * 10 10 * See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpMatlab_test.m
r165 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpNumber_test.cc
r115 r3959 1 1 /* 2 2 * ====================================================================== 3 * Copyright (c) 2004-20 05 Purdue Research Foundation3 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 4 4 * 5 5 * See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpOctave_test.m
r165 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpString_test.cc
r138 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick S. Kearney, Purdue University 4 * Copyright (c) 2004-20 05 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpUnitsC_test.c
r115 r3959 1 //---------------------------------------------------------------------- 2 // TEST: Cee's interface to RpUnits. 3 // 4 // Basic units conversion tests for the RpUnits portion of Rappture 5 // written in Cee. 6 //====================================================================== 7 // AUTHOR: Derrick Kearney, Purdue University 8 // Copyright (c) 2004-2005 Purdue Research Foundation 9 // 10 // See the file "license.terms" for information on usage and 11 // redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 12 //====================================================================== 13 // 1 /* 2 *---------------------------------------------------------------------- 3 * TEST: Cee's interface to RpUnits. 4 * 5 * Basic units conversion tests for the RpUnits portion of Rappture 6 * written in Cee. 7 *====================================================================== 8 * AUTHOR: Derrick Kearney, Purdue University 9 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 * 11 * See the file "license.terms" for information on usage and 12 * redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 13 *====================================================================== 14 */ 14 15 #include "RpUnitsCInterface.h" 15 16 #include <stdio.h> -
branches/blt4/oldtest/src/RpUnitsF_test.f
r122 r3959 6 6 c ====================================================================== 7 7 c AUTHOR: Derrick Kearney, Purdue University 8 c Copyright (c) 2004-20 05 Purdue Research Foundation8 c Copyright (c) 2004-2012 HUBzero Foundation, LLC 9 9 c 10 10 c See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpUnits_test.cc
r525 r3959 1 1 /* 2 2 * ====================================================================== 3 * Copyright (c) 2004-20 05 Purdue Research Foundation3 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 4 4 * 5 5 * See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/RpVariable_test.cc
r115 r3959 1 1 /* 2 2 * ====================================================================== 3 * Copyright (c) 2004-20 05 Purdue Research Foundation3 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 4 4 * 5 5 * See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_children.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_children_bytype.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_convert.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_convert_dbl.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_convert_obj_dbl.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_convert_obj_str.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_convert_str.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_define_unit.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_element.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_element_comp.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_element_id.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_element_object.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_element_type.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_find.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_get.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_get_basis.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_get_double.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_get_exponent.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_get_string.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_get_units.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_get_units_name.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_make_metric.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_node_comp.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_node_id.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_node_type.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_put.m
r165 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_put_dbl.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_put_str.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_result.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/matlab/test_xml.m
r154 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_children.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_children_bytype.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_convert.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_convert_dbl.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_convert_obj_dbl.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_convert_obj_str.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_convert_str.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_define_unit.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_element.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_element_comp.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_element_id.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_element_object.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_element_type.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_find.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_get.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_get_basis.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_get_double.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_get_exponent.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_get_string.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_get_units.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_get_units_name.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_make_metric.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_node_comp.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_node_id.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_node_type.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_put.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_put_dbl.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_put_str.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_result.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/octave/test_xml.m
r138 r3959 7 7 % ====================================================================== 8 8 % AUTHOR: Derrick Kearney, Purdue University 9 % Copyright (c) 2004-20 05 Purdue Research Foundation9 % Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 % 11 11 % See the file "license.terms" for information on usage and -
branches/blt4/oldtest/src/rappture_example.c
r115 r3959 1 1 /* 2 2 * ====================================================================== 3 * Copyright (c) 2004-20 05 Purdue Research Foundation3 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 4 4 * 5 5 * See the file "license.terms" for information on usage and -
branches/blt4/p2p/README
r1251 r3959 3 3 Michael McLennan (mmclennan@purdue.edu) 4 4 ====================================================================== 5 Copyright (c) 200 8 Purdue Research Foundation5 Copyright (c) 2004-2012 HUBzero Foundation, LLC 6 6 ====================================================================== 7 7 -
branches/blt4/p2p/authority.tcl
r1273 r3959 8 8 # Michael McLennan (mmclennan@purdue.edu) 9 9 # ====================================================================== 10 # Copyright (c) 200 8 Purdue Research Foundation10 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 # 12 12 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/client.tcl
r2170 r3959 5 5 # Michael McLennan (mmclennan@purdue.edu) 6 6 # ====================================================================== 7 # Copyright (c) 200 8 Purdue Research Foundation7 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 # 9 9 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/foreman.tcl
r2170 r3959 7 7 # Michael McLennan (mmclennan@purdue.edu) 8 8 # ====================================================================== 9 # Copyright (c) 200 8 Purdue Research Foundation9 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 # 11 11 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/handler.tcl
r2170 r3959 7 7 # Michael McLennan (mmclennan@purdue.edu) 8 8 # ====================================================================== 9 # Copyright (c) 200 8 Purdue Research Foundation9 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 # 11 11 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/log.tcl
r1257 r3959 4 4 # Michael McLennan (mmclennan@purdue.edu) 5 5 # ====================================================================== 6 # Copyright (c) 200 8 Purdue Research Foundation6 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 7 7 # 8 8 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/options.tcl
r1273 r3959 9 9 # Michael McLennan (mmclennan@purdue.edu) 10 10 # ====================================================================== 11 # Copyright (c) 200 8 Purdue Research Foundation11 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 # 13 13 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/perftest.c
r1273 r3959 15 15 * Michael McLennan (mmclennan@purdue.edu) 16 16 * ====================================================================== 17 * Copyright (c) 200 8 Purdue Research Foundation17 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 18 18 * 19 19 * See the file "license.terms" for information on usage and -
branches/blt4/p2p/protocols.tcl
r2170 r3959 11 11 # Michael McLennan (mmclennan@purdue.edu) 12 12 # ====================================================================== 13 # Copyright (c) 200 8 Purdue Research Foundation13 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 14 14 # 15 15 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/random.tcl
r1273 r3959 4 4 # Michael McLennan (mmclennan@purdue.edu) 5 5 # ====================================================================== 6 # Copyright (c) 200 8 Purdue Research Foundation6 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 7 7 # 8 8 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/server.tcl
r2170 r3959 4 4 # Michael McLennan (mmclennan@purdue.edu) 5 5 # ====================================================================== 6 # Copyright (c) 200 8 Purdue Research Foundation6 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 7 7 # 8 8 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/statemachine.tcl
r1273 r3959 9 9 # Michael McLennan (mmclennan@purdue.edu) 10 10 # ====================================================================== 11 # Copyright (c) 200 8 Purdue Research Foundation11 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 # 13 13 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/test.tcl
r2170 r3959 8 8 # Michael McLennan (mmclennan@purdue.edu) 9 9 # ====================================================================== 10 # Copyright (c) 200 8 Purdue Research Foundation10 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 # 12 12 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/wonks.tcl
r1273 r3959 8 8 # Michael McLennan (mmclennan@purdue.edu) 9 9 # ====================================================================== 10 # Copyright (c) 200 8 Purdue Research Foundation10 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 # 12 12 # See the file "license.terms" for information on usage and -
branches/blt4/p2p/worker.tcl
r2170 r3959 9 9 # Michael McLennan (mmclennan@purdue.edu) 10 10 # ====================================================================== 11 # Copyright (c) 200 8 Purdue Research Foundation11 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 # 13 13 # See the file "license.terms" for information on usage and -
branches/blt4/src/core2/Lookup.cpp
r443 r3959 5 5 * 6 6 * AUTHOR: Michael McLennan, Purdue University 7 * Copyright (c) 2004-20 06 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * ---------------------------------------------------------------------- 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/Lookup.h
r1018 r3959 5 5 * 6 6 * AUTHOR: Michael McLennan, Purdue University 7 * Copyright (c) 2004-20 06 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * ---------------------------------------------------------------------- 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpField1D.cc
r657 r3959 9 9 * ====================================================================== 10 10 * AUTHOR: Michael McLennan, Purdue University 11 * Copyright (c) 2004-20 06 Purdue Research Foundation11 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 * 13 13 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpField1D.h
r1031 r3959 9 9 * ====================================================================== 10 10 * AUTHOR: Michael McLennan, Purdue University 11 * Copyright (c) 2004-20 06 Purdue Research Foundation11 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 * 13 13 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpFieldPrism3D.cc
r2936 r3959 8 8 * ====================================================================== 9 9 * AUTHOR: Michael McLennan, Purdue University 10 * Copyright (c) 2004-20 06 Purdue Research Foundation10 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 * 12 12 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpFieldPrism3D.h
r1031 r3959 8 8 * ====================================================================== 9 9 * AUTHOR: Michael McLennan, Purdue University 10 * Copyright (c) 2004-20 06 Purdue Research Foundation10 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 * 12 12 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpFieldRect3D.cc
r2936 r3959 8 8 * ====================================================================== 9 9 * AUTHOR: Michael McLennan, Purdue University 10 * Copyright (c) 2004-20 06 Purdue Research Foundation10 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 * 12 12 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpFieldRect3D.h
r1031 r3959 8 8 * ====================================================================== 9 9 * AUTHOR: Michael McLennan, Purdue University 10 * Copyright (c) 2004-20 06 Purdue Research Foundation10 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 * 12 12 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpFieldTri2D.cc
r2936 r3959 8 8 * ====================================================================== 9 9 * AUTHOR: Michael McLennan, Purdue University 10 * Copyright (c) 2004-20 06 Purdue Research Foundation10 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 * 12 12 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpFieldTri2D.h
r1031 r3959 8 8 * ====================================================================== 9 9 * AUTHOR: Michael McLennan, Purdue University 10 * Copyright (c) 2004-20 06 Purdue Research Foundation10 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 * 12 12 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpMesh1D.cc
r2936 r3959 10 10 * ====================================================================== 11 11 * AUTHOR: Michael McLennan, Purdue University 12 * Copyright (c) 2004-20 06 Purdue Research Foundation12 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 13 13 * 14 14 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpMesh1D.h
r1031 r3959 10 10 * ====================================================================== 11 11 * AUTHOR: Michael McLennan, Purdue University 12 * Copyright (c) 2004-20 06 Purdue Research Foundation12 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 13 13 * 14 14 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpMeshPrism3D.cc
r1328 r3959 7 7 * ====================================================================== 8 8 * AUTHOR: Michael McLennan, Purdue University 9 * Copyright (c) 2004-20 06 Purdue Research Foundation9 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 * 11 11 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpMeshPrism3D.h
r1031 r3959 7 7 * ====================================================================== 8 8 * AUTHOR: Michael McLennan, Purdue University 9 * Copyright (c) 2004-20 06 Purdue Research Foundation9 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 * 11 11 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpMeshRect3D.cc
r657 r3959 8 8 * ====================================================================== 9 9 * AUTHOR: Michael McLennan, Purdue University 10 * Copyright (c) 2004-20 06 Purdue Research Foundation10 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 * 12 12 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpMeshRect3D.h
r370 r3959 8 8 * ====================================================================== 9 9 * AUTHOR: Michael McLennan, Purdue University 10 * Copyright (c) 2004-20 06 Purdue Research Foundation10 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 * 12 12 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpMeshTri2D.cc
r2936 r3959 7 7 * ====================================================================== 8 8 * AUTHOR: Michael McLennan, Purdue University 9 * Copyright (c) 2004-20 06 Purdue Research Foundation9 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 * 11 11 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpMeshTri2D.h
r370 r3959 7 7 * ====================================================================== 8 8 * AUTHOR: Michael McLennan, Purdue University 9 * Copyright (c) 2004-20 06 Purdue Research Foundation9 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 * 11 11 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpNode.h
r1031 r3959 8 8 * ====================================================================== 9 9 * AUTHOR: Michael McLennan, Purdue University 10 * Copyright (c) 2004-20 06 Purdue Research Foundation10 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 * 12 12 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpSerialBuffer.cc
r657 r3959 6 6 * Carol X Song, Purdue University 7 7 * 8 * Copyright (c) 2004-20 06 Purdue Research Foundation8 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 9 9 * ---------------------------------------------------------------------- 10 10 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpSerialBuffer.h
r1031 r3959 6 6 * Carol X Song, Purdue University 7 7 * 8 * Copyright (c) 2004-20 06 Purdue Research Foundation8 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 9 9 * ---------------------------------------------------------------------- 10 10 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpSerializable.cc
r413 r3959 6 6 * Carol X Song, Purdue University 7 7 * 8 * Copyright (c) 2004-20 06 Purdue Research Foundation8 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 9 9 * ---------------------------------------------------------------------- 10 10 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpSerializable.h
r1032 r3959 6 6 * Carol X Song, Purdue University 7 7 * 8 * Copyright (c) 2004-20 06 Purdue Research Foundation8 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 9 9 * ---------------------------------------------------------------------- 10 10 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpSerializer.cc
r657 r3959 10 10 * ====================================================================== 11 11 * AUTHOR: Michael McLennan, Purdue University 12 * Copyright (c) 2004-20 06 Purdue Research Foundation12 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 13 13 * 14 14 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/RpSerializer.h
r1031 r3959 10 10 * ====================================================================== 11 11 * AUTHOR: Michael McLennan, Purdue University 12 * Copyright (c) 2004-20 06 Purdue Research Foundation12 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 13 13 * 14 14 * See the file "license.terms" for information on usage and -
branches/blt4/src/core2/rappture2.h
r1018 r3959 7 7 * 8 8 * AUTHOR: Michael McLennan, Purdue University 9 * Copyright (c) 2004-20 06 Purdue Research Foundation9 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 * ---------------------------------------------------------------------- 11 11 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/Makefile.in
r2936 r3959 149 149 150 150 distclean: clean 151 rm Makefile 151 rm Makefile RpHash.h -
branches/blt4/src/objects/RpAccessor.h
r1560 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick S. Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpArray1D.cc
r1560 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpArray1D.h
r1560 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick S. Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpArray1DUniform.cc
r1528 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpArray1DUniform.h
r1528 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick S. Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpAxisMarker.cc
r1560 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpAxisMarker.h
r1560 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpBoolean.cc
r1560 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpBoolean.h
r1560 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpChoice.cc
r1560 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpChoice.h
r1560 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpCurve.cc
r1569 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpCurve.h
r1568 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpHistogram.cc
r1560 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpHistogram.h
r1560 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpLibObj.cc
r1581 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick S. Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpLibObj.h
r1615 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick S. Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpLibStorage.cc
r1581 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick S. Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpLibStorage.h
r1581 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick S. Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpMediaPlayer.cc
r1932 r3959 5 5 * AUTHOR: Derrick Kearney, Purdue University 6 6 * 7 * Copyright (c) 200 5-2010 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * ---------------------------------------------------------------------- 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpMediaPlayer.h
r1902 r3959 5 5 * AUTHOR: Derrick Kearney, Purdue University 6 6 * 7 * Copyright (c) 200 5-2010 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * ---------------------------------------------------------------------- 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpNumber.cc
r1615 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpNumber.h
r1581 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpObjConfig.h
r1568 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick S. Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpObject.cc
r1897 r3959 7 7 * ====================================================================== 8 8 * AUTHOR: Derrick Kearney, Purdue University 9 * Copyright (c) 200 5-2009 Purdue Research Foundation9 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 * 11 11 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpObject.h
r1586 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick S. Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpParserXML.cc
r2305 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpParserXML.h
r1581 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpPath.cc
r1581 r3959 5 5 * AUTHOR: Derrick Kearney, Purdue University 6 6 * 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * ---------------------------------------------------------------------- 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpPath.h
r1569 r3959 5 5 * AUTHOR: Derrick Kearney, Purdue University 6 6 * 7 * Copyright (c) 2004-20 09 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * ---------------------------------------------------------------------- 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpPlot.cc
r1581 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpPlot.h
r1581 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpScatter.cc
r1560 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpScatter.h
r1560 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpString.cc
r1560 r3959 5 5 * ====================================================================== 6 6 * AUTHOR: Derrick Kearney, Purdue University 7 * Copyright (c) 200 5-2009 Purdue Research Foundation7 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 8 8 * 9 9 * See the file "license.terms" for information on usage and -
branches/blt4/src/objects/RpString.h
r1560 r3959 2 2 * ====================================================================== 3 3 * AUTHOR: Derrick Kearney, Purdue University 4 * Copyright (c) 200 5-2009 Purdue Research Foundation4 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 5 5 * 6 6 * See the file "license.terms" for information on usage and -
branches/blt4/tester/Makefile.in
r2168 r3959 29 29 destdir = $(libdir)/$(name) 30 30 31 .PHONY: all install install-pkg install-scripts clean distclean 32 31 33 all: 32 34 $(MAKE) -C scripts all … … 46 48 47 49 distclean: clean 48 $(RM) Makefile *~50 $(RM) Makefile pkgIndex.tcl *~ -
branches/blt4/tester/example/fermi_broken.tcl
r2169 r3959 7 7 # ====================================================================== 8 8 # AUTHOR: Ben Rafferty, Purdue University 9 # Copyright (c) 2004-20 07 Purdue Research Foundation9 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 # 11 11 # See the file "license.terms" for information on usage and -
branches/blt4/tester/scripts/Makefile.in
r2692 r3959 40 40 --outfile tclIndex 41 41 42 install: install_scripts install_images42 install: all install_scripts install_images 43 43 44 44 install_scripts: -
branches/blt4/tester/scripts/legend.tcl
r2168 r3959 6 6 # ====================================================================== 7 7 # AUTHOR: Michael McLennan, Purdue University 8 # Copyright (c) 20 10-2011 Purdue Research Foundation8 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 9 9 # 10 10 # See the file "license.terms" for information on usage and -
branches/blt4/tester/scripts/main.tcl
r2304 r3959 18 18 # ====================================================================== 19 19 # AUTHOR: Ben Rafferty, Purdue University 20 # Copyright (c) 20 10 Purdue Research Foundation20 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 21 21 # 22 22 # See the file "license.terms" for information on usage and … … 35 35 36 36 package require Itk 37 #package require Img37 package require Img 38 38 package require Rappture 39 39 package require RapptureGUI -
branches/blt4/tester/scripts/objview.tcl
r2168 r3959 9 9 # ====================================================================== 10 10 # AUTHOR: Michael McLennan, Purdue University 11 # Copyright (c) 20 10-2011 Purdue Research Foundation11 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 # 13 13 # See the file "license.terms" for information on usage and -
branches/blt4/tester/scripts/runview.tcl
r2168 r3959 9 9 # ====================================================================== 10 10 # AUTHOR: Michael McLennan, Purdue University 11 # Copyright (c) 20 10-2011 Purdue Research Foundation11 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 # 13 13 # See the file "license.terms" for information on usage and -
branches/blt4/tester/scripts/statuslist.tcl
r2168 r3959 9 9 # ====================================================================== 10 10 # AUTHOR: Michael McLennan, Purdue University 11 # Copyright (c) 20 10-2011 Purdue Research Foundation11 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 # 13 13 # See the file "license.terms" for information on usage and … … 289 289 set c $itk_component(listview) 290 290 291 # translate the screen y to the canvas y (may be scrolled down) 292 set y [$c canvasy $y] 293 291 294 set index "" 292 295 foreach id [$c find overlapping 10 $y 10 $y] { -
branches/blt4/tester/scripts/stringdiffs.tcl
r2168 r3959 7 7 # ====================================================================== 8 8 # AUTHOR: Michael McLennan, Purdue University 9 # Copyright (c) 20 10-2011 Purdue Research Foundation9 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 # 11 11 # See the file "license.terms" for information on usage and … … 32 32 33 33 protected method _yview {args} 34 protected method _ysbar {args} 34 35 } 35 36 … … 128 129 $itk_component(body1) configure \ 129 130 -xscrollcommand [list $itk_component(xsbar1) set] \ 130 -yscrollcommand [ list $itk_component(ysbar) set]131 -yscrollcommand [itcl::code $this _ysbar body1] 131 132 $itk_component(body2) configure \ 132 -xscrollcommand [list $itk_component(xsbar2) set] 133 -xscrollcommand [list $itk_component(xsbar2) set] \ 134 -yscrollcommand [itcl::code $this _ysbar body2] 133 135 134 136 grid $itk_component(title1) -row 0 -column 0 -sticky nsew … … 205 207 # USAGE: _yview <arg> <arg>... 206 208 # 207 # Loads two values into the viewer and shows their differences. 208 # If the strings are short, the diffs are shown inline. Otherwise, 209 # they are show with side-by-side viewers. 209 # Called whenever the scrollbar changes the y-view of the diffs. 210 # Sends the new command along to both views so they are aligned. 210 211 # ---------------------------------------------------------------------- 211 212 itcl::body Rappture::Tester::StringDiffs::_yview {args} { 212 213 eval $itk_component(body1) yview $args 213 214 eval $itk_component(body2) yview $args 215 } 216 217 # ---------------------------------------------------------------------- 218 # USAGE: _ysbar <whichChanged> <arg> <arg>... 219 # 220 # Called whenever the y-view of one widget changes. Copies the 221 # current view from the <whichChanged> widget to the other side, 222 # and updates the bubble to display the correct view. 223 # ---------------------------------------------------------------------- 224 itcl::body Rappture::Tester::StringDiffs::_ysbar {which args} { 225 switch -- $which { 226 body1 { 227 set pos [lindex [$itk_component(body1) yview] 0] 228 $itk_component(body2) yview moveto $pos 229 } 230 body2 { 231 set pos [lindex [$itk_component(body2) yview] 0] 232 $itk_component(body1) yview moveto $pos 233 } 234 } 235 eval $itk_component(ysbar) set $args 214 236 } 215 237 -
branches/blt4/tester/scripts/test.tcl
r2304 r3959 8 8 # ====================================================================== 9 9 # AUTHOR: Ben Rafferty, Purdue University 10 # Copyright (c) 20 10 Purdue Research Foundation10 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 # 12 12 # See the file "license.terms" for information on usage and -
branches/blt4/tester/scripts/testtree.tcl
r2276 r3959 10 10 # ====================================================================== 11 11 # AUTHOR: Ben Rafferty, Purdue University 12 # Copyright (c) 20 10 Purdue Research Foundation12 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 13 13 # 14 14 # See the file "license.terms" for information on usage and … … 56 56 set spinner(frame$n) [Rappture::icon circle-ball[expr {$n+1}]] 57 57 } 58 set spinner(image) [image create p icture-width [image width $spinner(frame0)] -height [image height $spinner(frame0)]]58 set spinner(image) [image create photo -width [image width $spinner(frame0)] -height [image height $spinner(frame0)]] 59 59 } 60 60 -
branches/blt4/tester/scripts/testview.tcl
r2168 r3959 8 8 # AUTHOR: Ben Rafferty, Purdue University 9 9 # Michael McLennan, Purdue University 10 # Copyright (c) 20 10-2011 Purdue Research Foundation10 # Copyright (c) 2004-2012 HUBzero Foundation, LLC 11 11 # 12 12 # See the file "license.terms" for information on usage and -
branches/blt4/video/Makefile.in
r2936 r3959 66 66 destdir = $(libdir)/$(name) 67 67 68 .PHONY: all install clean distclean 69 68 70 all: $(lib) 69 71 … … 86 88 87 89 distclean: clean 88 $(RM) Makefile *~90 $(RM) Makefile pkgIndex.tcl *~ 89 91 -
branches/blt4/video/RpMediaPlayerTclInterface.cc
r2936 r3959 7 7 * ====================================================================== 8 8 * AUTHOR: Derrick Kearney, Purdue University 9 * Copyright (c) 200 5-2010 Purdue Research Foundation9 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 * 11 11 * See the file "license.terms" for information on usage and -
branches/blt4/video/RpVideo.c
r2936 r3959 9 9 * ====================================================================== 10 10 * AUTHOR: Michael McLennan, Purdue University 11 * Copyright (c) 2004-20 08 Purdue Research Foundation11 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 * 13 13 * See the file "license.terms" for information on usage and … … 43 43 #ifdef HAVE_LIBAVUTIL_AVUTIL_H 44 44 # include <libavutil/avutil.h> 45 #endif 46 47 #ifdef HAVE_LIBAVUTIL_MATHEMATICS_H 48 # include <libavutil/mathematics.h> /* for av_rescale_q and av_gcd */ 45 49 #endif 46 50 … … 123 127 static int VideoAllocImgBuffer (VideoObj *vidPtr, int width, int height); 124 128 static int VideoFreeImgBuffer (VideoObj *vidPtr); 129 130 #ifdef notdef 125 131 static double VideoTransformFrames2Duration (VideoObj *vidPtr, int frame); 126 132 static int VideoTransformDuration2Frames (VideoObj *vidPtr, double duration); 133 #endif 127 134 128 135 /* … … 936 943 int nrel, nabs, seekFlags, gotframe; 937 944 int64_t nseek; 938 AVCodecContext *vcodecCtx;939 945 AVStream *vstreamPtr; 940 946 … … 947 953 return -1; 948 954 } 949 vcodecCtx = vidPtr->pFormatCtx->streams[vidPtr->videoStream]->codec;950 955 951 956 nabs = n; … … 1523 1528 } 1524 1529 1530 #ifdef notdef 1525 1531 /* 1526 1532 * ------------------------------------------------------------------------ … … 1540 1546 { 1541 1547 double duration; 1542 AVCodecContext *vcodecCtx;1543 1548 AVStream *vstreamPtr; 1544 1549 AVRational hundred; … … 1559 1564 } 1560 1565 1561 vcodecCtx = vidPtr->pFormatCtx->streams[vidPtr->videoStream]->codec;1562 1566 vstreamPtr = vidPtr->pFormatCtx->streams[vidPtr->videoStream]; 1563 1567 … … 1574 1578 { 1575 1579 int frames; 1576 AVCodecContext *vcodecCtx;1577 1580 AVStream *vstreamPtr; 1578 1581 AVRational hundred; … … 1592 1595 } 1593 1596 1594 vcodecCtx = vidPtr->pFormatCtx->streams[vidPtr->videoStream]->codec;1595 1597 vstreamPtr = vidPtr->pFormatCtx->streams[vidPtr->videoStream]; 1596 1598 … … 1603 1605 return frames; 1604 1606 } 1607 #endif 1605 1608 1606 1609 /* -
branches/blt4/video/RpVideo.h
r2936 r3959 9 9 * ====================================================================== 10 10 * AUTHOR: Michael McLennan, Purdue University 11 * Copyright (c) 2004-20 08 Purdue Research Foundation11 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 12 12 * 13 13 * See the file "license.terms" for information on usage and -
branches/blt4/video/RpVideoTclInterface.cc
r2936 r3959 7 7 * ====================================================================== 8 8 * AUTHOR: Derrick Kearney, Purdue University 9 * Copyright (c) 200 5-2010 Purdue Research Foundation9 * Copyright (c) 2004-2012 HUBzero Foundation, LLC 10 10 * 11 11 * See the file "license.terms" for information on usage and … … 346 346 } 347 347 else { 348 int c = 0; 349 c = VideoGoToN((VideoObj *)clientData, val); 348 VideoGoToN((VideoObj *)clientData, val); 350 349 } 351 350
Note: See TracChangeset
for help on using the changeset viewer.