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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
erp5
Commits
06154c63
Commit
06154c63
authored
Aug 23, 2016
by
Boris Kocherov
5
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_officejs: dirty hack for speedup loading.
parent
dbde6b91
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 @
06154c63
...
...
@@ -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 @
06154c63
...
...
@@ -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>
...
...
Boris Kocherov
@bk
mentioned in commit
6d40cd08
·
Sep 01, 2016
mentioned in commit
6d40cd08
mentioned in commit 6d40cd08eb393374582b2d7e7ded258bccdadb6e
Toggle commit list
Boris Kocherov
@bk
mentioned in commit
b5ca46fa
·
Nov 20, 2016
mentioned in commit
b5ca46fa
mentioned in commit b5ca46fa18aa0a52dd7c51b19dfdfe7d67ebf63b
Toggle commit list
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