Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
officejs-appstore
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
officejs-appstore
Commits
6f61db52
Commit
6f61db52
authored
Dec 14, 2021
by
Roque
Browse files
Options
Browse Files
Download
Plain Diff
[Appstore] New upgrader constraint for SW apps migration
See merge request
!21
parents
6d88975c
a8fac5a5
Pipeline
#19482
failed with stage
in 0 seconds
Changes
8
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
315 additions
and
12 deletions
+315
-12
bt5/officejs_test/TestTemplateItem/portal_components/test.erp5.testOfficeJSScenario.py
...eItem/portal_components/test.erp5.testOfficeJSScenario.py
+6
-6
bt5/officejs_test/TestTemplateItem/portal_components/test.erp5.testOfficeJSScenarioRjsUI.py
.../portal_components/test.erp5.testOfficeJSScenarioRjsUI.py
+6
-6
bt5/officejs_upgrader/PropertySheetTemplateItem/portal_property_sheets/WebSectionAppstoreConstraint/ContentSecurityPolicy%20Consistency_constraint.xml
...traint/ContentSecurityPolicy%20Consistency_constraint.xml
+80
-0
bt5/officejs_upgrader/PropertySheetTemplateItem/portal_property_sheets/WebSectionAppstoreConstraint/PrecacheManifestScript%20Consistency_constraint.xml
...raint/PrecacheManifestScript%20Consistency_constraint.xml
+80
-0
bt5/officejs_upgrader/SkinTemplateItem/portal_skins/officejs_upgrader/WebSection_checkAppstoreApplicationContentSecurityPolicy.py
...bSection_checkAppstoreApplicationContentSecurityPolicy.py
+11
-0
bt5/officejs_upgrader/SkinTemplateItem/portal_skins/officejs_upgrader/WebSection_checkAppstoreApplicationContentSecurityPolicy.xml
...Section_checkAppstoreApplicationContentSecurityPolicy.xml
+62
-0
bt5/officejs_upgrader/SkinTemplateItem/portal_skins/officejs_upgrader/WebSection_checkAppstoreApplicationPrecacheManifestScript.py
...Section_checkAppstoreApplicationPrecacheManifestScript.py
+8
-0
bt5/officejs_upgrader/SkinTemplateItem/portal_skins/officejs_upgrader/WebSection_checkAppstoreApplicationPrecacheManifestScript.xml
...ection_checkAppstoreApplicationPrecacheManifestScript.xml
+62
-0
No files found.
bt5/officejs_test/TestTemplateItem/portal_components/test.erp5.testOfficeJSScenario.py
View file @
6f61db52
...
@@ -126,7 +126,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -126,7 +126,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
page_content
=
response
.
read
()
page_content
=
response
.
read
()
self
.
assertTrue
(
self
.
assertTrue
(
'
document.location.replace("development/" + document.location.hash)
'
in
page_content
,
'
<script data-appconfig="latest_version" type="text/x-renderjs-configuration">development</script>
'
in
page_content
,
page_content
page_content
)
)
self
.
assertTrue
(
self
.
assertTrue
(
...
@@ -144,7 +144,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -144,7 +144,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'Content-Security-Policy'
),
response
.
getheader
(
'Content-Security-Policy'
),
"default-src 'self';
script-src 'unsafe-inline';
"
"default-src 'self';"
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'X-Frame-Options'
),
response
.
getheader
(
'X-Frame-Options'
),
...
@@ -248,7 +248,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -248,7 +248,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
page_content
=
response
.
read
()
page_content
=
response
.
read
()
self
.
assertTrue
(
self
.
assertTrue
(
'
document.location.replace("development/" + document.location.hash)
'
in
page_content
,
'
<script data-appconfig="latest_version" type="text/x-renderjs-configuration">development</script>
'
in
page_content
,
page_content
page_content
)
)
self
.
assertTrue
(
self
.
assertTrue
(
...
@@ -266,7 +266,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -266,7 +266,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'Content-Security-Policy'
),
response
.
getheader
(
'Content-Security-Policy'
),
"default-src 'self';
script-src 'unsafe-inline';
"
"default-src 'self';"
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'X-Frame-Options'
),
response
.
getheader
(
'X-Frame-Options'
),
...
@@ -296,7 +296,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -296,7 +296,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
page_content
=
response
.
read
()
page_content
=
response
.
read
()
self
.
assertTrue
(
self
.
assertTrue
(
'
document.location.replace("%s/" + document.location.hash)
'
%
web_section
.
getId
()
in
page_content
,
'
<script data-appconfig="latest_version" type="text/x-renderjs-configuration">%s</script>
'
%
web_section
.
getId
()
in
page_content
,
page_content
page_content
)
)
self
.
assertTrue
(
self
.
assertTrue
(
...
@@ -314,7 +314,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -314,7 +314,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'Content-Security-Policy'
),
response
.
getheader
(
'Content-Security-Policy'
),
"default-src 'self';
script-src 'unsafe-inline';
"
"default-src 'self';"
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'X-Frame-Options'
),
response
.
getheader
(
'X-Frame-Options'
),
...
...
bt5/officejs_test/TestTemplateItem/portal_components/test.erp5.testOfficeJSScenarioRjsUI.py
View file @
6f61db52
...
@@ -120,7 +120,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -120,7 +120,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
page_content
=
response
.
read
()
page_content
=
response
.
read
()
self
.
assertTrue
(
self
.
assertTrue
(
'
document.location.replace("development/" + document.location.hash)
'
in
page_content
,
'
<script data-appconfig="latest_version" type="text/x-renderjs-configuration">development</script>
'
in
page_content
,
page_content
page_content
)
)
self
.
assertTrue
(
self
.
assertTrue
(
...
@@ -138,7 +138,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -138,7 +138,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'Content-Security-Policy'
),
response
.
getheader
(
'Content-Security-Policy'
),
"default-src 'self';
script-src 'unsafe-inline';
"
"default-src 'self';"
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'X-Frame-Options'
),
response
.
getheader
(
'X-Frame-Options'
),
...
@@ -242,7 +242,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -242,7 +242,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
page_content
=
response
.
read
()
page_content
=
response
.
read
()
self
.
assertTrue
(
self
.
assertTrue
(
'
document.location.replace("development/" + document.location.hash)
'
in
page_content
,
'
<script data-appconfig="latest_version" type="text/x-renderjs-configuration">development</script>
'
in
page_content
,
page_content
page_content
)
)
self
.
assertTrue
(
self
.
assertTrue
(
...
@@ -260,7 +260,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -260,7 +260,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'Content-Security-Policy'
),
response
.
getheader
(
'Content-Security-Policy'
),
"default-src 'self';
script-src 'unsafe-inline';
"
"default-src 'self';"
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'X-Frame-Options'
),
response
.
getheader
(
'X-Frame-Options'
),
...
@@ -290,7 +290,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -290,7 +290,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
page_content
=
response
.
read
()
page_content
=
response
.
read
()
self
.
assertTrue
(
self
.
assertTrue
(
'
document.location.replace("%s/" + document.location.hash)
'
%
web_section
.
getId
()
in
page_content
,
'
<script data-appconfig="latest_version" type="text/x-renderjs-configuration">%s</script>
'
%
web_section
.
getId
()
in
page_content
,
page_content
page_content
)
)
self
.
assertTrue
(
self
.
assertTrue
(
...
@@ -308,7 +308,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
...
@@ -308,7 +308,7 @@ class TestOfficeJSScenario(testOfficeJSAppstoreMixin):
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'Content-Security-Policy'
),
response
.
getheader
(
'Content-Security-Policy'
),
"default-src 'self';
script-src 'unsafe-inline';
"
"default-src 'self';"
)
)
self
.
assertEquals
(
self
.
assertEquals
(
response
.
getheader
(
'X-Frame-Options'
),
response
.
getheader
(
'X-Frame-Options'
),
...
...
bt5/officejs_upgrader/PropertySheetTemplateItem/portal_property_sheets/WebSectionAppstoreConstraint/ContentSecurityPolicy%20Consistency_constraint.xml
0 → 100644
View file @
6f61db52
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"Script Constraint"
module=
"erp5.portal_type"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
_identity_criterion
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAAI=
</string>
</persistent>
</value>
</item>
<item>
<key>
<string>
_range_criterion
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAAM=
</string>
</persistent>
</value>
</item>
<item>
<key>
<string>
categories
</string>
</key>
<value>
<tuple>
<string>
constraint_type/post_upgrade
</string>
</tuple>
</value>
</item>
<item>
<key>
<string>
description
</string>
</key>
<value>
<none/>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
ContentSecurityPolicy Consistency_constraint
</string>
</value>
</item>
<item>
<key>
<string>
portal_type
</string>
</key>
<value>
<string>
Script Constraint
</string>
</value>
</item>
<item>
<key>
<string>
script_id
</string>
</key>
<value>
<string>
WebSection_checkAppstoreApplicationContentSecurityPolicy
</string>
</value>
</item>
</dictionary>
</pickle>
</record>
<record
id=
"2"
aka=
"AAAAAAAAAAI="
>
<pickle>
<global
name=
"PersistentMapping"
module=
"Persistence.mapping"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
data
</string>
</key>
<value>
<dictionary/>
</value>
</item>
</dictionary>
</pickle>
</record>
<record
id=
"3"
aka=
"AAAAAAAAAAM="
>
<pickle>
<global
name=
"PersistentMapping"
module=
"Persistence.mapping"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
data
</string>
</key>
<value>
<dictionary/>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
bt5/officejs_upgrader/PropertySheetTemplateItem/portal_property_sheets/WebSectionAppstoreConstraint/PrecacheManifestScript%20Consistency_constraint.xml
0 → 100644
View file @
6f61db52
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"Script Constraint"
module=
"erp5.portal_type"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
_identity_criterion
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAAI=
</string>
</persistent>
</value>
</item>
<item>
<key>
<string>
_range_criterion
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAAM=
</string>
</persistent>
</value>
</item>
<item>
<key>
<string>
categories
</string>
</key>
<value>
<tuple>
<string>
constraint_type/post_upgrade
</string>
</tuple>
</value>
</item>
<item>
<key>
<string>
description
</string>
</key>
<value>
<none/>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
PrecacheManifestScript Consistency_constraint
</string>
</value>
</item>
<item>
<key>
<string>
portal_type
</string>
</key>
<value>
<string>
Script Constraint
</string>
</value>
</item>
<item>
<key>
<string>
script_id
</string>
</key>
<value>
<string>
WebSection_checkAppstoreApplicationPrecacheManifestScript
</string>
</value>
</item>
</dictionary>
</pickle>
</record>
<record
id=
"2"
aka=
"AAAAAAAAAAI="
>
<pickle>
<global
name=
"PersistentMapping"
module=
"Persistence.mapping"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
data
</string>
</key>
<value>
<dictionary/>
</value>
</item>
</dictionary>
</pickle>
</record>
<record
id=
"3"
aka=
"AAAAAAAAAAM="
>
<pickle>
<global
name=
"PersistentMapping"
module=
"Persistence.mapping"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
data
</string>
</key>
<value>
<dictionary/>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
bt5/officejs_upgrader/SkinTemplateItem/portal_skins/officejs_upgrader/WebSection_checkAppstoreApplicationContentSecurityPolicy.py
0 → 100644
View file @
6f61db52
web_section
=
context
error_list
=
[]
if
(
web_section
.
getParentId
()
==
'application-list'
):
csp
=
web_section
.
getLayoutProperty
(
"configuration_content_security_policy"
,
default
=
''
)
if
(
web_section
.
getAggregate
()
==
'web_page_module/gadget_ojs_appstore_redirect_page_html'
)
\
and
(
"script-src 'unsafe-inline';"
in
csp
):
new_csp
=
csp
.
replace
(
"script-src 'unsafe-inline';"
,
""
)
web_section
.
edit
(
configuration_content_security_policy
=
new_csp
)
return
error_list
bt5/officejs_upgrader/SkinTemplateItem/portal_skins/officejs_upgrader/WebSection_checkAppstoreApplicationContentSecurityPolicy.xml
0 → 100644
View file @
6f61db52
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"PythonScript"
module=
"Products.PythonScripts.PythonScript"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
Script_magic
</string>
</key>
<value>
<int>
3
</int>
</value>
</item>
<item>
<key>
<string>
_bind_names
</string>
</key>
<value>
<object>
<klass>
<global
name=
"NameAssignments"
module=
"Shared.DC.Scripts.Bindings"
/>
</klass>
<tuple/>
<state>
<dictionary>
<item>
<key>
<string>
_asgns
</string>
</key>
<value>
<dictionary>
<item>
<key>
<string>
name_container
</string>
</key>
<value>
<string>
container
</string>
</value>
</item>
<item>
<key>
<string>
name_context
</string>
</key>
<value>
<string>
context
</string>
</value>
</item>
<item>
<key>
<string>
name_m_self
</string>
</key>
<value>
<string>
script
</string>
</value>
</item>
<item>
<key>
<string>
name_subpath
</string>
</key>
<value>
<string>
traverse_subpath
</string>
</value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key>
<string>
_params
</string>
</key>
<value>
<string>
fixit=False
</string>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
WebSection_checkAppstoreApplicationContentSecurityPolicy
</string>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
bt5/officejs_upgrader/SkinTemplateItem/portal_skins/officejs_upgrader/WebSection_checkAppstoreApplicationPrecacheManifestScript.py
0 → 100644
View file @
6f61db52
web_section
=
context
error_list
=
[]
if
(
web_section
.
getParentId
()
==
'application-list'
):
if
(
web_section
.
getLayoutProperty
(
"configuration_precache_manifest_script"
,
default
=
''
)
==
''
):
web_section
.
edit
(
configuration_precache_manifest_script
=
'WebSection_getAppstorePrecacheManifest'
)
return
error_list
bt5/officejs_upgrader/SkinTemplateItem/portal_skins/officejs_upgrader/WebSection_checkAppstoreApplicationPrecacheManifestScript.xml
0 → 100644
View file @
6f61db52
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"PythonScript"
module=
"Products.PythonScripts.PythonScript"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
Script_magic
</string>
</key>
<value>
<int>
3
</int>
</value>
</item>
<item>
<key>
<string>
_bind_names
</string>
</key>
<value>
<object>
<klass>
<global
name=
"NameAssignments"
module=
"Shared.DC.Scripts.Bindings"
/>
</klass>
<tuple/>
<state>
<dictionary>
<item>
<key>
<string>
_asgns
</string>
</key>
<value>
<dictionary>
<item>
<key>
<string>
name_container
</string>
</key>
<value>
<string>
container
</string>
</value>
</item>
<item>
<key>
<string>
name_context
</string>
</key>
<value>
<string>
context
</string>
</value>
</item>
<item>
<key>
<string>
name_m_self
</string>
</key>
<value>
<string>
script
</string>
</value>
</item>
<item>
<key>
<string>
name_subpath
</string>
</key>
<value>
<string>
traverse_subpath
</string>
</value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key>
<string>
_params
</string>
</key>
<value>
<string>
fixit=False
</string>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
WebSection_checkAppstoreApplicationPrecacheManifestScript
</string>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
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