Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
17
Merge Requests
17
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos.core
Commits
1de8ff9c
Commit
1de8ff9c
authored
Nov 23, 2017
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_erp5: Remove unsupported properties on system preference.
parent
1955ab6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
15 deletions
+4
-15
master/bt5/slapos_erp5/SkinTemplateItem/portal_skins/slapos_erp5/PreferenceTool_checkSystemPreferenceConsistency.py
...s_erp5/PreferenceTool_checkSystemPreferenceConsistency.py
+4
-15
No files found.
master/bt5/slapos_erp5/SkinTemplateItem/portal_skins/slapos_erp5/PreferenceTool_checkSystemPreferenceConsistency.py
View file @
1de8ff9c
"""
"""
Verify the consistency of the System Preference for the SlapOS Master to
Verify the consistency of the System Preference for the SlapOS Master to
ensure the site configuration is set.
ensure the site configuration is set.
"""
"""
if
context
.
getPortalType
()
not
in
[
"System Preference"
]:
if
context
.
getPortalType
()
not
in
[
"System Preference"
]:
return
[]
return
[]
if
context
.
getPreferenceState
()
!=
"global"
:
if
context
.
getPreferenceState
()
!=
"global"
:
return
[]
return
[]
portal
=
context
.
getPortalObject
()
error_list
=
[]
error_list
=
[]
preference_method_list
=
[
preference_method_list
=
[
"getPreferredHateoasUrl"
,
"getPreferredHateoasUrl"
,
"getPreferredVifibFacebookApplicationId"
,
"getPreferredPayzenPaymentServiceReference"
,
"getPreferredVifibFacebookApplicationSecret"
,
"getPreferredPayzenIntegrationSite"
"getPreferredVifibGoogleApplicationId"
,
"getPreferredVifibGoogleApplicationSecret"
,
"getPreferredVifibRestApiLoginCheck"
,
"getPreferredPayzenPaymentServiceReference"
,
"getPreferredPayzenIntegrationSite"
]
]
for
method_id
in
preference_method_list
:
for
method_id
in
preference_method_list
:
result
=
getattr
(
context
.
portal_preferences
,
method_id
)()
result
=
getattr
(
context
.
portal_preferences
,
method_id
)()
...
...
Write
Preview
Markdown
is supported
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