Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
e426ccab
Commit
e426ccab
authored
10 years ago
by
juanf
Browse files
Options
Downloads
Patches
Plain Diff
SSDM-1564: PAPER - OPENBIS - Migration Support (Fixes + Experimental Stuff)
SVN: 33541
parent
a85649c5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
plasmid/source/core-plugins/newbrowser/1/compatibility/managed.py
+54
-22
54 additions, 22 deletions
...source/core-plugins/newbrowser/1/compatibility/managed.py
with
54 additions
and
22 deletions
plasmid/source/core-plugins/newbrowser/1/compatibility/managed.py
+
54
−
22
View file @
e426ccab
...
...
@@ -144,6 +144,27 @@ def getWidgetForAdd(sampleTypeCode, annotableType):
def
isValid
(
dataType
,
value
):
return
True
##
## Registration form (EXPERIMENTAL)
##
# def showRawValueInForms():
# return False
#
# def inputWidgets():
# widgetsToCopyFrom = []
# toCopyFrom = configurationCopyParents[annotableType]
# if(toCopyFrom is not None):
# for key in toCopyFrom:
# widgetsToCopyFrom.append(inputWidgetFactory().createTextInputField(key + " to copy " + toCopyFrom[key]).setMandatory(False))
# print "EXECUTING inputWidgets " + str(len(widgetsToCopyFrom))
# return widgetsToCopyFrom
#
# def updateFromRegistrationForm(bindings):
# print "EXECUTING updateFromRegistrationForm"
# for key, value in bindings:
# print "MANAGED WITH KEY: " + key
##
## Main Methods
##
...
...
@@ -178,6 +199,15 @@ def configureUI():
widgets
=
getWidgetForAdd
(
sampleTypeCode
,
annotableType
)
addAction
.
addInputWidgets
(
widgets
)
# Add Edit Button (EXPERIMENTAL)
# editAction = uiDescription.addTableAction('Edit').setDescription('Edit selected table row')
# editAction.setRowSelectionRequiredSingle()
# editWidgets = []
# for headerKey in usedTableHeaders:
# editWidgets.append(inputWidgetFactory().createTextInputField(headerKey))
# editAction.addBinding(headerKey, headerKey)
# editAction.addInputWidgets(editWidgets)
# Add Delete button
deleteAction
=
uiDescription
.
addTableAction
(
"
Delete
"
)
\
.
setDescription
(
'
Are you sure you want to delete selected annotation?
'
)
...
...
@@ -242,37 +272,39 @@ def updateFromBatchInput(bindings):
sampleLink
=
None
for
sampleProperty
in
sampleLine
.
split
(
"
;
"
):
propertyName
=
sampleProperty
.
split
(
"
:
"
)[
0
]
propertyValue
=
sampleProperty
.
split
(
"
:
"
)[
1
]
if
propertyName
==
"
identifier
"
:
propertyValue
=
sampleProperty
.
split
(
"
:
"
)[
1
]
identifier
=
propertyValue
permId
=
entityInformationProvider
().
getSamplePermId
(
propertyValue
)
sampleLink
=
elementFactory
().
createSampleLink
(
permId
)
sampleLink
.
addAttribute
(
propertyName
,
propertyValue
)
sampleLink
.
addAttribute
(
'
sampleType
'
,
annotableSampleType
)
elif
propertyName
in
propertyTypes
:
sampleLink
.
addAttribute
(
propertyName
,
propertyValue
)
else
:
raise
NameError
(
'
Found invalid property:
'
+
propertyName
+
"
on type
"
+
annotableSampleType
)
if
identifier
is
not
None
:
elements
.
append
(
sampleLink
)
#Links
#print "-----> links"
for
typeToCopyFrom
in
typesToCopyFrom
:
typeToCopy
=
typesToCopyFrom
[
typeToCopyFrom
]
#print "-----> TYPE TO COPY FROM: " + str(typeToCopyFrom)
#print "-----> TYPE TO COPY: " + str(typeToCopy)
identifiersToCopyFrom
=
bindings
.
get
(
typeToCopyFrom
)
if
identifiersToCopyFrom
is
not
None
:
#print "-----> IDENTIFIERS TO COPY FROM: " + str(identifiersToCopyFrom)
identifiersForCopy
=
identifiersToCopyFrom
.
split
(
'
,
'
)
for
identifierToCopyFrom
in
identifiersForCopy
:
#print "-----> IDENTIFIER TO COPY FROM: " + str(identifierToCopyFrom)
permIdFromIdentifier
=
entityInformationProvider
().
getSamplePermId
(
identifierToCopyFrom
)
#print "-----> PERMID TO COPY FROM: " + str(permIdFromIdentifier)
parentsToCopyFromPermId
=
entityInformationProvider
().
getSamplePropertyValue
(
permIdFromIdentifier
,
"
ANNOTATIONS_STATE
"
)
#print "-----> ELEMENTS TO COPY: " + str(parentsToCopyFromPermId)
parentElements
=
list
(
propertyConverter
().
convertStringToElements
(
parentsToCopyFromPermId
))
for
parentAnnotation
in
parentElements
:
if
parentAnnotation
.
getAttribute
(
"
sampleType
"
)
==
typeToCopy
:
parentAnnotation
.
addAttribute
(
"
CONTAINED
"
,
identifierToCopyFrom
)
elements
.
append
(
parentAnnotation
)
#Links
#print "-----> links"
for
typeToCopyFrom
in
typesToCopyFrom
:
typeToCopy
=
typesToCopyFrom
[
typeToCopyFrom
]
#print "-----> TYPE TO COPY FROM: " + str(typeToCopyFrom)
#print "-----> TYPE TO COPY: " + str(typeToCopy)
identifiersToCopyFrom
=
bindings
.
get
(
typeToCopyFrom
)
if
identifiersToCopyFrom
is
not
None
:
#print "-----> IDENTIFIERS TO COPY FROM: " + str(identifiersToCopyFrom)
identifiersForCopy
=
identifiersToCopyFrom
.
split
(
'
,
'
)
for
identifierToCopyFrom
in
identifiersForCopy
:
#print "-----> IDENTIFIER TO COPY FROM: " + str(identifierToCopyFrom)
permIdFromIdentifier
=
entityInformationProvider
().
getSamplePermId
(
identifierToCopyFrom
)
#print "-----> PERMID TO COPY FROM: " + str(permIdFromIdentifier)
parentsToCopyFromPermId
=
entityInformationProvider
().
getSamplePropertyValue
(
permIdFromIdentifier
,
"
ANNOTATIONS_STATE
"
)
#print "-----> ELEMENTS TO COPY: " + str(parentsToCopyFromPermId)
parentElements
=
list
(
propertyConverter
().
convertStringToElements
(
parentsToCopyFromPermId
))
for
parentAnnotation
in
parentElements
:
if
parentAnnotation
.
getAttribute
(
"
sampleType
"
)
==
typeToCopy
:
parentAnnotation
.
addAttribute
(
"
CONTAINED
"
,
identifierToCopyFrom
)
#print "-----> COPYING: " + str(parentAnnotation.getAttribute('identifier'))
elements
.
append
(
parentAnnotation
)
property
.
value
=
propertyConverter
().
convertToString
(
elements
)
\ No newline at end of file
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