Directory Libs/Qdec/

Directory Created:
2007-06-26 17:17
Total Files:
23
Deleted Files:
2
Lines of Code:
8025

[root]/Libs/Qdec

Lines of Code

Libs/Qdec/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 147 (100.0%) 8607 (100.0%) 58.5
naucoin 117 (79.6%) 8529 (99.1%) 72.8
barre 7 (4.8%) 62 (0.7%) 8.8
lorensen 10 (6.8%) 7 (0.1%) 0.7
millerjv 2 (1.4%) 6 (0.1%) 3.0
pieper 7 (4.8%) 3 (0.0%) 0.4
jcfr 2 (1.4%) 0 (0.0%) 0.0
domibel 2 (1.4%) 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:

  • Libs/Qdec: 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:

  • Libs/Qdec: CMakeLists.txt (changed)
naucoin 2009-10-26 17:10 Rev.: 10755

COMP: check the return from getcwd

12 lines of code changed in 1 file:

  • Libs/Qdec: QdecUtilities.cpp (+12 -3)
pieper 2009-09-10 13:11 Rev.: 10443

COMP: apply patches from Attila Nagy for Solaris builds

0 lines of code changed in 5 files:

  • Libs/Qdec: QdecDataTable.cpp (changed), QdecGlmDesign.cpp (changed), QdecGlmFit.cpp (changed), QdecProject.cpp (changed), QdecUtilities.cpp (changed)
domibel 2009-08-16 12:46 Rev.: 10268

ENH: Adding missing #include directive (needed for gcc-4.4)

0 lines of code changed in 1 file:

  • Libs/Qdec: QdecContrast.cpp (changed)
domibel 2009-08-16 11:14 Rev.: 10267

ENH: Version numbering for shared libraries

0 lines of code changed in 1 file:

  • Libs/Qdec: CMakeLists.txt (changed)
naucoin 2009-05-19 17:21 Rev.: 9565

STYLE: removing old license information

0 lines of code changed in 19 files:

  • Libs/Qdec: ProgressUpdateGUI.h (changed), QdecContrast.cpp (changed), QdecContrast.h (changed), QdecDataTable.cpp (changed), QdecDataTable.h (changed), QdecFactor.cpp (changed), QdecFactor.h (changed), QdecGlmDesign.cpp (changed), QdecGlmDesign.h (changed), QdecGlmFit.cpp (changed), QdecGlmFit.h (changed), QdecGlmFitResults.cpp (changed), QdecGlmFitResults.h (changed), QdecProject.cpp (changed), QdecProject.h (changed), QdecSubject.cpp (changed), QdecSubject.h (changed), QdecUtilities.cpp (changed), QdecUtilities.h (changed)
pieper 2009-04-30 12:22 Rev.: 9368

COMP: fix compile warnings

0 lines of code changed in 1 file:

  • Libs/Qdec: QdecProject.cpp (changed)
lorensen 2008-12-30 10:04 Rev.: 8217

COMP: warnings.

1 lines of code changed in 1 file:

  • Libs/Qdec: QdecGlmDesign.cpp (+1 -1)
lorensen 2008-12-29 11:19 Rev.: 8206

COMP: warnings of various sorts.

6 lines of code changed in 1 file:

  • Libs/Qdec: QdecGlmDesign.cpp (+6 -6)
lorensen 2008-12-27 11:34 Rev.: 8192

COMP: many warnings removed. STYLE: mainly indentation.

0 lines of code changed in 1 file:

  • Libs/Qdec: QdecProject.cpp (changed)
naucoin 2008-08-28 10:46 Rev.: 7507

COMP: reducing compiler warnings

0 lines of code changed in 1 file:

  • Libs/Qdec: QdecGlmDesign.cpp (changed)
naucoin 2008-07-29 11:02 Rev.: 7355

STYLE: catch and print out an error message if can't find needed packages

0 lines of code changed in 1 file:

  • Libs/Qdec: vtkFreeSurferReaders.tcl (changed)
lorensen 2008-07-07 17:59 Rev.: 7255

COMP: gcc 4.3 missing include.

0 lines of code changed in 7 files:

  • Libs/Qdec: QdecDataTable.cpp (changed), QdecFactor.cpp (changed), QdecGlmDesign.cpp (changed), QdecGlmFit.cpp (changed), QdecProject.cpp (changed), QdecSubject.cpp (changed), QdecUtilities.cpp (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.

0 lines of code changed in 1 file:

  • Libs/Qdec: QdecGlmFit.h (-3)
barre 2008-05-31 12:31 Rev.: 6953

ENH: fix some minor installation issues; the Python modules are now found correctly. The Qdec module doesn't complain anymore. In general, the Tcl/Python subtree structure for each module is kept in the installation tree or build tree, so it should be easy to understand where files are coming from. Thanks to Dan and Luca for the feedback.

6 lines of code changed in 1 file:

  • Libs/Qdec: CMakeLists.txt (+6 -2)
barre 2008-05-21 18:25 Rev.: 6803

ENH: make sure all sub-project in Libs/ can be built in a standalone fashion (remove 99% of the refs to Slicer3, macros, etc). Make sure all external toolkits are properly included, and fix some issues in MRML with respect to TEEM/vtkTeem.

8 lines of code changed in 2 files:

  • Libs/Qdec: CMakeLists.txt (+8 -7), QdecConfigure.h.in (-7)
naucoin 2008-05-21 09:57 Rev.: 6793

COMP: disable template warnings in windows

5 lines of code changed in 1 file:

  • Libs/Qdec: vtkQdecWin32Header.h (+5)
barre 2008-05-20 02:29 Rev.: 6773

ENH: Slicer3 Spring Installation Clean Up

48 lines of code changed in 2 files:

  • Libs/Qdec: CMakeLists.txt (+47 -35), vtkFreeSurferReaders.tcl (+1 -1)
barre 2008-04-25 17:27 Rev.: 6552

ENH: allow a module (Modules/GradientAnisotropicDiffusionFilter for now) to be built in a standalone fashion against eithera Slicer3 build or Slicer3 installed. Update the config files accordingly, add missing installation rules, etc. Also unscreamify and indent many CMakeLists.txt in the process.

0 lines of code changed in 1 file:

  • Libs/Qdec: CMakeLists.txt (changed)
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:

  • Libs/Qdec: CMakeLists.txt (+2 -2)
naucoin 2008-01-25 12:37 Rev.: 5596

BUG: delay creation of the working dir until Create is called

44 lines of code changed in 2 files:

  • Libs/Qdec: QdecGlmDesign.cpp (+34 -33), QdecGlmDesign.h (+10)
naucoin 2007-12-21 10:09 Rev.: 5313

BUG: removing debugging print outs

2 lines of code changed in 1 file:

  • Libs/Qdec: QdecGlmDesign.cpp (+2 -2)
naucoin 2007-12-11 17:02 Rev.: 5164

BUG: put the tcl file in a more logical place in the binary and installed versions

0 lines of code changed in 1 file:

  • Libs/Qdec: CMakeLists.txt (changed)
naucoin 2007-10-12 15:35 Rev.: 4632

BUG: install the .tcl file

6 lines of code changed in 1 file:

  • Libs/Qdec: CMakeLists.txt (+6)
naucoin 2007-10-12 10:47 Rev.: 4620

BUG: getting rid of run time throws and asserts, trying not to make a qdec dir in the root dir

118 lines of code changed in 2 files:

  • Libs/Qdec: QdecGlmDesign.cpp (+105 -26), QdecProject.cpp (+13 -12)
naucoin 2007-10-11 18:54 Rev.: 4615

ENH: in init, destroy other windows that were hanging around, added details to error messages

38 lines of code changed in 1 file:

  • Libs/Qdec: vtkFreeSurferReaders.tcl (+38 -21)
naucoin 2007-10-11 18:07 Rev.: 4612

ENH: more error checking

16 lines of code changed in 2 files:

  • Libs/Qdec: QdecGlmFit.cpp (+13 -3), QdecProject.cpp (+3 -3)
naucoin 2007-10-10 18:05 Rev.: 4596

ENH: destroy plot windows, called when clearing out the scene

19 lines of code changed in 1 file:

  • Libs/Qdec: vtkFreeSurferReaders.tcl (+19)
naucoin 2007-10-09 14:19 Rev.: 4575

BUG: spaces in linux path names. ENH: use the new qdec archive directory, qdec_project_archive, instead of constructing it from the zip file

12 lines of code changed in 1 file:

  • Libs/Qdec: QdecProject.cpp (+12 -21)
millerjv 2007-10-09 11:02 Rev.: 4569

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

4 lines of code changed in 1 file:

  • Libs/Qdec: CMakeLists.txt (+4 -1)
pieper 2007-10-06 14:15 Rev.: 4555

ENH: fixed windows pathname issues

3 lines of code changed in 1 file:

  • Libs/Qdec: QdecProject.cpp (+3 -8)
naucoin 2007-10-05 09:38 Rev.: 4534

BUG: windows path parsing

15 lines of code changed in 1 file:

  • Libs/Qdec: QdecProject.cpp (+15 -7)
naucoin 2007-10-04 10:20 Rev.: 4524

BUG: getting paths on linux with spaces and special chars working

60 lines of code changed in 1 file:

  • Libs/Qdec: QdecProject.cpp (+60 -22)
naucoin 2007-10-03 17:17 Rev.: 4516

ENH: allow setting the zip, unzip, rm commands from above (putting it into the registry). Also, now that passing escaped strings, need to unescape it to check for file existence.

88 lines of code changed in 1 file:

  • Libs/Qdec: QdecProject.cpp (+88 -7)
naucoin 2007-10-03 17:16 Rev.: 4515

ENH: allow setting the zip, unzip, rm commands from above (putting it into the registry)

18 lines of code changed in 1 file:

  • Libs/Qdec: QdecProject.h (+18)
naucoin 2007-10-02 13:15 Rev.: 4505

BUG: problem with execs on linux in different dirs, assume in path for now

3 lines of code changed in 1 file:

  • Libs/Qdec: QdecProject.cpp (+3 -1)
naucoin 2007-10-02 10:12 Rev.: 4503

BUG: write to log file, trying to debug windows file paths, look in Slicer3-build/Applications/GUI/LoadProjectFile.log for output

63 lines of code changed in 1 file:

  • Libs/Qdec: QdecProject.cpp (+63 -22)
naucoin 2007-10-01 15:43 Rev.: 4498

ENH: add error checking on more calls

12 lines of code changed in 2 files:

  • Libs/Qdec: QdecGlmDesign.cpp (+7 -7), QdecProject.cpp (+5 -3)
naucoin 2007-10-01 14:48 Rev.: 4495

ENH: return different error values for different reasons

11 lines of code changed in 1 file:

  • Libs/Qdec: QdecProject.cpp (+11 -11)

(28 more)

Generated by StatSVN 0.5.0