Commit 589b5f61 authored by Roque's avatar Roque

erp5_officejs: slideshow about page

parent e2a4bdef
......@@ -25,6 +25,7 @@
<script data-renderjs-configuration="web_page_module_dict" type="text/x-renderjs-configuration">{"title": "Web Page Documents", "filter_action": 1, "hide_add_button": 0, "history_previous_link": 1}</script>
<script data-renderjs-configuration="web_page_dict" type="text/x-renderjs-configuration">{"title": "Web Page Document", "editable": 1, "history_previous_link": 1}</script>
<script data-renderjs-configuration="erp5_attachment_synchro" type="text/x-renderjs-configuration"></script>
<script data-renderjs-configuration="about_page" type="text/x-renderjs-configuration">ojs_slideshow_editor_about</script>
<script data-renderjs-configuration="dropbox_app_key" type="text/x-renderjs-configuration">28fxd7m6ogxh6b5</script>
<div data-gadget-url="gadget_erp5_router.html" data-gadget-scope="erp5_router"></div>
</body>
......
......@@ -279,7 +279,7 @@
</item>
<item>
<key> <string>serial</string> </key>
<value> <string>993.27868.36160.25429</string> </value>
<value> <string>1001.44832.12780.392</string> </value>
</item>
<item>
<key> <string>state</string> </key>
......@@ -297,7 +297,7 @@
</tuple>
<state>
<tuple>
<float>1626794657.66</float>
<float>1658168015.52</float>
<string>UTC</string>
</tuple>
</state>
......
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Gadget OfficeJS Slideshow Editor About</title>
<script src="rsvp.js"></script>
<script src="renderjs.js"></script>
<script src="gadget_erp5_page_ojs_slideshow_editor_about.js"></script>
<link rel="stylesheet" href="gadget_erp5_page_ojs_about.css">
</head>
<body>
<div class="about-page">
<h1>OfficeJS Slideshow Editor</h1>
<p style="margin-bottom: 10px;">OfficeJS Slideshow Editor app is a progressive web application developed with <a href="https://renderjs.nexedi.com/">renderJS</a> and <a href="https://jio.nexedi.com">jIO</a> under the premises of <b>privacy</b> and <b>availability</b>, meaning users are free to choose their storage, can work offline and synchronize their work easily. Slideshow editor application is developed, maintained and used by <a href="https://www.nexedi.com/">Nexedi</a>, and its code can be found <a href="https://lab.nexedi.com/nexedi/erp5/tree/master/bt5/erp5_officejs" target="_blank">here</a>.</p>
<p></p>
<h1>Licence</h1>
<p>OfficeJS Slideshow Editor is <a href="http://www.fsf.org/">Free Software</a>, licensed under the terms of the <a href="https://www.gnu.org/licenses/gpl-2.0.html">GNU GPL v3 (or later)</a>. For details, please see <a href="https://www.nexedi.com/licensing">Nexedi licensing</a>.</p>
</div>
</body>
</html>
\ No newline at end of file
/*global window, rJS, RSVP, jIO */
/*jslint nomen: true, indent: 2, maxerr: 3 */
(function (window, rJS, RSVP, jIO) {
"use strict";
rJS(window)
/////////////////////////////////////////////////////////////////
// Acquired methods
/////////////////////////////////////////////////////////////////
.declareAcquiredMethod("getUrlFor", "getUrlFor")
.declareAcquiredMethod("updateHeader", "updateHeader")
.declareAcquiredMethod("getSetting", "getSetting")
.declareAcquiredMethod("jio_get", "jio_get")
.declareAcquiredMethod("jio_getAttachment", "jio_getAttachment")
.declareAcquiredMethod("notifySubmitting", "notifySubmitting")
.declareAcquiredMethod("notifySubmitted", "notifySubmitted")
/////////////////////////////////////////////////////////////////
// declared methods
/////////////////////////////////////////////////////////////////
.declareMethod("render", function (options) {
var gadget = this;
return new RSVP.Queue()
//TODO: get history previous link?
/*.push(function () {
return RSVP.all([
gadget.getUrlFor({command: 'display'})
]);
})*/
.push(function (url_list) {
return gadget.updateHeader({
page_title: "About Page"
});
});
});
}(window, rJS, RSVP, jIO));
\ No newline at end of file
......@@ -5,7 +5,10 @@ url_list = [
"slideshow_editor_app_logo.svg",
"slideeditor.gadget.html",
"slideeditor.gadget.js",
"slideeditor.gadget.css"
"slideeditor.gadget.css",
"gadget_erp5_page_ojs_slideshow_editor_about.html",
"gadget_erp5_page_ojs_slideshow_editor_about.js",
"gadget_erp5_page_ojs_about.css",
]
return url_list
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