Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
RDM Infrastructure
irods-clients
Commits
72c8903d
Commit
72c8903d
authored
Nov 08, 2021
by
Daalen, Tim van
Browse files
merge fix after saving
parent
ef500704
Changes
4
Hide whitespace changes
Inline
Side-by-side
gui/irodsBrowser.py
View file @
72c8903d
...
...
@@ -283,16 +283,9 @@ class irodsBrowser(QWidget, Ui_tabBrowser):
def
fillInfo
(
self
,
index
):
self
.
__clearErrorLabel
()
self
.
__clearViewTabs
()
<<<<<<<
HEAD
self
.
metadataTable
.
setRowCount
(
0
);
self
.
aclTable
.
setRowCount
(
0
);
self
.
resourceTable
.
setRowCount
(
0
);
=======
self
.
widget
.
metadataTable
.
setRowCount
(
0
)
self
.
widget
.
aclTable
.
setRowCount
(
0
)
self
.
widget
.
resourceTable
.
setRowCount
(
0
)
>>>>>>>
master
self
.
metadataTable
.
setRowCount
(
0
)
self
.
aclTable
.
setRowCount
(
0
)
self
.
resourceTable
.
setRowCount
(
0
)
col
=
index
.
column
()
row
=
index
.
row
()
...
...
@@ -419,13 +412,8 @@ class irodsBrowser(QWidget, Ui_tabBrowser):
self
.
errorLabel
.
setText
(
"IRODS NETWORK ERROR: No Connection, please check network"
)
except
Exception
as
error
:
<<<<<<<
HEAD
print
(
"ERROR upload :"
,
fileSelect
[
0
],
"failed;
\n\t
"
,
repr
(
error
))
self
.
errorLabel
.
setText
(
repr
(
error
))
=======
print
(
"ERROR download :"
,
parent
+
'/'
+
objName
,
"failed;
\n\t
"
,
repr
(
error
))
self
.
widget
.
errorLabel
.
setText
(
repr
(
error
))
>>>>>>>
master
self
.
errorLabel
.
setText
(
repr
(
error
))
#@QtCore.pyqtSlot(QtCore.QModelIndex)
...
...
gui/irodsDataCompression.py
View file @
72c8903d
...
...
@@ -145,12 +145,7 @@ class irodsDataCompression(QWidget, Ui_tabDataCompression):
stdout
,
stderr
=
message
if
success
and
operation
==
"create"
:
idx
,
source
=
self
.
collectionTreeModel
.
get_checked
()
<<<<<<<
HEAD
stdout
,
stderr
=
message
self
.
createStatusLabel
.
setText
(
"STATUS: Created "
+
str
(
stdout
))
=======
self
.
widget
.
createStatusLabel
.
setText
(
"STATUS: Created "
+
str
(
stdout
))
>>>>>>>
master
parentIdx
=
self
.
collectionTreeModel
.
getParentIdx
(
idx
)
self
.
collectionTreeModel
.
refreshSubTree
(
parentIdx
)
elif
not
success
and
operation
==
"create"
:
...
...
gui/irodsSearch.py
View file @
72c8903d
...
...
@@ -4,11 +4,9 @@ from PyQt5.uic import loadUi
import
os
from
utils.utils
import
getDownloadDir
<<<<<<<
HEAD
from
gui.ui_files.searchDialog
import
Ui_searchDialog
=======
import
logging
>>>>>>>
master
class
irodsSearch
(
QDialog
,
Ui_searchDialog
):
def
__init__
(
self
,
ic
,
collTable
):
...
...
gui/irodsTicketLogin.py
View file @
72c8903d
...
...
@@ -43,17 +43,10 @@ class irodsTicketLogin(QWidget, Ui_tabTicketAccess):
def
irodsSession
(
self
):
<<<<<<<
HEAD
self
.
infoLabel
.
clear
()
host
=
self
.
serverEdit
.
text
()
path
=
self
.
pathEdit
.
text
()
token
=
self
.
ticketEdit
.
text
()
=======
self
.
widget
.
infoLabel
.
clear
()
host
=
self
.
widget
.
serverEdit
.
text
().
strip
()
path
=
self
.
widget
.
pathEdit
.
text
().
strip
()
token
=
self
.
widget
.
ticketEdit
.
text
().
strip
()
>>>>>>>
master
try
:
self
.
ic
=
irodsConnectorAnonymous
(
host
,
token
,
path
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment