You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(14) |
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
(1) |
Mar
(8) |
Apr
(6) |
May
(5) |
Jun
(2) |
Jul
(2) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
(2) |
Dec
(21) |
2007 |
Jan
(9) |
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(24) |
Nov
|
Dec
(15) |
2008 |
Jan
(6) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Rafael L. <rla...@us...> - 2004-11-24 08:38:42
|
Update of /cvsroot/octaviz/octaviz/debian In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13668 Modified Files: changelog Log Message: Debian release 0.4.0-7 Index: changelog =================================================================== RCS file: /cvsroot/octaviz/octaviz/debian/changelog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- changelog 6 Nov 2004 17:54:02 -0000 1.4 +++ changelog 24 Nov 2004 08:38:23 -0000 1.5 @@ -1,3 +1,15 @@ +octaviz (0.4.0-7) experimental; urgency=low + + * Rebuilt against octave 2.1.63. + + -- Rafael Laboissiere <ra...@de...> Fri, 18 Nov 2004 18:50:41 +0100 + +octaviz (0.4.0-6) experimental; urgency=low + + * Rebuilt against octave 2.1.62. + + -- Rafael Laboissiere <ra...@de...> Fri, 12 Nov 2004 18:50:41 +0100 + octaviz (0.4.0-5) experimental; urgency=low * Rebuilt against octave 2.1.61. |
From: Dragan T. <dr...@us...> - 2004-11-16 02:21:26
|
Update of /cvsroot/octaviz/octaviz/Common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31113 Modified Files: octaviz.cc Log Message: Removed debug display during callback evaluation. Index: octaviz.cc =================================================================== RCS file: /cvsroot/octaviz/octaviz/Common/octaviz.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- octaviz.cc 24 Oct 2004 02:09:13 -0000 1.2 +++ octaviz.cc 16 Nov 2004 02:21:17 -0000 1.3 @@ -362,17 +362,17 @@ { const char *eventname; eventname = this->GetStringFromEventId(eventtype); - std::cout << "Executing " << this->function << " for " << eventname << "\n" << std::flush; - std::cout << this->obj << endl; - this->obj->print_ref_table(); + //std::cout << "Executing " << this->function << " for " << eventname << "\n" << std::flush; + //std::cout << this->obj << endl; + //this->obj->print_ref_table(); octave_value_list x; - std::cout << "Assigning parameters 1" << std::flush << std::endl; + //std::cout << "Assigning parameters 1" << std::flush << std::endl; x(0) = octave_value( new vtk_object( ptr, false ) ); - std::cout << "Assigning parameters 2" << std::flush << std::endl; + //std::cout << "Assigning parameters 2" << std::flush << std::endl; x(1) = octave_value(eventname); - std::cout << "Evaluating observer function" << std::flush << std::endl; + //std::cout << "Evaluating observer function" << std::flush << std::endl; feval(this->function,x); } |
From: Dragan T. <dr...@us...> - 2004-11-12 01:56:40
|
Update of /cvsroot/octaviz/octaviz/Scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19555 Removed Files: test_pars.m Log Message: Removed an obsolete file. --- test_pars.m DELETED --- |
From: Dragan T. <dr...@us...> - 2004-11-12 00:32:40
|
Update of /cvsroot/octaviz/octaviz In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32186 Modified Files: README Log Message: Updated README: removed obsolete compiling instructions and updated description. Index: README =================================================================== RCS file: /cvsroot/octaviz/octaviz/README,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- README 4 Nov 2004 22:04:04 -0000 1.2 +++ README 12 Nov 2004 00:32:26 -0000 1.3 @@ -1,126 +1,55 @@ -Octaviz is a visualization system for octave (www.octave.org). It -consists of two major parts: - -1. VTK wrapper that creates an Octave object (a function that -simulates objects using . operator) for each VTK class. Functions are -named after classes they represent, for example vtkRenderer class is -wrapped in vtkRenderer function. Instances of VTK objects are created -by calling the class function without parameters: command "ren = -vtkRenderer;" creates a new instance of vtkRenderer class that is kept -in octave variable ren. Methods within a class are accessed directly -using C++ (or Python) syntax, for example, using the above created -object ren, the method Render is accessible as ren.Render(). Online -help is also available for each class and method. vtkClass("Help") -displays the description of vtkClass, while -vtkClass("MethodName","Help") displays help for the method -vtkClass.MethodName. - -At this point, the first part, i.e. VTK wrapper, is almost complete, -the missing part are callback functions. For those familiar with both -octave and vtk it should be as simple to use as in Python with the -same syntax and functionality. Excluding language specific constructs, -Python examples (included in VTK) can be used in octave without any -modification. The only exception is the creation of new instances that -are created as obj = vtk.vtkClassName in Python while the octave -syntax is obj = vtkClassName. You can use a text editor to replace all -"vtk." strings in a Python example and it should run fine in -octave. About 70 Python examples are converted to Octave and included -in Octaviz. - -2. High-level functions for 2D and 3D visualization. The following -functions are available: +Octaviz is a visualization system for Octave. It is a wrapper that makes all VTK classes accessible from within Octave using the same object-oriented syntax as in C++ or Python. Octaviz also provides high-level functions for 2D and 3D visualization. Using those functions, most common visualization tasks (3D surface plots, contour plots, meshes etc) can be accomplished without any knowledge about VTK. -vtk_arrows3.m -vtk_axis.m -vtk_clear.m -vtk_close.m -vtk_cone3.m -vtk_contour3.m -vtk_figure.m -vtk_imshow.m -vtk_line3.m -vtk_mesh.m -vtk_meshc.m -vtk_plot.m -vtk_plot3.m -vtk_poly3.m -vtk_polycut.m -vtk_print.m -vtk_quiver3.m -vtk_scalarbar.m -vtk_surf.m -vtk_surfc.m -vtk_title.m -vtk_trimesh.m -vtk_trisurf.m -vtk_update.m +Although Octaviz is in active development, it already quite usable and stable. All major features of the wrapper are implemented: all VTK classes are wrapped, array exchange between Octave and VTK works, callbacks work and finally there is experimental CygWin support. Excluding language specific constructs, Python examples (included in VTK) can be used in octave without any modification. To help you get started, about 70 Python examples are converted to Octave and included in Octaviz. -And some demos: +Octaviz consists of two parts: +wrappers for all VTK classes and high-level Octave scripts that hide VTK internals and provide visualization capabilities without requiring any VTK knowledge. +VTK classes can be used in Octave as easily as they are used in Python and with the same syntax. Unlike other scripts or toolboxes for octave, octaviz uses object-oriented syntax. Octaviz wraps each VTK class into an Octave function of the same name. Those function are used as objects: An instance of a VTK class are created by calling corresponding octave function without parameters. For example, command "ren =vtkRenderer();" creates an instance of vtkRenderer class that is kept in octave variable "ren". Methods within a class are accessed directly using C++ (or Python) syntax. For example, using the above created object ren, the method Render is accessible as "ren.Render()". Online help is available for each class and method: vtkClass("Help") displays the description of vtkClass, while vtkClass("MethodName","Help") displays help for the method vtkClass.MethodName. List of available methods for a class can be obtained as vtkClass("List"). -vtk_demo.m - Basic demo. Displays a colored cube. -vtk_demo_old_syntax.m - Same as above with the alternative syntax -vtk_image_demo.m - Image display example (requires vtk-data) -vtk_image_demo2.m - imshow example. -vtk_sombsurf.m - Sombrero, surface plot -vtk_sombmesh.m - Sombrero, mesh plot -xyPlot.m - Example of multiple plots in a single figure -vtk_demo_xy_plot.m - Interactive 2D plot (allows interactive scaling and shifting) +Octaviz has been developed for Linux with X-Window System and OpenGL but it should work on any platform that supports X and VTK. Octaviz should work under CygWin too but this port requires more testing. Any feedback regarding Octaviz in CygWin is welcome. -BUILDING +BUILDING INSTRUCTIONS -Octaviz has been tested only in Linux with X-Window System and OpenGL -but it should work on any platform that supports X. Octaviz compiles -under CygWin but there is a problem related to cygwin implementation -of fork, dlopen, base addresses in dlls or something. If you know how -to solve it please share... +Linux: -You'll need octave 2.1.53 or later and VTK CVS to build octaviz (VTK -4.2 works but closing figures crashes). You will probably need to -recompile octave with -pthread flag in order to make multithreading -function properly (alternatively you can export LD_ASSUME_KERNEL=2.4.1 -before starting octave). To compile octaviz, run "ccmake ." in the -root directory of the source tree, then "make" and finally "make -create_links". +You'll need octave 2.1.53 or later and VTK CVS to build octaviz. + - run ccmake . in Octaviz root directory + - press "c" to configure + - press "g" to generate Makefiles + - press "q" to quit ccmake + - run make + - make install -To build octaviz under CygWin follow the following steps (keep in mind -that it will compile but it will NOT work due to the fork/dlopen -problem. Unless you want to solve the problem, you be compiling -octaviz in vain.) +To build octaviz under CygWin: 1. Compile VTK with support for XFree under Cygwin and OpenGL from XFree (NOT Win32!) - - rum "ccmake ." in the root directory of the VTK source tree - - Set the following options (press "t" to see advanced options) - X11_X11_LIB /usr/X11R6/lib/libX11.dll.a - X11_Xext_LIB /usr/X11R6/lib/libXext.dll.a - OPENGL_INCLUDE_PATH /usr/X11R6/include - OPENGL_gl_LIBRARY /usr/X11R6/lib/libGL.dll.a - OPENGL_glu_LIBRARY /usr/X11R6/lib/libGLU.dll.a - BUILD_TESTING OFF - BUILD_SHARED ON - CMAKE_X_LIBS -lX11 -lXt - - press "c" to configure - - change VTK_USE_X to ON - - press "c" to configure - - press "g" to generate Makefiles - - press "q" to quit - - run make - - run make install - - do chmod +x libvtk* in the VTK installation directory (usually /usr/local/lib/vtk). - - Make sure that the VTK installation directory is in your $PATH - -2. Compile Octave - - run ./configure --enable-shared --enable-dl in the root directory of octave source tree - - run make - - make install - + - rum "ccmake ." in the root directory of the VTK source tree + - Set the following options (press "t" to see advanced options) + X11_X11_LIB /usr/X11R6/lib/libX11.dll.a + X11_Xext_LIB /usr/X11R6/lib/libXext.dll.a + OPENGL_INCLUDE_PATH /usr/X11R6/include + OPENGL_gl_LIBRARY /usr/X11R6/lib/libGL.dll.a + OPENGL_glu_LIBRARY /usr/X11R6/lib/libGLU.dll.a + BUILD_TESTING OFF + BUILD_SHARED ON + CMAKE_X_LIBS -lX11 -lXt + - press "c" to configure + - change VTK_USE_X to ON + - press "c" to configure + - press "g" to generate Makefiles + - press "q" to quit + - run make + - run make install + - do chmod +x libvtk* in the VTK installation directory (usually /usr/local/lib/vtk). + - Make sure that the VTK installation directory is in your $PATH + 2. Compile Octaviz - - run ccmake . in Octaviz root directory - - press "c" to configure - - press "g" to generate Makfiles - - press "q" to quit ccmake - - run make - - make install - - make create_links + - run ccmake . in Octaviz root directory + - press "c" to configure + - press "g" to generate Makefiles + - press "q" to quit ccmake + - run make + - make install Comments, suggestions, bug repports and patches are most welcome (you can use mailing lists at SourceForge or send to |
From: Rafael L. <rla...@us...> - 2004-11-06 17:54:12
|
Update of /cvsroot/octaviz/octaviz/debian In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3785 Modified Files: changelog Log Message: Debian release 0.4.0-5 Index: changelog =================================================================== RCS file: /cvsroot/octaviz/octaviz/debian/changelog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- changelog 3 Nov 2004 13:58:46 -0000 1.3 +++ changelog 6 Nov 2004 17:54:02 -0000 1.4 @@ -1,3 +1,9 @@ +octaviz (0.4.0-5) experimental; urgency=low + + * Rebuilt against octave 2.1.61. + + -- Rafael Laboissiere <ra...@de...> Sat, 6 Nov 2004 10:53:50 +0100 + octaviz (0.4.0-4) experimental; urgency=low * debian/rules: Avoid compression of some *.m files in the examples |
From: Jonathan S. <jjs...@us...> - 2004-11-06 01:12:36
|
Update of /cvsroot/octaviz/octaviz/gentoo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23252 Modified Files: readme.gentoo Log Message: update about binary package Index: readme.gentoo =================================================================== RCS file: /cvsroot/octaviz/octaviz/gentoo/readme.gentoo,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- readme.gentoo 4 Nov 2004 21:52:42 -0000 1.1 +++ readme.gentoo 6 Nov 2004 01:12:26 -0000 1.2 @@ -27,13 +27,13 @@ example data for VTK. If you get "no manifest" or "no digest" errors, do -# ebuild foo.ebuild digest +# ebuild [location/name].ebuild digest to (re)generate the necessary manifest and digest files. -Soon there should be binary gentoo packages available to save you the -long compile time. This readme will indicate where to get them once -a suitable location is found. +There is now a Gentoo binary package available for Octaviz at the +sourceforge project page. You will still need the ebuild to install +the binary package. Comments, suggestions, bug repports and patches are welcome (you can use mailing lists at SourceForge or send to |
From: Jonathan S. <jjs...@us...> - 2004-11-04 22:04:14
|
Update of /cvsroot/octaviz/octaviz In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24149 Modified Files: README Log Message: README updated Index: README =================================================================== RCS file: /cvsroot/octaviz/octaviz/README,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- README 21 Sep 2004 22:50:38 -0000 1.1.1.1 +++ README 4 Nov 2004 22:04:04 -0000 1.2 @@ -1,47 +1,91 @@ -Octaviz is a visualization system for octave (www.octave.org). It consists of two major parts: - -1. VTK wrapper that creates an Octave object (a function that simulates objects using . operator) for each VTK class. Functions are named after classes they represent, for example vtkRenderer class is wrapped in vtkRenderer function. Instances of VTK objects are created by calling the class function without parameters: command "ren = vtkRenderer;" creates a new instance of vtkRenderer class that is kept in octave variable ren. Methods within a class are accessed directly using C++ (or Python) syntax, for example, using the above created object ren, the method Render is accessible as ren.Render(). Online help is also available for each class and method. vtkClass("Help") displays the description of vtkClass, while vtkClass("MethodName","Help") displays help for the method vtkClass.MethodName. +Octaviz is a visualization system for octave (www.octave.org). It +consists of two major parts: -At this point, the first part, i.e. VTK wrapper, is almost complete, the missing part are callback functions. For those familiar with both octave and vtk it should be as simple to use as in Python with the same syntax and functionality. Excluding language specific constructs, Python examples (included in VTK) can be used in octave without any modification. The only exception is the creation of new instances that are created as obj = vtk.vtkClassName in Python while the octave syntax is obj = vtkClassName. You can use a text editor to replace all "vtk." strings in a Python example and it should run fine in octave. About 70 Python examples are converted to Octave and included in Octaviz. +1. VTK wrapper that creates an Octave object (a function that +simulates objects using . operator) for each VTK class. Functions are +named after classes they represent, for example vtkRenderer class is +wrapped in vtkRenderer function. Instances of VTK objects are created +by calling the class function without parameters: command "ren = +vtkRenderer;" creates a new instance of vtkRenderer class that is kept +in octave variable ren. Methods within a class are accessed directly +using C++ (or Python) syntax, for example, using the above created +object ren, the method Render is accessible as ren.Render(). Online +help is also available for each class and method. vtkClass("Help") +displays the description of vtkClass, while +vtkClass("MethodName","Help") displays help for the method +vtkClass.MethodName. -2. High-level functions for 2D and 3D visualization, surf, trisurf, plot3, figure, etc. +At this point, the first part, i.e. VTK wrapper, is almost complete, +the missing part are callback functions. For those familiar with both +octave and vtk it should be as simple to use as in Python with the +same syntax and functionality. Excluding language specific constructs, +Python examples (included in VTK) can be used in octave without any +modification. The only exception is the creation of new instances that +are created as obj = vtk.vtkClassName in Python while the octave +syntax is obj = vtkClassName. You can use a text editor to replace all +"vtk." strings in a Python example and it should run fine in +octave. About 70 Python examples are converted to Octave and included +in Octaviz. -The development of high-level octave functions just started. Following functions are available: +2. High-level functions for 2D and 3D visualization. The following +functions are available: -vtk_figure - creates a new figure -vtk_close - closes a figure -plot3 - Displays a set of 3D points -trisurf - Displays a triangulated surface -contour3 - Contour plot -mesh - Displays a surface as a mesh -meshc - Displays a surface as a mesh with contour plot underneath -plot3 - plots a set of 3D points -quiver3 - vector field visualization -surf - Displays a surface -surfc - Displays a surface with contour plot underneath -trimesh - Displays a triangulated mesh -vtk_eps - Saves current figure in .eps format -vtk_imshow - Displays an image -vtk_rib - Saves current figure as Renderman .RIB file -vtk_plot +vtk_arrows3.m +vtk_axis.m +vtk_clear.m +vtk_close.m +vtk_cone3.m +vtk_contour3.m +vtk_figure.m +vtk_imshow.m +vtk_line3.m +vtk_mesh.m +vtk_meshc.m +vtk_plot.m +vtk_plot3.m +vtk_poly3.m +vtk_polycut.m +vtk_print.m +vtk_quiver3.m +vtk_scalarbar.m +vtk_surf.m +vtk_surfc.m +vtk_title.m +vtk_trimesh.m +vtk_trisurf.m +vtk_update.m And some demos: -demo.m - Basic demo. Displays a colored cube. -demo_old_syntax.m - Same as above with the alternative syntax -image_demo.m - Image display example (requires vtk-data) -image_demo2.m - imshow example. -somb.m - Sombrero -xyPlot.m - Example of multiple plots in a single figure -test_xy.m - Interactive 2D plot (allows interactive scaling and shifting) +vtk_demo.m - Basic demo. Displays a colored cube. +vtk_demo_old_syntax.m - Same as above with the alternative syntax +vtk_image_demo.m - Image display example (requires vtk-data) +vtk_image_demo2.m - imshow example. +vtk_sombsurf.m - Sombrero, surface plot +vtk_sombmesh.m - Sombrero, mesh plot +xyPlot.m - Example of multiple plots in a single figure +vtk_demo_xy_plot.m - Interactive 2D plot (allows interactive scaling and shifting) BUILDING -Octaviz has been tested only in Linux with X-Window System and OpenGL but it should work on any platform that supports X. Octaviz compiles under CygWin but there is a problem related to cygwin implementation of fork, dlopen, base addresses in dlls or something. If you know how to solve it please share... +Octaviz has been tested only in Linux with X-Window System and OpenGL +but it should work on any platform that supports X. Octaviz compiles +under CygWin but there is a problem related to cygwin implementation +of fork, dlopen, base addresses in dlls or something. If you know how +to solve it please share... -You'll need octave 2.1.53 or later and VTK CVS to build octaviz (VTK 4.2 works but closing figures crashes). You will probably need to recompile octave with -pthread flag in order to make multithreading function properly (alternatively you can export LD_ASSUME_KERNEL=2.4.1 before starting octave). To compile octaviz, run "ccmake ." in the root directory of the source tree, then "make" and finally "make create_links". +You'll need octave 2.1.53 or later and VTK CVS to build octaviz (VTK +4.2 works but closing figures crashes). You will probably need to +recompile octave with -pthread flag in order to make multithreading +function properly (alternatively you can export LD_ASSUME_KERNEL=2.4.1 +before starting octave). To compile octaviz, run "ccmake ." in the +root directory of the source tree, then "make" and finally "make +create_links". -To build octaviz under CygWin follow the following steps (keep in mind that it will compile but it will NOT work due to the fork/dlopen problem. Unless you want to solve the problem, you be compiling octaviz in vain.) +To build octaviz under CygWin follow the following steps (keep in mind +that it will compile but it will NOT work due to the fork/dlopen +problem. Unless you want to solve the problem, you be compiling +octaviz in vain.) 1. Compile VTK with support for XFree under Cygwin and OpenGL from XFree (NOT Win32!) - rum "ccmake ." in the root directory of the VTK source tree @@ -78,7 +122,9 @@ - make install - make create_links -Comments, suggestions, bug repports and patches are most welcome (you can use mailing lists at SourceForge or send to dr...@us...). +Comments, suggestions, bug repports and patches are most welcome (you +can use mailing lists at SourceForge or send to +dr...@us...). Octaviz is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the |
From: Jonathan S. <jjs...@us...> - 2004-11-04 21:52:52
|
Update of /cvsroot/octaviz/octaviz/gentoo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21357/gentoo Added Files: octaviz_ebuild_files.tar.gz readme.gentoo vtk_ebuild_files.tar.gz Log Message: gentoo ebuild stuff --- NEW FILE: readme.gentoo --- To build Octaviz for Gentoo Linux, you will need to get ebuilds for VTK and Octaviz. In addition to the ebuilds provided here, you may also find them at bugs.gentoo.org. Specifically, http://bugs.gentoo.org/show_bug.cgi?id=25335 for VTK and http://bugs.gentoo.org/show_bug.cgi?id=70085 for Octaviz. You will need >=vtk-4.4 for Octaviz to work. Exporting PS/PDF from Octaviz will require VTK to be built with gl2ps support. Therefore you should Choose your VTK ebuild carefully. The ebuild provided here is currently the recommended version, but other acceptable ebuilds may appear at bugs.gentoo.org in the future. To use the ebuilds provided here, expand the tar.gz files into /usr/local/portage. Add these lines to /etc/portage/package.keywords dev-libs/vtk ~x86 app-sci/octaviz ~x86 Then you may emerge. Compile times will be very long! The USE flags "doc" and "data" will install extra documentation, examples, and example data for VTK. If you get "no manifest" or "no digest" errors, do # ebuild foo.ebuild digest to (re)generate the necessary manifest and digest files. Soon there should be binary gentoo packages available to save you the long compile time. This readme will indicate where to get them once a suitable location is found. Comments, suggestions, bug repports and patches are welcome (you can use mailing lists at SourceForge or send to jjs...@us...). --- NEW FILE: vtk_ebuild_files.tar.gz --- (This appears to be a binary file; contents omitted.) --- NEW FILE: octaviz_ebuild_files.tar.gz --- (This appears to be a binary file; contents omitted.) |
From: Jonathan S. <jjs...@us...> - 2004-11-04 21:49:39
|
Update of /cvsroot/octaviz/octaviz/gentoo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20540/gentoo Log Message: Directory /cvsroot/octaviz/octaviz/gentoo added to the repository |
From: Dragan T. <dr...@us...> - 2004-11-03 23:51:29
|
Update of /cvsroot/octaviz/octaviz/Common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10453 Modified Files: vtkInitializeInteractor.cc Log Message: Removed an include in vtkInitializeInteractor that was creating unnecessary dependance on motif. Index: vtkInitializeInteractor.cc =================================================================== RCS file: /cvsroot/octaviz/octaviz/Common/vtkInitializeInteractor.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- vtkInitializeInteractor.cc 24 Oct 2004 02:09:13 -0000 1.2 +++ vtkInitializeInteractor.cc 3 Nov 2004 23:51:19 -0000 1.3 @@ -19,7 +19,6 @@ */ #include <vtkXRenderWindowInteractor.h> #include <vtkXOpenGLRenderWindow.h> -#include <Xm/Protocols.h> #include <vtkCommand.h> #include <vtkCallbackCommand.h> #undef Complex |
From: Rafael L. <rla...@us...> - 2004-11-03 13:58:59
|
Update of /cvsroot/octaviz/octaviz/debian In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13329 Modified Files: README.Debian changelog rules Log Message: Debian release 0.4.0-4 Index: changelog =================================================================== RCS file: /cvsroot/octaviz/octaviz/debian/changelog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- changelog 3 Nov 2004 11:55:38 -0000 1.2 +++ changelog 3 Nov 2004 13:58:46 -0000 1.3 @@ -1,3 +1,10 @@ +octaviz (0.4.0-4) experimental; urgency=low + + * debian/rules: Avoid compression of some *.m files in the examples + directory. + + -- Rafael Laboissiere <ra...@de...> Wed, 3 Nov 2004 13:34:26 +0100 + octaviz (0.4.0-3) experimental; urgency=low * Built in a Debian unstable chroot. This version will be uploaded to Index: rules =================================================================== RCS file: /cvsroot/octaviz/octaviz/debian/rules,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- rules 2 Nov 2004 14:55:49 -0000 1.1 +++ rules 3 Nov 2004 13:58:46 -0000 1.2 @@ -79,7 +79,7 @@ dh_installman dh_link dh_strip - dh_compress + dh_compress --exclude=.m dh_fixperms dh_installdeb echo "octave:Depends=octave2.1 (>= $(octver)), octave2.1 (<< $(octnxtver))" \ Index: README.Debian =================================================================== RCS file: /cvsroot/octaviz/octaviz/debian/README.Debian,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- README.Debian 2 Nov 2004 14:55:49 -0000 1.1 +++ README.Debian 3 Nov 2004 13:58:46 -0000 1.2 @@ -1,6 +1,6 @@ octaviz for Debian ------------------ -This is an experimental package. USe it at your own risk. +This is an experimental package. Use it at your own risk. -- Rafael Laboissiere <ra...@de...>, Mon, 1 Nov 2004 10:25:01 +0100 |
From: Rafael L. <rla...@us...> - 2004-11-03 13:58:40
|
Update of /cvsroot/octaviz/octaviz/debian In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13227 Added Files: .cvsignore Log Message: Added exclusions files --- NEW FILE: .cvsignore --- octaviz* files |