Commit da49251c authored by Vincent Bechu's avatar Vincent Bechu

erp5_officejs: add jabber client to zip export page

parent 7569322a
...@@ -11,8 +11,8 @@ ...@@ -11,8 +11,8 @@
(window.location.pathname.endsWith('/') ? '' : '/') + (window.location.pathname.endsWith('/') ? '' : '/') +
((spec.version !== undefined) ? ((spec.version !== undefined) ?
(spec.version + (spec.version.endsWith('/') ? '' : '/')) : "")); (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) { if (this._take_installer) {
this._relative_url_list = [ this._relative_url_list = [
this._prefix || "/", this._prefix || "/",
...@@ -68,12 +68,13 @@ ...@@ -68,12 +68,13 @@
AppCacheStorage.prototype.repair = function () { AppCacheStorage.prototype.repair = function () {
var storage = this, var storage = this,
prefix = storage._take_installer ? this._prefix + "development/" : ""; prefix = storage._prefix +
(storage._take_installer ? "development/" : "");
return new RSVP.Queue() return new RSVP.Queue()
.push(function () { .push(function () {
return jIO.util.ajax({ return jIO.util.ajax({
type: "GET", type: "GET",
url: storage._origin_url + storage._manifest url: storage._origin_url + storage._prefix + storage._manifest
}); });
}) })
.push(function (response) { .push(function (response) {
......
...@@ -239,7 +239,7 @@ ...@@ -239,7 +239,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>959.47786.31692.33024</string> </value> <value> <string>960.4069.29402.50824</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -257,7 +257,7 @@ ...@@ -257,7 +257,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1497260492.27</float> <float>1497527515.31</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
<option>Web Table Editor</option> <option>Web Table Editor</option>
<option>Image Editor</option> <option>Image Editor</option>
<option>Awesome Free Software Publisher List</option> <option>Awesome Free Software Publisher List</option>
<option>Jabber Client</option>
</select> </select>
</div> </div>
</div> </div>
......
...@@ -231,7 +231,7 @@ ...@@ -231,7 +231,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>959.47786.31692.33024</string> </value> <value> <string>960.1258.37114.25275</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -249,7 +249,7 @@ ...@@ -249,7 +249,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1497259706.13</float> <float>1497524309.99</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
...@@ -69,6 +69,16 @@ ...@@ -69,6 +69,16 @@
"no_installer": true, "no_installer": true,
"sub_gadget": [] "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": { "officejs_ckeditor_gadget": {
"cache": "gadget_ckeditor.appcache" "cache": "gadget_ckeditor.appcache"
}, },
......
...@@ -227,7 +227,7 @@ ...@@ -227,7 +227,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>959.65151.59597.35276</string> </value> <value> <string>960.1258.37114.25275</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -245,7 +245,7 @@ ...@@ -245,7 +245,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1497260154.62</float> <float>1497523908.75</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment