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

| 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 |
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:
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:
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:
ENH: adding some error checking
0 lines of code changed in 1 file:
ENH: restting GUI panel width to default width on exit from module
9 lines of code changed in 1 file:
BUG: getting rid of CDash complaints
0 lines of code changed in 1 file:
ENH: making FetchMI keep metadata current on data loaded while FetchMI is not raised
0 lines of code changed in 2 files:
BUG: cleaning up CDASH graffitti
0 lines of code changed in 1 file:
ENH: adding fiber bundle handling into FetchMI
0 lines of code changed in 3 files:
COMP: fix compile warnings
0 lines of code changed in 1 file:
BUG: fix leak
0 lines of code changed in 1 file:
BUG: getting rid of a null node complaint
0 lines of code changed in 4 files:
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:
BUG: fixing the crash with lazybuild
0 lines of code changed in 2 files:
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:
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:
COMP: getting rid of compiler warnings, commenting out unused vars, doubles to int
0 lines of code changed in 1 file:
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:
ENH: fixing remote UL/DL for multi-volume, fiducials, freesurfer data
1103 lines of code changed in 6 files:
BUG: fixed add new tag and toplevel behavior
193 lines of code changed in 5 files:
BUG: setting server on node if server is null (not yet set) or changed
5 lines of code changed in 1 file:
BUG: fixed and exposed the AddNewServer functionality
103 lines of code changed in 2 files:
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:
BUG: addressing unused variable warning on Dashboard
0 lines of code changed in 1 file:
ENH: adding help, modifying logic to import new scene instead of close out old by default
51 lines of code changed in 4 files:
BUG: fixing popup and focus behavior or wait message and adding acknowledgement logos
114 lines of code changed in 2 files:
ENH: added wait widget, changed to tab format, cleaning up dashboard warnings
523 lines of code changed in 7 files:
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:
BUG: addressing linux compile warning in the code
6 lines of code changed in 1 file:
COMP: commenting out unused vars, fixing scoping
7 lines of code changed in 2 files:
BUG: deleting the file I meant to delete before
0 lines of code changed in 2 files:
BUG: oops, deleted by mistake. adding back
162 lines of code changed in 2 files:
ENH: adding modular webservices client stuff
499 lines of code changed in 4 files:
ENH: cleaning up old files.
2100 lines of code changed in 22 files:
BUG: filled in missing categories
4 lines of code changed in 1 file:
COMP: uninit var warning
1 lines of code changed in 1 file:
BUG: getting rid of warnings reported on Dashboard
3 lines of code changed in 2 files:
ENH: modularizing code and fixing remoteIO bug
12 lines of code changed in 1 file:
ENH: modularizing architecture and fixing remoteIO bug
5130 lines of code changed in 33 files:
ENH: making changes to get rid of build warnings on dashboard
9 lines of code changed in 3 files:
(52 more)