Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
erp5
Commits
59d2a5e8
Commit
59d2a5e8
authored
Jul 08, 2020
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_web_renderjs_ui: Use RJS Skin to check consistency
parent
10b4759a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
36 deletions
+41
-36
bt5/erp5_web_renderjs_ui/SkinTemplateItem/portal_skins/erp5_web_renderjs/WebSite_checkTranslationConsistency.py
.../erp5_web_renderjs/WebSite_checkTranslationConsistency.py
+41
-36
No files found.
bt5/erp5_web_renderjs_ui/SkinTemplateItem/portal_skins/erp5_web_renderjs/WebSite_checkTranslationConsistency.py
View file @
59d2a5e8
...
@@ -12,39 +12,44 @@ if not context.getAvailableLanguageList():
...
@@ -12,39 +12,44 @@ if not context.getAvailableLanguageList():
if
context
.
getSkinSelectionName
()
!=
'RJS'
:
if
context
.
getSkinSelectionName
()
!=
'RJS'
:
return
[]
return
[]
# find the .js containing translation data
try
:
gadget_translation_data_js
=
context
.
WebSite_getTranslationDataWebScriptValue
()
context
.
getPortalObject
().
changeSkin
(
"RJS"
)
if
gadget_translation_data_js
is
None
:
return
[]
# find the .js containing translation data
gadget_translation_data_js
=
context
.
WebSite_getTranslationDataWebScriptValue
()
error_list
=
[]
if
gadget_translation_data_js
is
None
:
if
context
.
WebSite_getTranslationDataTextContent
(
return
[]
)
!=
gadget_translation_data_js
.
getTextContent
():
error_list
.
append
(
"Translation data script content is not up to date"
)
error_list
=
[]
if
context
.
WebSite_getTranslationDataTextContent
(
if
fixit
:
)
!=
gadget_translation_data_js
.
getTextContent
():
# try to detect the case of two incompatible web sites configured for the same translation gadget.
error_list
.
append
(
"Translation data script content is not up to date"
)
# Use a mapping of set of web site ids keyed by translation data script reference and check
# if we update the same translation data script more than once in the same REQUEST.
if
fixit
:
# Using REQUEST is not really good, since upgrader uses grouped activities and we can just check
# try to detect the case of two incompatible web sites configured for the same translation gadget.
# web sites processed in the same activity group, but that's easy and hopefully better than nothing.
# Use a mapping of set of web site ids keyed by translation data script reference and check
already_updated_websites
=
container
.
REQUEST
.
get
(
# if we update the same translation data script more than once in the same REQUEST.
script
.
getId
(),
defaultdict
(
set
))
# Using REQUEST is not really good, since upgrader uses grouped activities and we can just check
container
.
REQUEST
.
set
(
script
.
getId
(),
already_updated_websites
)
# web sites processed in the same activity group, but that's easy and hopefully better than nothing.
gadget_translation_data_js_reference
=
gadget_translation_data_js
.
getReference
()
already_updated_websites
=
container
.
REQUEST
.
get
(
already_updated_websites
[
gadget_translation_data_js_reference
].
add
(
context
.
getId
())
script
.
getId
(),
defaultdict
(
set
))
if
len
(
already_updated_websites
[
gadget_translation_data_js_reference
])
>
1
:
container
.
REQUEST
.
set
(
script
.
getId
(),
already_updated_websites
)
raise
RuntimeError
(
gadget_translation_data_js_reference
=
gadget_translation_data_js
.
getReference
()
"Translation script %s is used by more than one web site with different configurations (%s)"
already_updated_websites
[
gadget_translation_data_js_reference
].
add
(
context
.
getId
())
%
(
if
len
(
already_updated_websites
[
gadget_translation_data_js_reference
])
>
1
:
gadget_translation_data_js_reference
,
raise
RuntimeError
(
", "
.
join
(
already_updated_websites
[
gadget_translation_data_js_reference
]),
"Translation script %s is used by more than one web site with different configurations (%s)"
))
%
(
gadget_translation_data_js_reference
,
context
.
WebSite_updateTranslationData
()
", "
.
join
(
already_updated_websites
[
gadget_translation_data_js_reference
]),
# since we might have modified some cached files, check again the modification date
))
# consistency.
error_list
.
extend
(
context
.
WebSite_updateTranslationData
()
context
.
WebSite_checkCacheModificationDateConsistency
(
fixit
=
True
))
# since we might have modified some cached files, check again the modification date
# consistency.
return
error_list
error_list
.
extend
(
context
.
WebSite_checkCacheModificationDateConsistency
(
fixit
=
True
))
return
error_list
finally
:
context
.
getPortalObject
().
changeSkin
(
"View"
)
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