# HG changeset patch
# User rougeronj
# Date 1434639196 -7200
# Node ID 1324bd8747ff50a34da7d92530841e2eada50997
# Parent 48be7ebb3187560110f252ccc417a0afd5c7ee27
grunt copy-server the new changes of the client
diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/FileSaver/FileSaver.js
--- a/server/php/basic/public_html/static/lib/FileSaver/FileSaver.js Thu Jun 18 16:50:54 2015 +0200
+++ b/server/php/basic/public_html/static/lib/FileSaver/FileSaver.js Thu Jun 18 16:53:16 2015 +0200
@@ -1,6 +1,6 @@
/* FileSaver.js
* A saveAs() FileSaver implementation.
- * 2015-03-04
+ * 2014-12-17
*
* By Eli Grey, http://eligrey.com
* License: X11/MIT
@@ -135,10 +135,6 @@
revoke(object_url);
return;
}
- // prepend BOM for UTF-8 XML and text/plain types
- if (/^\s*(?:text\/(?:plain|xml)|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(blob.type)) {
- blob = new Blob(["\ufeff", blob], {type: blob.type});
- }
// Object and web filesystem URLs have a problem saving in Google Chrome when
// viewed in a tab, so I force save with application/octet-stream
// http://code.google.com/p/chromium/issues/detail?id=91158
@@ -240,7 +236,7 @@
// with an attribute `content` that corresponds to the window
if (typeof module !== "undefined" && module.exports) {
- module.exports.saveAs = saveAs;
+ module.exports = saveAs;
} else if ((typeof define !== "undefined" && define !== null) && (define.amd != null)) {
define([], function() {
return saveAs;
diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/FileSaver/FileSaver.min.js
--- a/server/php/basic/public_html/static/lib/FileSaver/FileSaver.min.js Thu Jun 18 16:50:54 2015 +0200
+++ b/server/php/basic/public_html/static/lib/FileSaver/FileSaver.min.js Thu Jun 18 16:53:16 2015 +0200
@@ -1,2 +1,2 @@
/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */
-var saveAs=saveAs||"undefined"!=typeof navigator&&navigator.msSaveOrOpenBlob&&navigator.msSaveOrOpenBlob.bind(navigator)||function(e){"use strict";if("undefined"==typeof navigator||!/MSIE [1-9]\./.test(navigator.userAgent)){var t=e.document,n=function(){return e.URL||e.webkitURL||e},o=t.createElementNS("http://www.w3.org/1999/xhtml","a"),r="download"in o,i=function(n){var o=t.createEvent("MouseEvents");o.initMouseEvent("click",!0,!1,e,0,0,0,0,0,!1,!1,!1,!1,0,null),n.dispatchEvent(o)},a=e.webkitRequestFileSystem,c=e.requestFileSystem||a||e.mozRequestFileSystem,s=function(t){(e.setImmediate||e.setTimeout)(function(){throw t},0)},u="application/octet-stream",f=0,d=500,l=function(t){var o=function(){"string"==typeof t?n().revokeObjectURL(t):t.remove()};e.chrome?o():setTimeout(o,d)},v=function(e,t,n){t=[].concat(t);for(var o=t.length;o--;){var r=e["on"+t[o]];if("function"==typeof r)try{r.call(e,n||e)}catch(i){s(i)}}},p=function(t,s){var d,p,w,y=this,m=t.type,S=!1,h=function(){v(y,"writestart progress write writeend".split(" "))},O=function(){if((S||!d)&&(d=n().createObjectURL(t)),p)p.location.href=d;else{var o=e.open(d,"_blank");void 0==o&&"undefined"!=typeof safari&&(e.location.href=d)}y.readyState=y.DONE,h(),l(d)},b=function(e){return function(){return y.readyState!==y.DONE?e.apply(this,arguments):void 0}},g={create:!0,exclusive:!1};return y.readyState=y.INIT,s||(s="download"),r?(d=n().createObjectURL(t),o.href=d,o.download=s,i(o),y.readyState=y.DONE,h(),void l(d)):(/^\s*(?:text\/(?:plain|xml)|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(t.type)&&(t=new Blob(["",t],{type:t.type})),e.chrome&&m&&m!==u&&(w=t.slice||t.webkitSlice,t=w.call(t,0,t.size,u),S=!0),a&&"download"!==s&&(s+=".download"),(m===u||a)&&(p=e),c?(f+=t.size,void c(e.TEMPORARY,f,b(function(e){e.root.getDirectory("saved",g,b(function(e){var n=function(){e.getFile(s,g,b(function(e){e.createWriter(b(function(n){n.onwriteend=function(t){p.location.href=e.toURL(),y.readyState=y.DONE,v(y,"writeend",t),l(e)},n.onerror=function(){var e=n.error;e.code!==e.ABORT_ERR&&O()},"writestart progress write abort".split(" ").forEach(function(e){n["on"+e]=y["on"+e]}),n.write(t),y.abort=function(){n.abort(),y.readyState=y.DONE},y.readyState=y.WRITING}),O)}),O)};e.getFile(s,{create:!1},b(function(e){e.remove(),n()}),b(function(e){e.code===e.NOT_FOUND_ERR?n():O()}))}),O)}),O)):void O())},w=p.prototype,y=function(e,t){return new p(e,t)};return w.abort=function(){var e=this;e.readyState=e.DONE,v(e,"abort")},w.readyState=w.INIT=0,w.WRITING=1,w.DONE=2,w.error=w.onwritestart=w.onprogress=w.onwrite=w.onabort=w.onerror=w.onwriteend=null,y}}("undefined"!=typeof self&&self||"undefined"!=typeof window&&window||this.content);"undefined"!=typeof module&&module.exports?module.exports.saveAs=saveAs:"undefined"!=typeof define&&null!==define&&null!=define.amd&&define([],function(){return saveAs});
\ No newline at end of file
+var saveAs=saveAs||typeof navigator!=="undefined"&&navigator.msSaveOrOpenBlob&&navigator.msSaveOrOpenBlob.bind(navigator)||function(view){"use strict";if(typeof navigator!=="undefined"&&/MSIE [1-9]\./.test(navigator.userAgent)){return}var doc=view.document,get_URL=function(){return view.URL||view.webkitURL||view},save_link=doc.createElementNS("http://www.w3.org/1999/xhtml","a"),can_use_save_link="download"in save_link,click=function(node){var event=doc.createEvent("MouseEvents");event.initMouseEvent("click",true,false,view,0,0,0,0,0,false,false,false,false,0,null);node.dispatchEvent(event)},webkit_req_fs=view.webkitRequestFileSystem,req_fs=view.requestFileSystem||webkit_req_fs||view.mozRequestFileSystem,throw_outside=function(ex){(view.setImmediate||view.setTimeout)(function(){throw ex},0)},force_saveable_type="application/octet-stream",fs_min_size=0,arbitrary_revoke_timeout=500,revoke=function(file){var revoker=function(){if(typeof file==="string"){get_URL().revokeObjectURL(file)}else{file.remove()}};if(view.chrome){revoker()}else{setTimeout(revoker,arbitrary_revoke_timeout)}},dispatch=function(filesaver,event_types,event){event_types=[].concat(event_types);var i=event_types.length;while(i--){var listener=filesaver["on"+event_types[i]];if(typeof listener==="function"){try{listener.call(filesaver,event||filesaver)}catch(ex){throw_outside(ex)}}}},FileSaver=function(blob,name){var filesaver=this,type=blob.type,blob_changed=false,object_url,target_view,dispatch_all=function(){dispatch(filesaver,"writestart progress write writeend".split(" "))},fs_error=function(){if(blob_changed||!object_url){object_url=get_URL().createObjectURL(blob)}if(target_view){target_view.location.href=object_url}else{var new_tab=view.open(object_url,"_blank");if(new_tab==undefined&&typeof safari!=="undefined"){view.location.href=object_url}}filesaver.readyState=filesaver.DONE;dispatch_all();revoke(object_url)},abortable=function(func){return function(){if(filesaver.readyState!==filesaver.DONE){return func.apply(this,arguments)}}},create_if_not_found={create:true,exclusive:false},slice;filesaver.readyState=filesaver.INIT;if(!name){name="download"}if(can_use_save_link){object_url=get_URL().createObjectURL(blob);save_link.href=object_url;save_link.download=name;click(save_link);filesaver.readyState=filesaver.DONE;dispatch_all();revoke(object_url);return}if(view.chrome&&type&&type!==force_saveable_type){slice=blob.slice||blob.webkitSlice;blob=slice.call(blob,0,blob.size,force_saveable_type);blob_changed=true}if(webkit_req_fs&&name!=="download"){name+=".download"}if(type===force_saveable_type||webkit_req_fs){target_view=view}if(!req_fs){fs_error();return}fs_min_size+=blob.size;req_fs(view.TEMPORARY,fs_min_size,abortable(function(fs){fs.root.getDirectory("saved",create_if_not_found,abortable(function(dir){var save=function(){dir.getFile(name,create_if_not_found,abortable(function(file){file.createWriter(abortable(function(writer){writer.onwriteend=function(event){target_view.location.href=file.toURL();filesaver.readyState=filesaver.DONE;dispatch(filesaver,"writeend",event);revoke(file)};writer.onerror=function(){var error=writer.error;if(error.code!==error.ABORT_ERR){fs_error()}};"writestart progress write abort".split(" ").forEach(function(event){writer["on"+event]=filesaver["on"+event]});writer.write(blob);filesaver.abort=function(){writer.abort();filesaver.readyState=filesaver.DONE};filesaver.readyState=filesaver.WRITING}),fs_error)}),fs_error)};dir.getFile(name,{create:false},abortable(function(file){file.remove();save()}),abortable(function(ex){if(ex.code===ex.NOT_FOUND_ERR){save()}else{fs_error()}}))}),fs_error)}),fs_error)},FS_proto=FileSaver.prototype,saveAs=function(blob,name){return new FileSaver(blob,name)};FS_proto.abort=function(){var filesaver=this;filesaver.readyState=filesaver.DONE;dispatch(filesaver,"abort")};FS_proto.readyState=FS_proto.INIT=0;FS_proto.WRITING=1;FS_proto.DONE=2;FS_proto.error=FS_proto.onwritestart=FS_proto.onprogress=FS_proto.onwrite=FS_proto.onabort=FS_proto.onerror=FS_proto.onwriteend=null;return saveAs}(typeof self!=="undefined"&&self||typeof window!=="undefined"&&window||this.content);if(typeof module!=="undefined"&&module.exports){module.exports=saveAs}else if(typeof define!=="undefined"&&define!==null&&define.amd!=null){define([],function(){return saveAs})}
diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/FileSaver/LICENSE.md
--- a/server/php/basic/public_html/static/lib/FileSaver/LICENSE.md Thu Jun 18 16:50:54 2015 +0200
+++ b/server/php/basic/public_html/static/lib/FileSaver/LICENSE.md Thu Jun 18 16:53:16 2015 +0200
@@ -1,4 +1,4 @@
-Copyright © 2015 [Eli Grey][1].
+Copyright © 2014 [Eli Grey][1].
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/FileSaver/README.md
--- a/server/php/basic/public_html/static/lib/FileSaver/README.md Thu Jun 18 16:50:54 2015 +0200
+++ b/server/php/basic/public_html/static/lib/FileSaver/README.md Thu Jun 18 16:53:16 2015 +0200
@@ -10,7 +10,7 @@
sent to an external server.
Looking for `canvas.toBlob()` for saving canvases? Check out
-[canvas-toBlob.js][2] for a cross-browser implementation.
+[canvas-toBlob.js](https://github.com/eligrey/canvas-toBlob.js) for a cross-browser implementation.
Supported browsers
------------------
@@ -19,10 +19,10 @@
| -------------- | ------------- | ------------ | ------------- | ------------ |
| Firefox 20+ | Blob | Yes | 800 MiB | None |
| Firefox < 20 | data: URI | No | n/a | [Blob.js](https://github.com/eligrey/Blob.js) |
-| Chrome | Blob | Yes | [500 MiB][3] | None |
-| Chrome for Android | Blob | Yes | [500 MiB][3] | None |
+| Chrome | Blob | Yes | 345 MiB | None |
+| Chrome for Android | Blob | Yes | 345 MiB | None |
| IE 10+ | Blob | Yes | 600 MiB | None |
-| Opera 15+ | Blob | Yes | 500 MiB | None |
+| Opera 15+ | Blob | Yes | 345 MiB | None |
| Opera < 15 | data: URI | No | n/a | [Blob.js](https://github.com/eligrey/Blob.js) |
| Safari 6.1+* | Blob | No | ? | None |
| Safari < 6 | data: URI | No | n/a | [Blob.js](https://github.com/eligrey/Blob.js) |
@@ -66,8 +66,8 @@
saveAs(blob, "hello world.txt");
```
-The standard W3C File API [`Blob`][4] interface is not available in all browsers.
-[Blob.js][5] is a cross-browser `Blob` implementation that solves this.
+The standard W3C File API [`Blob`][3] interface is not available in all browsers.
+[Blob.js][4] is a cross-browser `Blob` implementation that solves this.
### Saving a canvas
@@ -80,17 +80,15 @@
```
Note: The standard HTML5 `canvas.toBlob()` method is not available in all browsers.
-[canvas-toBlob.js][6] is a cross-browser `canvas.toBlob()` that polyfills this.
+[canvas-toBlob.js][5] is a cross-browser `canvas.toBlob()` that polyfills this.

[1]: http://eligrey.com/demos/FileSaver.js/
- [2]: https://github.com/eligrey/canvas-toBlob.js
- [3]: https://code.google.com/p/chromium/issues/detail?id=375297
- [4]: https://developer.mozilla.org/en-US/docs/DOM/Blob
- [5]: https://github.com/eligrey/Blob.js
- [6]: https://github.com/eligrey/canvas-toBlob.js
+ [3]: https://developer.mozilla.org/en-US/docs/DOM/Blob
+ [4]: https://github.com/eligrey/Blob.js
+ [5]: https://github.com/eligrey/canvas-toBlob.js
Contributing
------------
@@ -102,8 +100,3 @@
```
Please make sure you build a production version before submitting a pull request.
-
-Bower Installation
-------------------
-
-Please see the [this repo](http://github.com/Teleborder/FileSaver.js) for a bower-compatible fork of FileSaver.js, available under the package name `file-saver.js`.
diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/lodash/lodash.compat.js
--- a/server/php/basic/public_html/static/lib/lodash/lodash.compat.js Thu Jun 18 16:50:54 2015 +0200
+++ b/server/php/basic/public_html/static/lib/lodash/lodash.compat.js Thu Jun 18 16:53:16 2015 +0200
@@ -1,11 +1,11 @@
/**
* @license
- * Lo-Dash 2.4.1 (Custom Build) f(h,y))&&((u||v)&&h.push(y),s.push(g))}return v?(l(h.k),c(h)):u&&l(h),s}function lt(n){return function(t,e,r){var u={};e=J.createCallback(e,r,3),r=-1;var o=t?t.length:0;if(typeof o=="number")for(;++r 3&&"function"==typeof r[t-2])var e=Q(r[--t-1],r[t--],2);else t>2&&"function"==typeof r[t-1]&&(e=r[--t]);for(var u=p(arguments,1,t),o=-1,a=i(),f=i();++o
' + -__e(edge.description) + +((__t = (edge.description)) == null ? '' : __t) + '
\n'; if (options.show_edge_tooltip_nodes) { ; __p += '\n\n ' + @@ -426,12 +426,38 @@ '" target="_blank">\n
\n'; } ; __p += ' '; + if (options.change_types) { ; +__p += '\n\n \n \n
\n'; + } ; +__p += ' '; if (options.show_node_editor_description) { ; __p += '\n\n \n \n
\n'; +'\n '; + if (options.show_node_editor_description_richtext) { ; +__p += '\n' + -__e(node.description) + +((__t = (node.description)) == null ? '' : __t) + '
\n'; } ; __p += ' '; @@ -582,7 +608,50 @@ __e( shortenText(node.created_by_title, 25) ) + '\n \n'; } ; -__p += '\n'; +__p += '\n ' + +__e(renkan.translate("Link to the node")) + +'\n'; + +} +return __p +}; + +this["renkanJST"]["templates/nodeeditor_video.html"] = function(obj) { +obj || (obj = {}); +var __t, __p = '', __e = _.escape, __j = Array.prototype.join; +function print() { __p += __j.call(arguments, '') } +with (obj) { +__p += '\n \n \n
\n',options.show_edge_editor_uri&&(__p+="\n \n ',options.properties.length&&(__p+="\n\n \n \n
\n")),__p+="\n",options.show_edge_editor_style&&(__p+='\n\n '+__e(renkan.translate("Change edge direction"))+"\n
\n"),__p+="\n",options.show_edge_editor_nodes&&(__p+='\n\n '+__e(renkan.translate("From:"))+'\n \n '+__e(shortenText(edge.from_title,25))+'\n
\n\n '+__e(renkan.translate("To:"))+'\n \n '+__e(shortenText(edge.to_title,25))+"\n
\n"),__p+="\n",options.show_edge_editor_creator&&edge.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(edge.created_by_title,25))+"\n
\n"),__p+="\n";return __p},this.renkanJST["templates/edgeeditor_readonly.html"]=function(obj){obj||(obj={});{var __p="",__e=_.escape;Array.prototype.join}with(obj)__p+='"+__e(edge.description)+"
\n",options.show_edge_tooltip_nodes&&(__p+='\n\n '+__e(renkan.translate("From:"))+'\n \n '+__e(shortenText(edge.from_title,25))+'\n
\n\n '+__e(renkan.translate("To:"))+'\n \n '+__e(shortenText(edge.to_title,25))+"\n
\n"),__p+="\n",options.show_edge_tooltip_creator&&edge.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(edge.created_by_title,25))+"\n
\n"),__p+="\n";return __p},this.renkanJST["templates/ldtjson-bin/annotationtemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='"+(null==(__t=hdescription)?"":__t)+"
\nStart: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'
\n \n"+(null==(__t=hdescription)?"":__t)+"
\nStart: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'
\n \n
\n '+(null==(__t=hdescription)?"":__t)+"
\n "),__p+="\n ",image&&(__p+='\n \n '),__p+="\n\n \n \n
\n',options.show_node_editor_uri&&(__p+="\n \n'),__p+=" ",options.show_node_editor_description&&(__p+="\n\n \n \n
\n"),__p+=" ",options.show_node_editor_size&&(__p+='\n\n '+__e(renkan.translate("Size:"))+'\n -\n '+__e(node.size)+'\n +\n
\n'),__p+=" ",options.show_node_editor_style&&(__p+='\n\n \n
\n \n",options.allow_image_upload&&(__p+="\n\n \n \n
\n')),__p+=" ",options.show_node_editor_creator&&node.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(node.created_by_title,25))+"\n
\n"),__p+=" ",options.change_shapes&&(__p+="\n\n \n \n
\n"),__p+="\n";return __p},this.renkanJST["templates/nodeeditor_readonly.html"]=function(obj){obj||(obj={});{var __p="",__e=_.escape;Array.prototype.join}with(obj)__p+=''+__e(node.description)+"
\n"),__p+=" ",node.image&&options.show_node_tooltip_image&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(node.created_by_title,25))+"\n
\n"),__p+="\n";return __p},this.renkanJST["templates/scene.html"]=function(obj){function print(){__p+=__j.call(arguments,"")}obj||(obj={});var __p="",__e=_.escape,__j=Array.prototype.join;with(obj)options.show_top_bar&&(__p+='\n
\n '+(null==(__t=hdescription)?"":__t)+"
\n\n \n \n
\n',options.show_edge_editor_uri&&(__p+="\n \n ',options.properties.length&&(__p+="\n\n \n \n
\n")),__p+="\n",options.show_edge_editor_style&&(__p+='\n\n '+__e(renkan.translate("Change edge direction"))+"\n
\n"),__p+="\n",options.show_edge_editor_nodes&&(__p+='\n\n '+__e(renkan.translate("From:"))+'\n \n '+__e(shortenText(edge.from_title,25))+'\n
\n\n '+__e(renkan.translate("To:"))+'\n \n '+__e(shortenText(edge.to_title,25))+"\n
\n"),__p+="\n",options.show_edge_editor_creator&&edge.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(edge.created_by_title,25))+"\n
\n"),__p+="\n";return __p},this.renkanJST["templates/edgeeditor_readonly.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+='"+(null==(__t=edge.description)?"":__t)+"
\n",options.show_edge_tooltip_nodes&&(__p+='\n\n '+__e(renkan.translate("From:"))+'\n \n '+__e(shortenText(edge.from_title,25))+'\n
\n\n '+__e(renkan.translate("To:"))+'\n \n '+__e(shortenText(edge.to_title,25))+"\n
\n"),__p+="\n",options.show_edge_tooltip_creator&&edge.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(edge.created_by_title,25))+"\n
\n"),__p+="\n";return __p},this.renkanJST["templates/ldtjson-bin/annotationtemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='"+(null==(__t=hdescription)?"":__t)+"
\nStart: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'
\n \n"+(null==(__t=hdescription)?"":__t)+"
\nStart: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'
\n \n
\n '+(null==(__t=hdescription)?"":__t)+"
\n "),__p+="\n ",image&&(__p+='\n \n '),__p+="\n\n \n \n
\n',options.show_node_editor_uri&&(__p+="\n \n'),__p+=" ",options.change_types&&(__p+="\n\n \n \n
\n"),__p+=" ",options.show_node_editor_description&&(__p+="\n\n \n ",__p+=options.show_node_editor_description_richtext?'\n
\n '+__e(renkan.translate("Size:"))+'\n -\n '+__e(node.size)+'\n +\n
\n'),__p+=" ",options.show_node_editor_style&&(__p+='\n\n \n
\n \n",options.allow_image_upload&&(__p+="\n\n \n \n
\n')),__p+=" ",options.show_node_editor_creator&&node.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(node.created_by_title,25))+"\n
\n"),__p+=" ",options.change_shapes&&(__p+="\n\n \n \n
\n"),__p+="\n";return __p},this.renkanJST["templates/nodeeditor_readonly.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+=''+(null==(__t=node.description)?"":__t)+"
\n"),__p+=" ",node.image&&options.show_node_tooltip_image&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(node.created_by_title,25))+"\n
\n"),__p+='\n '+__e(renkan.translate("Link to the node"))+"\n";return __p},this.renkanJST["templates/nodeeditor_video.html"]=function(obj){obj||(obj={});{var __p="",__e=_.escape;Array.prototype.join}with(obj)__p+='
\n '+(null==(__t=hdescription)?"":__t)+"
\n\\n \\n \\n
\\n';\n if (options.show_edge_editor_uri) { ;\n__p += '\\n \\n ';\n if (options.properties.length) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } } ;\n__p += '\\n';\n if (options.show_edge_editor_style) { ;\n__p += '\\n\\n ' +\n__e( renkan.translate(\"Change edge direction\") ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_editor_nodes) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"From:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.from_title, 25) ) +\n'\\n
\\n\\n ' +\n__e(renkan.translate(\"To:\")) +\n'\\n %-edge.to_color%>;\">\\n ' +\n__e( shortenText(edge.to_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_editor_creator && edge.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n ;\">\\n ' +\n__e( shortenText(edge.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/edgeeditor_readonly.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n__p += '\\n ' +\n__e( edge.short_uri ) +\n'\\n
\\n';\n } ;\n__p += '\\n' +\n__e(edge.description) +\n'
\\n';\n if (options.show_edge_tooltip_nodes) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"From:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.from_title, 25) ) +\n'\\n
\\n\\n ' +\n__e(renkan.translate(\"To:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.to_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_tooltip_creator && edge.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/annotationtemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\nStart: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'
\\n \\n' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\nStart: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'
\\n \\n' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\n ';\n } ;\n__p += '\\n ';\n if (image) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n\\n \\n \\n
\\n';\n if (options.show_node_editor_uri) { ;\n__p += '\\n \\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_description) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_size) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Size:\")) +\n'\\n -\\n ' +\n__e(node.size) +\n'\\n +\\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_style) { ;\n__p += '\\n\\n \\n
\\n \\n';\n if (options.allow_image_upload) { ;\n__p += '\\n\\n \\n \\n
\\n';\n };\n\n } ;\n__p += ' ';\n if (options.show_node_editor_creator && node.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(node.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += ' ';\n if (options.change_shapes) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/nodeeditor_readonly.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n__p += '\\n ' +\n__e(node.short_uri) +\n'\\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_tooltip_description) { ;\n__p += '\\n' +\n__e(node.description) +\n'
\\n';\n } ;\n__p += ' ';\n if (node.image && options.show_node_tooltip_image) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(node.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/scene.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n\n if (options.show_top_bar) { ;\n__p += '\\n' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\n\\n \\n \\n
\\n';\n if (options.show_edge_editor_uri) { ;\n__p += '\\n \\n ';\n if (options.properties.length) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } } ;\n__p += '\\n';\n if (options.show_edge_editor_style) { ;\n__p += '\\n\\n ' +\n__e( renkan.translate(\"Change edge direction\") ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_editor_nodes) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"From:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.from_title, 25) ) +\n'\\n
\\n\\n ' +\n__e(renkan.translate(\"To:\")) +\n'\\n %-edge.to_color%>;\">\\n ' +\n__e( shortenText(edge.to_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_editor_creator && edge.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n ;\">\\n ' +\n__e( shortenText(edge.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/edgeeditor_readonly.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n__p += '\\n ' +\n__e( edge.short_uri ) +\n'\\n
\\n';\n } ;\n__p += '\\n' +\n((__t = (edge.description)) == null ? '' : __t) +\n'
\\n';\n if (options.show_edge_tooltip_nodes) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"From:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.from_title, 25) ) +\n'\\n
\\n\\n ' +\n__e(renkan.translate(\"To:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.to_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_tooltip_creator && edge.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/annotationtemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\nStart: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'
\\n \\n' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\nStart: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'
\\n \\n' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\n ';\n } ;\n__p += '\\n ';\n if (image) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n\\n \\n \\n
\\n';\n if (options.show_node_editor_uri) { ;\n__p += '\\n \\n';\n } ;\n__p += ' ';\n if (options.change_types) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_description) { ;\n__p += '\\n\\n \\n ';\n if (options.show_node_editor_description_richtext) { ;\n__p += '\\n
\\n ' +\n__e(renkan.translate(\"Size:\")) +\n'\\n -\\n ' +\n__e(node.size) +\n'\\n +\\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_style) { ;\n__p += '\\n\\n \\n
\\n \\n';\n if (options.allow_image_upload) { ;\n__p += '\\n\\n \\n \\n
\\n';\n };\n\n } ;\n__p += ' ';\n if (options.show_node_editor_creator && node.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(node.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += ' ';\n if (options.change_shapes) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/nodeeditor_readonly.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n__p += '\\n ' +\n__e(node.short_uri) +\n'\\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_tooltip_description) { ;\n__p += '\\n' +\n((__t = (node.description)) == null ? '' : __t) +\n'
\\n';\n } ;\n__p += ' ';\n if (node.image && options.show_node_tooltip_image) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(node.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n ' +\n__e(renkan.translate(\"Link to the node\")) +\n'\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/nodeeditor_video.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n__p += '' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\nf(h,y))&&((u||v)&&h.push(y),s.push(g))}return v?(l(h.k),c(h)):u&&l(h),s}function lt(n){return function(t,e,r){var u={};e=J.createCallback(e,r,3),r=-1;var o=t?t.length:0;if(typeof o=="number")for(;++r 3&&"function"==typeof r[t-2])var e=Q(r[--t-1],r[t--],2);else t>2&&"function"==typeof r[t-1]&&(e=r[--t]);for(var u=p(arguments,1,t),o=-1,a=i(),f=i();++o
' + -__e(edge.description) + +((__t = (edge.description)) == null ? '' : __t) + '
\n'; if (options.show_edge_tooltip_nodes) { ; __p += '\n\n ' + @@ -426,12 +426,38 @@ '" target="_blank">
\n \n \n
\n'; + } ; +__p += ' '; if (options.show_node_editor_description) { ; __p += '\n\n \n \n
\n'; +'\n '; + if (options.show_node_editor_description_richtext) { ; +__p += '\n' + -__e(node.description) + +((__t = (node.description)) == null ? '' : __t) + '
\n'; } ; __p += ' '; @@ -582,7 +608,50 @@ __e( shortenText(node.created_by_title, 25) ) + '\n \n'; } ; -__p += '\n'; +__p += '\n ' + +__e(renkan.translate("Link to the node")) + +'\n'; + +} +return __p +}; + +this["renkanJST"]["templates/nodeeditor_video.html"] = function(obj) { +obj || (obj = {}); +var __t, __p = '', __e = _.escape, __j = Array.prototype.join; +function print() { __p += __j.call(arguments, '') } +with (obj) { +__p += '\n \n \n
\n',options.show_edge_editor_uri&&(__p+="\n \n ',options.properties.length&&(__p+="\n\n \n \n
\n")),__p+="\n",options.show_edge_editor_style&&(__p+='\n\n '+__e(renkan.translate("Change edge direction"))+"\n
\n"),__p+="\n",options.show_edge_editor_nodes&&(__p+='\n\n '+__e(renkan.translate("From:"))+'\n \n '+__e(shortenText(edge.from_title,25))+'\n
\n\n '+__e(renkan.translate("To:"))+'\n \n '+__e(shortenText(edge.to_title,25))+"\n
\n"),__p+="\n",options.show_edge_editor_creator&&edge.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(edge.created_by_title,25))+"\n
\n"),__p+="\n";return __p},this.renkanJST["templates/edgeeditor_readonly.html"]=function(obj){obj||(obj={});{var __p="",__e=_.escape;Array.prototype.join}with(obj)__p+='"+__e(edge.description)+"
\n",options.show_edge_tooltip_nodes&&(__p+='\n\n '+__e(renkan.translate("From:"))+'\n \n '+__e(shortenText(edge.from_title,25))+'\n
\n\n '+__e(renkan.translate("To:"))+'\n \n '+__e(shortenText(edge.to_title,25))+"\n
\n"),__p+="\n",options.show_edge_tooltip_creator&&edge.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(edge.created_by_title,25))+"\n
\n"),__p+="\n";return __p},this.renkanJST["templates/ldtjson-bin/annotationtemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='"+(null==(__t=hdescription)?"":__t)+"
\nStart: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'
\n \n"+(null==(__t=hdescription)?"":__t)+"
\nStart: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'
\n \n
\n '+(null==(__t=hdescription)?"":__t)+"
\n "),__p+="\n ",image&&(__p+='\n \n '),__p+="\n\n \n \n
\n',options.show_node_editor_uri&&(__p+="\n \n'),__p+=" ",options.show_node_editor_description&&(__p+="\n\n \n \n
\n"),__p+=" ",options.show_node_editor_size&&(__p+='\n\n '+__e(renkan.translate("Size:"))+'\n -\n '+__e(node.size)+'\n +\n
\n'),__p+=" ",options.show_node_editor_style&&(__p+='\n\n \n
\n \n",options.allow_image_upload&&(__p+="\n\n \n \n
\n')),__p+=" ",options.show_node_editor_creator&&node.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(node.created_by_title,25))+"\n
\n"),__p+=" ",options.change_shapes&&(__p+="\n\n \n \n
\n"),__p+="\n";return __p},this.renkanJST["templates/nodeeditor_readonly.html"]=function(obj){obj||(obj={});{var __p="",__e=_.escape;Array.prototype.join}with(obj)__p+=''+__e(node.description)+"
\n"),__p+=" ",node.image&&options.show_node_tooltip_image&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(node.created_by_title,25))+"\n
\n"),__p+="\n";return __p},this.renkanJST["templates/scene.html"]=function(obj){function print(){__p+=__j.call(arguments,"")}obj||(obj={});var __p="",__e=_.escape,__j=Array.prototype.join;with(obj)options.show_top_bar&&(__p+='\n
\n '+(null==(__t=hdescription)?"":__t)+"
\n\n \n \n
\n',options.show_edge_editor_uri&&(__p+="\n \n ',options.properties.length&&(__p+="\n\n \n \n
\n")),__p+="\n",options.show_edge_editor_style&&(__p+='\n\n '+__e(renkan.translate("Change edge direction"))+"\n
\n"),__p+="\n",options.show_edge_editor_nodes&&(__p+='\n\n '+__e(renkan.translate("From:"))+'\n \n '+__e(shortenText(edge.from_title,25))+'\n
\n\n '+__e(renkan.translate("To:"))+'\n \n '+__e(shortenText(edge.to_title,25))+"\n
\n"),__p+="\n",options.show_edge_editor_creator&&edge.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(edge.created_by_title,25))+"\n
\n"),__p+="\n";return __p},this.renkanJST["templates/edgeeditor_readonly.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+='"+(null==(__t=edge.description)?"":__t)+"
\n",options.show_edge_tooltip_nodes&&(__p+='\n\n '+__e(renkan.translate("From:"))+'\n \n '+__e(shortenText(edge.from_title,25))+'\n
\n\n '+__e(renkan.translate("To:"))+'\n \n '+__e(shortenText(edge.to_title,25))+"\n
\n"),__p+="\n",options.show_edge_tooltip_creator&&edge.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(edge.created_by_title,25))+"\n
\n"),__p+="\n";return __p},this.renkanJST["templates/ldtjson-bin/annotationtemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='"+(null==(__t=hdescription)?"":__t)+"
\nStart: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'
\n \n"+(null==(__t=hdescription)?"":__t)+"
\nStart: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'
\n \n
\n '+(null==(__t=hdescription)?"":__t)+"
\n "),__p+="\n ",image&&(__p+='\n \n '),__p+="\n\n \n \n
\n',options.show_node_editor_uri&&(__p+="\n \n'),__p+=" ",options.change_types&&(__p+="\n\n \n \n
\n"),__p+=" ",options.show_node_editor_description&&(__p+="\n\n \n ",__p+=options.show_node_editor_description_richtext?'\n
\n '+__e(renkan.translate("Size:"))+'\n -\n '+__e(node.size)+'\n +\n
\n'),__p+=" ",options.show_node_editor_style&&(__p+='\n\n \n
\n \n",options.allow_image_upload&&(__p+="\n\n \n \n
\n')),__p+=" ",options.show_node_editor_creator&&node.has_creator&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(node.created_by_title,25))+"\n
\n"),__p+=" ",options.change_shapes&&(__p+="\n\n \n \n
\n"),__p+="\n";return __p},this.renkanJST["templates/nodeeditor_readonly.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+=''+(null==(__t=node.description)?"":__t)+"
\n"),__p+=" ",node.image&&options.show_node_tooltip_image&&(__p+='\n\n '+__e(renkan.translate("Created by:"))+'\n \n '+__e(shortenText(node.created_by_title,25))+"\n
\n"),__p+='\n '+__e(renkan.translate("Link to the node"))+"\n";return __p},this.renkanJST["templates/nodeeditor_video.html"]=function(obj){obj||(obj={});{var __p="",__e=_.escape;Array.prototype.join}with(obj)__p+='
\n '+(null==(__t=hdescription)?"":__t)+"
\n\\n \\n \\n
\\n';\n if (options.show_edge_editor_uri) { ;\n__p += '\\n \\n ';\n if (options.properties.length) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } } ;\n__p += '\\n';\n if (options.show_edge_editor_style) { ;\n__p += '\\n\\n ' +\n__e( renkan.translate(\"Change edge direction\") ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_editor_nodes) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"From:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.from_title, 25) ) +\n'\\n
\\n\\n ' +\n__e(renkan.translate(\"To:\")) +\n'\\n %-edge.to_color%>;\">\\n ' +\n__e( shortenText(edge.to_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_editor_creator && edge.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n ;\">\\n ' +\n__e( shortenText(edge.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/edgeeditor_readonly.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n__p += '\\n ' +\n__e( edge.short_uri ) +\n'\\n
\\n';\n } ;\n__p += '\\n' +\n__e(edge.description) +\n'
\\n';\n if (options.show_edge_tooltip_nodes) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"From:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.from_title, 25) ) +\n'\\n
\\n\\n ' +\n__e(renkan.translate(\"To:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.to_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_tooltip_creator && edge.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/annotationtemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\nStart: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'
\\n \\n' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\nStart: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'
\\n \\n' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\n ';\n } ;\n__p += '\\n ';\n if (image) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n\\n \\n \\n
\\n';\n if (options.show_node_editor_uri) { ;\n__p += '\\n \\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_description) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_size) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Size:\")) +\n'\\n -\\n ' +\n__e(node.size) +\n'\\n +\\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_style) { ;\n__p += '\\n\\n \\n
\\n \\n';\n if (options.allow_image_upload) { ;\n__p += '\\n\\n \\n \\n
\\n';\n };\n\n } ;\n__p += ' ';\n if (options.show_node_editor_creator && node.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(node.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += ' ';\n if (options.change_shapes) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/nodeeditor_readonly.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n__p += '\\n ' +\n__e(node.short_uri) +\n'\\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_tooltip_description) { ;\n__p += '\\n' +\n__e(node.description) +\n'
\\n';\n } ;\n__p += ' ';\n if (node.image && options.show_node_tooltip_image) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(node.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/scene.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n\n if (options.show_top_bar) { ;\n__p += '\\n' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\n\\n \\n \\n
\\n';\n if (options.show_edge_editor_uri) { ;\n__p += '\\n \\n ';\n if (options.properties.length) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } } ;\n__p += '\\n';\n if (options.show_edge_editor_style) { ;\n__p += '\\n\\n ' +\n__e( renkan.translate(\"Change edge direction\") ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_editor_nodes) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"From:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.from_title, 25) ) +\n'\\n
\\n\\n ' +\n__e(renkan.translate(\"To:\")) +\n'\\n %-edge.to_color%>;\">\\n ' +\n__e( shortenText(edge.to_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_editor_creator && edge.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n ;\">\\n ' +\n__e( shortenText(edge.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/edgeeditor_readonly.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n__p += '\\n ' +\n__e( edge.short_uri ) +\n'\\n
\\n';\n } ;\n__p += '\\n' +\n((__t = (edge.description)) == null ? '' : __t) +\n'
\\n';\n if (options.show_edge_tooltip_nodes) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"From:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.from_title, 25) ) +\n'\\n
\\n\\n ' +\n__e(renkan.translate(\"To:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.to_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n if (options.show_edge_tooltip_creator && edge.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(edge.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/annotationtemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\nStart: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'
\\n \\n' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\nStart: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'
\\n \\n' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\n ';\n } ;\n__p += '\\n ';\n if (image) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n\\n \\n \\n
\\n';\n if (options.show_node_editor_uri) { ;\n__p += '\\n \\n';\n } ;\n__p += ' ';\n if (options.change_types) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_description) { ;\n__p += '\\n\\n \\n ';\n if (options.show_node_editor_description_richtext) { ;\n__p += '\\n
\\n ' +\n__e(renkan.translate(\"Size:\")) +\n'\\n -\\n ' +\n__e(node.size) +\n'\\n +\\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_style) { ;\n__p += '\\n\\n \\n
\\n \\n';\n if (options.allow_image_upload) { ;\n__p += '\\n\\n \\n \\n
\\n';\n };\n\n } ;\n__p += ' ';\n if (options.show_node_editor_creator && node.has_creator) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(node.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += ' ';\n if (options.change_shapes) { ;\n__p += '\\n\\n \\n \\n
\\n';\n } ;\n__p += '\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/nodeeditor_readonly.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n__p += '\\n ' +\n__e(node.short_uri) +\n'\\n
\\n';\n } ;\n__p += ' ';\n if (options.show_node_tooltip_description) { ;\n__p += '\\n' +\n((__t = (node.description)) == null ? '' : __t) +\n'
\\n';\n } ;\n__p += ' ';\n if (node.image && options.show_node_tooltip_image) { ;\n__p += '\\n\\n ' +\n__e(renkan.translate(\"Created by:\")) +\n'\\n \\n ' +\n__e( shortenText(node.created_by_title, 25) ) +\n'\\n
\\n';\n } ;\n__p += '\\n ' +\n__e(renkan.translate(\"Link to the node\")) +\n'\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/nodeeditor_video.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape, __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\nwith (obj) {\n__p += '' +\n((__t = (hdescription)) == null ? '' : __t) +\n'
\\n' + -__e(edge.description) + +((__t = (edge.description)) == null ? '' : __t) + '
\n'; if (options.show_edge_tooltip_nodes) { ; __p += '\n\n ' + @@ -398,12 +398,38 @@ '" target="_blank">\n
\n'; } ; __p += ' '; + if (options.change_types) { ; +__p += '\n\n \n \n
\n'; + } ; +__p += ' '; if (options.show_node_editor_description) { ; __p += '\n\n \n \n
\n'; +'\n '; + if (options.show_node_editor_description_richtext) { ; +__p += '\n' + -__e(node.description) + +((__t = (node.description)) == null ? '' : __t) + '
\n'; } ; __p += ' '; @@ -554,7 +580,50 @@ __e( shortenText(node.created_by_title, 25) ) + '\n \n'; } ; -__p += '\n'; +__p += '\n ' + +__e(renkan.translate("Link to the node")) + +'\n'; + +} +return __p +}; + +this["renkanJST"]["templates/nodeeditor_video.html"] = function(obj) { +obj || (obj = {}); +var __t, __p = '', __e = _.escape, __j = Array.prototype.join; +function print() { __p += __j.call(arguments, '') } +with (obj) { +__p += '