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
Labels
Merge Requests
138
Merge Requests
138
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
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
9ae4add3
Commit
9ae4add3
authored
Aug 23, 2016
by
Boris Kocherov
Committed by
Boris Kocherov
Nov 21, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_officejs: dirty hack for speedup loading.
parent
a9cd4ee3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
5 deletions
+18
-5
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_serviceworker_js.js
...eItem/web_page_module/gadget_officejs_serviceworker_js.js
+16
-3
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_serviceworker_js.xml
...Item/web_page_module/gadget_officejs_serviceworker_js.xml
+2
-2
No files found.
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_serviceworker_js.js
View file @
9ae4add3
...
...
@@ -243,6 +243,7 @@ var global = self,
},
get_from_storage
=
function
(
url
,
storage
)
{
var
url_string
=
get_specific_url
(
url
),
erp5_id
,
url_object
=
new
URI
(
url
),
reference
=
url_object
.
filename
();
if
(
!
storage
)
{
...
...
@@ -251,9 +252,21 @@ var global = self,
return
new
Promise
(
function
(
resolve
,
reject
)
{
var
find_queue
;
if
(
url_string
!==
undefined
)
{
find_queue
=
find_and_get
({
query
:
query_portal_types
+
'
AND (url_string: ="
'
+
url_string
+
'
")
'
},
storage
);
erp5_id
=
'
web_page_module/
'
+
url_string
.
replace
(
/
\/
/g
,
'
_
'
).
replace
(
/
\.
/g
,
'
_
'
);
find_queue
=
storage
.
get
(
erp5_id
)
.
push
(
function
(
doc
)
{
doc
.
id
=
erp5_id
;
return
doc
;
})
.
push
(
undefined
,
function
(
error
)
{
if
(
error
.
status_code
===
404
)
{
return
find_and_get
({
query
:
query_portal_types
+
'
AND (url_string: ="
'
+
url_string
+
'
")
'
},
storage
);
}
else
{
throw
error
;
}
});
if
(
!
self
.
jio_cache
.
development_mode
)
{
find_queue
=
find_queue
.
push
(
undefined
,
function
(
error
)
{
...
...
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_serviceworker_js.xml
View file @
9ae4add3
...
...
@@ -249,7 +249,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
953.27
011.49620.36881
</string>
</value>
<value>
<string>
953.27
946.16374.60296
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -267,7 +267,7 @@
</tuple>
<state>
<tuple>
<float>
1471
898009.02
</float>
<float>
1471
953747.55
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
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