genia.likes.science@gmail.com | c5f82a2 | 2013-05-08 02:44:35 -0700 | [diff] [blame] | 1 | <!doctype html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <title>easyXDM</title> |
| 5 | <script type="text/javascript" src="../easyXDM.debug.js"> |
| 6 | </script> |
| 7 | <script type="text/javascript"> |
| 8 | /** |
| 9 | * Request the use of the JSON object |
| 10 | */ |
| 11 | easyXDM.DomHelper.requiresJSON("../json2.js"); |
| 12 | </script> |
| 13 | <script type="text/javascript"> |
| 14 | /* Here we demo how to have two visible web applications communicate together. |
| 15 | * This is done by having the remote interface open a visible window and loading |
| 16 | * the application in this. |
| 17 | * Since the remote interface has access to the entire DOM (including javascript) |
| 18 | * of the opened window, the remote interface is able to interface freely with the |
| 19 | * remote web application and can serve as a bridge between the two applications. |
| 20 | */ |
| 21 | var REMOTE = (function(){ |
| 22 | var remote = location.href; |
| 23 | switch (location.host) { |
| 24 | case "provider.easyxdm.net": |
| 25 | location.href = remote.replace("provider", "consumer"); |
| 26 | break; |
| 27 | case "easyxdm.net": |
| 28 | remote = remote.replace("easyxdm.net", "consumer.easyxdm.net"); |
| 29 | break; |
| 30 | case "consumer.easyxdm.net": |
| 31 | remote = remote.replace("consumer", "provider"); |
| 32 | break; |
| 33 | case "xdm1": |
| 34 | remote = remote.replace("xdm1", "xdm2"); |
| 35 | break; |
| 36 | } |
| 37 | return remote.substring(0, remote.lastIndexOf("/")); |
| 38 | }()); |
| 39 | |
| 40 | |
| 41 | |
| 42 | |
| 43 | var proxy, win; |
| 44 | function openPopup(){ |
| 45 | if (win) { |
| 46 | // this allows to open new windows if the popup was closed |
| 47 | if (win.closed) { |
| 48 | win = window.open(REMOTE + '/blank.html', 'mainapp', "width=400, height=400"); |
| 49 | proxy.open("mainapp"); |
| 50 | } |
| 51 | return; |
| 52 | } |
| 53 | // open up the popup |
| 54 | win = window.open(REMOTE + '/blank.html', 'mainapp', "width=400, height=400"); |
| 55 | |
| 56 | document.getElementById("btn").disabled = ""; |
| 57 | |
| 58 | proxy = new easyXDM.Rpc(/** The configuration */{ |
| 59 | /** |
| 60 | * Register the url to name.html, this must be an absolute path |
| 61 | * or a path relative to the root. |
| 62 | * @field |
| 63 | */ |
| 64 | local: "../name.html", |
| 65 | swf: REMOTE + "/../easyxdm.swf", |
| 66 | /** |
| 67 | * Register the url to the remote interface |
| 68 | * @field |
| 69 | */ |
| 70 | remote: REMOTE + "/remote.html", |
| 71 | remoteHelper: REMOTE + "/../name.html" |
| 72 | }, { |
| 73 | remote: { |
| 74 | open: {}, |
| 75 | postMessage: {} |
| 76 | }, |
| 77 | local: { |
| 78 | /** |
| 79 | * Register the method that should handle incoming data |
| 80 | * @param {Object} data |
| 81 | * @param {String} origin |
| 82 | */ |
| 83 | postMessage: function(data){ |
| 84 | var div = document.createElement("div"); |
| 85 | div.innerHTML = "data from '" + proxy.origin + "'"; |
| 86 | document.body.appendChild(div); |
| 87 | for (var key in data) { |
| 88 | if (data.hasOwnProperty(key)) { |
| 89 | div = document.createElement("div"); |
| 90 | div.innerHTML = key + "=" + data[key]; |
| 91 | document.body.appendChild(div); |
| 92 | } |
| 93 | } |
| 94 | } |
| 95 | } |
| 96 | }); |
| 97 | |
| 98 | // lets tell the proxy to open up the window as soon as possible |
| 99 | proxy.open("mainapp"); |
| 100 | } |
| 101 | </script> |
| 102 | </head> |
| 103 | <body> |
| 104 | <div style="border:1px solid black;padding:3px;margin:10px;"> |
| 105 | <a href="index.html">Index of examples</a> |
| 106 | | <a href="http://github.com/oyvindkinsey/easyXDM/#readme">Readme at github</a> |
| 107 | | |
| 108 | | <a href="http://easyxdm.net/">easyXDM.net</a> |
| 109 | | <a href="http://groups.google.com/group/easyxdm">easyXDM at Google Groups</a> |
| 110 | <br/> |
| 111 | The examples are executing slower than the production build due to the extensive tracing. |
| 112 | <br/> |
| 113 | If you are alerted about a popup, then this is only the trace log feature. You can ignore this. |
| 114 | </div> |
| 115 | <!-- easyXDM.Debug.trace(msg) will output its messages to any element with the id "log" --> |
| 116 | <div id="log" style="height:100px;border:1px dotted black;overflow:auto"> |
| 117 | </div> |
| 118 | <input id="btnOpen" type="button" onclick="openPopup();" value="Open popup"/><!-- Send som data to the other side --><input id="btn" disabled="disabled" type="button" onclick="proxy.postMessage({a:'b',c:'d',e:'f'});" value="send data to remote"/> |
| 119 | <script type="text/javascript"> |
| 120 | var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); |
| 121 | document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); |
| 122 | </script> |
| 123 | <script type="text/javascript"> |
| 124 | if (location.host.indexOf("easyxdm.net") !== -1) { |
| 125 | try { |
| 126 | var pageTracker = _gat._getTracker("UA-9535591-3"); |
| 127 | pageTracker._setDomainName(".easyxdm.net"); |
| 128 | pageTracker._trackPageview(); |
| 129 | } |
| 130 | catch (err) { |
| 131 | } |
| 132 | } |
| 133 | </script> |
| 134 | </body> |
| 135 | </html> |