Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review 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
mantidproject
mantid
Commits
eed06819
Commit
eed06819
authored
10 years ago
by
Alex Buts
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/feature/9403_Refl_Offline_Save_Workspaces'
parents
9a693c0e
5a9954b5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Mantid/scripts/Interface/ui/reflectometer/refl_save.py
+28
-23
28 additions, 23 deletions
Code/Mantid/scripts/Interface/ui/reflectometer/refl_save.py
with
28 additions
and
23 deletions
Code/Mantid/scripts/Interface/ui/reflectometer/refl_save.py
+
28
−
23
View file @
eed06819
...
@@ -17,6 +17,8 @@ except AttributeError:
...
@@ -17,6 +17,8 @@ except AttributeError:
class
Ui_SaveWindow
(
object
):
class
Ui_SaveWindow
(
object
):
def
__init__
(
self
):
def
__init__
(
self
):
self
.
__has_mount_point
=
True
;
self
.
__instrument
=
config
[
'
default.instrument
'
].
strip
().
upper
()
self
.
__instrument
=
config
[
'
default.instrument
'
].
strip
().
upper
()
try
:
try
:
...
@@ -24,7 +26,7 @@ class Ui_SaveWindow(object):
...
@@ -24,7 +26,7 @@ class Ui_SaveWindow(object):
self
.
__mountpoint
=
usersettings
.
get_named_setting
(
"
DataMountPoint
"
)
self
.
__mountpoint
=
usersettings
.
get_named_setting
(
"
DataMountPoint
"
)
except
KeyError
:
except
KeyError
:
print
"
DataMountPoint is missing from the config.xml file.
"
print
"
DataMountPoint is missing from the config.xml file.
"
rai
se
self
.
__has_mount_point
=
Fal
se
;
def
setupUi
(
self
,
SaveWindow
):
def
setupUi
(
self
,
SaveWindow
):
self
.
SavePath
=
""
self
.
SavePath
=
""
...
@@ -245,28 +247,31 @@ class Ui_SaveWindow(object):
...
@@ -245,28 +247,31 @@ class Ui_SaveWindow(object):
if
(
self
.
SavePath
!=
''
):
if
(
self
.
SavePath
!=
''
):
self
.
lineEdit
.
setText
(
self
.
SavePath
)
self
.
lineEdit
.
setText
(
self
.
SavePath
)
else
:
else
:
base_path
=
os
.
path
.
join
(
self
.
__mountpoint
,
'
NDX
'
+
self
.
__instrument
,
'
Instrument
'
,
'
logs
'
,
'
journal
'
)
if
self
.
__has_mount_point
:
print
base_path
try
:
main_journal_path
=
os
.
path
.
join
(
base_path
,
'
journal_main.xml
'
)
base_path
=
os
.
path
.
join
(
self
.
__mountpoint
,
'
NDX
'
+
self
.
__instrument
,
'
Instrument
'
,
'
logs
'
,
'
journal
'
)
tree1
=
xml
.
parse
(
main_journal_path
)
print
"
Loading journal from
"
,
base_path
root1
=
tree1
.
getroot
()
main_journal_path
=
os
.
path
.
join
(
base_path
,
'
journal_main.xml
'
)
currentJournal
=
root1
[
len
(
root1
)
-
1
].
attrib
.
get
(
'
name
'
)
tree1
=
xml
.
parse
(
main_journal_path
)
cycle_journal_path
=
os
.
path
.
join
(
base_path
,
currentJournal
)
root1
=
tree1
.
getroot
()
tree
=
xml
.
parse
(
cycle_journal_path
)
currentJournal
=
root1
[
len
(
root1
)
-
1
].
attrib
.
get
(
'
name
'
)
root
=
tree
.
getroot
()
cycle_journal_path
=
os
.
path
.
join
(
base_path
,
currentJournal
)
tree
=
xml
.
parse
(
cycle_journal_path
)
i
=
0
root
=
tree
.
getroot
()
try
:
i
=
0
while
root
[
i
][
4
].
text
!=
str
(
RB_Number
):
try
:
i
+=
1
while
root
[
i
][
4
].
text
!=
str
(
RB_Number
):
if
root
[
i
][
1
].
text
.
find
(
'
,
'
)
>
0
:
i
+=
1
user
=
root
[
i
][
1
].
text
[
0
:
root
[
i
][
1
].
text
.
find
(
'
,
'
)]
if
root
[
i
][
1
].
text
.
find
(
'
,
'
)
>
0
:
else
:
user
=
root
[
i
][
1
].
text
[
0
:
root
[
i
][
1
].
text
.
find
(
'
,
'
)]
user
=
root
[
i
][
1
].
text
[
0
:
root
[
i
][
1
].
text
.
find
(
'
'
)]
else
:
SavePath
=
os
.
path
.
join
(
'
U:
'
,
user
)
user
=
root
[
i
][
1
].
text
[
0
:
root
[
i
][
1
].
text
.
find
(
'
'
)]
self
.
lineEdit
.
setText
(
SavePath
)
SavePath
=
os
.
path
.
join
(
'
U:
'
,
user
)
except
LookupError
:
self
.
lineEdit
.
setText
(
SavePath
)
print
"
Not found!
"
except
LookupError
:
print
"
Couldn
'
t find user name in archives!
"
except
:
print
"
Journal does not exist or is unreachable, please check your network connection.
"
#--------- If "Save" button pressed, selcted workspaces are saved -------------
#--------- If "Save" button pressed, selcted workspaces are saved -------------
def
buttonClickHandler1
(
self
):
def
buttonClickHandler1
(
self
):
...
...
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