Directory Modules/FetchMI/

Directory Created:
2008-10-10 09:51
Total Files:
43
Deleted Files:
11
Lines of Code:
16516

[root]/Modules/FetchMI
            directory in repo ImageData (21 files, 0 lines)
            directory in repo Resources (1 files, 266 lines)
            directory in repo Tcl (1 files, 196 lines)

Lines of Code

Modules/FetchMI/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 300 (100.0%) 22959 (100.0%) 76.5
wjp@bwh.harvard.edu 262 (87.3%) 22924 (99.8%) 87.4
naucoin 31 (10.3%) 34 (0.1%) 1.0
barre 1 (0.3%) 1 (0.0%) 1.0
pieper 3 (1.0%) 0 (0.0%) 0.0
jcfr 2 (0.7%) 0 (0.0%) 0.0
alexy 1 (0.3%) 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/FetchMI: 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/FetchMI: 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/FetchMI: vtkFetchMIMulticolumnWidget.h (+1 -1)
wjp@bwh.harvard.edu 2009-08-12 09:36 Rev.: 10221

ENH: adding some error checking

0 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMILogic.cxx (changed)
wjp@bwh.harvard.edu 2009-06-23 11:44 Rev.: 9768

ENH: restting GUI panel width to default width on exit from module

9 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (+9 -9)
wjp@bwh.harvard.edu 2009-06-03 15:36 Rev.: 9648

BUG: getting rid of CDash complaints

0 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (changed)
wjp@bwh.harvard.edu 2009-06-03 14:09 Rev.: 9642

ENH: making FetchMI keep metadata current on data loaded while FetchMI is not raised

0 lines of code changed in 2 files:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (changed), vtkFetchMILogic.cxx (changed)
wjp@bwh.harvard.edu 2009-05-31 08:17 Rev.: 9633

BUG: cleaning up CDASH graffitti

0 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMILogic.cxx (changed)
wjp@bwh.harvard.edu 2009-05-21 14:11 Rev.: 9590

ENH: adding fiber bundle handling into FetchMI

0 lines of code changed in 3 files:

  • Modules/FetchMI: vtkFetchMILogic.cxx (changed), vtkFetchMILogic.h (changed), vtkFetchMIQueryTermWidget.cxx (changed)
pieper 2009-04-27 15:57 Rev.: 9335

COMP: fix compile warnings

0 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIParserXND.cxx (changed)
pieper 2009-04-15 13:24 Rev.: 9213

BUG: fix leak

0 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (changed)
wjp@bwh.harvard.edu 2009-04-15 10:43 Rev.: 9209

BUG: getting rid of a null node complaint

0 lines of code changed in 4 files:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (changed), vtkFetchMILogic.cxx (changed), vtkFetchMILogic.h (changed), vtkMRMLFetchMINode.cxx (changed)
wjp@bwh.harvard.edu 2009-04-15 05:28 Rev.: 9205

BUG: turning observers on mrml/gui on when entered and off when exited. workaround, not a definitive fix

0 lines of code changed in 4 files:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (changed), vtkFetchMIGUI.h (changed), vtkFetchMILogic.cxx (changed), vtkFetchMILogic.h (changed)
wjp@bwh.harvard.edu 2009-04-13 15:38 Rev.: 9177

BUG: fixing the crash with lazybuild

0 lines of code changed in 2 files:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (changed), vtkFetchMIGUI.h (changed)
pieper 2009-04-13 15:32 Rev.: 9176

BUG: avoid crash from tearing down unbuilt GUI and rearrange node creation code in attempt to avoid leak

0 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (changed)
wjp@bwh.harvard.edu 2009-04-13 14:35 Rev.: 9174

BUG: adapted FetchMI to build lazily, to only use gui observers when module is raised. made some gui modifications as per ron's suggestions

0 lines of code changed in 4 files:

  • Modules/FetchMI: vtkFetchMIFlatResourceWidget.cxx (changed), vtkFetchMIGUI.cxx (changed), vtkFetchMIQueryTermWidget.cxx (changed), vtkFetchMIResourceUploadWidget.cxx (changed)
naucoin 2009-04-10 09:47 Rev.: 9132

COMP: getting rid of compiler warnings, commenting out unused vars, doubles to int

0 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (changed)
alexy 2009-03-31 12:40 Rev.: 9011

BUG-FIXED: 151 fixed Undo/Redo and added it back into UI.
The problem was in Refrenceing nodes getting out of sync with scene nodes.

0 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIResourceUploadWidget.cxx (changed)
wjp@bwh.harvard.edu 2009-03-08 21:16 Rev.: 8855

ENH: fixing remote UL/DL for multi-volume, fiducials, freesurfer data

1103 lines of code changed in 6 files:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (+226 -284), vtkFetchMIGUI.h (+8 -12), vtkFetchMILogic.cxx (+846 -42), vtkFetchMILogic.h (+21 -6), vtkMRMLFetchMINode.cxx (+1 -14), vtkMRMLFetchMINode.h (+1 -4)
wjp@bwh.harvard.edu 2009-03-04 17:09 Rev.: 8837

BUG: fixed add new tag and toplevel behavior

193 lines of code changed in 5 files:

  • Modules/FetchMI: vtkFetchMIFlatResourceWidget.cxx (+1), vtkFetchMIGUI.cxx (+55 -1), vtkFetchMIQueryTermWidget.cxx (+2), vtkFetchMIResourceUploadWidget.cxx (+132 -112), vtkFetchMIResourceUploadWidget.h (+3 -2)
wjp@bwh.harvard.edu 2009-03-04 15:12 Rev.: 8834

BUG: setting server on node if server is null (not yet set) or changed

5 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (+5 -1)
wjp@bwh.harvard.edu 2009-03-04 14:55 Rev.: 8833

BUG: fixed and exposed the AddNewServer functionality

103 lines of code changed in 2 files:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (+99 -79), vtkFetchMIGUI.h (+4 -2)
wjp@bwh.harvard.edu 2009-03-04 12:14 Rev.: 8832

ENH: regrouped icons for clarity (address Ron's comment that the main functionality was not clear enough)

179 lines of code changed in 3 files:

  • Modules/FetchMI: vtkFetchMIFlatResourceWidget.cxx (+60 -51), vtkFetchMIQueryTermWidget.cxx (+66 -55), vtkFetchMIResourceUploadWidget.cxx (+53 -37)
wjp@bwh.harvard.edu 2009-03-03 20:41 Rev.: 8829

BUG: addressing unused variable warning on Dashboard

0 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (-1)
wjp@bwh.harvard.edu 2009-03-03 16:56 Rev.: 8828

ENH: adding help, modifying logic to import new scene instead of close out old by default

51 lines of code changed in 4 files:

  • Modules/FetchMI: vtkFetchMIFlatResourceWidget.cxx (+1 -30), vtkFetchMIGUI.cxx (+8 -3), vtkFetchMILogic.cxx (+11 -1), vtkFetchMIQueryTermWidget.cxx (+31 -9)
wjp@bwh.harvard.edu 2009-03-02 12:45 Rev.: 8818

BUG: fixing popup and focus behavior or wait message and adding acknowledgement logos

114 lines of code changed in 2 files:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (+113 -73), vtkFetchMIGUI.h (+1)
wjp@bwh.harvard.edu 2009-03-01 20:43 Rev.: 8802

ENH: added wait widget, changed to tab format, cleaning up dashboard warnings

523 lines of code changed in 7 files:

  • Modules/FetchMI: vtkFetchMIFlatResourceWidget.cxx (+78 -38), vtkFetchMIGUI.cxx (+250 -52), vtkFetchMIGUI.h (+9 -2), vtkFetchMILogic.cxx (+20 -17), vtkFetchMIQueryTermWidget.cxx (+70 -41), vtkFetchMIResourceUploadWidget.cxx (+95 -66), vtkFetchMIWriterXND.cxx (+1 -1)
wjp@bwh.harvard.edu 2009-02-28 21:57 Rev.: 8789

BUG: calling UpdateFileList on remote upload operations, and fixing upload for storage nodes that have no files in the fileNameList.

60 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMILogic.cxx (+60 -28)
wjp@bwh.harvard.edu 2009-02-26 18:14 Rev.: 8765

BUG: addressing linux compile warning in the code

6 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIParserXND.cxx (+6 -4)
naucoin 2009-02-26 16:13 Rev.: 8758

COMP: commenting out unused vars, fixing scoping

7 lines of code changed in 2 files:

  • Modules/FetchMI: vtkFetchMIFlatResourceWidget.cxx (+2 -2), vtkFetchMILogic.cxx (+5 -5)
wjp@bwh.harvard.edu 2009-02-26 15:08 Rev.: 8756

BUG: deleting the file I meant to delete before

0 lines of code changed in 2 files:

  • Modules/FetchMI: vtkFetchMIWriterCollection.cxx (del), vtkFetchMIWriterCollection.h (del)
wjp@bwh.harvard.edu 2009-02-26 15:06 Rev.: 8755

BUG: oops, deleted by mistake. adding back

162 lines of code changed in 2 files:

  • Modules/FetchMI: vtkFetchMIWriter.cxx (new 91), vtkFetchMIWriter.h (new 71)
wjp@bwh.harvard.edu 2009-02-26 14:04 Rev.: 8752

ENH: adding modular webservices client stuff

499 lines of code changed in 4 files:

  • Modules/FetchMI: vtkFetchMIWebServicesClient.cxx (new 45), vtkFetchMIWebServicesClient.h (new 55), vtkFetchMIWebServicesClientXND.cxx (new 355), vtkFetchMIWebServicesClientXND.h (new 44)
wjp@bwh.harvard.edu 2009-02-26 14:03 Rev.: 8751

ENH: cleaning up old files.

2100 lines of code changed in 22 files:

  • Modules/FetchMI: CMakeLists.txt (+2 -5), vtkFetchMIClientCaller.cxx (del), vtkFetchMIClientCaller.h (del), vtkFetchMIClientCallerCollection.cxx (del), vtkFetchMIClientCallerCollection.h (del), vtkFetchMIClientCallerXND.cxx (del), vtkFetchMIClientCallerXND.h (del), vtkFetchMIFlatResourceWidget.cxx (+5 -37), vtkFetchMIGUI.cxx (+106 -128), vtkFetchMILogic.cxx (+1826 -1267), vtkFetchMILogic.h (+127 -68), vtkFetchMIParserCollection.cxx (del), vtkFetchMIParserCollection.h (del), vtkFetchMIParserXND.cxx (+1 -1), vtkFetchMIQueryTermWidget.cxx (+4 -4), vtkFetchMIResourceUploadWidget.cxx (+7 -5), vtkFetchMIServer.cxx (+4 -2), vtkFetchMIServer.h (+9 -4), vtkFetchMIWriter.cxx (del), vtkFetchMIWriter.h (del), vtkMRMLFetchMINode.cxx (+9), vtkMRMLFetchMINode.h (-4)
naucoin 2009-02-25 14:58 Rev.: 8746

BUG: filled in missing categories

4 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIGUI.h (+4)
naucoin 2009-02-18 17:30 Rev.: 8693

COMP: uninit var warning

1 lines of code changed in 1 file:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (+1 -6)
wjp@bwh.harvard.edu 2009-02-17 09:03 Rev.: 8670

BUG: getting rid of warnings reported on Dashboard

3 lines of code changed in 2 files:

  • Modules/FetchMI: vtkFetchMILogic.cxx (+2 -3), vtkFetchMIParserXND.cxx (+1 -1)
wjp@bwh.harvard.edu 2009-02-16 16:12 Rev.: 8656

ENH: modularizing code and fixing remoteIO bug

12 lines of code changed in 1 file:

  • Modules/FetchMI: CMakeLists.txt (+12 -1)
wjp@bwh.harvard.edu 2009-02-16 16:11 Rev.: 8654

ENH: modularizing architecture and fixing remoteIO bug

5130 lines of code changed in 33 files:

  • Modules/FetchMI: vtkFetchMIClientCaller.cxx (new 39), vtkFetchMIClientCaller.h (new 32), vtkFetchMIClientCallerCollection.cxx (new 88), vtkFetchMIClientCallerCollection.h (new 66), vtkFetchMIClientCallerXND.cxx (new 33), vtkFetchMIClientCallerXND.h (new 25), vtkFetchMIFlatResourceWidget.cxx (+47 -1), vtkFetchMIGUI.cxx (+81 -438), vtkFetchMIGUI.h (+2 -9), vtkFetchMILogic.cxx (+1241 -1099), vtkFetchMILogic.h (+137 -67), vtkFetchMIParser.cxx (new 341), vtkFetchMIParser.h (new 223), vtkFetchMIParserCollection.cxx (new 88), vtkFetchMIParserCollection.h (new 66), vtkFetchMIParserHID.cxx (new 162), vtkFetchMIParserHID.h (new 79), vtkFetchMIParserXND.cxx (new 664), vtkFetchMIParserXND.h (new 79), vtkFetchMIQueryTermWidget.cxx (+34 -16), vtkFetchMIResourceUploadWidget.cxx (+17 -11), vtkFetchMIServer.cxx (new 91), vtkFetchMIServer.h (new 82), vtkFetchMIServerCollection.cxx (new 107), vtkFetchMIServerCollection.h (new 74), vtkFetchMIWriter.cxx (new 182), vtkFetchMIWriter.h (new 142), vtkFetchMIWriterCollection.cxx (new 88), vtkFetchMIWriterCollection.h (new 66), vtkFetchMIWriterXND.cxx (new 488), vtkFetchMIWriterXND.h (new 41), vtkMRMLFetchMINode.cxx (+212 -107), vtkMRMLFetchMINode.h (+13 -17)
wjp@bwh.harvard.edu 2009-02-05 16:57 Rev.: 8579

ENH: making changes to get rid of build warnings on dashboard

9 lines of code changed in 3 files:

  • Modules/FetchMI: vtkFetchMIGUI.cxx (+8 -9), vtkFetchMIResourceUploadWidget.cxx (-1), vtkMRMLFetchMINode.cxx (+1 -1)

(52 more)

Generated by StatSVN 0.5.0