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
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Romain Courteaud
erp5
Commits
68a585a4
Commit
68a585a4
authored
Jun 28, 2016
by
Romain Courteaud
🐙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[erp5_web_renderjs_ui] Increase URL timeout error verbosity
parent
fbb50a50
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
8 deletions
+12
-8
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_router_js.js
...TemplateItem/web_page_module/rjs_gadget_erp5_router_js.js
+6
-4
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_router_js.xml
...emplateItem/web_page_module/rjs_gadget_erp5_router_js.xml
+6
-4
No files found.
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_router_js.js
View file @
68a585a4
...
...
@@ -55,7 +55,7 @@
return
window
.
location
.
replace
(
hash
);
}
function
timeoutUrlChange
()
{
function
timeoutUrlChange
(
from_hash
,
to_hash
)
{
// prevent returning unexpected response
// wait for the hash change to occur
// fail if nothing happens
...
...
@@ -64,13 +64,14 @@
return
RSVP
.
timeout
(
REDIRECT_TIMEOUT
);
})
.
push
(
undefined
,
function
()
{
throw
new
Error
(
'
URL handling timeout
:
'
+
window
.
location
.
hash
);
throw
new
Error
(
'
URL handling timeout
. From: "
'
+
from_hash
+
'
" to: "
'
+
to_hash
+
'
" and current: "
'
+
window
.
location
.
hash
+
'
"
'
);
});
}
function
synchronousChangeState
(
hash
)
{
var
from_hash
=
window
.
location
.
hash
;
changeState
(
hash
);
return
timeoutUrlChange
();
return
timeoutUrlChange
(
from_hash
,
hash
);
}
//////////////////////////////////////////////////////////////////
...
...
@@ -835,8 +836,9 @@
delete
options
.
form_content
;
return
this
.
getCommandUrlFor
(
options
)
.
push
(
function
(
hash
)
{
var
from_hash
=
window
.
location
.
hash
;
window
.
location
.
replace
(
hash
);
return
timeoutUrlChange
();
return
timeoutUrlChange
(
from_hash
,
hash
);
});
})
...
...
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_router_js.xml
View file @
68a585a4
...
...
@@ -66,7 +66,9 @@
<item>
<key>
<string>
categories
</string>
</key>
<value>
<tuple/>
<tuple>
<string>
classification/collaborative/team
</string>
</tuple>
</value>
</item>
<item>
...
...
@@ -185,7 +187,7 @@
</tuple>
<state>
<tuple>
<float>
14
65381422.0
</float>
<float>
14
47177687.37
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
@@ -230,7 +232,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
952.
10286.2333.57753
</string>
</value>
<value>
<string>
952.
5859.60284.2696
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -248,7 +250,7 @@
</tuple>
<state>
<tuple>
<float>
1467
047937.65
</float>
<float>
1467
117724.53
</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