Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michiel Cottaar
fslpy
Commits
3610f1ee
Commit
3610f1ee
authored
9 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
FSLDIR is saved as a config setting if the user selects it on startup.
parent
a14d2280
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
fsl/__init__.py
+15
-2
15 additions, 2 deletions
fsl/__init__.py
fsl/fslview/frame.py
+2
-2
2 additions, 2 deletions
fsl/fslview/frame.py
fsl/fslview/overlay.py
+1
-1
1 addition, 1 deletion
fsl/fslview/overlay.py
fsl/utils/settings.py
+6
-3
6 additions, 3 deletions
fsl/utils/settings.py
with
24 additions
and
8 deletions
fsl/__init__.py
+
15
−
2
View file @
3610f1ee
...
...
@@ -95,7 +95,8 @@ log = logging.getLogger()
log
.
addHandler
(
logHandler
)
import
fsl.tools
as
tools
import
fsl.tools
as
tools
import
fsl.utils.settings
as
fslsettings
def
loadAllFSLTools
():
...
...
@@ -323,7 +324,16 @@ def fslDirWarning(frame, toolName, fslEnvActive):
warnmsg
=
'
The FSLDIR environment variable is not set -
'
\
'
{} may not behave correctly.
'
.
format
(
toolName
)
if
frame
is
not
None
:
# Check fslpy settings before
# prompting the user
fsldir
=
fslsettings
.
read
(
'
fsldir
'
)
if
fsldir
is
not
None
:
os
.
environ
[
'
FSLDIR
'
]
=
fsldir
return
if
frame
is
not
None
and
fsldir
is
None
:
import
wx
from
fsl.utils.fsldirdlg
import
FSLDirDialog
...
...
@@ -333,7 +343,9 @@ def fslDirWarning(frame, toolName, fslEnvActive):
fsldir
=
dlg
.
GetFSLDir
()
log
.
debug
(
'
Setting $FSLDIR to {} (specified
'
'
by user)
'
.
format
(
fsldir
))
os
.
environ
[
'
FSLDIR
'
]
=
fsldir
fslsettings
.
write
(
'
fsldir
'
,
fsldir
)
else
:
log
.
warn
(
warnmsg
)
...
...
@@ -397,6 +409,7 @@ def main(args=None):
and displays a GUI (if the tool has one), or executes the tool.
"""
# Search the environment for FSLDIR
fsldir
=
os
.
environ
.
get
(
'
FSLDIR
'
,
None
)
fslEnvActive
=
fsldir
is
not
None
...
...
This diff is collapsed.
Click to expand it.
fsl/fslview/frame.py
+
2
−
2
View file @
3610f1ee
...
...
@@ -53,8 +53,8 @@ import logging
import
wx
import
wx.aui
as
aui
import
fsl.data.strings
as
strings
import
fsl.
fslview
.settings
as
fslsettings
import
fsl.data.strings
as
strings
import
fsl.
utils
.settings
as
fslsettings
import
views
import
actions
...
...
This diff is collapsed.
Click to expand it.
fsl/fslview/overlay.py
+
1
−
1
View file @
3610f1ee
...
...
@@ -22,7 +22,7 @@ import fsl.data.featresults as featresults
import
fsl.data.featimage
as
fslfeatimage
import
fsl.data.strings
as
strings
import
fsl.data.model
as
fslmodel
import
fsl.
fslview
.settings
as
fslsettings
import
fsl.
utils
.settings
as
fslsettings
log
=
logging
.
getLogger
(
__name__
)
...
...
This diff is collapsed.
Click to expand it.
fsl/
fslview
/settings.py
→
fsl/
utils
/settings.py
+
6
−
3
View file @
3610f1ee
...
...
@@ -14,10 +14,13 @@ def read(name, default=None):
try
:
import
wx
except
:
return
None
config
=
wx
.
Config
(
'
fsl
view
'
)
config
=
wx
.
Config
(
'
fsl
eyes
'
)
value
=
config
.
Read
(
name
)
log
.
debug
(
'
Read {}: {}
'
.
format
(
name
,
'
(no value)
'
if
value
==
''
else
value
))
if
value
==
''
:
return
default
else
:
return
value
...
...
@@ -28,8 +31,8 @@ def write(name, value):
except
:
return
None
value
=
str
(
value
)
config
=
wx
.
Config
(
'
fsl
view
'
)
config
=
wx
.
Config
(
'
fsl
eyes
'
)
log
.
debug
(
'
Sav
ing {}: {}
'
.
format
(
name
,
value
))
log
.
debug
(
'
Writ
ing {}: {}
'
.
format
(
name
,
value
))
config
.
Write
(
name
,
value
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment