Directory Modules/SlicerDaemon/

Directory Created:
2006-05-18 10:07
Total Files:
12
Deleted Files:
0
Lines of Code:
1680

[root]/Modules/SlicerDaemon
            directory in repo Matlab (11 files, 1277 lines)
                directory in repo popen (2 files, 780 lines)
            directory in repo Python (5 files, 261 lines)
            directory in repo Tcl (3 files, 805 lines)
                directory in repo tracker (3 files, 127 lines)
            directory in repo Testing (2 files, 67 lines)
                directory in repo Tcl (4 files, 428 lines)
            Folder removed from repo matlab (0 files, 0 lines)
                Folder removed from repo popen (0 files, 0 lines)

Lines of Code

Modules/SlicerDaemon/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 37 (100.0%) 1800 (100.0%) 48.6
pieper 16 (43.2%) 1635 (90.8%) 102.1
barre 6 (16.2%) 133 (7.4%) 22.1
andy 2 (5.4%) 20 (1.1%) 10.0
millerjv 2 (5.4%) 6 (0.3%) 3.0
malaterre 1 (2.7%) 6 (0.3%) 6.0
samset 1 (2.7%) 0 (0.0%) 0.0
lorensen 1 (2.7%) 0 (0.0%) 0.0
kquintus 5 (13.5%) 0 (0.0%) 0.0
jcfr 2 (5.4%) 0 (0.0%) 0.0
domibel 1 (2.7%) 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/SlicerDaemon: 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/SlicerDaemon: CMakeLists.txt (changed)
domibel 2009-08-16 11:14 Rev.: 10267

ENH: Version numbering for shared libraries

0 lines of code changed in 1 file:

  • Modules/SlicerDaemon: CMakeLists.txt (changed)
barre 2008-12-08 04:31 Rev.: 8074

ENH: agh

0 lines of code changed in 1 file:

  • Modules/SlicerDaemon: CMakeLists.txt (changed)
pieper 2008-12-05 07:35 Rev.: 8052

ENH: put slicer daemon helper applications in bin directory so they will be in path for installed slicer

0 lines of code changed in 1 file:

  • Modules/SlicerDaemon: CMakeLists.txt (changed)
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/SlicerDaemon: 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/SlicerDaemon: CMakeLists.txt (+1 -5)
barre 2008-05-20 02:29 Rev.: 6772

ENH: Slicer3 Spring Installation Clean Up

130 lines of code changed in 3 files:

  • Modules/SlicerDaemon: CMakeLists.txt (+127 -85), vtkSlicerDaemon.h (+2 -2), vtkSlicerDaemonConfigure.h.in (+1 -10)
pieper 2008-04-22 16:46 Rev.: 6519

COMP: fix up some code that generated warnings

0 lines of code changed in 1 file:

  • Modules/SlicerDaemon: vtkTclHelper.cxx (changed)
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

3 lines of code changed in 1 file:

  • Modules/SlicerDaemon: vtkTclHelper.h (+3)
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/SlicerDaemon: CMakeLists.txt (+2 -2)
millerjv 2007-10-09 11:02 Rev.: 4569

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

4 lines of code changed in 1 file:

  • Modules/SlicerDaemon: CMakeLists.txt (+4 -1)
kquintus 2007-08-03 15:17 Rev.: 4000

STYLE: removed lots of comments

0 lines of code changed in 1 file:

  • Modules/SlicerDaemon: vtkTclHelper.cxx (changed)
kquintus 2007-06-08 15:43

ENH: The helper does now no more transformations with the data. Transform Functions still available in ReceiveImageDataTensors_DoSlicerTransform and SendImageDataTensors_UndoSlicerTransform.

0 lines of code changed in 2 files:

  • Modules/SlicerDaemon: vtkTclHelper.cxx (changed), vtkTclHelper.h (changed)
samset 2007-06-07 16:32 Rev.: 3518

COMP: fix warnings due to sign and unused variables

0 lines of code changed in 1 file:

  • Modules/SlicerDaemon: vtkTclHelper.cxx (changed)
kquintus 2007-05-23 15:23

ENH: pipe tensors as well

0 lines of code changed in 2 files:

  • Modules/SlicerDaemon: vtkTclHelper.cxx (changed), vtkTclHelper.h (changed)
lorensen 2007-01-05 23:15 Rev.: 2069

BUG: Removed references to empty directory, ModulesBaseClasses.

0 lines of code changed in 1 file:

  • Modules/SlicerDaemon: CMakeLists.txt (changed)
andy 2006-09-18 13:53 Rev.: 1268

ENH: More cleanups and putting things to the right place (on the top of the other things)

3 lines of code changed in 1 file:

  • Modules/SlicerDaemon: CMakeLists.txt (+3 -3)
andy 2006-09-18 12:33 Rev.: 1267

ENH: Move the location of some libraries and fix installation

17 lines of code changed in 1 file:

  • Modules/SlicerDaemon: CMakeLists.txt (+17 -3)
malaterre 2006-06-12 12:08 Rev.: 522

ENH: Remove vtkFloatingPointType which is only needed for VTK4.2 compat

6 lines of code changed in 1 file:

  • Modules/SlicerDaemon: vtkMRMLSlicerDaemonNode.h (+6 -6)
pieper 2006-06-09 16:28 Rev.: 506

ENH: mostly ported slicer daemon code to Slicer3 (for get and put)

18 lines of code changed in 1 file:

  • Modules/SlicerDaemon: CMakeLists.txt (+18)
pieper 2006-05-18 10:07 Rev.: 440

ENH: code moved from Slicer2 into new module

1614 lines of code changed in 12 files:

  • Modules/SlicerDaemon: CMakeLists.txt (new 110), vtkMRMLSlicerDaemonNode.cxx (new 173), vtkMRMLSlicerDaemonNode.h (new 88), vtkSlicerDaemon.h (new 31), vtkSlicerDaemonConfigure.h.in (new 20), vtkSlicerDaemonGUI.cxx (new 237), vtkSlicerDaemonGUI.h (new 75), vtkSlicerDaemonLogic.cxx (new 108), vtkSlicerDaemonLogic.h (new 56), vtkSlicerDaemonWin32Header.h (new 34), vtkTclHelper.cxx (new 609), vtkTclHelper.h (new 73)
Generated by StatSVN 0.5.0