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
Paul Graydon
erp5
Commits
a3773fa4
Commit
a3773fa4
authored
5 years ago
by
Boris Kocherov
Committed by
Romain Courteaud
5 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[erp5_officejs] Increase replication error verbosity
User can send the error page to allow understanding the issue.
parent
264ded5c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_jio_erp5_configurator_js.js
...e_module/gadget_officejs_page_jio_erp5_configurator_js.js
+2
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_jio_erp5_configurator_js.xml
..._module/gadget_officejs_page_jio_erp5_configurator_js.xml
+2
-2
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_sync_js.js
...plateItem/web_page_module/gadget_officejs_page_sync_js.js
+7
-1
No files found.
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_jio_erp5_configurator_js.js
View file @
a3773fa4
...
...
@@ -43,6 +43,8 @@
}));
configuration
=
{
debug
:
true
,
report_level
:
1000
,
type
:
"
replicate
"
,
// XXX This drop the signature lists...
query
:
{
...
...
This diff is collapsed.
Click to expand it.
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_jio_erp5_configurator_js.xml
View file @
a3773fa4
...
...
@@ -271,7 +271,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
9
67.13533.35763.5744
6
</string>
</value>
<value>
<string>
9
77.9115.54748.42
6
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -289,7 +289,7 @@
</tuple>
<state>
<tuple>
<float>
15
25102062.15
</float>
<float>
15
63788084.53
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
This diff is collapsed.
Click to expand it.
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_sync_js.js
View file @
a3773fa4
...
...
@@ -77,7 +77,13 @@
var
gadget
=
this
;
if
(
gadget
.
state
.
auto_repair
)
{
return
repair_and_redirect
(
gadget
);
return
repair_and_redirect
(
gadget
)
.
push
(
undefined
,
function
(
e
)
{
if
(
e
.
name
===
"
ReplicateReport
"
)
{
throw
new
Error
(
e
.
toString
());
}
throw
e
;
});
}
});
...
...
This diff is collapsed.
Click to expand it.
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