Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
telecom
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Roque
telecom
Commits
7bf561c8
Commit
7bf561c8
authored
Apr 13, 2017
by
Roque Porchetto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding serviceworker to allow app to work offline
parent
d07bb10c
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
675 additions
and
11 deletions
+675
-11
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_custom_JIO_gadget.js.js
...hTemplateItem/web_page_module/fif_custom_JIO_gadget.js.js
+2
-2
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_custom_JIO_gadget.js.xml
...TemplateItem/web_page_module/fif_custom_JIO_gadget.js.xml
+2
-2
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_custom_gadget_erp5_serviceworker.js.js
...eb_page_module/fif_custom_gadget_erp5_serviceworker.js.js
+345
-0
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_custom_gadget_erp5_serviceworker.js.xml
...b_page_module/fif_custom_gadget_erp5_serviceworker.js.xml
+320
-0
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_gadget_erp5_page_main_html.html
...eItem/web_page_module/fif_gadget_erp5_page_main_html.html
+0
-1
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_gadget_erp5_page_main_html.xml
...teItem/web_page_module/fif_gadget_erp5_page_main_html.xml
+2
-2
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_gadget_erp5_page_main_js.js
...plateItem/web_page_module/fif_gadget_erp5_page_main_js.js
+2
-2
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_gadget_erp5_page_main_js.xml
...lateItem/web_page_module/fif_gadget_erp5_page_main_js.xml
+2
-2
No files found.
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_custom_JIO_gadget.js.js
View file @
7bf561c8
...
...
@@ -121,9 +121,9 @@
}
});
})
.
push
(
function
()
{
/*
.push(function () {
return gadget.state_parameter_dict.jio_storage.repair();
});
})
*/
;
})
.
declareMethod
(
'
allDocs
'
,
function
(
option_dict
)
{
...
...
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_custom_JIO_gadget.js.xml
View file @
7bf561c8
...
...
@@ -230,7 +230,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
958.4
2863.62916.48793
</string>
</value>
<value>
<string>
958.4
3056.61332.5870
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -248,7 +248,7 @@
</tuple>
<state>
<tuple>
<float>
14920
77873.08
</float>
<float>
14920
88925.5
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_custom_gadget_erp5_serviceworker.js.js
0 → 100644
View file @
7bf561c8
/*jslint indent: 2*/
/*global self, caches, fetch*/
(
function
(
self
,
caches
,
fetch
)
{
"
use strict
"
;
var
CACHE_NAME
=
'
Thu, 12 July 2016 12:00:00 GMT
'
,
// Files required to make this app work offline
REQUIRED_FILES
=
[
'
./
'
,
'
gadget_erp5_nojqm.css
'
,
'
erp5_launcher_nojqm.js
'
,
'
gadget_jio.html
'
,
'
gadget_erp5_router.html
'
,
'
gadget_erp5_header.html
'
,
'
gadget_erp5_notification.html
'
,
'
gadget_erp5_custom_jio.html
'
,
'
gadget_translation.html
'
,
'
gadget_erp5_editor_panel.html
'
,
'
gadget_erp5_panel.html
'
,
//'fif_custom_gadget_erp5_serviceworker.js',
'
jiodev.js
'
,
'
rsvp.js
'
,
'
renderjs.js
'
,
'
gadget_jio.js
'
,
'
handlebars.js
'
,
'
gadget_global.js
'
,
'
gadget_erp5_router.js
'
,
'
gadget_erp5_notification.js
'
,
'
gadget_translation_data.js
'
,
'
gadget_erp5_header.js
'
,
'
gadget_erp5_custom_jio.js
'
,
'
gadget_erp5_editor_panel.js
'
,
//'gadget_panel.js',
'
URI.js
'
,
'
erp5_launcher.js
'
,
'
gadget_erp5.css
'
,
'
gadget_erp5_editor_panel.html
'
,
'
gadget_erp5_editor_panel.js
'
,
'
gadget_erp5_field_checkbox.html
'
,
'
gadget_erp5_field_checkbox.js
'
,
'
gadget_erp5_field_datetime.html
'
,
'
gadget_erp5_field_datetime.js
'
,
'
gadget_erp5_field_email.html
'
,
'
gadget_erp5_field_email.js
'
,
//'font-awesome.min.css',
'
gadget_erp5_field_file.html
'
,
'
gadget_erp5_field_file.js
'
,
//'fontawesome-webfront.eot?v=4.2.0',
'
gadget_erp5_field_float.html
'
,
'
gadget_erp5_field_float.js
'
,
//'fontawesome-webfront.eot',
'
gadget_erp5_field_gadget.html
'
,
'
gadget_erp5_field_gadget.js
'
,
//'fontawesome-webfront.woff?v=4.2.0',
//'fontawesome-webfront.ttf?v=4.2.0',
//'fontawesome-webfront.svg?v=4.2.0',
'
gadget_erp5_field_image.html
'
,
'
gadget_erp5_field_image.js
'
,
'
gadget_erp5_field_integer.html
'
,
'
gadget_erp5_field_integer.js
'
,
'
gadget_erp5_field_list.html
'
,
'
gadget_erp5_field_list.js
'
,
'
gadget_erp5_field_listbox.html
'
,
'
gadget_erp5_field_listbox.js
'
,
'
gadget_erp5_field_multicheckbox.html
'
,
'
gadget_erp5_field_multicheckbox.js
'
,
'
gadget_erp5_field_multilist.html
'
,
'
gadget_erp5_field_multilist.js
'
,
'
gadget_erp5_field_multirelationstring.html
'
,
'
gadget_erp5_field_multirelationstring.js
'
,
'
gadget_erp5_field_radio.html
'
,
'
gadget_erp5_field_radio.js
'
,
'
gadget_erp5_field_readonly.html
'
,
'
gadget_erp5_field_readonly.js
'
,
'
gadget_erp5_field_relationstring.html
'
,
'
gadget_erp5_field_relationstring.js
'
,
'
gadget_erp5_field_string.html
'
,
'
gadget_erp5_field_string.js
'
,
'
gadget_erp5_field_password.html
'
,
'
gadget_erp5_field_password.js
'
,
'
gadget_erp5_field_textarea.html
'
,
'
gadget_erp5_field_textarea.js
'
,
'
gadget_erp5_form.html
'
,
'
gadget_erp5_form.js
'
,
'
gadget_erp5_header.html
'
,
'
gadget_erp5_header.js
'
,
'
gadget_erp5_jio.html
'
,
'
gadget_erp5_jio.js
'
,
'
gadget_erp5_page_action.html
'
,
'
gadget_erp5_page_action.js
'
,
'
gadget_erp5_page_form.html
'
,
'
gadget_erp5_page_form.js
'
,
'
gadget_erp5_page_front.html
'
,
'
gadget_erp5_page_front.js
'
,
'
gadget_erp5_page_history.html
'
,
'
gadget_erp5_page_history.js
'
,
'
gadget_erp5_page_jump.html
'
,
'
gadget_erp5_page_jump.js
'
,
'
gadget_erp5_page_logout.html
'
,
'
gadget_erp5_page_logout.js
'
,
'
gadget_erp5_page_preference.html
'
,
'
gadget_erp5_page_preference.js
'
,
'
gadget_erp5_page_relation_search.html
'
,
'
gadget_erp5_page_relation_search.js
'
,
'
gadget_erp5_page_search.html
'
,
'
gadget_erp5_page_search.js
'
,
'
gadget_erp5_page_tab.html
'
,
'
gadget_erp5_page_tab.js
'
,
'
gadget_erp5_page_worklist.html
'
,
'
gadget_erp5_page_worklist.js
'
,
'
gadget_erp5_panel.html
'
,
'
gadget_erp5_panel.js
'
,
'
gadget_erp5_pt_form_dialog.html
'
,
'
gadget_erp5_pt_form_dialog.js
'
,
'
gadget_erp5_pt_form_list.html
'
,
'
gadget_erp5_pt_form_list.js
'
,
'
gadget_erp5_pt_form_view.html
'
,
'
gadget_erp5_pt_form_view.js
'
,
'
gadget_erp5_pt_form_view_editable.html
'
,
'
gadget_erp5_pt_form_view_editable.js
'
,
'
gadget_erp5_pt_report_view.html
'
,
'
gadget_erp5_pt_report_view.js
'
,
'
gadget_erp5_router.html
'
,
'
gadget_erp5_router.js
'
,
'
gadget_erp5_relation_input.html
'
,
'
gadget_erp5_relation_input.js
'
,
'
gadget_erp5_search_editor.html
'
,
'
gadget_erp5_search_editor.js
'
,
'
gadget_erp5_searchfield.html
'
,
'
gadget_erp5_searchfield.js
'
,
'
gadget_erp5_sort_editor.html
'
,
'
gadget_erp5_sort_editor.js
'
,
'
gadget_global.js
'
,
'
gadget_erp5_global.js
'
,
'
gadget_jio.html
'
,
'
gadget_jio.js
'
,
'
gadget_translation.html
'
,
'
gadget_translation.js
'
,
'
gadget_translation_data.js
'
,
//my gadgets
'
gadget_erp5_page_fifdata.html
'
,
'
gadget_erp5_page_fifdata.js
'
,
'
gadget_FIF_page_front.html
'
,
'
gadget_FIF_page_front.js
'
,
'
gadget_erp5_pt_form_list.html
'
,
'
gadget_erp5_global.js
'
,
'
gadget_erp5_pt_form_list.html
'
,
'
gadget_erp5_searchfield.html
'
,
'
gadget_erp5_form.html
'
,
'
gadget_erp5_form.js
'
,
'
gadget_erp5_searchfield.js
'
,
'
gadget_html5_input.html
'
,
'
gadget_html5_input.js
'
,
'
gadget_erp5_label_field.html
'
,
'
gadget_erp5_label_field.js
'
,
'
gadget_erp5_field_listbox.html
'
,
'
gadget_erp5_field_listbox.js
'
,
//other pages
'
gadget_erp5_page_data_array.html
'
,
'
gadget_erp5_page_data_array.js
'
,
'
gadget_html5_element.html
'
,
'
gadget_html5_element.js
'
],
OLD_REQUIRED_FILES
=
[
'
./
'
,
'
https://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css
'
,
'
https://netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?v=4.2.0
'
,
'
https://netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0
'
,
'
https://netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.woff?v=4.2.0
'
,
'
https://netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf?v=4.2.0
'
,
'
https://netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular
'
,
'
URI.js
'
,
'
erp5_launcher.js
'
,
'
gadget_erp5.css
'
,
'
gadget_erp5_editor_panel.html
'
,
'
gadget_erp5_editor_panel.js
'
,
'
gadget_erp5_field_checkbox.html
'
,
'
gadget_erp5_field_checkbox.js
'
,
'
gadget_erp5_field_datetime.html
'
,
'
gadget_erp5_field_datetime.js
'
,
'
gadget_erp5_field_email.html
'
,
'
gadget_erp5_field_email.js
'
,
'
gadget_erp5_field_file.html
'
,
'
gadget_erp5_field_file.js
'
,
'
gadget_erp5_field_float.html
'
,
'
gadget_erp5_field_float.js
'
,
'
gadget_erp5_field_gadget.html
'
,
'
gadget_erp5_field_gadget.js
'
,
'
gadget_erp5_field_image.html
'
,
'
gadget_erp5_field_image.js
'
,
'
gadget_erp5_field_integer.html
'
,
'
gadget_erp5_field_integer.js
'
,
'
gadget_erp5_field_list.html
'
,
'
gadget_erp5_field_list.js
'
,
'
gadget_erp5_field_listbox.html
'
,
'
gadget_erp5_field_listbox.js
'
,
'
gadget_erp5_field_multicheckbox.html
'
,
'
gadget_erp5_field_multicheckbox.js
'
,
'
gadget_erp5_field_multilist.html
'
,
'
gadget_erp5_field_multilist.js
'
,
'
gadget_erp5_field_multirelationstring.html
'
,
'
gadget_erp5_field_multirelationstring.js
'
,
'
gadget_erp5_field_radio.html
'
,
'
gadget_erp5_field_radio.js
'
,
'
gadget_erp5_field_readonly.html
'
,
'
gadget_erp5_field_readonly.js
'
,
'
gadget_erp5_field_relationstring.html
'
,
'
gadget_erp5_field_relationstring.js
'
,
'
gadget_erp5_field_string.html
'
,
'
gadget_erp5_field_string.js
'
,
'
gadget_erp5_field_password.html
'
,
'
gadget_erp5_field_password.js
'
,
'
gadget_erp5_field_textarea.html
'
,
'
gadget_erp5_field_textarea.js
'
,
'
gadget_erp5_form.html
'
,
'
gadget_erp5_form.js
'
,
'
gadget_erp5_header.html
'
,
'
gadget_erp5_header.js
'
,
'
gadget_erp5_jio.html
'
,
'
gadget_erp5_jio.js
'
,
'
gadget_erp5_page_action.html
'
,
'
gadget_erp5_page_action.js
'
,
'
gadget_erp5_page_form.html
'
,
'
gadget_erp5_page_form.js
'
,
'
gadget_erp5_page_front.html
'
,
'
gadget_erp5_page_front.js
'
,
'
gadget_erp5_page_history.html
'
,
'
gadget_erp5_page_history.js
'
,
'
gadget_erp5_page_jump.html
'
,
'
gadget_erp5_page_jump.js
'
,
'
gadget_erp5_page_logout.html
'
,
'
gadget_erp5_page_logout.js
'
,
'
gadget_erp5_page_preference.html
'
,
'
gadget_erp5_page_preference.js
'
,
'
gadget_erp5_page_relation_search.html
'
,
'
gadget_erp5_page_relation_search.js
'
,
'
gadget_erp5_page_search.html
'
,
'
gadget_erp5_page_search.js
'
,
'
gadget_erp5_page_tab.html
'
,
'
gadget_erp5_page_tab.js
'
,
'
gadget_erp5_page_worklist.html
'
,
'
gadget_erp5_page_worklist.js
'
,
'
gadget_erp5_panel.html
'
,
'
gadget_erp5_panel.js
'
,
'
gadget_erp5_pt_form_dialog.html
'
,
'
gadget_erp5_pt_form_dialog.js
'
,
'
gadget_erp5_pt_form_list.html
'
,
'
gadget_erp5_pt_form_list.js
'
,
'
gadget_erp5_pt_form_view.html
'
,
'
gadget_erp5_pt_form_view.js
'
,
'
gadget_erp5_pt_form_view_editable.html
'
,
'
gadget_erp5_pt_form_view_editable.js
'
,
'
gadget_erp5_pt_report_view.html
'
,
'
gadget_erp5_pt_report_view.js
'
,
'
gadget_erp5_router.html
'
,
'
gadget_erp5_router.js
'
,
'
gadget_erp5_relation_input.html
'
,
'
gadget_erp5_relation_input.js
'
,
'
gadget_erp5_search_editor.html
'
,
'
gadget_erp5_search_editor.js
'
,
'
gadget_erp5_searchfield.html
'
,
'
gadget_erp5_searchfield.js
'
,
'
gadget_erp5_sort_editor.html
'
,
'
gadget_erp5_sort_editor.js
'
,
'
gadget_global.js
'
,
'
gadget_erp5_global.js
'
,
'
gadget_jio.html
'
,
'
gadget_jio.js
'
,
'
gadget_translation.html
'
,
'
gadget_translation.js
'
,
'
gadget_translation_data.js
'
,
'
handlebars.js
'
,
'
i18next.js
'
,
'
jiodev.js
'
,
'
renderjs.js
'
,
'
rsvp.js
'
];
self
.
addEventListener
(
'
install
'
,
function
(
event
)
{
// Perform install step: loading each required file into cache
event
.
waitUntil
(
caches
.
open
(
CACHE_NAME
)
.
then
(
function
(
cache
)
{
// Add all offline dependencies to the cache
return
cache
.
addAll
(
REQUIRED_FILES
);
})
.
then
(
function
()
{
// At this point everything has been cached
return
self
.
skipWaiting
();
})
);
});
self
.
addEventListener
(
'
fetch
'
,
function
(
event
)
{
event
.
respondWith
(
caches
.
match
(
event
.
request
)
.
then
(
function
(
response
)
{
// Cache hit - return the response from the cached version
if
(
response
)
{
return
response
;
}
// Not in cache - return the result from the live server
// `fetch` is essentially a "fallback"
return
fetch
(
event
.
request
);
})
);
});
self
.
addEventListener
(
"
activate
"
,
function
(
event
)
{
/* Just like with the install event, event.waitUntil blocks activate on a promise.
Activation will fail unless the promise is fulfilled.
*/
event
.
waitUntil
(
caches
/* This method returns a promise which will resolve to an array of available
cache keys.
*/
.
keys
()
.
then
(
function
(
keys
)
{
// We return a promise that settles when all outdated caches are deleted.
return
Promise
.
all
(
keys
.
filter
(
function
(
key
)
{
// Filter by keys that don't start with the latest version prefix.
// return !key.startsWith(version);
return
key
!==
CACHE_NAME
;
})
.
map
(
function
(
key
)
{
/* Return a promise that's fulfilled
when each outdated cache is deleted.
*/
return
caches
.
delete
(
key
);
})
);
})
.
then
(
function
()
{
self
.
clients
.
claim
();
})
);
});
}(
self
,
caches
,
fetch
));
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_custom_gadget_erp5_serviceworker.js.xml
0 → 100644
View file @
7bf561c8
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"Web Script"
module=
"erp5.portal_type"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
_Access_contents_information_Permission
</string>
</key>
<value>
<tuple>
<string>
Anonymous
</string>
<string>
Assignee
</string>
<string>
Assignor
</string>
<string>
Associate
</string>
<string>
Auditor
</string>
<string>
Manager
</string>
<string>
Owner
</string>
</tuple>
</value>
</item>
<item>
<key>
<string>
_Add_portal_content_Permission
</string>
</key>
<value>
<tuple>
<string>
Assignee
</string>
<string>
Assignor
</string>
<string>
Manager
</string>
</tuple>
</value>
</item>
<item>
<key>
<string>
_Change_local_roles_Permission
</string>
</key>
<value>
<tuple>
<string>
Assignor
</string>
<string>
Manager
</string>
</tuple>
</value>
</item>
<item>
<key>
<string>
_Modify_portal_content_Permission
</string>
</key>
<value>
<tuple>
<string>
Assignee
</string>
<string>
Assignor
</string>
<string>
Manager
</string>
</tuple>
</value>
</item>
<item>
<key>
<string>
_View_Permission
</string>
</key>
<value>
<tuple>
<string>
Anonymous
</string>
<string>
Assignee
</string>
<string>
Assignor
</string>
<string>
Associate
</string>
<string>
Auditor
</string>
<string>
Manager
</string>
<string>
Owner
</string>
</tuple>
</value>
</item>
<item>
<key>
<string>
content_md5
</string>
</key>
<value>
<none/>
</value>
</item>
<item>
<key>
<string>
default_reference
</string>
</key>
<value>
<string>
fif_custom_gadget_erp5_serviceworker.js
</string>
</value>
</item>
<item>
<key>
<string>
description
</string>
</key>
<value>
<none/>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
fif_custom_gadget_erp5_serviceworker.js
</string>
</value>
</item>
<item>
<key>
<string>
language
</string>
</key>
<value>
<string>
en
</string>
</value>
</item>
<item>
<key>
<string>
portal_type
</string>
</key>
<value>
<string>
Web Script
</string>
</value>
</item>
<item>
<key>
<string>
short_title
</string>
</key>
<value>
<none/>
</value>
</item>
<item>
<key>
<string>
title
</string>
</key>
<value>
<string>
Custom ERP5 ServiceWorker
</string>
</value>
</item>
<item>
<key>
<string>
version
</string>
</key>
<value>
<string>
001
</string>
</value>
</item>
<item>
<key>
<string>
workflow_history
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAAI=
</string>
</persistent>
</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>
<item>
<key>
<string>
document_publication_workflow
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAAM=
</string>
</persistent>
</value>
</item>
<item>
<key>
<string>
edit_workflow
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAAQ=
</string>
</persistent>
</value>
</item>
<item>
<key>
<string>
processing_status_workflow
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAAU=
</string>
</persistent>
</value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</pickle>
</record>
<record
id=
"3"
aka=
"AAAAAAAAAAM="
>
<pickle>
<global
name=
"WorkflowHistoryList"
module=
"Products.ERP5Type.patches.WorkflowTool"
/>
</pickle>
<pickle>
<tuple>
<none/>
<list>
<dictionary>
<item>
<key>
<string>
action
</string>
</key>
<value>
<string>
publish_alive
</string>
</value>
</item>
<item>
<key>
<string>
actor
</string>
</key>
<value>
<string>
zope
</string>
</value>
</item>
<item>
<key>
<string>
comment
</string>
</key>
<value>
<string></string>
</value>
</item>
<item>
<key>
<string>
error_message
</string>
</key>
<value>
<string></string>
</value>
</item>
<item>
<key>
<string>
time
</string>
</key>
<value>
<object>
<klass>
<global
name=
"DateTime"
module=
"DateTime.DateTime"
/>
</klass>
<tuple>
<none/>
</tuple>
<state>
<tuple>
<float>
1492078914.03
</float>
<string>
UTC
</string>
</tuple>
</state>
</object>
</value>
</item>
<item>
<key>
<string>
validation_state
</string>
</key>
<value>
<string>
published_alive
</string>
</value>
</item>
</dictionary>
</list>
</tuple>
</pickle>
</record>
<record
id=
"4"
aka=
"AAAAAAAAAAQ="
>
<pickle>
<global
name=
"WorkflowHistoryList"
module=
"Products.ERP5Type.patches.WorkflowTool"
/>
</pickle>
<pickle>
<tuple>
<none/>
<list>
<dictionary>
<item>
<key>
<string>
action
</string>
</key>
<value>
<string>
edit
</string>
</value>
</item>
<item>
<key>
<string>
actor
</string>
</key>
<value>
<string>
zope
</string>
</value>
</item>
<item>
<key>
<string>
comment
</string>
</key>
<value>
<none/>
</value>
</item>
<item>
<key>
<string>
error_message
</string>
</key>
<value>
<string></string>
</value>
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
958.43061.52519.43417
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
<value>
<string>
current
</string>
</value>
</item>
<item>
<key>
<string>
time
</string>
</key>
<value>
<object>
<klass>
<global
name=
"DateTime"
module=
"DateTime.DateTime"
/>
</klass>
<tuple>
<none/>
</tuple>
<state>
<tuple>
<float>
1492089085.68
</float>
<string>
UTC
</string>
</tuple>
</state>
</object>
</value>
</item>
</dictionary>
</list>
</tuple>
</pickle>
</record>
<record
id=
"5"
aka=
"AAAAAAAAAAU="
>
<pickle>
<global
name=
"WorkflowHistoryList"
module=
"Products.ERP5Type.patches.WorkflowTool"
/>
</pickle>
<pickle>
<tuple>
<none/>
<list>
<dictionary>
<item>
<key>
<string>
action
</string>
</key>
<value>
<string>
detect_converted_file
</string>
</value>
</item>
<item>
<key>
<string>
actor
</string>
</key>
<value>
<string>
zope
</string>
</value>
</item>
<item>
<key>
<string>
comment
</string>
</key>
<value>
<string></string>
</value>
</item>
<item>
<key>
<string>
error_message
</string>
</key>
<value>
<string></string>
</value>
</item>
<item>
<key>
<string>
external_processing_state
</string>
</key>
<value>
<string>
converted
</string>
</value>
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
0.0.0.0
</string>
</value>
</item>
<item>
<key>
<string>
time
</string>
</key>
<value>
<object>
<klass>
<global
name=
"DateTime"
module=
"DateTime.DateTime"
/>
</klass>
<tuple>
<none/>
</tuple>
<state>
<tuple>
<float>
1492078653.89
</float>
<string>
UTC
</string>
</tuple>
</state>
</object>
</value>
</item>
</dictionary>
</list>
</tuple>
</pickle>
</record>
</ZopeData>
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_gadget_erp5_page_main_html.html
View file @
7bf561c8
...
...
@@ -9,7 +9,6 @@
<script
src=
"rsvp.js"
type=
"text/javascript"
></script>
<script
src=
"renderjs.js"
type=
"text/javascript"
></script>
<!-- custom script -->
<script
src=
"dygraph.js"
type=
"text/javascript"
></script>
<script
src=
"gadget_global.js"
type=
"text/javascript"
></script>
<script
src=
"gadget_erp5_page_fifdata.js"
type=
"text/javascript"
></script>
...
...
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_gadget_erp5_page_main_html.xml
View file @
7bf561c8
...
...
@@ -234,7 +234,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
958.41689.
18414.54084
</string>
</value>
<value>
<string>
958.41689.
43060.42496
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -252,7 +252,7 @@
</tuple>
<state>
<tuple>
<float>
14920
06659.37
</float>
<float>
14920
86849.79
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_gadget_erp5_page_main_js.js
View file @
7bf561c8
/*global window, rJS, RSVP, URI */
/*jslint nomen: true, indent: 2, maxerr: 3 */
(
function
(
window
,
rJS
,
RSVP
,
URI
,
Dygraph
)
{
(
function
(
window
,
rJS
,
RSVP
,
URI
)
{
"
use strict
"
;
var
ARRAY_VALUE_LENGTH
=
8
;
...
...
@@ -51,4 +51,4 @@
throw
error
;
});
});
}(
window
,
rJS
,
RSVP
,
URI
,
Dygraph
));
\ No newline at end of file
}(
window
,
rJS
,
RSVP
,
URI
));
\ No newline at end of file
bt5/erp5_wendelin_telecom_UI/PathTemplateItem/web_page_module/fif_gadget_erp5_page_main_js.xml
View file @
7bf561c8
...
...
@@ -230,7 +230,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
958.41690.
339.62003
</string>
</value>
<value>
<string>
958.41690.
10852.2662
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -248,7 +248,7 @@
</tuple>
<state>
<tuple>
<float>
14920
06689.88
</float>
<float>
14920
87282.45
</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