[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-3' - loleaflet/dist

Tor Lillqvist tml at collabora.com
Thu Apr 5 08:47:16 UTC 2018


 loleaflet/dist/framed.html |   28 ++++++++++++++++++++++++++--
 1 file changed, 26 insertions(+), 2 deletions(-)

New commits:
commit 15ddd9986d60feb6bb4862a8803182772d6fe227
Author: Tor Lillqvist <tml at collabora.com>
Date:   Wed Mar 28 19:25:02 2018 +0300

    Add more documentation
    
    Change-Id: Ib4514b3a2551d47b5402b7baa12877046ff9f7ac
    (cherry picked from commit 16aa8d58e90ed20f00d843fc95ccd18d71a2e50b)
    Reviewed-on: https://gerrit.libreoffice.org/52116
    Reviewed-by: Jan Holesovsky <kendy at collabora.com>
    Tested-by: Jan Holesovsky <kendy at collabora.com>

diff --git a/loleaflet/dist/framed.html b/loleaflet/dist/framed.html
index 18e60cca8..c3384b256 100644
--- a/loleaflet/dist/framed.html
+++ b/loleaflet/dist/framed.html
@@ -1,6 +1,9 @@
 <!DOCTYPE html>
 
-<!-- Proof of concept of running loleaflet.html in an iframe.
+<!-- Proof of concept of running loleaflet.html in an iframe. Also
+     shows how to, from outside the iframe, invoke Python scripting in
+     the underlying LibreOffice instance that manipulates the document
+     being edited.
 
      The top part of this page has several forms. The first one with
      three input fields: "x", "y", and "color", a submit button, and a
@@ -17,7 +20,9 @@
      event listener on this page, which writes it to the output field.
 
      The other forms call other Python functions in other files. (In
-     particular, in NamedRanges.py in the same directory.)
+     particular, in NamedRanges.py in the same directory.) The forms
+     invoke Python functions that list, add, and delete named ranges
+     in a Calc document being edited.
 
      To test this, do 'make run', and then in your browser open the
      equivalent of
@@ -34,6 +39,13 @@
     <title>Online Editor</title>
 
     <script>
+
+      // These functions named call* are invoked when submitting the
+      // forms defined in the body of this web page. They show how to
+      // post a message to the iframe where Online is running, that
+      // will cause a Python script in the underlying LibreOffice
+      // instance to be invoked.
+
       function callSetCellColor() {
         window.frames[0].postMessage(JSON.stringify({'MessageId': 'Host_PostmessageReady'}), '*');
         var x = document.forms[0].elements['x'].value;
@@ -105,10 +117,17 @@
                                      '*');
       }
 
+      // This function is invoked when the iframe posts a message back.
+
       function receiveMessage(event) {
         var msg = JSON.parse(event.data);
         console.log('==== framed.html receiveMessage: ' + event.data);
         console.log('                                 ' + msg);
+
+        // We are only interested in messages that are marked as being
+        // a result from a Python script invoked by one of the call*
+        // functions above.
+
         if (msg.hasOwnProperty('MessageId') &&
             msg.MessageId === 'CallPythonScript-Result' &&
             msg.hasOwnProperty('Values') &&
@@ -117,6 +136,7 @@
 	    msg.Values.success == 'true' &&
 	    msg.Values.hasOwnProperty('result') &&
 	    msg.Values.result.hasOwnProperty('value')) {
+          // We are only interested in the result of the SetCellColor and GetNamedRanges functions
           if (msg.Values.commandName === 'vnd.sun.star.script:SetCellColor.py$SetCellColor?language=Python&location=share') {
 	    document.forms['cell-colour-form'].elements['result'].readOnly = false;
 	    document.forms['cell-colour-form'].elements['result'].value = msg.Values.result.value;
@@ -140,7 +160,11 @@
           }
         }
       }
+
+      // 'main' code of this <script> block, run when page is being
+      // rendered. Install the message listener.
       window.addEventListener("message", receiveMessage, false);
+
     </script>
 
     <meta charset="utf-8">


More information about the Libreoffice-commits mailing list