Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alecs_myu
erp5
Commits
da49251c
Commit
da49251c
authored
Jun 15, 2017
by
Vincent Bechu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_officejs: add jabber client to zip export page
parent
7569322a
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22 additions
and
10 deletions
+22
-10
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_jio_appcachestorage_js.js
...web_page_module/gadget_officejs_jio_appcachestorage_js.js
+5
-4
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_jio_appcachestorage_js.xml
...eb_page_module/gadget_officejs_jio_appcachestorage_js.xml
+2
-2
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_export_html.html
...tem/web_page_module/gadget_officejs_page_export_html.html
+1
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_export_html.xml
...Item/web_page_module/gadget_officejs_page_export_html.xml
+2
-2
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_export_js.js
...ateItem/web_page_module/gadget_officejs_page_export_js.js
+10
-0
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_export_js.xml
...teItem/web_page_module/gadget_officejs_page_export_js.xml
+2
-2
No files found.
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_jio_appcachestorage_js.js
View file @
da49251c
...
...
@@ -11,8 +11,8 @@
(
window
.
location
.
pathname
.
endsWith
(
'
/
'
)
?
''
:
'
/
'
)
+
((
spec
.
version
!==
undefined
)
?
(
spec
.
version
+
(
spec
.
version
.
endsWith
(
'
/
'
)
?
''
:
'
/
'
))
:
""
));
this
.
_
relative_url_list
=
[
"
/
"
,
spec
.
manifest
]
;
this
.
_
prefix
=
spec
.
prefix
;
this
.
_
prefix
=
spec
.
prefix
||
""
;
this
.
_
relative_url_list
=
[
"
/
"
,
this
.
_prefix
+
spec
.
manifest
]
;
if
(
this
.
_take_installer
)
{
this
.
_relative_url_list
=
[
this
.
_prefix
||
"
/
"
,
...
...
@@ -68,12 +68,13 @@
AppCacheStorage
.
prototype
.
repair
=
function
()
{
var
storage
=
this
,
prefix
=
storage
.
_take_installer
?
this
.
_prefix
+
"
development/
"
:
""
;
prefix
=
storage
.
_prefix
+
(
storage
.
_take_installer
?
"
development/
"
:
""
);
return
new
RSVP
.
Queue
()
.
push
(
function
()
{
return
jIO
.
util
.
ajax
({
type
:
"
GET
"
,
url
:
storage
.
_origin_url
+
storage
.
_manifest
url
:
storage
.
_origin_url
+
storage
.
_
prefix
+
storage
.
_
manifest
});
})
.
push
(
function
(
response
)
{
...
...
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_jio_appcachestorage_js.xml
View file @
da49251c
...
...
@@ -239,7 +239,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
9
59.47786.31692.330
24
</string>
</value>
<value>
<string>
9
60.4069.29402.508
24
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -257,7 +257,7 @@
</tuple>
<state>
<tuple>
<float>
1497
260492.27
</float>
<float>
1497
527515.31
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_export_html.html
View file @
da49251c
...
...
@@ -45,6 +45,7 @@
<option>
Web Table Editor
</option>
<option>
Image Editor
</option>
<option>
Awesome Free Software Publisher List
</option>
<option>
Jabber Client
</option>
</select>
</div>
</div>
...
...
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_export_html.xml
View file @
da49251c
...
...
@@ -231,7 +231,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
9
59.47786.31692.33024
</string>
</value>
<value>
<string>
9
60.1258.37114.25275
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -249,7 +249,7 @@
</tuple>
<state>
<tuple>
<float>
1497
259706.13
</float>
<float>
1497
524309.99
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_export_js.js
View file @
da49251c
...
...
@@ -69,6 +69,16 @@
"
no_installer
"
:
true
,
"
sub_gadget
"
:
[]
},
"
Jabber Client
"
:
{
"
url
"
:
"
jabber_client/
"
,
"
cache
"
:
"
gadget_jabberclient.appcache
"
,
"
no_installer
"
:
true
,
"
sub_gadget
"
:
[
"
connection
"
]
},
"
connection
"
:
{
"
cache
"
:
"
gadget_jabberconnection.appcache
"
,
"
no_installer
"
:
true
},
"
officejs_ckeditor_gadget
"
:
{
"
cache
"
:
"
gadget_ckeditor.appcache
"
},
...
...
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_export_js.xml
View file @
da49251c
...
...
@@ -227,7 +227,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
9
59.65151.59597.35276
</string>
</value>
<value>
<string>
9
60.1258.37114.25275
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -245,7 +245,7 @@
</tuple>
<state>
<tuple>
<float>
1497
260154.62
</float>
<float>
1497
523908.75
</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