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
b16c395f
Commit
b16c395f
authored
May 14, 2016
by
Boris Kocherov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_officejs: add serviceworker/jio offline mode
:
parent
4218ac97
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
2034 additions
and
5 deletions
+2034
-5
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_serviceworker_js.js
...eItem/web_page_module/gadget_officejs_serviceworker_js.js
+126
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_serviceworker_js.xml
...Item/web_page_module/gadget_officejs_serviceworker_js.xml
+320
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_spreadsheet_router_js.js
.../web_page_module/gadget_officejs_spreadsheet_router_js.js
+12
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_spreadsheet_router_js.xml
...web_page_module/gadget_officejs_spreadsheet_router_js.xml
+3
-3
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_spreadsheet_serviceworker.js.js
...ge_module/gadget_officejs_spreadsheet_serviceworker.js.js
+451
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_spreadsheet_serviceworker.js.xml
...e_module/gadget_officejs_spreadsheet_serviceworker.js.xml
+320
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_text_router_js.js
...ateItem/web_page_module/gadget_officejs_text_router_js.js
+12
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_text_router_js.xml
...teItem/web_page_module/gadget_officejs_text_router_js.xml
+2
-2
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_text_serviceworker.js.js
.../web_page_module/gadget_officejs_text_serviceworker.js.js
+468
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_text_serviceworker.js.xml
...web_page_module/gadget_officejs_text_serviceworker.js.xml
+320
-0
No files found.
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_serviceworker_js.js
0 → 100644
View file @
b16c395f
/*jslint indent: 2*/
/*global self, caches, importScripts, fetch, Promise, Request, Response, jIO, console*/
var
global
=
self
,
window
=
self
;
(
function
(
self
,
caches
,
fetch
)
{
"
use strict
"
;
self
.
DOMParser
=
{};
self
.
sessionStorage
=
{};
self
.
localStorage
=
{};
self
.
openDatabase
=
{};
importScripts
(
'
rsvp.js
'
,
'
jiodev.js
'
);
Response
.
prototype
.
metadata
=
function
()
{
return
{
//'ok': this.ok
url
:
this
.
url
,
headers
:
Array
.
from
(
this
.
headers
.
entries
())
};
};
Response
.
prototype
.
metadata_w_blob
=
function
()
{
var
metadata
=
this
.
metadata
();
return
this
.
blob
().
then
(
function
(
blob
)
{
return
Promise
.
resolve
({
'
blob
'
:
blob
,
'
metadata
'
:
metadata
});
});
};
self
.
jio_cache_storage
=
jIO
.
createJIO
({
type
:
"
uuid
"
,
sub_storage
:
{
"
type
"
:
"
indexeddb
"
,
"
database
"
:
self
.
CACHE_NAME
}
});
self
.
jio_cache_install
=
function
(
event
)
{
// debugger;
// Perform install step: loading each required file into cache
// create a new jio
var
requests
=
self
.
CACHE_REQUIRED_FILES
.
map
(
function
(
file_name
)
{
return
new
Request
(
file_name
);
});
event
.
waitUntil
(
Promise
.
all
(
requests
.
map
(
function
(
request
)
{
return
fetch
(
request
).
then
(
function
(
response
)
{
return
response
.
metadata_w_blob
();
});
}))
.
then
(
function
(
responses
)
{
return
Promise
.
all
(
responses
.
map
(
function
(
response
,
i
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
var
jio_key
=
requests
[
i
].
url
;
self
.
jio_cache_storage
.
put
(
jio_key
,
response
.
metadata
)
.
push
(
function
()
{
return
self
.
jio_cache_storage
.
putAttachment
(
jio_key
,
"
body
"
,
response
.
blob
)
.
push
(
function
()
{
console
.
log
(
'
jio_save:
'
+
jio_key
);
resolve
();
});
})
.
push
(
undefined
,
function
(
error
)
{
console
.
log
(
error
);
reject
();
});
})
.
then
(
undefined
,
console
.
log
);
})
)
.
then
(
function
()
{
console
.
log
(
'
cache loaded
'
);
return
self
.
skipWaiting
();
})
.
then
(
undefined
,
console
.
log
);
})
);
};
self
.
jio_cache_fetch
=
function
(
event
)
{
var
jio_key
=
event
.
request
.
url
;
event
.
respondWith
(
new
Promise
(
function
(
resolve
,
reject
)
{
self
.
jio_cache_storage
.
get
(
jio_key
)
.
push
(
function
(
metadata
)
{
return
self
.
jio_cache_storage
.
getAttachment
(
jio_key
,
'
body
'
)
.
push
(
function
(
body
)
{
//console.log(metadata.url + ' return from jio');
resolve
(
new
Response
(
body
,
{
'
headers
'
:
metadata
.
headers
}));
});
})
.
push
(
undefined
,
function
(
error
)
{
if
(
error
.
status_code
==
404
)
console
.
log
(
jio_key
+
'
not found in cache
'
);
else
{
console
.
log
(
jio_key
);
console
.
log
(
error
);
}
resolve
(
fetch
(
event
.
request
));
});
})
.
then
(
undefined
,
function
(
error
)
{
console
.
log
(
error
);
})
);
};
self
.
jio_cache_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
(
self
.
clients
.
claim
());
};
self
.
addEventListener
(
'
install
'
,
self
.
jio_cache_install
);
self
.
addEventListener
(
'
fetch
'
,
self
.
jio_cache_fetch
);
self
.
addEventListener
(
"
activate
"
,
self
.
jio_cache_activate
);
}(
self
,
caches
,
fetch
));
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_serviceworker_js.xml
0 → 100644
View file @
b16c395f
<?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>
gadget_officejs_serviceworker.js
</string>
</value>
</item>
<item>
<key>
<string>
description
</string>
</key>
<value>
<none/>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
gadget_officejs_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>
Office 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>
1461770935.04
</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>
951.9272.8708.15735
</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>
1463082861.33
</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>
1461754648.25
</float>
<string>
UTC
</string>
</tuple>
</state>
</object>
</value>
</item>
</dictionary>
</list>
</tuple>
</pickle>
</record>
</ZopeData>
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_spreadsheet_router_js.js
View file @
b16c395f
...
@@ -3,6 +3,18 @@
...
@@ -3,6 +3,18 @@
(
function
(
window
,
rJS
)
{
(
function
(
window
,
rJS
)
{
"
use strict
"
;
"
use strict
"
;
if
(
'
serviceWorker
'
in
navigator
)
{
navigator
.
serviceWorker
.
register
(
'
gadget_officejs_spreadsheet_serviceworker.js
'
)
.
then
(
function
(
reg
)
{
// registration worked
console
.
log
(
'
Registration succeeded. Scope is
'
+
reg
.
scope
);
})
.
then
(
undefined
,
function
(
error
)
{
// registration failed
console
.
log
(
'
Registration failed with
'
+
error
);
});
}
var
gadget_klass
=
rJS
(
window
),
var
gadget_klass
=
rJS
(
window
),
MAIN_PAGE_PREFIX
=
"
gadget_officejs_
"
,
MAIN_PAGE_PREFIX
=
"
gadget_officejs_
"
,
DEFAULT_PAGE
=
"
spreadsheet_list
"
,
DEFAULT_PAGE
=
"
spreadsheet_list
"
,
...
...
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_spreadsheet_router_js.xml
View file @
b16c395f
...
@@ -216,7 +216,7 @@
...
@@ -216,7 +216,7 @@
</item>
</item>
<item>
<item>
<key>
<string>
actor
</string>
</key>
<key>
<string>
actor
</string>
</key>
<value>
<string>
cedric.le.ninivin
</string>
</value>
<value>
<string>
zope
</string>
</value>
</item>
</item>
<item>
<item>
<key>
<string>
comment
</string>
</key>
<key>
<string>
comment
</string>
</key>
...
@@ -230,7 +230,7 @@
...
@@ -230,7 +230,7 @@
</item>
</item>
<item>
<item>
<key>
<string>
serial
</string>
</key>
<key>
<string>
serial
</string>
</key>
<value>
<string>
9
47.15310.53603.16298
</string>
</value>
<value>
<string>
9
50.59503.49307.64665
</string>
</value>
</item>
</item>
<item>
<item>
<key>
<string>
state
</string>
</key>
<key>
<string>
state
</string>
</key>
...
@@ -248,7 +248,7 @@
...
@@ -248,7 +248,7 @@
</tuple>
</tuple>
<state>
<state>
<tuple>
<tuple>
<float>
14
48034197.3
</float>
<float>
14
62142989.27
</float>
<string>
UTC
</string>
<string>
UTC
</string>
</tuple>
</tuple>
</state>
</state>
...
...
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_spreadsheet_serviceworker.js.js
0 → 100644
View file @
b16c395f
/*jslint indent: 2*/
/*global self, importScripts*/
(
function
(
self
)
{
"
use strict
"
;
self
.
CACHE_NAME
=
'
officejs_spreadsheet_cache
'
;
self
.
CACHE_REQUIRED_FILES
=
[
"
./
"
,
"
gadget_officejs_spreadsheet_router.html
"
,
"
gadget_officejs_spreadsheet_router.js
"
,
"
gadget_officejs_spreadsheet_application_panel.html
"
,
"
gadget_officejs_page_spreadsheet_list.html
"
,
"
gadget_officejs_page_spreadsheet_list.js
"
,
"
gadget_officejs_jio_spreadsheet_view.html
"
,
"
gadget_officejs_jio_spreadsheet_view.js
"
,
"
gadget_officejs_page_add_spreadsheet.html
"
,
"
gadget_officejs_page_add_spreadsheet.js
"
,
"
gadget_erp5_editor_panel.html
"
,
"
gadget_erp5_editor_panel.js
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?v=4.2.0
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.woff?v=4.2.0
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf?v=4.2.0
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular
"
,
"
URI.js
"
,
"
dygraph.js
"
,
"
gadget_erp5.css
"
,
"
gadget_global.js
"
,
"
gadget_jio.html
"
,
"
gadget_jio.js
"
,
"
gadget_translate.html
"
,
"
gadget_translate.js
"
,
"
handlebars.js
"
,
"
i18next.js
"
,
"
jiodev.js
"
,
"
jquery.js
"
,
"
jquerymobile.css
"
,
"
jquerymobile.js
"
,
"
renderjs.js
"
,
"
rsvp.js
"
,
"
gadget_officejs_header.html
"
,
"
gadget_officejs_jio.html
"
,
"
gadget_officejs_page_add_text_document.html
"
,
"
gadget_officejs_page_jio_configurator.html
"
,
"
gadget_officejs_page_jio_dav_configurator.html
"
,
"
gadget_officejs_page_login.html
"
,
"
gadget_officejs_page_logout.html
"
,
"
gadget_officejs_page_share_webrtc_jio.html
"
,
"
gadget_officejs_page_sync.html
"
,
"
gadget_translation.html
"
,
"
gadget_officejs_webrtc_jio.html
"
,
"
gadget_officejs_widget_listbox.html
"
,
"
gadget_officejs_header.js
"
,
"
gadget_officejs_jio.js
"
,
"
gadget_officejs_page_add_text_document.js
"
,
"
gadget_officejs_page_jio_configurator.js
"
,
"
gadget_officejs_page_jio_dav_configurator.js
"
,
"
gadget_officejs_page_login.js
"
,
"
gadget_officejs_page_logout.js
"
,
"
gadget_officejs_page_share_webrtc_jio.js
"
,
"
gadget_officejs_page_sync.js
"
,
"
gadget_officejs_text_editor_application_panel.js
"
,
"
gadget_translation.js
"
,
"
gadget_translation_data.js
"
,
"
gadget_officejs_webrtc_jio.js
"
,
"
gadget_officejs_widget_listbox.js
"
,
"
erp5_launcher.js
"
,
"
erp5_launcher.html
"
,
"
rjsunsafe/rsvp.js
"
,
"
rjsunsafe/renderjs.js
"
,
"
rjsunsafe/ooffice/apps/backbone.js
"
,
"
rjsunsafe/ooffice/apps/bootstrap.js
"
,
"
rjsunsafe/ooffice/apps/common/Analytics.js
"
,
"
rjsunsafe/ooffice/apps/common/Gateway.js
"
,
"
rjsunsafe/ooffice/apps/common/IrregularStack.js
"
,
"
rjsunsafe/ooffice/apps/common/locale.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/collection/ChatMessages.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/collection/Comments.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/collection/Fonts.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/collection/HistoryVersions.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/collection/Users.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/BaseView.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Button.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/CheckBox.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ColorButton.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ColorPalette.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ComboBorderSize.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ComboBox.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ComboBoxFonts.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ComboDataView.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/DataView.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/DimensionPicker.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/HSBColorPicker.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/InputField.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Layout.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ListView.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/LoadMask.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/MaskedField.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Menu.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/MenuItem.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/MetricSpinner.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/MultiSliderGradient.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/RadioBox.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Scroller.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Slider.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/SynchronizeTip.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Tab.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/TabBar.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/TableStyler.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ThemeColorPalette.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ToggleManager.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Tooltip.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Window.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/controller/Chat.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/controller/Comments.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/controller/ExternalDiagramEditor.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/controller/Fonts.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/controller/History.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/core/NotificationCenter.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/core/application.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/core/keymaster.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/extend/Bootstrap.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/model/ChatMessage.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/model/Comment.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/model/Font.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/model/HistoryVersion.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/model/User.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/mods/perfect-scrollbar.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/Chat.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/Comments.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/CommentsPanel.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/CommentsPopover.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/ExtendedColorDialog.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/Header.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/util/LanguageInfo.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/util/Shortcuts.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/util/Tip.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/util/utils.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/About.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/AdvancedSettingsWindow.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/Chat.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/Comments.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/CopyWarningDialog.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/DocumentAccessDialog.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/ExtendedColorDialog.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/ExternalDiagramEditor.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/Header.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/History.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/ImageFromUrlDialog.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/InsertTableDialog.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/SearchDialog.js
"
,
"
rjsunsafe/ooffice/apps/css.js
"
,
"
rjsunsafe/ooffice/apps/jquery.js
"
,
"
rjsunsafe/ooffice/apps/jquery.mousewheel.js
"
,
"
rjsunsafe/ooffice/apps/require.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/collection/FormulaGroups.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/collection/ShapeGroups.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/collection/TableTemplates.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/controller/CellEditor.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/controller/LeftMenu.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/controller/Main.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/controller/Print.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/controller/RightMenu.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/controller/Statusbar.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/controller/Toolbar.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/controller/Viewport.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/model/Formula.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/model/ShapeGroup.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/model/TableTemplate.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/CellEditor.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/ChartSettings.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/FileMenu.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/ImageSettings.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/LeftMenu.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/ParagraphSettings.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/ParagraphSettingsAdvanced.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/PrintSettings.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/RightMenu.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/ShapeSettings.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/ShapeSettingsAdvanced.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/StatusBar.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/Toolbar.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/template/Viewport.template
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/CellEditor.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/CellRangeDialog.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/ChartSettings.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/DocumentHolder.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/FileMenu.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/FormulaDialog.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/ImageSettings.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/LeftMenu.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/OpenDialog.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/ParagraphSettings.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/PrintSettings.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/RightMenu.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/SetValueDialog.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/ShapeSettings.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/Statusbar.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/TableOptionsDialog.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/Toolbar.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/app/view/Viewport.js
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/css/app.css
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/about/OnlyOffice.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/about/OnlyOffice@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/charttypes.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/charttypes@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/combo-border-size/BorderSize.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/controls/Scroll_center.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/controls/Scroll_center@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/controls/common-controls.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/controls/common-controls@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/docformat.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/docformat@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/file-recent.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/file-recent@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/file-templates.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/file-templates@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/header/header-logo.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/header/header-logo@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/hsbcolorpicker/hsb-colorpicker.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/hsbcolorpicker/hsb-colorpicker@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/hsbcolorpicker/transparency_39x15.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/hsbcolorpicker/transparency_39x15@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/hsbcolorpicker/transparency_63x20.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/hsbcolorpicker/transparency_63x20@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/load-mask/loading.gif
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/loading-logo.gif
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/loading-logo@2x.gif
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/popupmenu-btns.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/popupmenu-btns@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/profile.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/profile@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/right-panels/Begin-EndStyle.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/right-panels/Begin-EndStyle@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/right-panels/BorderSize.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/right-panels/gradients.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/right-panels/gradients@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/right-panels/patterns.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/right-panels/patterns@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/right-panels/rowscols_icon.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/right-panels/rowscols_icon@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/toolbar-menu.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/toolbar-menu@2x.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize.png
"
,
"
rjsunsafe/ooffice/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@2x.png
"
,
"
rjsunsafe/ooffice/apps/text.js
"
,
"
rjsunsafe/ooffice/apps/underscore.js
"
,
"
rjsunsafe/ooffice/apps/xregexp-all-min.js
"
,
"
rjsunsafe/ooffice/gadget_ooffice.html
"
,
"
rjsunsafe/ooffice/gadget_ooffice.js
"
,
"
rjsunsafe/ooffice/sdk/Common/AllFonts.js
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/fonts_thumbnail.png
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/fonts_thumbnail@2x.png
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/marker_format.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/plus.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/plus_2x.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/plus_copy.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/plus_copy_2x.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/text_copy.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/text_copy_2x.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Native/jquery_native.js
"
,
"
rjsunsafe/ooffice/sdk/Common/Native/native.js
"
,
"
rjsunsafe/ooffice/sdk/Excel/css/main-mobile.css
"
,
"
rjsunsafe/ooffice/sdk/Excel/css/main.css
"
,
"
rjsunsafe/ooffice/sdk/Excel/sdk-all.js
"
,
"
rjsunsafe/ooffice_fonts/ef3g15mxfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/ef3g15mxfibg65drjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/ef3g15mxfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/ef3g15mxfirzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/ef3sn5ubfigsn7def3zze3o.js
"
,
"
rjsunsafe/ooffice_fonts/eposaamrcio141mwcfsg1a3qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/eposaamrcio14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/eposaamrcio14ouxpt1r17dbptwsgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/eposaamrcio14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/epozr5djqtz141mwcfsg1a3qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/epozr5djqtz14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/epozr5djqtz14ouxpt1r17dbptwsgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/epozr5djqtz14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/epzzkh5jp31141mwcfsg1a3qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/epzzkh5jp3114ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/epzzkh5jp3114ouxpt1r17dbptwsgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/epzzkh5jp3114wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijskhujcaswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijskhujcaz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijsn5uuf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijsn5uufibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijsn5uujizsh53pejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijsn5uujizsh53qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrj3ozg45efibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrj3ozg45efijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrj3ozg45ekir14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrjp4sc4jpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrjp4sc4jpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkp1zr4mgfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkp1zr4mgfibg65drjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkp1zr4mgfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkp1zr4mgfirzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh3pejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh3qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh48cizzr35jcfznh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4bqjosr4mdf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4bqjssk5ujcfznh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4ecit8r3mzfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4ecit8r3mzfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4fqtwg155opft14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4fqtwg155opft14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4gcfsgaaubcpi1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4gcfsgaaubcpiwa3m8cftz1muwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4gcfsgaaubcpiwc7mcpoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4kcfagn5ufqp11h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4pp7zg6muwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54mqiug1om1cftg1a3pejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54mqiug1om1cftg1a3pkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54qcf3ss4nbqjosr4mdfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54qcf3ss4nbqjosr4mdfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54qcf3ss4nbqjosr4mdkir14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54qcf3ss4nbqjosr4mdkir14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15bp3zgn3dbfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15bp3zgn3dbfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15bp3zgn3dbkir14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15bp3zgn3dbkir14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15epi1zrikjfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15epi1zrikjfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15epi1zrmk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15epi1zrmknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g1dfcj3gk73pejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g1dfcj3gk73pkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidbpiwsaikjfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidbpiwsaikjfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidbpiwsamk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidbpiwsamknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfoshajpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfoshajpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfw14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfw14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfwik1jpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfwik1jpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidfpt4sq7jpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidfpt4sq7jpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidfpt4sq7kijrsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidfpt4sq7kijrswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gikjfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gikjfibg65drjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gikjfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gikjfirzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gmk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gmkjqtosa4mdf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gmknp7sge1mwcfsg1a3qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gmknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8go5ecfs14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8go5ecfs14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gom1pi1sh4mbpasir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gom1pi1sh4mbpaswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8goufp3usn5djfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8goufp3usn5djfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8goufp3usn5djkir14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8goufp3usn5djkir14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5fp73gq4mbpasir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5fp73gq4mbpaswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5ipjozramwpfkw1mk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5ipjozramwpfkw1mknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5ipjozramwprsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5ipjozramwprswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5iqjszk45epfkw1mk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5iqjszk45epfkw1mknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5iqjszk45eprsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5iqjszk45eprswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtdfq3osham8cf3g1ikjfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtdfq3osham8cf3g1ikjfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtdfq3osham8cf3g1mk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtdfq3osham8cf3g1mknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtmwpbws6hdjccsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtmwpbws6hdjccswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gu51pfhsnikjfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gu51pfhsnikjfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gu51pfhsnmk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gu51pfhsnmknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gudbp7kw1mk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gudbp7kw1mknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gudbphsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gudbphswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gum3cfzg4am1fibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gum3cfzg4am1fijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gum3cfzg4am1kir14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gum3cfzg4am1kir14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gumbptoz1amccfs14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gumbptoz1amccfs14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gumbptoz1amccfsik1jpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gumbptoz1amccfsik1jpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gw5jp3wgn5dbfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gw5jp3wgn5dbfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g1318cizzr35jcfzn4ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g1318cizzr35jcfzn4wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131bqjssk5ujcfzn4ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131bqjssk5ujcfzn4wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131ccfz14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131ccfz14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131mpbsskhtpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131mpbsskhtpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131wpbos1mk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131wpbos1mknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g13tpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g13tpejzsa3njqtosa4mdf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g13tpjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g13tpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqigs65uxfibnh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqigs65uxfibr1muwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqigs65uxfijnh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqigs65uxfijr1muwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwsir1jqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwsirmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwsw41jqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwsw4muwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwswa1jqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwswamuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwswgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwswr1jqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwswrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wp7bs65urciz8g3mrfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wp7bs65urciz8g3mrfibg65drjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wp7bs65urciz8g3mrfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wp7bs65urciz8g3mrfirzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphsie4djp3rzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphsie4djpaz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphsw17dbptwsgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphswa4m8pb4nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphswa4m8pb4r17dbptwsgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphswr55cctrzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kphs4auxpt8gk7jqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kphs4auxptouqcjzf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/ktwsh55ufibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/ktwsh55ufibg65drjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/ktwsh55ufijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/ktwsh55ufirzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/p7agk5uum7xi6muwqtuy.js
"
];
importScripts
(
'
gadget_officejs_serviceworker.js
'
);
}(
self
));
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_spreadsheet_serviceworker.js.xml
0 → 100644
View file @
b16c395f
<?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>
gadget_officejs_spreadsheet_serviceworker.js
</string>
</value>
</item>
<item>
<key>
<string>
description
</string>
</key>
<value>
<none/>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
gadget_officejs_spreadsheet_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>
Office 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>
1462137222.38
</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>
951.11227.12888.61969
</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>
1463172559.45
</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>
1462135001.37
</float>
<string>
UTC
</string>
</tuple>
</state>
</object>
</value>
</item>
</dictionary>
</list>
</tuple>
</pickle>
</record>
</ZopeData>
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_text_router_js.js
View file @
b16c395f
...
@@ -3,6 +3,18 @@
...
@@ -3,6 +3,18 @@
(
function
(
window
,
rJS
)
{
(
function
(
window
,
rJS
)
{
"
use strict
"
;
"
use strict
"
;
if
(
'
serviceWorker
'
in
navigator
)
{
navigator
.
serviceWorker
.
register
(
'
gadget_officejs_text_serviceworker.js
'
)
.
then
(
function
(
reg
)
{
// registration worked
console
.
log
(
'
Registration succeeded. Scope is
'
+
reg
.
scope
);
})
.
then
(
undefined
,
function
(
error
)
{
// registration failed
console
.
log
(
'
Registration failed with
'
+
error
);
});
}
var
gadget_klass
=
rJS
(
window
),
var
gadget_klass
=
rJS
(
window
),
MAIN_PAGE_PREFIX
=
"
gadget_officejs_
"
,
MAIN_PAGE_PREFIX
=
"
gadget_officejs_
"
,
DEFAULT_PAGE
=
"
text_list
"
,
DEFAULT_PAGE
=
"
text_list
"
,
...
...
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_text_router_js.xml
View file @
b16c395f
...
@@ -230,7 +230,7 @@
...
@@ -230,7 +230,7 @@
</item>
</item>
<item>
<item>
<key>
<string>
serial
</string>
</key>
<key>
<string>
serial
</string>
</key>
<value>
<string>
94
7.62779.43939.6877
</string>
</value>
<value>
<string>
94
9.50294.65237.43212
</string>
</value>
</item>
</item>
<item>
<item>
<key>
<string>
state
</string>
</key>
<key>
<string>
state
</string>
</key>
...
@@ -248,7 +248,7 @@
...
@@ -248,7 +248,7 @@
</tuple>
</tuple>
<state>
<state>
<tuple>
<tuple>
<float>
14
50796023.24
</float>
<float>
14
63147142.93
</float>
<string>
UTC
</string>
<string>
UTC
</string>
</tuple>
</tuple>
</state>
</state>
...
...
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_text_serviceworker.js.js
0 → 100644
View file @
b16c395f
/*jslint indent: 2*/
/*global self, importScripts*/
(
function
(
self
)
{
"
use strict
"
;
self
.
CACHE_NAME
=
'
officejs_text_cache
'
;
self
.
CACHE_REQUIRED_FILES
=
[
"
./
"
,
"
gadget_officejs_text_router.html
"
,
"
gadget_officejs_text_router.js
"
,
"
gadget_officejs_text_application_panel.html
"
,
"
gadget_officejs_page_text_list.html
"
,
"
gadget_officejs_page_text_list.js
"
,
"
gadget_officejs_jio_text_view.html
"
,
"
gadget_officejs_jio_spreadsheet_view.js
"
,
"
gadget_officejs_page_add_text.html
"
,
"
gadget_officejs_page_add_text.js
"
,
"
gadget_erp5_editor_panel.html
"
,
"
gadget_erp5_editor_panel.js
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?v=4.2.0
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.woff?v=4.2.0
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf?v=4.2.0
"
,
"
//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular
"
,
"
URI.js
"
,
"
dygraph.js
"
,
"
gadget_erp5.css
"
,
"
gadget_global.js
"
,
"
gadget_jio.html
"
,
"
gadget_jio.js
"
,
"
gadget_translate.html
"
,
"
gadget_translate.js
"
,
"
handlebars.js
"
,
"
i18next.js
"
,
"
jiodev.js
"
,
"
jquery.js
"
,
"
jquerymobile.css
"
,
"
jquerymobile.js
"
,
"
renderjs.js
"
,
"
rsvp.js
"
,
"
gadget_officejs_header.html
"
,
"
gadget_officejs_jio.html
"
,
"
gadget_officejs_page_add_text_document.html
"
,
"
gadget_officejs_page_jio_configurator.html
"
,
"
gadget_officejs_page_jio_dav_configurator.html
"
,
"
gadget_officejs_page_login.html
"
,
"
gadget_officejs_page_logout.html
"
,
"
gadget_officejs_page_share_webrtc_jio.html
"
,
"
gadget_officejs_page_sync.html
"
,
"
gadget_translation.html
"
,
"
gadget_officejs_webrtc_jio.html
"
,
"
gadget_officejs_widget_listbox.html
"
,
"
gadget_officejs_header.js
"
,
"
gadget_officejs_jio.js
"
,
"
gadget_officejs_page_add_text_document.js
"
,
"
gadget_officejs_page_jio_configurator.js
"
,
"
gadget_officejs_page_jio_dav_configurator.js
"
,
"
gadget_officejs_page_login.js
"
,
"
gadget_officejs_page_logout.js
"
,
"
gadget_officejs_page_share_webrtc_jio.js
"
,
"
gadget_officejs_page_sync.js
"
,
"
gadget_officejs_text_editor_application_panel.js
"
,
"
gadget_translation.js
"
,
"
gadget_translation_data.js
"
,
"
gadget_officejs_webrtc_jio.js
"
,
"
gadget_officejs_widget_listbox.js
"
,
"
erp5_launcher.js
"
,
"
erp5_launcher.html
"
,
"
rjsunsafe/rsvp.js
"
,
"
rjsunsafe/renderjs.js
"
,
"
rjsunsafe/ooffice/apps/backbone.js
"
,
"
rjsunsafe/ooffice/apps/bootstrap.js
"
,
"
rjsunsafe/ooffice/apps/common/Analytics.js
"
,
"
rjsunsafe/ooffice/apps/common/Gateway.js
"
,
"
rjsunsafe/ooffice/apps/common/IrregularStack.js
"
,
"
rjsunsafe/ooffice/apps/common/locale.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/collection/ChatMessages.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/collection/Comments.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/collection/Fonts.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/collection/HistoryVersions.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/collection/Users.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/BaseView.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Button.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/CheckBox.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ColorButton.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ColorPalette.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ComboBorderSize.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ComboBox.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ComboBoxFonts.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ComboDataView.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/DataView.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/DimensionPicker.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/HSBColorPicker.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/InputField.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Layout.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ListView.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/LoadMask.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/MaskedField.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Menu.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/MenuItem.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/MetricSpinner.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/MultiSliderGradient.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/RadioBox.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Scroller.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Slider.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/SynchronizeTip.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Tab.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/TabBar.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/TableStyler.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ThemeColorPalette.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/ToggleManager.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Tooltip.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/component/Window.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/controller/Chat.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/controller/Comments.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/controller/ExternalDiagramEditor.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/controller/Fonts.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/controller/History.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/core/NotificationCenter.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/core/application.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/core/keymaster.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/extend/Bootstrap.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/model/ChatMessage.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/model/Comment.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/model/Font.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/model/HistoryVersion.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/model/User.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/mods/perfect-scrollbar.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/Chat.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/Comments.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/CommentsPanel.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/CommentsPopover.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/ExtendedColorDialog.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/template/Header.template
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/util/LanguageInfo.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/util/Shortcuts.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/util/Tip.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/util/utils.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/About.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/AdvancedSettingsWindow.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/Chat.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/Comments.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/CopyWarningDialog.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/DocumentAccessDialog.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/ExtendedColorDialog.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/ExternalDiagramEditor.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/Header.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/History.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/ImageFromUrlDialog.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/InsertTableDialog.js
"
,
"
rjsunsafe/ooffice/apps/common/main/lib/view/SearchDialog.js
"
,
"
rjsunsafe/ooffice/apps/css.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/collection/EquationGroups.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/collection/ShapeGroups.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/controller/DocumentHolder.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/controller/LeftMenu.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/controller/Main.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/controller/RightMenu.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/controller/Statusbar.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/controller/Toolbar.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/controller/Viewport.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/model/EquationGroup.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/model/Pages.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/model/ShapeGroup.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/ChartSettings.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/DropcapSettingsAdvanced.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/FileMenu.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/HeaderFooterSettings.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/ImageSettings.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/ImageSettingsAdvanced.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/LeftMenu.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/ParagraphSettings.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/ParagraphSettingsAdvanced.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/RightMenu.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/ShapeSettings.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/StatusBar.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/TableSettings.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/TableSettingsAdvanced.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/Toolbar.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/template/Viewport.template
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/ChartSettings.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/DocumentHolder.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/DropcapSettingsAdvanced.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/FileMenu.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/FileMenuPanels.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/HeaderFooterSettings.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/HyperlinkSettingsDialog.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/ImageSettings.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/LeftMenu.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/ParagraphSettings.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/RightMenu.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/ShapeSettings.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/Statusbar.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/TableSettings.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/TableSettingsAdvanced.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/Toolbar.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/app/view/Viewport.js
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/css/app.css
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/about/OnlyOffice.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/about/OnlyOffice@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/combo-border-size/BorderSize.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/controls/Scroll_center.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/controls/Scroll_center@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/controls/common-controls.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/controls/common-controls@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/controls/dimension-picker/dimension-highlighted.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/controls/dimension-picker/dimension-highlighted@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/controls/dimension-picker/dimension-unhighlighted.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/controls/dimension-picker/dimension-unhighlighted@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/docformat.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/docformat@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/file-recent.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/file-recent@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/file-template-default.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/file-template-default@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/file-templates-blank.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/file-templates-blank@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/header/header-logo.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/header/header-logo@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/hsbcolorpicker/hsb-colorpicker.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/hsbcolorpicker/hsb-colorpicker@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/hsbcolorpicker/transparency_39x15.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/hsbcolorpicker/transparency_39x15@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/hsbcolorpicker/transparency_63x20.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/hsbcolorpicker/transparency_63x20@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/load-mask/loading.gif
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/loading-logo.gif
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/loading-logo@2x.gif
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/popupmenu-btns.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/popupmenu-btns@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/profile.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/profile@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/Begin-EndStyle.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/Begin-EndStyle@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/BorderSize.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/LargeBorders.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/LargeBorders@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/RightPanelBigBtns.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/RightPanelBigBtns@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/SmallBorders.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/SmallBorders@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/gradients.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/gradients@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/patterns.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/patterns@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/right_panel_wrap_btns.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/right_panel_wrap_btns@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/right_panel_wrap_icons.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/right_panel_wrap_icons@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/rowscols_icon.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/right-panels/rowscols_icon@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar-menu.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar-menu@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/AutoColor.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/NoFill.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/NoFill@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/bullets.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/bullets@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/charttypes.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/charttypes@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/colontitules.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/colontitules@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/math.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/math@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/multilevels-numbering.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/multilevels-numbering@2x.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/nocolor.png
"
,
"
rjsunsafe/ooffice/apps/documenteditor/main/resources/img/toolbar/text_styles.png
"
,
"
rjsunsafe/ooffice/apps/jquery.js
"
,
"
rjsunsafe/ooffice/apps/jquery.mousewheel.js
"
,
"
rjsunsafe/ooffice/apps/require.js
"
,
"
rjsunsafe/ooffice/apps/text.js
"
,
"
rjsunsafe/ooffice/apps/underscore.js
"
,
"
rjsunsafe/ooffice/apps/xregexp-all-min.js
"
,
"
rjsunsafe/ooffice/gadget_ooffice.html
"
,
"
rjsunsafe/ooffice/gadget_ooffice.js
"
,
"
rjsunsafe/ooffice/sdk/Common/AllFonts.js
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/fonts_thumbnail.png
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/fonts_thumbnail@2x.png
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/marker_format.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/plus.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/plus_2x.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/plus_copy.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/plus_copy_2x.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/text_copy.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Images/text_copy_2x.cur
"
,
"
rjsunsafe/ooffice/sdk/Common/Native/jquery_native.js
"
,
"
rjsunsafe/ooffice/sdk/Common/Native/native.js
"
,
"
rjsunsafe/ooffice/sdk/Word/sdk-all.js
"
,
"
rjsunsafe/ooffice_fonts/ef3g15mxfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/ef3g15mxfibg65drjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/ef3g15mxfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/ef3g15mxfirzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/ef3sn5ubfigsn7def3zze3o.js
"
,
"
rjsunsafe/ooffice_fonts/eposaamrcio141mwcfsg1a3qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/eposaamrcio14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/eposaamrcio14ouxpt1r17dbptwsgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/eposaamrcio14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/epozr5djqtz141mwcfsg1a3qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/epozr5djqtz14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/epozr5djqtz14ouxpt1r17dbptwsgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/epozr5djqtz14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/epzzkh5jp31141mwcfsg1a3qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/epzzkh5jp3114ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/epzzkh5jp3114ouxpt1r17dbptwsgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/epzzkh5jp3114wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijskhujcaswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijskhujcaz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijsn5uuf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijsn5uufibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijsn5uujizsh53pejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/et1swaksqijsn5uujizsh53qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrj3ozg45efibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrj3ozg45efijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrj3ozg45ekir14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrjp4sc4jpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrjp4sc4jpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkp1zr4mgfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkp1zr4mgfibg65drjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkp1zr4mgfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkp1zr4mgfirzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh3pejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh3qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh48cizzr35jcfznh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4bqjosr4mdf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4bqjssk5ujcfznh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4ecit8r3mzfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4ecit8r3mzfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4fqtwg155opft14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4fqtwg155opft14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4gcfsgaaubcpi1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4gcfsgaaubcpiwa3m8cftz1muwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4gcfsgaaubcpiwc7mcpoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4kcfagn5ufqp11h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/et3g64mrkposhh4pp7zg6muwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54mqiug1om1cftg1a3pejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54mqiug1om1cftg1a3pkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54qcf3ss4nbqjosr4mdfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54qcf3ss4nbqjosr4mdfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54qcf3ss4nbqjosr4mdkir14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54qcf3ss4nbqjosr4mdkir14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15bp3zgn3dbfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15bp3zgn3dbfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15bp3zgn3dbkir14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15bp3zgn3dbkir14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15epi1zrikjfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15epi1zrikjfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15epi1zrmk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g15epi1zrmknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g1dfcj3gk73pejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8g1dfcj3gk73pkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidbpiwsaikjfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidbpiwsaikjfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidbpiwsamk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidbpiwsamknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfoshajpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfoshajpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfw14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfw14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfwik1jpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidecfwik1jpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidfpt4sq7jpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidfpt4sq7jpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidfpt4sq7kijrsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gidfpt4sq7kijrswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gikjfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gikjfibg65drjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gikjfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gikjfirzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gmk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gmkjqtosa4mdf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gmknp7sge1mwcfsg1a3qqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gmknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8go5ecfs14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8go5ecfs14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gom1pi1sh4mbpasir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gom1pi1sh4mbpaswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8goufp3usn5djfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8goufp3usn5djfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8goufp3usn5djkir14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8goufp3usn5djkir14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5fp73gq4mbpasir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5fp73gq4mbpaswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5ipjozramwpfkw1mk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5ipjozramwpfkw1mknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5ipjozramwprsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5ipjozramwprswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5iqjszk45epfkw1mk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5iqjszk45epfkw1mknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5iqjszk45eprsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gt5iqjszk45eprswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtdfq3osham8cf3g1ikjfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtdfq3osham8cf3g1ikjfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtdfq3osham8cf3g1mk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtdfq3osham8cf3g1mknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtmwpbws6hdjccsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gtmwpbws6hdjccswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gu51pfhsnikjfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gu51pfhsnikjfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gu51pfhsnmk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gu51pfhsnmknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gudbp7kw1mk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gudbp7kw1mknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gudbphsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gudbphswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gum3cfzg4am1fibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gum3cfzg4am1fijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gum3cfzg4am1kir14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gum3cfzg4am1kir14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gumbptoz1amccfs14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gumbptoz1amccfs14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gumbptoz1amccfsik1jpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gumbptoz1amccfsik1jpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gw5jp3wgn5dbfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54ucfz8gw5jp3wgn5dbfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g1318cizzr35jcfzn4ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g1318cizzr35jcfzn4wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131bqjssk5ujcfzn4ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131bqjssk5ujcfzn4wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131ccfz14ouxpt1nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131ccfz14wufc74saam1f348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131mpbsskhtpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131mpbsskhtpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131wpbos1mk1ciuzk5dbqez8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g131wpbos1mknp7sgemuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g13tpejzsa3bqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g13tpejzsa3njqtosa4mdf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g13tpjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/j3zze54uci3g13tpkj1sq7mccf3nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqigs65uxfibnh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqigs65uxfibr1muwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqigs65uxfijnh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqigs65uxfijr1muwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwsir1jqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwsirmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwsw41jqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwsw4muwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwswa1jqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwswamuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwswgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwswr1jqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kit8k5uwqwswrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wp7bs65urciz8g3mrfibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wp7bs65urciz8g3mrfibg65drjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wp7bs65urciz8g3mrfijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wp7bs65urciz8g3mrfirzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphsie4djp3rzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphsie4djpaz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphsir3m8qisgnhtqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphsw17dbptwsgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphswa4m8pb4nh7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphswa4m8pb4r17dbptwsgmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphswr55ccoz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/kjzsr55wphswr55cctrzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/kphs4auxpt8gk7jqqt4gc.js
"
,
"
rjsunsafe/ooffice_fonts/kphs4auxptouqcjzf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/ktwsh55ufibg65drf348e3o.js
"
,
"
rjsunsafe/ooffice_fonts/ktwsh55ufibg65drjf4gn5djccz8e7dg.js
"
,
"
rjsunsafe/ooffice_fonts/ktwsh55ufijgk35iptozrmuwqtuy.js
"
,
"
rjsunsafe/ooffice_fonts/ktwsh55ufirzeamcpft1h7dwca.js
"
,
"
rjsunsafe/ooffice_fonts/p7agk5uum7xi6muwqtuy.js
"
];
importScripts
(
'
gadget_officejs_serviceworker.js
'
);
}(
self
));
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_text_serviceworker.js.xml
0 → 100644
View file @
b16c395f
<?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>
gadget_officejs_text_serviceworker.js
</string>
</value>
</item>
<item>
<key>
<string>
description
</string>
</key>
<value>
<none/>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
gadget_officejs_text_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>
Office 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>
1463165822.23
</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>
951.11119.50963.59409
</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>
1463165771.89
</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>
1463146057.4
</float>
<string>
UTC
</string>
</tuple>
</state>
</object>
</value>
</item>
</dictionary>
</list>
</tuple>
</pickle>
</record>
</ZopeData>
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