Directory Modules/ScriptedModule/

Directory Created:
2006-08-03 17:57
Total Files:
12
Deleted Files:
2
Lines of Code:
1618

[root]/Modules/ScriptedModule
            directory in repo Testing (2 files, 150 lines)

Lines of Code

Modules/ScriptedModule/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 92 (100.0%) 1968 (100.0%) 21.3
pieper 60 (65.2%) 1579 (80.2%) 26.3
lantiga 6 (6.5%) 212 (10.8%) 35.3
barre 13 (14.1%) 163 (8.3%) 12.5
millerjv 3 (3.3%) 8 (0.4%) 2.6
naucoin 5 (5.4%) 4 (0.2%) 0.8
alexy 1 (1.1%) 2 (0.1%) 2.0
lorensen 1 (1.1%) 0 (0.0%) 0.0
jcfr 2 (2.2%) 0 (0.0%) 0.0
domibel 1 (1.1%) 0 (0.0%) 0.0

Most Recent Commits

jcfr 2009-12-08 18:34 Rev.: 11226

ENH: In CMakeLists.txt, change deprecated SUBDIRS command into ADD_SUBDIRECTORY

See http://cmake.org/cmake/help/cmake-2-8-docs.html#command:subdirs

when subdirs command was taking a list of directory, change it
using the following pattern:

Before:
subdirs(sagarmatha kumbhu eiger)

After:
SET(dirs
sagarmatha
kumbhu
eiger
)
FOREACH(dir ${dirs})
ADD_SUBDIRECTORY(${dir})
ENDFOREACH(dir)

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: CMakeLists.txt (changed)
jcfr 2009-12-07 23:15 Rev.: 11209

ENH: Update CMakeLists.txt - CMake 2.6 is now required

The following line have been added:

CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
IF(COMMAND CMAKE_POLICY)
CMAKE_POLICY(SET CMP0003 NEW)
ENDIF(COMMAND CMAKE_POLICY)
MARK_AS_ADVANCED(CMAKE_BACKWARDS_COMPATIBILITY)

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: CMakeLists.txt (changed)
barre 2009-10-29 17:36 Rev.: 10795

ENH: support for new cameras and new views. Port from Slicer 3.4 branch. As mentioned on the mailing list, apologies for instabilities while these core changes are further tested. Fiducials do not seem to follow camera for example, this will be fixed. Send bugs to sebastien.barre@kitware.com; Thank you.

1 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkMRMLScriptedModuleNode.cxx (+1 -1)
domibel 2009-08-16 11:14 Rev.: 10267

ENH: Version numbering for shared libraries

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: CMakeLists.txt (changed)
pieper 2009-07-15 10:34 Rev.: 9941

BUG: add new method to lookup the standard VTK event numbers for strings (like ModifiedEvent). This was required because the vtkCommand list of events was edited such that the old numbers were no longer valid

6 lines of code changed in 2 files:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (+5), vtkScriptedModuleGUI.h (+1)
pieper 2009-05-07 12:56 Rev.: 9422

ENH: make the vtkOpenGLScriptedActor example work to render actual opengl

0 lines of code changed in 2 files:

  • Modules/ScriptedModule: CMakeLists.txt (changed), vtkOpenGLScriptedActor.cxx (changed)
pieper 2009-04-30 13:58 Rev.: 9371

ENH: test of a new facility to write vtk actors with scripts (initially python using PyOpenGL and eventually teem)

272 lines of code changed in 2 files:

  • Modules/ScriptedModule: vtkOpenGLScriptedActor.cxx (new 194), vtkOpenGLScriptedActor.h (new 78)
pieper 2009-03-02 13:27 Rev.: 8820

STYLE: moved the Category instance variable to the vtkSlicerModuleGUI

0 lines of code changed in 2 files:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (-2), vtkScriptedModuleGUI.h (-5)
pieper 2009-03-02 09:28 Rev.: 8810

COMP: avoid warnings when building python (avoid mismatch betweent the way Python defines _LARGEFILE_SOURCE compared to the way kwsys defines it

1 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (+1 -7)
pieper 2009-02-12 16:22 Rev.: 8630

BUG: fixes to python internals to support scripted wizards

48 lines of code changed in 2 files:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (+43), vtkScriptedModuleGUI.h (+5)
pieper 2009-02-11 17:48 Rev.: 8625

BUG: first pass of python and numpy builds from source (fixes but that they weren't building before). Still turned off by default until more testing is done

3 lines of code changed in 1 file:

  • Modules/ScriptedModule: CMakeLists.txt (+3)
pieper 2008-12-10 14:36 Rev.: 8109

COMP: patches for Solaris from Attila Nagy (thanks, Attila\!)

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: CMakeLists.txt (changed)
pieper 2008-11-19 13:47 Rev.: 7917

ENH: add RemoveObserverByNumber method for GUI observers

0 lines of code changed in 2 files:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (changed), vtkScriptedModuleGUI.h (changed)
lantiga 2008-09-09 10:23 Rev.: 7550

BUG: fixed and then commented out Enter and Exit methods, since they create troubles with Python scripted modules. Will have to be fixed shortly, but Python scripted modules can do without for the time being.

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (changed)
pieper 2008-08-27 10:47 Rev.: 7495

ENH: Allow scripting of enter/exit methods

0 lines of code changed in 2 files:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (changed), vtkScriptedModuleGUI.h (changed)
pieper 2008-08-27 10:20 Rev.: 7491

ENH: add category support

0 lines of code changed in 2 files:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (changed), vtkScriptedModuleGUI.h (changed)
lantiga 2008-08-07 03:07 Rev.: 7406

ENH: Committing changes to Python infrastructure

0 lines of code changed in 2 files:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (changed), vtkScriptedModuleLogic.h (changed)
pieper 2008-07-24 13:42 Rev.: 7333

BUG: return the a directory name rather than 'pkgIndex'

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkScriptedModuleLogic.cxx (changed)
barre 2008-06-25 10:58 Rev.: 7176

COMP: minor. One of the reason Slicer3 is so slow to compile is that so many classes include STL headers in their own header, instead of their implementation file (PIMPL). Some of those headers are actually not needed anymore by said classes, or were put there "just in case I need a map, vector, list, etc.". The more it happens, the slower the build process gets, and the slower the dependencies are computed/resolved. Try to fix some.

2 lines of code changed in 2 files:

  • Modules/ScriptedModule: vtkScriptedModuleLogic.cxx (+2), vtkScriptedModuleLogic.h (-2)
barre 2008-05-27 17:44 Rev.: 6889

ENH: Plugins and Modules have specific location for their binairies/dll, different from the usual bin/ and lib/ (i.e. lib/Slicer3/Plugins, lib/Slicer3/Modules). This was achieved by setting LIBRARY_OUTPUT_PATH and EXECUTABLE_OUTPUT_PATH from the slicer3_set_default_modules_output_path and slicer3_set_default_plugins_output_path macro, but it is a dangerous practice to override a global variable, as it propagates to subtrees. As a result, SlicerTractographySeeding, which combines a module and a CLP in the same CMakeLists, was not built to the proper directory; ExtractSkeleton was not output in the right location either, and several tests ended up in Plugins instead of bin/ (GaussianBlurImageFilterTest, OrientImageTest). Fix this by creating a macro that will set the LIBRARY_OUTPUT_DIRECTORY and RUNTIME_OUTPUT_DIRECTORY explicitly on a *target* basis, using SET_TARGET_PROPERTIES. This removes the side-effects described above.

2 lines of code changed in 1 file:

  • Modules/ScriptedModule: CMakeLists.txt (+2 -3)
barre 2008-05-26 10:17 Rev.: 6851

ENH: added slicer3_install_modules and slicer3_install_plugins macro to hide the big INSTALL() command that was used to install plugins/modules; this is more elegant, and enable us to have better control on installation by modifying just one file.

1 lines of code changed in 1 file:

  • Modules/ScriptedModule: CMakeLists.txt (+1 -5)
barre 2008-05-22 17:31 Rev.: 6833

ENH: more cleanup to allow LoadableModule to be loaded from the Module Search Paths (i.e. outside Slicer3). Provide API to retrieve module's resources paths from either locations (inside or outside a Slicer3's build/installed tree)

54 lines of code changed in 4 files:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (-2), vtkScriptedModuleGUI.h (-6), vtkScriptedModuleLogic.cxx (+42 -1), vtkScriptedModuleLogic.h (+12 -6)
barre 2008-05-20 02:29 Rev.: 6772

ENH: Slicer3 Spring Installation Clean Up

103 lines of code changed in 4 files:

  • Modules/ScriptedModule: CMakeLists.txt (+75 -78), vtkScriptedModule.h (+2 -2), vtkScriptedModuleConfigure.h.in (+1 -10), vtkScriptedModuleGUI.cxx (+25 -12)
pieper 2008-03-06 07:37 Rev.: 6089

BUG: remove experimental scripted task - fails, probably because the interpreter is not thread-safe

0 lines of code changed in 3 files:

  • Modules/ScriptedModule: CMakeLists.txt (-1), vtkScriptedTask.cxx (del), vtkScriptedTask.h (del)
pieper 2008-03-05 16:09 Rev.: 6080

ENH: added framework for scripted tasks that execute in the processing thread rather than the main thread. These will require a little more refinement but are basically working

130 lines of code changed in 3 files:

  • Modules/ScriptedModule: CMakeLists.txt (+1), vtkScriptedTask.cxx (new 66), vtkScriptedTask.h (new 63)
millerjv 2008-01-31 12:24 Rev.: 5665

ENH: Changes in the Slicer3 installation layout to simplify navigation. Most things will now try install themselves under <Installation Directory>/lib/<Package> or <Installation Directory>/include/<Package>. For example, <Installation Directory>/lib/Slicer3, <Installation Directory>/lib/MRML, <Installation Directory>/lib/ModuleDescriptionParser. This allows setting include and library paths consistently using ../<SomeOtherPackage> or ../../include/<SomeOtherPackage>, etc.

2 lines of code changed in 1 file:

  • Modules/ScriptedModule: CMakeLists.txt (+2 -2)
lantiga 2008-01-11 19:49 Rev.: 5485

ENH: Introducing Python scripted modules

212 lines of code changed in 3 files:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (+191 -38), vtkScriptedModuleGUI.h (+17), vtkScriptedModuleLogic.h (+4)
pieper 2007-12-10 08:32 Rev.: 5121

STYLE: fix error message

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (changed)
pieper 2007-12-10 08:31 Rev.: 5120

BUG: avoid using null pointer

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (changed)
pieper 2007-12-03 17:42 Rev.: 5030

BUG: fix a scene load/save bug with the editor and other scripted module nodes

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkMRMLScriptedModuleNode.cxx (changed)
pieper 2007-11-15 17:55 Rev.: 4839

BUG: avoid duplicate attributes in scripted module nodes

3 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkMRMLScriptedModuleNode.cxx (+3 -3)
millerjv 2007-10-09 11:02 Rev.: 4569

ENH: Update INSTALL_* commands to INSTALL() commands.

4 lines of code changed in 1 file:

  • Modules/ScriptedModule: CMakeLists.txt (+4 -1)
pieper 2007-09-21 08:23 Rev.: 4389

ENH: extra documentation

3 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkMRMLScriptedModuleNode.h (+3)
alexy 2007-08-24 14:34 Rev.: 4121

ENH: made mrml nodes XML attribute writting consistent

2 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkMRMLScriptedModuleNode.cxx (+2 -2)
pieper 2007-08-21 09:56 Rev.: 4092

BUG: fix module reading string error

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkMRMLScriptedModuleNode.cxx (changed)
pieper 2007-08-15 17:45 Rev.: 4071

ENH: new accessors for parameters

0 lines of code changed in 2 files:

  • Modules/ScriptedModule: vtkMRMLScriptedModuleNode.cxx (changed), vtkMRMLScriptedModuleNode.h (changed)
pieper 2007-07-23 12:59 Rev.: 3928

ENH: more improvements to the edit box interface

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (changed)
pieper 2007-06-03 15:02 Rev.: 3460

BUG: can't return -1 from method returning unsigned long

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (changed)
naucoin 2007-05-07 17:08 Rev.: 3352

BUG: check for null pointer

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (changed)
naucoin 2007-05-04 17:33 Rev.: 3336

ENH: updated mrml processing to call tcl script

0 lines of code changed in 1 file:

  • Modules/ScriptedModule: vtkScriptedModuleGUI.cxx (changed)

(11 more)

Generated by StatSVN 0.5.0