# 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. ![Tracking image](https://in.getclicky.com/212712ns.gif) [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) + * Lo-Dash 2.4.2 (Custom Build) * Build: `lodash -o ./dist/lodash.compat.js` * Copyright 2012-2013 The Dojo Foundation * Based on Underscore.js 1.5.2 * Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - * Available under MIT license + * Available under MIT license */ ;(function() { @@ -1818,6 +1818,7 @@ var setBindData = !defineProperty ? noop : function(func, value) { descriptor.value = value; defineProperty(func, '__bindData__', descriptor); + descriptor.value = null; }; /** @@ -6489,7 +6490,7 @@ * debugging. See http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl * * For more information on precompiling templates see: - * http://lodash.com/custom-builds + * https://lodash.com/custom-builds * * For more information on Chrome extension sandboxes see: * http://developer.chrome.com/stable/extensions/sandboxingEval.html @@ -7058,7 +7059,7 @@ * @memberOf _ * @type string */ - lodash.VERSION = '2.4.1'; + lodash.VERSION = '2.4.2'; // add "Chaining" functions to the wrapper lodash.prototype.chain = wrapperChain; diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/lodash/lodash.compat.min.js --- a/server/php/basic/public_html/static/lib/lodash/lodash.compat.min.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/php/basic/public_html/static/lib/lodash/lodash.compat.min.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,61 +1,92 @@ /** * @license - * Lo-Dash 2.4.1 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE + * Lo-Dash 2.4.2 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE * Build: `lodash -o ./dist/lodash.compat.js` */ -;(function(){function n(n,t,e){e=(e||0)-1;for(var r=n?n.length:0;++ei||typeof a=="undefined")return 1;if(ae?0:e);++r=_&&a===n,f=[];if(l){var c=o(r);c?(a=t,r=c):l=false}for(;++ua(r,c)&&f.push(c);return l&&p(r),f}function ot(n,t,e,r){r=(r||0)-1; -for(var u=n?n.length:0,o=[];++r=_&&l===n,h=u||g?i():s;for(g&&(h=o(h),l=t);++al(h,y))&&((u||g)&&h.push(y),s.push(v))}return g?(c(h.k),p(h)):u&&c(h),s}function ct(n){return function(t,e,r){var u={}; -if(e=v.createCallback(e,r,3),qe(t)){r=-1;for(var o=t.length;++rk;k++)r+="n='"+e.h[k]+"';if((!(r&&x[n])&&m.call(t,n))",e.j||(r+="||(!x[n]&&t[n]!==A[n])"),r+="){"+e.g+"}"; -r+="}"}return(e.b||Le.nonEnumArgs)&&(r+="}"),r+=e.c+";return E",n("d,j,k,m,o,p,q,s,v,A,B,y,I,J,L",t+r+"}")(tt,q,ce,we,d,dt,qe,kt,Q.f,pe,X,$e,M,se,he)}function gt(n){return Ve[n]}function ht(){var t=(t=v.indexOf)===zt?n:t;return t}function vt(n){return typeof n=="function"&&ve.test(n)}function yt(n){var t,e;return!n||he.call(n)!=G||(t=n.constructor,jt(t)&&!(t instanceof t))||!Le.argsClass&&dt(n)||!Le.nodeClass&&f(n)?false:Le.ownLast?(nr(n,function(n,t,r){return e=we.call(r,t),false}),false!==e):(nr(n,function(n,t){e=t -}),typeof e=="undefined"||we.call(n,e))}function mt(n){return He[n]}function dt(n){return n&&typeof n=="object"&&typeof n.length=="number"&&he.call(n)==T||false}function bt(n,t,e){var r=We(n),u=r.length;for(t=tt(t,e,3);u--&&(e=r[u],false!==t(n[e],e,n)););return n}function _t(n){var t=[];return nr(n,function(n,e){jt(n)&&t.push(e)}),t.sort()}function wt(n){for(var t=-1,e=We(n),r=e.length,u={};++te?Be(0,o+e):e)||0,qe(n)?a=-1o&&(o=i)}}else t=null==t&&kt(n)?r:v.createCallback(t,e,3),Xe(n,function(n,e,r){e=t(n,e,r),e>u&&(u=e,o=n)});return o}function Rt(n,t,e,r){var u=3>arguments.length;if(t=v.createCallback(t,r,4),qe(n)){var o=-1,a=n.length;for(u&&(e=n[++o]);++oarguments.length; -return t=v.createCallback(t,r,4),Nt(n,function(n,r,o){e=u?(u=false,n):t(e,n,r,o)}),e}function Tt(n){var t=-1,e=n?n.length:0,r=Zt(typeof e=="number"?e:0);return Dt(n,function(n){var e=lt(0,++t);r[t]=r[e],r[e]=n}),r}function $t(n,t,e){var r;if(t=v.createCallback(t,e,3),qe(n)){e=-1;for(var u=n.length;++er?Be(0,u+r):r||0}else if(r)return r=Kt(t,e),t[r]===e?r:-1;return n(t,e,r)}function qt(n,t,e){if(typeof t!="number"&&null!=t){var r=0,u=-1,o=n?n.length:0;for(t=v.createCallback(t,e,3);++u>>1,e(n[r])e?0:e);++t=h;m?(u&&(u=me(u)),c=a,o=n.apply(i,r)):u||(u=Ce(y,h))}return m&&l?l=me(l):l||t===p||(l=Ce(v,t)),e&&(m=true,o=n.apply(i,r)),!m||l||u||(r=i=null),o}}function Ht(n){return n}function Ut(n,t,e){var r=true,u=t&&_t(t);t&&(e||u.length)||(null==e&&(e=t),o=y,t=n,n=v,u=_t(t)),false===e?r=false:xt(e)&&"chain"in e&&(r=e.chain);var o=n,a=jt(o);Dt(u,function(e){var u=n[e]=t[e];a&&(o.prototype[e]=function(){var t=this.__chain__,e=this.__wrapped__,a=[e];if(je.apply(a,arguments),a=u.apply(n,a),r||t){if(e===a&&xt(a))return this; -a=new o(a),a.__chain__=t}return a})})}function Qt(){}function Xt(n){return function(t){return t[n]}}function Yt(){return this.__wrapped__}e=e?ut.defaults(Z.Object(),e,ut.pick(Z,R)):Z;var Zt=e.Array,ne=e.Boolean,te=e.Date,ee=e.Function,re=e.Math,ue=e.Number,oe=e.Object,ae=e.RegExp,ie=e.String,le=e.TypeError,fe=[],ce=e.Error.prototype,pe=oe.prototype,se=ie.prototype,ge=e._,he=pe.toString,ve=ae("^"+ie(he).replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/toString| for [^\]]+/g,".*?")+"$"),ye=re.ceil,me=e.clearTimeout,de=re.floor,be=ee.prototype.toString,_e=vt(_e=oe.getPrototypeOf)&&_e,we=pe.hasOwnProperty,je=fe.push,xe=pe.propertyIsEnumerable,Ce=e.setTimeout,ke=fe.splice,Ee=fe.unshift,Oe=function(){try{var n={},t=vt(t=oe.defineProperty)&&t,e=t(n,n,n)&&t -}catch(r){}return e}(),Se=vt(Se=oe.create)&&Se,Ae=vt(Ae=Zt.isArray)&&Ae,Ie=e.isFinite,De=e.isNaN,Ne=vt(Ne=oe.keys)&&Ne,Be=re.max,Pe=re.min,Re=e.parseInt,Fe=re.random,Te={};Te[$]=Zt,Te[L]=ne,Te[z]=te,Te[K]=ee,Te[G]=oe,Te[W]=ue,Te[J]=ae,Te[M]=ie;var $e={};$e[$]=$e[z]=$e[W]={constructor:true,toLocaleString:true,toString:true,valueOf:true},$e[L]=$e[M]={constructor:true,toString:true,valueOf:true},$e[q]=$e[K]=$e[J]={constructor:true,toString:true},$e[G]={constructor:true},function(){for(var n=F.length;n--;){var t,e=F[n]; -for(t in $e)we.call($e,t)&&!we.call($e[t],e)&&($e[t][e]=false)}}(),y.prototype=v.prototype;var Le=v.support={};!function(){var n=function(){this.x=1},t={0:1,length:1},r=[];n.prototype={valueOf:1,y:1};for(var u in new n)r.push(u);for(u in arguments);Le.argsClass=he.call(arguments)==T,Le.argsObject=arguments.constructor==oe&&!(arguments instanceof Zt),Le.enumErrorProps=xe.call(ce,"message")||xe.call(ce,"name"),Le.enumPrototypes=xe.call(n,"prototype"),Le.funcDecomp=!vt(e.WinRTError)&&B.test(g),Le.funcNames=typeof ee.name=="string",Le.nonEnumArgs=0!=u,Le.nonEnumShadows=!/valueOf/.test(r),Le.ownLast="x"!=r[0],Le.spliceObjects=(fe.splice.call(t,0,1),!t[0]),Le.unindexedChars="xx"!="x"[0]+oe("x")[0]; -try{Le.nodeClass=!(he.call(document)==G&&!({toString:0}+""))}catch(o){Le.nodeClass=true}}(1),v.templateSettings={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:I,variable:"",imports:{_:v}},Se||(nt=function(){function n(){}return function(t){if(xt(t)){n.prototype=t;var r=new n;n.prototype=null}return r||e.Object()}}());var ze=Oe?function(n,t){U.value=t,Oe(n,"__bindData__",U)}:Qt;Le.argsClass||(dt=function(n){return n&&typeof n=="object"&&typeof n.length=="number"&&we.call(n,"callee")&&!xe.call(n,"callee")||false -});var qe=Ae||function(n){return n&&typeof n=="object"&&typeof n.length=="number"&&he.call(n)==$||false},Ke=st({a:"z",e:"[]",i:"if(!(B[typeof z]))return E",g:"E.push(n)"}),We=Ne?function(n){return xt(n)?Le.enumPrototypes&&typeof n=="function"||Le.nonEnumArgs&&n.length&&dt(n)?Ke(n):Ne(n):[]}:Ke,Ge={a:"g,e,K",i:"e=e&&typeof K=='undefined'?e:d(e,K,3)",b:"typeof u=='number'",v:We,g:"if(e(t[n],n,g)===false)return E"},Je={a:"z,H,l",i:"var a=arguments,b=0,c=typeof l=='number'?2:a.length;while(++b":">",'"':""","'":"'"},He=wt(Ve),Ue=ae("("+We(He).join("|")+")","g"),Qe=ae("["+We(Ve).join("")+"]","g"),Xe=st(Ge),Ye=st(Je,{i:Je.i.replace(";",";if(c>3&&typeof a[c-2]=='function'){var e=d(a[--c-1],a[c--],2)}else if(c>2&&typeof a[c-1]=='function'){e=a[--c]}"),g:"E[n]=e?e(E[n],t[n]):t[n]"}),Ze=st(Je),nr=st(Ge,Me,{j:false}),tr=st(Ge,Me); -jt(/x/)&&(jt=function(n){return typeof n=="function"&&he.call(n)==K});var er=_e?function(n){if(!n||he.call(n)!=G||!Le.argsClass&&dt(n))return false;var t=n.valueOf,e=vt(t)&&(e=_e(t))&&_e(e);return e?n==e||_e(n)==e:yt(n)}:yt,rr=ct(function(n,t,e){we.call(n,e)?n[e]++:n[e]=1}),ur=ct(function(n,t,e){(we.call(n,e)?n[e]:n[e]=[]).push(t)}),or=ct(function(n,t,e){n[e]=t}),ar=Bt,ir=vt(ir=te.now)&&ir||function(){return(new te).getTime()},lr=8==Re(j+"08")?Re:function(n,t){return Re(kt(n)?n.replace(D,""):n,t||0)}; -return v.after=function(n,t){if(!jt(t))throw new le;return function(){return 1>--n?t.apply(this,arguments):void 0}},v.assign=Ye,v.at=function(n){var t=arguments,e=-1,r=ot(t,true,false,1),t=t[2]&&t[2][t[1]]===n?1:r.length,u=Zt(t);for(Le.unindexedChars&&kt(n)&&(n=n.split(""));++e=_&&o(r?e[r]:s)))}var f=e[0],h=-1,v=f?f.length:0,y=[];n:for(;++h(m?t(m,g):l(s,g))){for(r=u,(m||s).push(g);--r;)if(m=a[r],0>(m?t(m,g):l(e[r],g)))continue n;y.push(g) -}}for(;u--;)(m=a[u])&&p(m);return c(a),c(s),y},v.invert=wt,v.invoke=function(n,t){var e=s(arguments,2),r=-1,u=typeof t=="function",o=n?n.length:0,a=Zt(typeof o=="number"?o:0);return Dt(n,function(n){a[++r]=(u?t:n[t]).apply(n,e)}),a},v.keys=We,v.map=Bt,v.mapValues=function(n,t,e){var r={};return t=v.createCallback(t,e,3),tr(n,function(n,e,u){r[e]=t(n,e,u)}),r},v.max=Pt,v.memoize=function(n,t){if(!jt(n))throw new le;var e=function(){var r=e.cache,u=t?t.apply(this,arguments):b+arguments[0];return we.call(r,u)?r[u]:r[u]=n.apply(this,arguments) -};return e.cache={},e},v.merge=function(n){var t=arguments,e=2;if(!xt(n))return n;if("number"!=typeof t[2]&&(e=t.length),3e?Be(0,r+e):Pe(e,r-1))+1);r--;)if(n[r]===t)return r;return-1},v.mixin=Ut,v.noConflict=function(){return e._=ge,this},v.noop=Qt,v.now=ir,v.parseInt=lr,v.random=function(n,t,e){var r=null==n,u=null==t;return null==e&&(typeof n=="boolean"&&u?(e=n,n=1):u||typeof t!="boolean"||(e=t,u=true)),r&&u&&(t=1),n=+n||0,u?(t=n,n=0):t=+t||0,e||n%1||t%1?(e=Fe(),Pe(n+e*(t-n+parseFloat("1e-"+((e+"").length-1))),t)):lt(n,t)},v.reduce=Rt,v.reduceRight=Ft,v.result=function(n,t){if(n){var e=n[t]; -return jt(e)?n[t]():e}},v.runInContext=g,v.size=function(n){var t=n?n.length:0;return typeof t=="number"?t:We(n).length},v.some=$t,v.sortedIndex=Kt,v.template=function(n,t,e){var r=v.templateSettings;n=ie(n||""),e=Ze({},e,r);var u,o=Ze({},e.imports,r.imports),r=We(o),o=Et(o),i=0,l=e.interpolate||N,f="__p+='",l=ae((e.escape||N).source+"|"+l.source+"|"+(l===I?O:N).source+"|"+(e.evaluate||N).source+"|$","g");n.replace(l,function(t,e,r,o,l,c){return r||(r=o),f+=n.slice(i,c).replace(P,a),e&&(f+="'+__e("+e+")+'"),l&&(u=true,f+="';"+l+";\n__p+='"),r&&(f+="'+((__t=("+r+"))==null?'':__t)+'"),i=c+t.length,t -}),f+="';",l=e=e.variable,l||(e="obj",f="with("+e+"){"+f+"}"),f=(u?f.replace(x,""):f).replace(C,"$1").replace(E,"$1;"),f="function("+e+"){"+(l?"":e+"||("+e+"={});")+"var __t,__p='',__e=_.escape"+(u?",__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}":";")+f+"return __p}";try{var c=ee(r,"return "+f).apply(h,o)}catch(p){throw p.source=f,p}return t?c(t):(c.source=f,c)},v.unescape=function(n){return null==n?"":ie(n).replace(Ue,mt)},v.uniqueId=function(n){var t=++m;return ie(null==n?"":n)+t -},v.all=St,v.any=$t,v.detect=It,v.findWhere=It,v.foldl=Rt,v.foldr=Ft,v.include=Ot,v.inject=Rt,Ut(function(){var n={};return tr(v,function(t,e){v.prototype[e]||(n[e]=t)}),n}(),false),v.first=Lt,v.last=function(n,t,e){var r=0,u=n?n.length:0;if(typeof t!="number"&&null!=t){var o=u;for(t=v.createCallback(t,e,3);o--&&t(n[o],o,n);)r++}else if(r=t,null==r||e)return n?n[u-1]:h;return s(n,Be(0,u-r))},v.sample=function(n,t,e){return n&&typeof n.length!="number"?n=Et(n):Le.unindexedChars&&kt(n)&&(n=n.split("")),null==t||e?n?n[lt(0,n.length-1)]:h:(n=Tt(n),n.length=Pe(Be(0,t),n.length),n) -},v.take=Lt,v.head=Lt,tr(v,function(n,t){var e="sample"!==t;v.prototype[t]||(v.prototype[t]=function(t,r){var u=this.__chain__,o=n(this.__wrapped__,t,r);return u||null!=t&&(!r||e&&typeof t=="function")?new y(o,u):o})}),v.VERSION="2.4.1",v.prototype.chain=function(){return this.__chain__=true,this},v.prototype.toString=function(){return ie(this.__wrapped__)},v.prototype.value=Yt,v.prototype.valueOf=Yt,Xe(["join","pop","shift"],function(n){var t=fe[n];v.prototype[n]=function(){var n=this.__chain__,e=t.apply(this.__wrapped__,arguments); -return n?new y(e,n):e}}),Xe(["push","reverse","sort","unshift"],function(n){var t=fe[n];v.prototype[n]=function(){return t.apply(this.__wrapped__,arguments),this}}),Xe(["concat","slice","splice"],function(n){var t=fe[n];v.prototype[n]=function(){return new y(t.apply(this.__wrapped__,arguments),this.__chain__)}}),Le.spliceObjects||Xe(["pop","shift","splice"],function(n){var t=fe[n],e="splice"==n;v.prototype[n]=function(){var n=this.__chain__,r=this.__wrapped__,u=t.apply(r,arguments);return 0===r.length&&delete r[0],n||e?new y(u,n):u -}}),v}var h,v=[],y=[],m=0,d={},b=+new Date+"",_=75,w=40,j=" \t\x0B\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000",x=/\b__p\+='';/g,C=/\b(__p\+=)''\+/g,E=/(__e\(.*?\)|\b__t\))\+'';/g,O=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,S=/\w*$/,A=/^\s*function[ \n\r\t]+\w/,I=/<%=([\s\S]+?)%>/g,D=RegExp("^["+j+"]*0+(?=.$)"),N=/($^)/,B=/\bthis\b/,P=/['\n\r\t\u2028\u2029\\]/g,R="Array Boolean Date Error Function Math Number Object RegExp String _ attachEvent clearTimeout isFinite isNaN parseInt setTimeout".split(" "),F="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" "),T="[object Arguments]",$="[object Array]",L="[object Boolean]",z="[object Date]",q="[object Error]",K="[object Function]",W="[object Number]",G="[object Object]",J="[object RegExp]",M="[object String]",V={}; -V[K]=false,V[T]=V[$]=V[L]=V[z]=V[W]=V[G]=V[J]=V[M]=true;var H={leading:false,maxWait:0,trailing:false},U={configurable:false,enumerable:false,value:null,writable:false},Q={a:"",b:null,c:"",d:"",e:"",v:null,g:"",h:null,support:null,i:"",j:false},X={"boolean":false,"function":true,object:true,number:false,string:false,undefined:false},Y={"\\":"\\","'":"'","\n":"n","\r":"r","\t":"t","\u2028":"u2028","\u2029":"u2029"},Z=X[typeof window]&&window||this,nt=X[typeof exports]&&exports&&!exports.nodeType&&exports,tt=X[typeof module]&&module&&!module.nodeType&&module,et=tt&&tt.exports===nt&&nt,rt=X[typeof global]&&global; -!rt||rt.global!==rt&&rt.window!==rt||(Z=rt);var ut=g();typeof define=="function"&&typeof define.amd=="object"&&define.amd?(Z._=ut, define(function(){return ut})):nt&&tt?et?(tt.exports=ut)._=ut:nt._=ut:Z._=ut}).call(this); \ No newline at end of file +;(function(){function n(n,r,e){for(var t=(e||0)-1,o=n?n.length:0;++t-1?0:-1:r?0:-1}function e(n){var r=this.cache,e=typeof n;if("boolean"==e||null==n)r[n]=!0;else{"number"!=e&&"string"!=e&&(e="object");var t="number"==e?n:m+n,o=r[e]||(r[e]={});"object"==e?(o[t]||(o[t]=[])).push(n):o[t]=!0; + +}}function t(n){return n.charCodeAt(0)}function o(n,r){for(var e=n.criteria,t=r.criteria,o=-1,u=e.length;++oi||"undefined"==typeof a)return 1;if(a=_&&a===n,c=[];if(l){var f=u(t);f?(a=r,t=f):l=!1}for(;++o-1:h});return o.pop(),u.pop(),_&&(f(o),f(u)),a}function cn(n,r,e,t,o){(st(r)?or:Ct)(r,function(r,u){var a,i,l=r,c=n[u];if(r&&((i=st(r))||Pt(r))){for(var f=t.length;f--;)if(a=t[f]==r){c=o[f];break}if(!a){var s;e&&(l=e(c,r),(s="undefined"!=typeof l)&&(c=l)),s||(c=i?st(c)?c:[]:Pt(c)?c:{}),t.push(r),o.push(c),s||cn(c,r,e,t,o)}}else e&&(l=e(c,r),"undefined"==typeof l&&(l=r)),"undefined"!=typeof l&&(c=l);n[u]=c; + +})}function fn(n,r){return n+We(ut()*(r-n+1))}function sn(e,t,o){var a=-1,l=yn(),c=e?e.length:0,p=[],g=!t&&c>=_&&l===n,h=o||g?i():p;if(g){var v=u(h);l=r,h=v}for(;++a3&&"function"==typeof r[e-2])var t=en(r[--e-1],r[e--],2);else e>2&&"function"==typeof r[e-1]&&(t=r[--e]);for(var o=p(arguments,1,e),u=-1,a=i(),l=i();++u-1:"number"==typeof u?a=(zn(n)?n.indexOf(r,e):o(n,r,e))>-1:wt(n,function(n){return++tu&&(u=l)}else r=null==r&&zn(n)?t:v.createCallback(r,e,3),wt(n,function(n,e,t){var a=r(n,e,t);a>o&&(o=a,u=n)});return u}function cr(n,r,e){var o=1/0,u=o;if("function"!=typeof r&&e&&e[r]===n&&(r=null),null==r&&st(n))for(var a=-1,i=n.length;++a=_&&u(t?e[t]:p)))}var h=e[0],v=-1,y=h?h.length:0,b=[];n:for(;++v>>1;e(n[a])1?arguments:arguments[0],r=-1,e=n?lr(At(n,"length")):0,t=we(e<0?0:e);++r2?gn(n,17,p(arguments,2),null,r):gn(n,1,null,null,r)}function zr(n){for(var r=arguments.length>1?an(arguments,!0,!1,1):On(n),e=-1,t=r.length;++e2?gn(r,19,p(arguments,2),null,n):gn(r,3,null,null,n)}function Ur(){for(var n=arguments,r=n.length;r--;)if(!$n(n[r]))throw new Ie;return function(){for(var r=arguments,e=n.length;e--;)r=[n[e].apply(this,r)]; + +return r[0]}}function Mr(n,r){return r="number"==typeof r?r:+r||n.length,gn(n,4,null,null,null,r)}function Vr(n,r,e){var t,o,u,a,i,l,c,f=0,s=!1,p=!0;if(!$n(n))throw new Ie;if(r=et(0,r)||0,e===!0){var g=!0;p=!1}else Fn(e)&&(g=e.leading,s="maxWait"in e&&(et(r,e.maxWait)||0),p="trailing"in e?e.trailing:p);var v=function(){var e=r-(Lt()-a);if(e>0)l=Ve(v,e);else{o&&He(o);var s=c;o=l=c=h,s&&(f=Lt(),u=n.apply(i,t),l||o||(t=i=null))}},y=function(){l&&He(l),o=l=c=h,(p||s!==r)&&(f=Lt(),u=n.apply(i,t),l||o||(t=i=null)); + +};return function(){if(t=arguments,a=Lt(),i=this,c=p&&(l||!g),s===!1)var e=g&&!l;else{o||g||(f=a);var h=s-(a-f),b=h<=0;b?(o&&(o=He(o)),f=a,u=n.apply(i,t)):o||(o=Ve(y,h))}return b&&l?l=He(l):l||r===s||(l=Ve(v,r)),e&&(b=!0,u=n.apply(i,t)),!b||l||o||(t=i=null),u}}function Gr(n){if(!$n(n))throw new Ie;var r=p(arguments,1);return Ve(function(){n.apply(h,r)},1)}function Jr(n,r){if(!$n(n))throw new Ie;var e=p(arguments,2);return Ve(function(){n.apply(h,e)},r)}function Qr(n,r){if(!$n(n))throw new Ie;var e=function(){ +var t=e.cache,o=r?r.apply(this,arguments):m+arguments[0];return Ke.call(t,o)?t[o]:t[o]=n.apply(this,arguments)};return e.cache={},e}function Xr(n){var r,e;if(!$n(n))throw new Ie;return function(){return r?e:(r=!0,e=n.apply(this,arguments),n=null,e)}}function Yr(n){return gn(n,16,p(arguments,1))}function Zr(n){return gn(n,32,null,p(arguments,1))}function ne(n,r,e){var t=!0,o=!0;if(!$n(n))throw new Ie;return e===!1?t=!1:Fn(e)&&(t="leading"in e?e.leading:t,o="trailing"in e?e.trailing:o),J.leading=t, +J.maxWait=r,J.trailing=o,Vr(n,r,J)}function re(n,r){return gn(r,16,[n])}function ee(n){return function(){return n}}function te(n,r,e){var t=typeof n;if(null==n||"function"==t)return en(n,r,e);if("object"!=t)return ce(n);var o=gt(n),u=o[0],a=n[u];return 1!=o.length||a!==a||Fn(a)?function(r){for(var e=o.length,t=!1;e--&&(t=ln(r[o[e]],n[o[e]],null,!0)););return t}:function(n){var r=n[u];return a===r&&(0!==a||1/a==1/r)}}function oe(n){return null==n?"":Ae(n).replace(_t,vn)}function ue(n){return n}function ae(n,r,e){ +var t=!0,o=r&&On(r);r&&(e||o.length)||(null==e&&(e=r),u=y,r=n,n=v,o=On(r)),e===!1?t=!1:Fn(e)&&"chain"in e&&(t=e.chain);var u=n,a=$n(u);or(o,function(e){var o=n[e]=r[e];a&&(u.prototype[e]=function(){var r=this.__chain__,e=this.__wrapped__,a=[e];Ue.apply(a,arguments);var i=o.apply(n,a);if(t||r){if(e===i&&Fn(i))return this;i=new u(i),i.__chain__=r}return i})})}function ie(){return e._=De,this}function le(){}function ce(n){return function(r){return r[n]}}function fe(n,r,e){var t=null==n,o=null==r;if(null==e&&("boolean"==typeof n&&o?(e=n, +n=1):o||"boolean"!=typeof r||(e=r,o=!0)),t&&o&&(r=1),n=+n||0,o?(r=n,n=0):r=+r||0,e||n%1||r%1){var u=ut();return tt(n+u*(r-n+parseFloat("1e-"+((u+"").length-1))),r)}return fn(n,r)}function se(n,r){if(n){var e=n[r];return $n(e)?n[r]():e}}function pe(n,r,e){var t=v.templateSettings;n=Ae(n||""),e=jt({},e,t);var o,u=jt({},e.imports,t.imports),i=gt(u),l=Xn(u),c=0,f=e.interpolate||L,s="__p += '",p=Se((e.escape||L).source+"|"+f.source+"|"+(f===A?E:L).source+"|"+(e.evaluate||L).source+"|$","g");n.replace(p,function(r,e,t,u,i,l){ +return t||(t=u),s+=n.slice(c,l).replace(R,a),e&&(s+="' +\n__e("+e+") +\n'"),i&&(o=!0,s+="';\n"+i+";\n__p += '"),t&&(s+="' +\n((__t = ("+t+")) == null ? '' : __t) +\n'"),c=l+r.length,r}),s+="';\n";var g=e.variable,y=g;y||(g="obj",s="with ("+g+") {\n"+s+"\n}\n"),s=(o?s.replace(j,""):s).replace(C,"$1").replace(P,"$1;"),s="function("+g+") {\n"+(y?"":g+" || ("+g+" = {});\n")+"var __t, __p = '', __e = _.escape"+(o?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+s+"return __p\n}"; + +var b="\n/*\n//# sourceURL="+(e.sourceURL||"/lodash/template/source["+$++ +"]")+"\n*/";try{var d=Ce(i,"return "+s+b).apply(h,l)}catch(m){throw m.source=s,m}return r?d(r):(d.source=s,d)}function ge(n,r,e){n=(n=+n)>-1?n:0;var t=-1,o=we(n);for(r=en(r,e,1);++t/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:A,variable:"",imports:{_:v}};var ct=function(n){var r="var index, iterable = "+n.firstArg+", result = "+n.init+";\nif (!iterable) return result;\n"+n.top+";"; + +n.array?(r+="\nvar length = iterable.length; index = -1;\nif ("+n.array+") { ",lt.unindexedChars&&(r+="\n if (isString(iterable)) {\n iterable = iterable.split('')\n } "),r+="\n while (++index < length) {\n "+n.loop+";\n }\n}\nelse { "):lt.nonEnumArgs&&(r+="\n var length = iterable.length; index = -1;\n if (length && isArguments(iterable)) {\n while (++index < length) {\n index += '';\n "+n.loop+";\n }\n } else { "),lt.enumPrototypes&&(r+="\n var skipProto = typeof iterable == 'function';\n "), +lt.enumErrorProps&&(r+="\n var skipErrorProps = iterable === errorProto || iterable instanceof Error;\n ");var e=[];if(lt.enumPrototypes&&e.push('!(skipProto && index == "prototype")'),lt.enumErrorProps&&e.push('!(skipErrorProps && (index == "message" || index == "name"))'),n.useHas&&n.keys)r+="\n var ownIndex = -1,\n ownProps = objectTypes[typeof iterable] && keys(iterable),\n length = ownProps ? ownProps.length : 0;\n\n while (++ownIndex < length) {\n index = ownProps[ownIndex];\n", +e.length&&(r+=" if ("+e.join(" && ")+") {\n "),r+=n.loop+"; ",e.length&&(r+="\n }"),r+="\n } ";else if(r+="\n for (index in iterable) {\n",n.useHas&&e.push("hasOwnProperty.call(iterable, index)"),e.length&&(r+=" if ("+e.join(" && ")+") {\n "),r+=n.loop+"; ",e.length&&(r+="\n }"),r+="\n } ",lt.nonEnumShadows){for(r+="\n\n if (iterable !== objectProto) {\n var ctor = iterable.constructor,\n isProto = iterable === (ctor && ctor.prototype),\n className = iterable === stringProto ? stringClass : iterable === errorProto ? errorClass : toString.call(iterable),\n nonEnum = nonEnumProps[className];\n ", +k=0;k<7;k++)r+="\n index = '"+n.shadowedProps[k]+"';\n if ((!(isProto && nonEnum[index]) && hasOwnProperty.call(iterable, index))",n.useHas||(r+=" || (!nonEnum[index] && iterable[index] !== objectProto[index])"),r+=") {\n "+n.loop+";\n } ";r+="\n } "}return(n.array||lt.nonEnumArgs)&&(r+="\n}"),r+=n.bottom+";\nreturn result"};Xe||(rn=function(){function n(){}return function(r){if(Fn(r)){n.prototype=r;var t=new n;n.prototype=null}return t||e.Object()}}());var ft=Qe?function(n,r){ +Q.value=r,Qe(n,"__bindData__",Q),Q.value=null}:le;lt.argsClass||(_n=function(n){return n&&"object"==typeof n&&"number"==typeof n.length&&Ke.call(n,"callee")&&!Me.call(n,"callee")||!1});var st=Ye||function(n){return n&&"object"==typeof n&&"number"==typeof n.length&&$e.call(n)==B||!1},pt=hn({args:"object",init:"[]",top:"if (!(objectTypes[typeof object])) return result",loop:"result.push(index)"}),gt=rt?function(n){return Fn(n)?lt.enumPrototypes&&"function"==typeof n||lt.nonEnumArgs&&n.length&&_n(n)?pt(n):rt(n):[]; + +}:pt,ht={args:"collection, callback, thisArg",top:"callback = callback && typeof thisArg == 'undefined' ? callback : baseCreateCallback(callback, thisArg, 3)",array:"typeof length == 'number'",keys:gt,loop:"if (callback(iterable[index], index, collection) === false) return result"},vt={args:"object, source, guard",top:"var args = arguments,\n argsIndex = 0,\n argsLength = typeof guard == 'number' ? 2 : args.length;\nwhile (++argsIndex < argsLength) {\n iterable = args[argsIndex];\n if (iterable && objectTypes[typeof iterable]) {", +keys:gt,loop:"if (typeof result[index] == 'undefined') result[index] = iterable[index]",bottom:" }\n}"},yt={top:"if (!objectTypes[typeof iterable]) return result;\n"+ht.top,array:!1},bt={"&":"&","<":"<",">":">",'"':""","'":"'"},dt=An(bt),mt=Se("("+gt(dt).join("|")+")","g"),_t=Se("["+gt(bt).join("")+"]","g"),wt=hn(ht),xt=hn(vt,{top:vt.top.replace(";",";\nif (argsLength > 3 && typeof args[argsLength - 2] == 'function') {\n var callback = baseCreateCallback(args[--argsLength - 1], args[argsLength--], 2);\n} else if (argsLength > 2 && typeof args[argsLength - 1] == 'function') {\n callback = args[--argsLength];\n}"), +loop:"result[index] = callback ? callback(result[index], iterable[index]) : iterable[index]"}),jt=hn(vt),kt=hn(ht,yt,{useHas:!1}),Ct=hn(ht,yt);$n(/x/)&&($n=function(n){return"function"==typeof n&&$e.call(n)==z});var Pt=ze?function(n){if(!n||$e.call(n)!=U||!lt.argsClass&&_n(n))return!1;var r=n.valueOf,e=bn(r)&&(e=ze(r))&&ze(e);return e?n==e||ze(n)==e:dn(n)}:dn,Et=pn(function(n,r,e){Ke.call(n,e)?n[e]++:n[e]=1}),Ot=pn(function(n,r,e){(Ke.call(n,e)?n[e]:n[e]=[]).push(r)}),St=pn(function(n,r,e){n[e]=r; + +}),At=ir,It=rr,Lt=bn(Lt=je.now)&&Lt||function(){return(new je).getTime()},Nt=8==ot(x+"08")?ot:function(n,r){return ot(zn(n)?n.replace(I,""):n,r||0)};return v.after=Wr,v.assign=xt,v.at=Yn,v.bind=qr,v.bindAll=zr,v.bindKey=Kr,v.chain=ye,v.compact=mr,v.compose=Ur,v.constant=ee,v.countBy=Et,v.create=jn,v.createCallback=te,v.curry=Mr,v.debounce=Vr,v.defaults=jt,v.defer=Gr,v.delay=Jr,v.difference=_r,v.filter=rr,v.flatten=kr,v.forEach=or,v.forEachRight=ur,v.forIn=kt,v.forInRight=Pn,v.forOwn=Ct,v.forOwnRight=En, +v.functions=On,v.groupBy=Ot,v.indexBy=St,v.initial=Pr,v.intersection=Er,v.invert=An,v.invoke=ar,v.keys=gt,v.map=ir,v.mapValues=Un,v.max=lr,v.memoize=Qr,v.merge=Mn,v.min=cr,v.omit=Vn,v.once=Xr,v.pairs=Gn,v.partial=Yr,v.partialRight=Zr,v.pick=Jn,v.pluck=At,v.property=ce,v.pull=Ar,v.range=Ir,v.reject=pr,v.remove=Lr,v.rest=Nr,v.shuffle=hr,v.sortBy=br,v.tap=be,v.throttle=ne,v.times=ge,v.toArray=dr,v.transform=Qn,v.union=Tr,v.uniq=Dr,v.values=Xn,v.where=It,v.without=$r,v.wrap=re,v.xor=Fr,v.zip=Br,v.zipObject=Hr, +v.collect=ir,v.drop=Nr,v.each=or,v.eachRight=ur,v.extend=xt,v.methods=On,v.object=Hr,v.select=rr,v.tail=Nr,v.unique=Dr,v.unzip=Br,ae(v),v.clone=wn,v.cloneDeep=xn,v.contains=Zn,v.escape=oe,v.every=nr,v.find=er,v.findIndex=wr,v.findKey=kn,v.findLast=tr,v.findLastIndex=xr,v.findLastKey=Cn,v.has=Sn,v.identity=ue,v.indexOf=Cr,v.isArguments=_n,v.isArray=st,v.isBoolean=In,v.isDate=Ln,v.isElement=Nn,v.isEmpty=Rn,v.isEqual=Tn,v.isFinite=Dn,v.isFunction=$n,v.isNaN=Bn,v.isNull=Hn,v.isNumber=Wn,v.isObject=Fn, +v.isPlainObject=Pt,v.isRegExp=qn,v.isString=zn,v.isUndefined=Kn,v.lastIndexOf=Sr,v.mixin=ae,v.noConflict=ie,v.noop=le,v.now=Lt,v.parseInt=Nt,v.random=fe,v.reduce=fr,v.reduceRight=sr,v.result=se,v.runInContext=g,v.size=vr,v.some=yr,v.sortedIndex=Rr,v.template=pe,v.unescape=he,v.uniqueId=ve,v.all=nr,v.any=yr,v.detect=er,v.findWhere=er,v.foldl=fr,v.foldr=sr,v.include=Zn,v.inject=fr,ae(function(){var n={};return Ct(v,function(r,e){v.prototype[e]||(n[e]=r)}),n}(),!1),v.first=jr,v.last=Or,v.sample=gr,v.take=jr, +v.head=jr,Ct(v,function(n,r){var e="sample"!==r;v.prototype[r]||(v.prototype[r]=function(r,t){var o=this.__chain__,u=n(this.__wrapped__,r,t);return o||null!=r&&(!t||e&&"function"==typeof r)?new y(u,o):u})}),v.VERSION="2.4.2",v.prototype.chain=de,v.prototype.toString=me,v.prototype.value=_e,v.prototype.valueOf=_e,wt(["join","pop","shift"],function(n){var r=Le[n];v.prototype[n]=function(){var n=this.__chain__,e=r.apply(this.__wrapped__,arguments);return n?new y(e,n):e}}),wt(["push","reverse","sort","unshift"],function(n){ +var r=Le[n];v.prototype[n]=function(){return r.apply(this.__wrapped__,arguments),this}}),wt(["concat","slice","splice"],function(n){var r=Le[n];v.prototype[n]=function(){return new y(r.apply(this.__wrapped__,arguments),this.__chain__)}}),lt.spliceObjects||wt(["pop","shift","splice"],function(n){var r=Le[n],e="splice"==n;v.prototype[n]=function(){var n=this.__chain__,t=this.__wrapped__,o=r.apply(t,arguments);return 0===t.length&&delete t[0],n||e?new y(o,n):o}}),v}var h,v=[],y=[],b=0,d={},m=+new Date+"",_=75,w=40,x=" \f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000",j=/\b__p \+= '';/g,C=/\b(__p \+=) '' \+/g,P=/(__e\(.*?\)|\b__t\)) \+\n'';/g,E=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,O=/\w*$/,S=/^\s*function[ \n\r\t]+\w/,A=/<%=([\s\S]+?)%>/g,I=RegExp("^["+x+"]*0+(?=.$)"),L=/($^)/,N=/\bthis\b/,R=/['\n\r\t\u2028\u2029\\]/g,T=["Array","Boolean","Date","Error","Function","Math","Number","Object","RegExp","String","_","attachEvent","clearTimeout","isFinite","isNaN","parseInt","setTimeout"],D=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],$=0,F="[object Arguments]",B="[object Array]",H="[object Boolean]",W="[object Date]",q="[object Error]",z="[object Function]",K="[object Number]",U="[object Object]",M="[object RegExp]",V="[object String]",G={}; + +G[z]=!1,G[F]=G[B]=G[H]=G[W]=G[K]=G[U]=G[M]=G[V]=!0;var J={leading:!1,maxWait:0,trailing:!1},Q={configurable:!1,enumerable:!1,value:null,writable:!1},X={args:"",array:null,bottom:"",firstArg:"",init:"",keys:null,loop:"",shadowedProps:null,support:null,top:"",useHas:!1},Y={"boolean":!1,"function":!0,object:!0,number:!1,string:!1,undefined:!1},Z={"\\":"\\","'":"'","\n":"n","\r":"r"," ":"t","\u2028":"u2028","\u2029":"u2029"},nn=Y[typeof window]&&window||this,rn=Y[typeof exports]&&exports&&!exports.nodeType&&exports,en=Y[typeof module]&&module&&!module.nodeType&&module,tn=en&&en.exports===rn&&rn,on=Y[typeof global]&&global; + +!on||on.global!==on&&on.window!==on||(nn=on);var un=g();"function"==typeof define&&"object"==typeof define.amd&&define.amd?(nn._=un,define(function(){return un})):rn&&en?tn?(en.exports=un)._=un:rn._=un:nn._=un}).call(this); \ No newline at end of file diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/lodash/lodash.js --- a/server/php/basic/public_html/static/lib/lodash/lodash.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/php/basic/public_html/static/lib/lodash/lodash.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,11 +1,11 @@ /** * @license - * Lo-Dash 2.4.1 (Custom Build) + * Lo-Dash 2.4.2 (Custom Build) * Build: `lodash modern -o ./dist/lodash.js` * Copyright 2012-2013 The Dojo Foundation * Based on Underscore.js 1.5.2 * Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - * Available under MIT license + * Available under MIT license */ ;(function() { @@ -1494,6 +1494,7 @@ var setBindData = !defineProperty ? noop : function(func, value) { descriptor.value = value; defineProperty(func, '__bindData__', descriptor); + descriptor.value = null; }; /** @@ -6139,7 +6140,7 @@ * debugging. See http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl * * For more information on precompiling templates see: - * http://lodash.com/custom-builds + * https://lodash.com/custom-builds * * For more information on Chrome extension sandboxes see: * http://developer.chrome.com/stable/extensions/sandboxingEval.html @@ -6708,7 +6709,7 @@ * @memberOf _ * @type string */ - lodash.VERSION = '2.4.1'; + lodash.VERSION = '2.4.2'; // add "Chaining" functions to the wrapper lodash.prototype.chain = wrapperChain; diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/lodash/lodash.min.js --- a/server/php/basic/public_html/static/lib/lodash/lodash.min.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/php/basic/public_html/static/lib/lodash/lodash.min.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,56 +1,87 @@ /** * @license - * Lo-Dash 2.4.1 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE + * Lo-Dash 2.4.2 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE * Build: `lodash modern -o ./dist/lodash.js` */ -;(function(){function n(n,t,e){e=(e||0)-1;for(var r=n?n.length:0;++ea||typeof i=="undefined")return 1;if(ie?0:e);++r=b&&i===n,l=[];if(f){var p=o(r);p?(i=t,r=p):f=false}for(;++ui(r,p)&&l.push(p);return f&&c(r),l}function ut(n,t,e,r){r=(r||0)-1;for(var u=n?n.length:0,o=[];++r=b&&f===n,h=u||v?a():s; -for(v&&(h=o(h),f=t);++if(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(;++re?Ie(0,o+e):e)||0,Te(n)?i=-1o&&(o=a)}}else t=null==t&&kt(n)?r:J.createCallback(t,e,3),St(n,function(n,e,r){e=t(n,e,r),e>u&&(u=e,o=n)});return o}function Dt(n,t,e,r){if(!n)return e;var u=3>arguments.length;t=J.createCallback(t,r,4);var o=-1,i=n.length;if(typeof i=="number")for(u&&(e=n[++o]);++oarguments.length;return t=J.createCallback(t,r,4),Et(n,function(n,r,o){e=u?(u=false,n):t(e,n,r,o)}),e}function Tt(n){var t=-1,e=n?n.length:0,r=Xt(typeof e=="number"?e:0);return St(n,function(n){var e=at(0,++t);r[t]=r[e],r[e]=n}),r}function Ft(n,t,e){var r;t=J.createCallback(t,e,3),e=-1;var u=n?n.length:0;if(typeof u=="number")for(;++er?Ie(0,u+r):r||0}else if(r)return r=zt(t,e),t[r]===e?r:-1;return n(t,e,r)}function qt(n,t,e){if(typeof t!="number"&&null!=t){var r=0,u=-1,o=n?n.length:0;for(t=J.createCallback(t,e,3);++u>>1,e(n[r])e?0:e);++t=v; -m?(i&&(i=ve(i)),s=f,a=n.apply(l,o)):i||(i=_e(r,v))}return m&&c?c=ve(c):c||t===h||(c=_e(u,t)),e&&(m=true,a=n.apply(l,o)),!m||c||i||(o=l=null),a}}function Ut(n){return n}function Gt(n,t,e){var r=true,u=t&&bt(t);t&&(e||u.length)||(null==e&&(e=t),o=Q,t=n,n=J,u=bt(t)),false===e?r=false:wt(e)&&"chain"in e&&(r=e.chain);var o=n,i=dt(o);St(u,function(e){var u=n[e]=t[e];i&&(o.prototype[e]=function(){var t=this.__chain__,e=this.__wrapped__,i=[e];if(be.apply(i,arguments),i=u.apply(n,i),r||t){if(e===i&&wt(i))return this; -i=new o(i),i.__chain__=t}return i})})}function Ht(){}function Jt(n){return function(t){return t[n]}}function Qt(){return this.__wrapped__}e=e?Y.defaults(G.Object(),e,Y.pick(G,A)):G;var Xt=e.Array,Yt=e.Boolean,Zt=e.Date,ne=e.Function,te=e.Math,ee=e.Number,re=e.Object,ue=e.RegExp,oe=e.String,ie=e.TypeError,ae=[],fe=re.prototype,le=e._,ce=fe.toString,pe=ue("^"+oe(ce).replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/toString| for [^\]]+/g,".*?")+"$"),se=te.ceil,ve=e.clearTimeout,he=te.floor,ge=ne.prototype.toString,ye=vt(ye=re.getPrototypeOf)&&ye,me=fe.hasOwnProperty,be=ae.push,_e=e.setTimeout,de=ae.splice,we=ae.unshift,je=function(){try{var n={},t=vt(t=re.defineProperty)&&t,e=t(n,n,n)&&t -}catch(r){}return e}(),ke=vt(ke=re.create)&&ke,xe=vt(xe=Xt.isArray)&&xe,Ce=e.isFinite,Oe=e.isNaN,Ne=vt(Ne=re.keys)&&Ne,Ie=te.max,Se=te.min,Ee=e.parseInt,Re=te.random,Ae={};Ae[$]=Xt,Ae[T]=Yt,Ae[F]=Zt,Ae[B]=ne,Ae[q]=re,Ae[W]=ee,Ae[z]=ue,Ae[P]=oe,Q.prototype=J.prototype;var De=J.support={};De.funcDecomp=!vt(e.a)&&E.test(s),De.funcNames=typeof ne.name=="string",J.templateSettings={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:N,variable:"",imports:{_:J}},ke||(nt=function(){function n(){}return function(t){if(wt(t)){n.prototype=t; -var r=new n;n.prototype=null}return r||e.Object()}}());var $e=je?function(n,t){M.value=t,je(n,"__bindData__",M)}:Ht,Te=xe||function(n){return n&&typeof n=="object"&&typeof n.length=="number"&&ce.call(n)==$||false},Fe=Ne?function(n){return wt(n)?Ne(n):[]}:H,Be={"&":"&","<":"<",">":">",'"':""","'":"'"},We=_t(Be),qe=ue("("+Fe(We).join("|")+")","g"),ze=ue("["+Fe(Be).join("")+"]","g"),Pe=ye?function(n){if(!n||ce.call(n)!=q)return false;var t=n.valueOf,e=vt(t)&&(e=ye(t))&&ye(e);return e?n==e||ye(n)==e:ht(n) -}:ht,Ke=lt(function(n,t,e){me.call(n,e)?n[e]++:n[e]=1}),Le=lt(function(n,t,e){(me.call(n,e)?n[e]:n[e]=[]).push(t)}),Me=lt(function(n,t,e){n[e]=t}),Ve=Rt,Ue=vt(Ue=Zt.now)&&Ue||function(){return(new Zt).getTime()},Ge=8==Ee(d+"08")?Ee:function(n,t){return Ee(kt(n)?n.replace(I,""):n,t||0)};return J.after=function(n,t){if(!dt(t))throw new ie;return function(){return 1>--n?t.apply(this,arguments):void 0}},J.assign=U,J.at=function(n){for(var t=arguments,e=-1,r=ut(t,true,false,1),t=t[2]&&t[2][t[1]]===n?1:r.length,u=Xt(t);++e=b&&o(r?e[r]:s)))}var p=e[0],h=-1,g=p?p.length:0,y=[];n:for(;++h(m?t(m,v):f(s,v))){for(r=u,(m||s).push(v);--r;)if(m=i[r],0>(m?t(m,v):f(e[r],v)))continue n;y.push(v)}}for(;u--;)(m=i[u])&&c(m);return l(i),l(s),y},J.invert=_t,J.invoke=function(n,t){var e=p(arguments,2),r=-1,u=typeof t=="function",o=n?n.length:0,i=Xt(typeof o=="number"?o:0);return St(n,function(n){i[++r]=(u?t:n[t]).apply(n,e)}),i},J.keys=Fe,J.map=Rt,J.mapValues=function(n,t,e){var r={}; -return t=J.createCallback(t,e,3),h(n,function(n,e,u){r[e]=t(n,e,u)}),r},J.max=At,J.memoize=function(n,t){function e(){var r=e.cache,u=t?t.apply(this,arguments):m+arguments[0];return me.call(r,u)?r[u]:r[u]=n.apply(this,arguments)}if(!dt(n))throw new ie;return e.cache={},e},J.merge=function(n){var t=arguments,e=2;if(!wt(n))return n;if("number"!=typeof t[2]&&(e=t.length),3e?Ie(0,r+e):Se(e,r-1))+1);r--;)if(n[r]===t)return r;return-1},J.mixin=Gt,J.noConflict=function(){return e._=le,this},J.noop=Ht,J.now=Ue,J.parseInt=Ge,J.random=function(n,t,e){var r=null==n,u=null==t;return null==e&&(typeof n=="boolean"&&u?(e=n,n=1):u||typeof t!="boolean"||(e=t,u=true)),r&&u&&(t=1),n=+n||0,u?(t=n,n=0):t=+t||0,e||n%1||t%1?(e=Re(),Se(n+e*(t-n+parseFloat("1e-"+((e+"").length-1))),t)):at(n,t) -},J.reduce=Dt,J.reduceRight=$t,J.result=function(n,t){if(n){var e=n[t];return dt(e)?n[t]():e}},J.runInContext=s,J.size=function(n){var t=n?n.length:0;return typeof t=="number"?t:Fe(n).length},J.some=Ft,J.sortedIndex=zt,J.template=function(n,t,e){var r=J.templateSettings;n=oe(n||""),e=_({},e,r);var u,o=_({},e.imports,r.imports),r=Fe(o),o=xt(o),a=0,f=e.interpolate||S,l="__p+='",f=ue((e.escape||S).source+"|"+f.source+"|"+(f===N?x:S).source+"|"+(e.evaluate||S).source+"|$","g");n.replace(f,function(t,e,r,o,f,c){return r||(r=o),l+=n.slice(a,c).replace(R,i),e&&(l+="'+__e("+e+")+'"),f&&(u=true,l+="';"+f+";\n__p+='"),r&&(l+="'+((__t=("+r+"))==null?'':__t)+'"),a=c+t.length,t -}),l+="';",f=e=e.variable,f||(e="obj",l="with("+e+"){"+l+"}"),l=(u?l.replace(w,""):l).replace(j,"$1").replace(k,"$1;"),l="function("+e+"){"+(f?"":e+"||("+e+"={});")+"var __t,__p='',__e=_.escape"+(u?",__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}":";")+l+"return __p}";try{var c=ne(r,"return "+l).apply(v,o)}catch(p){throw p.source=l,p}return t?c(t):(c.source=l,c)},J.unescape=function(n){return null==n?"":oe(n).replace(qe,gt)},J.uniqueId=function(n){var t=++y;return oe(null==n?"":n)+t -},J.all=Ot,J.any=Ft,J.detect=It,J.findWhere=It,J.foldl=Dt,J.foldr=$t,J.include=Ct,J.inject=Dt,Gt(function(){var n={};return h(J,function(t,e){J.prototype[e]||(n[e]=t)}),n}(),false),J.first=Bt,J.last=function(n,t,e){var r=0,u=n?n.length:0;if(typeof t!="number"&&null!=t){var o=u;for(t=J.createCallback(t,e,3);o--&&t(n[o],o,n);)r++}else if(r=t,null==r||e)return n?n[u-1]:v;return p(n,Ie(0,u-r))},J.sample=function(n,t,e){return n&&typeof n.length!="number"&&(n=xt(n)),null==t||e?n?n[at(0,n.length-1)]:v:(n=Tt(n),n.length=Se(Ie(0,t),n.length),n) -},J.take=Bt,J.head=Bt,h(J,function(n,t){var e="sample"!==t;J.prototype[t]||(J.prototype[t]=function(t,r){var u=this.__chain__,o=n(this.__wrapped__,t,r);return u||null!=t&&(!r||e&&typeof t=="function")?new Q(o,u):o})}),J.VERSION="2.4.1",J.prototype.chain=function(){return this.__chain__=true,this},J.prototype.toString=function(){return oe(this.__wrapped__)},J.prototype.value=Qt,J.prototype.valueOf=Qt,St(["join","pop","shift"],function(n){var t=ae[n];J.prototype[n]=function(){var n=this.__chain__,e=t.apply(this.__wrapped__,arguments); -return n?new Q(e,n):e}}),St(["push","reverse","sort","unshift"],function(n){var t=ae[n];J.prototype[n]=function(){return t.apply(this.__wrapped__,arguments),this}}),St(["concat","slice","splice"],function(n){var t=ae[n];J.prototype[n]=function(){return new Q(t.apply(this.__wrapped__,arguments),this.__chain__)}}),J}var v,h=[],g=[],y=0,m=+new Date+"",b=75,_=40,d=" \t\x0B\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000",w=/\b__p\+='';/g,j=/\b(__p\+=)''\+/g,k=/(__e\(.*?\)|\b__t\))\+'';/g,x=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,C=/\w*$/,O=/^\s*function[ \n\r\t]+\w/,N=/<%=([\s\S]+?)%>/g,I=RegExp("^["+d+"]*0+(?=.$)"),S=/($^)/,E=/\bthis\b/,R=/['\n\r\t\u2028\u2029\\]/g,A="Array Boolean Date Function Math Number Object RegExp String _ attachEvent clearTimeout isFinite isNaN parseInt setTimeout".split(" "),D="[object Arguments]",$="[object Array]",T="[object Boolean]",F="[object Date]",B="[object Function]",W="[object Number]",q="[object Object]",z="[object RegExp]",P="[object String]",K={}; -K[B]=false,K[D]=K[$]=K[T]=K[F]=K[W]=K[q]=K[z]=K[P]=true;var L={leading:false,maxWait:0,trailing:false},M={configurable:false,enumerable:false,value:null,writable:false},V={"boolean":false,"function":true,object:true,number:false,string:false,undefined:false},U={"\\":"\\","'":"'","\n":"n","\r":"r","\t":"t","\u2028":"u2028","\u2029":"u2029"},G=V[typeof window]&&window||this,H=V[typeof exports]&&exports&&!exports.nodeType&&exports,J=V[typeof module]&&module&&!module.nodeType&&module,Q=J&&J.exports===H&&H,X=V[typeof global]&&global;!X||X.global!==X&&X.window!==X||(G=X); -var Y=s();typeof define=="function"&&typeof define.amd=="object"&&define.amd?(G._=Y, define(function(){return Y})):H&&J?Q?(J.exports=Y)._=Y:H._=Y:G._=Y}).call(this); \ No newline at end of file +;(function(){function n(n,r,t){for(var e=(t||0)-1,u=n?n.length:0;++e-1?0:-1:r?0:-1}function t(n){var r=this.cache,t=typeof n;if("boolean"==t||null==n)r[n]=!0;else{"number"!=t&&"string"!=t&&(t="object");var e="number"==t?n:m+n,u=r[t]||(r[t]={});"object"==t?(u[e]||(u[e]=[])).push(n):u[e]=!0; + +}}function e(n){return n.charCodeAt(0)}function u(n,r){for(var t=n.criteria,e=r.criteria,u=-1,o=t.length;++ui||"undefined"==typeof a)return 1;if(a=b&&a===n,l=[]; + +if(f){var p=o(e);p?(a=r,e=p):f=!1}for(;++u-1:v});return u.pop(),o.pop(),_&&(l(u),l(o)),a}function tn(n,r,t,e,u){(Yt(r)?Xn:fe)(r,function(r,o){ +var a,i,f=r,l=n[o];if(r&&((i=Yt(r))||le(r))){for(var c=e.length;c--;)if(a=e[c]==r){l=u[c];break}if(!a){var p;t&&(f=t(l,r),(p="undefined"!=typeof f)&&(l=f)),p||(l=i?Yt(l)?l:[]:le(l)?l:{}),e.push(r),u.push(l),p||tn(l,r,t,e,u)}}else t&&(f=t(l,r),"undefined"==typeof f&&(f=r)),"undefined"!=typeof f&&(l=f);n[o]=l})}function en(n,r){return n+St(Ht()*(r-n+1))}function un(t,e,u){var a=-1,f=ln(),p=t?t.length:0,s=[],v=!e&&p>=b&&f===n,h=u||v?i():s;if(v){var g=o(h);f=r,h=g}for(;++a3&&"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-1:"number"==typeof o?a=(Fn(n)?n.indexOf(r,t):u(n,r,t))>-1:fe(n,function(n){return++eo&&(o=f)}else r=null==r&&Fn(n)?e:h.createCallback(r,t,3),Xn(n,function(n,t,e){var a=r(n,t,e);a>u&&(u=a,o=n)});return o; + +}function tr(n,r,t){var u=1/0,o=u;if("function"!=typeof r&&t&&t[r]===n&&(r=null),null==r&&Yt(n))for(var a=-1,i=n.length;++a=b&&o(e?t[e]:s)))}var h=t[0],g=-1,y=h?h.length:0,m=[];n:for(;++g>>1;t(n[a])1?arguments:arguments[0],r=-1,t=n?rr(ve(n,"length")):0,e=ht(t<0?0:t);++r2?an(n,17,p(arguments,2),null,r):an(n,1,null,null,r)}function Fr(n){for(var r=arguments.length>1?nn(arguments,!0,!1,1):wn(n),t=-1,e=r.length;++t2?an(r,19,p(arguments,2),null,n):an(r,3,null,null,n); + +}function Wr(){for(var n=arguments,r=n.length;r--;)if(!In(n[r]))throw new kt;return function(){for(var r=arguments,t=n.length;t--;)r=[n[t].apply(this,r)];return r[0]}}function qr(n,r){return r="number"==typeof r?r:+r||n.length,an(n,4,null,null,null,r)}function zr(n,r,t){var e,u,o,a,i,f,l,c=0,p=!1,s=!0;if(!In(n))throw new kt;if(r=Mt(0,r)||0,t===!0){var h=!0;s=!1}else Sn(t)&&(h=t.leading,p="maxWait"in t&&(Mt(r,t.maxWait)||0),s="trailing"in t?t.trailing:s);var g=function(){var t=r-(ge()-a);if(t>0)f=Ft(g,t); +else{u&&It(u);var p=l;u=f=l=v,p&&(c=ge(),o=n.apply(i,e),f||u||(e=i=null))}},y=function(){f&&It(f),u=f=l=v,(s||p!==r)&&(c=ge(),o=n.apply(i,e),f||u||(e=i=null))};return function(){if(e=arguments,a=ge(),i=this,l=s&&(f||!h),p===!1)var t=h&&!f;else{u||h||(c=a);var v=p-(a-c),m=v<=0;m?(u&&(u=It(u)),c=a,o=n.apply(i,e)):u||(u=Ft(y,v))}return m&&f?f=It(f):f||r===p||(f=Ft(g,r)),t&&(m=!0,o=n.apply(i,e)),!m||f||u||(e=i=null),o}}function Lr(n){if(!In(n))throw new kt;var r=p(arguments,1);return Ft(function(){n.apply(v,r); + +},1)}function Pr(n,r){if(!In(n))throw new kt;var t=p(arguments,2);return Ft(function(){n.apply(v,t)},r)}function Kr(n,r){if(!In(n))throw new kt;var t=function(){var e=t.cache,u=r?r.apply(this,arguments):m+arguments[0];return Tt.call(e,u)?e[u]:e[u]=n.apply(this,arguments)};return t.cache={},t}function Ur(n){var r,t;if(!In(n))throw new kt;return function(){return r?t:(r=!0,t=n.apply(this,arguments),n=null,t)}}function Mr(n){return an(n,16,p(arguments,1))}function Vr(n){return an(n,32,null,p(arguments,1)); + +}function Gr(n,r,t){var e=!0,u=!0;if(!In(n))throw new kt;return t===!1?e=!1:Sn(t)&&(e="leading"in t?t.leading:e,u="trailing"in t?t.trailing:u),U.leading=e,U.maxWait=r,U.trailing=u,zr(n,r,U)}function Hr(n,r){return an(r,16,[n])}function Jr(n){return function(){return n}}function Qr(n,r,t){var e=typeof n;if(null==n||"function"==e)return Q(n,r,t);if("object"!=e)return tt(n);var u=ne(n),o=u[0],a=n[o];return 1!=u.length||a!==a||Sn(a)?function(r){for(var t=u.length,e=!1;t--&&(e=rn(r[u[t]],n[u[t]],null,!0));); +return e}:function(n){var r=n[o];return a===r&&(0!==a||1/a==1/r)}}function Xr(n){return null==n?"":jt(n).replace(ue,fn)}function Yr(n){return n}function Zr(n,r,t){var e=!0,u=r&&wn(r);r&&(t||u.length)||(null==t&&(t=r),o=g,r=n,n=h,u=wn(r)),t===!1?e=!1:Sn(t)&&"chain"in t&&(e=t.chain);var o=n,a=In(o);Xn(u,function(t){var u=n[t]=r[t];a&&(o.prototype[t]=function(){var r=this.__chain__,t=this.__wrapped__,a=[t];$t.apply(a,arguments);var i=u.apply(n,a);if(e||r){if(t===i&&Sn(i))return this;i=new o(i),i.__chain__=r; + +}return i})})}function nt(){return t._=Ot,this}function rt(){}function tt(n){return function(r){return r[n]}}function et(n,r,t){var e=null==n,u=null==r;if(null==t&&("boolean"==typeof n&&u?(t=n,n=1):u||"boolean"!=typeof r||(t=r,u=!0)),e&&u&&(r=1),n=+n||0,u?(r=n,n=0):r=+r||0,t||n%1||r%1){var o=Ht();return Vt(n+o*(r-n+parseFloat("1e-"+((o+"").length-1))),r)}return en(n,r)}function ut(n,r){if(n){var t=n[r];return In(t)?n[r]():t}}function ot(n,r,t){var e=h.templateSettings;n=jt(n||""),t=ae({},t,e);var u,o=ae({},t.imports,e.imports),i=ne(o),f=Un(o),l=0,c=t.interpolate||E,p="__p += '",s=wt((t.escape||E).source+"|"+c.source+"|"+(c===N?x:E).source+"|"+(t.evaluate||E).source+"|$","g"); + +n.replace(s,function(r,t,e,o,i,f){return e||(e=o),p+=n.slice(l,f).replace(S,a),t&&(p+="' +\n__e("+t+") +\n'"),i&&(u=!0,p+="';\n"+i+";\n__p += '"),e&&(p+="' +\n((__t = ("+e+")) == null ? '' : __t) +\n'"),l=f+r.length,r}),p+="';\n";var g=t.variable,y=g;y||(g="obj",p="with ("+g+") {\n"+p+"\n}\n"),p=(u?p.replace(w,""):p).replace(j,"$1").replace(k,"$1;"),p="function("+g+") {\n"+(y?"":g+" || ("+g+" = {});\n")+"var __t, __p = '', __e = _.escape"+(u?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+p+"return __p\n}"; + +var m="\n/*\n//# sourceURL="+(t.sourceURL||"/lodash/template/source["+D++ +"]")+"\n*/";try{var b=mt(i,"return "+p+m).apply(v,f)}catch(_){throw _.source=p,_}return r?b(r):(b.source=p,b)}function at(n,r,t){n=(n=+n)>-1?n:0;var e=-1,u=ht(n);for(r=Q(r,t,1);++e/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:N, +variable:"",imports:{_:h}},zt||(J=function(){function n(){}return function(r){if(Sn(r)){n.prototype=r;var e=new n;n.prototype=null}return e||t.Object()}}());var Xt=qt?function(n,r){M.value=r,qt(n,"__bindData__",M),M.value=null}:rt,Yt=Lt||function(n){return n&&"object"==typeof n&&"number"==typeof n.length&&Nt.call(n)==$||!1},Zt=function(n){var r,t=n,e=[];if(!t)return e;if(!V[typeof n])return e;for(r in t)Tt.call(t,r)&&e.push(r);return e},ne=Ut?function(n){return Sn(n)?Ut(n):[]}:Zt,re={"&":"&", +"<":"<",">":">",'"':""","'":"'"},te=kn(re),ee=wt("("+ne(te).join("|")+")","g"),ue=wt("["+ne(re).join("")+"]","g"),oe=function(n,r,t){var e,u=n,o=u;if(!u)return o;var a=arguments,i=0,f="number"==typeof t?2:a.length;if(f>3&&"function"==typeof a[f-2])var l=Q(a[--f-1],a[f--],2);else f>2&&"function"==typeof a[f-1]&&(l=a[--f]);for(;++i/g,R=RegExp("^["+d+"]*0+(?=.$)"),E=/($^)/,I=/\bthis\b/,S=/['\n\r\t\u2028\u2029\\]/g,A=["Array","Boolean","Date","Function","Math","Number","Object","RegExp","String","_","attachEvent","clearTimeout","isFinite","isNaN","parseInt","setTimeout"],D=0,T="[object Arguments]",$="[object Array]",F="[object Boolean]",B="[object Date]",W="[object Function]",q="[object Number]",z="[object Object]",L="[object RegExp]",P="[object String]",K={}; + +K[W]=!1,K[T]=K[$]=K[F]=K[B]=K[q]=K[z]=K[L]=K[P]=!0;var U={leading:!1,maxWait:0,trailing:!1},M={configurable:!1,enumerable:!1,value:null,writable:!1},V={"boolean":!1,"function":!0,object:!0,number:!1,string:!1,undefined:!1},G={"\\":"\\","'":"'","\n":"n","\r":"r"," ":"t","\u2028":"u2028","\u2029":"u2029"},H=V[typeof window]&&window||this,J=V[typeof exports]&&exports&&!exports.nodeType&&exports,Q=V[typeof module]&&module&&!module.nodeType&&module,X=Q&&Q.exports===J&&J,Y=V[typeof global]&&global;!Y||Y.global!==Y&&Y.window!==Y||(H=Y); + +var Z=s();"function"==typeof define&&"object"==typeof define.amd&&define.amd?(H._=Z,define(function(){return Z})):J&&Q?X?(Q.exports=Z)._=Z:J._=Z:H._=Z}).call(this); \ No newline at end of file diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/lodash/lodash.underscore.js --- a/server/php/basic/public_html/static/lib/lodash/lodash.underscore.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/php/basic/public_html/static/lib/lodash/lodash.underscore.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,11 +1,11 @@ /** * @license - * Lo-Dash 2.4.1 (Custom Build) + * Lo-Dash 2.4.2 (Custom Build) * Build: `lodash underscore exports="amd,commonjs,global,node" -o ./dist/lodash.underscore.js` * Copyright 2012-2013 The Dojo Foundation * Based on Underscore.js 1.5.2 * Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - * Available under MIT license + * Available under MIT license */ ;(function() { @@ -4458,7 +4458,7 @@ * debugging. See http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl * * For more information on precompiling templates see: - * http://lodash.com/custom-builds + * https://lodash.com/custom-builds * * For more information on Chrome extension sandboxes see: * http://developer.chrome.com/stable/extensions/sandboxingEval.html @@ -4909,7 +4909,7 @@ * @memberOf _ * @type string */ - lodash.VERSION = '2.4.1'; + lodash.VERSION = '2.4.2'; // add "Chaining" functions to the wrapper lodash.prototype.chain = wrapperChain; diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/lodash/lodash.underscore.min.js --- a/server/php/basic/public_html/static/lib/lodash/lodash.underscore.min.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/php/basic/public_html/static/lib/lodash/lodash.underscore.min.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,6 +1,6 @@ /** * @license - * Lo-Dash 2.4.1 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE + * Lo-Dash 2.4.2 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE * Build: `lodash underscore exports="amd,commonjs,global,node" -o ./dist/lodash.underscore.js` */ ;(function(){function n(n,r,t){t=(t||0)-1;for(var e=n?n.length:0;++tf||typeof i=="undefined")return 1;if(it?0:t);++et?Mr(0,e+t):$r(t,e-1))+1);e--;)if(n[e]===r)return e; return-1},u.mixin=Z,u.noConflict=function(){return mr._=Tr,this},u.random=function(n,r){return null==n&&null==r&&(r=1),n=+n||0,null==r?(r=n,n=0):r=+r||0,n+Sr(Wr()*(r-n+1))},u.reduce=W,u.reduceRight=z,u.result=function(n,r){if(n){var t=n[r];return A(t)?n[r]():t}},u.size=function(n){var r=n?n.length:0;return typeof r=="number"?r:Ur(n).length},u.some=P,u.sortedIndex=J,u.template=function(n,r,e){var o=u,i=o.templateSettings;n=(n||"")+"",e=j({},e,i);var f=0,a="__p+='",i=e.variable;n.replace(RegExp((e.escape||or).source+"|"+(e.interpolate||or).source+"|"+(e.evaluate||or).source+"|$","g"),function(r,e,u,o,i){return a+=n.slice(f,i).replace(ir,t),e&&(a+="'+_.escape("+e+")+'"),o&&(a+="';"+o+";\n__p+='"),u&&(a+="'+((__t=("+u+"))==null?'':__t)+'"),f=i+r.length,r }),a+="';",i||(i="obj",a="with("+i+"||{}){"+a+"}"),a="function("+i+"){var __t,__p='',__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}"+a+"return __p}";try{var l=Function("_","return "+a)(o)}catch(c){throw c.source=a,c}return r?l(r):(l.source=a,l)},u.unescape=function(n){return null==n?"":(n+"").replace(Hr,d)},u.uniqueId=function(n){var r=++tr+"";return n?n+r:r},u.all=B,u.any=P,u.detect=q,u.findWhere=function(n,r){return U(n,r,true)},u.foldl=W,u.foldr=z,u.include=k,u.inject=W,u.first=V,u.last=function(n,r,t){var u=0,o=n?n.length:0; -if(typeof r!="number"&&null!=r){var i=o;for(r=X(r,t,3);i--&&r(n[i],i,n);)u++}else if(u=r,null==u||t)return n?n[o-1]:rr;return e(n,Mr(0,o-u))},u.sample=function(n,r,t){return n&&typeof n.length!="number"&&(n=R(n)),null==r||t?n?n[0+Sr(Wr()*(n.length-1-0+1))]:rr:(n=C(n),n.length=$r(Mr(0,r),n.length),n)},u.take=V,u.head=V,Z(u),u.VERSION="2.4.1",u.prototype.chain=function(){return this.__chain__=true,this},u.prototype.value=function(){return this.__wrapped__},D("pop push reverse shift sort splice unshift".split(" "),function(n){var r=jr[n]; +if(typeof r!="number"&&null!=r){var i=o;for(r=X(r,t,3);i--&&r(n[i],i,n);)u++}else if(u=r,null==u||t)return n?n[o-1]:rr;return e(n,Mr(0,o-u))},u.sample=function(n,r,t){return n&&typeof n.length!="number"&&(n=R(n)),null==r||t?n?n[0+Sr(Wr()*(n.length-1-0+1))]:rr:(n=C(n),n.length=$r(Mr(0,r),n.length),n)},u.take=V,u.head=V,Z(u),u.VERSION="2.4.2",u.prototype.chain=function(){return this.__chain__=true,this},u.prototype.value=function(){return this.__wrapped__},D("pop push reverse shift sort splice unshift".split(" "),function(n){var r=jr[n]; u.prototype[n]=function(){var n=this.__wrapped__;return r.apply(n,arguments),zr.spliceObjects||0!==n.length||delete n[0],this}}),D(["concat","join","slice"],function(n){var r=jr[n];u.prototype[n]=function(){var n=r.apply(this.__wrapped__,arguments);return this.__chain__&&(n=new o(n),n.__chain__=true),n}}),typeof define=="function"&&typeof define.amd=="object"&&define.amd?(mr._=u, define(function(){return u})):_r&&dr?br?(dr.exports=u)._=u:_r._=u:mr._=u}).call(this); \ No newline at end of file diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/renkan/css/renkan.css --- a/server/php/basic/public_html/static/lib/renkan/css/renkan.css Thu Jun 18 16:50:54 2015 +0200 +++ b/server/php/basic/public_html/static/lib/renkan/css/renkan.css Thu Jun 18 16:53:16 2015 +0200 @@ -394,6 +394,15 @@ font-size: 16px; font-weight: bold; } +.Rk-Editor video { + max-height: 100%; + max-width: 100%; +} +.Rk-Editor audio { + max-height: 100%; + max-width: 100%; +} + .Rk-Editor p, .Rk-Editor-p, .Rk-Editor-p > div { margin: 5px 0; font-size: 12px; clear: both; } @@ -455,6 +464,18 @@ width: 250px; height: 120px; resize: none; } +div.Rk-Edit-Description { + -moz-appearance: textfield-multiline; + -webkit-appearance: textarea; + background-color: #FFF; + border: 1px solid #F0F0F0; + width: 250px; + height: 120px; + resize: vertical; + overflow: auto; + padding: 2px; +} + .Rk-UserColor { display: inline-block; width: 12px; height: 12px; border: 1px solid #666666; margin: -2px 2px; } diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/renkan/css/renkan.min.css --- a/server/php/basic/public_html/static/lib/renkan/css/renkan.min.css Thu Jun 18 16:50:54 2015 +0200 +++ b/server/php/basic/public_html/static/lib/renkan/css/renkan.min.css Thu Jun 18 16:53:16 2015 +0200 @@ -50,4 +50,4 @@ * * The fact that you are presently reading this means that you have had * knowledge of the CeCILL-C license and that you accept its terms. - *//*! renkan - v0.7.11 - Copyright © IRI 2014 */#renkan{overflow:hidden}.Rk-Main h3,.Rk-Main h4,.Rk-Main li,.Rk-Main p,.Rk-Main ul{border:0 none;margin:0;padding:0}.Rk-Main li,.Rk-Main ul{list-style:none}.Rk-Main input::-moz-focus-inner{border:0;padding:0}.Rk-Main table{border-collapse:separate;border-spacing:0}.Rk-Main td,.Rk-Main th{vertical-align:top}.Rk-Main img a{border:none}.Rk-Main{font-size:10px;font-family:Arial,Helvetica,sans-serif;background:#fff;color:#000}.Rk-Main a{color:#6060c0}.Rk-Main{position:absolute;left:0;top:0;right:0;bottom:0}.Rk-Render{position:absolute;top:0;right:0;bottom:0;background:#fff}.Rk-Render-Full{left:0}.Rk-Render-Panel{left:300px}.Rk-TopBar{position:absolute;left:0;top:0;right:0;height:35px;background:#333;background:-moz-linear-gradient(top,#505050 5px,#1e1e1e 30px);background:-webkit-linear-gradient(top,#505050 5px,#1e1e1e 30px);background:-ms-linear-gradient(top,#505050 5px,#1e1e1e 30px);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#505050', endColorstr='#1e1e1e', GradientType=0)}.Rk-TopBar .loader{display:block;background:none repeat red;width:0;height:4px;overflow:hidden;position:absolute;bottom:0;left:0;transition:width 3s linear;z-index:50}.Rk-TopBar .loader.run{width:100%}.Rk-PadTitle{float:left;font-size:14px;height:16px;margin:4px 5px;background:#666;padding:4px;border:1px solid #333;border-radius:3px;box-shadow:0 1px 0 #505050;color:#fff;font-weight:700}input.Rk-PadTitle{width:180px}h2.Rk-PadTitle{min-width:180px;max-width:320px;overflow:hidden}.Rk-Users{float:right;width:130px;margin:4px 5px}.Rk-CurrentUser{font-size:13px;background:#666;padding:4px;border:1px solid #333;border-radius:3px;box-shadow:0 1px 0 #505050;color:#fff;text-align:center}.Rk-CurrentUser-Color{display:inline-block;width:12px;height:12px;border:1px solid #333;margin:-2px 2px;position:relative}.Rk-CurrentUser input{width:95px;padding:1px;border:none;border-radius:2px}.Rk-UserList{box-shadow:0 2px 2px #999;position:relative;z-index:3;display:none;padding-top:8px}.Rk-User{background:#fff;padding:3px;font-size:12px;border-style:solid solid none;border-color:#ccc;border-width:1px}.Rk-TopBar-Button{float:right;background:url(../img/topbarbuttons.png) no-repeat;height:35px;cursor:pointer;position:relative}.Rk-TopBar-Separator{background:#666;background:-moz-linear-gradient(top,#666 20%,#333 80%);background:-webkit-linear-gradient(top,#666 20%,#333 80%);background:-ms-linear-gradient(top,#666 20%,#333 80%);content:"";display:block;height:35px;float:right;width:1px;border-left:1px solid #111;margin:0 3px}.Rk-TopBar-Tooltip{position:absolute;top:31px;left:50%;margin-left:-60px;width:120px;z-index:4;display:none}.Rk-TopBar-Tooltip-Contents{background:#fff;font-size:13px;font-weight:700;color:#6060c0;text-align:center;padding:2px;border-style:none solid solid;border-width:1px;border-color:#ccc;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.Rk-TopBar-Tooltip:before{content:".";display:block;text-indent:-8000px;height:7px;background:url(../img/tooltiparrow.png) center no-repeat;margin:0 1px}.Rk-AddNode-Button{width:30px;background-position:-2px 0}.Rk-AddNode-Button:hover{background-position:-2px -35px}.Rk-FullScreen-Button{width:30px;background-position:-36px 0}.Rk-FullScreen-Button:hover{background-position:-36px -35px}.Rk-AddEdge-Button{width:30px;background-position:-70px 0}.Rk-AddEdge-Button:hover{background-position:-70px -35px}.Rk-Save-Button{width:30px;background-position:-104px 0}.Rk-Save-Button.saving{background-position:-104px 0}.Rk-Save-Button.Rk-Save-Online:hover,.Rk-Save-Button.saved:hover,.Rk-Save-Button:hover{background-position:-104px -35px}.Rk-Save-Button.Rk-Save-Online:active,.Rk-Save-Button.saved:active,.Rk-Save-Button:active{background-position:-104px 0}.Rk-Save-Button.to-save{background-position:-172px -35px}.Rk-Save-Button.Rk-Save-Online,.Rk-Save-Button.saved{background-position:-172px 0}.Rk-Save-Button.Rk-Save-ReadOnly,.Rk-Save-Button.disabled{opacity:.4;cursor:default}.Rk-Export-Button{width:30px;background-position:-274px 0}.Rk-Export-Button.disabled{opacity:.5;cursor:default}.Rk-Export-Button:hover{background-position:-274px -35px}.Rk-Export-Button.disabled:hover{opacity:1;background-position:-274px 0}.Rk-Bookmarklet-Button{width:30px;background-position:-138px 0}.Rk-Bookmarklet-Button.disabled{opacity:.5;cursor:default}.Rk-Bookmarklet-Button:hover{background-position:-138px -35px}.Rk-Bookmarklet-Button.disabled:hover{opacity:1;background-position:-138px 0}.Rk-Home-Button{width:30px;background-position:-206px 0}.Rk-Home-Button:hover{background-position:-206px -35px}.Rk-Open-Button{width:30px;background-position:-240px 0}.Rk-Open-Button:hover{background-position:-240px -35px}.Rk-GraphSearch-Form{float:right;width:185px;position:relative}.Rk-GraphSearch-Form:after,.Rk-GraphSearch-Form:before{position:absolute;display:block;content:".";text-indent:-9999px}.Rk-GraphSearch-Form:before{right:10px;top:20px;width:7px;height:2px;border:none;padding:0;background:#666;transform:rotate(40deg);-webkit-transform:rotate(40deg)}.Rk-GraphSearch-Form:after{right:13px;top:11px;width:6px;height:6px;border-radius:8px;border:2px solid #666}.Rk-GraphSearch-Field{line-height:23px;font-size:14px;height:23px;padding:0 5px;border:none;margin:6px 5px;width:165px;background:#f0f0f0;box-shadow:1px 1px 1px #999 inset;border-radius:5px;-webkit-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.Rk-Editing-Space{position:absolute;left:0;top:35px;right:0;bottom:0;overflow:hidden;background:-moz-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%);background:-webkit-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%);background:-ms-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%)}.Rk-Editing-Space-Full{top:0}.Rk-Canvas{position:absolute;left:0;top:0;right:0;bottom:0;z-index:2}.Rk-Canvas[resize]{width:100%;height:100%}.Rk-Highlighted{background:rgba(255,255,0,.5)}.Rk-Labels{position:absolute;left:0;top:0;z-index:1;font-family:"Segoe UI","Helvetica Neue",Arial,Helvetica,sans-serif}.Rk-Label{position:absolute;width:160px;margin-left:-80px;text-align:center;font-size:13px;line-height:13px}.Rk-Edge-Label{font-size:11px;transform-origin:50% 0;-moz-transform-origin:50% 0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0}.Rk-Editor{position:absolute;left:0;top:0;z-index:3}.Rk-Notifications{position:absolute;right:15px;top:15px;width:200px;padding:10px;border-radius:8px;display:none;color:#fff;font-size:13px;text-align:center;font-weight:700;background:rgba(20,20,20,.7);background:-moz-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);background:-webkit-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);background:-ms-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#202020', endColorstr='#000000', GradientType=0)}.Rk-CloseX{float:right;cursor:pointer}.Rk-Editor h2{font-size:16px;font-weight:700}.Rk-Editor p,.Rk-Editor-p,.Rk-Editor-p>div{margin:5px 0;font-size:12px;clear:both}.Rk-Editor-Label{float:left;width:80px}a.Rk-Edit-Goto{display:block;float:right;width:18px;height:17px;margin:1px 0;border:none;background:url(../img/goto.png)}.Rk-Edit-Image-File,.Rk-Edit-Title,.Rk-Edit-URI,.Rk-Edit-Vocabulary{font-size:12px;width:250px}.Rk-Edit-Image{font-size:12px;width:220px}.Rk-Edit-Image-Del{display:inline-block;background:url(../img/remove.png);background-size:15px 20px;background-repeat:no-repeat;vertical-align:top;height:20px;width:15px;margin-right:2px}.Rk-Edit-URI{font-size:12px;width:220px}.Rk-Edit-ImgWrap{text-align:center}.Rk-Edit-ImgPreview{display:inline-block;border:1px solid #666;margin:5px auto;position:relative}.Rk-Edit-ImgPreview img{display:inline-block;max-width:253px!important;max-height:200px!important}.Rk-Edit-ImgPreview svg{height:100%;left:0;position:absolute;top:0;width:100%}.Rk-Editor textarea{width:250px;height:120px;resize:none}.Rk-UserColor{display:inline-block;width:12px;height:12px;border:1px solid #666;margin:-2px 2px}.Rk-Edit-Color{display:inline-block;width:10px;height:10px;border:2px solid #333;margin:-2px 2px;position:relative}.Rk-Edit-ColorTip{display:block;width:3px;height:3px;background:#fff;position:absolute;bottom:0;right:0;cursor:pointer}.Rk-Edit-ColorPicker-Wrapper{display:inline-block;position:relative;float:left}.Rk-Edit-ColorPicker{position:absolute;top:-2px;left:15px;width:96px;height:96px;border:1px solid #CCC;padding:5px 4px 4px 5px;background:#fff;border-radius:5px;display:none;z-index:4}.Rk-CurrentUser .Rk-Edit-ColorPicker{left:-105px;top:2px}.Rk-Edit-ColorPicker-Text{color:#303080;font-weight:700}.Rk-Edit-ColorPicker li{float:left;width:11px;height:11px;margin:0 1px 1px 0;cursor:pointer}.Rk-Edit-Dash{float:left;display:inline-block}.Rk-Edit-Size-Btn{font-size:13px;font-weight:700;padding:0 4px;background:#fff;color:#000;border:1px solid #ccc;text-decoration:none}.Rk-Edit-Size-Btn:hover{background:#666}.Rk-Edit-Size-Disp{display:inline-block;padding:0 5px;text-align:center;width:20px}.Rk-Edit-Vocabulary-Class{color:#999;font-style:italic;font-weight:700}.Rk-Edit-Vocabulary-Property{padding-left:20px}.Rk-Edit-Direction{border:1px solid #666;padding:3px 5px;line-height:20px;border-radius:3px;background:#f0f0f0;cursor:pointer}.Rk-Edit-Direction:hover{background:silver}.Rk-Display-Title a{text-decoration:none;color:#000}.Rk-Display-Title a:hover{text-decoration:underline}.Rk-Display-URI{font-style:italic}.Rk-Display-ImgPreview{margin:5px auto;display:block;max-width:255px!important;max-height:260px!important}.Rk-Fold-Bins{position:absolute;top:5px;width:12px;text-align:center;font-size:16px;cursor:pointer;line-height:16px;padding:4px;color:#fff;background:#666;border-radius:0 6px 6px 0;font-weight:700}.Rk-Fold-Bins:hover{background:#333}.Rk-ZoomButtons{position:absolute;left:0;top:35px;cursor:pointer}.Rk-Editing-Space-Full .Rk-ZoomButtons{top:0}.Rk-ShowHiddenNodes,.Rk-ZoomFit,.Rk-ZoomIn,.Rk-ZoomOut,.Rk-ZoomSave,.Rk-ZoomSetSaved{width:21px;height:20px;background:url(../img/zoombuttons.png);margin:5px}.Rk-ZoomIn:hover{background-position:0 -20px}.Rk-ZoomFit{background-position:-42px 0}.Rk-ZoomFit:hover{background-position:-42px -20px}.Rk-ZoomOut{background-position:-21px 0}.Rk-ZoomOut:hover{background-position:-21px -20px}.Rk-ZoomSave{background-position:-63px 0}.Rk-ZoomSave:hover{background-position:-63px -20px}.Rk-ZoomSetSaved{background-position:-84px 0;display:none}.Rk-ZoomSetSaved:hover{background-position:-84px -20px}.Rk-ShowHiddenNodes{background-position:-105px 0}.Rk-ShowHiddenNodes:hover{background-position:-105px -20px}.Rk-Bins{background:#fff;position:absolute;left:0;top:0;width:299px;bottom:0;overflow:hidden;border-right:1px solid #252525}.Rk-Bins-Title{border:0 none;width:290px;height:15px;line-height:15px;margin:0;padding:15px 0 5px 10px;font-size:14px;color:#F0F0F0;background:-moz-linear-gradient(top,#1e1e1e 5px,#606060 30px);background:-webkit-linear-gradient(top,#1e1e1e 5px,#606060 30px);background:-ms-linear-gradient(top,#1e1e1e 5px,#606060 30px);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e1e1e', endColorstr='#606060', GradientType=0)}.Rk-Search-Form{padding:0 10px 8px;height:27px;background:#606060}.Rk-Search-Input,.Rk-Search-Select{float:left;margin:0}.Rk-Search-Input{border-top-left-radius:5px;border-bottom-left-radius:5px;border:1px solid #003050;font-size:13px;background:#fff;height:25px;padding:0 5px;line-height:25px;-webkit-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.Rk-Web-Search-Input{width:190px}.Rk-Bins-Search-Input{width:235px}.Rk-Search-Select{display:inline-block;position:relative;width:45px;border-width:1px;border-color:#003050;border-style:solid none;cursor:pointer;height:25px;background:#fff url(../img/more.png) 30px 10px no-repeat}.Rk-Search-Select:hover{background-color:#3030FF}.Rk-Search-Current{width:40px;height:20px;margin:2px;background-repeat:no-repeat}.Rk-Search-List{width:180px;margin-left:15px;font-size:13px;position:absolute;right:0;top:25px;background:#fff;box-shadow:1px 1px 2px #505050;display:none;border:1px solid #ccc;z-index:2}.Rk-Search-List li{padding:2px 2px 2px 30px;border-top:1px solid #ccc;height:16px;background-color:#fff;background-repeat:no-repeat;cursor:pointer}.Rk-Search-List li:hover{background-color:#3030ff;color:#fff}.Rk-Search-Submit{border:1px solid #003050;height:27px;width:30px;border-top-right-radius:5px;border-bottom-right-radius:5px;background:#333 center no-repeat url(../img/search.png);cursor:pointer}.Rk-Search-Submit:hover{background-color:#999}.Rk-Bin-Title{background:#333;background:-moz-linear-gradient(top,#505050 20%,#1e1e1e 80%);background:-webkit-linear-gradient(top,#505050 20%,#1e1e1e 80%);background:-ms-linear-gradient(top,#505050 20%,#1e1e1e 80%);font-weight:700;font-size:14px;padding:5px;cursor:pointer;color:#f0f0f0;margin:0;border:0 none}.Rk-Bin-Close{float:right;display:block;font-size:16px;font-weight:700;margin:2px 3px 0;color:#f0f0f0;cursor:pointer;text-shadow:-1px -1px 1px #999,1px 1px 1px #000;text-decoration:none}.Rk-Bin-Close:hover{color:#ffff80}.Rk-Bin-Title:hover{color:#ffffe0;background:#505050;background:-moz-linear-gradient(top,#141414 20%,#3c3c3c 80%);background:-webkit-linear-gradient(top,#141414 20%,#3c3c3c 80%);background:-ms-linear-gradient(top,#141414 20%,#3c3c3c 80%)}.Rk-Bin-Refresh{width:18px;height:17px;background:url(../img/refresh.png);display:block;float:right;margin-top:4px}.Rk-Bin-Refresh:hover{background-position:-18px 0}.Rk-Bin-Count{float:right;background:#c000a0;color:#FFF;text-shadow:1px 1px 1px #000;display:none;border-radius:4px;padding:1px 3px;font-size:10px;font-weight:700;margin-top:4px}.Rk-Bin-Title-Icon{float:left;width:25px;margin:2px}.Rk-Bin-Main{overflow:auto;background:#fff;background:-moz-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%);background:-webkit-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%);background:-ms-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%)}.Rk-Bin-Item{cursor:move}.Rk-Bin-Item.hover,.Rk-Bin-Item:hover{background:-moz-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);background:-webkit-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);background:-ms-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d0d0d0', endColorstr='#f3f3f3', GradientType=0)}.Rk-Bin-Item.selected{background:#ffffc0}.Rk-Bin-Main li{padding:2px;border-bottom:1px solid #ccc;clear:both;overflow:hidden}.Rk-Bin-Main h3{font-size:14px;font-style:italic;font-weight:700;text-align:center}.Rk-Bin-Main h4{font-size:12px;font-weight:700}.Rk-Bin-Main p{font-size:11px}.Rk-Bin-Main h4 a{color:#303080}.Rk-Bin-Main .searchmatch{background:#ffff80}.Rk-Wikipedia-Search-Icon{background-image:url(../img/search-logos.png)}.Rk-Wikipedia-Icon{float:left;margin:3px;max-height:48px;max-width:48px}.Rk-Wikipedia-Title-Icon{height:20px;background:url(../img/search-logos.png)}.Rk-Wikipedia-Lang-en{background-position:0 -20px}.Rk-Wikipedia-Lang-fr{background-position:0 -40px}.Rk-Wikipedia-Lang-ja{background-position:0 -60px}.Rk-Wikipedia-Result{min-height:51px}.Rk-Wikipedia-Result h4,.Rk-Wikipedia-Result p{margin-left:54px}.Rk-ResourceList-Image{float:left;max-width:100px;max-height:75px;margin-right:2px}.Rk-Ldt-Icon,.Rk-Ldt-Title-Icon{background:url(../img/search-logos.png);background-position:0 -100px;background-repeat:no-repeat}.Rk-Ldt-Title-Icon{height:20px;margin-top:4px}.Rk-Ldt-Tag-Icon{float:left;margin:0 2px 0 0}.Rk-Ldt-Annotation-Icon{float:left;margin:3px}.Rk-Clear{clear:both}h4.Rk-Bin-Loading{margin:10px;text-align:center;font-size:20px;color:#999} \ No newline at end of file + *//*! renkan - v0.7.11 - Copyright © IRI 2014 */#renkan{overflow:hidden}.Rk-Main h3,.Rk-Main h4,.Rk-Main li,.Rk-Main p,.Rk-Main ul{border:0 none;margin:0;padding:0}.Rk-Main li,.Rk-Main ul{list-style:none}.Rk-Main input::-moz-focus-inner{border:0;padding:0}.Rk-Main table{border-collapse:separate;border-spacing:0}.Rk-Main td,.Rk-Main th{vertical-align:top}.Rk-Main img a{border:none}.Rk-Main{font-size:10px;font-family:Arial,Helvetica,sans-serif;background:#fff;color:#000}.Rk-Main a{color:#6060c0}.Rk-Main{position:absolute;left:0;top:0;right:0;bottom:0}.Rk-Render{position:absolute;top:0;right:0;bottom:0;background:#fff}.Rk-Render-Full{left:0}.Rk-Render-Panel{left:300px}.Rk-TopBar{position:absolute;left:0;top:0;right:0;height:35px;background:#333;background:-moz-linear-gradient(top,#505050 5px,#1e1e1e 30px);background:-webkit-linear-gradient(top,#505050 5px,#1e1e1e 30px);background:-ms-linear-gradient(top,#505050 5px,#1e1e1e 30px);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#505050', endColorstr='#1e1e1e', GradientType=0)}.Rk-TopBar .loader{display:block;background:none repeat red;width:0;height:4px;overflow:hidden;position:absolute;bottom:0;left:0;transition:width 3s linear;z-index:50}.Rk-TopBar .loader.run{width:100%}.Rk-PadTitle{float:left;font-size:14px;height:16px;margin:4px 5px;background:#666;padding:4px;border:1px solid #333;border-radius:3px;box-shadow:0 1px 0 #505050;color:#fff;font-weight:700}input.Rk-PadTitle{width:180px}h2.Rk-PadTitle{min-width:180px;max-width:320px;overflow:hidden}.Rk-Users{float:right;width:130px;margin:4px 5px}.Rk-CurrentUser{font-size:13px;background:#666;padding:4px;border:1px solid #333;border-radius:3px;box-shadow:0 1px 0 #505050;color:#fff;text-align:center}.Rk-CurrentUser-Color{display:inline-block;width:12px;height:12px;border:1px solid #333;margin:-2px 2px;position:relative}.Rk-CurrentUser input{width:95px;padding:1px;border:none;border-radius:2px}.Rk-UserList{box-shadow:0 2px 2px #999;position:relative;z-index:3;display:none;padding-top:8px}.Rk-User{background:#fff;padding:3px;font-size:12px;border-style:solid solid none;border-color:#ccc;border-width:1px}.Rk-TopBar-Button{float:right;background:url(../img/topbarbuttons.png) no-repeat;height:35px;cursor:pointer;position:relative}.Rk-TopBar-Separator{background:#666;background:-moz-linear-gradient(top,#666 20%,#333 80%);background:-webkit-linear-gradient(top,#666 20%,#333 80%);background:-ms-linear-gradient(top,#666 20%,#333 80%);content:"";display:block;height:35px;float:right;width:1px;border-left:1px solid #111;margin:0 3px}.Rk-TopBar-Tooltip{position:absolute;top:31px;left:50%;margin-left:-60px;width:120px;z-index:4;display:none}.Rk-TopBar-Tooltip-Contents{background:#fff;font-size:13px;font-weight:700;color:#6060c0;text-align:center;padding:2px;border-style:none solid solid;border-width:1px;border-color:#ccc;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.Rk-TopBar-Tooltip:before{content:".";display:block;text-indent:-8000px;height:7px;background:url(../img/tooltiparrow.png) center no-repeat;margin:0 1px}.Rk-AddNode-Button{width:30px;background-position:-2px 0}.Rk-AddNode-Button:hover{background-position:-2px -35px}.Rk-FullScreen-Button{width:30px;background-position:-36px 0}.Rk-FullScreen-Button:hover{background-position:-36px -35px}.Rk-AddEdge-Button{width:30px;background-position:-70px 0}.Rk-AddEdge-Button:hover{background-position:-70px -35px}.Rk-Save-Button{width:30px;background-position:-104px 0}.Rk-Save-Button.saving{background-position:-104px 0}.Rk-Save-Button.Rk-Save-Online:hover,.Rk-Save-Button.saved:hover,.Rk-Save-Button:hover{background-position:-104px -35px}.Rk-Save-Button.Rk-Save-Online:active,.Rk-Save-Button.saved:active,.Rk-Save-Button:active{background-position:-104px 0}.Rk-Save-Button.to-save{background-position:-172px -35px}.Rk-Save-Button.Rk-Save-Online,.Rk-Save-Button.saved{background-position:-172px 0}.Rk-Save-Button.Rk-Save-ReadOnly,.Rk-Save-Button.disabled{opacity:.4;cursor:default}.Rk-Export-Button{width:30px;background-position:-274px 0}.Rk-Export-Button.disabled{opacity:.5;cursor:default}.Rk-Export-Button:hover{background-position:-274px -35px}.Rk-Export-Button.disabled:hover{opacity:1;background-position:-274px 0}.Rk-Bookmarklet-Button{width:30px;background-position:-138px 0}.Rk-Bookmarklet-Button.disabled{opacity:.5;cursor:default}.Rk-Bookmarklet-Button:hover{background-position:-138px -35px}.Rk-Bookmarklet-Button.disabled:hover{opacity:1;background-position:-138px 0}.Rk-Home-Button{width:30px;background-position:-206px 0}.Rk-Home-Button:hover{background-position:-206px -35px}.Rk-Open-Button{width:30px;background-position:-240px 0}.Rk-Open-Button:hover{background-position:-240px -35px}.Rk-GraphSearch-Form{float:right;width:185px;position:relative}.Rk-GraphSearch-Form:after,.Rk-GraphSearch-Form:before{position:absolute;display:block;content:".";text-indent:-9999px}.Rk-GraphSearch-Form:before{right:10px;top:20px;width:7px;height:2px;border:none;padding:0;background:#666;transform:rotate(40deg);-webkit-transform:rotate(40deg)}.Rk-GraphSearch-Form:after{right:13px;top:11px;width:6px;height:6px;border-radius:8px;border:2px solid #666}.Rk-GraphSearch-Field{line-height:23px;font-size:14px;height:23px;padding:0 5px;border:none;margin:6px 5px;width:165px;background:#f0f0f0;box-shadow:1px 1px 1px #999 inset;border-radius:5px;-webkit-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.Rk-Editing-Space{position:absolute;left:0;top:35px;right:0;bottom:0;overflow:hidden;background:-moz-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%);background:-webkit-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%);background:-ms-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%)}.Rk-Editing-Space-Full{top:0}.Rk-Canvas{position:absolute;left:0;top:0;right:0;bottom:0;z-index:2}.Rk-Canvas[resize]{width:100%;height:100%}.Rk-Highlighted{background:rgba(255,255,0,.5)}.Rk-Labels{position:absolute;left:0;top:0;z-index:1;font-family:"Segoe UI","Helvetica Neue",Arial,Helvetica,sans-serif}.Rk-Label{position:absolute;width:160px;margin-left:-80px;text-align:center;font-size:13px;line-height:13px}.Rk-Edge-Label{font-size:11px;transform-origin:50% 0;-moz-transform-origin:50% 0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0}.Rk-Editor{position:absolute;left:0;top:0;z-index:3}.Rk-Notifications{position:absolute;right:15px;top:15px;width:200px;padding:10px;border-radius:8px;display:none;color:#fff;font-size:13px;text-align:center;font-weight:700;background:rgba(20,20,20,.7);background:-moz-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);background:-webkit-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);background:-ms-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#202020', endColorstr='#000000', GradientType=0)}.Rk-CloseX{float:right;cursor:pointer}.Rk-Editor h2{font-size:16px;font-weight:700}.Rk-Editor audio,.Rk-Editor video{max-height:100%;max-width:100%}.Rk-Editor p,.Rk-Editor-p,.Rk-Editor-p>div{margin:5px 0;font-size:12px;clear:both}.Rk-Editor-Label{float:left;width:80px}a.Rk-Edit-Goto{display:block;float:right;width:18px;height:17px;margin:1px 0;border:none;background:url(../img/goto.png)}.Rk-Edit-Image-File,.Rk-Edit-Title,.Rk-Edit-URI,.Rk-Edit-Vocabulary{font-size:12px;width:250px}.Rk-Edit-Image{font-size:12px;width:220px}.Rk-Edit-Image-Del{display:inline-block;background:url(../img/remove.png);background-size:15px 20px;background-repeat:no-repeat;vertical-align:top;height:20px;width:15px;margin-right:2px}.Rk-Edit-URI{font-size:12px;width:220px}.Rk-Edit-ImgWrap{text-align:center}.Rk-Edit-ImgPreview{display:inline-block;border:1px solid #666;margin:5px auto;position:relative}.Rk-Edit-ImgPreview img{display:inline-block;max-width:253px!important;max-height:200px!important}.Rk-Edit-ImgPreview svg{height:100%;left:0;position:absolute;top:0;width:100%}.Rk-Editor textarea{width:250px;height:120px;resize:none}div.Rk-Edit-Description{-moz-appearance:textfield-multiline;-webkit-appearance:textarea;background-color:#FFF;border:1px solid #F0F0F0;width:250px;height:120px;resize:vertical;overflow:auto;padding:2px}.Rk-UserColor{display:inline-block;width:12px;height:12px;border:1px solid #666;margin:-2px 2px}.Rk-Edit-Color{display:inline-block;width:10px;height:10px;border:2px solid #333;margin:-2px 2px;position:relative}.Rk-Edit-ColorTip{display:block;width:3px;height:3px;background:#fff;position:absolute;bottom:0;right:0;cursor:pointer}.Rk-Edit-ColorPicker-Wrapper{display:inline-block;position:relative;float:left}.Rk-Edit-ColorPicker{position:absolute;top:-2px;left:15px;width:96px;height:96px;border:1px solid #CCC;padding:5px 4px 4px 5px;background:#fff;border-radius:5px;display:none;z-index:4}.Rk-CurrentUser .Rk-Edit-ColorPicker{left:-105px;top:2px}.Rk-Edit-ColorPicker-Text{color:#303080;font-weight:700}.Rk-Edit-ColorPicker li{float:left;width:11px;height:11px;margin:0 1px 1px 0;cursor:pointer}.Rk-Edit-Dash{float:left;display:inline-block}.Rk-Edit-Size-Btn{font-size:13px;font-weight:700;padding:0 4px;background:#fff;color:#000;border:1px solid #ccc;text-decoration:none}.Rk-Edit-Size-Btn:hover{background:#666}.Rk-Edit-Size-Disp{display:inline-block;padding:0 5px;text-align:center;width:20px}.Rk-Edit-Vocabulary-Class{color:#999;font-style:italic;font-weight:700}.Rk-Edit-Vocabulary-Property{padding-left:20px}.Rk-Edit-Direction{border:1px solid #666;padding:3px 5px;line-height:20px;border-radius:3px;background:#f0f0f0;cursor:pointer}.Rk-Edit-Direction:hover{background:silver}.Rk-Display-Title a{text-decoration:none;color:#000}.Rk-Display-Title a:hover{text-decoration:underline}.Rk-Display-URI{font-style:italic}.Rk-Display-ImgPreview{margin:5px auto;display:block;max-width:255px!important;max-height:260px!important}.Rk-Fold-Bins{position:absolute;top:5px;width:12px;text-align:center;font-size:16px;cursor:pointer;line-height:16px;padding:4px;color:#fff;background:#666;border-radius:0 6px 6px 0;font-weight:700}.Rk-Fold-Bins:hover{background:#333}.Rk-ZoomButtons{position:absolute;left:0;top:35px;cursor:pointer}.Rk-Editing-Space-Full .Rk-ZoomButtons{top:0}.Rk-ShowHiddenNodes,.Rk-ZoomFit,.Rk-ZoomIn,.Rk-ZoomOut,.Rk-ZoomSave,.Rk-ZoomSetSaved{width:21px;height:20px;background:url(../img/zoombuttons.png);margin:5px}.Rk-ZoomIn:hover{background-position:0 -20px}.Rk-ZoomFit{background-position:-42px 0}.Rk-ZoomFit:hover{background-position:-42px -20px}.Rk-ZoomOut{background-position:-21px 0}.Rk-ZoomOut:hover{background-position:-21px -20px}.Rk-ZoomSave{background-position:-63px 0}.Rk-ZoomSave:hover{background-position:-63px -20px}.Rk-ZoomSetSaved{background-position:-84px 0;display:none}.Rk-ZoomSetSaved:hover{background-position:-84px -20px}.Rk-ShowHiddenNodes{background-position:-105px 0}.Rk-ShowHiddenNodes:hover{background-position:-105px -20px}.Rk-Bins{background:#fff;position:absolute;left:0;top:0;width:299px;bottom:0;overflow:hidden;border-right:1px solid #252525}.Rk-Bins-Title{border:0 none;width:290px;height:15px;line-height:15px;margin:0;padding:15px 0 5px 10px;font-size:14px;color:#F0F0F0;background:-moz-linear-gradient(top,#1e1e1e 5px,#606060 30px);background:-webkit-linear-gradient(top,#1e1e1e 5px,#606060 30px);background:-ms-linear-gradient(top,#1e1e1e 5px,#606060 30px);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e1e1e', endColorstr='#606060', GradientType=0)}.Rk-Search-Form{padding:0 10px 8px;height:27px;background:#606060}.Rk-Search-Input,.Rk-Search-Select{float:left;margin:0}.Rk-Search-Input{border-top-left-radius:5px;border-bottom-left-radius:5px;border:1px solid #003050;font-size:13px;background:#fff;height:25px;padding:0 5px;line-height:25px;-webkit-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.Rk-Web-Search-Input{width:190px}.Rk-Bins-Search-Input{width:235px}.Rk-Search-Select{display:inline-block;position:relative;width:45px;border-width:1px;border-color:#003050;border-style:solid none;cursor:pointer;height:25px;background:#fff url(../img/more.png) 30px 10px no-repeat}.Rk-Search-Select:hover{background-color:#3030FF}.Rk-Search-Current{width:40px;height:20px;margin:2px;background-repeat:no-repeat}.Rk-Search-List{width:180px;margin-left:15px;font-size:13px;position:absolute;right:0;top:25px;background:#fff;box-shadow:1px 1px 2px #505050;display:none;border:1px solid #ccc;z-index:2}.Rk-Search-List li{padding:2px 2px 2px 30px;border-top:1px solid #ccc;height:16px;background-color:#fff;background-repeat:no-repeat;cursor:pointer}.Rk-Search-List li:hover{background-color:#3030ff;color:#fff}.Rk-Search-Submit{border:1px solid #003050;height:27px;width:30px;border-top-right-radius:5px;border-bottom-right-radius:5px;background:#333 center no-repeat url(../img/search.png);cursor:pointer}.Rk-Search-Submit:hover{background-color:#999}.Rk-Bin-Title{background:#333;background:-moz-linear-gradient(top,#505050 20%,#1e1e1e 80%);background:-webkit-linear-gradient(top,#505050 20%,#1e1e1e 80%);background:-ms-linear-gradient(top,#505050 20%,#1e1e1e 80%);font-weight:700;font-size:14px;padding:5px;cursor:pointer;color:#f0f0f0;margin:0;border:0 none}.Rk-Bin-Close{float:right;display:block;font-size:16px;font-weight:700;margin:2px 3px 0;color:#f0f0f0;cursor:pointer;text-shadow:-1px -1px 1px #999,1px 1px 1px #000;text-decoration:none}.Rk-Bin-Close:hover{color:#ffff80}.Rk-Bin-Title:hover{color:#ffffe0;background:#505050;background:-moz-linear-gradient(top,#141414 20%,#3c3c3c 80%);background:-webkit-linear-gradient(top,#141414 20%,#3c3c3c 80%);background:-ms-linear-gradient(top,#141414 20%,#3c3c3c 80%)}.Rk-Bin-Refresh{width:18px;height:17px;background:url(../img/refresh.png);display:block;float:right;margin-top:4px}.Rk-Bin-Refresh:hover{background-position:-18px 0}.Rk-Bin-Count{float:right;background:#c000a0;color:#FFF;text-shadow:1px 1px 1px #000;display:none;border-radius:4px;padding:1px 3px;font-size:10px;font-weight:700;margin-top:4px}.Rk-Bin-Title-Icon{float:left;width:25px;margin:2px}.Rk-Bin-Main{overflow:auto;background:#fff;background:-moz-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%);background:-webkit-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%);background:-ms-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%)}.Rk-Bin-Item{cursor:move}.Rk-Bin-Item.hover,.Rk-Bin-Item:hover{background:-moz-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);background:-webkit-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);background:-ms-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d0d0d0', endColorstr='#f3f3f3', GradientType=0)}.Rk-Bin-Item.selected{background:#ffffc0}.Rk-Bin-Main li{padding:2px;border-bottom:1px solid #ccc;clear:both;overflow:hidden}.Rk-Bin-Main h3{font-size:14px;font-style:italic;font-weight:700;text-align:center}.Rk-Bin-Main h4{font-size:12px;font-weight:700}.Rk-Bin-Main p{font-size:11px}.Rk-Bin-Main h4 a{color:#303080}.Rk-Bin-Main .searchmatch{background:#ffff80}.Rk-Wikipedia-Search-Icon{background-image:url(../img/search-logos.png)}.Rk-Wikipedia-Icon{float:left;margin:3px;max-height:48px;max-width:48px}.Rk-Wikipedia-Title-Icon{height:20px;background:url(../img/search-logos.png)}.Rk-Wikipedia-Lang-en{background-position:0 -20px}.Rk-Wikipedia-Lang-fr{background-position:0 -40px}.Rk-Wikipedia-Lang-ja{background-position:0 -60px}.Rk-Wikipedia-Result{min-height:51px}.Rk-Wikipedia-Result h4,.Rk-Wikipedia-Result p{margin-left:54px}.Rk-ResourceList-Image{float:left;max-width:100px;max-height:75px;margin-right:2px}.Rk-Ldt-Icon,.Rk-Ldt-Title-Icon{background:url(../img/search-logos.png);background-position:0 -100px;background-repeat:no-repeat}.Rk-Ldt-Title-Icon{height:20px;margin-top:4px}.Rk-Ldt-Tag-Icon{float:left;margin:0 2px 0 0}.Rk-Ldt-Annotation-Icon{float:left;margin:3px}.Rk-Clear{clear:both}h4.Rk-Bin-Loading{margin:10px;text-align:center;font-size:20px;color:#999} \ No newline at end of file diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/renkan/js/renkan.js --- a/server/php/basic/public_html/static/lib/renkan/js/renkan.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/php/basic/public_html/static/lib/renkan/js/renkan.js Thu Jun 18 16:53:16 2015 +0200 @@ -189,7 +189,7 @@ '\n

\n'; } ; __p += '\n

' + -__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
' + +((__t = (node.description)) == null ? '' : __t) + +'
\n '; + } else { ; +__p += '\n \n '; + } ; +__p += '\n

\n'; } ; __p += ' '; if (options.show_node_editor_size) { ; @@ -563,7 +589,7 @@ __p += ' '; if (options.show_node_tooltip_description) { ; __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 '; + if (options.show_node_tooltip_color) { ; +__p += '\n \n '; + } ; +__p += '\n \n '; + if (node.uri) { ; +__p += '\n \n '; + } ; +__p += '\n ' + +__e(node.title) + +'\n '; + if (node.uri) { ; +__p += ''; + } ; +__p += '\n \n

\n'; + if (node.uri && options.show_node_tooltip_uri) { ; +__p += '\n \n'; + } ; +__p += '\n ' + +__e(renkan.translate("Link to the node")) + +'\n'; } return __p @@ -712,16 +781,20 @@ '">\n '; if (options.editor_mode && options.save_view) { ; __p += '\n
\n '; } ; __p += '\n '; if (options.save_view) { ; __p += '\n
\n \t
\n '; + if (options.hide_nodes) { ; +__p += '\n \t
\n '; +'">\n '; + } ; +__p += ' \n '; } ; __p += '\n \n '; } ; @@ -872,10 +945,18 @@ Rkns.__renkans.push(this); this.options = _.defaults(_opts, Rkns.defaults, { - templates: renkanJST + templates: _.defaults(_opts.templates, renkanJST) || renkanJST, + node_editor_templates: _.defaults(_opts.node_editor_templates, Rkns.defaults.node_editor_templates) }); this.template = renkanJST['templates/main.html']; + var types_templates = {}; + _.each(this.options.node_editor_templates, function(value, key) { + types_templates[key] = _this.options.templates[value]; + delete _this.options.templates[value]; + }); + this.options.node_editor_templates = types_templates; + _.each(this.options.property_files, function(f) { Rkns.$.getJSON(f, function(data) { _this.options.properties = _this.options.properties.concat(data); @@ -883,7 +964,9 @@ }); this.read_only = this.options.read_only || !this.options.editor_mode; - + + this.router = new Rkns.Router(); + this.project = new Rkns.Models.Project(); this.dataloader = new Rkns.DataLoader.Loader(this.project, this.options); @@ -1071,7 +1154,6 @@ this.$.find(".Rk-Bins-Search-Form").submit(function() { return false; }); - }; Renkan.prototype.translate = function(_text) { @@ -1361,6 +1443,31 @@ /* END main.js */ (function(root) { + "use strict"; + + var Backbone = root.Backbone; + + var Router = root.Rkns.Router = Backbone.Router.extend({ + routes: { + '': 'index' + }, + + index: function (parameters) { + + var result = {}; + if (parameters === null){ + return; + } + parameters.split("&").forEach(function(part) { + var item = part.split("="); + result[item[0]] = decodeURIComponent(item[1]); + }); + this.trigger('router', result); + } + }); + +})(window); +(function(root) { "use strict"; @@ -1373,7 +1480,6 @@ for(i=0, len=data.nodes.length; i":"", @@ -2908,7 +3033,10 @@ return new paper.Path.RegularPolygon([0,0], 3, 1); }, getImageShape: function(center, radius) { - return new paper.Path.RegularPolygon(center, 3, radius); + var shape = new paper.Path.RegularPolygon([0,0], 3, 1); + shape.scale(radius); + shape.translate(center); + return shape; } }, "svg": function(path){ @@ -2977,12 +3105,16 @@ this.normal_buttons = [ new Renderer.NodeEditButton(this.renderer, null), new Renderer.NodeRemoveButton(this.renderer, null), - new Renderer.NodeHideButton(this.renderer, null), - new Renderer.NodeShowButton(this.renderer, null), new Renderer.NodeLinkButton(this.renderer, null), new Renderer.NodeEnlargeButton(this.renderer, null), new Renderer.NodeShrinkButton(this.renderer, null) ]; + if (this.options.hide_nodes){ + this.normal_buttons.push( + new Renderer.NodeHideButton(this.renderer, null), + new Renderer.NodeShowButton(this.renderer, null) + ); + } this.pending_delete_buttons = [ new Renderer.NodeRevertButton(this.renderer, null) ]; @@ -3968,7 +4100,7 @@ }); -define('renderer/nodeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor', 'renderer/shapebuilder'], function ($, _, requtils, BaseEditor, ShapeBuilder) { +define('renderer/nodeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor', 'renderer/shapebuilder', 'ckeditor-jquery'], function ($, _, requtils, BaseEditor, ShapeBuilder) { var Utils = requtils.getUtils(); @@ -3983,20 +4115,22 @@ this.template = this.options.templates['templates/nodeeditor.html']; //this.templates['default']= this.options.templates['templates/nodeeditor.html']; //fusionner avec this.options.node_editor_templates - this.readOnlyTemplate = this.options.templates['templates/nodeeditor_readonly.html']; + this.readOnlyTemplate = this.options.node_editor_templates; }, draw: function() { var _model = this.source_representation.model, _created_by = _model.get("created_by") || Utils._USER_PLACEHOLDER(this.renkan), - _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate ), + _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate[_model.get("type")] || this.readOnlyTemplate["default"]), _image_placeholder = this.options.static_url + "img/image-placeholder.png", _size = (_model.get("size") || 0); this.editor_$ .html(_template({ node: { + _id: _model.get("_id"), has_creator: !!_model.get("created_by"), title: _model.get("title"), uri: _model.get("uri"), + type: _model.get("type") || "default", short_uri: Utils.shortenText((_model.get("uri") || "").replace(/^(https?:\/\/)?(www\.)?/,'').replace(/\/$/,''),40), description: _model.get("description"), image: _model.get("image") || "", @@ -4014,10 +4148,19 @@ options: this.options, shortenText: Utils.shortenText, shapes : _(ShapeBuilder.builders).omit('svg').keys().value(), + types : _(this.options.node_editor_templates).keys().value(), })); this.redraw(); var _this = this, - closeEditor = function() { + editorInstance = _this.options.show_node_editor_description_richtext ? + $(".Rk-Edit-Description").ckeditor(_this.options.richtext_editor_config) : + false, + closeEditor = function() { + _this.renderer.removeRepresentation(_this); + paper.view.draw(); + }; + + _this.cleanEditor = function() { _this.editor_$.off("keyup"); _this.editor_$.find("input, textarea, select").off("change keyup paste"); _this.editor_$.find(".Rk-Edit-Image-File").off('change'); @@ -4028,11 +4171,20 @@ _this.editor_$.find(".Rk-CloseX").off('click'); _this.editor_$.find(".Rk-Edit-Goto").off('click'); - _this.renderer.removeRepresentation(_this); - paper.view.draw(); + if(_this.options.show_node_editor_description_richtext) { + if(typeof editorInstance.editor !== 'undefined') { + var _editor = editorInstance.editor; + delete editorInstance.editor; + _editor.focusManager.blur(true); + _editor.destroy(); + } + } }; - this.editor_$.find(".Rk-CloseX").click(closeEditor); + this.editor_$.find(".Rk-CloseX").click(function (e) { + e.preventDefault(); + closeEditor(); + }); this.editor_$.find(".Rk-Edit-Goto").click(function() { if (!_model.get("uri")) { @@ -4057,7 +4209,16 @@ _this.editor_$.find(".Rk-Edit-ImgPreview").attr("src", _data.image || _image_placeholder); } if (_this.options.show_node_editor_description) { - _data.description = _this.editor_$.find(".Rk-Edit-Description").val(); + if(_this.options.show_node_editor_description_richtext) { + if(typeof editorInstance.editor !== 'undefined' && + editorInstance.editor.checkDirty()) { + _data.description = editorInstance.editor.getData(); + editorInstance.editor.resetDirty(); + } + } + else { + _data.description = _this.editor_$.find(".Rk-Edit-Description").val(); + } } if (_this.options.show_node_editor_style) { var dash = _this.editor_$.find(".Rk-Edit-Dash").is(':checked'); @@ -4068,13 +4229,18 @@ _data.shape = _this.editor_$.find(".Rk-Edit-Shape").val(); } } + if (_this.options.change_types) { + if(_model.get("type")!==_this.editor_$.find(".Rk-Edit-Type").val()){ + _data.type = _this.editor_$.find(".Rk-Edit-Type").val(); + } + } _model.set(_data); _this.redraw(); } else { closeEditor(); } }); - }, 500); + }, 1000); this.editor_$.on("keyup", function(_e) { if (_e.keyCode === 27) { @@ -4083,6 +4249,13 @@ }); this.editor_$.find("input, textarea, select").on("change keyup paste", onFieldChange); + if( _this.options.show_node_editor_description && + _this.options.show_node_editor_description_richtext && + typeof editorInstance.editor !== 'undefined') + { + editorInstance.editor.on("change", onFieldChange); + editorInstance.editor.on("blur", onFieldChange); + } if(_this.options.allow_image_upload) { this.editor_$.find(".Rk-Edit-Image-File").change(function() { @@ -4211,10 +4384,17 @@ redraw: function() { if (this.options.popup_editor){ var _coords = this.source_representation.paper_coords; - Utils.drawEditBox(this.options, _coords, this.editor_block, this.source_representation.circle_radius * 0.75, this.editor_$); + Utils.drawEditBox(this.options, _coords, this.editor_block, this.source_representation.circle_radius * 0.75, this.editor_$); } this.editor_$.show(); paper.view.draw(); + }, + destroy: function() { + if(typeof this.cleanEditor !== 'undefined') { + this.cleanEditor(); + } + this.editor_block.remove(); + this.editor_$.remove(); } }).value(); @@ -4296,10 +4476,9 @@ _data.uri = _this.editor_$.find(".Rk-Edit-URI").val(); } if (_this.options.show_node_editor_style) { - var dash = _this.editor_$.find(".Rk-Edit-Dash").is(':checked'); - _data.style = _.assign( ((_model.has("style") && _.clone(_model.get("style"))) || {}), {dash: dash}); - var arrow = _this.editor_$.find(".Rk-Edit-Arrow").is(':checked'); - _data.style = _.assign( ((_model.has("style") && _.clone(_model.get("style"))) || {}), {arrow: arrow}); + var dash = _this.editor_$.find(".Rk-Edit-Dash").is(':checked'), + arrow = _this.editor_$.find(".Rk-Edit-Arrow").is(':checked'); + _data.style = _.assign( ((_model.has("style") && _.clone(_model.get("style"))) || {}), {dash: dash, arrow: arrow}); } _this.editor_$.find(".Rk-Edit-Goto").attr("href",_data.uri || "#"); _model.set(_data); @@ -4485,8 +4664,8 @@ _init: function() { this.type = "Node-edit-button"; this.lastSectorInner = 0; - this.startAngle = -125; - this.endAngle = -55; + this.startAngle = this.options.hide_nodes ? -125 : -135; + this.endAngle = this.options.hide_nodes ? -55 : -45; this.imageName = "edit"; this.text = "Edit"; }, @@ -4518,8 +4697,8 @@ _init: function() { this.type = "Node-remove-button"; this.lastSectorInner = 0; - this.startAngle = -10; - this.endAngle = 45; + this.startAngle = this.options.hide_nodes ? -10 : 0; + this.endAngle = this.options.hide_nodes ? 45 : 90; this.imageName = "remove"; this.text = "Remove"; }, @@ -4672,8 +4851,8 @@ _init: function() { this.type = "Node-link-button"; this.lastSectorInner = 0; - this.startAngle = 135; - this.endAngle = 190; + this.startAngle = this.options.hide_nodes ? 135 : 90; + this.endAngle = this.options.hide_nodes ? 190 : 180; this.imageName = "link"; this.text = "Link to another node"; }, @@ -4713,8 +4892,8 @@ _init: function() { this.type = "Node-enlarge-button"; this.lastSectorInner = 0; - this.startAngle = -55; - this.endAngle = -10; + this.startAngle = this.options.hide_nodes ? -55 : -45; + this.endAngle = this.options.hide_nodes ? -10 : 0; this.imageName = "enlarge"; this.text = "Enlarge"; }, @@ -4748,8 +4927,8 @@ _init: function() { this.type = "Node-shrink-button"; this.lastSectorInner = 0; - this.startAngle = -170; - this.endAngle = -125; + this.startAngle = this.options.hide_nodes ? -170 : -180; + this.endAngle = this.options.hide_nodes ? -125 : -135; this.imageName = "shrink"; this.text = "Shrink"; }, @@ -5071,7 +5250,7 @@ }, mouseleave: function(_event) { _event.preventDefault(); - _this.onMouseUp(_event, false); + //_this.onMouseUp(_event, false);// _this.click_target = null; _this.is_dragging = false; }, @@ -5146,20 +5325,23 @@ this.$.find(".Rk-ZoomSetSaved").click( function() { var view = _this.renkan.project.get("views").last(); if(view){ + _this.showNodes(false); _this.setScale(view.get("zoom_level"), new paper.Point(view.get("offset"))); - _this.hiddenNodes = view.get("hidden_nodes") || []; - _this.hideNodes(); + if (_this.renkan.options.hide_nodes){ + _this.hiddenNodes = (view.get("hidden_nodes") || []).concat(); + _this.hideNodes(); + } } }); this.$.find(".Rk-ShowHiddenNodes").mouseenter( function() { _this.showNodes(true); _this.$.find(".Rk-ShowHiddenNodes").mouseleave( function() { - _this.hideNodes(false); + _this.hideNodes(); }); }); this.$.find(".Rk-ShowHiddenNodes").click( function() { _this.showNodes(false); - _this.$.find(".Rk-ShowHiddenNodes").off( "mouseleave" ); + _this.$.find(".Rk-ShowHiddenNodes").off( "mouseleave" ); }); if(this.renkan.project.get("views").length > 0 && this.renkan.options.save_view){ this.$.find(".Rk-ZoomSetSaved").show(); @@ -5267,6 +5449,9 @@ _this.$.find(".loader").hide(250); }, 3000); } + else{ + Backbone.history.start(); + } }); this.renkan.project.on("add:users remove:users", _thRedrawUsers); @@ -5302,6 +5487,11 @@ el.text(_title); } }); + + //register router events + this.renkan.router.on("router", function(_params){ + _this.parameters(_params); + }); if (_renkan.options.size_bug_fix) { var _delay = ( @@ -5791,7 +5981,9 @@ }, showNodes: function(ghost){ var _this = this; + var i = 0; this.hiddenNodes.forEach(function(_id){ + i++; _this.getRepresentationByModel(_this.renkan.project.get("nodes").get(_id)).show(ghost); }); if (!ghost){ @@ -5870,7 +6062,7 @@ y: _coords.y } }; - _node = this.renkan.project.addNode(_data); + var _node = this.renkan.project.addNode(_data); this.getRepresentationByModel(_node).openEditor(); } } @@ -5935,7 +6127,7 @@ _event.pageY - _off.top ]); var _hitResult = paper.project.hitTest(_point); - + if (!this.isEditable()) { if (_hitResult && typeof _hitResult.item.__representation !== "undefined") { if (_hitResult.item.__representation.model.get('uri')){ @@ -6197,7 +6389,7 @@ _.each(projectJSON.views, function(e,i,l) { delete e._id; delete e.id; - + if(e.hidden_nodes) { hiddenNodes = e.hidden_nodes; e.hidden_nodes = []; @@ -6213,6 +6405,12 @@ filesaver(blob,fileNameToSaveAs); }, + parameters: function(_params){ + if (typeof _params.idnode !== 'undefined'){ + this.unhighlightAll(); + this.highlightModel(this.renkan.project.get("nodes").get(_params.idnode)); + } + }, foldBins: function() { var foldBinsButton = this.$.find(".Rk-Fold-Bins"), bins = this.renkan.$.find(".Rk-Bins"); @@ -6260,8 +6458,15 @@ 'jquery':'../lib/jquery/jquery', 'underscore':'../lib/lodash/lodash', 'filesaver' :'../lib/FileSaver/FileSaver', - 'requtils':'require-utils' - } + 'requtils':'require-utils', + 'ckeditor-core':'../lib/ckeditor/ckeditor', + 'ckeditor-jquery':'../lib/ckeditor/adapters/jquery' + }, + shim: { + 'ckeditor-jquery':{ + deps:['jquery','ckeditor-core'] + } + }, }); } diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/renkan/js/renkan.min.js --- a/server/php/basic/public_html/static/lib/renkan/js/renkan.min.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/php/basic/public_html/static/lib/renkan/js/renkan.min.js Thu Jun 18 16:53:16 2015 +0200 @@ -27,9 +27,9 @@ /*! renkan - v0.10.0 - Copyright © IRI 2015 */ -this.renkanJST=this.renkanJST||{},this.renkanJST["templates/colorpicker.html"]=function(obj){obj||(obj={});{var __t,__p="";_.escape}with(obj)__p+='
  • ';return __p},this.renkanJST["templates/edgeeditor.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+='

    \n ×'+__e(renkan.translate("Edit Edge"))+"\n

    \n

    \n \n \n

    \n',options.show_edge_editor_uri&&(__p+="\n

    \n \n \n \n

    \n ',options.properties.length&&(__p+="\n

    \n \n \n

    \n")),__p+="\n",options.show_edge_editor_style&&(__p+='\n
    \n ',options.show_edge_editor_style_color&&(__p+='\n
    \n '+__e(renkan.translate("Edge color:"))+'\n
    \n \n \n \n '+(null==(__t=renkan.colorPicker)?"":__t)+'\n '+__e(renkan.translate("Choose color"))+"\n
    \n
    \n "),__p+="\n ",options.show_edge_editor_style_dash&&(__p+='\n
    \n '+__e(renkan.translate("Dash:"))+'\n \n
    \n "),__p+="\n ",options.show_edge_editor_style_thickness&&(__p+='\n
    \n '+__e(renkan.translate("Thickness:"))+'\n -\n '+__e(edge.thickness)+'\n +\n
    \n '),__p+="\n ",options.show_edge_editor_style_arrow&&(__p+='\n
    \n '+__e(renkan.translate("Arrow:"))+'\n \n
    \n "),__p+="\n
    \n"),__p+="\n",options.show_edge_editor_direction&&(__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+='

    \n ×\n ',options.show_edge_tooltip_color&&(__p+='\n \n '),__p+='\n \n ',edge.uri&&(__p+='\n \n '),__p+="\n "+__e(edge.title)+"\n ",edge.uri&&(__p+=" "),__p+="\n \n

    \n",options.show_edge_tooltip_uri&&edge.uri&&(__p+='\n

    \n '+__e(edge.short_uri)+"\n

    \n"),__p+="\n

    "+__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+='
  • \n\n \n

    '+(null==(__t=htitle)?"":__t)+"

    \n

    "+(null==(__t=hdescription)?"":__t)+"

    \n

    Start: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'

    \n
    \n
  • \n';return __p},this.renkanJST["templates/ldtjson-bin/segmenttemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
  • \n\n \n

    '+(null==(__t=htitle)?"":__t)+"

    \n

    "+(null==(__t=hdescription)?"":__t)+"

    \n

    Start: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'

    \n
    \n
  • \n';return __p},this.renkanJST["templates/ldtjson-bin/tagtemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
  • \n\n \n

    '+(null==(__t=htitle)?"":__t)+'

    \n
    \n
  • \n';return __p},this.renkanJST["templates/list-bin.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+='
  • \n'),__p+='\n

    \n ',url&&(__p+='\n \n '),__p+="\n "+(null==(__t=htitle)?"":__t)+"\n ",url&&(__p+=""),__p+="\n

    \n ",description&&(__p+='\n

    '+(null==(__t=hdescription)?"":__t)+"

    \n "),__p+="\n ",image&&(__p+='\n
    \n '),__p+="\n
  • \n";return __p},this.renkanJST["templates/main.html"]=function(obj){obj||(obj={});{var __p="",__e=_.escape;Array.prototype.join}with(obj)options.show_bins&&(__p+='\n
    \n
    \n

    '+__e(translate("Select contents:"))+'

    \n
    \n \n
    \n
    \n
      \n
      \n \n
      \n
      \n \n \n
      \n
        \n
        \n'),__p+=" ",options.show_editor&&(__p+='\n
        \n ×'+__e(renkan.translate("Edit Node"))+"\n\n

        \n \n \n

        \n',options.show_node_editor_uri&&(__p+="\n

        \n \n \n \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 ',options.show_node_editor_style_color&&(__p+='\n
        \n \n '+__e(renkan.translate("Node color:"))+'\n
        \n \n \n \n '+(null==(__t=renkan.colorPicker)?"":__t)+'\n '+__e(renkan.translate("Choose color"))+"\n
        \n
        \n "),__p+="\n ",options.show_node_editor_style_dash&&(__p+='\n
        \n '+__e(renkan.translate("Dash:"))+'\n \n
        \n "),__p+="\n ",options.show_node_editor_style_thickness&&(__p+='\n
        \n '+__e(renkan.translate("Thickness:"))+'\n -\n '+__e(node.thickness)+'\n +\n
        \n '),__p+="\n
        \n"),__p+=" ",options.show_node_editor_image&&(__p+='\n
        \n
        \n \n ',node.clip_path&&(__p+='\n \n \n \n '),__p+="\n
        \n
        \n

        \n \n

        \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+='

        \n ×\n ',options.show_node_tooltip_color&&(__p+='\n \n '),__p+='\n \n ',node.uri&&(__p+='\n \n '),__p+="\n "+__e(node.title)+"\n ",node.uri&&(__p+=""),__p+="\n \n

        \n",node.uri&&options.show_node_tooltip_uri&&(__p+='\n

        \n '+__e(node.short_uri)+"\n

        \n"),__p+=" ",options.show_node_tooltip_description&&(__p+='\n

        '+__e(node.description)+"

        \n"),__p+=" ",node.image&&options.show_node_tooltip_image&&(__p+='\n \n'),__p+=" ",node.has_creator&&options.show_node_tooltip_creator&&(__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
        \n ',__p+=options.editor_mode?'\n \n ':'\n

        \n '+__e(project.get("title")||translate("Untitled project"))+"\n

        \n ",__p+="\n ",options.show_user_list&&(__p+='\n
        \n
        \n ',options.show_user_color&&(__p+='\n
        \n \n ',options.user_color_editable&&(__p+='\n \n '),__p+="\n \n ",options.user_color_editable&&print(colorPicker),__p+="\n
        \n "),__p+='\n <unknown user>\n
        \n
          \n
          \n '),__p+="\n ",options.home_button_url&&(__p+='\n
          \n \n
          \n
          \n '+__e(translate(options.home_button_title))+"\n
          \n
          \n
          \n "),__p+="\n ",options.show_fullscreen_button&&(__p+='\n
          \n
          \n
          \n
          \n '+__e(translate("Full Screen"))+"\n
          \n
          \n
          \n "),__p+="\n ",options.editor_mode?(__p+="\n ",options.show_addnode_button&&(__p+='\n
          \n
          \n
          \n
          \n '+__e(translate("Add Node"))+"\n
          \n
          \n
          \n "),__p+="\n ",options.show_addedge_button&&(__p+='\n
          \n
          \n
          \n
          \n '+__e(translate("Add Edge"))+"\n
          \n
          \n
          \n "),__p+="\n ",options.show_export_button&&(__p+='\n
          \n
          \n
          \n
          \n '+__e(translate("Download Project"))+"\n
          \n
          \n
          \n "),__p+="\n ",options.show_save_button&&(__p+='\n
          \n
          \n
          \n
          \n
          \n
          \n '),__p+="\n ",options.show_open_button&&(__p+='\n
          \n
          \n
          \n
          \n '+__e(translate("Open Project"))+"\n
          \n
          \n
          \n "),__p+="\n ",options.show_bookmarklet&&(__p+='\n
          \n \n
          \n
          \n '+__e(translate("Renkan 'Drag-to-Add' bookmarklet"))+'\n
          \n
          \n
          \n
          \n '),__p+="\n "):(__p+="\n ",options.show_export_button&&(__p+='\n
          \n
          \n
          \n
          \n '+__e(translate("Download Project"))+'\n
          \n
          \n
          \n
          \n '),__p+="\n "),__p+="\n ",options.show_search_field&&(__p+='\n
          \n \n
          \n
          \n '),__p+="\n
          \n"),__p+='\n
          \n
          \n
          \n ',options.editor_mode&&options.save_view&&(__p+='\n
          \n '),__p+="\n ",options.save_view&&(__p+='\n
          \n \n '),__p+="\n
          \n "),__p+="\n \n\n";return __p},this.renkanJST["templates/search.html"]=function(obj){obj||(obj={});{var __t,__p="";_.escape}with(obj)__p+='
        • '+(null==(__t=title)?"":__t)+"
        • ";return __p},this.renkanJST["templates/wikipedia-bin/resulttemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
        • \n\n \n

          \n '+(null==(__t=htitle)?"":__t)+'\n

          \n

          '+(null==(__t=hdescription)?"":__t)+"

          \n
        • \n";return __p},function(a){"use strict";"object"!=typeof a.Rkns&&(a.Rkns={});var b=a.Rkns,c=b.$=a.jQuery,d=b._=a._;b.pickerColors=["#8f1919","#a80000","#d82626","#ff0000","#e87c7c","#ff6565","#f7d3d3","#fecccc","#8f5419","#a85400","#d87f26","#ff7f00","#e8b27c","#ffb265","#f7e5d3","#fee5cc","#8f8f19","#a8a800","#d8d826","#feff00","#e8e87c","#feff65","#f7f7d3","#fefecc","#198f19","#00a800","#26d826","#00ff00","#7ce87c","#65ff65","#d3f7d3","#ccfecc","#198f8f","#00a8a8","#26d8d8","#00feff","#7ce8e8","#65feff","#d3f7f7","#ccfefe","#19198f","#0000a8","#2626d8","#0000ff","#7c7ce8","#6565ff","#d3d3f7","#ccccfe","#8f198f","#a800a8","#d826d8","#ff00fe","#e87ce8","#ff65fe","#f7d3f7","#feccfe","#000000","#242424","#484848","#6d6d6d","#919191","#b6b6b6","#dadada","#ffffff"],b.__renkans=[];var e=b._BaseBin=function(a,c){if("undefined"!=typeof a){this.renkan=a,this.renkan.$.find(".Rk-Bin-Main").hide(),this.$=b.$("
        • ").addClass("Rk-Bin").appendTo(a.$.find(".Rk-Bin-List")),this.title_icon_$=b.$("").addClass("Rk-Bin-Title-Icon").appendTo(this.$);var d=this;b.$("").attr({href:"#",title:a.translate("Close bin")}).addClass("Rk-Bin-Close").html("×").appendTo(this.$).click(function(){return d.destroy(),a.$.find(".Rk-Bin-Main:visible").length||a.$.find(".Rk-Bin-Main:last").slideDown(),a.resizeBins(),!1}),b.$("").attr({href:"#",title:a.translate("Refresh bin")}).addClass("Rk-Bin-Refresh").appendTo(this.$).click(function(){return d.refresh(),!1}),this.count_$=b.$("
          ").addClass("Rk-Bin-Count").appendTo(this.$),this.title_$=b.$("

          ").addClass("Rk-Bin-Title").appendTo(this.$),this.main_$=b.$("
          ").addClass("Rk-Bin-Main").appendTo(this.$).html('

          '+a.translate("Loading, please wait")+"

          "),this.title_$.html(c.title||"(new bin)"),this.renkan.resizeBins(),c.auto_refresh&&window.setInterval(function(){d.refresh()},c.auto_refresh)}};e.prototype.destroy=function(){this.$.detach(),this.renkan.resizeBins()};var f=b.Renkan=function(a){var e=this;if(b.__renkans.push(this),this.options=d.defaults(a,b.defaults,{templates:renkanJST}),this.template=renkanJST["templates/main.html"],d.each(this.options.property_files,function(a){b.$.getJSON(a,function(a){e.options.properties=e.options.properties.concat(a)})}),this.read_only=this.options.read_only||!this.options.editor_mode,this.project=new b.Models.Project,this.dataloader=new b.DataLoader.Loader(this.project,this.options),this.setCurrentUser=function(a,b){this.project.addUser({_id:a,title:b}),this.current_user=a,this.renderer.redrawUsers()},"undefined"!=typeof this.options.user_id&&(this.current_user=this.options.user_id),this.$=b.$("#"+this.options.container),this.$.addClass("Rk-Main").html(this.template(this)),this.tabs=[],this.search_engines=[],this.current_user_list=new b.Models.UsersList,this.current_user_list.on("add remove",function(){this.renderer&&this.renderer.redrawUsers()}),this.colorPicker=function(){var a=renkanJST["templates/colorpicker.html"];return'
            '+b.pickerColors.map(function(b){return a({c:b})}).join("")+"
          "}(),this.options.show_editor&&(this.renderer=new b.Renderer.Scene(this)),this.options.search.length){var f=renkanJST["templates/search.html"],g=this.$.find(".Rk-Search-List"),h=this.$.find(".Rk-Web-Search-Input"),i=this.$.find(".Rk-Web-Search-Form");d.each(this.options.search,function(a){b[a.type]&&b[a.type].Search&&e.search_engines.push(new b[a.type].Search(e,a))}),g.html(d(this.search_engines).map(function(a,b){return f({key:b,title:a.getSearchTitle(),className:a.getBgClass()})}).join("")),g.find("li").click(function(){var a=b.$(this);e.setSearchEngine(a.attr("data-key")),i.submit()}),i.submit(function(){if(h.val()){var a=e.search_engine;a.search(h.val())}return!1}),this.$.find(".Rk-Search-Current").mouseenter(function(){g.slideDown()}),this.$.find(".Rk-Search-Select").mouseleave(function(){g.hide()}),this.setSearchEngine(0)}else this.$.find(".Rk-Web-Search-Form").detach();d.each(this.options.bins,function(a){b[a.type]&&b[a.type].Bin&&e.tabs.push(new b[a.type].Bin(e,a))});var j=!1;this.$.find(".Rk-Bins").on("click",".Rk-Bin-Title,.Rk-Bin-Title-Icon",function(){var a=b.$(this).siblings(".Rk-Bin-Main");a.is(":hidden")&&(e.$.find(".Rk-Bin-Main").slideUp(),a.slideDown())}),this.options.show_editor&&this.$.find(".Rk-Bins").on("mouseover",".Rk-Bin-Item",function(){var a=b.$(this);if(a&&c(a).attr("data-uri")){var f=e.project.get("nodes").where({uri:c(a).attr("data-uri")});d.each(f,function(a){e.renderer.highlightModel(a)})}}).mouseout(function(){e.renderer.unhighlightAll()}).on("mousemove",".Rk-Bin-Item",function(){try{this.dragDrop()}catch(a){}}).on("touchstart",".Rk-Bin-Item",function(){j=!1}).on("touchmove",".Rk-Bin-Item",function(a){a.preventDefault();var b=a.originalEvent.changedTouches[0],c=e.renderer.canvas_$.offset(),d=e.renderer.canvas_$.width(),f=e.renderer.canvas_$.height();if(b.pageX>=c.left&&b.pageX=c.top&&b.pageY1?a:null);c.source!==k&&(k=c.source,d.each(e.tabs,function(a){a.render(c)}))}}),this.$.find(".Rk-Bins-Search-Form").submit(function(){return!1})};f.prototype.translate=function(a){return b.i18n[this.options.language]&&b.i18n[this.options.language][a]?b.i18n[this.options.language][a]:this.options.language.length>2&&b.i18n[this.options.language.substr(0,2)]&&b.i18n[this.options.language.substr(0,2)][a]?b.i18n[this.options.language.substr(0,2)][a]:a},f.prototype.onStatusChange=function(){this.renderer.onStatusChange()},f.prototype.setSearchEngine=function(a){this.search_engine=this.search_engines[a],this.$.find(".Rk-Search-Current").attr("class","Rk-Search-Current "+this.search_engine.getBgClass());for(var b=this.search_engine.getBgClass().split(" "),c="",d=0;da?"0"+a:a}var b=new Date,c=0,d=b.getUTCFullYear()+"-"+a(b.getUTCMonth()+1)+"-"+a(b.getUTCDate())+"-"+g();return function(a){for(var b=(++c).toString(16),e="undefined"==typeof a?"":a+"-";b.length<4;)b="0"+b;return e+d+"-"+b}}(),getFullURL:function(a){if("undefined"==typeof a||null==a)return"";if(/https?:\/\//.test(a))return a;var b=new Image;b.src=a;var c=b.src;return b.src=null,c},inherit:function(a,b){var c=function(){"function"==typeof b&&b.apply(this,Array.prototype.slice.call(arguments,0)),a.apply(this,Array.prototype.slice.call(arguments,0)),"function"!=typeof this._init||this._initialized||(this._init.apply(this,Array.prototype.slice.call(arguments,0)),this._initialized=!0)};return d.extend(c.prototype,a.prototype),c},regexpFromTextOrArray:function(){function a(a){function b(a){return function(b,c){a=a.replace(h[b],c)}}for(var e=a.toLowerCase().replace(g,""),i="",j=0;j"+a.translate("Drag items from this website, drop them in Renkan").replace(/ /g,"_")+"

          '.replace(/_/g,String.fromCharCode(32));b.appendChild(d);e=[{r:/https?:\\/\\/[^\\/]*twitter\\.com\\//,s:'.tweet',n:'twitter'},{r:/https?:\\/\\/[^\\/]*google\\.[^\\/]+\\//,s:'.g',n:'google'},{r:/https?:\\/\\/[^\\/]*lemonde\\.fr\\//,s:'[data-vr-contentbox]',n:'lemonde'}];f=false;e.forEach(function(g){if(g.r.test(c)){f=g;}});if(f){h=function(){Array.prototype.forEach.call(a.querySelectorAll(f.s),function(i){i[j]=true;k=i.style;k.borderWidth='2px';k.borderColor='#909';k.borderStyle='solid';k.backgroundColor='rgba(200,0,180,.1)';})};window.setInterval(h,500);h();};a.addEventListener('dragstart',function(k){l=k.dataTransfer;l.setData(m+'source-uri',c);l.setData(m+'source-title',a.title);n=k.target;if(f){o=n;while(!o.attributes[j]){o=o.parentNode;if(o==b){break;}}}if(f&&o.attributes[j]){p=o.cloneNode(true);l.setData(m+'specific-site',f.n)}else{q=a.getSelection();if(q.type==='Range'||!q.type){p=q.getRangeAt(0).cloneContents();}else{p=n.cloneNode();}}r=a.createElement('div');r.appendChild(p);l.setData('text/x-iri-selected-text',r.textContent.trim());l.setData('text/x-iri-selected-html',r.innerHTML);},false);})();"},shortenText:function(a,b){return a.length>b?a.substr(0,b)+"…":a},drawEditBox:function(a,b,c,d,e){e.css({width:a.tooltip_width-2*a.tooltip_padding});var f=e.outerHeight()+2*a.tooltip_padding,g=b.xpaper.view.size.height-a.tooltip_margin&&(j=Math.max(paper.view.size.height-a.tooltip_margin,b.y+a.tooltip_arrow_width/2)-f),jb;b++){var d=a.nodes[b];d.color?(console.log("node color : ",d.color),d.style={color:d.color}):d.style={}}if("undefined"!=typeof a.edges)for(b=0,c=a.edges.length;c>b;b++){var e=a.edges[b];e.style=e.color?{color:e.color}:{}}return a.schema_version="2",a}}};b.Loader=function(a,c){this.project=a,this.dataConverters=_.defaults(c.converters||{},b.converters)},b.Loader.prototype.convert=function(a){var b=this.project.getSchemaVersion(a),c=this.project.getSchemaVersion();if(b!==c){var d="from"+b+"to"+c;"function"==typeof this.dataConverters[d]&&(console.log("Apply conversion function :",d),a=this.dataConverters[d](a))}return a},b.Loader.prototype.load=function(a){console.log(a),this.project.set(this.convert(a),{validate:!0})}}(window),function(a){"use strict";var b=a.Backbone,c=a.Rkns.Models={};c.getUID=function(a){var b="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(a){var b=16*Math.random()|0,c="x"===a?b:3&b|8;return c.toString(16)});return"undefined"!=typeof a?a.type+"-"+b:b};{var d=b.RelationalModel.extend({idAttribute:"_id",constructor:function(a){"undefined"!=typeof a&&(a._id=a._id||a.id||c.getUID(this),a.title=a.title||"",a.description=a.description||"",a.uri=a.uri||"","function"==typeof this.prepare&&(a=this.prepare(a))),b.RelationalModel.prototype.constructor.call(this,a)},validate:function(){return this.type?void 0:"object has no type"},addReference:function(a,b,c,d,e){var f=c.get(d);a[b]="undefined"==typeof f&&"undefined"!=typeof e?e:f}}),e=c.User=d.extend({type:"user",prepare:function(a){return a.color=a.color||"#666666",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),color:this.get("color")}}}),f=c.Node=d.extend({type:"node",relations:[{type:b.HasOne,key:"created_by",relatedModel:e}],prepare:function(a){var b=a.project;return this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),a.description=a.description||"",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),position:this.get("position"),image:this.get("image"),style:this.get("style"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null,size:this.get("size"),clip_path:this.get("clip_path"),shape:this.get("shape"),type:this.get("type")}}}),g=c.Edge=d.extend({type:"edge",relations:[{type:b.HasOne,key:"created_by",relatedModel:e},{type:b.HasOne,key:"from",relatedModel:f},{type:b.HasOne,key:"to",relatedModel:f}],prepare:function(a){var b=a.project;return this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),this.addReference(a,"from",b.get("nodes"),a.from),this.addReference(a,"to",b.get("nodes"),a.to),a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),from:this.get("from")?this.get("from").get("_id"):null,to:this.get("to")?this.get("to").get("_id"):null,style:this.get("style"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null}}}),h=c.View=d.extend({type:"view",relations:[{type:b.HasOne,key:"created_by",relatedModel:e}],prepare:function(a){var b=a.project;if(this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),a.description=a.description||"","undefined"!=typeof a.offset){var c={};Array.isArray(a.offset)?(c.x=a.offset[0],c.y=a.offset.length>1?a.offset[1]:a.offset[0]):null!=a.offset.x&&(c.x=a.offset.x,c.y=a.offset.y),a.offset=c}return a},toJSON:function(){return{_id:this.get("_id"),zoom_level:this.get("zoom_level"),offset:this.get("offset"),title:this.get("title"),description:this.get("description"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null,hidden_nodes:this.get("hidden_nodes")}}}),i=(c.Project=d.extend({schema_version:"2",type:"project",blacklist:["saveStatus","loadingStatus"],relations:[{type:b.HasMany,key:"users",relatedModel:e,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"nodes",relatedModel:f,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"edges",relatedModel:g,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"views",relatedModel:h,reverseRelation:{key:"project",includeInJSON:"_id"}}],addUser:function(a,b){a.project=this;var c=e.findOrCreate(a);return this.get("users").push(c,b),c},addNode:function(a,b){a.project=this;var c=f.findOrCreate(a);return this.get("nodes").push(c,b),c},addEdge:function(a,b){a.project=this;var c=g.findOrCreate(a);return this.get("edges").push(c,b),c},addView:function(a,b){a.project=this;var c=h.findOrCreate(a);return this.get("views").push(c,b),c},removeNode:function(a){this.get("nodes").remove(a)},removeEdge:function(a){this.get("edges").remove(a)},validate:function(a){var b=this;_.each([].concat(a.users,a.nodes,a.edges,a.views),function(a){a&&(a.project=b)})},getSchemaVersion:function(a){var b=a;"undefined"==typeof b&&(b=this);var c=b.schema_version;return c?c:1},initialize:function(){var a=this;this.on("remove:nodes",function(b){a.get("edges").remove(a.get("edges").filter(function(a){return a.get("from")===b||a.get("to")===b}))})},toJSON:function(){var a=_.clone(this.attributes);for(var c in a)(a[c]instanceof b.Model||a[c]instanceof b.Collection||a[c]instanceof d)&&(a[c]=a[c].toJSON());return _.omit(a,this.blacklist)}}),c.RosterUser=b.Model.extend({type:"roster_user",idAttribute:"_id",constructor:function(a){"undefined"!=typeof a&&(a._id=a._id||a.id||c.getUID(this),a.title=a.title||"(untitled "+this.type+")",a.description=a.description||"",a.uri=a.uri||"",a.project=a.project||null,a.site_id=a.site_id||0,"function"==typeof this.prepare&&(a=this.prepare(a))),b.Model.prototype.constructor.call(this,a)},validate:function(){return this.type?void 0:"object has no type"},prepare:function(a){return a.color=a.color||"#666666",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),color:this.get("color"),project:null!=this.get("project")?this.get("project").get("id"):null,site_id:this.get("site_id")}}}));c.UsersList=b.Collection.extend({model:i})}}(window),Rkns.defaults={language:navigator.language||navigator.userLanguage||"en",container:"renkan",search:[],bins:[],static_url:"",popup_editor:!0,editor_panel:"editor-panel",show_bins:!0,properties:[],show_editor:!0,read_only:!1,editor_mode:!0,manual_save:!1,show_top_bar:!0,default_user_color:"#303030",size_bug_fix:!0,force_resize:!1,allow_double_click:!0,zoom_on_scroll:!0,element_delete_delay:0,autoscale_padding:50,resize:!0,show_zoom:!0,save_view:!0,default_view:!1,show_search_field:!0,show_user_list:!0,user_name_editable:!0,user_color_editable:!0,show_user_color:!0,show_save_button:!0,show_export_button:!0,show_open_button:!1,show_addnode_button:!0,show_addedge_button:!0,show_bookmarklet:!0,show_fullscreen_button:!0,home_button_url:!1,home_button_title:"Home",show_minimap:!0,minimap_width:160,minimap_height:120,minimap_padding:20,minimap_background_color:"#ffffff",minimap_border_color:"#cccccc",minimap_highlight_color:"#ffff00",minimap_highlight_weight:5,buttons_background:"#202020",buttons_label_color:"#c000c0",buttons_label_font_size:9,ghost_opacity:.3,default_dash_array:[4,5],show_node_circles:!0,clip_node_images:!0,node_images_fill_mode:!1,node_size_base:25,node_stroke_width:2,node_stroke_max_width:12,selected_node_stroke_width:4,selected_node_stroke_max_width:24,node_stroke_witdh_scale:5,node_fill_color:"#ffffff",highlighted_node_fill_color:"#ffff00",node_label_distance:5,node_label_max_length:60,label_untitled_nodes:"(untitled)",change_shapes:!0,edge_stroke_width:2,edge_stroke_max_width:12,selected_edge_stroke_width:4,selected_edge_stroke_max_width:24,edge_stroke_witdh_scale:5,edge_label_distance:0,edge_label_max_length:20,edge_arrow_length:18,edge_arrow_width:12,edge_arrow_max_width:32,edge_gap_in_bundles:12,label_untitled_edges:"",tooltip_width:275,tooltip_padding:10,tooltip_margin:15,tooltip_arrow_length:20,tooltip_arrow_width:40,tooltip_top_color:"#f0f0f0",tooltip_bottom_color:"#d0d0d0",tooltip_border_color:"#808080",tooltip_border_width:1,show_node_editor_uri:!0,show_node_editor_description:!0,show_node_editor_size:!0,show_node_editor_style:!0,show_node_editor_style_color:!0,show_node_editor_style_dash:!0,show_node_editor_style_thickness:!0,show_node_editor_image:!0,show_node_editor_creator:!0,allow_image_upload:!0,uploaded_image_max_kb:500,show_node_tooltip_uri:!0,show_node_tooltip_description:!0,show_node_tooltip_color:!0,show_node_tooltip_image:!0,show_node_tooltip_creator:!0,show_edge_editor_uri:!0,show_edge_editor_style:!0,show_edge_editor_style_color:!0,show_edge_editor_style_dash:!0,show_edge_editor_style_thickness:!0,show_edge_editor_style_arrow:!0,show_edge_editor_direction:!0,show_edge_editor_nodes:!0,show_edge_editor_creator:!0,show_edge_tooltip_uri:!0,show_edge_tooltip_color:!0,show_edge_tooltip_nodes:!0,show_edge_tooltip_creator:!0},Rkns.i18n={fr:{"Edit Node":"Édition d’un nœud","Edit Edge":"Édition d’un lien","Title:":"Titre :","URI:":"URI :","Description:":"Description :","From:":"De :","To:":"Vers :",Image:"Image","Image URL:":"URL d'Image","Choose Image File:":"Choisir un fichier image","Full Screen":"Mode plein écran","Add Node":"Ajouter un nœud","Add Edge":"Ajouter un lien","Save Project":"Enregistrer le projet","Open Project":"Ouvrir un projet","Auto-save enabled":"Enregistrement automatique activé","Connection lost":"Connexion perdue","Created by:":"Créé par :","Zoom In":"Agrandir l’échelle","Zoom Out":"Rapetisser l’échelle",Edit:"Éditer",Remove:"Supprimer","Cancel deletion":"Annuler la suppression","Link to another node":"Créer un lien",Enlarge:"Agrandir",Shrink:"Rétrécir","Click on the background canvas to add a node":"Cliquer sur le fond du graphe pour rajouter un nœud","Click on a first node to start the edge":"Cliquer sur un premier nœud pour commencer le lien","Click on a second node to complete the edge":"Cliquer sur un second nœud pour terminer le lien",Wikipedia:"Wikipédia","Wikipedia in ":"Wikipédia en ",French:"Français",English:"Anglais",Japanese:"Japonais","Untitled project":"Projet sans titre","Lignes de Temps":"Lignes de Temps","Loading, please wait":"Chargement en cours, merci de patienter","Edge color:":"Couleur :","Dash:":"Point. :","Thickness:":"Epaisseur :","Arrow:":"Flèche :","Node color:":"Couleur :","Choose color":"Choisir une couleur","Change edge direction":"Changer le sens du lien","Do you really wish to remove node ":"Voulez-vous réellement supprimer le nœud ","Do you really wish to remove edge ":"Voulez-vous réellement supprimer le lien ","This file is not an image":"Ce fichier n'est pas une image","Image size must be under ":"L'image doit peser moins de ","Size:":"Taille :",KB:"ko","Choose from vocabulary:":"Choisir dans un vocabulaire :","SKOS Documentation properties":"SKOS: Propriétés documentaires","has note":"a pour note","has example":"a pour exemple","has definition":"a pour définition","SKOS Semantic relations":"SKOS: Relations sémantiques","has broader":"a pour concept plus large","has narrower":"a pour concept plus étroit","has related":"a pour concept apparenté","Dublin Core Metadata":"Métadonnées Dublin Core","has contributor":"a pour contributeur",covers:"couvre","created by":"créé par","has date":"a pour date","published by":"édité par","has source":"a pour source","has subject":"a pour sujet","Dragged resource":"Ressource glisée-déposée","Search the Web":"Rechercher en ligne","Search in Bins":"Rechercher dans les chutiers","Close bin":"Fermer le chutier","Refresh bin":"Rafraîchir le chutier","(untitled)":"(sans titre)","Select contents:":"Sélectionner des contenus :","Drag items from this website, drop them in Renkan":"Glissez des éléments de ce site web vers Renkan","Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.":"Glissez ce bouton vers votre barre de favoris. Ensuite, depuis un site tiers, cliquez dessus pour activer 'Drag-to-Add' puis glissez des éléments de ce site vers Renkan","Shapes available":"Formes disponibles",Circle:"Cercle",Square:"Carré",Diamond:"Losange",Hexagone:"Hexagone",Ellipse:"Ellipse",Star:"Étoile",Cloud:"Nuage",Triangle:"Triangle","Zoom Fit":"Ajuster le Zoom","Download Project":"Télécharger le projet","Zoom Save":"Sauver le Zoom","View saved zoom":"Restaurer le Zoom","Renkan 'Drag-to-Add' bookmarklet":"Renkan 'Deplacer-Pour-Ajouter' Signet","(unknown user)":"(non authentifié)","":"","Search in graph":"Rechercher dans carte","Search in ":"Chercher dans "}},Rkns.jsonIO=function(a,b){var c=a.project;"undefined"==typeof b.http_method&&(b.http_method="PUT");var d=function(){a.renderer.redrawActive=!1,c.set({loadingStatus:!0}),Rkns.$.getJSON(b.url,function(b){a.dataloader.load(b),c.set({loadingStatus:!1}),c.set({saveStatus:0}),a.renderer.redrawActive=!0,a.renderer.fixSize()})},e=function(){c.set({saveStatus:2});var d=c.toJSON();a.read_only||Rkns.$.ajax({type:b.http_method,url:b.url,contentType:"application/json",data:JSON.stringify(d),success:function(){c.set({saveStatus:0})}})},f=Rkns._.throttle(function(){setTimeout(e,100)},1e3);c.on("add:nodes add:edges add:users add:views",function(a){a.on("change remove",function(){f()}),f()}),c.on("change",function(){1===c.changedAttributes.length&&c.hasChanged("saveStatus")||f()}),d()},Rkns.jsonIOSaveOnClick=function(a,b){var c=a.project,d=!1,e=function(){return"Project not saved"};"undefined"==typeof b.http_method&&(b.http_method="POST");var f=function(){var d={},e=/id=([^&#?=]+)/,f=document.location.hash.match(e);f&&(d.id=f[1]),Rkns.$.ajax({url:b.url,data:d,beforeSend:function(){c.set({loadingStatus:!0})},success:function(b){a.dataloader.load(b),c.set({loadingStatus:!1}),c.set({saveStatus:0}),a.renderer.autoScale()}})},g=function(){c.set("saved_at",new Date);var a=c.toJSON();Rkns.$.ajax({type:b.http_method,url:b.url,contentType:"application/json",data:JSON.stringify(a),beforeSend:function(){c.set({saveStatus:2})},success:function(){$(window).off("beforeunload",e),d=!1,c.set({saveStatus:0})}})},h=function(){c.set({saveStatus:1});var a=c.get("title");a&&c.get("nodes").length?$(".Rk-Save-Button").removeClass("disabled"):$(".Rk-Save-Button").addClass("disabled"),a&&$(".Rk-PadTitle").css("border-color","#333333"),d||(d=!0,$(window).on("beforeunload",e))};f(),c.on("add:nodes add:edges add:users change",function(a){a.on("change remove",function(a){1===a.changedAttributes.length&&a.hasChanged("saveStatus")||h()}),1===c.changedAttributes.length&&c.hasChanged("saveStatus")||h()}),a.renderer.save=function(){$(".Rk-Save-Button").hasClass("disabled")?c.get("title")||$(".Rk-PadTitle").css("border-color","#ff0000"):g()}},function(a){"use strict";var b=a._,c=a.Ldt={},d=(c.Bin=function(a,b){if(b.ldt_type){var d=c[b.ldt_type+"Bin"];if(d)return new d(a,b)}console.error("No such LDT Bin Type")},c.ProjectBin=a.Utils.inherit(a._BaseBin));d.prototype.tagTemplate=renkanJST["templates/ldtjson-bin/tagtemplate.html"],d.prototype.annotationTemplate=renkanJST["templates/ldtjson-bin/annotationtemplate.html"],d.prototype._init=function(a,b){this.renkan=a,this.proj_id=b.project_id,this.ldt_platform=b.ldt_platform||"http://ldt.iri.centrepompidou.fr/",this.title_$.html(b.title),this.title_icon_$.addClass("Rk-Ldt-Title-Icon"),this.refresh()},d.prototype.render=function(c){function d(a){var c=b(a).escape();return f.isempty?c:f.replace(c,"$1")}function e(a){function b(a){for(var b=a.toString();b.length<2;)b="0"+b;return b}var c=Math.abs(Math.floor(a/1e3)),d=Math.floor(c/3600),e=Math.floor(c/60)%60,f=c%60,g="";return d&&(g+=b(d)+":"),g+=b(e)+":"+b(f)}var f=c||a.Utils.regexpFromTextOrArray(),g="
        • Tags

        • ",h=this.data.meta["dc:title"],i=this,j=0;i.title_$.text('LDT Project: "'+h+'"'),b.map(i.data.tags,function(a){var b=a.meta["dc:title"];(f.isempty||f.test(b))&&(j++,g+=i.tagTemplate({ldt_platform:i.ldt_platform,title:b,htitle:d(b),encodedtitle:encodeURIComponent(b),static_url:i.renkan.options.static_url}))}),g+="
        • Annotations

        • ",b.map(i.data.annotations,function(a){var b=a.content.description,c=a.content.title.replace(b,"");if(f.isempty||f.test(c)||f.test(b)){j++;var h=a.end-a.begin,k=a.content&&a.content.img&&a.content.img.src?a.content.img.src:h?i.renkan.options.static_url+"img/ldt-segment.png":i.renkan.options.static_url+"img/ldt-point.png";g+=i.annotationTemplate({ldt_platform:i.ldt_platform,title:c,htitle:d(c),description:b,hdescription:d(b),start:e(a.begin),end:e(a.end),duration:e(h),mediaid:a.media,annotationid:a.id,image:k,static_url:i.renkan.options.static_url})}}),this.main_$.html(g),!f.isempty&&j?this.count_$.text(j).show():this.count_$.hide(),f.isempty||j?this.$.show():this.$.hide(),this.renkan.resizeBins()},d.prototype.refresh=function(){var b=this;a.$.ajax({url:this.ldt_platform+"ldtplatform/ldt/cljson/id/"+this.proj_id,dataType:"jsonp",success:function(a){b.data=a,b.render()}})};var e=c.Search=function(a,b){this.renkan=a,this.lang=b.lang||"en"};e.prototype.getBgClass=function(){return"Rk-Ldt-Icon"},e.prototype.getSearchTitle=function(){return this.renkan.translate("Lignes de Temps")},e.prototype.search=function(a){this.renkan.tabs.push(new f(this.renkan,{search:a}))};var f=c.ResultsBin=a.Utils.inherit(a._BaseBin);f.prototype.segmentTemplate=renkanJST["templates/ldtjson-bin/segmenttemplate.html"],f.prototype._init=function(a,b){this.renkan=a,this.ldt_platform=b.ldt_platform||"http://ldt.iri.centrepompidou.fr/",this.max_results=b.max_results||50,this.search=b.search,this.title_$.html('Lignes de Temps: "'+b.search+'"'),this.title_icon_$.addClass("Rk-Ldt-Title-Icon"),this.refresh()},f.prototype.render=function(c){function d(a){return g.replace(b(a).escape(),"$1")}function e(a){function b(a){for(var b=a.toString();b.length<2;)b="0"+b;return b}var c=Math.abs(Math.floor(a/1e3)),d=Math.floor(c/3600),e=Math.floor(c/60)%60,f=c%60,g="";return d&&(g+=b(d)+":"),g+=b(e)+":"+b(f)}if(this.data){var f=c||a.Utils.regexpFromTextOrArray(),g=f.isempty?a.Utils.regexpFromTextOrArray(this.search):f,h="",i=this,j=0;b.each(this.data.objects,function(a){var b=a["abstract"],c=a.title;if(f.isempty||f.test(c)||f.test(b)){j++;var g=a.duration,k=a.start_ts,l=+a.duration+k,m=g?i.renkan.options.static_url+"img/ldt-segment.png":i.renkan.options.static_url+"img/ldt-point.png";h+=i.segmentTemplate({ldt_platform:i.ldt_platform,title:c,htitle:d(c),description:b,hdescription:d(b),start:e(k),end:e(l),duration:e(g),mediaid:a.iri_id,annotationid:a.element_id,image:m})}}),this.main_$.html(h),!f.isempty&&j?this.count_$.text(j).show():this.count_$.hide(),f.isempty||j?this.$.show():this.$.hide(),this.renkan.resizeBins()}},f.prototype.refresh=function(){var b=this;a.$.ajax({url:this.ldt_platform+"ldtplatform/api/ldt/1.0/segments/search/",data:{format:"jsonp",q:this.search,limit:this.max_results},dataType:"jsonp",success:function(a){b.data=a,b.render()}})}}(window.Rkns),Rkns.ResourceList={},Rkns.ResourceList.Bin=Rkns.Utils.inherit(Rkns._BaseBin),Rkns.ResourceList.Bin.prototype.resultTemplate=renkanJST["templates/list-bin.html"],Rkns.ResourceList.Bin.prototype._init=function(a,b){this.renkan=a,this.title_$.html(b.title),b.list&&(this.data=b.list),this.refresh()},Rkns.ResourceList.Bin.prototype.render=function(a){function b(a){var b=_(a).escape();return c.isempty?b:c.replace(b,"$1")}var c=a||Rkns.Utils.regexpFromTextOrArray(),d="",e=this,f=0;Rkns._.each(this.data,function(a){var g;if("string"==typeof a)if(/^(https?:\/\/|www)/.test(a))g={url:a};else{g={title:a.replace(/[:,]?\s?(https?:\/\/|www)[\d\w\/.&?=#%-_]+\s?/,"").trim()};var h=a.match(/(https?:\/\/|www)[\d\w\/.&?=#%-_]+/);h&&(g.url=h[0]),g.title.length>80&&(g.description=g.title,g.title=g.title.replace(/^(.{30,60})\s.+$/,"$1…"))}else g=a;var i=g.title||(g.url||"").replace(/^https?:\/\/(www\.)?/,"").replace(/^(.{40}).+$/,"$1…"),j=g.url||"",k=g.description||"",l=g.image||"";j&&!/^https?:\/\//.test(j)&&(j="http://"+j),(c.isempty||c.test(i)||c.test(k))&&(f++,d+=e.resultTemplate({url:j,title:i,htitle:b(i),image:l,description:k,hdescription:b(k),static_url:e.renkan.options.static_url}))}),e.main_$.html(d),!c.isempty&&f?this.count_$.text(f).show():this.count_$.hide(),c.isempty||f?this.$.show():this.$.hide(),this.renkan.resizeBins()},Rkns.ResourceList.Bin.prototype.refresh=function(){this.data&&this.render()},Rkns.Wikipedia={},Rkns.Wikipedia.Search=function(a,b){this.renkan=a,this.lang=b.lang||"en"},Rkns.Wikipedia.Search.prototype.getBgClass=function(){return"Rk-Wikipedia-Search-Icon Rk-Wikipedia-Lang-"+this.lang},Rkns.Wikipedia.Search.prototype.getSearchTitle=function(){var a={fr:"French",en:"English",ja:"Japanese"};return a[this.lang]?this.renkan.translate("Wikipedia in ")+this.renkan.translate(a[this.lang]):this.renkan.translate("Wikipedia")+" ["+this.lang+"]"},Rkns.Wikipedia.Search.prototype.search=function(a){this.renkan.tabs.push(new Rkns.Wikipedia.Bin(this.renkan,{lang:this.lang,search:a}))},Rkns.Wikipedia.Bin=Rkns.Utils.inherit(Rkns._BaseBin),Rkns.Wikipedia.Bin.prototype.resultTemplate=renkanJST["templates/wikipedia-bin/resulttemplate.html"],Rkns.Wikipedia.Bin.prototype._init=function(a,b){this.renkan=a,this.search=b.search,this.lang=b.lang||"en",this.title_icon_$.addClass("Rk-Wikipedia-Title-Icon Rk-Wikipedia-Lang-"+this.lang),this.title_$.html(this.search).addClass("Rk-Wikipedia-Title"),this.refresh()},Rkns.Wikipedia.Bin.prototype.render=function(a){function b(a){return d.replace(_(a).escape(),"$1")}var c=a||Rkns.Utils.regexpFromTextOrArray(),d=c.isempty?Rkns.Utils.regexpFromTextOrArray(this.search):c,e="",f=this,g=0;Rkns._.each(this.data.query.search,function(a){var d=a.title,h="http://"+f.lang+".wikipedia.org/wiki/"+encodeURI(d.replace(/ /g,"_")),i=Rkns.$("
          ").html(a.snippet).text();(c.isempty||c.test(d)||c.test(i))&&(g++,e+=f.resultTemplate({url:h,title:d,htitle:b(d),description:i,hdescription:b(i),static_url:f.renkan.options.static_url}))}),f.main_$.html(e),!c.isempty&&g?this.count_$.text(g).show():this.count_$.hide(),c.isempty||g?this.$.show():this.$.hide(),this.renkan.resizeBins()},Rkns.Wikipedia.Bin.prototype.refresh=function(){var a=this;Rkns.$.ajax({url:"http://"+a.lang+".wikipedia.org/w/api.php?action=query&list=search&srsearch="+encodeURIComponent(this.search)+"&format=json",dataType:"jsonp",success:function(b){a.data=b,a.render()}})},define("renderer/baserepresentation",["jquery","underscore"],function(a,b){var c=function(a,c){if("undefined"!=typeof a&&(this.renderer=a,this.renkan=a.renkan,this.project=a.renkan.project,this.options=a.renkan.options,this.model=c,this.model)){var d=this;this._changeBinding=function(){d.redraw({change:!0})},this._removeBinding=function(){a.removeRepresentation(d),b.defer(function(){a.redraw()})},this._selectBinding=function(){d.select()},this._unselectBinding=function(){d.unselect()},this.model.on("change",this._changeBinding),this.model.on("remove",this._removeBinding),this.model.on("select",this._selectBinding),this.model.on("unselect",this._unselectBinding)}};return b(c.prototype).extend({_super:function(a){return c.prototype[a].apply(this,Array.prototype.slice.call(arguments,1))},redraw:function(){},moveTo:function(){},show:function(){return"BaseRepresentation.show"},hide:function(){},select:function(){this.model&&this.model.trigger("selected")},unselect:function(){this.model&&this.model.trigger("unselected")},highlight:function(){},unhighlight:function(){},mousedown:function(){},mouseup:function(){this.model&&this.model.trigger("clicked")},destroy:function(){this.model&&(this.model.off("change",this._changeBinding),this.model.off("remove",this._removeBinding),this.model.off("select",this._selectBinding),this.model.off("unselect",this._unselectBinding))}}).value(),c}),define("requtils",[],function(){return{getUtils:function(){return window.Rkns.Utils},getRenderer:function(){return window.Rkns.Renderer}}}),define("renderer/basebutton",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({moveTo:function(a){this.sector.moveTo(a)},show:function(){this.sector.show()},hide:function(){this.sector.hide()},select:function(){this.sector.select()},unselect:function(a){this.sector.unselect(),(!a||a!==this.source_representation&&a.source_representation!==this.source_representation)&&this.source_representation.unselect()},destroy:function(){this.sector.destroy()}}).value(),f}),define("renderer/shapebuilder",[],function(){var a="M0,0c-0.1218516546,-0.0336420601 -0.2451649928,0.0048580836 -0.3302944641,0.0884969975c-0.0444763883,-0.0550844815 -0.1047003238,-0.0975985034 -0.1769360893,-0.1175406746c-0.1859066673,-0.0513257002 -0.3774236254,0.0626045858 -0.4272374613,0.2541588105c-0.0036603877,0.0140753132 -0.0046241235,0.028229722 -0.0065872453,0.042307536c-0.1674179627,-0.0179317735 -0.3276106855,0.0900599386 -0.3725537463,0.2628868425c-0.0445325077,0.1712456429 0.0395025693,0.3463497959 0.1905420475,0.4183458793c-0.0082101538,0.0183442886 -0.0158652506,0.0372432828 -0.0211098452,0.0574080693c-0.0498130336,0.1915540431 0.0608692569,0.3884647499 0.2467762814,0.4397904033c0.0910577256,0.0251434257 0.1830791813,0.0103792696 0.2594677475,-0.0334472349c0.042100113,0.0928009202 0.1205930075,0.1674914182 0.2240666796,0.1960572479c0.1476344161,0.0407610407 0.297446165,-0.0238077445 0.3783262342,-0.1475652419c0.0327623278,0.0238981846 0.0691792333,0.0436665447 0.1102008706,0.0549940004c0.1859065794,0.0513256592 0.3770116432,-0.0627203154 0.4268255671,-0.2542745401c0.0250490557,-0.0963230532 0.0095494076,-0.1938010889 -0.0356681889,-0.2736906101c0.0447507424,-0.0439678867 0.0797796014,-0.0996624318 0.0969425462,-0.1656617192c0.0498137481,-0.1915564561 -0.0608688118,-0.3884669813 -0.2467755669,-0.4397928163c-0.0195699622,-0.0054005426 -0.0391731675,-0.0084429542 -0.0586916488,-0.0102888295c0.0115683912,-0.1682147574 -0.0933564223,-0.3269222408 -0.2572937178,-0.3721841203z",b={circle:{getShape:function(){return new paper.Path.Circle([0,0],1) -},getImageShape:function(a,b){return new paper.Path.Circle(a,b)}},rectangle:{getShape:function(){return new paper.Path.Rectangle([-2,-2],[2,2])},getImageShape:function(a,b){return new paper.Path.Rectangle([-b,-b],[2*b,2*b])}},ellipse:{getShape:function(){return new paper.Path.Ellipse(new paper.Rectangle([-2,-1],[2,1]))},getImageShape:function(a,b){return new paper.Path.Ellipse(new paper.Rectangle([-b,-b/2],[2*b,b]))}},polygon:{getShape:function(){return new paper.Path.RegularPolygon([0,0],6,1)},getImageShape:function(a,b){return new paper.Path.RegularPolygon(a,6,b)}},diamond:{getShape:function(){var a=new paper.Path.Rectangle([-Math.SQRT2,-Math.SQRT2],[Math.SQRT2,Math.SQRT2]);return a.rotate(45),a},getImageShape:function(a,b){var c=new paper.Path.Rectangle([-b*Math.SQRT2/2,-b*Math.SQRT2/2],[b*Math.SQRT2,b*Math.SQRT2]);return c.rotate(45),c}},star:{getShape:function(){return new paper.Path.Star([0,0],8,1,.7)},getImageShape:function(a,b){return new paper.Path.Star(a,8,1*b,.7*b)}},cloud:{getShape:function(){var b=new paper.Path(a);return b},getImageShape:function(b,c){var d=new paper.Path(a);return d.scale(c),d.translate(b),d}},triangle:{getShape:function(){return new paper.Path.RegularPolygon([0,0],3,1)},getImageShape:function(a,b){return new paper.Path.RegularPolygon(a,3,b)}},svg:function(a){return{getShape:function(){return new paper.Path(a)},getImageShape:function(){return new paper.Path}}}},c=function(a){return(null===a||"undefined"==typeof a)&&(a="circle"),"svg:"===a.substr(0,4)?b.svg(a.substr(4)):(a in b||(a="circle"),b[a])};return c.builders=b,c}),define("renderer/noderepr",["jquery","underscore","requtils","renderer/baserepresentation","renderer/shapebuilder"],function(a,b,c,d,e){var f=c.getUtils(),g=f.inherit(d);return b(g.prototype).extend({_init:function(){if(this.renderer.node_layer.activate(),this.type="Node",this.buildShape(),this.hidden=!1,this.ghost=!1,this.options.show_node_circles?(this.circle.strokeWidth=this.options.node_stroke_width,this.h_ratio=1):this.h_ratio=0,this.title=a('
          ').appendTo(this.renderer.labels_$),this.options.editor_mode){var b=c.getRenderer();this.normal_buttons=[new b.NodeEditButton(this.renderer,null),new b.NodeRemoveButton(this.renderer,null),new b.NodeHideButton(this.renderer,null),new b.NodeShowButton(this.renderer,null),new b.NodeLinkButton(this.renderer,null),new b.NodeEnlargeButton(this.renderer,null),new b.NodeShrinkButton(this.renderer,null)],this.pending_delete_buttons=[new b.NodeRevertButton(this.renderer,null)],this.all_buttons=this.normal_buttons.concat(this.pending_delete_buttons);for(var d=0;d$1')):this.title.text(h);var i=this._getStrokeWidth();this.title.css({left:this.paper_coords.x,top:this.paper_coords.y+this.circle_radius*this.h_ratio+this.options.node_label_distance+.5*i,opacity:g});var j=this.model.has("style")&&this.model.get("style").color||(this.model.get("created_by")||f._USER_PLACEHOLDER(this.renkan)).get("color"),k=this.model.has("style")&&this.model.get("style").dash?this.options.default_dash_array:null;this.circle.strokeWidth=i,this.circle.strokeColor=j,this.circle.dashArray=k;var l=this.paper_coords;this.all_buttons.forEach(function(a){a.moveTo(l)});var m=this.img;if(this.img=this.model.get("image"),this.img&&this.img!==m&&(this.showImage(),this.circle&&this.circle.sendToBack()),this.node_image&&!this.img&&(this.node_image.remove(),delete this.node_image),this.renderer.minimap){this.minimap_circle.fillColor=j;var n=this.renderer.toMinimapCoords(c),o=this.renderer.minimap.scale*d,p=new paper.Size([o,o]);this.minimap_circle.fitBounds(n.subtract(p),p.multiply(2))}if(!("undefined"!=typeof a&&"dontRedrawEdges"in a&&a.dontRedrawEdges)){var q=this;b.each(this.project.get("edges").filter(function(a){return a.get("to")===q.model||a.get("from")===q.model}),function(a){var b=q.renderer.getRepresentationByModel(a);b&&"undefined"!=typeof b.from_representation&&"undefined"!=typeof b.from_representation.paper_coords&&"undefined"!=typeof b.to_representation&&"undefined"!=typeof b.to_representation.paper_coords&&b.redraw()})}this.ghost?this.show(!0):this.hidden&&this.hide()},showImage:function(){var b=null;if("undefined"==typeof this.renderer.image_cache[this.img]?(b=new Image,this.renderer.image_cache[this.img]=b,b.src=this.img):b=this.renderer.image_cache[this.img],b.width){this.node_image&&this.node_image.remove(),this.renderer.node_layer.activate();var c=b.width,d=b.height,e=this.model.get("clip_path"),f="undefined"!=typeof e&&e,g=null,h=null,i=null;if(f){g=new paper.Path;var j=e.match(/[a-z][^a-z]+/gi)||[],k=[0,0],l=1/0,m=1/0,n=-1/0,o=-1/0,p=function(a,b){var e=a.slice(1).map(function(a,e){var f=parseFloat(a),g=e%2;return f=g?(f-.5)*d:(f-.5)*c,b&&(f+=k[g]),g?(m=Math.min(m,f),o=Math.max(o,f)):(l=Math.min(l,f),n=Math.max(n,f)),f});return k=e.slice(-2),e};j.forEach(function(a){var b=a.match(/([a-z]|[0-9.-]+)/gi)||[""];switch(b[0]){case"M":g.moveTo(p(b));break;case"m":g.moveTo(p(b,!0));break;case"L":g.lineTo(p(b));break;case"l":g.lineTo(p(b,!0));break;case"C":g.cubicCurveTo(p(b));break;case"c":g.cubicCurveTo(p(b,!0));break;case"Q":g.quadraticCurveTo(p(b));break;case"q":g.quadraticCurveTo(p(b,!0))}}),h=Math[this.options.node_images_fill_mode?"min":"max"](n-l,o-m)/2,i=new paper.Point((n+l)/2,(o+m)/2),this.options.show_node_circles||(this.h_ratio=(o-m)/(2*h))}else h=Math[this.options.node_images_fill_mode?"min":"max"](c,d)/2,i=new paper.Point(0,0),this.options.show_node_circles||(this.h_ratio=d/(2*h));var q=new paper.Raster(b);if(q.locked=!0,f&&(q=new paper.Group(g,q),q.opacity=.99,q.clipped=!0,g.__representation=this),this.options.clip_node_images){var r=this.shapeBuilder.getImageShape(i,h);q=new paper.Group(r,q),q.opacity=.99,q.clipped=!0,r.__representation=this}this.image_delta=i.divide(h),this.node_image=q,this.node_image.__representation=s,this.node_image.scale(this.circle_radius/h),this.node_image.position=this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius)),this.node_image.insertAbove(this.circle)}else{var s=this;a(b).on("load",function(){s.showImage()})}},paperShift:function(a){this.options.editor_mode?this.renkan.read_only||(this.is_dragging=!0,this.paper_coords=this.paper_coords.add(a),this.redraw()):this.renderer.paperShift(a)},openEditor:function(){this.renderer.removeRepresentationsOfType("editor");var a=this.renderer.addRepresentation("NodeEditor",null);a.source_representation=this,a.draw()},select:function(){this.selected=!0,this.circle.strokeWidth=this._getSelectedStrokeWidth(),this.renderer.isEditable()&&!this.hidden&&this.active_buttons.forEach(function(a){a.show()});var b=this.model.get("uri");b&&a(".Rk-Bin-Item").each(function(){var c=a(this);c.attr("data-uri")===b&&c.addClass("selected")}),this.options.editor_mode||this.openEditor(),this.renderer.minimap&&(this.minimap_circle.strokeWidth=this.options.minimap_highlight_weight,this.minimap_circle.strokeColor=this.options.minimap_highlight_color),this.hidden?this.show(!0):this.showNeighbors(!0),this._super("select")},hideButtons:function(){this.all_buttons.forEach(function(a){a.hide()}),delete this.buttonTimeout},unselect:function(b){if(!b||b.source_representation!==this){this.selected=!1;var c=this;this.buttons_timeout=setTimeout(function(){c.hideButtons()},200),this.circle.strokeWidth=this._getStrokeWidth(),a(".Rk-Bin-Item").removeClass("selected"),this.renderer.minimap&&(this.minimap_circle.strokeColor=void 0),this.hidden?this.hide():this.hideNeighbors(),this._super("unselect")}},hide:function(){var a=this;this.ghost=!1,this.hidden=!0,"undefined"!=typeof this.node_image&&(this.node_image.opacity=0),this.hideButtons(),this.circle.opacity=0,this.title.css("opacity",0),this.minimap_circle.opacity=0,b.each(this.project.get("edges").filter(function(b){return b.get("to")===a.model||b.get("from")===a.model}),function(b){var c=a.renderer.getRepresentationByModel(b);c&&"undefined"!=typeof c.from_representation&&"undefined"!=typeof c.from_representation.paper_coords&&"undefined"!=typeof c.to_representation&&"undefined"!=typeof c.to_representation.paper_coords&&c.hide()}),this.hideNeighbors()},show:function(a){var c=this;this.ghost=a,this.ghost?("undefined"!=typeof this.node_image&&(this.node_image.opacity=this.options.ghost_opacity),this.circle.opacity=this.options.ghost_opacity,this.title.css("opacity",this.options.ghost_opacity),this.minimap_circle.opacity=this.options.ghost_opacity):(this.hidden=!1,this.redraw()),b.each(this.project.get("edges").filter(function(a){return a.get("to")===c.model||a.get("from")===c.model}),function(a){var b=c.renderer.getRepresentationByModel(a);b&&"undefined"!=typeof b.from_representation&&"undefined"!=typeof b.from_representation.paper_coords&&"undefined"!=typeof b.to_representation&&"undefined"!=typeof b.to_representation.paper_coords&&b.show(c.ghost)})},hideNeighbors:function(){var a=this;b.each(this.project.get("edges").filter(function(b){return b.get("from")===a.model}),function(b){var c=a.renderer.getRepresentationByModel(b.get("to"));c&&c.ghost&&c.hide()})},showNeighbors:function(a){var c=this;b.each(this.project.get("edges").filter(function(a){return a.get("from")===c.model}),function(b){var d=c.renderer.getRepresentationByModel(b.get("to"));if(d&&d.hidden&&(d.show(a),!a)){var e=c.renderer.hiddenNodes.indexOf(d.model.id);-1!==e&&c.renderer.hiddenNodes.splice(e,1)}})},highlight:function(a){var b=a||!0;this.highlighted!==b&&(this.highlighted=b,this.redraw(),this.renderer.throttledPaperDraw())},unhighlight:function(){this.highlighted&&(this.highlighted=!1,this.redraw(),this.renderer.throttledPaperDraw())},saveCoords:function(){var a=this.renderer.toModelCoords(this.paper_coords),b={position:{x:a.x,y:a.y}};this.renderer.isEditable()&&this.model.set(b)},mousedown:function(a,b){b&&(this.renderer.unselectAll(),this.select())},mouseup:function(a,b){if(this.renderer.is_dragging&&this.renderer.isEditable())this.saveCoords();else if(this.hidden){var c=this.renderer.hiddenNodes.indexOf(this.model.id);-1!==c&&this.renderer.hiddenNodes.splice(c,1),this.show(!1),this.select()}else b||this.model.get("delete_scheduled")||this.openEditor(),this.model.trigger("clicked");this.renderer.click_target=null,this.renderer.is_dragging=!1,this.is_dragging=!1},destroy:function(){this._super("destroy"),this.all_buttons.forEach(function(a){a.destroy()}),this.circle.remove(),this.title.remove(),this.renderer.minimap&&this.minimap_circle.remove(),this.node_image&&this.node_image.remove()}}).value(),g}),define("renderer/edge",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){if(this.renderer.edge_layer.activate(),this.type="Edge",this.hidden=!1,this.ghost=!1,this.from_representation=this.renderer.getRepresentationByModel(this.model.get("from")),this.to_representation=this.renderer.getRepresentationByModel(this.model.get("to")),this.bundle=this.renderer.addToBundles(this),this.line=new paper.Path,this.line.add([0,0],[0,0],[0,0]),this.line.__representation=this,this.line.strokeWidth=this.options.edge_stroke_width,this.arrow_scale=1,this.arrow=new paper.Path,this.arrow.add([0,0],[this.options.edge_arrow_length,this.options.edge_arrow_width/2],[0,this.options.edge_arrow_width]),this.arrow.pivot=new paper.Point([this.options.edge_arrow_length/2,this.options.edge_arrow_width/2]),this.arrow.__representation=this,this.text=a('
          ').appendTo(this.renderer.labels_$),this.arrow_angle=0,this.options.editor_mode){var b=c.getRenderer();this.normal_buttons=[new b.EdgeEditButton(this.renderer,null),new b.EdgeRemoveButton(this.renderer,null)],this.pending_delete_buttons=[new b.EdgeRevertButton(this.renderer,null)],this.all_buttons=this.normal_buttons.concat(this.pending_delete_buttons);for(var d=0;d90&&(q-=180,r=r.multiply(-1)),-90>q&&(q+=180,r=r.multiply(-1));var w=this.model.get("title")||this.renkan.translate(this.options.label_untitled_edges)||"";w=e.shortenText(w,this.options.node_label_max_length),this.text.text(w);var x=this.paper_coords.add(r);this.text.css({left:x.x,top:x.y,transform:"rotate("+q+"deg)","-moz-transform":"rotate("+q+"deg)","-webkit-transform":"rotate("+q+"deg)",opacity:c}),this.text_angle=q;var y=this.paper_coords;this.all_buttons.forEach(function(a){a.moveTo(y)}),this.renderer.minimap&&(this.minimap_line.strokeColor=t,this.minimap_line.segments[0].point=this.renderer.toMinimapCoords(new paper.Point(this.from_representation.model.get("position"))),this.minimap_line.segments[1].point=this.renderer.toMinimapCoords(new paper.Point(this.to_representation.model.get("position"))))}},hide:function(){this.hidden=!0,this.ghost=!1,this.text.hide(),this.line.visible=!1,this.arrow.visible=!1,this.minimap_line.visible=!1},show:function(a){this.ghost=a,this.ghost?(this.text.css("opacity",.3),this.line.opacity=.3,this.arrow.opacity=.3,this.minimap_line.opacity=.3):(this.hidden=!1,this.text.css("opacity",1),this.line.opacity=1,this.arrow.opacity=1,this.minimap_line.opacity=1),this.text.show(),this.line.visible=!0,this.arrow.visible=!0,this.minimap_line.visible=!0,this.redraw()},openEditor:function(){this.renderer.removeRepresentationsOfType("editor");var a=this.renderer.addRepresentation("EdgeEditor",null);a.source_representation=this,a.draw()},select:function(){this.selected=!0,this.line.strokeWidth=this._getSelectedStrokeWidth(),this.renderer.isEditable()&&this.active_buttons.forEach(function(a){a.show()}),this.options.editor_mode||this.openEditor(),this._super("select")},unselect:function(a){a&&a.source_representation===this||(this.selected=!1,this.options.editor_mode&&this.all_buttons.forEach(function(a){a.hide()}),this.line.strokeWidth=this._getStrokeWidth(),this._super("unselect"))},mousedown:function(a,b){b&&(this.renderer.unselectAll(),this.select())},mouseup:function(a,b){!this.renkan.read_only&&this.renderer.is_dragging?(this.from_representation.saveCoords(),this.to_representation.saveCoords(),this.from_representation.is_dragging=!1,this.to_representation.is_dragging=!1):(b||this.openEditor(),this.model.trigger("clicked")),this.renderer.click_target=null,this.renderer.is_dragging=!1},paperShift:function(a){this.options.editor_mode?this.options.read_only||(this.from_representation.paperShift(a),this.to_representation.paperShift(a)):this.renderer.paperShift(a)},destroy:function(){this._super("destroy"),this.line.remove(),this.arrow.remove(),this.text.remove(),this.renderer.minimap&&this.minimap_line.remove(),this.all_buttons.forEach(function(a){a.destroy()});var a=this;this.bundle.edges=b.reject(this.bundle.edges,function(b){return a===b})}}).value(),f}),define("renderer/tempedge",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.renderer.edge_layer.activate(),this.type="Temp-edge";var a=(this.project.get("users").get(this.renkan.current_user)||e._USER_PLACEHOLDER(this.renkan)).get("color");this.line=new paper.Path,this.line.strokeColor=a,this.line.dashArray=[4,2],this.line.strokeWidth=this.options.selected_edge_stroke_width,this.line.add([0,0],[0,0]),this.line.__representation=this,this.arrow=new paper.Path,this.arrow.fillColor=a,this.arrow.add([0,0],[this.options.edge_arrow_length,this.options.edge_arrow_width/2],[0,this.options.edge_arrow_width]),this.arrow.__representation=this,this.arrow_angle=0},redraw:function(){var a=this.from_representation.paper_coords,b=this.end_pos,c=b.subtract(a).angle,d=a.add(b).divide(2);this.line.segments[0].point=a,this.line.segments[1].point=b,this.arrow.rotate(c-this.arrow_angle),this.arrow.position=d,this.arrow_angle=c},paperShift:function(a){if(!this.renderer.isEditable())return this.renderer.removeRepresentation(_this),void paper.view.draw();this.end_pos=this.end_pos.add(a);var b=paper.project.hitTest(this.end_pos);this.renderer.findTarget(b),this.redraw()},mouseup:function(a){var b=paper.project.hitTest(a.point),c=this.from_representation.model,d=!0;if(b&&"undefined"!=typeof b.item.__representation){var f=b.item.__representation;if("Node"===f.type.substr(0,4)){var g=f.model||f.source_representation.model;if(c!==g){var h={id:e.getUID("edge"),created_by:this.renkan.current_user,from:c,to:g};this.renderer.isEditable()&&this.project.addEdge(h)}}(c===f.model||f.source_representation&&f.source_representation.model===c)&&(d=!1,this.renderer.is_dragging=!0)}d&&(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentation(this),paper.view.draw())},destroy:function(){this.arrow.remove(),this.line.remove()}}).value(),f}),define("renderer/baseeditor",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.renderer.buttons_layer.activate(),this.type="editor",this.editor_block=new paper.Path;var c=b.map(b.range(8),function(){return[0,0]});this.editor_block.add.apply(this.editor_block,c),this.editor_block.strokeWidth=this.options.tooltip_border_width,this.editor_block.strokeColor=this.options.tooltip_border_color,this.editor_block.opacity=.8,this.editor_$=a("
          ").appendTo(this.renderer.editor_$).css({position:"absolute",opacity:.8}).hide()},destroy:function(){this.editor_block.remove(),this.editor_$.remove()}}).value(),f}),define("renderer/nodeeditor",["jquery","underscore","requtils","renderer/baseeditor","renderer/shapebuilder"],function(a,b,c,d,e){var f=c.getUtils(),g=f.inherit(d);return b(g.prototype).extend({_init:function(){d.prototype._init.apply(this),this.template=this.options.templates["templates/nodeeditor.html"],this.readOnlyTemplate=this.options.templates["templates/nodeeditor_readonly.html"]},draw:function(){var c=this.source_representation.model,d=c.get("created_by")||f._USER_PLACEHOLDER(this.renkan),g=this.renderer.isEditable()?this.template:this.readOnlyTemplate,h=this.options.static_url+"img/image-placeholder.png",i=c.get("size")||0;this.editor_$.html(g({node:{has_creator:!!c.get("created_by"),title:c.get("title"),uri:c.get("uri"),short_uri:f.shortenText((c.get("uri")||"").replace(/^(https?:\/\/)?(www\.)?/,"").replace(/\/$/,""),40),description:c.get("description"),image:c.get("image")||"",image_placeholder:h,color:c.has("style")&&c.get("style").color||d.get("color"),thickness:c.has("style")&&c.get("style").thickness||1,dash:c.has("style")&&c.get("style").dash?"checked":"",clip_path:c.get("clip_path")||!1,created_by_color:d.get("color"),created_by_title:d.get("title"),size:(i>0?"+":"")+i,shape:c.get("shape")||"circle"},renkan:this.renkan,options:this.options,shortenText:f.shortenText,shapes:b(e.builders).omit("svg").keys().value()})),this.redraw();var j=this,k=function(){j.editor_$.off("keyup"),j.editor_$.find("input, textarea, select").off("change keyup paste"),j.editor_$.find(".Rk-Edit-Image-File").off("change"),j.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").off("hover"),j.editor_$.find(".Rk-Edit-Size-Btn").off("click"),j.editor_$.find(".Rk-Edit-Image-Del").off("click"),j.editor_$.find(".Rk-Edit-ColorPicker").find("li").off("hover click"),j.editor_$.find(".Rk-CloseX").off("click"),j.editor_$.find(".Rk-Edit-Goto").off("click"),j.renderer.removeRepresentation(j),paper.view.draw()};if(this.editor_$.find(".Rk-CloseX").click(k),this.editor_$.find(".Rk-Edit-Goto").click(function(){return c.get("uri")?void 0:!1}),this.renderer.isEditable()){var l=b.throttle(function(){b.defer(function(){if(j.renderer.isEditable()){var a={title:j.editor_$.find(".Rk-Edit-Title").val()};if(j.options.show_node_editor_uri&&(a.uri=j.editor_$.find(".Rk-Edit-URI").val(),j.editor_$.find(".Rk-Edit-Goto").attr("href",a.uri||"#")),j.options.show_node_editor_image&&(a.image=j.editor_$.find(".Rk-Edit-Image").val(),j.editor_$.find(".Rk-Edit-ImgPreview").attr("src",a.image||h)),j.options.show_node_editor_description&&(a.description=j.editor_$.find(".Rk-Edit-Description").val()),j.options.show_node_editor_style){var d=j.editor_$.find(".Rk-Edit-Dash").is(":checked");a.style=b.assign(c.has("style")&&b.clone(c.get("style"))||{},{dash:d})}j.options.change_shapes&&c.get("shape")!==j.editor_$.find(".Rk-Edit-Shape").val()&&(a.shape=j.editor_$.find(".Rk-Edit-Shape").val()),c.set(a),j.redraw()}else k()})},500);this.editor_$.on("keyup",function(a){27===a.keyCode&&k()}),this.editor_$.find("input, textarea, select").on("change keyup paste",l),j.options.allow_image_upload&&this.editor_$.find(".Rk-Edit-Image-File").change(function(){if(this.files.length){var a=this.files[0],b=new FileReader;if("image"!==a.type.substr(0,5))return void alert(j.renkan.translate("This file is not an image"));if(a.size>1024*j.options.uploaded_image_max_kb)return void alert(j.renkan.translate("Image size must be under ")+j.options.uploaded_image_max_kb+j.renkan.translate("KB"));b.onload=function(a){j.editor_$.find(".Rk-Edit-Image").val(a.target.result),l()},b.readAsDataURL(a)}}),this.editor_$.find(".Rk-Edit-Title")[0].focus();var m=j.editor_$.find(".Rk-Edit-ColorPicker");this.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").hover(function(a){a.preventDefault(),m.show()},function(a){a.preventDefault(),m.hide()}),m.find("li").hover(function(b){b.preventDefault(),j.editor_$.find(".Rk-Edit-Color").css("background",a(this).attr("data-color"))},function(a){a.preventDefault(),j.editor_$.find(".Rk-Edit-Color").css("background",c.has("style")&&c.get("style").color||(c.get("created_by")||f._USER_PLACEHOLDER(j.renkan)).get("color"))}).click(function(d){d.preventDefault(),j.renderer.isEditable()?(c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{color:a(this).attr("data-color")})),m.hide(),paper.view.draw()):k()});var n=function(a){if(j.renderer.isEditable()){var b=a+(c.get("size")||0);j.editor_$.find("#Rk-Edit-Size-Value").text((b>0?"+":"")+b),c.set("size",b),paper.view.draw()}else k()};this.editor_$.find("#Rk-Edit-Size-Down").click(function(){return n(-1),!1}),this.editor_$.find("#Rk-Edit-Size-Up").click(function(){return n(1),!1});var o=function(a){if(j.renderer.isEditable()){var d=c.has("style")&&c.get("style").thickness||1,e=a+d;1>e?e=1:e>j.options.node_stroke_witdh_scale&&(e=j.options.node_stroke_witdh_scale),e!==d&&(j.editor_$.find("#Rk-Edit-Thickness-Value").text(e),c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{thickness:e})),paper.view.draw())}else k()};this.editor_$.find("#Rk-Edit-Thickness-Down").click(function(){return o(-1),!1}),this.editor_$.find("#Rk-Edit-Thickness-Up").click(function(){return o(1),!1}),this.editor_$.find(".Rk-Edit-Image-Del").click(function(){return j.editor_$.find(".Rk-Edit-Image").val(""),l(),!1})}else if("object"==typeof this.source_representation.highlighted){var p=this.source_representation.highlighted.replace(b(c.get("title")).escape(),'$1');this.editor_$.find(".Rk-Display-Title"+(c.get("uri")?" a":"")).html(p),this.options.show_node_tooltip_description&&this.editor_$.find(".Rk-Display-Description").html(this.source_representation.highlighted.replace(b(c.get("description")).escape(),'$1'))}this.editor_$.find("img").load(function(){j.redraw()})},redraw:function(){if(this.options.popup_editor){var a=this.source_representation.paper_coords;f.drawEditBox(this.options,a,this.editor_block,.75*this.source_representation.circle_radius,this.editor_$)}this.editor_$.show(),paper.view.draw()}}).value(),g}),define("renderer/edgeeditor",["jquery","underscore","requtils","renderer/baseeditor"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){d.prototype._init.apply(this),this.template=this.options.templates["templates/edgeeditor.html"],this.readOnlyTemplate=this.options.templates["templates/edgeeditor_readonly.html"]},draw:function(){var c=this.source_representation.model,d=c.get("from"),f=c.get("to"),g=c.get("created_by")||e._USER_PLACEHOLDER(this.renkan),h=this.renderer.isEditable()?this.template:this.readOnlyTemplate;this.editor_$.html(h({edge:{has_creator:!!c.get("created_by"),title:c.get("title"),uri:c.get("uri"),short_uri:e.shortenText((c.get("uri")||"").replace(/^(https?:\/\/)?(www\.)?/,"").replace(/\/$/,""),40),description:c.get("description"),color:c.has("style")&&c.get("style").color||g.get("color"),dash:c.has("style")&&c.get("style").dash?"checked":"",arrow:c.has("style")&&c.get("style").arrow||!c.has("style")||"undefined"==typeof c.get("style").arrow?"checked":"",thickness:c.has("style")&&c.get("style").thickness||1,from_title:d.get("title"),to_title:f.get("title"),from_color:d.has("style")&&d.get("style").color||(d.get("created_by")||e._USER_PLACEHOLDER(this.renkan)).get("color"),to_color:f.has("style")&&f.get("style").color||(f.get("created_by")||e._USER_PLACEHOLDER(this.renkan)).get("color"),created_by_color:g.get("color"),created_by_title:g.get("title")},renkan:this.renkan,shortenText:e.shortenText,options:this.options})),this.redraw();var i=this,j=function(){i.renderer.removeRepresentation(i),i.editor_$.find(".Rk-Edit-Size-Btn").off("click"),paper.view.draw()};if(this.editor_$.find(".Rk-CloseX").click(j),this.editor_$.find(".Rk-Edit-Goto").click(function(){return c.get("uri")?void 0:!1}),this.renderer.isEditable()){var k=b.throttle(function(){b.defer(function(){if(i.renderer.isEditable()){var a={title:i.editor_$.find(".Rk-Edit-Title").val()};if(i.options.show_edge_editor_uri&&(a.uri=i.editor_$.find(".Rk-Edit-URI").val()),i.options.show_node_editor_style){var d=i.editor_$.find(".Rk-Edit-Dash").is(":checked");a.style=b.assign(c.has("style")&&b.clone(c.get("style"))||{},{dash:d}); -var e=i.editor_$.find(".Rk-Edit-Arrow").is(":checked");a.style=b.assign(c.has("style")&&b.clone(c.get("style"))||{},{arrow:e})}i.editor_$.find(".Rk-Edit-Goto").attr("href",a.uri||"#"),c.set(a),paper.view.draw()}else j()})},500);this.editor_$.on("keyup",function(a){27===a.keyCode&&j()}),this.editor_$.find("input").on("keyup change paste",k),this.editor_$.find(".Rk-Edit-Vocabulary").change(function(){var b=a(this),c=b.val();c&&(i.editor_$.find(".Rk-Edit-Title").val(b.find(":selected").text()),i.editor_$.find(".Rk-Edit-URI").val(c),k())}),this.editor_$.find(".Rk-Edit-Direction").click(function(){i.renderer.isEditable()?(c.set({from:c.get("to"),to:c.get("from")}),i.draw()):j()});var l=i.editor_$.find(".Rk-Edit-ColorPicker");this.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").hover(function(a){a.preventDefault(),l.show()},function(a){a.preventDefault(),l.hide()}),l.find("li").hover(function(b){b.preventDefault(),i.editor_$.find(".Rk-Edit-Color").css("background",a(this).attr("data-color"))},function(a){a.preventDefault(),i.editor_$.find(".Rk-Edit-Color").css("background",c.has("style")&&c.get("style").color||(c.get("created_by")||e._USER_PLACEHOLDER(i.renkan)).get("color"))}).click(function(d){d.preventDefault(),i.renderer.isEditable()?(c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{color:a(this).attr("data-color")})),l.hide(),paper.view.draw()):j()});var m=function(a){if(i.renderer.isEditable()){var d=c.has("style")&&c.get("style").thickness||1,e=a+d;1>e?e=1:e>i.options.node_stroke_witdh_scale&&(e=i.options.node_stroke_witdh_scale),e!==d&&(i.editor_$.find("#Rk-Edit-Thickness-Value").text(e),c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{thickness:e})),paper.view.draw())}else j()};this.editor_$.find("#Rk-Edit-Thickness-Down").click(function(){return m(-1),!1}),this.editor_$.find("#Rk-Edit-Thickness-Up").click(function(){return m(1),!1})}},redraw:function(){if(this.options.popup_editor){var a=this.source_representation.paper_coords;e.drawEditBox(this.options,a,this.editor_block,5,this.editor_$)}this.editor_$.show(),paper.view.draw()}}).value(),f}),define("renderer/nodebutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({setSectorSize:function(){var a=this.source_representation.circle_radius;a!==this.lastSectorInner&&(this.sector&&this.sector.destroy(),this.sector=this.renderer.drawSector(this,1+a,e._NODE_BUTTON_WIDTH+a,this.startAngle,this.endAngle,1,this.imageName,this.renkan.translate(this.text)),this.lastSectorInner=a)},unselect:function(){d.prototype.unselect.apply(this,Array.prototype.slice.call(arguments,1)),this.source_representation&&this.source_representation.buttons_timeout&&(clearTimeout(this.source_representation.buttons_timeout),this.source_representation.hideButtons())},select:function(){this.source_representation&&this.source_representation.buttons_timeout&&clearTimeout(this.source_representation.buttons_timeout),this.sector.select()}}).value(),f}),define("renderer/nodeeditbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-edit-button",this.lastSectorInner=0,this.startAngle=-125,this.endAngle=-55,this.imageName="edit",this.text="Edit"},mouseup:function(){this.renderer.is_dragging||this.source_representation.openEditor()}}).value(),f}),define("renderer/noderemovebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-remove-button",this.lastSectorInner=0,this.startAngle=-10,this.endAngle=45,this.imageName="remove",this.text="Remove"},mouseup:function(){if(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable())if(this.options.element_delete_delay){var a=e.getUID("delete");this.renderer.delete_list.push({id:a,time:(new Date).valueOf()+this.options.element_delete_delay}),this.source_representation.model.set("delete_scheduled",a)}else confirm(this.renkan.translate("Do you really wish to remove node ")+'"'+this.source_representation.model.get("title")+'"?')&&this.project.removeNode(this.source_representation.model)}}).value(),f}),define("renderer/nodehidebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-hide-button",this.lastSectorInner=0,this.startAngle=45,this.endAngle=90,this.imageName="hide",this.text="Hide"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable()&&this.renderer.addHiddenNode(this.source_representation.model)}}).value(),f}),define("renderer/nodeshowbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-show-button",this.lastSectorInner=0,this.startAngle=90,this.endAngle=135,this.imageName="show",this.text="Show"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable()&&this.source_representation.showNeighbors(!1)}}).value(),f}),define("renderer/noderevertbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-revert-button",this.lastSectorInner=0,this.startAngle=-135,this.endAngle=135,this.imageName="revert",this.text="Cancel deletion"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.isEditable()&&this.source_representation.model.unset("delete_scheduled")}}).value(),f}),define("renderer/nodelinkbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-link-button",this.lastSectorInner=0,this.startAngle=135,this.endAngle=190,this.imageName="link",this.text="Link to another node"},mousedown:function(a){if(this.renderer.isEditable()){var b=this.renderer.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]);this.renderer.click_target=null,this.renderer.removeRepresentationsOfType("editor"),this.renderer.addTempEdge(this.source_representation,c)}}}).value(),f}),define("renderer/nodeenlargebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-enlarge-button",this.lastSectorInner=0,this.startAngle=-55,this.endAngle=-10,this.imageName="enlarge",this.text="Enlarge"},mouseup:function(){var a=1+(this.source_representation.model.get("size")||0);this.source_representation.model.set("size",a),this.source_representation.select(),this.select(),paper.view.draw()}}).value(),f}),define("renderer/nodeshrinkbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-shrink-button",this.lastSectorInner=0,this.startAngle=-170,this.endAngle=-125,this.imageName="shrink",this.text="Shrink"},mouseup:function(){var a=-1+(this.source_representation.model.get("size")||0);this.source_representation.model.set("size",a),this.source_representation.select(),this.select(),paper.view.draw()}}).value(),f}),define("renderer/edgeeditbutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-edit-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-270,-90,1,"edit",this.renkan.translate("Edit"))},mouseup:function(){this.renderer.is_dragging||this.source_representation.openEditor()}}).value(),f}),define("renderer/edgeremovebutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-remove-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-90,90,1,"remove",this.renkan.translate("Remove"))},mouseup:function(){if(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable())if(this.options.element_delete_delay){var a=e.getUID("delete");this.renderer.delete_list.push({id:a,time:(new Date).valueOf()+this.options.element_delete_delay}),this.source_representation.model.set("delete_scheduled",a)}else confirm(this.renkan.translate("Do you really wish to remove edge ")+'"'+this.source_representation.model.get("title")+'"?')&&this.project.removeEdge(this.source_representation.model)}}).value(),f}),define("renderer/edgerevertbutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-revert-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-135,135,1,"revert",this.renkan.translate("Cancel deletion"))},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.isEditable()&&this.source_representation.model.unset("delete_scheduled")}}).value(),f}),define("renderer/miniframe",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({paperShift:function(a){this.renderer.offset=this.renderer.offset.subtract(a.divide(this.renderer.minimap.scale).multiply(this.renderer.scale)),this.renderer.redraw()},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1}}).value(),f}),define("renderer/scene",["jquery","underscore","filesaver","requtils","renderer/miniframe"],function(a,b,c,d,e){var f=d.getUtils(),g=function(c){this.renkan=c,this.$=a(".Rk-Render"),this.representations=[],this.$.html(c.options.templates["templates/scene.html"](c)),this.onStatusChange(),this.canvas_$=this.$.find(".Rk-Canvas"),this.labels_$=this.$.find(".Rk-Labels"),this.editor_$=c.options.popup_editor?this.$.find(".Rk-Editor"):a("#"+c.options.editor_panel),this.notif_$=this.$.find(".Rk-Notifications"),paper.setup(this.canvas_$[0]),this.scale=1,this.initialScale=1,this.offset=paper.view.center,this.totalScroll=0,this.hiddenNodes=[],this.mouse_down=!1,this.click_target=null,this.selected_target=null,this.edge_layer=new paper.Layer,this.node_layer=new paper.Layer,this.buttons_layer=new paper.Layer,this.delete_list=[],this.redrawActive=!0,c.options.show_minimap&&(this.minimap={background_layer:new paper.Layer,edge_layer:new paper.Layer,node_layer:new paper.Layer,node_group:new paper.Group,size:new paper.Size(c.options.minimap_width,c.options.minimap_height)},this.minimap.background_layer.activate(),this.minimap.topleft=paper.view.bounds.bottomRight.subtract(this.minimap.size),this.minimap.rectangle=new paper.Path.Rectangle(this.minimap.topleft.subtract([2,2]),this.minimap.size.add([4,4])),this.minimap.rectangle.fillColor=c.options.minimap_background_color,this.minimap.rectangle.strokeColor=c.options.minimap_border_color,this.minimap.rectangle.strokeWidth=4,this.minimap.offset=new paper.Point(this.minimap.size.divide(2)),this.minimap.scale=.1,this.minimap.node_layer.activate(),this.minimap.cliprectangle=new paper.Path.Rectangle(this.minimap.topleft,this.minimap.size),this.minimap.node_group.addChild(this.minimap.cliprectangle),this.minimap.node_group.clipped=!0,this.minimap.miniframe=new paper.Path.Rectangle(this.minimap.topleft,this.minimap.size),this.minimap.node_group.addChild(this.minimap.miniframe),this.minimap.miniframe.fillColor="#c0c0ff",this.minimap.miniframe.opacity=.3,this.minimap.miniframe.strokeColor="#000080",this.minimap.miniframe.strokeWidth=2,this.minimap.miniframe.__representation=new e(this,null)),this.throttledPaperDraw=b(function(){paper.view.draw()}).throttle(100).value(),this.bundles=[],this.click_mode=!1;var d=this,g=!0,h=1,i=!1,j=0,k=0;this.image_cache={},this.icon_cache={},["edit","remove","hide","show","link","enlarge","shrink","revert"].forEach(function(a){var b=new Image;b.src=c.options.static_url+"img/"+a+".png",d.icon_cache[a]=b});var l=b.throttle(function(a,b){d.onMouseMove(a,b)},f._MOUSEMOVE_RATE);this.canvas_$.on({mousedown:function(a){a.preventDefault(),d.onMouseDown(a,!1)},mousemove:function(a){a.preventDefault(),l(a,!1)},mouseup:function(a){a.preventDefault(),d.onMouseUp(a,!1)},mousewheel:function(a,b){c.options.zoom_on_scroll&&(a.preventDefault(),g&&d.onScroll(a,b))},touchstart:function(a){a.preventDefault();var b=a.originalEvent.touches[0];c.options.allow_double_click&&new Date-_lastTap0&&this.renkan.options.save_view&&this.$.find(".Rk-ZoomSetSaved").show(),this.$.find(".Rk-CurrentUser").mouseenter(function(){d.$.find(".Rk-UserList").slideDown()}),this.$.find(".Rk-Users").mouseleave(function(){d.$.find(".Rk-UserList").slideUp()}),m(".Rk-FullScreen-Button","fullScreen"),m(".Rk-AddNode-Button","addNodeBtn"),m(".Rk-AddEdge-Button","addEdgeBtn"),m(".Rk-Save-Button","save"),m(".Rk-Open-Button","open"),m(".Rk-Export-Button","exportProject"),this.$.find(".Rk-Bookmarklet-Button").attr("href","javascript:"+f._BOOKMARKLET_CODE(c)).click(function(){return d.notif_$.text(c.translate("Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.")).fadeIn().delay(5e3).fadeOut(),!1}),this.$.find(".Rk-TopBar-Button").mouseover(function(){a(this).find(".Rk-TopBar-Tooltip").show()}).mouseout(function(){a(this).find(".Rk-TopBar-Tooltip").hide()}),m(".Rk-Fold-Bins","foldBins"),paper.view.onResize=function(a){var b,c=a.width,e=a.height;d.minimap&&(d.minimap.topleft=paper.view.bounds.bottomRight.subtract(d.minimap.size),d.minimap.rectangle.fitBounds(d.minimap.topleft.subtract([2,2]),d.minimap.size.add([4,4])),d.minimap.cliprectangle.fitBounds(d.minimap.topleft,d.minimap.size));var f=e/(e-a.delta.height),g=c/(c-a.delta.width);b=c>e?f:g,d.resizeZoom(g,f,b),d.redraw()};var n=b.throttle(function(){d.redraw()},50);this.addRepresentations("Node",this.renkan.project.get("nodes")),this.addRepresentations("Edge",this.renkan.project.get("edges")),this.renkan.project.on("change:title",function(){d.$.find(".Rk-PadTitle").val(c.project.get("title"))}),this.$.find(".Rk-PadTitle").on("keyup input paste",function(){c.project.set({title:a(this).val()})});var o=b.throttle(function(){d.redrawUsers()},100);if(o(),this.renkan.project.on("change:saveStatus",function(){switch(d.renkan.project.get("saveStatus")){case 0:d.$.find(".Rk-Save-Button").removeClass("to-save"),d.$.find(".Rk-Save-Button").removeClass("saving"),d.$.find(".Rk-Save-Button").addClass("saved");break;case 1:d.$.find(".Rk-Save-Button").removeClass("saved"),d.$.find(".Rk-Save-Button").removeClass("saving"),d.$.find(".Rk-Save-Button").addClass("to-save");break;case 2:d.$.find(".Rk-Save-Button").removeClass("saved"),d.$.find(".Rk-Save-Button").removeClass("to-save"),d.$.find(".Rk-Save-Button").addClass("saving")}}),this.renkan.project.on("change:loadingStatus",function(){if(d.renkan.project.get("loadingStatus")){d.$.find(".loader").addClass("run"),setTimeout(function(){d.$.find(".loader").hide(250)},3e3)}}),this.renkan.project.on("add:users remove:users",o),this.renkan.project.on("add:views remove:views",function(){d.renkan.project.get("views").length>0?d.$.find(".Rk-ZoomSetSaved").show():d.$.find(".Rk-ZoomSetSaved").hide()}),this.renkan.project.on("add:nodes",function(a){d.addRepresentation("Node",a),d.renkan.project.get("loadingStatus")||n()}),this.renkan.project.on("add:edges",function(a){d.addRepresentation("Edge",a),d.renkan.project.get("loadingStatus")||n()}),this.renkan.project.on("change:title",function(a,b){var c=d.$.find(".Rk-PadTitle");c.is("input")?c.val()!==b&&c.val(b):c.text(b)}),c.options.size_bug_fix){var p="number"==typeof c.options.size_bug_fix?c.options.size_bug_fix:500;window.setTimeout(function(){d.fixSize()},p)}if(c.options.force_resize&&a(window).resize(function(){d.autoScale()}),c.options.show_user_list&&c.options.user_color_editable){var q=this.$.find(".Rk-Users .Rk-Edit-ColorPicker-Wrapper"),r=this.$.find(".Rk-Users .Rk-Edit-ColorPicker");q.hover(function(a){d.isEditable()&&(a.preventDefault(),r.show())},function(a){a.preventDefault(),r.hide()}),r.find("li").mouseenter(function(b){d.isEditable()&&(b.preventDefault(),d.$.find(".Rk-CurrentUser-Color").css("background",a(this).attr("data-color")))})}if(c.options.show_search_field){var s="";this.$.find(".Rk-GraphSearch-Field").on("keyup change paste input",function(){var b=a(this),e=b.val();if(e!==s)if(s=e,e.length<2)c.project.get("nodes").each(function(a){d.getRepresentationByModel(a).unhighlight()});else{var g=f.regexpFromTextOrArray(e);c.project.get("nodes").each(function(a){g.test(a.get("title"))||g.test(a.get("description"))?d.getRepresentationByModel(a).highlight(g):d.getRepresentationByModel(a).unhighlight()})}})}this.redraw(),window.setInterval(function(){var a=(new Date).valueOf();d.delete_list.forEach(function(b){if(a>=b.time){var d=c.project.get("nodes").findWhere({delete_scheduled:b.id});d&&project.removeNode(d),d=c.project.get("edges").findWhere({delete_scheduled:b.id}),d&&project.removeEdge(d)}}),d.delete_list=d.delete_list.filter(function(a){return c.project.get("nodes").findWhere({delete_scheduled:a.id})||c.project.get("edges").findWhere({delete_scheduled:a.id})})},500),this.minimap&&window.setInterval(function(){d.rescaleMinimap()},2e3)};return b(g.prototype).extend({fixSize:function(){if(this.renkan.options.default_view&&this.renkan.project.get("views").length>0){var a=this.renkan.project.get("views").last();this.setScale(a.get("zoom_level"),new paper.Point(a.get("offset")))}else this.autoScale()},drawSector:function(b,c,d,e,f,g,h,i){var j=this.renkan.options,k=e*Math.PI/180,l=f*Math.PI/180,m=this.icon_cache[h],n=-Math.sin(k),o=Math.cos(k),p=Math.cos(k)*c+g*n,q=Math.sin(k)*c+g*o,r=Math.cos(k)*d+g*n,s=Math.sin(k)*d+g*o,t=-Math.sin(l),u=Math.cos(l),v=Math.cos(l)*c-g*t,w=Math.sin(l)*c-g*u,x=Math.cos(l)*d-g*t,y=Math.sin(l)*d-g*u,z=(c+d)/2,A=(k+l)/2,B=Math.cos(A)*z,C=Math.sin(A)*z,D=Math.cos(A)*c,E=Math.cos(A)*d,F=Math.sin(A)*c,G=Math.sin(A)*d,H=Math.cos(A)*(d+3),I=Math.sin(A)*(d+j.buttons_label_font_size)+j.buttons_label_font_size/2;this.buttons_layer.activate();var J=new paper.Path;J.add([p,q]),J.arcTo([D,F],[v,w]),J.lineTo([x,y]),J.arcTo([E,G],[r,s]),J.fillColor=j.buttons_background,J.opacity=.5,J.closed=!0,J.__representation=b;var K=new paper.PointText(H,I);K.characterStyle={fontSize:j.buttons_label_font_size,fillColor:j.buttons_label_color},K.paragraphStyle.justification=H>2?"left":-2>H?"right":"center",K.visible=!1;var L=!1,M=new paper.Point(-200,-200),N=new paper.Group([J,K]),O=N.position,P=new paper.Point([B,C]),Q=new paper.Point(0,0);K.content=i,N.pivot=N.bounds.center,N.visible=!1,N.position=M;var R={show:function(){L=!0,N.position=Q.add(O),N.visible=!0},moveTo:function(a){Q=a,L&&(N.position=a.add(O))},hide:function(){L=!1,N.visible=!1,N.position=M},select:function(){J.opacity=.8,K.visible=!0},unselect:function(){J.opacity=.5,K.visible=!1},destroy:function(){N.remove()}},S=function(){var a=new paper.Raster(m);a.position=P.add(N.position).subtract(O),a.locked=!0,N.addChild(a)};return m.width?S():a(m).on("load",S),R},addToBundles:function(a){var c=b(this.bundles).find(function(b){return b.from===a.from_representation&&b.to===a.to_representation||b.from===a.to_representation&&b.to===a.from_representation});return"undefined"!=typeof c?c.edges.push(a):(c={from:a.from_representation,to:a.to_representation,edges:[a],getPosition:function(a){var c=a.from_representation===this.from?1:-1;return c*(b(this.edges).indexOf(a)-(this.edges.length-1)/2)}},this.bundles.push(c)),c},isEditable:function(){return this.renkan.options.editor_mode&&!this.renkan.read_only},onStatusChange:function(){var a=this.$.find(".Rk-Save-Button"),b=a.find(".Rk-TopBar-Tooltip-Contents");this.renkan.read_only?(a.removeClass("disabled Rk-Save-Online").addClass("Rk-Save-ReadOnly"),b.text(this.renkan.translate("Connection lost"))):this.renkan.options.manual_save?(a.removeClass("Rk-Save-ReadOnly Rk-Save-Online"),b.text(this.renkan.translate("Save Project"))):(a.removeClass("disabled Rk-Save-ReadOnly").addClass("Rk-Save-Online"),b.text(this.renkan.translate("Auto-save enabled"))),this.redrawUsers()},setScale:function(a,b){a/this.initialScale>f._MIN_SCALE&&a/this.initialScale1){var c=b.map(function(a){return a.get("position").x}),d=b.map(function(a){return a.get("position").y}),e=Math.min.apply(Math,c),f=Math.min.apply(Math,d),g=Math.max.apply(Math,c),h=Math.max.apply(Math,d),i=Math.min((paper.view.size.width-2*this.renkan.options.autoscale_padding)/(g-e),(paper.view.size.height-2*this.renkan.options.autoscale_padding)/(h-f));this.initialScale=i,"undefined"!=typeof a&&parseFloat(a.zoom_level)>0&&parseFloat(a.offset.x)>0&&parseFloat(a.offset.y)>0?this.setScale(parseFloat(a.zoom_level),new paper.Point(parseFloat(a.offset.x),parseFloat(a.offset.y))):this.setScale(i,paper.view.center.subtract(new paper.Point([(g+e)/2,(h+f)/2]).multiply(i)))}1===b.length&&this.setScale(1,paper.view.center.subtract(new paper.Point([b.at(0).get("position").x,b.at(0).get("position").y])))},redrawMiniframe:function(){var a=this.toMinimapCoords(this.toModelCoords(new paper.Point([0,0]))),b=this.toMinimapCoords(this.toModelCoords(paper.view.bounds.bottomRight));this.minimap.miniframe.fitBounds(a,b)},rescaleMinimap:function(){var a=this.renkan.project.get("nodes");if(a.length>1){var b=a.map(function(a){return a.get("position").x}),c=a.map(function(a){return a.get("position").y}),d=Math.min.apply(Math,b),e=Math.min.apply(Math,c),f=Math.max.apply(Math,b),g=Math.max.apply(Math,c),h=Math.min(.8*this.scale*this.renkan.options.minimap_width/paper.view.bounds.width,.8*this.scale*this.renkan.options.minimap_height/paper.view.bounds.height,(this.renkan.options.minimap_width-2*this.renkan.options.minimap_padding)/(f-d),(this.renkan.options.minimap_height-2*this.renkan.options.minimap_padding)/(g-e));this.minimap.offset=this.minimap.size.divide(2).subtract(new paper.Point([(f+d)/2,(g+e)/2]).multiply(h)),this.minimap.scale=h}1===a.length&&(this.minimap.scale=.1,this.minimap.offset=this.minimap.size.divide(2).subtract(new paper.Point([a.at(0).get("position").x,a.at(0).get("position").y]).multiply(this.minimap.scale))),this.redraw()},toPaperCoords:function(a){return a.multiply(this.scale).add(this.offset)},toMinimapCoords:function(a){return a.multiply(this.minimap.scale).add(this.minimap.offset).add(this.minimap.topleft)},toModelCoords:function(a){return a.subtract(this.offset).divide(this.scale)},addRepresentation:function(a,b){var c=d.getRenderer()[a],e=new c(this,b);return this.representations.push(e),e},addRepresentations:function(a,b){var c=this;b.forEach(function(b){c.addRepresentation(a,b)})},userTemplate:b.template('
        • <%=name%>
        • '),redrawUsers:function(){if(this.renkan.options.show_user_list){var b=[].concat((this.renkan.project.current_user_list||{}).models||[],(this.renkan.project.get("users")||{}).models||[]),c="",d=this.$.find(".Rk-Users"),e=d.find(".Rk-CurrentUser-Name"),f=d.find(".Rk-Edit-ColorPicker li"),g=d.find(".Rk-CurrentUser-Color"),h=this;e.off("click").text(this.renkan.translate("")),f.off("mouseleave click"),b.forEach(function(b){b.get("_id")===h.renkan.current_user?(e.text(b.get("title")),g.css("background",b.get("color")),h.isEditable()&&(h.renkan.options.user_name_editable&&e.click(function(){var c=a(this),d=a("").val(b.get("title")).blur(function(){b.set("title",a(this).val()),h.redrawUsers(),h.redraw()});c.empty().html(d),d.select()}),h.renkan.options.user_color_editable&&f.click(function(c){c.preventDefault(),h.isEditable()&&b.set("color",a(this).attr("data-color")),a(this).parent().hide()}).mouseleave(function(){g.css("background",b.get("color"))}))):c+=h.userTemplate({name:b.get("title"),background:b.get("color")})}),d.find(".Rk-UserList").html(c)}},removeRepresentation:function(a){a.destroy(),this.representations=b.reject(this.representations,function(b){return b===a})},getRepresentationByModel:function(a){return a?b.find(this.representations,function(b){return b.model===a}):void 0},removeRepresentationsOfType:function(a){var c=b.filter(this.representations,function(b){return b.type===a}),d=this;b.each(c,function(a){d.removeRepresentation(a)})},highlightModel:function(a){var b=this.getRepresentationByModel(a);b&&b.highlight()},unhighlightAll:function(){b.each(this.representations,function(a){a.unhighlight()})},unselectAll:function(){b.each(this.representations,function(a){a.unselect()})},redraw:function(){this.redrawActive&&(b.each(this.representations,function(a){a.redraw({dontRedrawEdges:!0})}),this.minimap&&this.redrawMiniframe(),paper.view.draw())},addTempEdge:function(a,b){var c=this.addRepresentation("TempEdge",null);c.end_pos=b,c.from_representation=a,c.redraw(),this.click_target=c},addHiddenNode:function(a){this.hideNode(a),this.hiddenNodes.push(a.id)},hideNode:function(a){var b=this;"undefined"!=typeof b.getRepresentationByModel(a)&&b.getRepresentationByModel(a).hide()},hideNodes:function(){var a=this;this.hiddenNodes.forEach(function(b,c){var d=a.renkan.project.get("nodes").get(b);return"undefined"!=typeof d?a.hideNode(a.renkan.project.get("nodes").get(b)):void a.hiddenNodes.splice(c,1)}),paper.view.draw()},showNodes:function(a){var b=this;this.hiddenNodes.forEach(function(c){b.getRepresentationByModel(b.renkan.project.get("nodes").get(c)).show(a)}),a||(this.hiddenNodes=[]),paper.view.draw()},findTarget:function(a){if(a&&"undefined"!=typeof a.item.__representation){var b=a.item.__representation;this.selected_target!==a.item.__representation&&(this.selected_target&&this.selected_target.unselect(b),b.select(this.selected_target),this.selected_target=b)}else this.selected_target&&this.selected_target.unselect(),this.selected_target=null},paperShift:function(a){this.offset=this.offset.add(a),this.redraw()},onMouseMove:function(a){var b=this.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]),d=c.subtract(this.last_point);this.last_point=c,!this.is_dragging&&this.mouse_down&&d.length>f._MIN_DRAG_DISTANCE&&(this.is_dragging=!0);var e=paper.project.hitTest(c);this.is_dragging?this.click_target&&"function"==typeof this.click_target.paperShift?this.click_target.paperShift(d):this.paperShift(d):this.findTarget(e),paper.view.draw()},onMouseDown:function(b,c){var d=this.canvas_$.offset(),e=new paper.Point([b.pageX-d.left,b.pageY-d.top]);if(this.last_point=e,this.mouse_down=!0,!this.click_target||"Temp-edge"!==this.click_target.type){this.removeRepresentationsOfType("editor"),this.is_dragging=!1;var g=paper.project.hitTest(e);if(g&&"undefined"!=typeof g.item.__representation)this.click_target=g.item.__representation,this.click_target.mousedown(b,c);else if(this.click_target=null,this.isEditable()&&this.click_mode===f._CLICKMODE_ADDNODE){var h=this.toModelCoords(e),i={id:f.getUID("node"),created_by:this.renkan.current_user,position:{x:h.x,y:h.y}};_node=this.renkan.project.addNode(i),this.getRepresentationByModel(_node).openEditor()}}this.click_mode&&(this.isEditable()&&this.click_mode===f._CLICKMODE_STARTEDGE&&this.click_target&&"Node"===this.click_target.type?(this.removeRepresentationsOfType("editor"),this.addTempEdge(this.click_target,e),this.click_mode=f._CLICKMODE_ENDEDGE,this.notif_$.fadeOut(function(){a(this).html(this.renkan.translate("Click on a second node to complete the edge")).fadeIn()})):(this.notif_$.hide(),this.click_mode=!1)),paper.view.draw()},onMouseUp:function(a,b){if(this.mouse_down=!1,this.click_target){var c=this.canvas_$.offset();this.click_target.mouseup({point:new paper.Point([a.pageX-c.left,a.pageY-c.top])},b)}else this.click_target=null,this.is_dragging=!1,b&&this.unselectAll();paper.view.draw()},onScroll:function(a,b){if(this.totalScroll+=b,Math.abs(this.totalScroll)>=1){var c=this.canvas_$.offset(),d=new paper.Point([a.pageX-c.left,a.pageY-c.top]).subtract(this.offset).multiply(Math.SQRT2-1);this.totalScroll>0?this.setScale(this.scale*Math.SQRT2,this.offset.subtract(d)):this.setScale(this.scale*Math.SQRT1_2,this.offset.add(d.divide(Math.SQRT2))),this.totalScroll=0}},onDoubleClick:function(a){var b=this.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]),d=paper.project.hitTest(c);if(!this.isEditable())return void(d&&"undefined"!=typeof d.item.__representation&&d.item.__representation.model.get("uri")&&window.open(d.item.__representation.model.get("uri"),"_blank"));if(this.isEditable()&&(!d||"undefined"==typeof d.item.__representation)){var e=this.toModelCoords(c),g={id:f.getUID("node"),created_by:this.renkan.current_user,position:{x:e.x,y:e.y}},h=this.renkan.project.addNode(g);this.getRepresentationByModel(h).openEditor()}paper.view.draw()},defaultDropHandler:function(b){var c={},d="";switch(b["text/x-iri-specific-site"]){case"twitter":d=a("
          ").html(b["text/x-iri-selected-html"]); -var e=d.find(".tweet");c.title=this.renkan.translate("Tweet by ")+e.attr("data-name"),c.uri="http://twitter.com/"+e.attr("data-screen-name")+"/status/"+e.attr("data-tweet-id"),c.image=e.find(".avatar").attr("src"),c.description=e.find(".js-tweet-text:first").text();break;case"google":d=a("
          ").html(b["text/x-iri-selected-html"]),c.title=d.find("h3:first").text().trim(),c.uri=d.find("h3 a").attr("href"),c.description=d.find(".st:first").text().trim();break;default:b["text/x-iri-source-uri"]&&(c.uri=b["text/x-iri-source-uri"])}if((b["text/plain"]||b["text/x-iri-selected-text"])&&(c.description=(b["text/plain"]||b["text/x-iri-selected-text"]).replace(/[\s\n]+/gm," ").trim()),b["text/html"]||b["text/x-iri-selected-html"]){d=a("
          ").html(b["text/html"]||b["text/x-iri-selected-html"]);var f=d.find("image");f.length&&(c.image=f.attr("xlink:href"));var g=d.find("path");g.length&&(c.clipPath=g.attr("d"));var h=d.find("img");h.length&&(c.image=h[0].src);var i=d.find("a");i.length&&(c.uri=i[0].href),c.title=d.find("[title]").attr("title")||c.title,c.description=d.text().replace(/[\s\n]+/gm," ").trim()}b["text/uri-list"]&&(c.uri=b["text/uri-list"]),b["text/x-moz-url"]&&!c.title&&(c.title=(b["text/x-moz-url"].split("\n")[1]||"").trim(),c.title===c.uri&&(c.title=!1)),b["text/x-iri-source-title"]&&!c.title&&(c.title=b["text/x-iri-source-title"]),(b["text/html"]||b["text/x-iri-selected-html"])&&(d=a("
          ").html(b["text/html"]||b["text/x-iri-selected-html"]),c.image=d.find("[data-image]").attr("data-image")||c.image,c.uri=d.find("[data-uri]").attr("data-uri")||c.uri,c.title=d.find("[data-title]").attr("data-title")||c.title,c.description=d.find("[data-description]").attr("data-description")||c.description,c.clipPath=d.find("[data-clip-path]").attr("data-clip-path")||c.clipPath),c.title||(c.title=this.renkan.translate("Dragged resource"));for(var j=["title","description","uri","image"],k=0;k0&&(f-=this.renkan.$.find(".Rk-Bins").width()),paper.view.viewSize=new paper.Size([f,g])}else{for(a=0;a

        • ';return __p},this.renkanJST["templates/edgeeditor.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+='

          \n ×'+__e(renkan.translate("Edit Edge"))+"\n

          \n

          \n \n \n

          \n',options.show_edge_editor_uri&&(__p+="\n

          \n \n \n \n

          \n ',options.properties.length&&(__p+="\n

          \n \n \n

          \n")),__p+="\n",options.show_edge_editor_style&&(__p+='\n
          \n ',options.show_edge_editor_style_color&&(__p+='\n
          \n '+__e(renkan.translate("Edge color:"))+'\n
          \n \n \n \n '+(null==(__t=renkan.colorPicker)?"":__t)+'\n '+__e(renkan.translate("Choose color"))+"\n
          \n
          \n "),__p+="\n ",options.show_edge_editor_style_dash&&(__p+='\n
          \n '+__e(renkan.translate("Dash:"))+'\n \n
          \n "),__p+="\n ",options.show_edge_editor_style_thickness&&(__p+='\n
          \n '+__e(renkan.translate("Thickness:"))+'\n -\n '+__e(edge.thickness)+'\n +\n
          \n '),__p+="\n ",options.show_edge_editor_style_arrow&&(__p+='\n
          \n '+__e(renkan.translate("Arrow:"))+'\n \n
          \n "),__p+="\n
          \n"),__p+="\n",options.show_edge_editor_direction&&(__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+='

          \n ×\n ',options.show_edge_tooltip_color&&(__p+='\n \n '),__p+='\n \n ',edge.uri&&(__p+='\n \n '),__p+="\n "+__e(edge.title)+"\n ",edge.uri&&(__p+=" "),__p+="\n \n

          \n",options.show_edge_tooltip_uri&&edge.uri&&(__p+='\n

          \n '+__e(edge.short_uri)+"\n

          \n"),__p+="\n

          "+(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+='
        • \n\n \n

          '+(null==(__t=htitle)?"":__t)+"

          \n

          "+(null==(__t=hdescription)?"":__t)+"

          \n

          Start: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'

          \n
          \n
        • \n';return __p},this.renkanJST["templates/ldtjson-bin/segmenttemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
        • \n\n \n

          '+(null==(__t=htitle)?"":__t)+"

          \n

          "+(null==(__t=hdescription)?"":__t)+"

          \n

          Start: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'

          \n
          \n
        • \n';return __p},this.renkanJST["templates/ldtjson-bin/tagtemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
        • \n\n \n

          '+(null==(__t=htitle)?"":__t)+'

          \n
          \n
        • \n';return __p},this.renkanJST["templates/list-bin.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+='
        • \n'),__p+='\n

          \n ',url&&(__p+='\n \n '),__p+="\n "+(null==(__t=htitle)?"":__t)+"\n ",url&&(__p+=""),__p+="\n

          \n ",description&&(__p+='\n

          '+(null==(__t=hdescription)?"":__t)+"

          \n "),__p+="\n ",image&&(__p+='\n
          \n '),__p+="\n
        • \n";return __p},this.renkanJST["templates/main.html"]=function(obj){obj||(obj={});{var __p="",__e=_.escape;Array.prototype.join}with(obj)options.show_bins&&(__p+='\n
          \n
          \n

          '+__e(translate("Select contents:"))+'

          \n
          \n \n
          \n
          \n
            \n
            \n \n
            \n
            \n \n \n
            \n
              \n
              \n'),__p+=" ",options.show_editor&&(__p+='\n
              \n ×'+__e(renkan.translate("Edit Node"))+"\n\n

              \n \n \n

              \n',options.show_node_editor_uri&&(__p+="\n

              \n \n \n \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

              '+(null==(__t=node.description)?"":__t)+"
              \n ":'\n \n ",__p+="\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 ',options.show_node_editor_style_color&&(__p+='\n
              \n \n '+__e(renkan.translate("Node color:"))+'\n
              \n \n \n \n '+(null==(__t=renkan.colorPicker)?"":__t)+'\n '+__e(renkan.translate("Choose color"))+"\n
              \n
              \n "),__p+="\n ",options.show_node_editor_style_dash&&(__p+='\n
              \n '+__e(renkan.translate("Dash:"))+'\n \n
              \n "),__p+="\n ",options.show_node_editor_style_thickness&&(__p+='\n
              \n '+__e(renkan.translate("Thickness:"))+'\n -\n '+__e(node.thickness)+'\n +\n
              \n '),__p+="\n
              \n"),__p+=" ",options.show_node_editor_image&&(__p+='\n
              \n
              \n \n ',node.clip_path&&(__p+='\n \n \n \n '),__p+="\n
              \n
              \n

              \n \n

              \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+='

              \n ×\n ',options.show_node_tooltip_color&&(__p+='\n \n '),__p+='\n \n ',node.uri&&(__p+='\n \n '),__p+="\n "+__e(node.title)+"\n ",node.uri&&(__p+=""),__p+="\n \n

              \n",node.uri&&options.show_node_tooltip_uri&&(__p+='\n

              \n '+__e(node.short_uri)+"\n

              \n"),__p+=" ",options.show_node_tooltip_description&&(__p+='\n

              '+(null==(__t=node.description)?"":__t)+"

              \n"),__p+=" ",node.image&&options.show_node_tooltip_image&&(__p+='\n \n'),__p+=" ",node.has_creator&&options.show_node_tooltip_creator&&(__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 ×\n ',options.show_node_tooltip_color&&(__p+='\n \n '),__p+='\n \n ',node.uri&&(__p+='\n \n '),__p+="\n "+__e(node.title)+"\n ",node.uri&&(__p+=""),__p+="\n \n

              \n",node.uri&&options.show_node_tooltip_uri&&(__p+='\n \n'),__p+='\n '+__e(renkan.translate("Link to the node"))+"\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
              \n ',__p+=options.editor_mode?'\n \n ':'\n

              \n '+__e(project.get("title")||translate("Untitled project"))+"\n

              \n ",__p+="\n ",options.show_user_list&&(__p+='\n
              \n
              \n ',options.show_user_color&&(__p+='\n
              \n \n ',options.user_color_editable&&(__p+='\n \n '),__p+="\n \n ",options.user_color_editable&&print(colorPicker),__p+="\n
              \n "),__p+='\n <unknown user>\n
              \n
                \n
                \n '),__p+="\n ",options.home_button_url&&(__p+='\n
                \n \n
                \n
                \n '+__e(translate(options.home_button_title))+"\n
                \n
                \n
                \n "),__p+="\n ",options.show_fullscreen_button&&(__p+='\n
                \n
                \n
                \n
                \n '+__e(translate("Full Screen"))+"\n
                \n
                \n
                \n "),__p+="\n ",options.editor_mode?(__p+="\n ",options.show_addnode_button&&(__p+='\n
                \n
                \n
                \n
                \n '+__e(translate("Add Node"))+"\n
                \n
                \n
                \n "),__p+="\n ",options.show_addedge_button&&(__p+='\n
                \n
                \n
                \n
                \n '+__e(translate("Add Edge"))+"\n
                \n
                \n
                \n "),__p+="\n ",options.show_export_button&&(__p+='\n
                \n
                \n
                \n
                \n '+__e(translate("Download Project"))+"\n
                \n
                \n
                \n "),__p+="\n ",options.show_save_button&&(__p+='\n
                \n
                \n
                \n
                \n
                \n
                \n '),__p+="\n ",options.show_open_button&&(__p+='\n
                \n
                \n
                \n
                \n '+__e(translate("Open Project"))+"\n
                \n
                \n
                \n "),__p+="\n ",options.show_bookmarklet&&(__p+='\n
                \n \n
                \n
                \n '+__e(translate("Renkan 'Drag-to-Add' bookmarklet"))+'\n
                \n
                \n
                \n
                \n '),__p+="\n "):(__p+="\n ",options.show_export_button&&(__p+='\n
                \n
                \n
                \n
                \n '+__e(translate("Download Project"))+'\n
                \n
                \n
                \n
                \n '),__p+="\n "),__p+="\n ",options.show_search_field&&(__p+='\n
                \n \n
                \n
                \n '),__p+="\n
                \n"),__p+='\n
                \n
                \n
                \n ',options.editor_mode&&options.save_view&&(__p+='\n
                \n '),__p+="\n ",options.save_view&&(__p+='\n
                \n ',options.hide_nodes&&(__p+='\n \n '),__p+=" \n "),__p+="\n
                \n "),__p+="\n \n\n";return __p},this.renkanJST["templates/search.html"]=function(obj){obj||(obj={});{var __t,__p="";_.escape}with(obj)__p+='
              • '+(null==(__t=title)?"":__t)+"
              • ";return __p},this.renkanJST["templates/wikipedia-bin/resulttemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
              • \n\n \n

                \n '+(null==(__t=htitle)?"":__t)+'\n

                \n

                '+(null==(__t=hdescription)?"":__t)+"

                \n
              • \n";return __p},function(a){"use strict";"object"!=typeof a.Rkns&&(a.Rkns={});var b=a.Rkns,c=b.$=a.jQuery,d=b._=a._;b.pickerColors=["#8f1919","#a80000","#d82626","#ff0000","#e87c7c","#ff6565","#f7d3d3","#fecccc","#8f5419","#a85400","#d87f26","#ff7f00","#e8b27c","#ffb265","#f7e5d3","#fee5cc","#8f8f19","#a8a800","#d8d826","#feff00","#e8e87c","#feff65","#f7f7d3","#fefecc","#198f19","#00a800","#26d826","#00ff00","#7ce87c","#65ff65","#d3f7d3","#ccfecc","#198f8f","#00a8a8","#26d8d8","#00feff","#7ce8e8","#65feff","#d3f7f7","#ccfefe","#19198f","#0000a8","#2626d8","#0000ff","#7c7ce8","#6565ff","#d3d3f7","#ccccfe","#8f198f","#a800a8","#d826d8","#ff00fe","#e87ce8","#ff65fe","#f7d3f7","#feccfe","#000000","#242424","#484848","#6d6d6d","#919191","#b6b6b6","#dadada","#ffffff"],b.__renkans=[];var e=b._BaseBin=function(a,c){if("undefined"!=typeof a){this.renkan=a,this.renkan.$.find(".Rk-Bin-Main").hide(),this.$=b.$("
              • ").addClass("Rk-Bin").appendTo(a.$.find(".Rk-Bin-List")),this.title_icon_$=b.$("").addClass("Rk-Bin-Title-Icon").appendTo(this.$);var d=this;b.$("").attr({href:"#",title:a.translate("Close bin")}).addClass("Rk-Bin-Close").html("×").appendTo(this.$).click(function(){return d.destroy(),a.$.find(".Rk-Bin-Main:visible").length||a.$.find(".Rk-Bin-Main:last").slideDown(),a.resizeBins(),!1}),b.$("").attr({href:"#",title:a.translate("Refresh bin")}).addClass("Rk-Bin-Refresh").appendTo(this.$).click(function(){return d.refresh(),!1}),this.count_$=b.$("
                ").addClass("Rk-Bin-Count").appendTo(this.$),this.title_$=b.$("

                ").addClass("Rk-Bin-Title").appendTo(this.$),this.main_$=b.$("
                ").addClass("Rk-Bin-Main").appendTo(this.$).html('

                '+a.translate("Loading, please wait")+"

                "),this.title_$.html(c.title||"(new bin)"),this.renkan.resizeBins(),c.auto_refresh&&window.setInterval(function(){d.refresh()},c.auto_refresh)}};e.prototype.destroy=function(){this.$.detach(),this.renkan.resizeBins()};var f=b.Renkan=function(a){var e=this;b.__renkans.push(this),this.options=d.defaults(a,b.defaults,{templates:d.defaults(a.templates,renkanJST)||renkanJST,node_editor_templates:d.defaults(a.node_editor_templates,b.defaults.node_editor_templates)}),this.template=renkanJST["templates/main.html"];var f={};if(d.each(this.options.node_editor_templates,function(a,b){f[b]=e.options.templates[a],delete e.options.templates[a]}),this.options.node_editor_templates=f,d.each(this.options.property_files,function(a){b.$.getJSON(a,function(a){e.options.properties=e.options.properties.concat(a)})}),this.read_only=this.options.read_only||!this.options.editor_mode,this.router=new b.Router,this.project=new b.Models.Project,this.dataloader=new b.DataLoader.Loader(this.project,this.options),this.setCurrentUser=function(a,b){this.project.addUser({_id:a,title:b}),this.current_user=a,this.renderer.redrawUsers()},"undefined"!=typeof this.options.user_id&&(this.current_user=this.options.user_id),this.$=b.$("#"+this.options.container),this.$.addClass("Rk-Main").html(this.template(this)),this.tabs=[],this.search_engines=[],this.current_user_list=new b.Models.UsersList,this.current_user_list.on("add remove",function(){this.renderer&&this.renderer.redrawUsers()}),this.colorPicker=function(){var a=renkanJST["templates/colorpicker.html"];return'
                  '+b.pickerColors.map(function(b){return a({c:b})}).join("")+"
                "}(),this.options.show_editor&&(this.renderer=new b.Renderer.Scene(this)),this.options.search.length){var g=renkanJST["templates/search.html"],h=this.$.find(".Rk-Search-List"),i=this.$.find(".Rk-Web-Search-Input"),j=this.$.find(".Rk-Web-Search-Form");d.each(this.options.search,function(a){b[a.type]&&b[a.type].Search&&e.search_engines.push(new b[a.type].Search(e,a))}),h.html(d(this.search_engines).map(function(a,b){return g({key:b,title:a.getSearchTitle(),className:a.getBgClass()})}).join("")),h.find("li").click(function(){var a=b.$(this);e.setSearchEngine(a.attr("data-key")),j.submit()}),j.submit(function(){if(i.val()){var a=e.search_engine;a.search(i.val())}return!1}),this.$.find(".Rk-Search-Current").mouseenter(function(){h.slideDown()}),this.$.find(".Rk-Search-Select").mouseleave(function(){h.hide()}),this.setSearchEngine(0)}else this.$.find(".Rk-Web-Search-Form").detach();d.each(this.options.bins,function(a){b[a.type]&&b[a.type].Bin&&e.tabs.push(new b[a.type].Bin(e,a))});var k=!1;this.$.find(".Rk-Bins").on("click",".Rk-Bin-Title,.Rk-Bin-Title-Icon",function(){var a=b.$(this).siblings(".Rk-Bin-Main");a.is(":hidden")&&(e.$.find(".Rk-Bin-Main").slideUp(),a.slideDown())}),this.options.show_editor&&this.$.find(".Rk-Bins").on("mouseover",".Rk-Bin-Item",function(){var a=b.$(this);if(a&&c(a).attr("data-uri")){var f=e.project.get("nodes").where({uri:c(a).attr("data-uri")});d.each(f,function(a){e.renderer.highlightModel(a)})}}).mouseout(function(){e.renderer.unhighlightAll() +}).on("mousemove",".Rk-Bin-Item",function(){try{this.dragDrop()}catch(a){}}).on("touchstart",".Rk-Bin-Item",function(){k=!1}).on("touchmove",".Rk-Bin-Item",function(a){a.preventDefault();var b=a.originalEvent.changedTouches[0],c=e.renderer.canvas_$.offset(),d=e.renderer.canvas_$.width(),f=e.renderer.canvas_$.height();if(b.pageX>=c.left&&b.pageX=c.top&&b.pageY1?a:null);c.source!==l&&(l=c.source,d.each(e.tabs,function(a){a.render(c)}))}}),this.$.find(".Rk-Bins-Search-Form").submit(function(){return!1})};f.prototype.translate=function(a){return b.i18n[this.options.language]&&b.i18n[this.options.language][a]?b.i18n[this.options.language][a]:this.options.language.length>2&&b.i18n[this.options.language.substr(0,2)]&&b.i18n[this.options.language.substr(0,2)][a]?b.i18n[this.options.language.substr(0,2)][a]:a},f.prototype.onStatusChange=function(){this.renderer.onStatusChange()},f.prototype.setSearchEngine=function(a){this.search_engine=this.search_engines[a],this.$.find(".Rk-Search-Current").attr("class","Rk-Search-Current "+this.search_engine.getBgClass());for(var b=this.search_engine.getBgClass().split(" "),c="",d=0;da?"0"+a:a}var b=new Date,c=0,d=b.getUTCFullYear()+"-"+a(b.getUTCMonth()+1)+"-"+a(b.getUTCDate())+"-"+g();return function(a){for(var b=(++c).toString(16),e="undefined"==typeof a?"":a+"-";b.length<4;)b="0"+b;return e+d+"-"+b}}(),getFullURL:function(a){if("undefined"==typeof a||null==a)return"";if(/https?:\/\//.test(a))return a;var b=new Image;b.src=a;var c=b.src;return b.src=null,c},inherit:function(a,b){var c=function(){"function"==typeof b&&b.apply(this,Array.prototype.slice.call(arguments,0)),a.apply(this,Array.prototype.slice.call(arguments,0)),"function"!=typeof this._init||this._initialized||(this._init.apply(this,Array.prototype.slice.call(arguments,0)),this._initialized=!0)};return d.extend(c.prototype,a.prototype),c},regexpFromTextOrArray:function(){function a(a){function b(a){return function(b,c){a=a.replace(h[b],c)}}for(var e=a.toLowerCase().replace(g,""),i="",j=0;j"+a.translate("Drag items from this website, drop them in Renkan").replace(/ /g,"_")+"

                '.replace(/_/g,String.fromCharCode(32));b.appendChild(d);e=[{r:/https?:\\/\\/[^\\/]*twitter\\.com\\//,s:'.tweet',n:'twitter'},{r:/https?:\\/\\/[^\\/]*google\\.[^\\/]+\\//,s:'.g',n:'google'},{r:/https?:\\/\\/[^\\/]*lemonde\\.fr\\//,s:'[data-vr-contentbox]',n:'lemonde'}];f=false;e.forEach(function(g){if(g.r.test(c)){f=g;}});if(f){h=function(){Array.prototype.forEach.call(a.querySelectorAll(f.s),function(i){i[j]=true;k=i.style;k.borderWidth='2px';k.borderColor='#909';k.borderStyle='solid';k.backgroundColor='rgba(200,0,180,.1)';})};window.setInterval(h,500);h();};a.addEventListener('dragstart',function(k){l=k.dataTransfer;l.setData(m+'source-uri',c);l.setData(m+'source-title',a.title);n=k.target;if(f){o=n;while(!o.attributes[j]){o=o.parentNode;if(o==b){break;}}}if(f&&o.attributes[j]){p=o.cloneNode(true);l.setData(m+'specific-site',f.n)}else{q=a.getSelection();if(q.type==='Range'||!q.type){p=q.getRangeAt(0).cloneContents();}else{p=n.cloneNode();}}r=a.createElement('div');r.appendChild(p);l.setData('text/x-iri-selected-text',r.textContent.trim());l.setData('text/x-iri-selected-html',r.innerHTML);},false);})();"},shortenText:function(a,b){return a.length>b?a.substr(0,b)+"…":a},drawEditBox:function(a,b,c,d,e){e.css({width:a.tooltip_width-2*a.tooltip_padding});var f=e.outerHeight()+2*a.tooltip_padding,g=b.xpaper.view.size.height-a.tooltip_margin&&(j=Math.max(paper.view.size.height-a.tooltip_margin,b.y+a.tooltip_arrow_width/2)-f),jb;b++){var d=a.nodes[b];d.style=d.color?{color:d.color}:{}}if("undefined"!=typeof a.edges)for(b=0,c=a.edges.length;c>b;b++){var e=a.edges[b];e.style=e.color?{color:e.color}:{}}return a.schema_version="2",a}}};b.Loader=function(a,c){this.project=a,this.dataConverters=_.defaults(c.converters||{},b.converters)},b.Loader.prototype.convert=function(a){var b=this.project.getSchemaVersion(a),c=this.project.getSchemaVersion();if(b!==c){var d="from"+b+"to"+c;"function"==typeof this.dataConverters[d]&&(a=this.dataConverters[d](a))}return a},b.Loader.prototype.load=function(a){this.project.set(this.convert(a),{validate:!0})}}(window),function(a){"use strict";var b=a.Backbone,c=a.Rkns.Models={};c.getUID=function(a){var b="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(a){var b=16*Math.random()|0,c="x"===a?b:3&b|8;return c.toString(16)});return"undefined"!=typeof a?a.type+"-"+b:b};{var d=b.RelationalModel.extend({idAttribute:"_id",constructor:function(a){"undefined"!=typeof a&&(a._id=a._id||a.id||c.getUID(this),a.title=a.title||"",a.description=a.description||"",a.uri=a.uri||"","function"==typeof this.prepare&&(a=this.prepare(a))),b.RelationalModel.prototype.constructor.call(this,a)},validate:function(){return this.type?void 0:"object has no type"},addReference:function(a,b,c,d,e){var f=c.get(d);a[b]="undefined"==typeof f&&"undefined"!=typeof e?e:f}}),e=c.User=d.extend({type:"user",prepare:function(a){return a.color=a.color||"#666666",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),color:this.get("color")}}}),f=c.Node=d.extend({type:"node",relations:[{type:b.HasOne,key:"created_by",relatedModel:e}],prepare:function(a){var b=a.project;return this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),a.description=a.description||"",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),position:this.get("position"),image:this.get("image"),style:this.get("style"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null,size:this.get("size"),clip_path:this.get("clip_path"),shape:this.get("shape"),type:this.get("type")}}}),g=c.Edge=d.extend({type:"edge",relations:[{type:b.HasOne,key:"created_by",relatedModel:e},{type:b.HasOne,key:"from",relatedModel:f},{type:b.HasOne,key:"to",relatedModel:f}],prepare:function(a){var b=a.project;return this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),this.addReference(a,"from",b.get("nodes"),a.from),this.addReference(a,"to",b.get("nodes"),a.to),a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),from:this.get("from")?this.get("from").get("_id"):null,to:this.get("to")?this.get("to").get("_id"):null,style:this.get("style"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null}}}),h=c.View=d.extend({type:"view",relations:[{type:b.HasOne,key:"created_by",relatedModel:e}],prepare:function(a){var b=a.project;if(this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),a.description=a.description||"","undefined"!=typeof a.offset){var c={};Array.isArray(a.offset)?(c.x=a.offset[0],c.y=a.offset.length>1?a.offset[1]:a.offset[0]):null!=a.offset.x&&(c.x=a.offset.x,c.y=a.offset.y),a.offset=c}return a},toJSON:function(){return{_id:this.get("_id"),zoom_level:this.get("zoom_level"),offset:this.get("offset"),title:this.get("title"),description:this.get("description"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null,hidden_nodes:this.get("hidden_nodes")}}}),i=(c.Project=d.extend({schema_version:"2",type:"project",blacklist:["saveStatus","loadingStatus"],relations:[{type:b.HasMany,key:"users",relatedModel:e,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"nodes",relatedModel:f,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"edges",relatedModel:g,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"views",relatedModel:h,reverseRelation:{key:"project",includeInJSON:"_id"}}],addUser:function(a,b){a.project=this;var c=e.findOrCreate(a);return this.get("users").push(c,b),c},addNode:function(a,b){a.project=this;var c=f.findOrCreate(a);return this.get("nodes").push(c,b),c},addEdge:function(a,b){a.project=this;var c=g.findOrCreate(a);return this.get("edges").push(c,b),c},addView:function(a,b){a.project=this;var c=h.findOrCreate(a);return this.get("views").push(c,b),c},removeNode:function(a){this.get("nodes").remove(a)},removeEdge:function(a){this.get("edges").remove(a)},validate:function(a){var b=this;_.each([].concat(a.users,a.nodes,a.edges,a.views),function(a){a&&(a.project=b)})},getSchemaVersion:function(a){var b=a;"undefined"==typeof b&&(b=this);var c=b.schema_version;return c?c:1},initialize:function(){var a=this;this.on("remove:nodes",function(b){a.get("edges").remove(a.get("edges").filter(function(a){return a.get("from")===b||a.get("to")===b}))})},toJSON:function(){var a=_.clone(this.attributes);for(var c in a)(a[c]instanceof b.Model||a[c]instanceof b.Collection||a[c]instanceof d)&&(a[c]=a[c].toJSON());return _.omit(a,this.blacklist)}}),c.RosterUser=b.Model.extend({type:"roster_user",idAttribute:"_id",constructor:function(a){"undefined"!=typeof a&&(a._id=a._id||a.id||c.getUID(this),a.title=a.title||"(untitled "+this.type+")",a.description=a.description||"",a.uri=a.uri||"",a.project=a.project||null,a.site_id=a.site_id||0,"function"==typeof this.prepare&&(a=this.prepare(a))),b.Model.prototype.constructor.call(this,a)},validate:function(){return this.type?void 0:"object has no type"},prepare:function(a){return a.color=a.color||"#666666",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),color:this.get("color"),project:null!=this.get("project")?this.get("project").get("id"):null,site_id:this.get("site_id")}}}));c.UsersList=b.Collection.extend({model:i})}}(window),Rkns.defaults={language:navigator.language||navigator.userLanguage||"en",container:"renkan",search:[],bins:[],static_url:"",popup_editor:!0,editor_panel:"editor-panel",show_bins:!0,properties:[],show_editor:!0,read_only:!1,editor_mode:!0,manual_save:!1,show_top_bar:!0,default_user_color:"#303030",size_bug_fix:!0,force_resize:!1,allow_double_click:!0,zoom_on_scroll:!0,element_delete_delay:0,autoscale_padding:50,resize:!0,show_zoom:!0,save_view:!0,default_view:!1,show_search_field:!0,show_user_list:!0,user_name_editable:!0,user_color_editable:!0,show_user_color:!0,show_save_button:!0,show_export_button:!0,show_open_button:!1,show_addnode_button:!0,show_addedge_button:!0,show_bookmarklet:!0,show_fullscreen_button:!0,home_button_url:!1,home_button_title:"Home",show_minimap:!0,minimap_width:160,minimap_height:120,minimap_padding:20,minimap_background_color:"#ffffff",minimap_border_color:"#cccccc",minimap_highlight_color:"#ffff00",minimap_highlight_weight:5,buttons_background:"#202020",buttons_label_color:"#c000c0",buttons_label_font_size:9,ghost_opacity:.3,default_dash_array:[4,5],show_node_circles:!0,clip_node_images:!0,node_images_fill_mode:!1,node_size_base:25,node_stroke_width:2,node_stroke_max_width:12,selected_node_stroke_width:4,selected_node_stroke_max_width:24,node_stroke_witdh_scale:5,node_fill_color:"#ffffff",highlighted_node_fill_color:"#ffff00",node_label_distance:5,node_label_max_length:60,label_untitled_nodes:"(untitled)",hide_nodes:!0,change_shapes:!0,change_types:!0,node_editor_templates:{"default":"templates/nodeeditor_readonly.html",video:"templates/nodeeditor_video.html"},edge_stroke_width:2,edge_stroke_max_width:12,selected_edge_stroke_width:4,selected_edge_stroke_max_width:24,edge_stroke_witdh_scale:5,edge_label_distance:0,edge_label_max_length:20,edge_arrow_length:18,edge_arrow_width:12,edge_arrow_max_width:32,edge_gap_in_bundles:12,label_untitled_edges:"",tooltip_width:275,tooltip_padding:10,tooltip_margin:15,tooltip_arrow_length:20,tooltip_arrow_width:40,tooltip_top_color:"#f0f0f0",tooltip_bottom_color:"#d0d0d0",tooltip_border_color:"#808080",tooltip_border_width:1,richtext_editor_config:{toolbarGroups:[{name:"basicstyles",groups:["basicstyles","cleanup"]},{name:"clipboard",groups:["clipboard","undo"]},"/",{name:"styles"}],removePlugins:"colorbutton,find,flash,font,forms,iframe,image,newpage,smiley,specialchar,stylescombo,templates"},show_node_editor_uri:!0,show_node_editor_description:!0,show_node_editor_description_richtext:!0,show_node_editor_size:!0,show_node_editor_style:!0,show_node_editor_style_color:!0,show_node_editor_style_dash:!0,show_node_editor_style_thickness:!0,show_node_editor_image:!0,show_node_editor_creator:!0,allow_image_upload:!0,uploaded_image_max_kb:500,show_node_tooltip_uri:!0,show_node_tooltip_description:!0,show_node_tooltip_color:!0,show_node_tooltip_image:!0,show_node_tooltip_creator:!0,show_edge_editor_uri:!0,show_edge_editor_style:!0,show_edge_editor_style_color:!0,show_edge_editor_style_dash:!0,show_edge_editor_style_thickness:!0,show_edge_editor_style_arrow:!0,show_edge_editor_direction:!0,show_edge_editor_nodes:!0,show_edge_editor_creator:!0,show_edge_tooltip_uri:!0,show_edge_tooltip_color:!0,show_edge_tooltip_nodes:!0,show_edge_tooltip_creator:!0},Rkns.i18n={fr:{"Edit Node":"Édition d’un nœud","Edit Edge":"Édition d’un lien","Title:":"Titre :","URI:":"URI :","Description:":"Description :","From:":"De :","To:":"Vers :",Image:"Image","Image URL:":"URL d'Image","Choose Image File:":"Choisir un fichier image","Full Screen":"Mode plein écran","Add Node":"Ajouter un nœud","Add Edge":"Ajouter un lien","Save Project":"Enregistrer le projet","Open Project":"Ouvrir un projet","Auto-save enabled":"Enregistrement automatique activé","Connection lost":"Connexion perdue","Created by:":"Créé par :","Zoom In":"Agrandir l’échelle","Zoom Out":"Rapetisser l’échelle",Edit:"Éditer",Remove:"Supprimer","Cancel deletion":"Annuler la suppression","Link to another node":"Créer un lien",Enlarge:"Agrandir",Shrink:"Rétrécir","Click on the background canvas to add a node":"Cliquer sur le fond du graphe pour rajouter un nœud","Click on a first node to start the edge":"Cliquer sur un premier nœud pour commencer le lien","Click on a second node to complete the edge":"Cliquer sur un second nœud pour terminer le lien",Wikipedia:"Wikipédia","Wikipedia in ":"Wikipédia en ",French:"Français",English:"Anglais",Japanese:"Japonais","Untitled project":"Projet sans titre","Lignes de Temps":"Lignes de Temps","Loading, please wait":"Chargement en cours, merci de patienter","Edge color:":"Couleur :","Dash:":"Point. :","Thickness:":"Epaisseur :","Arrow:":"Flèche :","Node color:":"Couleur :","Choose color":"Choisir une couleur","Change edge direction":"Changer le sens du lien","Do you really wish to remove node ":"Voulez-vous réellement supprimer le nœud ","Do you really wish to remove edge ":"Voulez-vous réellement supprimer le lien ","This file is not an image":"Ce fichier n'est pas une image","Image size must be under ":"L'image doit peser moins de ","Size:":"Taille :",KB:"ko","Choose from vocabulary:":"Choisir dans un vocabulaire :","SKOS Documentation properties":"SKOS: Propriétés documentaires","has note":"a pour note","has example":"a pour exemple","has definition":"a pour définition","SKOS Semantic relations":"SKOS: Relations sémantiques","has broader":"a pour concept plus large","has narrower":"a pour concept plus étroit","has related":"a pour concept apparenté","Dublin Core Metadata":"Métadonnées Dublin Core","has contributor":"a pour contributeur",covers:"couvre","created by":"créé par","has date":"a pour date","published by":"édité par","has source":"a pour source","has subject":"a pour sujet","Dragged resource":"Ressource glisée-déposée","Search the Web":"Rechercher en ligne","Search in Bins":"Rechercher dans les chutiers","Close bin":"Fermer le chutier","Refresh bin":"Rafraîchir le chutier","(untitled)":"(sans titre)","Select contents:":"Sélectionner des contenus :","Drag items from this website, drop them in Renkan":"Glissez des éléments de ce site web vers Renkan","Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.":"Glissez ce bouton vers votre barre de favoris. Ensuite, depuis un site tiers, cliquez dessus pour activer 'Drag-to-Add' puis glissez des éléments de ce site vers Renkan","Shapes available":"Formes disponibles",Circle:"Cercle",Square:"Carré",Diamond:"Losange",Hexagone:"Hexagone",Ellipse:"Ellipse",Star:"Étoile",Cloud:"Nuage",Triangle:"Triangle","Zoom Fit":"Ajuster le Zoom","Download Project":"Télécharger le projet","Save view":"Sauver la vue","View saved view":"Restaurer la Vue","Renkan 'Drag-to-Add' bookmarklet":"Renkan 'Deplacer-Pour-Ajouter' Signet","(unknown user)":"(non authentifié)","":"","Search in graph":"Rechercher dans carte","Search in ":"Chercher dans "}},Rkns.jsonIO=function(a,b){var c=a.project;"undefined"==typeof b.http_method&&(b.http_method="PUT");var d=function(){a.renderer.redrawActive=!1,c.set({loadingStatus:!0}),Rkns.$.getJSON(b.url,function(b){a.dataloader.load(b),c.set({loadingStatus:!1}),c.set({saveStatus:0}),a.renderer.redrawActive=!0,a.renderer.fixSize()})},e=function(){c.set({saveStatus:2});var d=c.toJSON();a.read_only||Rkns.$.ajax({type:b.http_method,url:b.url,contentType:"application/json",data:JSON.stringify(d),success:function(){c.set({saveStatus:0})}})},f=Rkns._.throttle(function(){setTimeout(e,100)},1e3);c.on("add:nodes add:edges add:users add:views",function(a){a.on("change remove",function(){f()}),f()}),c.on("change",function(){1===c.changedAttributes.length&&c.hasChanged("saveStatus")||f()}),d()},Rkns.jsonIOSaveOnClick=function(a,b){var c=a.project,d=!1,e=function(){return"Project not saved"};"undefined"==typeof b.http_method&&(b.http_method="POST");var f=function(){var d={},e=/id=([^&#?=]+)/,f=document.location.hash.match(e);f&&(d.id=f[1]),Rkns.$.ajax({url:b.url,data:d,beforeSend:function(){c.set({loadingStatus:!0})},success:function(b){a.dataloader.load(b),c.set({loadingStatus:!1}),c.set({saveStatus:0}),a.renderer.autoScale()}})},g=function(){c.set("saved_at",new Date);var a=c.toJSON();Rkns.$.ajax({type:b.http_method,url:b.url,contentType:"application/json",data:JSON.stringify(a),beforeSend:function(){c.set({saveStatus:2})},success:function(){$(window).off("beforeunload",e),d=!1,c.set({saveStatus:0})}})},h=function(){c.set({saveStatus:1});var a=c.get("title");a&&c.get("nodes").length?$(".Rk-Save-Button").removeClass("disabled"):$(".Rk-Save-Button").addClass("disabled"),a&&$(".Rk-PadTitle").css("border-color","#333333"),d||(d=!0,$(window).on("beforeunload",e))};f(),c.on("add:nodes add:edges add:users change",function(a){a.on("change remove",function(a){1===a.changedAttributes.length&&a.hasChanged("saveStatus")||h()}),1===c.changedAttributes.length&&c.hasChanged("saveStatus")||h()}),a.renderer.save=function(){$(".Rk-Save-Button").hasClass("disabled")?c.get("title")||$(".Rk-PadTitle").css("border-color","#ff0000"):g()}},function(a){"use strict";var b=a._,c=a.Ldt={},d=(c.Bin=function(a,b){if(b.ldt_type){var d=c[b.ldt_type+"Bin"];if(d)return new d(a,b)}console.error("No such LDT Bin Type")},c.ProjectBin=a.Utils.inherit(a._BaseBin));d.prototype.tagTemplate=renkanJST["templates/ldtjson-bin/tagtemplate.html"],d.prototype.annotationTemplate=renkanJST["templates/ldtjson-bin/annotationtemplate.html"],d.prototype._init=function(a,b){this.renkan=a,this.proj_id=b.project_id,this.ldt_platform=b.ldt_platform||"http://ldt.iri.centrepompidou.fr/",this.title_$.html(b.title),this.title_icon_$.addClass("Rk-Ldt-Title-Icon"),this.refresh()},d.prototype.render=function(c){function d(a){var c=b(a).escape();return f.isempty?c:f.replace(c,"$1")}function e(a){function b(a){for(var b=a.toString();b.length<2;)b="0"+b;return b}var c=Math.abs(Math.floor(a/1e3)),d=Math.floor(c/3600),e=Math.floor(c/60)%60,f=c%60,g="";return d&&(g+=b(d)+":"),g+=b(e)+":"+b(f)}var f=c||a.Utils.regexpFromTextOrArray(),g="
              • Tags

              • ",h=this.data.meta["dc:title"],i=this,j=0;i.title_$.text('LDT Project: "'+h+'"'),b.map(i.data.tags,function(a){var b=a.meta["dc:title"];(f.isempty||f.test(b))&&(j++,g+=i.tagTemplate({ldt_platform:i.ldt_platform,title:b,htitle:d(b),encodedtitle:encodeURIComponent(b),static_url:i.renkan.options.static_url}))}),g+="
              • Annotations

              • ",b.map(i.data.annotations,function(a){var b=a.content.description,c=a.content.title.replace(b,"");if(f.isempty||f.test(c)||f.test(b)){j++;var h=a.end-a.begin,k=a.content&&a.content.img&&a.content.img.src?a.content.img.src:h?i.renkan.options.static_url+"img/ldt-segment.png":i.renkan.options.static_url+"img/ldt-point.png";g+=i.annotationTemplate({ldt_platform:i.ldt_platform,title:c,htitle:d(c),description:b,hdescription:d(b),start:e(a.begin),end:e(a.end),duration:e(h),mediaid:a.media,annotationid:a.id,image:k,static_url:i.renkan.options.static_url})}}),this.main_$.html(g),!f.isempty&&j?this.count_$.text(j).show():this.count_$.hide(),f.isempty||j?this.$.show():this.$.hide(),this.renkan.resizeBins()},d.prototype.refresh=function(){var b=this;a.$.ajax({url:this.ldt_platform+"ldtplatform/ldt/cljson/id/"+this.proj_id,dataType:"jsonp",success:function(a){b.data=a,b.render()}})};var e=c.Search=function(a,b){this.renkan=a,this.lang=b.lang||"en"};e.prototype.getBgClass=function(){return"Rk-Ldt-Icon"},e.prototype.getSearchTitle=function(){return this.renkan.translate("Lignes de Temps")},e.prototype.search=function(a){this.renkan.tabs.push(new f(this.renkan,{search:a}))};var f=c.ResultsBin=a.Utils.inherit(a._BaseBin);f.prototype.segmentTemplate=renkanJST["templates/ldtjson-bin/segmenttemplate.html"],f.prototype._init=function(a,b){this.renkan=a,this.ldt_platform=b.ldt_platform||"http://ldt.iri.centrepompidou.fr/",this.max_results=b.max_results||50,this.search=b.search,this.title_$.html('Lignes de Temps: "'+b.search+'"'),this.title_icon_$.addClass("Rk-Ldt-Title-Icon"),this.refresh()},f.prototype.render=function(c){function d(a){return g.replace(b(a).escape(),"$1")}function e(a){function b(a){for(var b=a.toString();b.length<2;)b="0"+b;return b}var c=Math.abs(Math.floor(a/1e3)),d=Math.floor(c/3600),e=Math.floor(c/60)%60,f=c%60,g="";return d&&(g+=b(d)+":"),g+=b(e)+":"+b(f)}if(this.data){var f=c||a.Utils.regexpFromTextOrArray(),g=f.isempty?a.Utils.regexpFromTextOrArray(this.search):f,h="",i=this,j=0;b.each(this.data.objects,function(a){var b=a["abstract"],c=a.title;if(f.isempty||f.test(c)||f.test(b)){j++;var g=a.duration,k=a.start_ts,l=+a.duration+k,m=g?i.renkan.options.static_url+"img/ldt-segment.png":i.renkan.options.static_url+"img/ldt-point.png";h+=i.segmentTemplate({ldt_platform:i.ldt_platform,title:c,htitle:d(c),description:b,hdescription:d(b),start:e(k),end:e(l),duration:e(g),mediaid:a.iri_id,annotationid:a.element_id,image:m})}}),this.main_$.html(h),!f.isempty&&j?this.count_$.text(j).show():this.count_$.hide(),f.isempty||j?this.$.show():this.$.hide(),this.renkan.resizeBins()}},f.prototype.refresh=function(){var b=this;a.$.ajax({url:this.ldt_platform+"ldtplatform/api/ldt/1.0/segments/search/",data:{format:"jsonp",q:this.search,limit:this.max_results},dataType:"jsonp",success:function(a){b.data=a,b.render()}})}}(window.Rkns),Rkns.ResourceList={},Rkns.ResourceList.Bin=Rkns.Utils.inherit(Rkns._BaseBin),Rkns.ResourceList.Bin.prototype.resultTemplate=renkanJST["templates/list-bin.html"],Rkns.ResourceList.Bin.prototype._init=function(a,b){this.renkan=a,this.title_$.html(b.title),b.list&&(this.data=b.list),this.refresh()},Rkns.ResourceList.Bin.prototype.render=function(a){function b(a){var b=_(a).escape();return c.isempty?b:c.replace(b,"$1")}var c=a||Rkns.Utils.regexpFromTextOrArray(),d="",e=this,f=0;Rkns._.each(this.data,function(a){var g;if("string"==typeof a)if(/^(https?:\/\/|www)/.test(a))g={url:a};else{g={title:a.replace(/[:,]?\s?(https?:\/\/|www)[\d\w\/.&?=#%-_]+\s?/,"").trim()};var h=a.match(/(https?:\/\/|www)[\d\w\/.&?=#%-_]+/);h&&(g.url=h[0]),g.title.length>80&&(g.description=g.title,g.title=g.title.replace(/^(.{30,60})\s.+$/,"$1…"))}else g=a;var i=g.title||(g.url||"").replace(/^https?:\/\/(www\.)?/,"").replace(/^(.{40}).+$/,"$1…"),j=g.url||"",k=g.description||"",l=g.image||"";j&&!/^https?:\/\//.test(j)&&(j="http://"+j),(c.isempty||c.test(i)||c.test(k))&&(f++,d+=e.resultTemplate({url:j,title:i,htitle:b(i),image:l,description:k,hdescription:b(k),static_url:e.renkan.options.static_url}))}),e.main_$.html(d),!c.isempty&&f?this.count_$.text(f).show():this.count_$.hide(),c.isempty||f?this.$.show():this.$.hide(),this.renkan.resizeBins()},Rkns.ResourceList.Bin.prototype.refresh=function(){this.data&&this.render()},Rkns.Wikipedia={},Rkns.Wikipedia.Search=function(a,b){this.renkan=a,this.lang=b.lang||"en"},Rkns.Wikipedia.Search.prototype.getBgClass=function(){return"Rk-Wikipedia-Search-Icon Rk-Wikipedia-Lang-"+this.lang},Rkns.Wikipedia.Search.prototype.getSearchTitle=function(){var a={fr:"French",en:"English",ja:"Japanese"};return a[this.lang]?this.renkan.translate("Wikipedia in ")+this.renkan.translate(a[this.lang]):this.renkan.translate("Wikipedia")+" ["+this.lang+"]"},Rkns.Wikipedia.Search.prototype.search=function(a){this.renkan.tabs.push(new Rkns.Wikipedia.Bin(this.renkan,{lang:this.lang,search:a}))},Rkns.Wikipedia.Bin=Rkns.Utils.inherit(Rkns._BaseBin),Rkns.Wikipedia.Bin.prototype.resultTemplate=renkanJST["templates/wikipedia-bin/resulttemplate.html"],Rkns.Wikipedia.Bin.prototype._init=function(a,b){this.renkan=a,this.search=b.search,this.lang=b.lang||"en",this.title_icon_$.addClass("Rk-Wikipedia-Title-Icon Rk-Wikipedia-Lang-"+this.lang),this.title_$.html(this.search).addClass("Rk-Wikipedia-Title"),this.refresh()},Rkns.Wikipedia.Bin.prototype.render=function(a){function b(a){return d.replace(_(a).escape(),"$1")}var c=a||Rkns.Utils.regexpFromTextOrArray(),d=c.isempty?Rkns.Utils.regexpFromTextOrArray(this.search):c,e="",f=this,g=0;Rkns._.each(this.data.query.search,function(a){var d=a.title,h="http://"+f.lang+".wikipedia.org/wiki/"+encodeURI(d.replace(/ /g,"_")),i=Rkns.$("
                ").html(a.snippet).text();(c.isempty||c.test(d)||c.test(i))&&(g++,e+=f.resultTemplate({url:h,title:d,htitle:b(d),description:i,hdescription:b(i),static_url:f.renkan.options.static_url}))}),f.main_$.html(e),!c.isempty&&g?this.count_$.text(g).show():this.count_$.hide(),c.isempty||g?this.$.show():this.$.hide(),this.renkan.resizeBins()},Rkns.Wikipedia.Bin.prototype.refresh=function(){var a=this;Rkns.$.ajax({url:"http://"+a.lang+".wikipedia.org/w/api.php?action=query&list=search&srsearch="+encodeURIComponent(this.search)+"&format=json",dataType:"jsonp",success:function(b){a.data=b,a.render()}})},define("renderer/baserepresentation",["jquery","underscore"],function(a,b){var c=function(a,c){if("undefined"!=typeof a&&(this.renderer=a,this.renkan=a.renkan,this.project=a.renkan.project,this.options=a.renkan.options,this.model=c,this.model)){var d=this;this._changeBinding=function(){d.redraw({change:!0})},this._removeBinding=function(){a.removeRepresentation(d),b.defer(function(){a.redraw()})},this._selectBinding=function(){d.select()},this._unselectBinding=function(){d.unselect()},this.model.on("change",this._changeBinding),this.model.on("remove",this._removeBinding),this.model.on("select",this._selectBinding),this.model.on("unselect",this._unselectBinding)}};return b(c.prototype).extend({_super:function(a){return c.prototype[a].apply(this,Array.prototype.slice.call(arguments,1))},redraw:function(){},moveTo:function(){},show:function(){return"BaseRepresentation.show"},hide:function(){},select:function(){this.model&&this.model.trigger("selected") +},unselect:function(){this.model&&this.model.trigger("unselected")},highlight:function(){},unhighlight:function(){},mousedown:function(){},mouseup:function(){this.model&&this.model.trigger("clicked")},destroy:function(){this.model&&(this.model.off("change",this._changeBinding),this.model.off("remove",this._removeBinding),this.model.off("select",this._selectBinding),this.model.off("unselect",this._unselectBinding))}}).value(),c}),define("requtils",[],function(){return{getUtils:function(){return window.Rkns.Utils},getRenderer:function(){return window.Rkns.Renderer}}}),define("renderer/basebutton",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({moveTo:function(a){this.sector.moveTo(a)},show:function(){this.sector.show()},hide:function(){this.sector.hide()},select:function(){this.sector.select()},unselect:function(a){this.sector.unselect(),(!a||a!==this.source_representation&&a.source_representation!==this.source_representation)&&this.source_representation.unselect()},destroy:function(){this.sector.destroy()}}).value(),f}),define("renderer/shapebuilder",[],function(){var a="M0,0c-0.1218516546,-0.0336420601 -0.2451649928,0.0048580836 -0.3302944641,0.0884969975c-0.0444763883,-0.0550844815 -0.1047003238,-0.0975985034 -0.1769360893,-0.1175406746c-0.1859066673,-0.0513257002 -0.3774236254,0.0626045858 -0.4272374613,0.2541588105c-0.0036603877,0.0140753132 -0.0046241235,0.028229722 -0.0065872453,0.042307536c-0.1674179627,-0.0179317735 -0.3276106855,0.0900599386 -0.3725537463,0.2628868425c-0.0445325077,0.1712456429 0.0395025693,0.3463497959 0.1905420475,0.4183458793c-0.0082101538,0.0183442886 -0.0158652506,0.0372432828 -0.0211098452,0.0574080693c-0.0498130336,0.1915540431 0.0608692569,0.3884647499 0.2467762814,0.4397904033c0.0910577256,0.0251434257 0.1830791813,0.0103792696 0.2594677475,-0.0334472349c0.042100113,0.0928009202 0.1205930075,0.1674914182 0.2240666796,0.1960572479c0.1476344161,0.0407610407 0.297446165,-0.0238077445 0.3783262342,-0.1475652419c0.0327623278,0.0238981846 0.0691792333,0.0436665447 0.1102008706,0.0549940004c0.1859065794,0.0513256592 0.3770116432,-0.0627203154 0.4268255671,-0.2542745401c0.0250490557,-0.0963230532 0.0095494076,-0.1938010889 -0.0356681889,-0.2736906101c0.0447507424,-0.0439678867 0.0797796014,-0.0996624318 0.0969425462,-0.1656617192c0.0498137481,-0.1915564561 -0.0608688118,-0.3884669813 -0.2467755669,-0.4397928163c-0.0195699622,-0.0054005426 -0.0391731675,-0.0084429542 -0.0586916488,-0.0102888295c0.0115683912,-0.1682147574 -0.0933564223,-0.3269222408 -0.2572937178,-0.3721841203z",b={circle:{getShape:function(){return new paper.Path.Circle([0,0],1)},getImageShape:function(a,b){return new paper.Path.Circle(a,b)}},rectangle:{getShape:function(){return new paper.Path.Rectangle([-2,-2],[2,2])},getImageShape:function(a,b){return new paper.Path.Rectangle([-b,-b],[2*b,2*b])}},ellipse:{getShape:function(){return new paper.Path.Ellipse(new paper.Rectangle([-2,-1],[2,1]))},getImageShape:function(a,b){return new paper.Path.Ellipse(new paper.Rectangle([-b,-b/2],[2*b,b]))}},polygon:{getShape:function(){return new paper.Path.RegularPolygon([0,0],6,1)},getImageShape:function(a,b){return new paper.Path.RegularPolygon(a,6,b)}},diamond:{getShape:function(){var a=new paper.Path.Rectangle([-Math.SQRT2,-Math.SQRT2],[Math.SQRT2,Math.SQRT2]);return a.rotate(45),a},getImageShape:function(a,b){var c=new paper.Path.Rectangle([-b*Math.SQRT2/2,-b*Math.SQRT2/2],[b*Math.SQRT2,b*Math.SQRT2]);return c.rotate(45),c}},star:{getShape:function(){return new paper.Path.Star([0,0],8,1,.7)},getImageShape:function(a,b){return new paper.Path.Star(a,8,1*b,.7*b)}},cloud:{getShape:function(){var b=new paper.Path(a);return b},getImageShape:function(b,c){var d=new paper.Path(a);return d.scale(c),d.translate(b),d}},triangle:{getShape:function(){return new paper.Path.RegularPolygon([0,0],3,1)},getImageShape:function(a,b){var c=new paper.Path.RegularPolygon([0,0],3,1);return c.scale(b),c.translate(a),c}},svg:function(a){return{getShape:function(){return new paper.Path(a)},getImageShape:function(){return new paper.Path}}}},c=function(a){return(null===a||"undefined"==typeof a)&&(a="circle"),"svg:"===a.substr(0,4)?b.svg(a.substr(4)):(a in b||(a="circle"),b[a])};return c.builders=b,c}),define("renderer/noderepr",["jquery","underscore","requtils","renderer/baserepresentation","renderer/shapebuilder"],function(a,b,c,d,e){var f=c.getUtils(),g=f.inherit(d);return b(g.prototype).extend({_init:function(){if(this.renderer.node_layer.activate(),this.type="Node",this.buildShape(),this.hidden=!1,this.ghost=!1,this.options.show_node_circles?(this.circle.strokeWidth=this.options.node_stroke_width,this.h_ratio=1):this.h_ratio=0,this.title=a('
                ').appendTo(this.renderer.labels_$),this.options.editor_mode){var b=c.getRenderer();this.normal_buttons=[new b.NodeEditButton(this.renderer,null),new b.NodeRemoveButton(this.renderer,null),new b.NodeLinkButton(this.renderer,null),new b.NodeEnlargeButton(this.renderer,null),new b.NodeShrinkButton(this.renderer,null)],this.options.hide_nodes&&this.normal_buttons.push(new b.NodeHideButton(this.renderer,null),new b.NodeShowButton(this.renderer,null)),this.pending_delete_buttons=[new b.NodeRevertButton(this.renderer,null)],this.all_buttons=this.normal_buttons.concat(this.pending_delete_buttons);for(var d=0;d$1')):this.title.text(h);var i=this._getStrokeWidth();this.title.css({left:this.paper_coords.x,top:this.paper_coords.y+this.circle_radius*this.h_ratio+this.options.node_label_distance+.5*i,opacity:g});var j=this.model.has("style")&&this.model.get("style").color||(this.model.get("created_by")||f._USER_PLACEHOLDER(this.renkan)).get("color"),k=this.model.has("style")&&this.model.get("style").dash?this.options.default_dash_array:null;this.circle.strokeWidth=i,this.circle.strokeColor=j,this.circle.dashArray=k;var l=this.paper_coords;this.all_buttons.forEach(function(a){a.moveTo(l)});var m=this.img;if(this.img=this.model.get("image"),this.img&&this.img!==m&&(this.showImage(),this.circle&&this.circle.sendToBack()),this.node_image&&!this.img&&(this.node_image.remove(),delete this.node_image),this.renderer.minimap){this.minimap_circle.fillColor=j;var n=this.renderer.toMinimapCoords(c),o=this.renderer.minimap.scale*d,p=new paper.Size([o,o]);this.minimap_circle.fitBounds(n.subtract(p),p.multiply(2))}if(!("undefined"!=typeof a&&"dontRedrawEdges"in a&&a.dontRedrawEdges)){var q=this;b.each(this.project.get("edges").filter(function(a){return a.get("to")===q.model||a.get("from")===q.model}),function(a){var b=q.renderer.getRepresentationByModel(a);b&&"undefined"!=typeof b.from_representation&&"undefined"!=typeof b.from_representation.paper_coords&&"undefined"!=typeof b.to_representation&&"undefined"!=typeof b.to_representation.paper_coords&&b.redraw()})}this.ghost?this.show(!0):this.hidden&&this.hide()},showImage:function(){var b=null;if("undefined"==typeof this.renderer.image_cache[this.img]?(b=new Image,this.renderer.image_cache[this.img]=b,b.src=this.img):b=this.renderer.image_cache[this.img],b.width){this.node_image&&this.node_image.remove(),this.renderer.node_layer.activate();var c=b.width,d=b.height,e=this.model.get("clip_path"),f="undefined"!=typeof e&&e,g=null,h=null,i=null;if(f){g=new paper.Path;var j=e.match(/[a-z][^a-z]+/gi)||[],k=[0,0],l=1/0,m=1/0,n=-1/0,o=-1/0,p=function(a,b){var e=a.slice(1).map(function(a,e){var f=parseFloat(a),g=e%2;return f=g?(f-.5)*d:(f-.5)*c,b&&(f+=k[g]),g?(m=Math.min(m,f),o=Math.max(o,f)):(l=Math.min(l,f),n=Math.max(n,f)),f});return k=e.slice(-2),e};j.forEach(function(a){var b=a.match(/([a-z]|[0-9.-]+)/gi)||[""];switch(b[0]){case"M":g.moveTo(p(b));break;case"m":g.moveTo(p(b,!0));break;case"L":g.lineTo(p(b));break;case"l":g.lineTo(p(b,!0));break;case"C":g.cubicCurveTo(p(b));break;case"c":g.cubicCurveTo(p(b,!0));break;case"Q":g.quadraticCurveTo(p(b));break;case"q":g.quadraticCurveTo(p(b,!0))}}),h=Math[this.options.node_images_fill_mode?"min":"max"](n-l,o-m)/2,i=new paper.Point((n+l)/2,(o+m)/2),this.options.show_node_circles||(this.h_ratio=(o-m)/(2*h))}else h=Math[this.options.node_images_fill_mode?"min":"max"](c,d)/2,i=new paper.Point(0,0),this.options.show_node_circles||(this.h_ratio=d/(2*h));var q=new paper.Raster(b);if(q.locked=!0,f&&(q=new paper.Group(g,q),q.opacity=.99,q.clipped=!0,g.__representation=this),this.options.clip_node_images){var r=this.shapeBuilder.getImageShape(i,h);q=new paper.Group(r,q),q.opacity=.99,q.clipped=!0,r.__representation=this}this.image_delta=i.divide(h),this.node_image=q,this.node_image.__representation=s,this.node_image.scale(this.circle_radius/h),this.node_image.position=this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius)),this.node_image.insertAbove(this.circle)}else{var s=this;a(b).on("load",function(){s.showImage()})}},paperShift:function(a){this.options.editor_mode?this.renkan.read_only||(this.is_dragging=!0,this.paper_coords=this.paper_coords.add(a),this.redraw()):this.renderer.paperShift(a)},openEditor:function(){this.renderer.removeRepresentationsOfType("editor");var a=this.renderer.addRepresentation("NodeEditor",null);a.source_representation=this,a.draw()},select:function(){this.selected=!0,this.circle.strokeWidth=this._getSelectedStrokeWidth(),this.renderer.isEditable()&&!this.hidden&&this.active_buttons.forEach(function(a){a.show()});var b=this.model.get("uri");b&&a(".Rk-Bin-Item").each(function(){var c=a(this);c.attr("data-uri")===b&&c.addClass("selected")}),this.options.editor_mode||this.openEditor(),this.renderer.minimap&&(this.minimap_circle.strokeWidth=this.options.minimap_highlight_weight,this.minimap_circle.strokeColor=this.options.minimap_highlight_color),this.hidden?this.show(!0):this.showNeighbors(!0),this._super("select")},hideButtons:function(){this.all_buttons.forEach(function(a){a.hide()}),delete this.buttonTimeout},unselect:function(b){if(!b||b.source_representation!==this){this.selected=!1;var c=this;this.buttons_timeout=setTimeout(function(){c.hideButtons()},200),this.circle.strokeWidth=this._getStrokeWidth(),a(".Rk-Bin-Item").removeClass("selected"),this.renderer.minimap&&(this.minimap_circle.strokeColor=void 0),this.hidden?this.hide():this.hideNeighbors(),this._super("unselect")}},hide:function(){var a=this;this.ghost=!1,this.hidden=!0,"undefined"!=typeof this.node_image&&(this.node_image.opacity=0),this.hideButtons(),this.circle.opacity=0,this.title.css("opacity",0),this.minimap_circle.opacity=0,b.each(this.project.get("edges").filter(function(b){return b.get("to")===a.model||b.get("from")===a.model}),function(b){var c=a.renderer.getRepresentationByModel(b);c&&"undefined"!=typeof c.from_representation&&"undefined"!=typeof c.from_representation.paper_coords&&"undefined"!=typeof c.to_representation&&"undefined"!=typeof c.to_representation.paper_coords&&c.hide()}),this.hideNeighbors()},show:function(a){var c=this;this.ghost=a,this.ghost?("undefined"!=typeof this.node_image&&(this.node_image.opacity=this.options.ghost_opacity),this.circle.opacity=this.options.ghost_opacity,this.title.css("opacity",this.options.ghost_opacity),this.minimap_circle.opacity=this.options.ghost_opacity):(this.hidden=!1,this.redraw()),b.each(this.project.get("edges").filter(function(a){return a.get("to")===c.model||a.get("from")===c.model}),function(a){var b=c.renderer.getRepresentationByModel(a);b&&"undefined"!=typeof b.from_representation&&"undefined"!=typeof b.from_representation.paper_coords&&"undefined"!=typeof b.to_representation&&"undefined"!=typeof b.to_representation.paper_coords&&b.show(c.ghost)})},hideNeighbors:function(){var a=this;b.each(this.project.get("edges").filter(function(b){return b.get("from")===a.model}),function(b){var c=a.renderer.getRepresentationByModel(b.get("to"));c&&c.ghost&&c.hide()})},showNeighbors:function(a){var c=this;b.each(this.project.get("edges").filter(function(a){return a.get("from")===c.model}),function(b){var d=c.renderer.getRepresentationByModel(b.get("to"));if(d&&d.hidden&&(d.show(a),!a)){var e=c.renderer.hiddenNodes.indexOf(d.model.id);-1!==e&&c.renderer.hiddenNodes.splice(e,1)}})},highlight:function(a){var b=a||!0;this.highlighted!==b&&(this.highlighted=b,this.redraw(),this.renderer.throttledPaperDraw())},unhighlight:function(){this.highlighted&&(this.highlighted=!1,this.redraw(),this.renderer.throttledPaperDraw())},saveCoords:function(){var a=this.renderer.toModelCoords(this.paper_coords),b={position:{x:a.x,y:a.y}};this.renderer.isEditable()&&this.model.set(b)},mousedown:function(a,b){b&&(this.renderer.unselectAll(),this.select())},mouseup:function(a,b){if(this.renderer.is_dragging&&this.renderer.isEditable())this.saveCoords();else if(this.hidden){var c=this.renderer.hiddenNodes.indexOf(this.model.id);-1!==c&&this.renderer.hiddenNodes.splice(c,1),this.show(!1),this.select()}else b||this.model.get("delete_scheduled")||this.openEditor(),this.model.trigger("clicked");this.renderer.click_target=null,this.renderer.is_dragging=!1,this.is_dragging=!1},destroy:function(){this._super("destroy"),this.all_buttons.forEach(function(a){a.destroy()}),this.circle.remove(),this.title.remove(),this.renderer.minimap&&this.minimap_circle.remove(),this.node_image&&this.node_image.remove()}}).value(),g}),define("renderer/edge",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){if(this.renderer.edge_layer.activate(),this.type="Edge",this.hidden=!1,this.ghost=!1,this.from_representation=this.renderer.getRepresentationByModel(this.model.get("from")),this.to_representation=this.renderer.getRepresentationByModel(this.model.get("to")),this.bundle=this.renderer.addToBundles(this),this.line=new paper.Path,this.line.add([0,0],[0,0],[0,0]),this.line.__representation=this,this.line.strokeWidth=this.options.edge_stroke_width,this.arrow_scale=1,this.arrow=new paper.Path,this.arrow.add([0,0],[this.options.edge_arrow_length,this.options.edge_arrow_width/2],[0,this.options.edge_arrow_width]),this.arrow.pivot=new paper.Point([this.options.edge_arrow_length/2,this.options.edge_arrow_width/2]),this.arrow.__representation=this,this.text=a('
                ').appendTo(this.renderer.labels_$),this.arrow_angle=0,this.options.editor_mode){var b=c.getRenderer();this.normal_buttons=[new b.EdgeEditButton(this.renderer,null),new b.EdgeRemoveButton(this.renderer,null)],this.pending_delete_buttons=[new b.EdgeRevertButton(this.renderer,null)],this.all_buttons=this.normal_buttons.concat(this.pending_delete_buttons);for(var d=0;d90&&(q-=180,r=r.multiply(-1)),-90>q&&(q+=180,r=r.multiply(-1));var w=this.model.get("title")||this.renkan.translate(this.options.label_untitled_edges)||"";w=e.shortenText(w,this.options.node_label_max_length),this.text.text(w);var x=this.paper_coords.add(r);this.text.css({left:x.x,top:x.y,transform:"rotate("+q+"deg)","-moz-transform":"rotate("+q+"deg)","-webkit-transform":"rotate("+q+"deg)",opacity:c}),this.text_angle=q;var y=this.paper_coords;this.all_buttons.forEach(function(a){a.moveTo(y)}),this.renderer.minimap&&(this.minimap_line.strokeColor=t,this.minimap_line.segments[0].point=this.renderer.toMinimapCoords(new paper.Point(this.from_representation.model.get("position"))),this.minimap_line.segments[1].point=this.renderer.toMinimapCoords(new paper.Point(this.to_representation.model.get("position"))))}},hide:function(){this.hidden=!0,this.ghost=!1,this.text.hide(),this.line.visible=!1,this.arrow.visible=!1,this.minimap_line.visible=!1},show:function(a){this.ghost=a,this.ghost?(this.text.css("opacity",.3),this.line.opacity=.3,this.arrow.opacity=.3,this.minimap_line.opacity=.3):(this.hidden=!1,this.text.css("opacity",1),this.line.opacity=1,this.arrow.opacity=1,this.minimap_line.opacity=1),this.text.show(),this.line.visible=!0,this.arrow.visible=!0,this.minimap_line.visible=!0,this.redraw()},openEditor:function(){this.renderer.removeRepresentationsOfType("editor");var a=this.renderer.addRepresentation("EdgeEditor",null);a.source_representation=this,a.draw()},select:function(){this.selected=!0,this.line.strokeWidth=this._getSelectedStrokeWidth(),this.renderer.isEditable()&&this.active_buttons.forEach(function(a){a.show()}),this.options.editor_mode||this.openEditor(),this._super("select")},unselect:function(a){a&&a.source_representation===this||(this.selected=!1,this.options.editor_mode&&this.all_buttons.forEach(function(a){a.hide()}),this.line.strokeWidth=this._getStrokeWidth(),this._super("unselect"))},mousedown:function(a,b){b&&(this.renderer.unselectAll(),this.select())},mouseup:function(a,b){!this.renkan.read_only&&this.renderer.is_dragging?(this.from_representation.saveCoords(),this.to_representation.saveCoords(),this.from_representation.is_dragging=!1,this.to_representation.is_dragging=!1):(b||this.openEditor(),this.model.trigger("clicked")),this.renderer.click_target=null,this.renderer.is_dragging=!1},paperShift:function(a){this.options.editor_mode?this.options.read_only||(this.from_representation.paperShift(a),this.to_representation.paperShift(a)):this.renderer.paperShift(a)},destroy:function(){this._super("destroy"),this.line.remove(),this.arrow.remove(),this.text.remove(),this.renderer.minimap&&this.minimap_line.remove(),this.all_buttons.forEach(function(a){a.destroy()});var a=this;this.bundle.edges=b.reject(this.bundle.edges,function(b){return a===b})}}).value(),f}),define("renderer/tempedge",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.renderer.edge_layer.activate(),this.type="Temp-edge";var a=(this.project.get("users").get(this.renkan.current_user)||e._USER_PLACEHOLDER(this.renkan)).get("color");this.line=new paper.Path,this.line.strokeColor=a,this.line.dashArray=[4,2],this.line.strokeWidth=this.options.selected_edge_stroke_width,this.line.add([0,0],[0,0]),this.line.__representation=this,this.arrow=new paper.Path,this.arrow.fillColor=a,this.arrow.add([0,0],[this.options.edge_arrow_length,this.options.edge_arrow_width/2],[0,this.options.edge_arrow_width]),this.arrow.__representation=this,this.arrow_angle=0},redraw:function(){var a=this.from_representation.paper_coords,b=this.end_pos,c=b.subtract(a).angle,d=a.add(b).divide(2);this.line.segments[0].point=a,this.line.segments[1].point=b,this.arrow.rotate(c-this.arrow_angle),this.arrow.position=d,this.arrow_angle=c},paperShift:function(a){if(!this.renderer.isEditable())return this.renderer.removeRepresentation(_this),void paper.view.draw();this.end_pos=this.end_pos.add(a);var b=paper.project.hitTest(this.end_pos);this.renderer.findTarget(b),this.redraw()},mouseup:function(a){var b=paper.project.hitTest(a.point),c=this.from_representation.model,d=!0;if(b&&"undefined"!=typeof b.item.__representation){var f=b.item.__representation;if("Node"===f.type.substr(0,4)){var g=f.model||f.source_representation.model;if(c!==g){var h={id:e.getUID("edge"),created_by:this.renkan.current_user,from:c,to:g};this.renderer.isEditable()&&this.project.addEdge(h)}}(c===f.model||f.source_representation&&f.source_representation.model===c)&&(d=!1,this.renderer.is_dragging=!0)}d&&(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentation(this),paper.view.draw())},destroy:function(){this.arrow.remove(),this.line.remove()}}).value(),f}),define("renderer/baseeditor",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.renderer.buttons_layer.activate(),this.type="editor",this.editor_block=new paper.Path;var c=b.map(b.range(8),function(){return[0,0]});this.editor_block.add.apply(this.editor_block,c),this.editor_block.strokeWidth=this.options.tooltip_border_width,this.editor_block.strokeColor=this.options.tooltip_border_color,this.editor_block.opacity=.8,this.editor_$=a("
                ").appendTo(this.renderer.editor_$).css({position:"absolute",opacity:.8}).hide()},destroy:function(){this.editor_block.remove(),this.editor_$.remove()}}).value(),f}),define("renderer/nodeeditor",["jquery","underscore","requtils","renderer/baseeditor","renderer/shapebuilder","ckeditor-jquery"],function(a,b,c,d,e){var f=c.getUtils(),g=f.inherit(d);return b(g.prototype).extend({_init:function(){d.prototype._init.apply(this),this.template=this.options.templates["templates/nodeeditor.html"],this.readOnlyTemplate=this.options.node_editor_templates},draw:function(){var c=this.source_representation.model,d=c.get("created_by")||f._USER_PLACEHOLDER(this.renkan),g=this.renderer.isEditable()?this.template:this.readOnlyTemplate[c.get("type")]||this.readOnlyTemplate["default"],h=this.options.static_url+"img/image-placeholder.png",i=c.get("size")||0;this.editor_$.html(g({node:{_id:c.get("_id"),has_creator:!!c.get("created_by"),title:c.get("title"),uri:c.get("uri"),type:c.get("type")||"default",short_uri:f.shortenText((c.get("uri")||"").replace(/^(https?:\/\/)?(www\.)?/,"").replace(/\/$/,""),40),description:c.get("description"),image:c.get("image")||"",image_placeholder:h,color:c.has("style")&&c.get("style").color||d.get("color"),thickness:c.has("style")&&c.get("style").thickness||1,dash:c.has("style")&&c.get("style").dash?"checked":"",clip_path:c.get("clip_path")||!1,created_by_color:d.get("color"),created_by_title:d.get("title"),size:(i>0?"+":"")+i,shape:c.get("shape")||"circle"},renkan:this.renkan,options:this.options,shortenText:f.shortenText,shapes:b(e.builders).omit("svg").keys().value(),types:b(this.options.node_editor_templates).keys().value()})),this.redraw();var j=this,k=j.options.show_node_editor_description_richtext?a(".Rk-Edit-Description").ckeditor(j.options.richtext_editor_config):!1,l=function(){j.renderer.removeRepresentation(j),paper.view.draw()};if(j.cleanEditor=function(){if(j.editor_$.off("keyup"),j.editor_$.find("input, textarea, select").off("change keyup paste"),j.editor_$.find(".Rk-Edit-Image-File").off("change"),j.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").off("hover"),j.editor_$.find(".Rk-Edit-Size-Btn").off("click"),j.editor_$.find(".Rk-Edit-Image-Del").off("click"),j.editor_$.find(".Rk-Edit-ColorPicker").find("li").off("hover click"),j.editor_$.find(".Rk-CloseX").off("click"),j.editor_$.find(".Rk-Edit-Goto").off("click"),j.options.show_node_editor_description_richtext&&"undefined"!=typeof k.editor){var a=k.editor;delete k.editor,a.focusManager.blur(!0),a.destroy()}},this.editor_$.find(".Rk-CloseX").click(function(a){a.preventDefault(),l()}),this.editor_$.find(".Rk-Edit-Goto").click(function(){return c.get("uri")?void 0:!1}),this.renderer.isEditable()){var m=b.throttle(function(){b.defer(function(){if(j.renderer.isEditable()){var a={title:j.editor_$.find(".Rk-Edit-Title").val()};if(j.options.show_node_editor_uri&&(a.uri=j.editor_$.find(".Rk-Edit-URI").val(),j.editor_$.find(".Rk-Edit-Goto").attr("href",a.uri||"#")),j.options.show_node_editor_image&&(a.image=j.editor_$.find(".Rk-Edit-Image").val(),j.editor_$.find(".Rk-Edit-ImgPreview").attr("src",a.image||h)),j.options.show_node_editor_description&&(j.options.show_node_editor_description_richtext?"undefined"!=typeof k.editor&&k.editor.checkDirty()&&(a.description=k.editor.getData(),k.editor.resetDirty()):a.description=j.editor_$.find(".Rk-Edit-Description").val()),j.options.show_node_editor_style){var d=j.editor_$.find(".Rk-Edit-Dash").is(":checked");a.style=b.assign(c.has("style")&&b.clone(c.get("style"))||{},{dash:d})}j.options.change_shapes&&c.get("shape")!==j.editor_$.find(".Rk-Edit-Shape").val()&&(a.shape=j.editor_$.find(".Rk-Edit-Shape").val()),j.options.change_types&&c.get("type")!==j.editor_$.find(".Rk-Edit-Type").val()&&(a.type=j.editor_$.find(".Rk-Edit-Type").val()),c.set(a),j.redraw()}else l()})},1e3);this.editor_$.on("keyup",function(a){27===a.keyCode&&l()}),this.editor_$.find("input, textarea, select").on("change keyup paste",m),j.options.show_node_editor_description&&j.options.show_node_editor_description_richtext&&"undefined"!=typeof k.editor&&(k.editor.on("change",m),k.editor.on("blur",m)),j.options.allow_image_upload&&this.editor_$.find(".Rk-Edit-Image-File").change(function(){if(this.files.length){var a=this.files[0],b=new FileReader;if("image"!==a.type.substr(0,5))return void alert(j.renkan.translate("This file is not an image"));if(a.size>1024*j.options.uploaded_image_max_kb)return void alert(j.renkan.translate("Image size must be under ")+j.options.uploaded_image_max_kb+j.renkan.translate("KB"));b.onload=function(a){j.editor_$.find(".Rk-Edit-Image").val(a.target.result),m()},b.readAsDataURL(a)}}),this.editor_$.find(".Rk-Edit-Title")[0].focus();var n=j.editor_$.find(".Rk-Edit-ColorPicker");this.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").hover(function(a){a.preventDefault(),n.show()},function(a){a.preventDefault(),n.hide()}),n.find("li").hover(function(b){b.preventDefault(),j.editor_$.find(".Rk-Edit-Color").css("background",a(this).attr("data-color"))},function(a){a.preventDefault(),j.editor_$.find(".Rk-Edit-Color").css("background",c.has("style")&&c.get("style").color||(c.get("created_by")||f._USER_PLACEHOLDER(j.renkan)).get("color"))}).click(function(d){d.preventDefault(),j.renderer.isEditable()?(c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{color:a(this).attr("data-color")})),n.hide(),paper.view.draw()):l()});var o=function(a){if(j.renderer.isEditable()){var b=a+(c.get("size")||0);j.editor_$.find("#Rk-Edit-Size-Value").text((b>0?"+":"")+b),c.set("size",b),paper.view.draw() +}else l()};this.editor_$.find("#Rk-Edit-Size-Down").click(function(){return o(-1),!1}),this.editor_$.find("#Rk-Edit-Size-Up").click(function(){return o(1),!1});var p=function(a){if(j.renderer.isEditable()){var d=c.has("style")&&c.get("style").thickness||1,e=a+d;1>e?e=1:e>j.options.node_stroke_witdh_scale&&(e=j.options.node_stroke_witdh_scale),e!==d&&(j.editor_$.find("#Rk-Edit-Thickness-Value").text(e),c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{thickness:e})),paper.view.draw())}else l()};this.editor_$.find("#Rk-Edit-Thickness-Down").click(function(){return p(-1),!1}),this.editor_$.find("#Rk-Edit-Thickness-Up").click(function(){return p(1),!1}),this.editor_$.find(".Rk-Edit-Image-Del").click(function(){return j.editor_$.find(".Rk-Edit-Image").val(""),m(),!1})}else if("object"==typeof this.source_representation.highlighted){var q=this.source_representation.highlighted.replace(b(c.get("title")).escape(),'$1');this.editor_$.find(".Rk-Display-Title"+(c.get("uri")?" a":"")).html(q),this.options.show_node_tooltip_description&&this.editor_$.find(".Rk-Display-Description").html(this.source_representation.highlighted.replace(b(c.get("description")).escape(),'$1'))}this.editor_$.find("img").load(function(){j.redraw()})},redraw:function(){if(this.options.popup_editor){var a=this.source_representation.paper_coords;f.drawEditBox(this.options,a,this.editor_block,.75*this.source_representation.circle_radius,this.editor_$)}this.editor_$.show(),paper.view.draw()},destroy:function(){"undefined"!=typeof this.cleanEditor&&this.cleanEditor(),this.editor_block.remove(),this.editor_$.remove()}}).value(),g}),define("renderer/edgeeditor",["jquery","underscore","requtils","renderer/baseeditor"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){d.prototype._init.apply(this),this.template=this.options.templates["templates/edgeeditor.html"],this.readOnlyTemplate=this.options.templates["templates/edgeeditor_readonly.html"]},draw:function(){var c=this.source_representation.model,d=c.get("from"),f=c.get("to"),g=c.get("created_by")||e._USER_PLACEHOLDER(this.renkan),h=this.renderer.isEditable()?this.template:this.readOnlyTemplate;this.editor_$.html(h({edge:{has_creator:!!c.get("created_by"),title:c.get("title"),uri:c.get("uri"),short_uri:e.shortenText((c.get("uri")||"").replace(/^(https?:\/\/)?(www\.)?/,"").replace(/\/$/,""),40),description:c.get("description"),color:c.has("style")&&c.get("style").color||g.get("color"),dash:c.has("style")&&c.get("style").dash?"checked":"",arrow:c.has("style")&&c.get("style").arrow||!c.has("style")||"undefined"==typeof c.get("style").arrow?"checked":"",thickness:c.has("style")&&c.get("style").thickness||1,from_title:d.get("title"),to_title:f.get("title"),from_color:d.has("style")&&d.get("style").color||(d.get("created_by")||e._USER_PLACEHOLDER(this.renkan)).get("color"),to_color:f.has("style")&&f.get("style").color||(f.get("created_by")||e._USER_PLACEHOLDER(this.renkan)).get("color"),created_by_color:g.get("color"),created_by_title:g.get("title")},renkan:this.renkan,shortenText:e.shortenText,options:this.options})),this.redraw();var i=this,j=function(){i.renderer.removeRepresentation(i),i.editor_$.find(".Rk-Edit-Size-Btn").off("click"),paper.view.draw()};if(this.editor_$.find(".Rk-CloseX").click(j),this.editor_$.find(".Rk-Edit-Goto").click(function(){return c.get("uri")?void 0:!1}),this.renderer.isEditable()){var k=b.throttle(function(){b.defer(function(){if(i.renderer.isEditable()){var a={title:i.editor_$.find(".Rk-Edit-Title").val()};if(i.options.show_edge_editor_uri&&(a.uri=i.editor_$.find(".Rk-Edit-URI").val()),i.options.show_node_editor_style){var d=i.editor_$.find(".Rk-Edit-Dash").is(":checked"),e=i.editor_$.find(".Rk-Edit-Arrow").is(":checked");a.style=b.assign(c.has("style")&&b.clone(c.get("style"))||{},{dash:d,arrow:e})}i.editor_$.find(".Rk-Edit-Goto").attr("href",a.uri||"#"),c.set(a),paper.view.draw()}else j()})},500);this.editor_$.on("keyup",function(a){27===a.keyCode&&j()}),this.editor_$.find("input").on("keyup change paste",k),this.editor_$.find(".Rk-Edit-Vocabulary").change(function(){var b=a(this),c=b.val();c&&(i.editor_$.find(".Rk-Edit-Title").val(b.find(":selected").text()),i.editor_$.find(".Rk-Edit-URI").val(c),k())}),this.editor_$.find(".Rk-Edit-Direction").click(function(){i.renderer.isEditable()?(c.set({from:c.get("to"),to:c.get("from")}),i.draw()):j()});var l=i.editor_$.find(".Rk-Edit-ColorPicker");this.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").hover(function(a){a.preventDefault(),l.show()},function(a){a.preventDefault(),l.hide()}),l.find("li").hover(function(b){b.preventDefault(),i.editor_$.find(".Rk-Edit-Color").css("background",a(this).attr("data-color"))},function(a){a.preventDefault(),i.editor_$.find(".Rk-Edit-Color").css("background",c.has("style")&&c.get("style").color||(c.get("created_by")||e._USER_PLACEHOLDER(i.renkan)).get("color"))}).click(function(d){d.preventDefault(),i.renderer.isEditable()?(c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{color:a(this).attr("data-color")})),l.hide(),paper.view.draw()):j()});var m=function(a){if(i.renderer.isEditable()){var d=c.has("style")&&c.get("style").thickness||1,e=a+d;1>e?e=1:e>i.options.node_stroke_witdh_scale&&(e=i.options.node_stroke_witdh_scale),e!==d&&(i.editor_$.find("#Rk-Edit-Thickness-Value").text(e),c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{thickness:e})),paper.view.draw())}else j()};this.editor_$.find("#Rk-Edit-Thickness-Down").click(function(){return m(-1),!1}),this.editor_$.find("#Rk-Edit-Thickness-Up").click(function(){return m(1),!1})}},redraw:function(){if(this.options.popup_editor){var a=this.source_representation.paper_coords;e.drawEditBox(this.options,a,this.editor_block,5,this.editor_$)}this.editor_$.show(),paper.view.draw()}}).value(),f}),define("renderer/nodebutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({setSectorSize:function(){var a=this.source_representation.circle_radius;a!==this.lastSectorInner&&(this.sector&&this.sector.destroy(),this.sector=this.renderer.drawSector(this,1+a,e._NODE_BUTTON_WIDTH+a,this.startAngle,this.endAngle,1,this.imageName,this.renkan.translate(this.text)),this.lastSectorInner=a)},unselect:function(){d.prototype.unselect.apply(this,Array.prototype.slice.call(arguments,1)),this.source_representation&&this.source_representation.buttons_timeout&&(clearTimeout(this.source_representation.buttons_timeout),this.source_representation.hideButtons())},select:function(){this.source_representation&&this.source_representation.buttons_timeout&&clearTimeout(this.source_representation.buttons_timeout),this.sector.select()}}).value(),f}),define("renderer/nodeeditbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-edit-button",this.lastSectorInner=0,this.startAngle=this.options.hide_nodes?-125:-135,this.endAngle=this.options.hide_nodes?-55:-45,this.imageName="edit",this.text="Edit"},mouseup:function(){this.renderer.is_dragging||this.source_representation.openEditor()}}).value(),f}),define("renderer/noderemovebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-remove-button",this.lastSectorInner=0,this.startAngle=this.options.hide_nodes?-10:0,this.endAngle=this.options.hide_nodes?45:90,this.imageName="remove",this.text="Remove"},mouseup:function(){if(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable())if(this.options.element_delete_delay){var a=e.getUID("delete");this.renderer.delete_list.push({id:a,time:(new Date).valueOf()+this.options.element_delete_delay}),this.source_representation.model.set("delete_scheduled",a)}else confirm(this.renkan.translate("Do you really wish to remove node ")+'"'+this.source_representation.model.get("title")+'"?')&&this.project.removeNode(this.source_representation.model)}}).value(),f}),define("renderer/nodehidebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-hide-button",this.lastSectorInner=0,this.startAngle=45,this.endAngle=90,this.imageName="hide",this.text="Hide"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable()&&this.renderer.addHiddenNode(this.source_representation.model)}}).value(),f}),define("renderer/nodeshowbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-show-button",this.lastSectorInner=0,this.startAngle=90,this.endAngle=135,this.imageName="show",this.text="Show"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable()&&this.source_representation.showNeighbors(!1)}}).value(),f}),define("renderer/noderevertbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-revert-button",this.lastSectorInner=0,this.startAngle=-135,this.endAngle=135,this.imageName="revert",this.text="Cancel deletion"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.isEditable()&&this.source_representation.model.unset("delete_scheduled")}}).value(),f}),define("renderer/nodelinkbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-link-button",this.lastSectorInner=0,this.startAngle=this.options.hide_nodes?135:90,this.endAngle=this.options.hide_nodes?190:180,this.imageName="link",this.text="Link to another node"},mousedown:function(a){if(this.renderer.isEditable()){var b=this.renderer.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]);this.renderer.click_target=null,this.renderer.removeRepresentationsOfType("editor"),this.renderer.addTempEdge(this.source_representation,c)}}}).value(),f}),define("renderer/nodeenlargebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-enlarge-button",this.lastSectorInner=0,this.startAngle=this.options.hide_nodes?-55:-45,this.endAngle=this.options.hide_nodes?-10:0,this.imageName="enlarge",this.text="Enlarge"},mouseup:function(){var a=1+(this.source_representation.model.get("size")||0);this.source_representation.model.set("size",a),this.source_representation.select(),this.select(),paper.view.draw()}}).value(),f}),define("renderer/nodeshrinkbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-shrink-button",this.lastSectorInner=0,this.startAngle=this.options.hide_nodes?-170:-180,this.endAngle=this.options.hide_nodes?-125:-135,this.imageName="shrink",this.text="Shrink"},mouseup:function(){var a=-1+(this.source_representation.model.get("size")||0);this.source_representation.model.set("size",a),this.source_representation.select(),this.select(),paper.view.draw()}}).value(),f}),define("renderer/edgeeditbutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-edit-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-270,-90,1,"edit",this.renkan.translate("Edit"))},mouseup:function(){this.renderer.is_dragging||this.source_representation.openEditor()}}).value(),f}),define("renderer/edgeremovebutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-remove-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-90,90,1,"remove",this.renkan.translate("Remove"))},mouseup:function(){if(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable())if(this.options.element_delete_delay){var a=e.getUID("delete");this.renderer.delete_list.push({id:a,time:(new Date).valueOf()+this.options.element_delete_delay}),this.source_representation.model.set("delete_scheduled",a)}else confirm(this.renkan.translate("Do you really wish to remove edge ")+'"'+this.source_representation.model.get("title")+'"?')&&this.project.removeEdge(this.source_representation.model)}}).value(),f}),define("renderer/edgerevertbutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-revert-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-135,135,1,"revert",this.renkan.translate("Cancel deletion"))},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.isEditable()&&this.source_representation.model.unset("delete_scheduled")}}).value(),f}),define("renderer/miniframe",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({paperShift:function(a){this.renderer.offset=this.renderer.offset.subtract(a.divide(this.renderer.minimap.scale).multiply(this.renderer.scale)),this.renderer.redraw()},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1}}).value(),f}),define("renderer/scene",["jquery","underscore","filesaver","requtils","renderer/miniframe"],function(a,b,c,d,e){var f=d.getUtils(),g=function(c){this.renkan=c,this.$=a(".Rk-Render"),this.representations=[],this.$.html(c.options.templates["templates/scene.html"](c)),this.onStatusChange(),this.canvas_$=this.$.find(".Rk-Canvas"),this.labels_$=this.$.find(".Rk-Labels"),this.editor_$=c.options.popup_editor?this.$.find(".Rk-Editor"):a("#"+c.options.editor_panel),this.notif_$=this.$.find(".Rk-Notifications"),paper.setup(this.canvas_$[0]),this.scale=1,this.initialScale=1,this.offset=paper.view.center,this.totalScroll=0,this.hiddenNodes=[],this.mouse_down=!1,this.click_target=null,this.selected_target=null,this.edge_layer=new paper.Layer,this.node_layer=new paper.Layer,this.buttons_layer=new paper.Layer,this.delete_list=[],this.redrawActive=!0,c.options.show_minimap&&(this.minimap={background_layer:new paper.Layer,edge_layer:new paper.Layer,node_layer:new paper.Layer,node_group:new paper.Group,size:new paper.Size(c.options.minimap_width,c.options.minimap_height)},this.minimap.background_layer.activate(),this.minimap.topleft=paper.view.bounds.bottomRight.subtract(this.minimap.size),this.minimap.rectangle=new paper.Path.Rectangle(this.minimap.topleft.subtract([2,2]),this.minimap.size.add([4,4])),this.minimap.rectangle.fillColor=c.options.minimap_background_color,this.minimap.rectangle.strokeColor=c.options.minimap_border_color,this.minimap.rectangle.strokeWidth=4,this.minimap.offset=new paper.Point(this.minimap.size.divide(2)),this.minimap.scale=.1,this.minimap.node_layer.activate(),this.minimap.cliprectangle=new paper.Path.Rectangle(this.minimap.topleft,this.minimap.size),this.minimap.node_group.addChild(this.minimap.cliprectangle),this.minimap.node_group.clipped=!0,this.minimap.miniframe=new paper.Path.Rectangle(this.minimap.topleft,this.minimap.size),this.minimap.node_group.addChild(this.minimap.miniframe),this.minimap.miniframe.fillColor="#c0c0ff",this.minimap.miniframe.opacity=.3,this.minimap.miniframe.strokeColor="#000080",this.minimap.miniframe.strokeWidth=2,this.minimap.miniframe.__representation=new e(this,null)),this.throttledPaperDraw=b(function(){paper.view.draw()}).throttle(100).value(),this.bundles=[],this.click_mode=!1;var d=this,g=!0,h=1,i=!1,j=0,k=0;this.image_cache={},this.icon_cache={},["edit","remove","hide","show","link","enlarge","shrink","revert"].forEach(function(a){var b=new Image;b.src=c.options.static_url+"img/"+a+".png",d.icon_cache[a]=b});var l=b.throttle(function(a,b){d.onMouseMove(a,b)},f._MOUSEMOVE_RATE);this.canvas_$.on({mousedown:function(a){a.preventDefault(),d.onMouseDown(a,!1)},mousemove:function(a){a.preventDefault(),l(a,!1)},mouseup:function(a){a.preventDefault(),d.onMouseUp(a,!1)},mousewheel:function(a,b){c.options.zoom_on_scroll&&(a.preventDefault(),g&&d.onScroll(a,b))},touchstart:function(a){a.preventDefault();var b=a.originalEvent.touches[0];c.options.allow_double_click&&new Date-_lastTap0&&this.renkan.options.save_view&&this.$.find(".Rk-ZoomSetSaved").show(),this.$.find(".Rk-CurrentUser").mouseenter(function(){d.$.find(".Rk-UserList").slideDown()}),this.$.find(".Rk-Users").mouseleave(function(){d.$.find(".Rk-UserList").slideUp()}),m(".Rk-FullScreen-Button","fullScreen"),m(".Rk-AddNode-Button","addNodeBtn"),m(".Rk-AddEdge-Button","addEdgeBtn"),m(".Rk-Save-Button","save"),m(".Rk-Open-Button","open"),m(".Rk-Export-Button","exportProject"),this.$.find(".Rk-Bookmarklet-Button").attr("href","javascript:"+f._BOOKMARKLET_CODE(c)).click(function(){return d.notif_$.text(c.translate("Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.")).fadeIn().delay(5e3).fadeOut(),!1}),this.$.find(".Rk-TopBar-Button").mouseover(function(){a(this).find(".Rk-TopBar-Tooltip").show()}).mouseout(function(){a(this).find(".Rk-TopBar-Tooltip").hide()}),m(".Rk-Fold-Bins","foldBins"),paper.view.onResize=function(a){var b,c=a.width,e=a.height;d.minimap&&(d.minimap.topleft=paper.view.bounds.bottomRight.subtract(d.minimap.size),d.minimap.rectangle.fitBounds(d.minimap.topleft.subtract([2,2]),d.minimap.size.add([4,4])),d.minimap.cliprectangle.fitBounds(d.minimap.topleft,d.minimap.size));var f=e/(e-a.delta.height),g=c/(c-a.delta.width);b=c>e?f:g,d.resizeZoom(g,f,b),d.redraw()};var n=b.throttle(function(){d.redraw()},50);this.addRepresentations("Node",this.renkan.project.get("nodes")),this.addRepresentations("Edge",this.renkan.project.get("edges")),this.renkan.project.on("change:title",function(){d.$.find(".Rk-PadTitle").val(c.project.get("title"))}),this.$.find(".Rk-PadTitle").on("keyup input paste",function(){c.project.set({title:a(this).val()})});var o=b.throttle(function(){d.redrawUsers()},100);if(o(),this.renkan.project.on("change:saveStatus",function(){switch(d.renkan.project.get("saveStatus")){case 0:d.$.find(".Rk-Save-Button").removeClass("to-save"),d.$.find(".Rk-Save-Button").removeClass("saving"),d.$.find(".Rk-Save-Button").addClass("saved");break;case 1:d.$.find(".Rk-Save-Button").removeClass("saved"),d.$.find(".Rk-Save-Button").removeClass("saving"),d.$.find(".Rk-Save-Button").addClass("to-save");break;case 2:d.$.find(".Rk-Save-Button").removeClass("saved"),d.$.find(".Rk-Save-Button").removeClass("to-save"),d.$.find(".Rk-Save-Button").addClass("saving")}}),this.renkan.project.on("change:loadingStatus",function(){if(d.renkan.project.get("loadingStatus")){d.$.find(".loader").addClass("run"),setTimeout(function(){d.$.find(".loader").hide(250)},3e3)}else Backbone.history.start()}),this.renkan.project.on("add:users remove:users",o),this.renkan.project.on("add:views remove:views",function(){d.renkan.project.get("views").length>0?d.$.find(".Rk-ZoomSetSaved").show():d.$.find(".Rk-ZoomSetSaved").hide()}),this.renkan.project.on("add:nodes",function(a){d.addRepresentation("Node",a),d.renkan.project.get("loadingStatus")||n()}),this.renkan.project.on("add:edges",function(a){d.addRepresentation("Edge",a),d.renkan.project.get("loadingStatus")||n()}),this.renkan.project.on("change:title",function(a,b){var c=d.$.find(".Rk-PadTitle");c.is("input")?c.val()!==b&&c.val(b):c.text(b)}),this.renkan.router.on("router",function(a){d.parameters(a)}),c.options.size_bug_fix){var p="number"==typeof c.options.size_bug_fix?c.options.size_bug_fix:500;window.setTimeout(function(){d.fixSize()},p)}if(c.options.force_resize&&a(window).resize(function(){d.autoScale()}),c.options.show_user_list&&c.options.user_color_editable){var q=this.$.find(".Rk-Users .Rk-Edit-ColorPicker-Wrapper"),r=this.$.find(".Rk-Users .Rk-Edit-ColorPicker");q.hover(function(a){d.isEditable()&&(a.preventDefault(),r.show())},function(a){a.preventDefault(),r.hide()}),r.find("li").mouseenter(function(b){d.isEditable()&&(b.preventDefault(),d.$.find(".Rk-CurrentUser-Color").css("background",a(this).attr("data-color")))})}if(c.options.show_search_field){var s="";this.$.find(".Rk-GraphSearch-Field").on("keyup change paste input",function(){var b=a(this),e=b.val();if(e!==s)if(s=e,e.length<2)c.project.get("nodes").each(function(a){d.getRepresentationByModel(a).unhighlight()});else{var g=f.regexpFromTextOrArray(e);c.project.get("nodes").each(function(a){g.test(a.get("title"))||g.test(a.get("description"))?d.getRepresentationByModel(a).highlight(g):d.getRepresentationByModel(a).unhighlight()})}})}this.redraw(),window.setInterval(function(){var a=(new Date).valueOf();d.delete_list.forEach(function(b){if(a>=b.time){var d=c.project.get("nodes").findWhere({delete_scheduled:b.id});d&&project.removeNode(d),d=c.project.get("edges").findWhere({delete_scheduled:b.id}),d&&project.removeEdge(d)}}),d.delete_list=d.delete_list.filter(function(a){return c.project.get("nodes").findWhere({delete_scheduled:a.id})||c.project.get("edges").findWhere({delete_scheduled:a.id})})},500),this.minimap&&window.setInterval(function(){d.rescaleMinimap()},2e3)};return b(g.prototype).extend({fixSize:function(){if(this.renkan.options.default_view&&this.renkan.project.get("views").length>0){var a=this.renkan.project.get("views").last();this.setScale(a.get("zoom_level"),new paper.Point(a.get("offset")))}else this.autoScale()},drawSector:function(b,c,d,e,f,g,h,i){var j=this.renkan.options,k=e*Math.PI/180,l=f*Math.PI/180,m=this.icon_cache[h],n=-Math.sin(k),o=Math.cos(k),p=Math.cos(k)*c+g*n,q=Math.sin(k)*c+g*o,r=Math.cos(k)*d+g*n,s=Math.sin(k)*d+g*o,t=-Math.sin(l),u=Math.cos(l),v=Math.cos(l)*c-g*t,w=Math.sin(l)*c-g*u,x=Math.cos(l)*d-g*t,y=Math.sin(l)*d-g*u,z=(c+d)/2,A=(k+l)/2,B=Math.cos(A)*z,C=Math.sin(A)*z,D=Math.cos(A)*c,E=Math.cos(A)*d,F=Math.sin(A)*c,G=Math.sin(A)*d,H=Math.cos(A)*(d+3),I=Math.sin(A)*(d+j.buttons_label_font_size)+j.buttons_label_font_size/2;this.buttons_layer.activate();var J=new paper.Path;J.add([p,q]),J.arcTo([D,F],[v,w]),J.lineTo([x,y]),J.arcTo([E,G],[r,s]),J.fillColor=j.buttons_background,J.opacity=.5,J.closed=!0,J.__representation=b;var K=new paper.PointText(H,I);K.characterStyle={fontSize:j.buttons_label_font_size,fillColor:j.buttons_label_color},K.paragraphStyle.justification=H>2?"left":-2>H?"right":"center",K.visible=!1;var L=!1,M=new paper.Point(-200,-200),N=new paper.Group([J,K]),O=N.position,P=new paper.Point([B,C]),Q=new paper.Point(0,0);K.content=i,N.pivot=N.bounds.center,N.visible=!1,N.position=M;var R={show:function(){L=!0,N.position=Q.add(O),N.visible=!0},moveTo:function(a){Q=a,L&&(N.position=a.add(O))},hide:function(){L=!1,N.visible=!1,N.position=M},select:function(){J.opacity=.8,K.visible=!0},unselect:function(){J.opacity=.5,K.visible=!1},destroy:function(){N.remove()}},S=function(){var a=new paper.Raster(m);a.position=P.add(N.position).subtract(O),a.locked=!0,N.addChild(a)};return m.width?S():a(m).on("load",S),R},addToBundles:function(a){var c=b(this.bundles).find(function(b){return b.from===a.from_representation&&b.to===a.to_representation||b.from===a.to_representation&&b.to===a.from_representation});return"undefined"!=typeof c?c.edges.push(a):(c={from:a.from_representation,to:a.to_representation,edges:[a],getPosition:function(a){var c=a.from_representation===this.from?1:-1;return c*(b(this.edges).indexOf(a)-(this.edges.length-1)/2)}},this.bundles.push(c)),c},isEditable:function(){return this.renkan.options.editor_mode&&!this.renkan.read_only},onStatusChange:function(){var a=this.$.find(".Rk-Save-Button"),b=a.find(".Rk-TopBar-Tooltip-Contents");this.renkan.read_only?(a.removeClass("disabled Rk-Save-Online").addClass("Rk-Save-ReadOnly"),b.text(this.renkan.translate("Connection lost"))):this.renkan.options.manual_save?(a.removeClass("Rk-Save-ReadOnly Rk-Save-Online"),b.text(this.renkan.translate("Save Project"))):(a.removeClass("disabled Rk-Save-ReadOnly").addClass("Rk-Save-Online"),b.text(this.renkan.translate("Auto-save enabled"))),this.redrawUsers()},setScale:function(a,b){a/this.initialScale>f._MIN_SCALE&&a/this.initialScale1){var c=b.map(function(a){return a.get("position").x}),d=b.map(function(a){return a.get("position").y}),e=Math.min.apply(Math,c),f=Math.min.apply(Math,d),g=Math.max.apply(Math,c),h=Math.max.apply(Math,d),i=Math.min((paper.view.size.width-2*this.renkan.options.autoscale_padding)/(g-e),(paper.view.size.height-2*this.renkan.options.autoscale_padding)/(h-f));this.initialScale=i,"undefined"!=typeof a&&parseFloat(a.zoom_level)>0&&parseFloat(a.offset.x)>0&&parseFloat(a.offset.y)>0?this.setScale(parseFloat(a.zoom_level),new paper.Point(parseFloat(a.offset.x),parseFloat(a.offset.y))):this.setScale(i,paper.view.center.subtract(new paper.Point([(g+e)/2,(h+f)/2]).multiply(i)))}1===b.length&&this.setScale(1,paper.view.center.subtract(new paper.Point([b.at(0).get("position").x,b.at(0).get("position").y])))},redrawMiniframe:function(){var a=this.toMinimapCoords(this.toModelCoords(new paper.Point([0,0]))),b=this.toMinimapCoords(this.toModelCoords(paper.view.bounds.bottomRight));this.minimap.miniframe.fitBounds(a,b)},rescaleMinimap:function(){var a=this.renkan.project.get("nodes");if(a.length>1){var b=a.map(function(a){return a.get("position").x}),c=a.map(function(a){return a.get("position").y}),d=Math.min.apply(Math,b),e=Math.min.apply(Math,c),f=Math.max.apply(Math,b),g=Math.max.apply(Math,c),h=Math.min(.8*this.scale*this.renkan.options.minimap_width/paper.view.bounds.width,.8*this.scale*this.renkan.options.minimap_height/paper.view.bounds.height,(this.renkan.options.minimap_width-2*this.renkan.options.minimap_padding)/(f-d),(this.renkan.options.minimap_height-2*this.renkan.options.minimap_padding)/(g-e));this.minimap.offset=this.minimap.size.divide(2).subtract(new paper.Point([(f+d)/2,(g+e)/2]).multiply(h)),this.minimap.scale=h}1===a.length&&(this.minimap.scale=.1,this.minimap.offset=this.minimap.size.divide(2).subtract(new paper.Point([a.at(0).get("position").x,a.at(0).get("position").y]).multiply(this.minimap.scale))),this.redraw()},toPaperCoords:function(a){return a.multiply(this.scale).add(this.offset)},toMinimapCoords:function(a){return a.multiply(this.minimap.scale).add(this.minimap.offset).add(this.minimap.topleft)},toModelCoords:function(a){return a.subtract(this.offset).divide(this.scale)},addRepresentation:function(a,b){var c=d.getRenderer()[a],e=new c(this,b);return this.representations.push(e),e},addRepresentations:function(a,b){var c=this;b.forEach(function(b){c.addRepresentation(a,b)})},userTemplate:b.template('
              • <%=name%>
              • '),redrawUsers:function(){if(this.renkan.options.show_user_list){var b=[].concat((this.renkan.project.current_user_list||{}).models||[],(this.renkan.project.get("users")||{}).models||[]),c="",d=this.$.find(".Rk-Users"),e=d.find(".Rk-CurrentUser-Name"),f=d.find(".Rk-Edit-ColorPicker li"),g=d.find(".Rk-CurrentUser-Color"),h=this;e.off("click").text(this.renkan.translate("")),f.off("mouseleave click"),b.forEach(function(b){b.get("_id")===h.renkan.current_user?(e.text(b.get("title")),g.css("background",b.get("color")),h.isEditable()&&(h.renkan.options.user_name_editable&&e.click(function(){var c=a(this),d=a("").val(b.get("title")).blur(function(){b.set("title",a(this).val()),h.redrawUsers(),h.redraw()});c.empty().html(d),d.select()}),h.renkan.options.user_color_editable&&f.click(function(c){c.preventDefault(),h.isEditable()&&b.set("color",a(this).attr("data-color")),a(this).parent().hide()}).mouseleave(function(){g.css("background",b.get("color"))}))):c+=h.userTemplate({name:b.get("title"),background:b.get("color")})}),d.find(".Rk-UserList").html(c)}},removeRepresentation:function(a){a.destroy(),this.representations=b.reject(this.representations,function(b){return b===a})},getRepresentationByModel:function(a){return a?b.find(this.representations,function(b){return b.model===a}):void 0},removeRepresentationsOfType:function(a){var c=b.filter(this.representations,function(b){return b.type===a}),d=this;b.each(c,function(a){d.removeRepresentation(a)})},highlightModel:function(a){var b=this.getRepresentationByModel(a);b&&b.highlight()},unhighlightAll:function(){b.each(this.representations,function(a){a.unhighlight()})},unselectAll:function(){b.each(this.representations,function(a){a.unselect()})},redraw:function(){this.redrawActive&&(b.each(this.representations,function(a){a.redraw({dontRedrawEdges:!0}) +}),this.minimap&&this.redrawMiniframe(),paper.view.draw())},addTempEdge:function(a,b){var c=this.addRepresentation("TempEdge",null);c.end_pos=b,c.from_representation=a,c.redraw(),this.click_target=c},addHiddenNode:function(a){this.hideNode(a),this.hiddenNodes.push(a.id)},hideNode:function(a){var b=this;"undefined"!=typeof b.getRepresentationByModel(a)&&b.getRepresentationByModel(a).hide()},hideNodes:function(){var a=this;this.hiddenNodes.forEach(function(b,c){var d=a.renkan.project.get("nodes").get(b);return"undefined"!=typeof d?a.hideNode(a.renkan.project.get("nodes").get(b)):void a.hiddenNodes.splice(c,1)}),paper.view.draw()},showNodes:function(a){var b=this,c=0;this.hiddenNodes.forEach(function(d){c++,b.getRepresentationByModel(b.renkan.project.get("nodes").get(d)).show(a)}),a||(this.hiddenNodes=[]),paper.view.draw()},findTarget:function(a){if(a&&"undefined"!=typeof a.item.__representation){var b=a.item.__representation;this.selected_target!==a.item.__representation&&(this.selected_target&&this.selected_target.unselect(b),b.select(this.selected_target),this.selected_target=b)}else this.selected_target&&this.selected_target.unselect(),this.selected_target=null},paperShift:function(a){this.offset=this.offset.add(a),this.redraw()},onMouseMove:function(a){var b=this.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]),d=c.subtract(this.last_point);this.last_point=c,!this.is_dragging&&this.mouse_down&&d.length>f._MIN_DRAG_DISTANCE&&(this.is_dragging=!0);var e=paper.project.hitTest(c);this.is_dragging?this.click_target&&"function"==typeof this.click_target.paperShift?this.click_target.paperShift(d):this.paperShift(d):this.findTarget(e),paper.view.draw()},onMouseDown:function(b,c){var d=this.canvas_$.offset(),e=new paper.Point([b.pageX-d.left,b.pageY-d.top]);if(this.last_point=e,this.mouse_down=!0,!this.click_target||"Temp-edge"!==this.click_target.type){this.removeRepresentationsOfType("editor"),this.is_dragging=!1;var g=paper.project.hitTest(e);if(g&&"undefined"!=typeof g.item.__representation)this.click_target=g.item.__representation,this.click_target.mousedown(b,c);else if(this.click_target=null,this.isEditable()&&this.click_mode===f._CLICKMODE_ADDNODE){var h=this.toModelCoords(e),i={id:f.getUID("node"),created_by:this.renkan.current_user,position:{x:h.x,y:h.y}},j=this.renkan.project.addNode(i);this.getRepresentationByModel(j).openEditor()}}this.click_mode&&(this.isEditable()&&this.click_mode===f._CLICKMODE_STARTEDGE&&this.click_target&&"Node"===this.click_target.type?(this.removeRepresentationsOfType("editor"),this.addTempEdge(this.click_target,e),this.click_mode=f._CLICKMODE_ENDEDGE,this.notif_$.fadeOut(function(){a(this).html(this.renkan.translate("Click on a second node to complete the edge")).fadeIn()})):(this.notif_$.hide(),this.click_mode=!1)),paper.view.draw()},onMouseUp:function(a,b){if(this.mouse_down=!1,this.click_target){var c=this.canvas_$.offset();this.click_target.mouseup({point:new paper.Point([a.pageX-c.left,a.pageY-c.top])},b)}else this.click_target=null,this.is_dragging=!1,b&&this.unselectAll();paper.view.draw()},onScroll:function(a,b){if(this.totalScroll+=b,Math.abs(this.totalScroll)>=1){var c=this.canvas_$.offset(),d=new paper.Point([a.pageX-c.left,a.pageY-c.top]).subtract(this.offset).multiply(Math.SQRT2-1);this.totalScroll>0?this.setScale(this.scale*Math.SQRT2,this.offset.subtract(d)):this.setScale(this.scale*Math.SQRT1_2,this.offset.add(d.divide(Math.SQRT2))),this.totalScroll=0}},onDoubleClick:function(a){var b=this.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]),d=paper.project.hitTest(c);if(!this.isEditable())return void(d&&"undefined"!=typeof d.item.__representation&&d.item.__representation.model.get("uri")&&window.open(d.item.__representation.model.get("uri"),"_blank"));if(this.isEditable()&&(!d||"undefined"==typeof d.item.__representation)){var e=this.toModelCoords(c),g={id:f.getUID("node"),created_by:this.renkan.current_user,position:{x:e.x,y:e.y}},h=this.renkan.project.addNode(g);this.getRepresentationByModel(h).openEditor()}paper.view.draw()},defaultDropHandler:function(b){var c={},d="";switch(b["text/x-iri-specific-site"]){case"twitter":d=a("
                ").html(b["text/x-iri-selected-html"]);var e=d.find(".tweet");c.title=this.renkan.translate("Tweet by ")+e.attr("data-name"),c.uri="http://twitter.com/"+e.attr("data-screen-name")+"/status/"+e.attr("data-tweet-id"),c.image=e.find(".avatar").attr("src"),c.description=e.find(".js-tweet-text:first").text();break;case"google":d=a("
                ").html(b["text/x-iri-selected-html"]),c.title=d.find("h3:first").text().trim(),c.uri=d.find("h3 a").attr("href"),c.description=d.find(".st:first").text().trim();break;default:b["text/x-iri-source-uri"]&&(c.uri=b["text/x-iri-source-uri"])}if((b["text/plain"]||b["text/x-iri-selected-text"])&&(c.description=(b["text/plain"]||b["text/x-iri-selected-text"]).replace(/[\s\n]+/gm," ").trim()),b["text/html"]||b["text/x-iri-selected-html"]){d=a("
                ").html(b["text/html"]||b["text/x-iri-selected-html"]);var f=d.find("image");f.length&&(c.image=f.attr("xlink:href"));var g=d.find("path");g.length&&(c.clipPath=g.attr("d"));var h=d.find("img");h.length&&(c.image=h[0].src);var i=d.find("a");i.length&&(c.uri=i[0].href),c.title=d.find("[title]").attr("title")||c.title,c.description=d.text().replace(/[\s\n]+/gm," ").trim()}b["text/uri-list"]&&(c.uri=b["text/uri-list"]),b["text/x-moz-url"]&&!c.title&&(c.title=(b["text/x-moz-url"].split("\n")[1]||"").trim(),c.title===c.uri&&(c.title=!1)),b["text/x-iri-source-title"]&&!c.title&&(c.title=b["text/x-iri-source-title"]),(b["text/html"]||b["text/x-iri-selected-html"])&&(d=a("
                ").html(b["text/html"]||b["text/x-iri-selected-html"]),c.image=d.find("[data-image]").attr("data-image")||c.image,c.uri=d.find("[data-uri]").attr("data-uri")||c.uri,c.title=d.find("[data-title]").attr("data-title")||c.title,c.description=d.find("[data-description]").attr("data-description")||c.description,c.clipPath=d.find("[data-clip-path]").attr("data-clip-path")||c.clipPath),c.title||(c.title=this.renkan.translate("Dragged resource"));for(var j=["title","description","uri","image"],k=0;k0&&(f-=this.renkan.$.find(".Rk-Bins").width()),paper.view.viewSize=new paper.Size([f,g])}else{for(a=0;a","Search in graph","Search in ","jsonIO","_proj","http_method","_load","redrawActive","loadingStatus","_data","saveStatus","fixSize","_save","ajax","contentType","JSON","stringify","success","_thrSave","throttle","setTimeout","changedAttributes","hasChanged","jsonIOSaveOnClick","_saveWarn","_onLeave","getdata","rx","matches","location","hash","match","beforeSend","autoScale","_checkLeave","removeClass","save","hasClass","Ldt","ProjectBin","ldt_type","Resclass","error","tagTemplate","annotationTemplate","proj_id","project_id","ldt_platform","searchbase","highlight","_e","convertTC","_ms","_res","_totalSeconds","abs","floor","_hours","_minutes","_seconds","_html","_projtitle","meta","count","tags","_tag","_title","htitle","encodedtitle","encodeURIComponent","annotations","_annotation","_description","content","_duration","end","begin","_img","hdescription","start","duration","mediaid","media","annotationid","show","dataType","lang","_q","ResultsBin","segmentTemplate","max_results","highlightrx","objects","_segment","_begin","start_ts","_end","iri_id","element_id","format","q","limit","ResourceList","resultTemplate","list","trim","_match","langs","en","ja","query","_result","encodeURI","snippet","define","_BaseRepresentation","_renderer","_changeBinding","redraw","change","_removeBinding","removeRepresentation","defer","_selectBinding","select","_unselectBinding","unselect","_super","_func","moveTo","trigger","unhighlight","mousedown","mouseup","value","getUtils","getRenderer","requtils","BaseRepresentation","_BaseButton","_pos","sector","_newTarget","source_representation","cloud_path","builders","circle","getShape","Path","getImageShape","radius","rectangle","Rectangle","ellipse","polygon","RegularPolygon","diamond","d","SQRT2","rotate","star","cloud","path","scale","triangle","svg","ShapeBuilder","NodeRepr","node_layer","activate","buildShape","hidden","ghost","strokeWidth","h_ratio","labels_$","normal_buttons","NodeEditButton","NodeRemoveButton","NodeHideButton","NodeShowButton","NodeLinkButton","NodeEnlargeButton","NodeShrinkButton","pending_delete_buttons","NodeRevertButton","all_buttons","active_buttons","last_circle_radius","minimap","minimap_circle","__representation","miniframe","node_group","addChild","_getStrokeWidth","has","_getSelectedStrokeWidth","changed","shapeBuilder","sendToBack","_model_coords","Point","_baseRadius","exp","is_dragging","paper_coords","toPaperCoords","circle_radius","forEach","setSectorSize","node_image","subtract","image_delta","multiply","old_act_btn","opacity","dashArray","selected","isEditable","highlighted","_strokeWidth","_color","_dash","strokeColor","_pc","lastImage","showImage","minipos","toMinimapCoords","miniradius","minisize","Size","fitBounds","dontRedrawEdges","ed","repr","getRepresentationByModel","from_representation","to_representation","_image","image_cache","clipPath","hasClipPath","_clip","baseRadius","centerPoint","instructions","lastCoords","minX","Infinity","minY","maxX","maxY","transformCoords","tabc","relative","newCoords","parseFloat","isY","instr","coords","lineTo","cubicCurveTo","quadraticCurveTo","_raster","Raster","locked","Group","clipped","_circleClip","divide","insertAbove","paperShift","_delta","openEditor","removeRepresentationsOfType","_editor","addRepresentation","draw","_uri","showNeighbors","hideButtons","buttons_timeout","undefined","hideNeighbors","indexNode","hiddenNodes","indexOf","splice","textToReplace","hlvalue","throttledPaperDraw","saveCoords","toModelCoords","_event","_isTouch","unselectAll","index","click_target","edge_layer","bundle","addToBundles","line","arrow_scale","pivot","arrow_angle","EdgeEditButton","EdgeRemoveButton","EdgeRevertButton","minimap_line","_getArrowScale","_opacity","_arrow_scale","_p0a","_p1a","_v","_r","_u","_ortho","_group_pos","getPosition","_p0b","_p1b","_a","angle","_textdelta","_handle","visible","handleIn","handleOut","bounds","_textpos","transform","-moz-transform","-webkit-transform","text_angle","reject","TempEdge","_p0","_p1","end_pos","_c","_hitResult","hitTest","findTarget","_endDrag","item","_target","_destmodel","_BaseEditor","buttons_layer","editor_block","_pts","range","editor_$","BaseEditor","NodeEditor","readOnlyTemplate","_created_by","_template","_image_placeholder","_size","keys","closeEditor","onFieldChange","assign","keyCode","files","FileReader","alert","onload","target","result","readAsDataURL","focus","_picker","hover","shiftSize","_newsize","shiftThickness","_oldThickness","_newThickness","titlehtml","EdgeEditor","_from_model","_to_model","BaseButton","_NodeButton","sectorInner","lastSectorInner","drawSector","startAngle","endAngle","imageName","clearTimeout","NodeButton","delid","delete_list","time","valueOf","confirm","addHiddenNode","unset","_off","_point","addTempEdge","MiniFrame","filesaver","representations","notif_$","setup","initialScale","totalScroll","mouse_down","selected_target","Layer","background_layer","topleft","bottomRight","cliprectangle","bundles","click_mode","_allowScroll","_originalScale","_zooming","_lastTapX","_lastTapY","icon_cache","imgname","throttledMouseMove","mousemove","mousewheel","onScroll","touchstart","_touches","touches","_lastTap","pow","onDoubleClick","touchmove","_newScale","_scaleRatio","_newOffset","setScale","touchend","dblclick","dragover","dragenter","dragleave","drop","types","getData","parse","bindClick","selector","fname","evt","last","hideNodes","showNodes","fadeIn","delay","fadeOut","mouseover","onResize","_ratio","newWidth","newHeight","ratioH","delta","ratioW","resizeZoom","_thRedraw","addRepresentations","_thRedrawUsers","el","_delay","$cpwrapper","$cplist","$this","rxs","_now","findWhere","delete_scheduled","rescaleMinimap","_repr","_inR","_outR","_startAngle","_endAngle","_padding","_imgname","_caption","_startRads","PI","_endRads","_startdx","sin","_startdy","cos","_startXIn","_startYIn","_startXOut","_startYOut","_enddx","_enddy","_endXIn","_endYIn","_endXOut","_endYOut","_centerR","_centerRads","_centerX","_centerY","_centerXIn","_centerXOut","_centerYIn","_centerYOut","_textX","_textY","arcTo","PointText","characterStyle","fontSize","paragraphStyle","justification","_visible","_restPos","_grp","_imgdelta","_currentPos","_edgeRepr","_bundle","_er","_dir","savebtn","tip","_offset","force_view","_xx","_yy","_minx","_miny","_maxx","_maxy","_scale","at","redrawMiniframe","bottomright","_type","RendererType","_collection","userTemplate","allUsers","models","ulistHtml","$userpanel","$name","$cpitems","$colorsquare","$input","blur","empty","parent","name","background","_representation","_representations","_from","_tmpEdge","hideNode","last_point","_scrolldelta","SQRT1_2","open","defaultDropHandler","newNode","tweetdiv","_svgimgs","_svgpaths","_imgs","_as","fields","drop_enhancer","jsondata","drop_handler","_nodedata","fullScreen","_isFull","mozFullScreen","webkitIsFullScreen","_requestMethods","_cancelMethods","widthAft","heightAft","viewSize","zoomOut","zoomIn","_scaleWidth","_scaleHeight","addNodeBtn","addEdgeBtn","exportProject","projectJSON","projectId","fileNameToSaveAs","space_id","objId","idsMap","projectJSONStr","blob","Blob","foldBins","sizeAft","foldBinsButton","sizeBef","animate","require","config","paths","jquery","underscore","startRenkan"],"mappings":"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","sourcesContent":["this[\"renkanJST\"] = this[\"renkanJST\"] || {};\n\nthis[\"renkanJST\"][\"templates/colorpicker.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
              • ';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/edgeeditor.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(renkan.translate(\"Edit Edge\")) +\n'\\n

                \\n

                \\n \\n \\n

                \\n';\n if (options.show_edge_editor_uri) { ;\n__p += '\\n

                \\n \\n \\n \\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 } ;\n__p += '\\n';\n if (options.show_edge_editor_direction) { ;\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 ';\n if (options.show_edge_tooltip_color) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (edge.uri) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n__e(edge.title) +\n'\\n ';\n if (edge.uri) { ;\n__p += ' ';\n } ;\n__p += '\\n \\n

                \\n';\n if (options.show_edge_tooltip_uri && edge.uri) { ;\n__p += '\\n

                \\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\\n \\n

                ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                \\n

                ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                \\n

                Start: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'

                \\n
                \\n
              • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/segmenttemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
              • \\n\\n \\n

                ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                \\n

                ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                \\n

                Start: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'

                \\n
                \\n
              • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/tagtemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
              • \\n\\n \\n

                ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                \\n
                \\n
              • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/list-bin.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 } ;\n__p += '\\n

                \\n ';\n if (url) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n((__t = (htitle)) == null ? '' : __t) +\n'\\n ';\n if (url) { ;\n__p += '';\n } ;\n__p += '\\n

                \\n ';\n if (description) { ;\n__p += '\\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}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/main.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_bins) { ;\n__p += '\\n
                \\n
                \\n

                ' +\n__e( translate(\"Select contents:\")) +\n'

                \\n
                \\n \\n
                \\n
                \\n
                  \\n
                  \\n \\n
                  \\n
                  \\n \\n \\n
                  \\n
                    \\n
                    \\n';\n } ;\n__p += ' ';\n if (options.show_editor) { ;\n__p += '\\n
                    \\n

                    \\n

                    \\n \\n \\n

                    \\n';\n if (options.show_node_editor_uri) { ;\n__p += '\\n

                    \\n \\n \\n \\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 if (options.show_node_editor_style_color) { ;\n__p += '\\n
                    \\n \\n ' +\n__e(renkan.translate(\"Node color:\")) +\n'\\n
                    \\n \\n \\n \\n ' +\n((__t = ( renkan.colorPicker )) == null ? '' : __t) +\n'\\n ' +\n__e( renkan.translate(\"Choose color\") ) +\n'\\n
                    \\n
                    \\n ';\n } ;\n__p += '\\n ';\n if (options.show_node_editor_style_dash) { ;\n__p += '\\n
                    \\n ' +\n__e(renkan.translate(\"Dash:\")) +\n'\\n \\n
                    \\n ';\n } ;\n__p += '\\n ';\n if (options.show_node_editor_style_thickness) { ;\n__p += '\\n
                    \\n ' +\n__e(renkan.translate(\"Thickness:\")) +\n'\\n -\\n ' +\n__e(node.thickness) +\n'\\n +\\n
                    \\n ';\n } ;\n__p += '\\n
                    \\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_image) { ;\n__p += '\\n
                    \\n
                    \\n \\n ';\n if (node.clip_path) { ;\n__p += '\\n \\n \\n \\n ';\n };\n__p += '\\n
                    \\n
                    \\n

                    \\n \\n

                    \\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 ';\n if (options.show_node_tooltip_color) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (node.uri) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n__e(node.title) +\n'\\n ';\n if (node.uri) { ;\n__p += '';\n } ;\n__p += '\\n \\n

                    \\n';\n if (node.uri && options.show_node_tooltip_uri) { ;\n__p += '\\n

                    \\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 } ;\n__p += ' ';\n if (node.has_creator && options.show_node_tooltip_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';\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
                    \\n ';\n if (!options.editor_mode) { ;\n__p += '\\n

                    \\n ' +\n__e( project.get(\"title\") || translate(\"Untitled project\")) +\n'\\n

                    \\n ';\n } else { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ';\n if (options.show_user_list) { ;\n__p += '\\n
                    \\n
                    \\n ';\n if (options.show_user_color) { ;\n__p += '\\n
                    \\n \\n ';\n if (options.user_color_editable) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (options.user_color_editable) { print(colorPicker) } ;\n__p += '\\n
                    \\n ';\n } ;\n__p += '\\n <unknown user>\\n
                    \\n
                      \\n
                      \\n ';\n } ;\n__p += '\\n ';\n if (options.home_button_url) {;\n__p += '\\n
                      \\n \\n
                      \\n
                      \\n ' +\n__e( translate(options.home_button_title) ) +\n'\\n
                      \\n
                      \\n
                      \\n ';\n } ;\n__p += '\\n ';\n if (options.show_fullscreen_button) { ;\n__p += '\\n
                      \\n
                      \\n
                      \\n
                      \\n ' +\n__e(translate(\"Full Screen\")) +\n'\\n
                      \\n
                      \\n
                      \\n ';\n } ;\n__p += '\\n ';\n if (options.editor_mode) { ;\n__p += '\\n ';\n if (options.show_addnode_button) { ;\n__p += '\\n
                      \\n
                      \\n
                      \\n
                      \\n ' +\n__e(translate(\"Add Node\")) +\n'\\n
                      \\n
                      \\n
                      \\n ';\n } ;\n__p += '\\n ';\n if (options.show_addedge_button) { ;\n__p += '\\n
                      \\n
                      \\n
                      \\n
                      \\n ' +\n__e(translate(\"Add Edge\")) +\n'\\n
                      \\n
                      \\n
                      \\n ';\n } ;\n__p += '\\n ';\n if (options.show_export_button) { ;\n__p += '\\n
                      \\n
                      \\n
                      \\n
                      \\n ' +\n__e(translate(\"Download Project\")) +\n'\\n
                      \\n
                      \\n
                      \\n ';\n } ;\n__p += '\\n ';\n if (options.show_save_button) { ;\n__p += '\\n
                      \\n
                      \\n
                      \\n
                      \\n
                      \\n
                      \\n ';\n } ;\n__p += '\\n ';\n if (options.show_open_button) { ;\n__p += '\\n
                      \\n
                      \\n
                      \\n
                      \\n ' +\n__e(translate(\"Open Project\")) +\n'\\n
                      \\n
                      \\n
                      \\n ';\n } ;\n__p += '\\n ';\n if (options.show_bookmarklet) { ;\n__p += '\\n
                      \\n \\n
                      \\n
                      \\n ' +\n__e(translate(\"Renkan \\'Drag-to-Add\\' bookmarklet\")) +\n'\\n
                      \\n
                      \\n
                      \\n
                      \\n ';\n } ;\n__p += '\\n ';\n } else { ;\n__p += '\\n ';\n if (options.show_export_button) { ;\n__p += '\\n
                      \\n
                      \\n
                      \\n
                      \\n ' +\n__e(translate(\"Download Project\")) +\n'\\n
                      \\n
                      \\n
                      \\n
                      \\n ';\n } ;\n__p += '\\n ';\n }; ;\n__p += '\\n ';\n if (options.show_search_field) { ;\n__p += '\\n
                      \\n \\n
                      \\n
                      \\n ';\n } ;\n__p += '\\n
                      \\n';\n } ;\n__p += '\\n
                      \\n
                      \\n
                      \\n ';\n if (options.editor_mode && options.save_view) { ;\n__p += '\\n
                      \\n ';\n } ;\n__p += '\\n ';\n if (options.save_view) { ;\n__p += '\\n
                      \\n \\t\\n ';\n } ;\n__p += '\\n
                      \\n ';\n } ;\n__p += '\\n \\n\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/search.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                    • ' +\n((__t = ( title )) == null ? '' : __t) +\n'
                    • ';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/wikipedia-bin/resulttemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                    • \\n\\n \\n

                      \\n ' +\n((__t = (htitle)) == null ? '' : __t) +\n'\\n

                      \\n

                      ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                      \\n
                    • \\n';\n\n}\nreturn __p\n};","/* Declaring the Renkan Namespace Rkns and Default values */\n\n(function(root) {\n\n \"use strict\";\n\n if (typeof root.Rkns !== \"object\") {\n root.Rkns = {};\n }\n\n var Rkns = root.Rkns;\n var $ = Rkns.$ = root.jQuery;\n var _ = Rkns._ = root._;\n\n Rkns.pickerColors = [\"#8f1919\", \"#a80000\", \"#d82626\", \"#ff0000\", \"#e87c7c\", \"#ff6565\", \"#f7d3d3\", \"#fecccc\",\n \"#8f5419\", \"#a85400\", \"#d87f26\", \"#ff7f00\", \"#e8b27c\", \"#ffb265\", \"#f7e5d3\", \"#fee5cc\",\n \"#8f8f19\", \"#a8a800\", \"#d8d826\", \"#feff00\", \"#e8e87c\", \"#feff65\", \"#f7f7d3\", \"#fefecc\",\n \"#198f19\", \"#00a800\", \"#26d826\", \"#00ff00\", \"#7ce87c\", \"#65ff65\", \"#d3f7d3\", \"#ccfecc\",\n \"#198f8f\", \"#00a8a8\", \"#26d8d8\", \"#00feff\", \"#7ce8e8\", \"#65feff\", \"#d3f7f7\", \"#ccfefe\",\n \"#19198f\", \"#0000a8\", \"#2626d8\", \"#0000ff\", \"#7c7ce8\", \"#6565ff\", \"#d3d3f7\", \"#ccccfe\",\n \"#8f198f\", \"#a800a8\", \"#d826d8\", \"#ff00fe\", \"#e87ce8\", \"#ff65fe\", \"#f7d3f7\", \"#feccfe\",\n \"#000000\", \"#242424\", \"#484848\", \"#6d6d6d\", \"#919191\", \"#b6b6b6\", \"#dadada\", \"#ffffff\"\n ];\n\n Rkns.__renkans = [];\n\n var _BaseBin = Rkns._BaseBin = function(_renkan, _opts) {\n if (typeof _renkan !== \"undefined\") {\n this.renkan = _renkan;\n this.renkan.$.find(\".Rk-Bin-Main\").hide();\n this.$ = Rkns.$('
                    • ')\n .addClass(\"Rk-Bin\")\n .appendTo(_renkan.$.find(\".Rk-Bin-List\"));\n this.title_icon_$ = Rkns.$('')\n .addClass(\"Rk-Bin-Title-Icon\")\n .appendTo(this.$);\n\n var _this = this;\n\n Rkns.$('')\n .attr({\n href: \"#\",\n title: _renkan.translate(\"Close bin\")\n })\n .addClass(\"Rk-Bin-Close\")\n .html('×')\n .appendTo(this.$)\n .click(function() {\n _this.destroy();\n if (!_renkan.$.find(\".Rk-Bin-Main:visible\").length) {\n _renkan.$.find(\".Rk-Bin-Main:last\").slideDown();\n }\n _renkan.resizeBins();\n return false;\n });\n Rkns.$('')\n .attr({\n href: \"#\",\n title: _renkan.translate(\"Refresh bin\")\n })\n .addClass(\"Rk-Bin-Refresh\")\n .appendTo(this.$)\n .click(function() {\n _this.refresh();\n return false;\n });\n this.count_$ = Rkns.$('
                      ')\n .addClass(\"Rk-Bin-Count\")\n .appendTo(this.$);\n this.title_$ = Rkns.$('

                      ')\n .addClass(\"Rk-Bin-Title\")\n .appendTo(this.$);\n this.main_$ = Rkns.$('
                      ')\n .addClass(\"Rk-Bin-Main\")\n .appendTo(this.$)\n .html('

                      ' + _renkan.translate(\"Loading, please wait\") + '

                      ');\n this.title_$.html(_opts.title || '(new bin)');\n this.renkan.resizeBins();\n\n if (_opts.auto_refresh) {\n window.setInterval(function() {\n _this.refresh();\n }, _opts.auto_refresh);\n }\n }\n };\n\n _BaseBin.prototype.destroy = function() {\n this.$.detach();\n this.renkan.resizeBins();\n };\n\n /* Point of entry */\n\n var Renkan = Rkns.Renkan = function(_opts) {\n var _this = this;\n\n Rkns.__renkans.push(this);\n\n this.options = _.defaults(_opts, Rkns.defaults, {\n templates: renkanJST\n });\n this.template = renkanJST['templates/main.html'];\n\n _.each(this.options.property_files, function(f) {\n Rkns.$.getJSON(f, function(data) {\n _this.options.properties = _this.options.properties.concat(data);\n });\n });\n\n this.read_only = this.options.read_only || !this.options.editor_mode;\n\n this.project = new Rkns.Models.Project();\n this.dataloader = new Rkns.DataLoader.Loader(this.project, this.options);\n\n this.setCurrentUser = function(user_id, user_name) {\n this.project.addUser({\n _id: user_id,\n title: user_name\n });\n this.current_user = user_id;\n this.renderer.redrawUsers();\n };\n\n if (typeof this.options.user_id !== \"undefined\") {\n this.current_user = this.options.user_id;\n }\n this.$ = Rkns.$(\"#\" + this.options.container);\n this.$\n .addClass(\"Rk-Main\")\n .html(this.template(this));\n\n this.tabs = [];\n this.search_engines = [];\n\n this.current_user_list = new Rkns.Models.UsersList();\n\n this.current_user_list.on(\"add remove\", function() {\n if (this.renderer) {\n this.renderer.redrawUsers();\n }\n });\n\n this.colorPicker = (function() {\n var _tmpl = renkanJST['templates/colorpicker.html'];\n return '
                        ' + Rkns.pickerColors.map(function(c) {\n return _tmpl({\n c: c\n });\n }).join(\"\") + '
                      ';\n })();\n\n if (this.options.show_editor) {\n this.renderer = new Rkns.Renderer.Scene(this);\n }\n\n if (!this.options.search.length) {\n this.$.find(\".Rk-Web-Search-Form\").detach();\n } else {\n var _tmpl = renkanJST['templates/search.html'],\n _select = this.$.find(\".Rk-Search-List\"),\n _input = this.$.find(\".Rk-Web-Search-Input\"),\n _form = this.$.find(\".Rk-Web-Search-Form\");\n _.each(this.options.search, function(_search, _key) {\n if (Rkns[_search.type] && Rkns[_search.type].Search) {\n _this.search_engines.push(new Rkns[_search.type].Search(_this, _search));\n }\n });\n _select.html(\n _(this.search_engines).map(function(_search, _key) {\n return _tmpl({\n key: _key,\n title: _search.getSearchTitle(),\n className: _search.getBgClass()\n });\n }).join(\"\")\n );\n _select.find(\"li\").click(function() {\n var _el = Rkns.$(this);\n _this.setSearchEngine(_el.attr(\"data-key\"));\n _form.submit();\n });\n _form.submit(function() {\n if (_input.val()) {\n var _search = _this.search_engine;\n _search.search(_input.val());\n }\n return false;\n });\n this.$.find(\".Rk-Search-Current\").mouseenter(\n function() {\n _select.slideDown();\n }\n );\n this.$.find(\".Rk-Search-Select\").mouseleave(\n function() {\n _select.hide();\n }\n );\n this.setSearchEngine(0);\n }\n _.each(this.options.bins, function(_bin) {\n if (Rkns[_bin.type] && Rkns[_bin.type].Bin) {\n _this.tabs.push(new Rkns[_bin.type].Bin(_this, _bin));\n }\n });\n\n var elementDropped = false;\n\n this.$.find(\".Rk-Bins\")\n .on(\"click\", \".Rk-Bin-Title,.Rk-Bin-Title-Icon\", function() {\n var _mainDiv = Rkns.$(this).siblings(\".Rk-Bin-Main\");\n if (_mainDiv.is(\":hidden\")) {\n _this.$.find(\".Rk-Bin-Main\").slideUp();\n _mainDiv.slideDown();\n }\n });\n\n if (this.options.show_editor) {\n\n this.$.find(\".Rk-Bins\").on(\"mouseover\", \".Rk-Bin-Item\", function(_e) {\n var _t = Rkns.$(this);\n if (_t && $(_t).attr(\"data-uri\")) {\n var _models = _this.project.get(\"nodes\").where({\n uri: $(_t).attr(\"data-uri\")\n });\n _.each(_models, function(_model) {\n _this.renderer.highlightModel(_model);\n });\n }\n }).mouseout(function() {\n _this.renderer.unhighlightAll();\n }).on(\"mousemove\", \".Rk-Bin-Item\", function(e) {\n try {\n this.dragDrop();\n } catch (err) {}\n }).on(\"touchstart\", \".Rk-Bin-Item\", function(e) {\n elementDropped = false;\n }).on(\"touchmove\", \".Rk-Bin-Item\", function(e) {\n e.preventDefault();\n var touch = e.originalEvent.changedTouches[0],\n off = _this.renderer.canvas_$.offset(),\n w = _this.renderer.canvas_$.width(),\n h = _this.renderer.canvas_$.height();\n if (touch.pageX >= off.left && touch.pageX < (off.left + w) && touch.pageY >= off.top && touch.pageY < (off.top + h)) {\n if (elementDropped) {\n _this.renderer.onMouseMove(touch, true);\n } else {\n elementDropped = true;\n var div = document.createElement('div');\n div.appendChild(this.cloneNode(true));\n _this.renderer.dropData({\n \"text/html\": div.innerHTML\n }, touch);\n _this.renderer.onMouseDown(touch, true);\n }\n }\n }).on(\"touchend\", \".Rk-Bin-Item\", function(e) {\n if (elementDropped) {\n _this.renderer.onMouseUp(e.originalEvent.changedTouches[0], true);\n }\n elementDropped = false;\n }).on(\"dragstart\", \".Rk-Bin-Item\", function(e) {\n var div = document.createElement('div');\n div.appendChild(this.cloneNode(true));\n try {\n e.originalEvent.dataTransfer.setData(\"text/html\", div.innerHTML);\n } catch (err) {\n e.originalEvent.dataTransfer.setData(\"text\", div.innerHTML);\n }\n });\n\n }\n\n Rkns.$(window).resize(function() {\n _this.resizeBins();\n });\n\n var lastsearch = false,\n lastval = '';\n\n this.$.find(\".Rk-Bins-Search-Input\").on(\"change keyup paste input\", function() {\n var val = Rkns.$(this).val();\n if (val === lastval) {\n return;\n }\n var search = Rkns.Utils.regexpFromTextOrArray(val.length > 1 ? val : null);\n if (search.source === lastsearch) {\n return;\n }\n lastsearch = search.source;\n _.each(_this.tabs, function(tab) {\n tab.render(search);\n });\n\n });\n this.$.find(\".Rk-Bins-Search-Form\").submit(function() {\n return false;\n });\n\n };\n\n Renkan.prototype.translate = function(_text) {\n if (Rkns.i18n[this.options.language] && Rkns.i18n[this.options.language][_text]) {\n return Rkns.i18n[this.options.language][_text];\n }\n if (this.options.language.length > 2 && Rkns.i18n[this.options.language.substr(0, 2)] && Rkns.i18n[this.options.language.substr(0, 2)][_text]) {\n return Rkns.i18n[this.options.language.substr(0, 2)][_text];\n }\n return _text;\n };\n\n Renkan.prototype.onStatusChange = function() {\n this.renderer.onStatusChange();\n };\n\n Renkan.prototype.setSearchEngine = function(_key) {\n this.search_engine = this.search_engines[_key];\n this.$.find(\".Rk-Search-Current\").attr(\"class\", \"Rk-Search-Current \" + this.search_engine.getBgClass());\n var listClasses = this.search_engine.getBgClass().split(\" \");\n var classes = \"\";\n for (var i = 0; i < listClasses.length; i++) {\n classes += \".\" + listClasses[i];\n }\n this.$.find(\".Rk-Web-Search-Input.Rk-Search-Input\").attr(\"placeholder\", this.translate(\"Search in \") + this.$.find(\".Rk-Search-List \" + classes).html());\n };\n\n Renkan.prototype.resizeBins = function() {\n var _d = +this.$.find(\".Rk-Bins-Head\").outerHeight();\n this.$.find(\".Rk-Bin-Title:visible\").each(function() {\n _d += Rkns.$(this).outerHeight();\n });\n this.$.find(\".Rk-Bin-Main\").css({\n height: this.$.find(\".Rk-Bins\").height() - _d\n });\n };\n\n /* Utility functions */\n var getUUID4 = function() {\n return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {\n var r = Math.random() * 16 | 0,\n v = c === 'x' ? r : (r & 0x3 | 0x8);\n return v.toString(16);\n });\n };\n\n Rkns.Utils = {\n getUUID4: getUUID4,\n getUID: (function() {\n function pad(n) {\n return n < 10 ? '0' + n : n;\n }\n var _d = new Date(),\n ID_AUTO_INCREMENT = 0,\n ID_BASE = _d.getUTCFullYear() + '-' +\n pad(_d.getUTCMonth() + 1) + '-' +\n pad(_d.getUTCDate()) + '-' +\n getUUID4();\n return function(_base) {\n var _n = (++ID_AUTO_INCREMENT).toString(16),\n _uidbase = (typeof _base === \"undefined\" ? \"\" : _base + \"-\");\n while (_n.length < 4) {\n _n = '0' + _n;\n }\n return _uidbase + ID_BASE + '-' + _n;\n };\n })(),\n getFullURL: function(url) {\n\n if (typeof(url) === 'undefined' || url == null) {\n return \"\";\n }\n if (/https?:\\/\\//.test(url)) {\n return url;\n }\n var img = new Image();\n img.src = url;\n var res = img.src;\n img.src = null;\n return res;\n\n },\n inherit: function(_baseClass, _callbefore) {\n\n var _class = function(_arg) {\n if (typeof _callbefore === \"function\") {\n _callbefore.apply(this, Array.prototype.slice.call(arguments, 0));\n }\n _baseClass.apply(this, Array.prototype.slice.call(arguments, 0));\n if (typeof this._init === \"function\" && !this._initialized) {\n this._init.apply(this, Array.prototype.slice.call(arguments, 0));\n this._initialized = true;\n }\n };\n _.extend(_class.prototype, _baseClass.prototype);\n\n return _class;\n\n },\n regexpFromTextOrArray: (function() {\n var charsub = [\n '[aáàâä]',\n '[cç]',\n '[eéèêë]',\n '[iíìîï]',\n '[oóòôö]',\n '[uùûü]'\n ],\n removeChars = [\n String.fromCharCode(768), String.fromCharCode(769), String.fromCharCode(770), String.fromCharCode(771), String.fromCharCode(807),\n \"{\", \"}\", \"(\", \")\", \"[\", \"]\", \"【\", \"】\", \"、\", \"・\", \"‥\", \"。\", \"「\", \"」\", \"『\", \"』\", \"〜\", \":\", \"!\", \"?\", \" \",\n \",\", \" \", \";\", \"(\", \")\", \".\", \"*\", \"+\", \"\\\\\", \"?\", \"|\", \"{\", \"}\", \"[\", \"]\", \"^\", \"#\", \"/\"\n ],\n remsrc = \"[\\\\\" + removeChars.join(\"\\\\\") + \"]\",\n remrx = new RegExp(remsrc, \"gm\"),\n charsrx = _.map(charsub, function(c) {\n return new RegExp(c);\n });\n\n function replaceText(_text) {\n var txt = _text.toLowerCase().replace(remrx, \"\"),\n src = \"\";\n\n function makeReplaceFunc(l) {\n return function(k, v) {\n l = l.replace(charsrx[k], v);\n };\n }\n for (var j = 0; j < txt.length; j++) {\n if (j) {\n src += remsrc + \"*\";\n }\n var l = txt[j];\n _.each(charsub, makeReplaceFunc(l));\n src += l;\n }\n return src;\n }\n\n function getSource(inp) {\n switch (typeof inp) {\n case \"string\":\n return replaceText(inp);\n case \"object\":\n var src = '';\n _.each(inp, function(v) {\n var res = getSource(v);\n if (res) {\n if (src) {\n src += '|';\n }\n src += res;\n }\n });\n return src;\n }\n return '';\n }\n\n return function(_textOrArray) {\n var source = getSource(_textOrArray);\n if (source) {\n var testrx = new RegExp(source, \"im\"),\n replacerx = new RegExp('(' + source + ')', \"igm\");\n return {\n isempty: false,\n source: source,\n test: function(_t) {\n return testrx.test(_t);\n },\n replace: function(_text, _replace) {\n return _text.replace(replacerx, _replace);\n }\n };\n } else {\n return {\n isempty: true,\n source: '',\n test: function() {\n return true;\n },\n replace: function(_text) {\n return text;\n }\n };\n }\n };\n })(),\n /* The minimum distance (in pixels) the mouse has to move to consider an element was dragged */\n _MIN_DRAG_DISTANCE: 2,\n /* Distance between the inner and outer radius of buttons that appear when hovering on a node */\n _NODE_BUTTON_WIDTH: 40,\n\n _EDGE_BUTTON_INNER: 2,\n _EDGE_BUTTON_OUTER: 40,\n /* Constants used to know if a specific action is to be performed when clicking on the canvas */\n _CLICKMODE_ADDNODE: 1,\n _CLICKMODE_STARTEDGE: 2,\n _CLICKMODE_ENDEDGE: 3,\n /* Node size step: Used to calculate the size change when clicking the +/- buttons */\n _NODE_SIZE_STEP: Math.LN2 / 4,\n _MIN_SCALE: 1 / 20,\n _MAX_SCALE: 20,\n _MOUSEMOVE_RATE: 80,\n _DOUBLETAP_DELAY: 800,\n /* Maximum distance in pixels (squared, to reduce calculations)\n * between two taps when double-tapping on a touch terminal */\n _DOUBLETAP_DISTANCE: 20 * 20,\n /* A placeholder so a default colour is displayed when a node has a null value for its user property */\n _USER_PLACEHOLDER: function(_renkan) {\n return {\n color: _renkan.options.default_user_color,\n title: _renkan.translate(\"(unknown user)\"),\n get: function(attr) {\n return this[attr] || false;\n }\n };\n },\n /* The code for the \"Drag and Add Bookmarklet\", slightly minified and with whitespaces removed, though\n * it doesn't seem that it's still a requirement in newer browsers (i.e. the ones compatibles with canvas drawing)\n */\n _BOOKMARKLET_CODE: function(_renkan) {\n return \"(function(a,b,c,d,e,f,h,i,j,k,l,m,n,o,p,q,r){a=document;b=a.body;c=a.location.href;j='draggable';m='text/x-iri-';d=a.createElement('div');d.innerHTML='\" +\n _renkan.translate(\"Drag items from this website, drop them in Renkan\").replace(/ /g, \"_\") +\n \"

                      '.replace(/_/g,String.fromCharCode(32));b.appendChild(d);e=[{r:/https?:\\\\/\\\\/[^\\\\/]*twitter\\\\.com\\\\//,s:'.tweet',n:'twitter'},{r:/https?:\\\\/\\\\/[^\\\\/]*google\\\\.[^\\\\/]+\\\\//,s:'.g',n:'google'},{r:/https?:\\\\/\\\\/[^\\\\/]*lemonde\\\\.fr\\\\//,s:'[data-vr-contentbox]',n:'lemonde'}];f=false;e.forEach(function(g){if(g.r.test(c)){f=g;}});if(f){h=function(){Array.prototype.forEach.call(a.querySelectorAll(f.s),function(i){i[j]=true;k=i.style;k.borderWidth='2px';k.borderColor='#909';k.borderStyle='solid';k.backgroundColor='rgba(200,0,180,.1)';})};window.setInterval(h,500);h();};a.addEventListener('dragstart',function(k){l=k.dataTransfer;l.setData(m+'source-uri',c);l.setData(m+'source-title',a.title);n=k.target;if(f){o=n;while(!o.attributes[j]){o=o.parentNode;if(o==b){break;}}}if(f&&o.attributes[j]){p=o.cloneNode(true);l.setData(m+'specific-site',f.n)}else{q=a.getSelection();if(q.type==='Range'||!q.type){p=q.getRangeAt(0).cloneContents();}else{p=n.cloneNode();}}r=a.createElement('div');r.appendChild(p);l.setData('text/x-iri-selected-text',r.textContent.trim());l.setData('text/x-iri-selected-html',r.innerHTML);},false);})();\";\n },\n /* Shortens text to the required length then adds ellipsis */\n shortenText: function(_text, _maxlength) {\n return (_text.length > _maxlength ? (_text.substr(0, _maxlength) + '…') : _text);\n },\n /* Drawing an edit box with an arrow and positioning the edit box according to the position of the node/edge being edited\n * Called by Rkns.Renderer.NodeEditor and Rkns.Renderer.EdgeEditor */\n drawEditBox: function(_options, _coords, _path, _xmargin, _selector) {\n _selector.css({\n width: (_options.tooltip_width - 2 * _options.tooltip_padding)\n });\n var _height = _selector.outerHeight() + 2 * _options.tooltip_padding,\n _isLeft = (_coords.x < paper.view.center.x ? 1 : -1),\n _left = _coords.x + _isLeft * (_xmargin + _options.tooltip_arrow_length),\n _right = _coords.x + _isLeft * (_xmargin + _options.tooltip_arrow_length + _options.tooltip_width),\n _top = _coords.y - _height / 2;\n if (_top + _height > (paper.view.size.height - _options.tooltip_margin)) {\n _top = Math.max(paper.view.size.height - _options.tooltip_margin, _coords.y + _options.tooltip_arrow_width / 2) - _height;\n }\n if (_top < _options.tooltip_margin) {\n _top = Math.min(_options.tooltip_margin, _coords.y - _options.tooltip_arrow_width / 2);\n }\n var _bottom = _top + _height;\n /* jshint laxbreak:true */\n _path.segments[0].point = _path.segments[7].point = _coords.add([_isLeft * _xmargin, 0]);\n _path.segments[1].point.x = _path.segments[2].point.x = _path.segments[5].point.x = _path.segments[6].point.x = _left;\n _path.segments[3].point.x = _path.segments[4].point.x = _right;\n _path.segments[2].point.y = _path.segments[3].point.y = _top;\n _path.segments[4].point.y = _path.segments[5].point.y = _bottom;\n _path.segments[1].point.y = _coords.y - _options.tooltip_arrow_width / 2;\n _path.segments[6].point.y = _coords.y + _options.tooltip_arrow_width / 2;\n _path.closed = true;\n _path.fillColor = new paper.GradientColor(new paper.Gradient([_options.tooltip_top_color, _options.tooltip_bottom_color]), [0, _top], [0, _bottom]);\n _selector.css({\n left: (_options.tooltip_padding + Math.min(_left, _right)),\n top: (_options.tooltip_padding + _top)\n });\n return _path;\n },\n // from http://stackoverflow.com/a/6444043\n increaseBrightness: function (hex, percent){\n // strip the leading # if it's there\n hex = hex.replace(/^\\s*#|\\s*$/g, '');\n\n // convert 3 char codes --> 6, e.g. `E0F` --> `EE00FF`\n if(hex.length === 3){\n hex = hex.replace(/(.)/g, '$1$1');\n }\n\n var r = parseInt(hex.substr(0, 2), 16),\n g = parseInt(hex.substr(2, 2), 16),\n b = parseInt(hex.substr(4, 2), 16);\n\n return '#' +\n ((0|(1<<8) + r + (256 - r) * percent / 100).toString(16)).substr(1) +\n ((0|(1<<8) + g + (256 - g) * percent / 100).toString(16)).substr(1) +\n ((0|(1<<8) + b + (256 - b) * percent / 100).toString(16)).substr(1);\n }\n };\n})(window);\n\n/* END main.js */\n","(function(root) {\n\n \"use strict\";\n\n var DataLoader = root.Rkns.DataLoader = {\n converters: {\n from1to2: function(data) {\n\n var i, len;\n if(typeof data.nodes !== 'undefined') {\n for(i=0, len=data.nodes.length; i 1 ? options.offset[1]\n : options.offset[0];\n }\n else if (options.offset.x != null) {\n offset.x = options.offset.x;\n offset.y = options.offset.y;\n }\n options.offset = offset;\n }\n return options;\n },\n toJSON : function() {\n return {\n _id : this.get(\"_id\"),\n zoom_level : this.get(\"zoom_level\"),\n offset : this.get(\"offset\"),\n title : this.get(\"title\"),\n description : this.get(\"description\"),\n created_by : this.get(\"created_by\") ? this.get(\"created_by\")\n .get(\"_id\") : null,\n hidden_nodes: this.get(\"hidden_nodes\")\n // Don't need project id\n };\n }\n });\n\n // PROJECT\n var Project = Models.Project = RenkanModel.extend({\n schema_version : \"2\",\n type : \"project\",\n blacklist : [ 'saveStatus', 'loadingStatus'],\n relations : [ {\n type : Backbone.HasMany,\n key : \"users\",\n relatedModel : User,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"nodes\",\n relatedModel : Node,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"edges\",\n relatedModel : Edge,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"views\",\n relatedModel : View,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n } ],\n addUser : function(_props, _options) {\n _props.project = this;\n var _user = User.findOrCreate(_props);\n this.get(\"users\").push(_user, _options);\n return _user;\n },\n addNode : function(_props, _options) {\n _props.project = this;\n var _node = Node.findOrCreate(_props);\n this.get(\"nodes\").push(_node, _options);\n return _node;\n },\n addEdge : function(_props, _options) {\n _props.project = this;\n var _edge = Edge.findOrCreate(_props);\n this.get(\"edges\").push(_edge, _options);\n return _edge;\n },\n addView : function(_props, _options) {\n _props.project = this;\n // TODO: check if need to replace with create only\n var _view = View.findOrCreate(_props);\n // TODO: Should we remember only one view?\n this.get(\"views\").push(_view, _options);\n return _view;\n },\n removeNode : function(_model) {\n this.get(\"nodes\").remove(_model);\n },\n removeEdge : function(_model) {\n this.get(\"edges\").remove(_model);\n },\n validate : function(options) {\n var _project = this;\n _.each(\n [].concat(options.users, options.nodes, options.edges,options.views),\n function(_item) {\n if (_item) {\n _item.project = _project;\n }\n }\n );\n },\n getSchemaVersion : function(data) {\n var t = data;\n if(typeof(t) === \"undefined\") {\n t = this;\n }\n var version = t.schema_version;\n if(!version) {\n return 1;\n }\n else {\n return version;\n }\n },\n // Add event handler to remove edges when a node is removed\n initialize : function() {\n var _this = this;\n this.on(\"remove:nodes\", function(_node) {\n _this.get(\"edges\").remove(\n _this.get(\"edges\").filter(\n function(_edge) {\n return _edge.get(\"from\") === _node ||\n _edge.get(\"to\") === _node;\n }));\n });\n },\n toJSON : function() {\n var json = _.clone(this.attributes);\n for ( var attr in json) {\n if ((json[attr] instanceof Backbone.Model) ||\n (json[attr] instanceof Backbone.Collection) ||\n (json[attr] instanceof RenkanModel)) {\n json[attr] = json[attr].toJSON();\n }\n }\n return _.omit(json, this.blacklist);\n }\n });\n\n var RosterUser = Models.RosterUser = Backbone.Model\n .extend({\n type : \"roster_user\",\n idAttribute : \"_id\",\n\n constructor : function(options) {\n\n if (typeof options !== \"undefined\") {\n options._id = options._id ||\n options.id ||\n Models.getUID(this);\n options.title = options.title || \"(untitled \" + this.type + \")\";\n options.description = options.description || \"\";\n options.uri = options.uri || \"\";\n options.project = options.project || null;\n options.site_id = options.site_id || 0;\n\n if (typeof this.prepare === \"function\") {\n options = this.prepare(options);\n }\n }\n Backbone.Model.prototype.constructor.call(this, options);\n },\n\n validate : function() {\n if (!this.type) {\n return \"object has no type\";\n }\n },\n\n prepare : function(options) {\n options.color = options.color || \"#666666\";\n return options;\n },\n\n toJSON : function() {\n return {\n _id : this.get(\"_id\"),\n title : this.get(\"title\"),\n uri : this.get(\"uri\"),\n description : this.get(\"description\"),\n color : this.get(\"color\"),\n project : (this.get(\"project\") != null) ? this.get(\n \"project\").get(\"id\") : null,\n site_id : this.get(\"site_id\")\n };\n }\n });\n\n var UsersList = Models.UsersList = Backbone.Collection.extend({\n model : RosterUser\n });\n\n})(window);\n","Rkns.defaults = {\n\n language: (navigator.language || navigator.userLanguage || \"en\"),\n /* GUI Language */\n container: \"renkan\",\n /* GUI Container DOM element ID */\n search: [],\n /* List of Search Engines */\n bins: [],\n /* List of Bins */\n static_url: \"\",\n /* URL for static resources */\n popup_editor: true,\n /* show the node editor as a popup inside the renkan view */\n editor_panel: 'editor-panel',\n /* GUI continer DOM element ID of the editor panel */\n show_bins: true,\n /* Show bins in left column */\n properties: [],\n /* Semantic properties for edges */\n show_editor: true,\n /* Show the graph editor... Setting this to \"false\" only shows the bins part ! */\n read_only: false,\n /* Allows editing of renkan without changing the rest of the GUI. Can be switched on/off on the fly to block/enable editing */\n editor_mode: true,\n /* Switch for Publish/Edit GUI. If editor_mode is false, read_only will be true. */\n manual_save: false,\n /* In snapshot mode, clicking on the floppy will save a snapshot. Otherwise, it will show the connection status */\n show_top_bar: true,\n /* Show the top bar, (title, buttons, users) */\n default_user_color: \"#303030\",\n size_bug_fix: true,\n /* Resize the canvas after load (fixes a bug on iPad and FF Mac) */\n force_resize: false,\n allow_double_click: true,\n /* Allows Double Click to create a node on an empty background */\n zoom_on_scroll: true,\n /* Allows to use the scrollwheel to zoom */\n element_delete_delay: 0,\n /* Delay between clicking on the bin on an element and really deleting it\n Set to 0 for delete confirm */\n autoscale_padding: 50,\n resize: true,\n\n /* zoom options */\n show_zoom: true,\n /* show zoom buttons */\n save_view: true,\n /* show buttons to save view */\n default_view: false,\n /* Allows to load default view (zoom+offset) at start on read_only mode, instead of autoScale. the default_view will be the last */\n\n\n /* TOP BAR BUTTONS */\n show_search_field: true,\n show_user_list: true,\n user_name_editable: true,\n user_color_editable: true,\n show_user_color: true,\n show_save_button: true,\n show_export_button: true,\n show_open_button: false,\n show_addnode_button: true,\n show_addedge_button: true,\n show_bookmarklet: true,\n show_fullscreen_button: true,\n home_button_url: false,\n home_button_title: \"Home\",\n\n /* MINI-MAP OPTIONS */\n\n show_minimap: true,\n /* Show a small map at the bottom right */\n minimap_width: 160,\n minimap_height: 120,\n minimap_padding: 20,\n minimap_background_color: \"#ffffff\",\n minimap_border_color: \"#cccccc\",\n minimap_highlight_color: \"#ffff00\",\n minimap_highlight_weight: 5,\n\n\n /* EDGE/NODE COMMON OPTIONS */\n\n buttons_background: \"#202020\",\n buttons_label_color: \"#c000c0\",\n buttons_label_font_size: 9,\n\n ghost_opacity : 0.3,\n /* opacity when the hidden element is revealed */\n default_dash_array : [4, 5],\n /* dash line genometry */\n\n /* NODE DISPLAY OPTIONS */\n\n show_node_circles: true,\n /* Show circles for nodes */\n clip_node_images: true,\n /* Constraint node images to circles */\n node_images_fill_mode: false,\n /* Set to false for \"letterboxing\" (height/width of node adapted to show full image)\n Set to true for \"crop\" (adapted to fill circle) */\n node_size_base: 25,\n node_stroke_width: 2,\n node_stroke_max_width: 12,\n selected_node_stroke_width: 4,\n selected_node_stroke_max_width: 24,\n node_stroke_witdh_scale: 5,\n node_fill_color: \"#ffffff\",\n highlighted_node_fill_color: \"#ffff00\",\n node_label_distance: 5,\n /* Vertical distance between node and label */\n node_label_max_length: 60,\n /* Maximum displayed text length */\n label_untitled_nodes: \"(untitled)\",\n /* Label to display on untitled nodes */\n change_shapes: true,\n /* Change shapes enabled */\n\n /* EDGE DISPLAY OPTIONS */\n\n edge_stroke_width: 2,\n edge_stroke_max_width: 12,\n selected_edge_stroke_width: 4,\n selected_edge_stroke_max_width: 24,\n edge_stroke_witdh_scale: 5,\n\n edge_label_distance: 0,\n edge_label_max_length: 20,\n edge_arrow_length: 18,\n edge_arrow_width: 12,\n edge_arrow_max_width: 32,\n edge_gap_in_bundles: 12,\n label_untitled_edges: \"\",\n\n /* CONTEXTUAL DISPLAY (TOOLTIP OR EDITOR) OPTIONS */\n\n tooltip_width: 275,\n tooltip_padding: 10,\n tooltip_margin: 15,\n tooltip_arrow_length : 20,\n tooltip_arrow_width : 40,\n tooltip_top_color: \"#f0f0f0\",\n tooltip_bottom_color: \"#d0d0d0\",\n tooltip_border_color: \"#808080\",\n tooltip_border_width: 1,\n\n /* NODE EDITOR OPTIONS */\n\n show_node_editor_uri: true,\n show_node_editor_description: true,\n show_node_editor_size: true,\n show_node_editor_style: true,\n show_node_editor_style_color: true,\n show_node_editor_style_dash: true,\n show_node_editor_style_thickness: true,\n show_node_editor_image: true,\n show_node_editor_creator: true,\n allow_image_upload: true,\n uploaded_image_max_kb: 500,\n\n /* NODE TOOLTIP OPTIONS */\n\n show_node_tooltip_uri: true,\n show_node_tooltip_description: true,\n show_node_tooltip_color: true,\n show_node_tooltip_image: true,\n show_node_tooltip_creator: true,\n\n /* EDGE EDITOR OPTIONS */\n\n show_edge_editor_uri: true,\n show_edge_editor_style: true,\n show_edge_editor_style_color: true,\n show_edge_editor_style_dash: true,\n show_edge_editor_style_thickness: true,\n show_edge_editor_style_arrow: true,\n show_edge_editor_direction: true,\n show_edge_editor_nodes: true,\n show_edge_editor_creator: true,\n\n /* EDGE TOOLTIP OPTIONS */\n\n show_edge_tooltip_uri: true,\n show_edge_tooltip_color: true,\n show_edge_tooltip_nodes: true,\n show_edge_tooltip_creator: true\n\n /* */\n\n};\n","Rkns.i18n = {\n fr: {\n \"Edit Node\": \"Édition d’un nœud\",\n \"Edit Edge\": \"Édition d’un lien\",\n \"Title:\": \"Titre :\",\n \"URI:\": \"URI :\",\n \"Description:\": \"Description :\",\n \"From:\": \"De :\",\n \"To:\": \"Vers :\",\n \"Image\": \"Image\",\n \"Image URL:\": \"URL d'Image\",\n \"Choose Image File:\": \"Choisir un fichier image\",\n \"Full Screen\": \"Mode plein écran\",\n \"Add Node\": \"Ajouter un nœud\",\n \"Add Edge\": \"Ajouter un lien\",\n \"Save Project\": \"Enregistrer le projet\",\n \"Open Project\": \"Ouvrir un projet\",\n \"Auto-save enabled\": \"Enregistrement automatique activé\",\n \"Connection lost\": \"Connexion perdue\",\n \"Created by:\": \"Créé par :\",\n \"Zoom In\": \"Agrandir l’échelle\",\n \"Zoom Out\": \"Rapetisser l’échelle\",\n \"Edit\": \"Éditer\",\n \"Remove\": \"Supprimer\",\n \"Cancel deletion\": \"Annuler la suppression\",\n \"Link to another node\": \"Créer un lien\",\n \"Enlarge\": \"Agrandir\",\n \"Shrink\": \"Rétrécir\",\n \"Click on the background canvas to add a node\": \"Cliquer sur le fond du graphe pour rajouter un nœud\",\n \"Click on a first node to start the edge\": \"Cliquer sur un premier nœud pour commencer le lien\",\n \"Click on a second node to complete the edge\": \"Cliquer sur un second nœud pour terminer le lien\",\n \"Wikipedia\": \"Wikipédia\",\n \"Wikipedia in \": \"Wikipédia en \",\n \"French\": \"Français\",\n \"English\": \"Anglais\",\n \"Japanese\": \"Japonais\",\n \"Untitled project\": \"Projet sans titre\",\n \"Lignes de Temps\": \"Lignes de Temps\",\n \"Loading, please wait\": \"Chargement en cours, merci de patienter\",\n \"Edge color:\": \"Couleur :\",\n \"Dash:\": \"Point. :\",\n \"Thickness:\": \"Epaisseur :\",\n \"Arrow:\": \"Flèche :\",\n \"Node color:\": \"Couleur :\",\n \"Choose color\": \"Choisir une couleur\",\n \"Change edge direction\": \"Changer le sens du lien\",\n \"Do you really wish to remove node \": \"Voulez-vous réellement supprimer le nœud \",\n \"Do you really wish to remove edge \": \"Voulez-vous réellement supprimer le lien \",\n \"This file is not an image\": \"Ce fichier n'est pas une image\",\n \"Image size must be under \": \"L'image doit peser moins de \",\n \"Size:\": \"Taille :\",\n \"KB\": \"ko\",\n \"Choose from vocabulary:\": \"Choisir dans un vocabulaire :\",\n \"SKOS Documentation properties\": \"SKOS: Propriétés documentaires\",\n \"has note\": \"a pour note\",\n \"has example\": \"a pour exemple\",\n \"has definition\": \"a pour définition\",\n \"SKOS Semantic relations\": \"SKOS: Relations sémantiques\",\n \"has broader\": \"a pour concept plus large\",\n \"has narrower\": \"a pour concept plus étroit\",\n \"has related\": \"a pour concept apparenté\",\n \"Dublin Core Metadata\": \"Métadonnées Dublin Core\",\n \"has contributor\": \"a pour contributeur\",\n \"covers\": \"couvre\",\n \"created by\": \"créé par\",\n \"has date\": \"a pour date\",\n \"published by\": \"édité par\",\n \"has source\": \"a pour source\",\n \"has subject\": \"a pour sujet\",\n \"Dragged resource\": \"Ressource glisée-déposée\",\n \"Search the Web\": \"Rechercher en ligne\",\n \"Search in Bins\": \"Rechercher dans les chutiers\",\n \"Close bin\": \"Fermer le chutier\",\n \"Refresh bin\": \"Rafraîchir le chutier\",\n \"(untitled)\": \"(sans titre)\",\n \"Select contents:\": \"Sélectionner des contenus :\",\n \"Drag items from this website, drop them in Renkan\": \"Glissez des éléments de ce site web vers Renkan\",\n \"Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.\": \"Glissez ce bouton vers votre barre de favoris. Ensuite, depuis un site tiers, cliquez dessus pour activer 'Drag-to-Add' puis glissez des éléments de ce site vers Renkan\",\n \"Shapes available\": \"Formes disponibles\",\n \"Circle\": \"Cercle\",\n \"Square\": \"Carré\",\n \"Diamond\": \"Losange\",\n \"Hexagone\": \"Hexagone\",\n \"Ellipse\": \"Ellipse\",\n \"Star\": \"Étoile\",\n \"Cloud\": \"Nuage\",\n \"Triangle\": \"Triangle\",\n \"Zoom Fit\": \"Ajuster le Zoom\",\n \"Download Project\": \"Télécharger le projet\",\n \"Zoom Save\": \"Sauver le Zoom\",\n \"View saved zoom\": \"Restaurer le Zoom\",\n \"Renkan \\'Drag-to-Add\\' bookmarklet\": \"Renkan \\'Deplacer-Pour-Ajouter\\' Signet\",\n \"(unknown user)\":\"(non authentifié)\",\n \"\":\"\",\n \"Search in graph\":\"Rechercher dans carte\",\n \"Search in \" : \"Chercher dans \"\n }\n};\n","/* Saves the Full JSON at each modification */\n\nRkns.jsonIO = function(_renkan, _opts) {\n var _proj = _renkan.project;\n if (typeof _opts.http_method === \"undefined\") {\n _opts.http_method = 'PUT';\n }\n var _load = function() {\n _renkan.renderer.redrawActive = false;\n _proj.set({\n loadingStatus : true\n });\n Rkns.$.getJSON(_opts.url, function(_data) {\n _renkan.dataloader.load(_data);\n _proj.set({\n loadingStatus : false\n });\n _proj.set({\n saveStatus : 0\n });\n _renkan.renderer.redrawActive = true;\n _renkan.renderer.fixSize();\n });\n };\n var _save = function() {\n _proj.set({\n saveStatus : 2\n });\n var _data = _proj.toJSON();\n if (!_renkan.read_only) {\n Rkns.$.ajax({\n type : _opts.http_method,\n url : _opts.url,\n contentType : \"application/json\",\n data : JSON.stringify(_data),\n success : function(data, textStatus, jqXHR) {\n _proj.set({\n saveStatus : 0\n });\n }\n });\n }\n\n };\n var _thrSave = Rkns._.throttle(function() {\n setTimeout(_save, 100);\n }, 1000);\n _proj.on(\"add:nodes add:edges add:users add:views\", function(_model) {\n _model.on(\"change remove\", function(_model) {\n _thrSave();\n });\n _thrSave();\n });\n _proj.on(\"change\", function() {\n if (!(_proj.changedAttributes.length === 1 && _proj\n .hasChanged('saveStatus'))) {\n _thrSave();\n }\n });\n\n _load();\n};\n","/* Saves the Full JSON once */\n\nRkns.jsonIOSaveOnClick = function(_renkan, _opts) {\n var _proj = _renkan.project,\n _saveWarn = false,\n _onLeave = function() {\n return \"Project not saved\";\n };\n if (typeof _opts.http_method === \"undefined\") {\n _opts.http_method = 'POST';\n }\n var _load = function() {\n var getdata = {},\n rx = /id=([^&#?=]+)/,\n matches = document.location.hash.match(rx);\n if (matches) {\n getdata.id = matches[1];\n }\n Rkns.$.ajax({\n url: _opts.url,\n data: getdata,\n beforeSend: function(){\n \t_proj.set({loadingStatus:true});\n },\n success: function(_data) {\n _renkan.dataloader.load(_data);\n _proj.set({loadingStatus:false});\n _proj.set({saveStatus:0});\n _renkan.renderer.autoScale();\n }\n });\n };\n var _save = function() {\n _proj.set(\"saved_at\", new Date());\n var _data = _proj.toJSON();\n Rkns.$.ajax({\n type: _opts.http_method,\n url: _opts.url,\n contentType: \"application/json\",\n data: JSON.stringify(_data),\n beforeSend: function(){\n \t_proj.set({saveStatus:2});\n },\n success: function(data, textStatus, jqXHR) {\n $(window).off(\"beforeunload\", _onLeave);\n _saveWarn = false;\n _proj.set({saveStatus:0});\n //document.location.hash = \"#id=\" + data.id;\n //$(\".Rk-Notifications\").text(\"Saved as \"+document.location.href).fadeIn().delay(2000).fadeOut();\n }\n });\n };\n var _checkLeave = function() {\n \t_proj.set({saveStatus:1});\n\n var title = _proj.get(\"title\");\n if (title && _proj.get(\"nodes\").length) {\n $(\".Rk-Save-Button\").removeClass(\"disabled\");\n } else {\n $(\".Rk-Save-Button\").addClass(\"disabled\");\n }\n if (title) {\n $(\".Rk-PadTitle\").css(\"border-color\",\"#333333\");\n }\n if (!_saveWarn) {\n _saveWarn = true;\n $(window).on(\"beforeunload\", _onLeave);\n }\n };\n _load();\n _proj.on(\"add:nodes add:edges add:users change\", function(_model) {\n\t _model.on(\"change remove\", function(_model) {\n\t \tif(!(_model.changedAttributes.length === 1 && _model.hasChanged('saveStatus'))) {\n\t \t\t_checkLeave();\n\t \t}\n\t });\n\t\tif(!(_proj.changedAttributes.length === 1 && _proj.hasChanged('saveStatus'))) {\n\t\t _checkLeave();\n \t}\n });\n _renkan.renderer.save = function() {\n if ($(\".Rk-Save-Button\").hasClass(\"disabled\")) {\n if (!_proj.get(\"title\")) {\n $(\".Rk-PadTitle\").css(\"border-color\",\"#ff0000\");\n }\n } else {\n _save();\n }\n };\n};\n","(function(Rkns) {\n\"use strict\";\n\nvar _ = Rkns._;\n\nvar Ldt = Rkns.Ldt = {};\n\nvar Bin = Ldt.Bin = function(_renkan, _opts) {\n if (_opts.ldt_type) {\n var Resclass = Ldt[_opts.ldt_type+\"Bin\"];\n if (Resclass) {\n return new Resclass(_renkan, _opts);\n }\n }\n console.error(\"No such LDT Bin Type\");\n};\n\nvar ProjectBin = Ldt.ProjectBin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nProjectBin.prototype.tagTemplate = renkanJST['templates/ldtjson-bin/tagtemplate.html'];\n\nProjectBin.prototype.annotationTemplate = renkanJST['templates/ldtjson-bin/annotationtemplate.html'];\n\nProjectBin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.proj_id = _opts.project_id;\n this.ldt_platform = _opts.ldt_platform || \"http://ldt.iri.centrepompidou.fr/\";\n this.title_$.html(_opts.title);\n this.title_icon_$.addClass('Rk-Ldt-Title-Icon');\n this.refresh();\n};\n\nProjectBin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n function highlight(_text) {\n var _e = _(_text).escape();\n return search.isempty ? _e : search.replace(_e, \"$1\");\n }\n function convertTC(_ms) {\n function pad(_n) {\n var _res = _n.toString();\n while (_res.length < 2) {\n _res = '0' + _res;\n }\n return _res;\n }\n var _totalSeconds = Math.abs(Math.floor(_ms/1000)),\n _hours = Math.floor(_totalSeconds / 3600),\n _minutes = (Math.floor(_totalSeconds / 60) % 60),\n _seconds = _totalSeconds % 60,\n _res = '';\n if (_hours) {\n _res += pad(_hours) + ':';\n }\n _res += pad(_minutes) + ':' + pad(_seconds);\n return _res;\n }\n\n var _html = '
                    • Tags

                    • ',\n _projtitle = this.data.meta[\"dc:title\"],\n _this = this,\n count = 0;\n _this.title_$.text('LDT Project: \"' + _projtitle + '\"');\n _.map(_this.data.tags,function(_tag) {\n var _title = _tag.meta[\"dc:title\"];\n if (!search.isempty && !search.test(_title)) {\n return;\n }\n count++;\n _html += _this.tagTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n encodedtitle : encodeURIComponent(_title),\n static_url: _this.renkan.options.static_url\n });\n });\n _html += '
                    • Annotations

                    • ';\n _.map(_this.data.annotations,function(_annotation) {\n var _description = _annotation.content.description,\n _title = _annotation.content.title.replace(_description,\"\");\n if (!search.isempty && !search.test(_title) && !search.test(_description)) {\n return;\n }\n count++;\n var _duration = _annotation.end - _annotation.begin,\n _img = (\n (_annotation.content && _annotation.content.img && _annotation.content.img.src) ?\n _annotation.content.img.src :\n ( _duration ? _this.renkan.options.static_url+\"img/ldt-segment.png\" : _this.renkan.options.static_url+\"img/ldt-point.png\" )\n );\n _html += _this.annotationTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n description: _description,\n hdescription: highlight(_description),\n start: convertTC(_annotation.begin),\n end: convertTC(_annotation.end),\n duration: convertTC(_duration),\n mediaid: _annotation.media,\n annotationid: _annotation.id,\n image: _img,\n static_url: _this.renkan.options.static_url\n });\n });\n\n this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nProjectBin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: this.ldt_platform + 'ldtplatform/ldt/cljson/id/' + this.proj_id,\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n\nvar Search = Ldt.Search = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.lang = _opts.lang || \"en\";\n};\n\nSearch.prototype.getBgClass = function() {\n return \"Rk-Ldt-Icon\";\n};\n\nSearch.prototype.getSearchTitle = function() {\n return this.renkan.translate(\"Lignes de Temps\");\n};\n\nSearch.prototype.search = function(_q) {\n this.renkan.tabs.push(\n new ResultsBin(this.renkan, {\n search: _q\n })\n );\n};\n\nvar ResultsBin = Ldt.ResultsBin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nResultsBin.prototype.segmentTemplate = renkanJST['templates/ldtjson-bin/segmenttemplate.html'];\n\nResultsBin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.ldt_platform = _opts.ldt_platform || \"http://ldt.iri.centrepompidou.fr/\";\n this.max_results = _opts.max_results || 50;\n this.search = _opts.search;\n this.title_$.html('Lignes de Temps: \"' + _opts.search + '\"');\n this.title_icon_$.addClass('Rk-Ldt-Title-Icon');\n this.refresh();\n};\n\nResultsBin.prototype.render = function(searchbase) {\n if (!this.data) {\n return;\n }\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n var highlightrx = (search.isempty ? Rkns.Utils.regexpFromTextOrArray(this.search) : search);\n function highlight(_text) {\n return highlightrx.replace(_(_text).escape(), \"$1\");\n }\n function convertTC(_ms) {\n function pad(_n) {\n var _res = _n.toString();\n while (_res.length < 2) {\n _res = '0' + _res;\n }\n return _res;\n }\n var _totalSeconds = Math.abs(Math.floor(_ms/1000)),\n _hours = Math.floor(_totalSeconds / 3600),\n _minutes = (Math.floor(_totalSeconds / 60) % 60),\n _seconds = _totalSeconds % 60,\n _res = '';\n if (_hours) {\n _res += pad(_hours) + ':';\n }\n _res += pad(_minutes) + ':' + pad(_seconds);\n return _res;\n }\n\n var _html = '',\n _this = this,\n count = 0;\n _.each(this.data.objects,function(_segment) {\n var _description = _segment.abstract,\n _title = _segment.title;\n if (!search.isempty && !search.test(_title) && !search.test(_description)) {\n return;\n }\n count++;\n var _duration = _segment.duration,\n _begin = _segment.start_ts,\n _end = + _segment.duration + _begin,\n _img = (\n _duration ?\n _this.renkan.options.static_url + \"img/ldt-segment.png\" :\n _this.renkan.options.static_url + \"img/ldt-point.png\"\n );\n _html += _this.segmentTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n description: _description,\n hdescription: highlight(_description),\n start: convertTC(_begin),\n end: convertTC(_end),\n duration: convertTC(_duration),\n mediaid: _segment.iri_id,\n //projectid: _segment.project_id,\n //cuttingid: _segment.cutting_id,\n annotationid: _segment.element_id,\n image: _img\n });\n });\n\n this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nResultsBin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: this.ldt_platform + 'ldtplatform/api/ldt/1.0/segments/search/',\n data: {\n format: \"jsonp\",\n q: this.search,\n limit: this.max_results\n },\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n\n})(window.Rkns);\n","Rkns.ResourceList = {};\n\nRkns.ResourceList.Bin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nRkns.ResourceList.Bin.prototype.resultTemplate = renkanJST['templates/list-bin.html'];\n\nRkns.ResourceList.Bin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.title_$.html(_opts.title);\n if (_opts.list) {\n this.data = _opts.list;\n }\n this.refresh();\n};\n\nRkns.ResourceList.Bin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n function highlight(_text) {\n var _e = _(_text).escape();\n return search.isempty ? _e : search.replace(_e, \"$1\");\n }\n var _html = \"\",\n _this = this,\n count = 0;\n Rkns._.each(this.data,function(_item) {\n var _element;\n if (typeof _item === \"string\") {\n if (/^(https?:\\/\\/|www)/.test(_item)) {\n _element = { url: _item };\n } else {\n _element = { title: _item.replace(/[:,]?\\s?(https?:\\/\\/|www)[\\d\\w\\/.&?=#%-_]+\\s?/,'').trim() };\n var _match = _item.match(/(https?:\\/\\/|www)[\\d\\w\\/.&?=#%-_]+/);\n if (_match) {\n _element.url = _match[0];\n }\n if (_element.title.length > 80) {\n _element.description = _element.title;\n _element.title = _element.title.replace(/^(.{30,60})\\s.+$/,'$1…');\n }\n }\n } else {\n _element = _item;\n }\n var title = _element.title || (_element.url || \"\").replace(/^https?:\\/\\/(www\\.)?/,'').replace(/^(.{40}).+$/,'$1…'),\n url = _element.url || \"\",\n description = _element.description || \"\",\n image = _element.image || \"\";\n if (url && !/^https?:\\/\\//.test(url)) {\n url = 'http://' + url;\n }\n if (!search.isempty && !search.test(title) && !search.test(description)) {\n return;\n }\n count++;\n _html += _this.resultTemplate({\n url: url,\n title: title,\n htitle: highlight(title),\n image: image,\n description: description,\n hdescription: highlight(description),\n static_url: _this.renkan.options.static_url\n });\n });\n _this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nRkns.ResourceList.Bin.prototype.refresh = function() {\n if (this.data) {\n this.render();\n }\n};\n","Rkns.Wikipedia = {\n};\n\nRkns.Wikipedia.Search = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.lang = _opts.lang || \"en\";\n};\n\nRkns.Wikipedia.Search.prototype.getBgClass = function() {\n return \"Rk-Wikipedia-Search-Icon Rk-Wikipedia-Lang-\" + this.lang;\n};\n\nRkns.Wikipedia.Search.prototype.getSearchTitle = function() {\n var langs = {\n \"fr\": \"French\",\n \"en\": \"English\",\n \"ja\": \"Japanese\"\n };\n if (langs[this.lang]) {\n return this.renkan.translate(\"Wikipedia in \") + this.renkan.translate(langs[this.lang]);\n } else {\n return this.renkan.translate(\"Wikipedia\") + \" [\" + this.lang + \"]\";\n }\n};\n\nRkns.Wikipedia.Search.prototype.search = function(_q) {\n this.renkan.tabs.push(\n new Rkns.Wikipedia.Bin(this.renkan, {\n lang: this.lang,\n search: _q\n })\n );\n};\n\nRkns.Wikipedia.Bin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nRkns.Wikipedia.Bin.prototype.resultTemplate = renkanJST['templates/wikipedia-bin/resulttemplate.html'];\n\nRkns.Wikipedia.Bin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.search = _opts.search;\n this.lang = _opts.lang || \"en\";\n this.title_icon_$.addClass('Rk-Wikipedia-Title-Icon Rk-Wikipedia-Lang-' + this.lang);\n this.title_$.html(this.search).addClass(\"Rk-Wikipedia-Title\");\n this.refresh();\n};\n\nRkns.Wikipedia.Bin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n var highlightrx = (search.isempty ? Rkns.Utils.regexpFromTextOrArray(this.search) : search);\n function highlight(_text) {\n return highlightrx.replace(_(_text).escape(), \"$1\");\n }\n var _html = \"\",\n _this = this,\n count = 0;\n Rkns._.each(this.data.query.search, function(_result) {\n var title = _result.title,\n url = \"http://\" + _this.lang + \".wikipedia.org/wiki/\" + encodeURI(title.replace(/ /g,\"_\")),\n description = Rkns.$('
                      ').html(_result.snippet).text();\n if (!search.isempty && !search.test(title) && !search.test(description)) {\n return;\n }\n count++;\n _html += _this.resultTemplate({\n url: url,\n title: title,\n htitle: highlight(title),\n description: description,\n hdescription: highlight(description),\n static_url: _this.renkan.options.static_url\n });\n });\n _this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nRkns.Wikipedia.Bin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: \"http://\" + _this.lang + \".wikipedia.org/w/api.php?action=query&list=search&srsearch=\" + encodeURIComponent(this.search) + \"&format=json\",\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n","\ndefine('renderer/baserepresentation',['jquery', 'underscore'], function ($, _) {\n \n\n /* Rkns.Renderer._BaseRepresentation Class */\n\n /* In Renkan, a \"Representation\" is a sort of ViewModel (in the MVVM paradigm) and bridges the gap between\n * models (written with Backbone.js) and the view (written with Paper.js)\n * Renkan's representations all inherit from Rkns.Renderer._BaseRepresentation '*/\n\n var _BaseRepresentation = function(_renderer, _model) {\n if (typeof _renderer !== \"undefined\") {\n this.renderer = _renderer;\n this.renkan = _renderer.renkan;\n this.project = _renderer.renkan.project;\n this.options = _renderer.renkan.options;\n this.model = _model;\n if (this.model) {\n var _this = this;\n this._changeBinding = function() {\n _this.redraw({change: true});\n };\n this._removeBinding = function() {\n _renderer.removeRepresentation(_this);\n _.defer(function() {\n _renderer.redraw();\n });\n };\n this._selectBinding = function() {\n _this.select();\n };\n this._unselectBinding = function() {\n _this.unselect();\n };\n this.model.on(\"change\", this._changeBinding );\n this.model.on(\"remove\", this._removeBinding );\n this.model.on(\"select\", this._selectBinding );\n this.model.on(\"unselect\", this._unselectBinding );\n }\n }\n };\n\n /* Rkns.Renderer._BaseRepresentation Methods */\n\n _(_BaseRepresentation.prototype).extend({\n _super: function(_func) {\n return _BaseRepresentation.prototype[_func].apply(this, Array.prototype.slice.call(arguments, 1));\n },\n redraw: function() {},\n moveTo: function() {},\n show: function() { return \"BaseRepresentation.show\"; },\n hide: function() {},\n select: function() {\n if (this.model) {\n this.model.trigger(\"selected\");\n }\n },\n unselect: function() {\n if (this.model) {\n this.model.trigger(\"unselected\");\n }\n },\n highlight: function() {},\n unhighlight: function() {},\n mousedown: function() {},\n mouseup: function() {\n if (this.model) {\n this.model.trigger(\"clicked\");\n }\n },\n destroy: function() {\n if (this.model) {\n this.model.off(\"change\", this._changeBinding );\n this.model.off(\"remove\", this._removeBinding );\n this.model.off(\"select\", this._selectBinding );\n this.model.off(\"unselect\", this._unselectBinding );\n }\n }\n }).value();\n\n /* End of Rkns.Renderer._BaseRepresentation Class */\n\n return _BaseRepresentation;\n\n});\n\ndefine('requtils',[], function ($, _) {\n \n return {\n getUtils: function(){\n return window.Rkns.Utils;\n },\n getRenderer: function(){\n return window.Rkns.Renderer;\n }\n };\n\n});\n\n\ndefine('renderer/basebutton',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* Rkns.Renderer._BaseButton Class */\n\n /* BaseButton is extended by contextual buttons that appear when hovering on nodes and edges */\n\n var _BaseButton = Utils.inherit(BaseRepresentation);\n\n _(_BaseButton.prototype).extend({\n moveTo: function(_pos) {\n this.sector.moveTo(_pos);\n },\n show: function() {\n this.sector.show();\n },\n hide: function() {\n this.sector.hide();\n },\n select: function() {\n this.sector.select();\n },\n unselect: function(_newTarget) {\n this.sector.unselect();\n if (!_newTarget || (_newTarget !== this.source_representation && _newTarget.source_representation !== this.source_representation)) {\n this.source_representation.unselect();\n }\n },\n destroy: function() {\n this.sector.destroy();\n }\n }).value();\n\n return _BaseButton;\n\n});\n\n\ndefine('renderer/shapebuilder',[], function () {\n \n\n var cloud_path = \"M0,0c-0.1218516546,-0.0336420601 -0.2451649928,0.0048580836 -0.3302944641,0.0884969975c-0.0444763883,-0.0550844815 -0.1047003238,-0.0975985034 -0.1769360893,-0.1175406746c-0.1859066673,-0.0513257002 -0.3774236254,0.0626045858 -0.4272374613,0.2541588105c-0.0036603877,0.0140753132 -0.0046241235,0.028229722 -0.0065872453,0.042307536c-0.1674179627,-0.0179317735 -0.3276106855,0.0900599386 -0.3725537463,0.2628868425c-0.0445325077,0.1712456429 0.0395025693,0.3463497959 0.1905420475,0.4183458793c-0.0082101538,0.0183442886 -0.0158652506,0.0372432828 -0.0211098452,0.0574080693c-0.0498130336,0.1915540431 0.0608692569,0.3884647499 0.2467762814,0.4397904033c0.0910577256,0.0251434257 0.1830791813,0.0103792696 0.2594677475,-0.0334472349c0.042100113,0.0928009202 0.1205930075,0.1674914182 0.2240666796,0.1960572479c0.1476344161,0.0407610407 0.297446165,-0.0238077445 0.3783262342,-0.1475652419c0.0327623278,0.0238981846 0.0691792333,0.0436665447 0.1102008706,0.0549940004c0.1859065794,0.0513256592 0.3770116432,-0.0627203154 0.4268255671,-0.2542745401c0.0250490557,-0.0963230532 0.0095494076,-0.1938010889 -0.0356681889,-0.2736906101c0.0447507424,-0.0439678867 0.0797796014,-0.0996624318 0.0969425462,-0.1656617192c0.0498137481,-0.1915564561 -0.0608688118,-0.3884669813 -0.2467755669,-0.4397928163c-0.0195699622,-0.0054005426 -0.0391731675,-0.0084429542 -0.0586916488,-0.0102888295c0.0115683912,-0.1682147574 -0.0933564223,-0.3269222408 -0.2572937178,-0.3721841203z\";\n /* ShapeBuilder Begin */\n\n var builders = {\n \"circle\":{\n getShape: function() {\n return new paper.Path.Circle([0, 0], 1);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Circle(center, radius);\n }\n },\n \"rectangle\":{\n getShape: function() {\n return new paper.Path.Rectangle([-2, -2], [2, 2]);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Rectangle([-radius, -radius], [radius*2, radius*2]);\n }\n },\n \"ellipse\":{\n getShape: function() {\n return new paper.Path.Ellipse(new paper.Rectangle([-2, -1], [2, 1]));\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Ellipse(new paper.Rectangle([-radius, -radius/2], [radius*2, radius]));\n }\n },\n \"polygon\":{\n getShape: function() {\n return new paper.Path.RegularPolygon([0, 0], 6, 1);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.RegularPolygon(center, 6, radius);\n }\n },\n \"diamond\":{\n getShape: function() {\n var d = new paper.Path.Rectangle([-Math.SQRT2, -Math.SQRT2], [Math.SQRT2, Math.SQRT2]);\n d.rotate(45);\n return d;\n },\n getImageShape: function(center, radius) {\n var d = new paper.Path.Rectangle([-radius*Math.SQRT2/2, -radius*Math.SQRT2/2], [radius*Math.SQRT2, radius*Math.SQRT2]);\n d.rotate(45);\n return d;\n }\n },\n \"star\":{\n getShape: function() {\n return new paper.Path.Star([0, 0], 8, 1, 0.7);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Star(center, 8, radius*1, radius*0.7);\n }\n },\n \"cloud\": {\n getShape: function() {\n var path = new paper.Path(cloud_path);\n return path;\n\n },\n getImageShape: function(center, radius) {\n var path = new paper.Path(cloud_path);\n path.scale(radius);\n path.translate(center);\n return path;\n }\n },\n \"triangle\": {\n getShape: function() {\n return new paper.Path.RegularPolygon([0,0], 3, 1);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.RegularPolygon(center, 3, radius);\n }\n },\n \"svg\": function(path){\n return {\n getShape: function() {\n return new paper.Path(path);\n },\n getImageShape: function(center, radius) {\n // No calcul for the moment\n return new paper.Path();\n }\n };\n }\n };\n\n var ShapeBuilder = function (shape){\n if(shape === null || typeof shape === \"undefined\"){\n shape = \"circle\";\n }\n if(shape.substr(0,4)===\"svg:\"){\n return builders.svg(shape.substr(4));\n }\n if(!(shape in builders)){\n shape = \"circle\";\n }\n return builders[shape];\n };\n\n ShapeBuilder.builders = builders;\n\n return ShapeBuilder;\n\n});\n\ndefine('renderer/noderepr',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation', 'renderer/shapebuilder'], function ($, _, requtils, BaseRepresentation, ShapeBuilder) {\n \n\n var Utils = requtils.getUtils();\n\n /* Rkns.Renderer.Node Class */\n\n /* The representation for the node : A circle, with an image inside and a text label underneath.\n * The circle and the image are drawn on canvas and managed by Paper.js.\n * The text label is an HTML node, managed by jQuery. */\n\n //var NodeRepr = Renderer.Node = Utils.inherit(Renderer._BaseRepresentation);\n var NodeRepr = Utils.inherit(BaseRepresentation);\n\n _(NodeRepr.prototype).extend({\n _init: function() {\n this.renderer.node_layer.activate();\n this.type = \"Node\";\n this.buildShape();\n this.hidden = false;\n this.ghost= false;\n if (this.options.show_node_circles) {\n this.circle.strokeWidth = this.options.node_stroke_width;\n this.h_ratio = 1;\n } else {\n this.h_ratio = 0;\n }\n this.title = $('
                      ').appendTo(this.renderer.labels_$);\n\n if (this.options.editor_mode) {\n var Renderer = requtils.getRenderer();\n this.normal_buttons = [\n new Renderer.NodeEditButton(this.renderer, null),\n new Renderer.NodeRemoveButton(this.renderer, null),\n new Renderer.NodeHideButton(this.renderer, null),\n new Renderer.NodeShowButton(this.renderer, null),\n new Renderer.NodeLinkButton(this.renderer, null),\n new Renderer.NodeEnlargeButton(this.renderer, null),\n new Renderer.NodeShrinkButton(this.renderer, null)\n ];\n this.pending_delete_buttons = [\n new Renderer.NodeRevertButton(this.renderer, null)\n ];\n this.all_buttons = this.normal_buttons.concat(this.pending_delete_buttons);\n\n for (var i = 0; i < this.all_buttons.length; i++) {\n this.all_buttons[i].source_representation = this;\n }\n this.active_buttons = [];\n } else {\n this.active_buttons = this.all_buttons = [];\n }\n this.last_circle_radius = 1;\n\n if (this.renderer.minimap) {\n this.renderer.minimap.node_layer.activate();\n this.minimap_circle = new paper.Path.Circle([0, 0], 1);\n this.minimap_circle.__representation = this.renderer.minimap.miniframe.__representation;\n this.renderer.minimap.node_group.addChild(this.minimap_circle);\n }\n },\n _getStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.node_stroke_width + (thickness-1) * (this.options.node_stroke_max_width - this.options.node_stroke_width) / (this.options.node_stroke_witdh_scale-1);\n },\n _getSelectedStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.selected_node_stroke_width + (thickness-1) * (this.options.selected_node_stroke_max_width - this.options.selected_node_stroke_width) / (this.options.node_stroke_witdh_scale-1);\n },\n buildShape: function(){\n if( 'shape' in this.model.changed ) {\n delete this.img;\n }\n if(this.circle){\n this.circle.remove();\n delete this.circle;\n }\n // \"circle\" \"rectangle\" \"ellipse\" \"polygon\" \"star\" \"diamond\"\n this.shapeBuilder = new ShapeBuilder(this.model.get(\"shape\"));\n this.circle = this.shapeBuilder.getShape();\n this.circle.__representation = this;\n this.circle.sendToBack();\n this.last_circle_radius = 1;\n },\n redraw: function(options) {\n if( 'shape' in this.model.changed && 'change' in options && options.change ) {\n //if( 'shape' in this.model.changed ) {\n this.buildShape();\n }\n var _model_coords = new paper.Point(this.model.get(\"position\")),\n _baseRadius = this.options.node_size_base * Math.exp((this.model.get(\"size\") || 0) * Utils._NODE_SIZE_STEP);\n if (!this.is_dragging || !this.paper_coords) {\n this.paper_coords = this.renderer.toPaperCoords(_model_coords);\n }\n this.circle_radius = _baseRadius * this.renderer.scale;\n if (this.last_circle_radius !== this.circle_radius) {\n this.all_buttons.forEach(function(b) {\n b.setSectorSize();\n });\n this.circle.scale(this.circle_radius / this.last_circle_radius);\n if (this.node_image) {\n this.node_image.scale(this.circle_radius / this.last_circle_radius);\n }\n }\n this.circle.position = this.paper_coords;\n if (this.node_image) {\n this.node_image.position = this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius));\n }\n this.last_circle_radius = this.circle_radius;\n\n var old_act_btn = this.active_buttons;\n\n var opacity = 1;\n if (this.model.get(\"delete_scheduled\")) {\n opacity = 0.5;\n this.active_buttons = this.pending_delete_buttons;\n this.circle.dashArray = [2,2];\n } else {\n opacity = 1;\n this.active_buttons = this.normal_buttons;\n this.circle.dashArray = null;\n }\n if (this.selected && this.renderer.isEditable() && !this.ghost) {\n if (old_act_btn !== this.active_buttons) {\n old_act_btn.forEach(function(b) {\n b.hide();\n });\n }\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n\n if (this.node_image) {\n this.node_image.opacity = this.highlighted ? opacity * 0.5 : (opacity - 0.01);\n }\n\n this.circle.fillColor = this.highlighted ? this.options.highlighted_node_fill_color : this.options.node_fill_color;\n\n this.circle.opacity = this.options.show_node_circles ? opacity : 0.01;\n\n var _text = this.model.get(\"title\") || this.renkan.translate(this.options.label_untitled_nodes) || \"\";\n _text = Utils.shortenText(_text, this.options.node_label_max_length);\n\n if (typeof this.highlighted === \"object\") {\n this.title.html(this.highlighted.replace(_(_text).escape(),'$1'));\n } else {\n this.title.text(_text);\n }\n\n var _strokeWidth = this._getStrokeWidth();\n this.title.css({\n left: this.paper_coords.x,\n top: this.paper_coords.y + this.circle_radius * this.h_ratio + this.options.node_label_distance + 0.5*_strokeWidth,\n opacity: opacity\n });\n var _color = (this.model.has(\"style\") && this.model.get(\"style\").color) || (this.model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n _dash = (this.model.has(\"style\") && this.model.get(\"style\").dash) ? this.options.default_dash_array : null;\n this.circle.strokeWidth = _strokeWidth;\n this.circle.strokeColor = _color;\n this.circle.dashArray = _dash;\n var _pc = this.paper_coords;\n this.all_buttons.forEach(function(b) {\n b.moveTo(_pc);\n });\n var lastImage = this.img;\n this.img = this.model.get(\"image\");\n if (this.img && this.img !== lastImage) {\n this.showImage();\n if(this.circle) {\n this.circle.sendToBack();\n }\n }\n if (this.node_image && !this.img) {\n this.node_image.remove();\n delete this.node_image;\n }\n\n if (this.renderer.minimap) {\n this.minimap_circle.fillColor = _color;\n var minipos = this.renderer.toMinimapCoords(_model_coords),\n miniradius = this.renderer.minimap.scale * _baseRadius,\n minisize = new paper.Size([miniradius, miniradius]);\n this.minimap_circle.fitBounds(minipos.subtract(minisize), minisize.multiply(2));\n }\n\n if (typeof options === 'undefined' || !('dontRedrawEdges' in options) || !options.dontRedrawEdges) {\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.redraw();\n }\n }\n );\n }\n if (this.ghost){\n this.show(true);\n } else {\n if (this.hidden) { this.hide(); }\n }\n },\n showImage: function() {\n var _image = null;\n if (typeof this.renderer.image_cache[this.img] === \"undefined\") {\n _image = new Image();\n this.renderer.image_cache[this.img] = _image;\n _image.src = this.img;\n } else {\n _image = this.renderer.image_cache[this.img];\n }\n if (_image.width) {\n if (this.node_image) {\n this.node_image.remove();\n }\n this.renderer.node_layer.activate();\n var width = _image.width,\n height = _image.height,\n clipPath = this.model.get(\"clip_path\"),\n hasClipPath = (typeof clipPath !== \"undefined\" && clipPath),\n _clip = null,\n baseRadius = null,\n centerPoint = null;\n\n if (hasClipPath) {\n _clip = new paper.Path();\n var instructions = clipPath.match(/[a-z][^a-z]+/gi) || [],\n lastCoords = [0,0],\n minX = Infinity,\n minY = Infinity,\n maxX = -Infinity,\n maxY = -Infinity;\n\n var transformCoords = function(tabc, relative) {\n var newCoords = tabc.slice(1).map(function(v, k) {\n var res = parseFloat(v),\n isY = k % 2;\n if (isY) {\n res = ( res - 0.5 ) * height;\n } else {\n res = ( res - 0.5 ) * width;\n }\n if (relative) {\n res += lastCoords[isY];\n }\n if (isY) {\n minY = Math.min(minY, res);\n maxY = Math.max(maxY, res);\n } else {\n minX = Math.min(minX, res);\n maxX = Math.max(maxX, res);\n }\n return res;\n });\n lastCoords = newCoords.slice(-2);\n return newCoords;\n };\n\n instructions.forEach(function(instr) {\n var coords = instr.match(/([a-z]|[0-9.-]+)/ig) || [\"\"];\n switch(coords[0]) {\n case \"M\":\n _clip.moveTo(transformCoords(coords));\n break;\n case \"m\":\n _clip.moveTo(transformCoords(coords, true));\n break;\n case \"L\":\n _clip.lineTo(transformCoords(coords));\n break;\n case \"l\":\n _clip.lineTo(transformCoords(coords, true));\n break;\n case \"C\":\n _clip.cubicCurveTo(transformCoords(coords));\n break;\n case \"c\":\n _clip.cubicCurveTo(transformCoords(coords, true));\n break;\n case \"Q\":\n _clip.quadraticCurveTo(transformCoords(coords));\n break;\n case \"q\":\n _clip.quadraticCurveTo(transformCoords(coords, true));\n break;\n }\n });\n\n baseRadius = Math[this.options.node_images_fill_mode ? \"min\" : \"max\"](maxX - minX, maxY - minY) / 2;\n centerPoint = new paper.Point((maxX + minX) / 2, (maxY + minY) / 2);\n if (!this.options.show_node_circles) {\n this.h_ratio = (maxY - minY) / (2 * baseRadius);\n }\n } else {\n baseRadius = Math[this.options.node_images_fill_mode ? \"min\" : \"max\"](width, height) / 2;\n centerPoint = new paper.Point(0,0);\n if (!this.options.show_node_circles) {\n this.h_ratio = height / (2 * baseRadius);\n }\n }\n var _raster = new paper.Raster(_image);\n _raster.locked = true; // Disable mouse events on icon\n if (hasClipPath) {\n _raster = new paper.Group(_clip, _raster);\n _raster.opacity = 0.99;\n /* This is a workaround to allow clipping at group level\n * If opacity was set to 1, paper.js would merge all clipping groups in one (known bug).\n */\n _raster.clipped = true;\n _clip.__representation = this;\n }\n if (this.options.clip_node_images) {\n var _circleClip = this.shapeBuilder.getImageShape(centerPoint, baseRadius);\n _raster = new paper.Group(_circleClip, _raster);\n _raster.opacity = 0.99;\n _raster.clipped = true;\n _circleClip.__representation = this;\n }\n this.image_delta = centerPoint.divide(baseRadius);\n this.node_image = _raster;\n this.node_image.__representation = _this;\n this.node_image.scale(this.circle_radius / baseRadius);\n this.node_image.position = this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius));\n this.node_image.insertAbove(this.circle);\n } else {\n var _this = this;\n $(_image).on(\"load\", function() {\n _this.showImage();\n });\n }\n },\n paperShift: function(_delta) {\n if (this.options.editor_mode) {\n if (!this.renkan.read_only) {\n this.is_dragging = true;\n this.paper_coords = this.paper_coords.add(_delta);\n this.redraw();\n }\n } else {\n this.renderer.paperShift(_delta);\n }\n },\n openEditor: function() {\n this.renderer.removeRepresentationsOfType(\"editor\");\n var _editor = this.renderer.addRepresentation(\"NodeEditor\",null);\n _editor.source_representation = this;\n _editor.draw();\n },\n select: function() {\n this.selected = true;\n this.circle.strokeWidth = this._getSelectedStrokeWidth();\n if (this.renderer.isEditable() && !this.hidden) {\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n var _uri = this.model.get(\"uri\");\n if (_uri) {\n $('.Rk-Bin-Item').each(function() {\n var _el = $(this);\n if (_el.attr(\"data-uri\") === _uri) {\n _el.addClass(\"selected\");\n }\n });\n }\n if (!this.options.editor_mode) {\n this.openEditor();\n }\n\n if (this.renderer.minimap) {\n this.minimap_circle.strokeWidth = this.options.minimap_highlight_weight;\n this.minimap_circle.strokeColor = this.options.minimap_highlight_color;\n }\n //if the node is hidden and the mouse hover it, it appears as a ghost\n if (this.hidden) {\n this.show(true);\n }\n else {\n this.showNeighbors(true);\n }\n this._super(\"select\");\n },\n hideButtons: function() {\n this.all_buttons.forEach(function(b) {\n b.hide();\n });\n delete(this.buttonTimeout);\n },\n unselect: function(_newTarget) {\n if (!_newTarget || _newTarget.source_representation !== this) {\n this.selected = false;\n var _this = this;\n this.buttons_timeout = setTimeout(function() { _this.hideButtons(); }, 200);\n this.circle.strokeWidth = this._getStrokeWidth();\n $('.Rk-Bin-Item').removeClass(\"selected\");\n if (this.renderer.minimap) {\n this.minimap_circle.strokeColor = undefined;\n }\n //when the mouse don't hover the node anymore, we hide it\n if (this.hidden) {\n this.hide();\n }\n else {\n this.hideNeighbors();\n }\n this._super(\"unselect\");\n }\n },\n hide: function(){\n var _this = this;\n this.ghost = false;\n this.hidden = true;\n if (typeof this.node_image !== 'undefined'){\n this.node_image.opacity = 0;\n }\n this.hideButtons();\n this.circle.opacity = 0;\n this.title.css('opacity', 0);\n this.minimap_circle.opacity = 0;\n\n\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.hide();\n }\n }\n );\n this.hideNeighbors();\n },\n show: function(ghost){\n var _this = this;\n this.ghost = ghost;\n if (this.ghost){\n if (typeof this.node_image !== 'undefined'){\n this.node_image.opacity = this.options.ghost_opacity;\n }\n this.circle.opacity = this.options.ghost_opacity;\n this.title.css('opacity', this.options.ghost_opacity);\n this.minimap_circle.opacity = this.options.ghost_opacity;\n } else {\n this.hidden = false;\n this.redraw();\n }\n\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.show(_this.ghost);\n }\n }\n );\n },\n hideNeighbors: function(){\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return (ed.get(\"from\") === _this.model);\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge.get(\"to\"));\n if (repr && repr.ghost) {\n repr.hide();\n }\n }\n );\n },\n showNeighbors: function(ghost){\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return (ed.get(\"from\") === _this.model);\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge.get(\"to\"));\n if (repr && repr.hidden) {\n repr.show(ghost);\n if (!ghost){\n var indexNode = _this.renderer.hiddenNodes.indexOf(repr.model.id);\n if (indexNode !== -1){\n _this.renderer.hiddenNodes.splice(indexNode, 1);\n }\n }\n }\n }\n );\n },\n highlight: function(textToReplace) {\n var hlvalue = textToReplace || true;\n if (this.highlighted === hlvalue) {\n return;\n }\n this.highlighted = hlvalue;\n this.redraw();\n this.renderer.throttledPaperDraw();\n },\n unhighlight: function() {\n if (!this.highlighted) {\n return;\n }\n this.highlighted = false;\n this.redraw();\n this.renderer.throttledPaperDraw();\n },\n saveCoords: function() {\n var _coords = this.renderer.toModelCoords(this.paper_coords),\n _data = {\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n if (this.renderer.isEditable()) {\n this.model.set(_data);\n }\n },\n mousedown: function(_event, _isTouch) {\n if (_isTouch) {\n this.renderer.unselectAll();\n this.select();\n }\n },\n mouseup: function(_event, _isTouch) {\n if (this.renderer.is_dragging && this.renderer.isEditable()) {\n this.saveCoords();\n } else {\n if (this.hidden) {\n var index = this.renderer.hiddenNodes.indexOf(this.model.id);\n if (index !== -1){\n this.renderer.hiddenNodes.splice(index, 1);\n }\n this.show(false);\n this.select();\n } else {\n if (!_isTouch && !this.model.get(\"delete_scheduled\")) {\n this.openEditor();\n }\n this.model.trigger(\"clicked\");\n }\n }\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.is_dragging = false;\n },\n destroy: function(_event) {\n this._super(\"destroy\");\n this.all_buttons.forEach(function(b) {\n b.destroy();\n });\n this.circle.remove();\n this.title.remove();\n if (this.renderer.minimap) {\n this.minimap_circle.remove();\n }\n if (this.node_image) {\n this.node_image.remove();\n }\n }\n }).value();\n\n return NodeRepr;\n\n});\n\n\ndefine('renderer/edge',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* Edge Class Begin */\n\n //var Edge = Renderer.Edge = Utils.inherit(Renderer._BaseRepresentation);\n var Edge = Utils.inherit(BaseRepresentation);\n\n _(Edge.prototype).extend({\n _init: function() {\n this.renderer.edge_layer.activate();\n this.type = \"Edge\";\n this.hidden = false;\n this.ghost = false;\n this.from_representation = this.renderer.getRepresentationByModel(this.model.get(\"from\"));\n this.to_representation = this.renderer.getRepresentationByModel(this.model.get(\"to\"));\n this.bundle = this.renderer.addToBundles(this);\n this.line = new paper.Path();\n this.line.add([0,0],[0,0],[0,0]);\n this.line.__representation = this;\n this.line.strokeWidth = this.options.edge_stroke_width;\n this.arrow_scale = 1;\n this.arrow = new paper.Path();\n this.arrow.add(\n [ 0, 0 ],\n [ this.options.edge_arrow_length, this.options.edge_arrow_width / 2 ],\n [ 0, this.options.edge_arrow_width ]\n );\n this.arrow.pivot = new paper.Point([ this.options.edge_arrow_length / 2, this.options.edge_arrow_width / 2 ]);\n this.arrow.__representation = this;\n this.text = $('
                      ').appendTo(this.renderer.labels_$);\n this.arrow_angle = 0;\n if (this.options.editor_mode) {\n var Renderer = requtils.getRenderer();\n this.normal_buttons = [\n new Renderer.EdgeEditButton(this.renderer, null),\n new Renderer.EdgeRemoveButton(this.renderer, null)\n ];\n this.pending_delete_buttons = [\n new Renderer.EdgeRevertButton(this.renderer, null)\n ];\n this.all_buttons = this.normal_buttons.concat(this.pending_delete_buttons);\n for (var i = 0; i < this.all_buttons.length; i++) {\n this.all_buttons[i].source_representation = this;\n }\n this.active_buttons = [];\n } else {\n this.active_buttons = this.all_buttons = [];\n }\n\n if (this.renderer.minimap) {\n this.renderer.minimap.edge_layer.activate();\n this.minimap_line = new paper.Path();\n this.minimap_line.add([0,0],[0,0]);\n this.minimap_line.__representation = this.renderer.minimap.miniframe.__representation;\n this.minimap_line.strokeWidth = 1;\n }\n },\n _getStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.edge_stroke_width + (thickness-1) * (this.options.edge_stroke_max_width - this.options.edge_stroke_width) / (this.options.edge_stroke_witdh_scale-1);\n },\n _getSelectedStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.selected_edge_stroke_width + (thickness-1) * (this.options.selected_edge_stroke_max_width - this.options.selected_edge_stroke_width) / (this.options.edge_stroke_witdh_scale-1);\n },\n _getArrowScale: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return 1 + (thickness-1) * ((this.options.edge_arrow_max_width / this.options.edge_arrow_width) - 1) / (this.options.edge_stroke_witdh_scale-1);\n },\n redraw: function() {\n var from = this.model.get(\"from\"),\n to = this.model.get(\"to\");\n if (!from || !to || (this.hidden && !this.ghost)) {\n return;\n }\n this.from_representation = this.renderer.getRepresentationByModel(from);\n this.to_representation = this.renderer.getRepresentationByModel(to);\n if (typeof this.from_representation === \"undefined\" || typeof this.to_representation === \"undefined\" ||\n (this.from_representation.hidden && !this.from_representation.ghost) ||\n (this.to_representation.hidden && !this.to_representation.ghost)) {\n this.hide();\n return;\n }\n var _strokeWidth = this._getStrokeWidth(),\n _arrow_scale = this._getArrowScale(),\n _p0a = this.from_representation.paper_coords,\n _p1a = this.to_representation.paper_coords,\n _v = _p1a.subtract(_p0a),\n _r = _v.length,\n _u = _v.divide(_r),\n _ortho = new paper.Point([- _u.y, _u.x]),\n _group_pos = this.bundle.getPosition(this),\n _delta = _ortho.multiply( this.options.edge_gap_in_bundles * _group_pos ),\n _p0b = _p0a.add(_delta), /* Adding a 4 px difference */\n _p1b = _p1a.add(_delta), /* to differentiate bundled links */\n _a = _v.angle,\n _textdelta = _ortho.multiply(this.options.edge_label_distance + 0.5 * _arrow_scale * this.options.edge_arrow_width),\n _handle = _v.divide(3),\n _color = (this.model.has(\"style\") && this.model.get(\"style\").color) || (this.model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n _dash = (this.model.has(\"style\") && this.model.get(\"style\").dash) ? this.options.default_dash_array : null,\n _opacity;\n\n if (this.model.get(\"delete_scheduled\") || this.from_representation.model.get(\"delete_scheduled\") || this.to_representation.model.get(\"delete_scheduled\")) {\n _opacity = 0.5;\n this.line.dashArray = [2, 2];\n } else {\n _opacity = this.ghost ? this.options.ghost_opacity : 1;\n this.line.dashArray = null;\n }\n\n var old_act_btn = this.active_buttons;\n\n this.arrow.visible =\n (this.model.has(\"style\") && this.model.get(\"style\").arrow) ||\n !this.model.has(\"style\") ||\n typeof this.model.get(\"style\").arrow === 'undefined';\n\n this.active_buttons = this.model.get(\"delete_scheduled\") ? this.pending_delete_buttons : this.normal_buttons;\n\n if (this.selected && this.renderer.isEditable() && old_act_btn !== this.active_buttons) {\n old_act_btn.forEach(function(b) {\n b.hide();\n });\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n\n this.paper_coords = _p0b.add(_p1b).divide(2);\n this.line.strokeWidth = _strokeWidth;\n this.line.strokeColor = _color;\n this.line.dashArray = _dash;\n this.line.opacity = _opacity;\n this.line.segments[0].point = _p0a;\n this.line.segments[1].point = this.paper_coords;\n this.line.segments[1].handleIn = _handle.multiply(-1);\n this.line.segments[1].handleOut = _handle;\n this.line.segments[2].point = _p1a;\n this.arrow.scale(_arrow_scale / this.arrow_scale);\n this.arrow_scale = _arrow_scale;\n this.arrow.fillColor = _color;\n this.arrow.opacity = _opacity;\n this.arrow.rotate(_a - this.arrow_angle, this.arrow.bounds.center);\n this.arrow.position = this.paper_coords;\n\n this.arrow_angle = _a;\n if (_a > 90) {\n _a -= 180;\n _textdelta = _textdelta.multiply(-1);\n }\n if (_a < -90) {\n _a += 180;\n _textdelta = _textdelta.multiply(-1);\n }\n var _text = this.model.get(\"title\") || this.renkan.translate(this.options.label_untitled_edges) || \"\";\n _text = Utils.shortenText(_text, this.options.node_label_max_length);\n this.text.text(_text);\n var _textpos = this.paper_coords.add(_textdelta);\n this.text.css({\n left: _textpos.x,\n top: _textpos.y,\n transform: \"rotate(\" + _a + \"deg)\",\n \"-moz-transform\": \"rotate(\" + _a + \"deg)\",\n \"-webkit-transform\": \"rotate(\" + _a + \"deg)\",\n opacity: _opacity\n });\n this.text_angle = _a;\n\n var _pc = this.paper_coords;\n this.all_buttons.forEach(function(b) {\n b.moveTo(_pc);\n });\n\n if (this.renderer.minimap) {\n this.minimap_line.strokeColor = _color;\n this.minimap_line.segments[0].point = this.renderer.toMinimapCoords(new paper.Point(this.from_representation.model.get(\"position\")));\n this.minimap_line.segments[1].point = this.renderer.toMinimapCoords(new paper.Point(this.to_representation.model.get(\"position\")));\n }\n },\n hide: function(){\n this.hidden = true;\n this.ghost = false;\n\n this.text.hide();\n this.line.visible = false;\n this.arrow.visible = false;\n this.minimap_line.visible = false;\n },\n show: function(ghost){\n this.ghost = ghost;\n if (this.ghost) {\n this.text.css('opacity', 0.3);\n this.line.opacity = 0.3;\n this.arrow.opacity = 0.3;\n this.minimap_line.opacity = 0.3;\n } else {\n this.hidden = false;\n\n this.text.css('opacity', 1);\n this.line.opacity = 1;\n this.arrow.opacity = 1;\n this.minimap_line.opacity = 1;\n }\n this.text.show();\n this.line.visible = true;\n this.arrow.visible = true;\n this.minimap_line.visible = true;\n this.redraw();\n },\n openEditor: function() {\n this.renderer.removeRepresentationsOfType(\"editor\");\n var _editor = this.renderer.addRepresentation(\"EdgeEditor\",null);\n _editor.source_representation = this;\n _editor.draw();\n },\n select: function() {\n this.selected = true;\n this.line.strokeWidth = this._getSelectedStrokeWidth();\n if (this.renderer.isEditable()) {\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n if (!this.options.editor_mode) {\n this.openEditor();\n }\n this._super(\"select\");\n },\n unselect: function(_newTarget) {\n if (!_newTarget || _newTarget.source_representation !== this) {\n this.selected = false;\n if (this.options.editor_mode) {\n this.all_buttons.forEach(function(b) {\n b.hide();\n });\n }\n this.line.strokeWidth = this._getStrokeWidth();\n this._super(\"unselect\");\n }\n },\n mousedown: function(_event, _isTouch) {\n if (_isTouch) {\n this.renderer.unselectAll();\n this.select();\n }\n },\n mouseup: function(_event, _isTouch) {\n if (!this.renkan.read_only && this.renderer.is_dragging) {\n this.from_representation.saveCoords();\n this.to_representation.saveCoords();\n this.from_representation.is_dragging = false;\n this.to_representation.is_dragging = false;\n } else {\n if (!_isTouch) {\n this.openEditor();\n }\n this.model.trigger(\"clicked\");\n }\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n },\n paperShift: function(_delta) {\n if (this.options.editor_mode) {\n if (!this.options.read_only) {\n this.from_representation.paperShift(_delta);\n this.to_representation.paperShift(_delta);\n }\n } else {\n this.renderer.paperShift(_delta);\n }\n },\n destroy: function() {\n this._super(\"destroy\");\n this.line.remove();\n this.arrow.remove();\n this.text.remove();\n if (this.renderer.minimap) {\n this.minimap_line.remove();\n }\n this.all_buttons.forEach(function(b) {\n b.destroy();\n });\n var _this = this;\n this.bundle.edges = _.reject(this.bundle.edges, function(_edge) {\n return _this === _edge;\n });\n }\n }).value();\n\n return Edge;\n\n});\n\n\n\ndefine('renderer/tempedge',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* TempEdge Class Begin */\n\n //var TempEdge = Renderer.TempEdge = Utils.inherit(Renderer._BaseRepresentation);\n var TempEdge = Utils.inherit(BaseRepresentation);\n\n _(TempEdge.prototype).extend({\n _init: function() {\n this.renderer.edge_layer.activate();\n this.type = \"Temp-edge\";\n\n var _color = (this.project.get(\"users\").get(this.renkan.current_user) || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\");\n this.line = new paper.Path();\n this.line.strokeColor = _color;\n this.line.dashArray = [4, 2];\n this.line.strokeWidth = this.options.selected_edge_stroke_width;\n this.line.add([0,0],[0,0]);\n this.line.__representation = this;\n this.arrow = new paper.Path();\n this.arrow.fillColor = _color;\n this.arrow.add(\n [ 0, 0 ],\n [ this.options.edge_arrow_length, this.options.edge_arrow_width / 2 ],\n [ 0, this.options.edge_arrow_width ]\n );\n this.arrow.__representation = this;\n this.arrow_angle = 0;\n },\n redraw: function() {\n var _p0 = this.from_representation.paper_coords,\n _p1 = this.end_pos,\n _a = _p1.subtract(_p0).angle,\n _c = _p0.add(_p1).divide(2);\n this.line.segments[0].point = _p0;\n this.line.segments[1].point = _p1;\n this.arrow.rotate(_a - this.arrow_angle);\n this.arrow.position = _c;\n this.arrow_angle = _a;\n },\n paperShift: function(_delta) {\n if (!this.renderer.isEditable()) {\n this.renderer.removeRepresentation(_this);\n paper.view.draw();\n return;\n }\n this.end_pos = this.end_pos.add(_delta);\n var _hitResult = paper.project.hitTest(this.end_pos);\n this.renderer.findTarget(_hitResult);\n this.redraw();\n },\n mouseup: function(_event, _isTouch) {\n var _hitResult = paper.project.hitTest(_event.point),\n _model = this.from_representation.model,\n _endDrag = true;\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n var _target = _hitResult.item.__representation;\n if (_target.type.substr(0,4) === \"Node\") {\n var _destmodel = _target.model || _target.source_representation.model;\n if (_model !== _destmodel) {\n var _data = {\n id: Utils.getUID('edge'),\n created_by: this.renkan.current_user,\n from: _model,\n to: _destmodel\n };\n if (this.renderer.isEditable()) {\n this.project.addEdge(_data);\n }\n }\n }\n\n if (_model === _target.model || (_target.source_representation && _target.source_representation.model === _model)) {\n _endDrag = false;\n this.renderer.is_dragging = true;\n }\n }\n if (_endDrag) {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentation(this);\n paper.view.draw();\n }\n },\n destroy: function() {\n this.arrow.remove();\n this.line.remove();\n }\n }).value();\n\n /* TempEdge Class End */\n\n return TempEdge;\n\n});\n\n\ndefine('renderer/baseeditor',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* _BaseEditor Begin */\n //var _BaseEditor = Renderer._BaseEditor = Utils.inherit(Renderer._BaseRepresentation);\n var _BaseEditor = Utils.inherit(BaseRepresentation);\n\n _(_BaseEditor.prototype).extend({\n _init: function() {\n this.renderer.buttons_layer.activate();\n this.type = \"editor\";\n this.editor_block = new paper.Path();\n var _pts = _.map(_.range(8), function() {return [0,0];});\n this.editor_block.add.apply(this.editor_block, _pts);\n this.editor_block.strokeWidth = this.options.tooltip_border_width;\n this.editor_block.strokeColor = this.options.tooltip_border_color;\n this.editor_block.opacity = 0.8;\n this.editor_$ = $('
                      ')\n .appendTo(this.renderer.editor_$)\n .css({\n position: \"absolute\",\n opacity: 0.8\n })\n .hide();\n },\n destroy: function() {\n this.editor_block.remove();\n this.editor_$.remove();\n }\n }).value();\n\n /* _BaseEditor End */\n\n return _BaseEditor;\n\n});\n\n\ndefine('renderer/nodeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor', 'renderer/shapebuilder'], function ($, _, requtils, BaseEditor, ShapeBuilder) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEditor Begin */\n //var NodeEditor = Renderer.NodeEditor = Utils.inherit(Renderer._BaseEditor);\n var NodeEditor = Utils.inherit(BaseEditor);\n\n _(NodeEditor.prototype).extend({\n _init: function() {\n BaseEditor.prototype._init.apply(this);\n this.template = this.options.templates['templates/nodeeditor.html'];\n //this.templates['default']= this.options.templates['templates/nodeeditor.html'];\n //fusionner avec this.options.node_editor_templates\n this.readOnlyTemplate = this.options.templates['templates/nodeeditor_readonly.html'];\n },\n draw: function() {\n var _model = this.source_representation.model,\n _created_by = _model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan),\n _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate ),\n _image_placeholder = this.options.static_url + \"img/image-placeholder.png\",\n _size = (_model.get(\"size\") || 0);\n this.editor_$\n .html(_template({\n node: {\n has_creator: !!_model.get(\"created_by\"),\n title: _model.get(\"title\"),\n uri: _model.get(\"uri\"),\n short_uri: Utils.shortenText((_model.get(\"uri\") || \"\").replace(/^(https?:\\/\\/)?(www\\.)?/,'').replace(/\\/$/,''),40),\n description: _model.get(\"description\"),\n image: _model.get(\"image\") || \"\",\n image_placeholder: _image_placeholder,\n color: (_model.has(\"style\") && _model.get(\"style\").color) || _created_by.get(\"color\"),\n thickness: (_model.has(\"style\") && _model.get(\"style\").thickness) || 1,\n dash: _model.has(\"style\") && _model.get(\"style\").dash ? \"checked\" : \"\",\n clip_path: _model.get(\"clip_path\") || false,\n created_by_color: _created_by.get(\"color\"),\n created_by_title: _created_by.get(\"title\"),\n size: (_size > 0 ? \"+\" : \"\") + _size,\n shape: _model.get(\"shape\") || \"circle\"\n },\n renkan: this.renkan,\n options: this.options,\n shortenText: Utils.shortenText,\n shapes : _(ShapeBuilder.builders).omit('svg').keys().value(),\n }));\n this.redraw();\n var _this = this,\n closeEditor = function() {\n _this.editor_$.off(\"keyup\");\n _this.editor_$.find(\"input, textarea, select\").off(\"change keyup paste\");\n _this.editor_$.find(\".Rk-Edit-Image-File\").off('change');\n _this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").off('hover');\n _this.editor_$.find(\".Rk-Edit-Size-Btn\").off('click');\n _this.editor_$.find(\".Rk-Edit-Image-Del\").off('click');\n _this.editor_$.find(\".Rk-Edit-ColorPicker\").find(\"li\").off('hover click');\n _this.editor_$.find(\".Rk-CloseX\").off('click');\n _this.editor_$.find(\".Rk-Edit-Goto\").off('click');\n\n _this.renderer.removeRepresentation(_this);\n paper.view.draw();\n };\n\n this.editor_$.find(\".Rk-CloseX\").click(closeEditor);\n\n this.editor_$.find(\".Rk-Edit-Goto\").click(function() {\n if (!_model.get(\"uri\")) {\n return false;\n }\n });\n\n if (this.renderer.isEditable()) {\n\n var onFieldChange = _.throttle(function() {\n _.defer(function() {\n if (_this.renderer.isEditable()) {\n var _data = {\n title: _this.editor_$.find(\".Rk-Edit-Title\").val()\n };\n if (_this.options.show_node_editor_uri) {\n _data.uri = _this.editor_$.find(\".Rk-Edit-URI\").val();\n _this.editor_$.find(\".Rk-Edit-Goto\").attr(\"href\",_data.uri || \"#\");\n }\n if (_this.options.show_node_editor_image) {\n _data.image = _this.editor_$.find(\".Rk-Edit-Image\").val();\n _this.editor_$.find(\".Rk-Edit-ImgPreview\").attr(\"src\", _data.image || _image_placeholder);\n }\n if (_this.options.show_node_editor_description) {\n _data.description = _this.editor_$.find(\".Rk-Edit-Description\").val();\n }\n if (_this.options.show_node_editor_style) {\n var dash = _this.editor_$.find(\".Rk-Edit-Dash\").is(':checked');\n _data.style = _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {dash: dash});\n }\n if (_this.options.change_shapes) {\n if(_model.get(\"shape\")!==_this.editor_$.find(\".Rk-Edit-Shape\").val()){\n _data.shape = _this.editor_$.find(\".Rk-Edit-Shape\").val();\n }\n }\n _model.set(_data);\n _this.redraw();\n } else {\n closeEditor();\n }\n });\n }, 500);\n\n this.editor_$.on(\"keyup\", function(_e) {\n if (_e.keyCode === 27) {\n closeEditor();\n }\n });\n\n this.editor_$.find(\"input, textarea, select\").on(\"change keyup paste\", onFieldChange);\n\n if(_this.options.allow_image_upload) {\n this.editor_$.find(\".Rk-Edit-Image-File\").change(function() {\n if (this.files.length) {\n var f = this.files[0],\n fr = new FileReader();\n if (f.type.substr(0,5) !== \"image\") {\n alert(_this.renkan.translate(\"This file is not an image\"));\n return;\n }\n if (f.size > (_this.options.uploaded_image_max_kb * 1024)) {\n alert(_this.renkan.translate(\"Image size must be under \") + _this.options.uploaded_image_max_kb + _this.renkan.translate(\"KB\"));\n return;\n }\n fr.onload = function(e) {\n _this.editor_$.find(\".Rk-Edit-Image\").val(e.target.result);\n onFieldChange();\n };\n fr.readAsDataURL(f);\n }\n });\n }\n this.editor_$.find(\".Rk-Edit-Title\")[0].focus();\n\n var _picker = _this.editor_$.find(\".Rk-Edit-ColorPicker\");\n\n this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").hover(\n function(_e) {\n _e.preventDefault();\n _picker.show();\n },\n function(_e) {\n _e.preventDefault();\n _picker.hide();\n }\n );\n\n _picker.find(\"li\").hover(\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", $(this).attr(\"data-color\"));\n },\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", (_model.has(\"style\") && _model.get(\"style\").color) || (_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(_this.renkan)).get(\"color\"));\n }\n ).click(function(_e) {\n _e.preventDefault();\n if (_this.renderer.isEditable()) {\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {color: $(this).attr(\"data-color\")}));\n _picker.hide();\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n\n var shiftSize = function(n) {\n if (_this.renderer.isEditable()) {\n var _newsize = n+(_model.get(\"size\") || 0);\n _this.editor_$.find(\"#Rk-Edit-Size-Value\").text((_newsize > 0 ? \"+\" : \"\") + _newsize);\n _model.set(\"size\", _newsize);\n paper.view.draw();\n } else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Size-Down\").click(function() {\n shiftSize(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Size-Up\").click(function() {\n shiftSize(1);\n return false;\n });\n\n var shiftThickness = function(n) {\n if (_this.renderer.isEditable()) {\n var _oldThickness = ((_model.has('style') && _model.get('style').thickness) || 1),\n _newThickness = n + _oldThickness;\n if(_newThickness < 1 ) {\n _newThickness = 1;\n }\n else if (_newThickness > _this.options.node_stroke_witdh_scale) {\n _newThickness = _this.options.node_stroke_witdh_scale;\n }\n if (_newThickness !== _oldThickness) {\n _this.editor_$.find(\"#Rk-Edit-Thickness-Value\").text(_newThickness);\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {thickness: _newThickness}));\n paper.view.draw();\n }\n }\n else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Thickness-Down\").click(function() {\n shiftThickness(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Thickness-Up\").click(function() {\n shiftThickness(1);\n return false;\n });\n\n this.editor_$.find(\".Rk-Edit-Image-Del\").click(function() {\n _this.editor_$.find(\".Rk-Edit-Image\").val('');\n onFieldChange();\n return false;\n });\n } else {\n if (typeof this.source_representation.highlighted === \"object\") {\n var titlehtml = this.source_representation.highlighted.replace(_(_model.get(\"title\")).escape(),'$1');\n this.editor_$.find(\".Rk-Display-Title\" + (_model.get(\"uri\") ? \" a\" : \"\")).html(titlehtml);\n if (this.options.show_node_tooltip_description) {\n this.editor_$.find(\".Rk-Display-Description\").html(this.source_representation.highlighted.replace(_(_model.get(\"description\")).escape(),'$1'));\n }\n }\n }\n this.editor_$.find(\"img\").load(function() {\n _this.redraw();\n });\n },\n redraw: function() {\n if (this.options.popup_editor){\n var _coords = this.source_representation.paper_coords;\n Utils.drawEditBox(this.options, _coords, this.editor_block, this.source_representation.circle_radius * 0.75, this.editor_$); \n }\n this.editor_$.show();\n paper.view.draw();\n }\n }).value();\n\n /* NodeEditor End */\n\n return NodeEditor;\n\n});\n\n\ndefine('renderer/edgeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor'], function ($, _, requtils, BaseEditor) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeEditor Begin */\n\n //var EdgeEditor = Renderer.EdgeEditor = Utils.inherit(Renderer._BaseEditor);\n var EdgeEditor = Utils.inherit(BaseEditor);\n\n _(EdgeEditor.prototype).extend({\n _init: function() {\n BaseEditor.prototype._init.apply(this);\n this.template = this.options.templates['templates/edgeeditor.html'];\n this.readOnlyTemplate = this.options.templates['templates/edgeeditor_readonly.html'];\n },\n draw: function() {\n var _model = this.source_representation.model,\n _from_model = _model.get(\"from\"),\n _to_model = _model.get(\"to\"),\n _created_by = _model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan),\n _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate);\n this.editor_$\n .html(_template({\n edge: {\n has_creator: !!_model.get(\"created_by\"),\n title: _model.get(\"title\"),\n uri: _model.get(\"uri\"),\n short_uri: Utils.shortenText((_model.get(\"uri\") || \"\").replace(/^(https?:\\/\\/)?(www\\.)?/,'').replace(/\\/$/,''),40),\n description: _model.get(\"description\"),\n color: (_model.has(\"style\") && _model.get(\"style\").color) || _created_by.get(\"color\"),\n dash: _model.has(\"style\") && _model.get(\"style\").dash ? \"checked\" : \"\",\n arrow: (_model.has(\"style\") && _model.get(\"style\").arrow) || !_model.has(\"style\") || (typeof _model.get(\"style\").arrow === 'undefined') ? \"checked\" : \"\",\n thickness: (_model.has(\"style\") && _model.get(\"style\").thickness) || 1,\n from_title: _from_model.get(\"title\"),\n to_title: _to_model.get(\"title\"),\n from_color: (_from_model.has(\"style\") && _from_model.get(\"style\").color) || (_from_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n to_color: (_to_model.has(\"style\") && _to_model.get(\"style\").color) || (_to_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n created_by_color: _created_by.get(\"color\"),\n created_by_title: _created_by.get(\"title\")\n },\n renkan: this.renkan,\n shortenText: Utils.shortenText,\n options: this.options\n }));\n this.redraw();\n var _this = this,\n closeEditor = function() {\n _this.renderer.removeRepresentation(_this);\n _this.editor_$.find(\".Rk-Edit-Size-Btn\").off('click');\n paper.view.draw();\n };\n this.editor_$.find(\".Rk-CloseX\").click(closeEditor);\n this.editor_$.find(\".Rk-Edit-Goto\").click(function() {\n if (!_model.get(\"uri\")) {\n return false;\n }\n });\n\n if (this.renderer.isEditable()) {\n\n var onFieldChange = _.throttle(function() {\n _.defer(function() {\n if (_this.renderer.isEditable()) {\n var _data = {\n title: _this.editor_$.find(\".Rk-Edit-Title\").val()\n };\n if (_this.options.show_edge_editor_uri) {\n _data.uri = _this.editor_$.find(\".Rk-Edit-URI\").val();\n }\n if (_this.options.show_node_editor_style) {\n var dash = _this.editor_$.find(\".Rk-Edit-Dash\").is(':checked');\n _data.style = _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {dash: dash});\n var arrow = _this.editor_$.find(\".Rk-Edit-Arrow\").is(':checked');\n _data.style = _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {arrow: arrow});\n }\n _this.editor_$.find(\".Rk-Edit-Goto\").attr(\"href\",_data.uri || \"#\");\n _model.set(_data);\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n },500);\n\n this.editor_$.on(\"keyup\", function(_e) {\n if (_e.keyCode === 27) {\n closeEditor();\n }\n });\n\n this.editor_$.find(\"input\").on(\"keyup change paste\", onFieldChange);\n\n this.editor_$.find(\".Rk-Edit-Vocabulary\").change(function() {\n var e = $(this),\n v = e.val();\n if (v) {\n _this.editor_$.find(\".Rk-Edit-Title\").val(e.find(\":selected\").text());\n _this.editor_$.find(\".Rk-Edit-URI\").val(v);\n onFieldChange();\n }\n });\n this.editor_$.find(\".Rk-Edit-Direction\").click(function() {\n if (_this.renderer.isEditable()) {\n _model.set({\n from: _model.get(\"to\"),\n to: _model.get(\"from\")\n });\n _this.draw();\n } else {\n closeEditor();\n }\n });\n\n var _picker = _this.editor_$.find(\".Rk-Edit-ColorPicker\");\n\n this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").hover(\n function(_e) {\n _e.preventDefault();\n _picker.show();\n },\n function(_e) {\n _e.preventDefault();\n _picker.hide();\n }\n );\n\n _picker.find(\"li\").hover(\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", $(this).attr(\"data-color\"));\n },\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", (_model.has(\"style\") && _model.get(\"style\").color)|| (_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(_this.renkan)).get(\"color\"));\n }\n ).click(function(_e) {\n _e.preventDefault();\n if (_this.renderer.isEditable()) {\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {color: $(this).attr(\"data-color\")}));\n _picker.hide();\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n var shiftThickness = function(n) {\n if (_this.renderer.isEditable()) {\n var _oldThickness = ((_model.has('style') && _model.get('style').thickness) || 1),\n _newThickness = n + _oldThickness;\n if(_newThickness < 1 ) {\n _newThickness = 1;\n }\n else if (_newThickness > _this.options.node_stroke_witdh_scale) {\n _newThickness = _this.options.node_stroke_witdh_scale;\n }\n if (_newThickness !== _oldThickness) {\n _this.editor_$.find(\"#Rk-Edit-Thickness-Value\").text(_newThickness);\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {thickness: _newThickness}));\n paper.view.draw();\n }\n }\n else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Thickness-Down\").click(function() {\n shiftThickness(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Thickness-Up\").click(function() {\n shiftThickness(1);\n return false;\n });\n }\n },\n redraw: function() {\n if (this.options.popup_editor){\n var _coords = this.source_representation.paper_coords;\n Utils.drawEditBox(this.options, _coords, this.editor_block, 5, this.editor_$);\n }\n this.editor_$.show();\n paper.view.draw();\n }\n }).value();\n\n /* EdgeEditor End */\n\n return EdgeEditor;\n\n});\n\n\ndefine('renderer/nodebutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* _NodeButton Begin */\n\n //var _NodeButton = Renderer._NodeButton = Utils.inherit(Renderer._BaseButton);\n var _NodeButton = Utils.inherit(BaseButton);\n\n _(_NodeButton.prototype).extend({\n setSectorSize: function() {\n var sectorInner = this.source_representation.circle_radius;\n if (sectorInner !== this.lastSectorInner) {\n if (this.sector) {\n this.sector.destroy();\n }\n this.sector = this.renderer.drawSector(\n this, 1 + sectorInner,\n Utils._NODE_BUTTON_WIDTH + sectorInner,\n this.startAngle,\n this.endAngle,\n 1,\n this.imageName,\n this.renkan.translate(this.text)\n );\n this.lastSectorInner = sectorInner;\n }\n },\n unselect: function() {\n BaseButton.prototype.unselect.apply(this, Array.prototype.slice.call(arguments, 1));\n if(this.source_representation && this.source_representation.buttons_timeout) {\n clearTimeout(this.source_representation.buttons_timeout);\n this.source_representation.hideButtons();\n }\n },\n select: function() {\n if(this.source_representation && this.source_representation.buttons_timeout) {\n clearTimeout(this.source_representation.buttons_timeout);\n }\n this.sector.select();\n },\n }).value();\n\n\n /* _NodeButton End */\n\n return _NodeButton;\n\n});\n\n\ndefine('renderer/nodeeditbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEditButton Begin */\n\n //var NodeEditButton = Renderer.NodeEditButton = Utils.inherit(Renderer._NodeButton);\n var NodeEditButton = Utils.inherit(NodeButton);\n\n _(NodeEditButton.prototype).extend({\n _init: function() {\n this.type = \"Node-edit-button\";\n this.lastSectorInner = 0;\n this.startAngle = -125;\n this.endAngle = -55;\n this.imageName = \"edit\";\n this.text = \"Edit\";\n },\n mouseup: function() {\n if (!this.renderer.is_dragging) {\n this.source_representation.openEditor();\n }\n }\n }).value();\n\n /* NodeEditButton End */\n\n return NodeEditButton;\n\n});\n\n\ndefine('renderer/noderemovebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeRemoveButton = Utils.inherit(NodeButton);\n\n _(NodeRemoveButton.prototype).extend({\n _init: function() {\n this.type = \"Node-remove-button\";\n this.lastSectorInner = 0;\n this.startAngle = -10;\n this.endAngle = 45;\n this.imageName = \"remove\";\n this.text = \"Remove\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n if (this.options.element_delete_delay) {\n var delid = Utils.getUID(\"delete\");\n this.renderer.delete_list.push({\n id: delid,\n time: new Date().valueOf() + this.options.element_delete_delay\n });\n this.source_representation.model.set(\"delete_scheduled\", delid);\n } else {\n if (confirm(this.renkan.translate('Do you really wish to remove node ') + '\"' + this.source_representation.model.get(\"title\") + '\"?')) {\n this.project.removeNode(this.source_representation.model);\n }\n }\n }\n }\n }).value();\n\n /* NodeRemoveButton End */\n\n return NodeRemoveButton;\n\n});\n\n\ndefine('renderer/nodehidebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeHideButton = Utils.inherit(NodeButton);\n\n _(NodeHideButton.prototype).extend({\n _init: function() {\n this.type = \"Node-hide-button\";\n this.lastSectorInner = 0;\n this.startAngle = 45;\n this.endAngle = 90;\n this.imageName = \"hide\";\n this.text = \"Hide\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n this.renderer.addHiddenNode(this.source_representation.model);\n }\n }\n }).value();\n\n /* NodeRemoveButton End */\n\n return NodeHideButton;\n\n});\n\n\ndefine('renderer/nodeshowbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeShowButton = Utils.inherit(NodeButton);\n\n _(NodeShowButton.prototype).extend({\n _init: function() {\n this.type = \"Node-show-button\";\n this.lastSectorInner = 0;\n this.startAngle = 90;\n this.endAngle = 135;\n this.imageName = \"show\";\n this.text = \"Show\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n this.source_representation.showNeighbors(false);\n }\n }\n }).value();\n\n /* NodeShowButton End */\n\n return NodeShowButton;\n\n});\n\n\ndefine('renderer/noderevertbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRevertButton Begin */\n\n //var NodeRevertButton = Renderer.NodeRevertButton = Utils.inherit(Renderer._NodeButton);\n var NodeRevertButton = Utils.inherit(NodeButton);\n\n _(NodeRevertButton.prototype).extend({\n _init: function() {\n this.type = \"Node-revert-button\";\n this.lastSectorInner = 0;\n this.startAngle = -135;\n this.endAngle = 135;\n this.imageName = \"revert\";\n this.text = \"Cancel deletion\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n if (this.renderer.isEditable()) {\n this.source_representation.model.unset(\"delete_scheduled\");\n }\n }\n }).value();\n\n /* NodeRevertButton End */\n\n return NodeRevertButton;\n\n});\n\n\ndefine('renderer/nodelinkbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeLinkButton Begin */\n\n //var NodeLinkButton = Renderer.NodeLinkButton = Utils.inherit(Renderer._NodeButton);\n var NodeLinkButton = Utils.inherit(NodeButton);\n\n _(NodeLinkButton.prototype).extend({\n _init: function() {\n this.type = \"Node-link-button\";\n this.lastSectorInner = 0;\n this.startAngle = 135;\n this.endAngle = 190;\n this.imageName = \"link\";\n this.text = \"Link to another node\";\n },\n mousedown: function(_event, _isTouch) {\n if (this.renderer.isEditable()) {\n var _off = this.renderer.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n this.renderer.click_target = null;\n this.renderer.removeRepresentationsOfType(\"editor\");\n this.renderer.addTempEdge(this.source_representation, _point);\n }\n }\n }).value();\n\n /* NodeLinkButton End */\n\n return NodeLinkButton;\n\n});\n\n\n\ndefine('renderer/nodeenlargebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEnlargeButton Begin */\n\n //var NodeEnlargeButton = Renderer.NodeEnlargeButton = Utils.inherit(Renderer._NodeButton);\n var NodeEnlargeButton = Utils.inherit(NodeButton);\n\n _(NodeEnlargeButton.prototype).extend({\n _init: function() {\n this.type = \"Node-enlarge-button\";\n this.lastSectorInner = 0;\n this.startAngle = -55;\n this.endAngle = -10;\n this.imageName = \"enlarge\";\n this.text = \"Enlarge\";\n },\n mouseup: function() {\n var _newsize = 1 + (this.source_representation.model.get(\"size\") || 0);\n this.source_representation.model.set(\"size\", _newsize);\n this.source_representation.select();\n this.select();\n paper.view.draw();\n }\n }).value();\n\n /* NodeEnlargeButton End */\n\n return NodeEnlargeButton;\n\n});\n\n\ndefine('renderer/nodeshrinkbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeShrinkButton Begin */\n\n //var NodeShrinkButton = Renderer.NodeShrinkButton = Utils.inherit(Renderer._NodeButton);\n var NodeShrinkButton = Utils.inherit(NodeButton);\n\n _(NodeShrinkButton.prototype).extend({\n _init: function() {\n this.type = \"Node-shrink-button\";\n this.lastSectorInner = 0;\n this.startAngle = -170;\n this.endAngle = -125;\n this.imageName = \"shrink\";\n this.text = \"Shrink\";\n },\n mouseup: function() {\n var _newsize = -1 + (this.source_representation.model.get(\"size\") || 0);\n this.source_representation.model.set(\"size\", _newsize);\n this.source_representation.select();\n this.select();\n paper.view.draw();\n }\n }).value();\n\n /* NodeShrinkButton End */\n\n return NodeShrinkButton;\n\n});\n\n\ndefine('renderer/edgeeditbutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeEditButton Begin */\n\n //var EdgeEditButton = Renderer.EdgeEditButton = Utils.inherit(Renderer._BaseButton);\n var EdgeEditButton = Utils.inherit(BaseButton);\n\n _(EdgeEditButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-edit-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -270, -90, 1, \"edit\", this.renkan.translate(\"Edit\"));\n },\n mouseup: function() {\n if (!this.renderer.is_dragging) {\n this.source_representation.openEditor();\n }\n }\n }).value();\n\n /* EdgeEditButton End */\n\n return EdgeEditButton;\n\n});\n\n\ndefine('renderer/edgeremovebutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeRemoveButton Begin */\n\n //var EdgeRemoveButton = Renderer.EdgeRemoveButton = Utils.inherit(Renderer._BaseButton);\n var EdgeRemoveButton = Utils.inherit(BaseButton);\n\n _(EdgeRemoveButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-remove-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -90, 90, 1, \"remove\", this.renkan.translate(\"Remove\"));\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n if (this.options.element_delete_delay) {\n var delid = Utils.getUID(\"delete\");\n this.renderer.delete_list.push({\n id: delid,\n time: new Date().valueOf() + this.options.element_delete_delay\n });\n this.source_representation.model.set(\"delete_scheduled\", delid);\n } else {\n if (confirm(this.renkan.translate('Do you really wish to remove edge ') + '\"' + this.source_representation.model.get(\"title\") + '\"?')) {\n this.project.removeEdge(this.source_representation.model);\n }\n }\n }\n }\n }).value();\n\n /* EdgeRemoveButton End */\n\n return EdgeRemoveButton;\n\n});\n\n\ndefine('renderer/edgerevertbutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeRevertButton Begin */\n\n //var EdgeRevertButton = Renderer.EdgeRevertButton = Utils.inherit(Renderer._BaseButton);\n var EdgeRevertButton = Utils.inherit(BaseButton);\n\n _(EdgeRevertButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-revert-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -135, 135, 1, \"revert\", this.renkan.translate(\"Cancel deletion\"));\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n if (this.renderer.isEditable()) {\n this.source_representation.model.unset(\"delete_scheduled\");\n }\n }\n }).value();\n\n /* EdgeRevertButton End */\n\n return EdgeRevertButton;\n\n});\n\n\ndefine('renderer/miniframe',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* MiniFrame Begin */\n\n //var MiniFrame = Renderer.MiniFrame = Utils.inherit(Renderer._BaseRepresentation);\n var MiniFrame = Utils.inherit(BaseRepresentation);\n\n _(MiniFrame.prototype).extend({\n paperShift: function(_delta) {\n this.renderer.offset = this.renderer.offset.subtract(_delta.divide(this.renderer.minimap.scale).multiply(this.renderer.scale));\n this.renderer.redraw();\n },\n mouseup: function(_delta) {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n }\n }).value();\n\n\n /* MiniFrame End */\n\n return MiniFrame;\n\n});\n\n\ndefine('renderer/scene',['jquery', 'underscore', 'filesaver', 'requtils', 'renderer/miniframe'], function ($, _, filesaver, requtils, MiniFrame) {\n \n\n var Utils = requtils.getUtils();\n\n /* Scene Begin */\n\n var Scene = function(_renkan) {\n this.renkan = _renkan;\n this.$ = $(\".Rk-Render\");\n this.representations = [];\n this.$.html(_renkan.options.templates['templates/scene.html'](_renkan));\n this.onStatusChange();\n this.canvas_$ = this.$.find(\".Rk-Canvas\");\n this.labels_$ = this.$.find(\".Rk-Labels\");\n if (!_renkan.options.popup_editor){\n this.editor_$ = $(\"#\" + _renkan.options.editor_panel);\n }else{\n this.editor_$ = this.$.find(\".Rk-Editor\");\n }\n this.notif_$ = this.$.find(\".Rk-Notifications\");\n paper.setup(this.canvas_$[0]);\n this.scale = 1;\n this.initialScale = 1;\n this.offset = paper.view.center;\n this.totalScroll = 0;\n this.hiddenNodes = [];\n this.mouse_down = false;\n this.click_target = null;\n this.selected_target = null;\n this.edge_layer = new paper.Layer();\n this.node_layer = new paper.Layer();\n this.buttons_layer = new paper.Layer();\n this.delete_list = [];\n this.redrawActive = true;\n\n if (_renkan.options.show_minimap) {\n this.minimap = {\n background_layer: new paper.Layer(),\n edge_layer: new paper.Layer(),\n node_layer: new paper.Layer(),\n node_group: new paper.Group(),\n size: new paper.Size( _renkan.options.minimap_width, _renkan.options.minimap_height )\n };\n\n this.minimap.background_layer.activate();\n this.minimap.topleft = paper.view.bounds.bottomRight.subtract(this.minimap.size);\n this.minimap.rectangle = new paper.Path.Rectangle(this.minimap.topleft.subtract([2,2]), this.minimap.size.add([4,4]));\n this.minimap.rectangle.fillColor = _renkan.options.minimap_background_color;\n this.minimap.rectangle.strokeColor = _renkan.options.minimap_border_color;\n this.minimap.rectangle.strokeWidth = 4;\n this.minimap.offset = new paper.Point(this.minimap.size.divide(2));\n this.minimap.scale = 0.1;\n\n this.minimap.node_layer.activate();\n this.minimap.cliprectangle = new paper.Path.Rectangle(this.minimap.topleft, this.minimap.size);\n this.minimap.node_group.addChild(this.minimap.cliprectangle);\n this.minimap.node_group.clipped = true;\n this.minimap.miniframe = new paper.Path.Rectangle(this.minimap.topleft, this.minimap.size);\n this.minimap.node_group.addChild(this.minimap.miniframe);\n this.minimap.miniframe.fillColor = '#c0c0ff';\n this.minimap.miniframe.opacity = 0.3;\n this.minimap.miniframe.strokeColor = '#000080';\n this.minimap.miniframe.strokeWidth = 2;\n this.minimap.miniframe.__representation = new MiniFrame(this, null);\n }\n\n this.throttledPaperDraw = _(function() {\n paper.view.draw();\n }).throttle(100).value();\n\n this.bundles = [];\n this.click_mode = false;\n\n var _this = this,\n _allowScroll = true,\n _originalScale = 1,\n _zooming = false,\n _lastTapX = 0,\n _lastTapY = 0;\n\n this.image_cache = {};\n this.icon_cache = {};\n\n ['edit', 'remove', 'hide', 'show', 'link', 'enlarge', 'shrink', 'revert' ].forEach(function(imgname) {\n var img = new Image();\n img.src = _renkan.options.static_url + 'img/' + imgname + '.png';\n _this.icon_cache[imgname] = img;\n });\n\n var throttledMouseMove = _.throttle(function(_event, _isTouch) {\n _this.onMouseMove(_event, _isTouch);\n }, Utils._MOUSEMOVE_RATE);\n\n this.canvas_$.on({\n mousedown: function(_event) {\n _event.preventDefault();\n _this.onMouseDown(_event, false);\n },\n mousemove: function(_event) {\n _event.preventDefault();\n throttledMouseMove(_event, false);\n },\n mouseup: function(_event) {\n _event.preventDefault();\n _this.onMouseUp(_event, false);\n },\n mousewheel: function(_event, _delta) {\n if(_renkan.options.zoom_on_scroll) {\n _event.preventDefault();\n if (_allowScroll) {\n _this.onScroll(_event, _delta);\n }\n }\n },\n touchstart: function(_event) {\n _event.preventDefault();\n var _touches = _event.originalEvent.touches[0];\n if (\n _renkan.options.allow_double_click &&\n new Date() - _lastTap < Utils._DOUBLETAP_DELAY &&\n ( Math.pow(_lastTapX - _touches.pageX, 2) + Math.pow(_lastTapY - _touches.pageY, 2) < Utils._DOUBLETAP_DISTANCE )\n ) {\n _lastTap = 0;\n _this.onDoubleClick(_touches);\n } else {\n _lastTap = new Date();\n _lastTapX = _touches.pageX;\n _lastTapY = _touches.pageY;\n _originalScale = _this.scale;\n _zooming = false;\n _this.onMouseDown(_touches, true);\n }\n },\n touchmove: function(_event) {\n _event.preventDefault();\n _lastTap = 0;\n if (_event.originalEvent.touches.length === 1) {\n _this.onMouseMove(_event.originalEvent.touches[0], true);\n } else {\n if (!_zooming) {\n _this.onMouseUp(_event.originalEvent.touches[0], true);\n _this.click_target = null;\n _this.is_dragging = false;\n _zooming = true;\n }\n if (_event.originalEvent.scale === \"undefined\") {\n return;\n }\n var _newScale = _event.originalEvent.scale * _originalScale,\n _scaleRatio = _newScale / _this.scale,\n _newOffset = new paper.Point([\n _this.canvas_$.width(),\n _this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - _scaleRatio ) ).add(_this.offset.multiply( _scaleRatio ));\n _this.setScale(_newScale, _newOffset);\n }\n },\n touchend: function(_event) {\n _event.preventDefault();\n _this.onMouseUp(_event.originalEvent.changedTouches[0], true);\n },\n dblclick: function(_event) {\n _event.preventDefault();\n if (_renkan.options.allow_double_click) {\n _this.onDoubleClick(_event);\n }\n },\n mouseleave: function(_event) {\n _event.preventDefault();\n _this.onMouseUp(_event, false);\n _this.click_target = null;\n _this.is_dragging = false;\n },\n dragover: function(_event) {\n _event.preventDefault();\n },\n dragenter: function(_event) {\n _event.preventDefault();\n _allowScroll = false;\n },\n dragleave: function(_event) {\n _event.preventDefault();\n _allowScroll = true;\n },\n drop: function(_event) {\n _event.preventDefault();\n _allowScroll = true;\n var res = {};\n _.each(_event.originalEvent.dataTransfer.types, function(t) {\n try {\n res[t] = _event.originalEvent.dataTransfer.getData(t);\n } catch(e) {}\n });\n var text = _event.originalEvent.dataTransfer.getData(\"Text\");\n if (typeof text === \"string\") {\n switch(text[0]) {\n case \"{\":\n case \"[\":\n try {\n var data = JSON.parse(text);\n _.extend(res,data);\n }\n catch(e) {\n if (!res[\"text/plain\"]) {\n res[\"text/plain\"] = text;\n }\n }\n break;\n case \"<\":\n if (!res[\"text/html\"]) {\n res[\"text/html\"] = text;\n }\n break;\n default:\n if (!res[\"text/plain\"]) {\n res[\"text/plain\"] = text;\n }\n }\n }\n var url = _event.originalEvent.dataTransfer.getData(\"URL\");\n if (url && !res[\"text/uri-list\"]) {\n res[\"text/uri-list\"] = url;\n }\n _this.dropData(res, _event.originalEvent);\n }\n });\n\n var bindClick = function(selector, fname) {\n _this.$.find(selector).click(function(evt) {\n _this[fname](evt);\n return false;\n });\n };\n\n bindClick(\".Rk-ZoomOut\", \"zoomOut\");\n bindClick(\".Rk-ZoomIn\", \"zoomIn\");\n bindClick(\".Rk-ZoomFit\", \"autoScale\");\n this.$.find(\".Rk-ZoomSave\").click( function() {\n // Save scale and offset point\n _this.renkan.project.addView( { zoom_level:_this.scale, offset:_this.offset, hidden_nodes: _this.hiddenNodes } );\n });\n this.$.find(\".Rk-ZoomSetSaved\").click( function() {\n var view = _this.renkan.project.get(\"views\").last();\n if(view){\n _this.setScale(view.get(\"zoom_level\"), new paper.Point(view.get(\"offset\")));\n _this.hiddenNodes = view.get(\"hidden_nodes\") || [];\n _this.hideNodes();\n }\n });\n this.$.find(\".Rk-ShowHiddenNodes\").mouseenter( function() {\n _this.showNodes(true);\n _this.$.find(\".Rk-ShowHiddenNodes\").mouseleave( function() {\n _this.hideNodes(false);\n });\n });\n this.$.find(\".Rk-ShowHiddenNodes\").click( function() {\n _this.showNodes(false);\n _this.$.find(\".Rk-ShowHiddenNodes\").off( \"mouseleave\" ); \n });\n if(this.renkan.project.get(\"views\").length > 0 && this.renkan.options.save_view){\n this.$.find(\".Rk-ZoomSetSaved\").show();\n }\n this.$.find(\".Rk-CurrentUser\").mouseenter(\n function() { _this.$.find(\".Rk-UserList\").slideDown(); }\n );\n this.$.find(\".Rk-Users\").mouseleave(\n function() { _this.$.find(\".Rk-UserList\").slideUp(); }\n );\n bindClick(\".Rk-FullScreen-Button\", \"fullScreen\");\n bindClick(\".Rk-AddNode-Button\", \"addNodeBtn\");\n bindClick(\".Rk-AddEdge-Button\", \"addEdgeBtn\");\n bindClick(\".Rk-Save-Button\", \"save\");\n bindClick(\".Rk-Open-Button\", \"open\");\n bindClick(\".Rk-Export-Button\", \"exportProject\");\n this.$.find(\".Rk-Bookmarklet-Button\")\n /*jshint scripturl:true */\n .attr(\"href\",\"javascript:\" + Utils._BOOKMARKLET_CODE(_renkan))\n .click(function(){\n _this.notif_$\n .text(_renkan.translate(\"Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.\"))\n .fadeIn()\n .delay(5000)\n .fadeOut();\n return false;\n });\n this.$.find(\".Rk-TopBar-Button\").mouseover(function() {\n $(this).find(\".Rk-TopBar-Tooltip\").show();\n }).mouseout(function() {\n $(this).find(\".Rk-TopBar-Tooltip\").hide();\n });\n bindClick(\".Rk-Fold-Bins\", \"foldBins\");\n\n paper.view.onResize = function(_event) {\n var _ratio,\n newWidth = _event.width,\n newHeight = _event.height;\n\n if (_this.minimap) {\n _this.minimap.topleft = paper.view.bounds.bottomRight.subtract(_this.minimap.size);\n _this.minimap.rectangle.fitBounds(_this.minimap.topleft.subtract([2,2]), _this.minimap.size.add([4,4]));\n _this.minimap.cliprectangle.fitBounds(_this.minimap.topleft, _this.minimap.size);\n }\n\n var ratioH = newHeight/(newHeight-_event.delta.height),\n ratioW = newWidth/(newWidth-_event.delta.width);\n if (newHeight < newWidth) {\n _ratio = ratioH;\n } else {\n _ratio = ratioW;\n }\n\n _this.resizeZoom(ratioW, ratioH, _ratio);\n\n _this.redraw();\n\n };\n\n var _thRedraw = _.throttle(function() {\n _this.redraw();\n },50);\n\n this.addRepresentations(\"Node\", this.renkan.project.get(\"nodes\"));\n this.addRepresentations(\"Edge\", this.renkan.project.get(\"edges\"));\n this.renkan.project.on(\"change:title\", function() {\n _this.$.find(\".Rk-PadTitle\").val(_renkan.project.get(\"title\"));\n });\n\n this.$.find(\".Rk-PadTitle\").on(\"keyup input paste\", function() {\n _renkan.project.set({\"title\": $(this).val()});\n });\n\n var _thRedrawUsers = _.throttle(function() {\n _this.redrawUsers();\n }, 100);\n\n _thRedrawUsers();\n\n // register model events\n this.renkan.project.on(\"change:saveStatus\", function(){\n switch (_this.renkan.project.get(\"saveStatus\")) {\n case 0: //clean\n _this.$.find(\".Rk-Save-Button\").removeClass(\"to-save\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saving\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"saved\");\n break;\n case 1: //dirty\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saved\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saving\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"to-save\");\n break;\n case 2: //saving\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saved\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"to-save\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"saving\");\n break;\n }\n });\n\n this.renkan.project.on(\"change:loadingStatus\", function(){\n if (_this.renkan.project.get(\"loadingStatus\")){\n var animate = _this.$.find(\".loader\").addClass(\"run\");\n var timer = setTimeout(function(){\n _this.$.find(\".loader\").hide(250);\n }, 3000);\n }\n });\n\n this.renkan.project.on(\"add:users remove:users\", _thRedrawUsers);\n\n this.renkan.project.on(\"add:views remove:views\", function(_node) {\n if(_this.renkan.project.get('views').length > 0) {\n _this.$.find(\".Rk-ZoomSetSaved\").show();\n }\n else {\n _this.$.find(\".Rk-ZoomSetSaved\").hide();\n }\n });\n\n this.renkan.project.on(\"add:nodes\", function(_node) {\n _this.addRepresentation(\"Node\", _node);\n if (!_this.renkan.project.get(\"loadingStatus\")){\n _thRedraw();\n }\n });\n this.renkan.project.on(\"add:edges\", function(_edge) {\n _this.addRepresentation(\"Edge\", _edge);\n if (!_this.renkan.project.get(\"loadingStatus\")){\n _thRedraw();\n }\n });\n this.renkan.project.on(\"change:title\", function(_model, _title) {\n var el = _this.$.find(\".Rk-PadTitle\");\n if (el.is(\"input\")) {\n if (el.val() !== _title) {\n el.val(_title);\n }\n } else {\n el.text(_title);\n }\n });\n\n if (_renkan.options.size_bug_fix) {\n var _delay = (\n typeof _renkan.options.size_bug_fix === \"number\" ?\n _renkan.options.size_bug_fix\n : 500\n );\n window.setTimeout(\n function() {\n _this.fixSize();\n },\n _delay\n );\n }\n\n if (_renkan.options.force_resize) {\n $(window).resize(function() {\n _this.autoScale();\n });\n }\n\n if (_renkan.options.show_user_list && _renkan.options.user_color_editable) {\n var $cpwrapper = this.$.find(\".Rk-Users .Rk-Edit-ColorPicker-Wrapper\"),\n $cplist = this.$.find(\".Rk-Users .Rk-Edit-ColorPicker\");\n\n $cpwrapper.hover(\n function(_e) {\n if (_this.isEditable()) {\n _e.preventDefault();\n $cplist.show();\n }\n },\n function(_e) {\n _e.preventDefault();\n $cplist.hide();\n }\n );\n\n $cplist.find(\"li\").mouseenter(\n function(_e) {\n if (_this.isEditable()) {\n _e.preventDefault();\n _this.$.find(\".Rk-CurrentUser-Color\").css(\"background\", $(this).attr(\"data-color\"));\n }\n }\n );\n }\n\n if (_renkan.options.show_search_field) {\n\n var lastval = '';\n\n this.$.find(\".Rk-GraphSearch-Field\").on(\"keyup change paste input\", function() {\n var $this = $(this),\n val = $this.val();\n if (val === lastval) {\n return;\n }\n lastval = val;\n if (val.length < 2) {\n _renkan.project.get(\"nodes\").each(function(n) {\n _this.getRepresentationByModel(n).unhighlight();\n });\n } else {\n var rxs = Utils.regexpFromTextOrArray(val);\n _renkan.project.get(\"nodes\").each(function(n) {\n if (rxs.test(n.get(\"title\")) || rxs.test(n.get(\"description\"))) {\n _this.getRepresentationByModel(n).highlight(rxs);\n } else {\n _this.getRepresentationByModel(n).unhighlight();\n }\n });\n }\n });\n }\n\n this.redraw();\n\n window.setInterval(function() {\n var _now = new Date().valueOf();\n _this.delete_list.forEach(function(d) {\n if (_now >= d.time) {\n var el = _renkan.project.get(\"nodes\").findWhere({\"delete_scheduled\":d.id});\n if (el) {\n project.removeNode(el);\n }\n el = _renkan.project.get(\"edges\").findWhere({\"delete_scheduled\":d.id});\n if (el) {\n project.removeEdge(el);\n }\n }\n });\n _this.delete_list = _this.delete_list.filter(function(d) {\n return _renkan.project.get(\"nodes\").findWhere({\"delete_scheduled\":d.id}) || _renkan.project.get(\"edges\").findWhere({\"delete_scheduled\":d.id});\n });\n }, 500);\n\n if (this.minimap) {\n window.setInterval(function() {\n _this.rescaleMinimap();\n }, 2000);\n }\n\n };\n\n _(Scene.prototype).extend({\n fixSize: function() {\n if( this.renkan.options.default_view && this.renkan.project.get(\"views\").length > 0) {\n var view = this.renkan.project.get(\"views\").last();\n this.setScale(view.get(\"zoom_level\"), new paper.Point(view.get(\"offset\")));\n }\n else{\n this.autoScale();\n }\n },\n drawSector: function(_repr, _inR, _outR, _startAngle, _endAngle, _padding, _imgname, _caption) {\n var _options = this.renkan.options,\n _startRads = _startAngle * Math.PI / 180,\n _endRads = _endAngle * Math.PI / 180,\n _img = this.icon_cache[_imgname],\n _startdx = - Math.sin(_startRads),\n _startdy = Math.cos(_startRads),\n _startXIn = Math.cos(_startRads) * _inR + _padding * _startdx,\n _startYIn = Math.sin(_startRads) * _inR + _padding * _startdy,\n _startXOut = Math.cos(_startRads) * _outR + _padding * _startdx,\n _startYOut = Math.sin(_startRads) * _outR + _padding * _startdy,\n _enddx = - Math.sin(_endRads),\n _enddy = Math.cos(_endRads),\n _endXIn = Math.cos(_endRads) * _inR - _padding * _enddx,\n _endYIn = Math.sin(_endRads) * _inR - _padding * _enddy,\n _endXOut = Math.cos(_endRads) * _outR - _padding * _enddx,\n _endYOut = Math.sin(_endRads) * _outR - _padding * _enddy,\n _centerR = (_inR + _outR) / 2,\n _centerRads = (_startRads + _endRads) / 2,\n _centerX = Math.cos(_centerRads) * _centerR,\n _centerY = Math.sin(_centerRads) * _centerR,\n _centerXIn = Math.cos(_centerRads) * _inR,\n _centerXOut = Math.cos(_centerRads) * _outR,\n _centerYIn = Math.sin(_centerRads) * _inR,\n _centerYOut = Math.sin(_centerRads) * _outR,\n _textX = Math.cos(_centerRads) * (_outR + 3),\n _textY = Math.sin(_centerRads) * (_outR + _options.buttons_label_font_size) + _options.buttons_label_font_size / 2;\n this.buttons_layer.activate();\n var _path = new paper.Path();\n _path.add([_startXIn, _startYIn]);\n _path.arcTo([_centerXIn, _centerYIn], [_endXIn, _endYIn]);\n _path.lineTo([_endXOut, _endYOut]);\n _path.arcTo([_centerXOut, _centerYOut], [_startXOut, _startYOut]);\n _path.fillColor = _options.buttons_background;\n _path.opacity = 0.5;\n _path.closed = true;\n _path.__representation = _repr;\n var _text = new paper.PointText(_textX,_textY);\n _text.characterStyle = {\n fontSize: _options.buttons_label_font_size,\n fillColor: _options.buttons_label_color\n };\n if (_textX > 2) {\n _text.paragraphStyle.justification = 'left';\n } else if (_textX < -2) {\n _text.paragraphStyle.justification = 'right';\n } else {\n _text.paragraphStyle.justification = 'center';\n }\n _text.visible = false;\n var _visible = false,\n _restPos = new paper.Point(-200, -200),\n _grp = new paper.Group([_path, _text]),\n //_grp = new paper.Group([_path]),\n _delta = _grp.position,\n _imgdelta = new paper.Point([_centerX, _centerY]),\n _currentPos = new paper.Point(0,0);\n _text.content = _caption;\n // set group pivot to not depend on text visibility that changes the group bounding box.\n _grp.pivot = _grp.bounds.center;\n _grp.visible = false;\n _grp.position = _restPos;\n var _res = {\n show: function() {\n _visible = true;\n _grp.position = _currentPos.add(_delta);\n _grp.visible = true;\n },\n moveTo: function(_point) {\n _currentPos = _point;\n if (_visible) {\n _grp.position = _point.add(_delta);\n }\n },\n hide: function() {\n _visible = false;\n _grp.visible = false;\n _grp.position = _restPos;\n },\n select: function() {\n _path.opacity = 0.8;\n _text.visible = true;\n },\n unselect: function() {\n _path.opacity = 0.5;\n _text.visible = false;\n },\n destroy: function() {\n _grp.remove();\n }\n };\n var showImage = function() {\n var _raster = new paper.Raster(_img);\n _raster.position = _imgdelta.add(_grp.position).subtract(_delta);\n _raster.locked = true; // Disable mouse events on icon\n _grp.addChild(_raster);\n };\n if (_img.width) {\n showImage();\n } else {\n $(_img).on(\"load\",showImage);\n }\n\n return _res;\n },\n addToBundles: function(_edgeRepr) {\n var _bundle = _(this.bundles).find(function(_bundle) {\n return (\n ( _bundle.from === _edgeRepr.from_representation && _bundle.to === _edgeRepr.to_representation ) ||\n ( _bundle.from === _edgeRepr.to_representation && _bundle.to === _edgeRepr.from_representation )\n );\n });\n if (typeof _bundle !== \"undefined\") {\n _bundle.edges.push(_edgeRepr);\n } else {\n _bundle = {\n from: _edgeRepr.from_representation,\n to: _edgeRepr.to_representation,\n edges: [ _edgeRepr ],\n getPosition: function(_er) {\n var _dir = (_er.from_representation === this.from) ? 1 : -1;\n return _dir * ( _(this.edges).indexOf(_er) - (this.edges.length - 1) / 2 );\n }\n };\n this.bundles.push(_bundle);\n }\n return _bundle;\n },\n isEditable: function() {\n return (this.renkan.options.editor_mode && !this.renkan.read_only);\n },\n onStatusChange: function() {\n var savebtn = this.$.find(\".Rk-Save-Button\"),\n tip = savebtn.find(\".Rk-TopBar-Tooltip-Contents\");\n if (this.renkan.read_only) {\n savebtn.removeClass(\"disabled Rk-Save-Online\").addClass(\"Rk-Save-ReadOnly\");\n tip.text(this.renkan.translate(\"Connection lost\"));\n } else {\n if (this.renkan.options.manual_save) {\n savebtn.removeClass(\"Rk-Save-ReadOnly Rk-Save-Online\");\n tip.text(this.renkan.translate(\"Save Project\"));\n } else {\n savebtn.removeClass(\"disabled Rk-Save-ReadOnly\").addClass(\"Rk-Save-Online\");\n tip.text(this.renkan.translate(\"Auto-save enabled\"));\n }\n }\n this.redrawUsers();\n },\n setScale: function(_newScale, _offset) {\n if ((_newScale/this.initialScale) > Utils._MIN_SCALE && (_newScale/this.initialScale) < Utils._MAX_SCALE) {\n this.scale = _newScale;\n if (_offset) {\n this.offset = _offset;\n }\n this.redraw();\n }\n },\n autoScale: function(force_view) {\n var nodes = this.renkan.project.get(\"nodes\");\n if (nodes.length > 1) {\n var _xx = nodes.map(function(_node) { return _node.get(\"position\").x; }),\n _yy = nodes.map(function(_node) { return _node.get(\"position\").y; }),\n _minx = Math.min.apply(Math, _xx),\n _miny = Math.min.apply(Math, _yy),\n _maxx = Math.max.apply(Math, _xx),\n _maxy = Math.max.apply(Math, _yy);\n var _scale = Math.min( (paper.view.size.width - 2 * this.renkan.options.autoscale_padding) / (_maxx - _minx), (paper.view.size.height - 2 * this.renkan.options.autoscale_padding) / (_maxy - _miny));\n this.initialScale = _scale;\n // Override calculated scale if asked\n if((typeof force_view !== \"undefined\") && parseFloat(force_view.zoom_level)>0 && parseFloat(force_view.offset.x)>0 && parseFloat(force_view.offset.y)>0){\n this.setScale(parseFloat(force_view.zoom_level), new paper.Point(parseFloat(force_view.offset.x), parseFloat(force_view.offset.y)));\n }\n else{\n this.setScale(_scale, paper.view.center.subtract(new paper.Point([(_maxx + _minx) / 2, (_maxy + _miny) / 2]).multiply(_scale)));\n }\n }\n if (nodes.length === 1) {\n this.setScale(1, paper.view.center.subtract(new paper.Point([nodes.at(0).get(\"position\").x, nodes.at(0).get(\"position\").y])));\n }\n },\n redrawMiniframe: function() {\n var topleft = this.toMinimapCoords(this.toModelCoords(new paper.Point([0,0]))),\n bottomright = this.toMinimapCoords(this.toModelCoords(paper.view.bounds.bottomRight));\n this.minimap.miniframe.fitBounds(topleft, bottomright);\n },\n rescaleMinimap: function() {\n var nodes = this.renkan.project.get(\"nodes\");\n if (nodes.length > 1) {\n var _xx = nodes.map(function(_node) { return _node.get(\"position\").x; }),\n _yy = nodes.map(function(_node) { return _node.get(\"position\").y; }),\n _minx = Math.min.apply(Math, _xx),\n _miny = Math.min.apply(Math, _yy),\n _maxx = Math.max.apply(Math, _xx),\n _maxy = Math.max.apply(Math, _yy);\n var _scale = Math.min(\n this.scale * 0.8 * this.renkan.options.minimap_width / paper.view.bounds.width,\n this.scale * 0.8 * this.renkan.options.minimap_height / paper.view.bounds.height,\n ( this.renkan.options.minimap_width - 2 * this.renkan.options.minimap_padding ) / (_maxx - _minx),\n ( this.renkan.options.minimap_height - 2 * this.renkan.options.minimap_padding ) / (_maxy - _miny)\n );\n this.minimap.offset = this.minimap.size.divide(2).subtract(new paper.Point([(_maxx + _minx) / 2, (_maxy + _miny) / 2]).multiply(_scale));\n this.minimap.scale = _scale;\n }\n if (nodes.length === 1) {\n this.minimap.scale = 0.1;\n this.minimap.offset = this.minimap.size.divide(2).subtract(new paper.Point([nodes.at(0).get(\"position\").x, nodes.at(0).get(\"position\").y]).multiply(this.minimap.scale));\n }\n this.redraw();\n },\n toPaperCoords: function(_point) {\n return _point.multiply(this.scale).add(this.offset);\n },\n toMinimapCoords: function(_point) {\n return _point.multiply(this.minimap.scale).add(this.minimap.offset).add(this.minimap.topleft);\n },\n toModelCoords: function(_point) {\n return _point.subtract(this.offset).divide(this.scale);\n },\n addRepresentation: function(_type, _model) {\n var RendererType = requtils.getRenderer()[_type];\n var _repr = new RendererType(this, _model);\n this.representations.push(_repr);\n return _repr;\n },\n addRepresentations: function(_type, _collection) {\n var _this = this;\n _collection.forEach(function(_model) {\n _this.addRepresentation(_type, _model);\n });\n },\n userTemplate: _.template(\n '
                    • ;\"><%=name%>
                    • '\n ),\n redrawUsers: function() {\n if (!this.renkan.options.show_user_list) {\n return;\n }\n var allUsers = [].concat((this.renkan.project.current_user_list || {}).models || [], (this.renkan.project.get(\"users\") || {}).models || []),\n ulistHtml = '',\n $userpanel = this.$.find(\".Rk-Users\"),\n $name = $userpanel.find(\".Rk-CurrentUser-Name\"),\n $cpitems = $userpanel.find(\".Rk-Edit-ColorPicker li\"),\n $colorsquare = $userpanel.find(\".Rk-CurrentUser-Color\"),\n _this = this;\n $name.off(\"click\").text(this.renkan.translate(\"\"));\n $cpitems.off(\"mouseleave click\");\n allUsers.forEach(function(_user) {\n if (_user.get(\"_id\") === _this.renkan.current_user) {\n $name.text(_user.get(\"title\"));\n $colorsquare.css(\"background\", _user.get(\"color\"));\n if (_this.isEditable()) {\n\n if (_this.renkan.options.user_name_editable) {\n $name.click(function() {\n var $this = $(this),\n $input = $('').val(_user.get(\"title\")).blur(function() {\n _user.set(\"title\", $(this).val());\n _this.redrawUsers();\n _this.redraw();\n });\n $this.empty().html($input);\n $input.select();\n });\n }\n\n if (_this.renkan.options.user_color_editable) {\n $cpitems.click(\n function(_e) {\n _e.preventDefault();\n if (_this.isEditable()) {\n _user.set(\"color\", $(this).attr(\"data-color\"));\n }\n $(this).parent().hide();\n }\n ).mouseleave(function() {\n $colorsquare.css(\"background\", _user.get(\"color\"));\n });\n }\n }\n\n } else {\n ulistHtml += _this.userTemplate({\n name: _user.get(\"title\"),\n background: _user.get(\"color\")\n });\n }\n });\n $userpanel.find(\".Rk-UserList\").html(ulistHtml);\n },\n removeRepresentation: function(_representation) {\n _representation.destroy();\n this.representations = _.reject(this.representations,\n function(_repr) {\n return _repr === _representation;\n }\n );\n },\n getRepresentationByModel: function(_model) {\n if (!_model) {\n return undefined;\n }\n return _.find(this.representations, function(_repr) {\n return _repr.model === _model;\n });\n },\n removeRepresentationsOfType: function(_type) {\n var _representations = _.filter(this.representations,function(_repr) {\n return _repr.type === _type;\n }),\n _this = this;\n _.each(_representations, function(_repr) {\n _this.removeRepresentation(_repr);\n });\n },\n highlightModel: function(_model) {\n var _repr = this.getRepresentationByModel(_model);\n if (_repr) {\n _repr.highlight();\n }\n },\n unhighlightAll: function(_model) {\n _.each(this.representations, function(_repr) {\n _repr.unhighlight();\n });\n },\n unselectAll: function(_model) {\n _.each(this.representations, function(_repr) {\n _repr.unselect();\n });\n },\n redraw: function() {\n var _this = this;\n if(! this.redrawActive ) {\n return;\n }\n _.each(this.representations, function(_representation) {\n _representation.redraw({ dontRedrawEdges:true });\n });\n if (this.minimap) {\n this.redrawMiniframe();\n }\n paper.view.draw();\n },\n addTempEdge: function(_from, _point) {\n var _tmpEdge = this.addRepresentation(\"TempEdge\",null);\n _tmpEdge.end_pos = _point;\n _tmpEdge.from_representation = _from;\n _tmpEdge.redraw();\n this.click_target = _tmpEdge;\n },\n addHiddenNode: function(_model){\n this.hideNode(_model);\n this.hiddenNodes.push(_model.id);\n },\n hideNode: function(_model){\n var _this = this;\n if (typeof _this.getRepresentationByModel(_model) !== 'undefined'){\n _this.getRepresentationByModel(_model).hide();\n }\n },\n hideNodes: function(){\n var _this = this;\n this.hiddenNodes.forEach(function(_id, index){\n var node = _this.renkan.project.get(\"nodes\").get(_id);\n if (typeof node !== 'undefined'){\n return _this.hideNode(_this.renkan.project.get(\"nodes\").get(_id));\n }else{\n _this.hiddenNodes.splice(index, 1);\n }\n });\n paper.view.draw();\n },\n showNodes: function(ghost){\n var _this = this;\n this.hiddenNodes.forEach(function(_id){\n _this.getRepresentationByModel(_this.renkan.project.get(\"nodes\").get(_id)).show(ghost);\n });\n if (!ghost){\n this.hiddenNodes = [];\n }\n paper.view.draw();\n },\n findTarget: function(_hitResult) {\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n var _newTarget = _hitResult.item.__representation;\n if (this.selected_target !== _hitResult.item.__representation) {\n if (this.selected_target) {\n this.selected_target.unselect(_newTarget);\n }\n _newTarget.select(this.selected_target);\n this.selected_target = _newTarget;\n }\n } else {\n if (this.selected_target) {\n this.selected_target.unselect();\n }\n this.selected_target = null;\n }\n },\n paperShift: function(_delta) {\n this.offset = this.offset.add(_delta);\n this.redraw();\n },\n onMouseMove: function(_event) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]),\n _delta = _point.subtract(this.last_point);\n this.last_point = _point;\n if (!this.is_dragging && this.mouse_down && _delta.length > Utils._MIN_DRAG_DISTANCE) {\n this.is_dragging = true;\n }\n var _hitResult = paper.project.hitTest(_point);\n if (this.is_dragging) {\n if (this.click_target && typeof this.click_target.paperShift === \"function\") {\n this.click_target.paperShift(_delta);\n } else {\n this.paperShift(_delta);\n }\n } else {\n this.findTarget(_hitResult);\n }\n paper.view.draw();\n },\n onMouseDown: function(_event, _isTouch) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n this.last_point = _point;\n this.mouse_down = true;\n if (!this.click_target || this.click_target.type !== \"Temp-edge\") {\n this.removeRepresentationsOfType(\"editor\");\n this.is_dragging = false;\n var _hitResult = paper.project.hitTest(_point);\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n this.click_target = _hitResult.item.__representation;\n this.click_target.mousedown(_event, _isTouch);\n } else {\n this.click_target = null;\n if (this.isEditable() && this.click_mode === Utils._CLICKMODE_ADDNODE) {\n var _coords = this.toModelCoords(_point),\n _data = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n _node = this.renkan.project.addNode(_data);\n this.getRepresentationByModel(_node).openEditor();\n }\n }\n }\n if (this.click_mode) {\n if (this.isEditable() && this.click_mode === Utils._CLICKMODE_STARTEDGE && this.click_target && this.click_target.type === \"Node\") {\n this.removeRepresentationsOfType(\"editor\");\n this.addTempEdge(this.click_target, _point);\n this.click_mode = Utils._CLICKMODE_ENDEDGE;\n this.notif_$.fadeOut(function() {\n $(this).html(this.renkan.translate(\"Click on a second node to complete the edge\")).fadeIn();\n });\n } else {\n this.notif_$.hide();\n this.click_mode = false;\n }\n }\n paper.view.draw();\n },\n onMouseUp: function(_event, _isTouch) {\n this.mouse_down = false;\n if (this.click_target) {\n var _off = this.canvas_$.offset();\n this.click_target.mouseup(\n {\n point: new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ])\n },\n _isTouch\n );\n } else {\n this.click_target = null;\n this.is_dragging = false;\n if (_isTouch) {\n this.unselectAll();\n }\n }\n paper.view.draw();\n },\n onScroll: function(_event, _scrolldelta) {\n this.totalScroll += _scrolldelta;\n if (Math.abs(this.totalScroll) >= 1) {\n var _off = this.canvas_$.offset(),\n _delta = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]).subtract(this.offset).multiply( Math.SQRT2 - 1 );\n if (this.totalScroll > 0) {\n this.setScale( this.scale * Math.SQRT2, this.offset.subtract(_delta) );\n } else {\n this.setScale( this.scale * Math.SQRT1_2, this.offset.add(_delta.divide(Math.SQRT2)));\n }\n this.totalScroll = 0;\n }\n },\n onDoubleClick: function(_event) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n var _hitResult = paper.project.hitTest(_point);\n \n if (!this.isEditable()) {\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n if (_hitResult.item.__representation.model.get('uri')){\n window.open(_hitResult.item.__representation.model.get('uri'), '_blank');\n }\n }\n return;\n }\n if (this.isEditable() && (!_hitResult || typeof _hitResult.item.__representation === \"undefined\")) {\n var _coords = this.toModelCoords(_point),\n _data = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n },\n _node = this.renkan.project.addNode(_data);\n this.getRepresentationByModel(_node).openEditor();\n }\n paper.view.draw();\n },\n defaultDropHandler: function(_data) {\n var newNode = {};\n var snippet = \"\";\n switch(_data[\"text/x-iri-specific-site\"]) {\n case \"twitter\":\n snippet = $('
                      ').html(_data[\"text/x-iri-selected-html\"]);\n var tweetdiv = snippet.find(\".tweet\");\n newNode.title = this.renkan.translate(\"Tweet by \") + tweetdiv.attr(\"data-name\");\n newNode.uri = \"http://twitter.com/\" + tweetdiv.attr(\"data-screen-name\") + \"/status/\" + tweetdiv.attr(\"data-tweet-id\");\n newNode.image = tweetdiv.find(\".avatar\").attr(\"src\");\n newNode.description = tweetdiv.find(\".js-tweet-text:first\").text();\n break;\n case \"google\":\n snippet = $('
                      ').html(_data[\"text/x-iri-selected-html\"]);\n newNode.title = snippet.find(\"h3:first\").text().trim();\n newNode.uri = snippet.find(\"h3 a\").attr(\"href\");\n newNode.description = snippet.find(\".st:first\").text().trim();\n break;\n default:\n if (_data[\"text/x-iri-source-uri\"]) {\n newNode.uri = _data[\"text/x-iri-source-uri\"];\n }\n }\n if (_data[\"text/plain\"] || _data[\"text/x-iri-selected-text\"]) {\n newNode.description = (_data[\"text/plain\"] || _data[\"text/x-iri-selected-text\"]).replace(/[\\s\\n]+/gm,' ').trim();\n }\n if (_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]) {\n snippet = $('
                      ').html(_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]);\n var _svgimgs = snippet.find(\"image\");\n if (_svgimgs.length) {\n newNode.image = _svgimgs.attr(\"xlink:href\");\n }\n var _svgpaths = snippet.find(\"path\");\n if (_svgpaths.length) {\n newNode.clipPath = _svgpaths.attr(\"d\");\n }\n var _imgs = snippet.find(\"img\");\n if (_imgs.length) {\n newNode.image = _imgs[0].src;\n }\n var _as = snippet.find(\"a\");\n if (_as.length) {\n newNode.uri = _as[0].href;\n }\n newNode.title = snippet.find(\"[title]\").attr(\"title\") || newNode.title;\n newNode.description = snippet.text().replace(/[\\s\\n]+/gm,' ').trim();\n }\n if (_data[\"text/uri-list\"]) {\n newNode.uri = _data[\"text/uri-list\"];\n }\n if (_data[\"text/x-moz-url\"] && !newNode.title) {\n newNode.title = (_data[\"text/x-moz-url\"].split(\"\\n\")[1] || \"\").trim();\n if (newNode.title === newNode.uri) {\n newNode.title = false;\n }\n }\n if (_data[\"text/x-iri-source-title\"] && !newNode.title) {\n newNode.title = _data[\"text/x-iri-source-title\"];\n }\n if (_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]) {\n snippet = $('
                      ').html(_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]);\n newNode.image = snippet.find(\"[data-image]\").attr(\"data-image\") || newNode.image;\n newNode.uri = snippet.find(\"[data-uri]\").attr(\"data-uri\") || newNode.uri;\n newNode.title = snippet.find(\"[data-title]\").attr(\"data-title\") || newNode.title;\n newNode.description = snippet.find(\"[data-description]\").attr(\"data-description\") || newNode.description;\n newNode.clipPath = snippet.find(\"[data-clip-path]\").attr(\"data-clip-path\") || newNode.clipPath;\n }\n\n if (!newNode.title) {\n newNode.title = this.renkan.translate(\"Dragged resource\");\n }\n var fields = [\"title\", \"description\", \"uri\", \"image\"];\n for (var i = 0; i < fields.length; i++) {\n var f = fields[i];\n if (_data[\"text/x-iri-\" + f] || _data[f]) {\n newNode[f] = _data[\"text/x-iri-\" + f] || _data[f];\n }\n if (newNode[f] === \"none\" || newNode[f] === \"null\") {\n newNode[f] = undefined;\n }\n }\n\n if(typeof this.renkan.options.drop_enhancer === \"function\"){\n newNode = this.renkan.options.drop_enhancer(newNode, _data);\n }\n\n return newNode;\n\n },\n dropData: function(_data, _event) {\n if (!this.isEditable()) {\n return;\n }\n if (_data[\"text/json\"] || _data[\"application/json\"]) {\n try {\n var jsondata = JSON.parse(_data[\"text/json\"] || _data[\"application/json\"]);\n _.extend(_data,jsondata);\n }\n catch(e) {}\n }\n\n var newNode = (typeof this.renkan.options.drop_handler === \"undefined\")?this.defaultDropHandler(_data):this.renkan.options.drop_handler(_data);\n\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]),\n _coords = this.toModelCoords(_point),\n _nodedata = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n uri: newNode.uri || \"\",\n title: newNode.title || \"\",\n description: newNode.description || \"\",\n image: newNode.image || \"\",\n color: newNode.color || undefined,\n clip_path: newNode.clipPath || undefined,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n var _node = this.renkan.project.addNode(_nodedata),\n _repr = this.getRepresentationByModel(_node);\n if (_event.type === \"drop\") {\n _repr.openEditor();\n }\n },\n fullScreen: function() {\n var _isFull = document.fullScreen || document.mozFullScreen || document.webkitIsFullScreen,\n _el = this.renkan.$[0],\n _requestMethods = [\"requestFullScreen\",\"mozRequestFullScreen\",\"webkitRequestFullScreen\"],\n _cancelMethods = [\"cancelFullScreen\",\"mozCancelFullScreen\",\"webkitCancelFullScreen\"],\n i;\n if (_isFull) {\n for (i = 0; i < _cancelMethods.length; i++) {\n if (typeof document[_cancelMethods[i]] === \"function\") {\n document[_cancelMethods[i]]();\n break;\n }\n }\n var widthAft = this.$.width();\n var heightAft = this.$.height();\n\n if (this.renkan.options.show_top_bar) {\n heightAft -= this.$.find(\".Rk-TopBar\").height();\n }\n if (this.renkan.options.show_bins && (this.renkan.$.find(\".Rk-Bins\").position().left > 0)) {\n widthAft -= this.renkan.$.find(\".Rk-Bins\").width();\n }\n\n paper.view.viewSize = new paper.Size([widthAft, heightAft]);\n\n } else {\n for (i = 0; i < _requestMethods.length; i++) {\n if (typeof _el[_requestMethods[i]] === \"function\") {\n _el[_requestMethods[i]]();\n break;\n }\n }\n this.redraw();\n }\n },\n zoomOut: function() {\n var _newScale = this.scale * Math.SQRT1_2,\n _offset = new paper.Point([\n this.canvas_$.width(),\n this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - Math.SQRT1_2 ) ).add(this.offset.multiply( Math.SQRT1_2 ));\n this.setScale( _newScale, _offset );\n },\n zoomIn: function() {\n var _newScale = this.scale * Math.SQRT2,\n _offset = new paper.Point([\n this.canvas_$.width(),\n this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - Math.SQRT2 ) ).add(this.offset.multiply( Math.SQRT2 ));\n this.setScale( _newScale, _offset );\n },\n resizeZoom: function(_scaleWidth, _scaleHeight, _ratio) {\n var _newScale = this.scale * _ratio,\n _offset = new paper.Point([\n (this.offset.x * _scaleWidth),\n (this.offset.y * _scaleHeight)\n ]);\n this.setScale( _newScale, _offset );\n },\n addNodeBtn: function() {\n if (this.click_mode === Utils._CLICKMODE_ADDNODE) {\n this.click_mode = false;\n this.notif_$.hide();\n } else {\n this.click_mode = Utils._CLICKMODE_ADDNODE;\n this.notif_$.text(this.renkan.translate(\"Click on the background canvas to add a node\")).fadeIn();\n }\n return false;\n },\n addEdgeBtn: function() {\n if (this.click_mode === Utils._CLICKMODE_STARTEDGE || this.click_mode === Utils._CLICKMODE_ENDEDGE) {\n this.click_mode = false;\n this.notif_$.hide();\n } else {\n this.click_mode = Utils._CLICKMODE_STARTEDGE;\n this.notif_$.text(this.renkan.translate(\"Click on a first node to start the edge\")).fadeIn();\n }\n return false;\n },\n exportProject: function() {\n var projectJSON = this.renkan.project.toJSON(),\n downloadLink = document.createElement(\"a\"),\n projectId = projectJSON.id,\n fileNameToSaveAs = projectId + \".json\";\n\n // clean ids\n delete projectJSON.id;\n delete projectJSON._id;\n delete projectJSON.space_id;\n\n var objId,\n idsMap = {},\n hiddenNodes;\n\n _.each(projectJSON.nodes, function(e,i,l) {\n objId = e.id || e._id;\n delete e._id;\n delete e.id;\n idsMap[objId] = e['@id'] = Utils.getUUID4();\n });\n _.each(projectJSON.edges, function(e,i,l) {\n delete e._id;\n delete e.id;\n e.to = idsMap[e.to];\n e.from = idsMap[e.from];\n });\n _.each(projectJSON.views, function(e,i,l) {\n delete e._id;\n delete e.id;\n \n if(e.hidden_nodes) {\n hiddenNodes = e.hidden_nodes;\n e.hidden_nodes = [];\n _.each(hiddenNodes, function(h,j) {\n e.hidden_nodes.push(idsMap[h]);\n });\n }\n });\n projectJSON.users = [];\n\n var projectJSONStr = JSON.stringify(projectJSON, null, 2);\n var blob = new Blob([projectJSONStr], {type: \"application/json;charset=utf-8\"});\n filesaver(blob,fileNameToSaveAs);\n\n },\n foldBins: function() {\n var foldBinsButton = this.$.find(\".Rk-Fold-Bins\"),\n bins = this.renkan.$.find(\".Rk-Bins\");\n var _this = this,\n sizeBef = _this.canvas_$.width(),\n sizeAft;\n if (bins.position().left < 0) {\n bins.animate({left: 0},250);\n this.$.animate({left: 300},250,function() {\n var w = _this.$.width();\n paper.view.viewSize = new paper.Size([w, _this.canvas_$.height()]);\n });\n if ((sizeBef - bins.width()) < bins.height()){\n sizeAft = sizeBef;\n } else {\n sizeAft = sizeBef - bins.width();\n }\n foldBinsButton.html(\"«\");\n } else {\n bins.animate({left: -300},250);\n this.$.animate({left: 0},250,function() {\n var w = _this.$.width();\n paper.view.viewSize = new paper.Size([w, _this.canvas_$.height()]);\n });\n sizeAft = sizeBef+300;\n foldBinsButton.html(\"»\");\n }\n _this.resizeZoom(1, 1, (sizeAft/sizeBef));\n },\n save: function() { },\n open: function() { }\n }).value();\n\n /* Scene End */\n\n return Scene;\n\n});\n\n\n//Load modules and use them\nif( typeof require.config === \"function\" ) {\n require.config({\n paths: {\n 'jquery':'../lib/jquery/jquery',\n 'underscore':'../lib/lodash/lodash',\n 'filesaver' :'../lib/FileSaver/FileSaver',\n 'requtils':'require-utils'\n }\n });\n}\n\nrequire(['renderer/baserepresentation',\n 'renderer/basebutton',\n 'renderer/noderepr',\n 'renderer/edge',\n 'renderer/tempedge',\n 'renderer/baseeditor',\n 'renderer/nodeeditor',\n 'renderer/edgeeditor',\n 'renderer/nodebutton',\n 'renderer/nodeeditbutton',\n 'renderer/noderemovebutton',\n 'renderer/nodehidebutton',\n 'renderer/nodeshowbutton',\n 'renderer/noderevertbutton',\n 'renderer/nodelinkbutton',\n 'renderer/nodeenlargebutton',\n 'renderer/nodeshrinkbutton',\n 'renderer/edgeeditbutton',\n 'renderer/edgeremovebutton',\n 'renderer/edgerevertbutton',\n 'renderer/miniframe',\n 'renderer/scene'\n ], function(BaseRepresentation, BaseButton, NodeRepr, Edge, TempEdge, BaseEditor, NodeEditor, EdgeEditor, NodeButton, NodeEditButton, NodeRemoveButton, NodeHideButton, NodeShowButton, NodeRevertButton, NodeLinkButton, NodeEnlargeButton, NodeShrinkButton, EdgeEditButton, EdgeRemoveButton, EdgeRevertButton, MiniFrame, Scene){\n\n \n\n var Rkns = window.Rkns;\n\n if(typeof Rkns.Renderer === \"undefined\"){\n Rkns.Renderer = {};\n }\n var Renderer = Rkns.Renderer;\n\n Renderer._BaseRepresentation = BaseRepresentation;\n Renderer._BaseButton = BaseButton;\n Renderer.Node = NodeRepr;\n Renderer.Edge = Edge;\n Renderer.TempEdge = TempEdge;\n Renderer._BaseEditor = BaseEditor;\n Renderer.NodeEditor = NodeEditor;\n Renderer.EdgeEditor = EdgeEditor;\n Renderer._NodeButton = NodeButton;\n Renderer.NodeEditButton = NodeEditButton;\n Renderer.NodeRemoveButton = NodeRemoveButton;\n Renderer.NodeHideButton = NodeHideButton;\n Renderer.NodeShowButton = NodeShowButton;\n Renderer.NodeRevertButton = NodeRevertButton;\n Renderer.NodeLinkButton = NodeLinkButton;\n Renderer.NodeEnlargeButton = NodeEnlargeButton;\n Renderer.NodeShrinkButton = NodeShrinkButton;\n Renderer.EdgeEditButton = EdgeEditButton;\n Renderer.EdgeRemoveButton = EdgeRemoveButton;\n Renderer.EdgeRevertButton = EdgeRevertButton;\n Renderer.MiniFrame = MiniFrame;\n Renderer.Scene = Scene;\n\n startRenkan();\n});\n\ndefine(\"main-renderer\", function(){});\n\n"]} \ No newline at end of file +{"version":3,"file":"renkan.min.js","sources":["templates.js","../../js/main.js","../../js/router.js","../../js/dataloader.js","../../js/models.js","../../js/defaults.js","../../js/i18n.js","../../js/full-json.js","../../js/save-once.js","../../js/ldtjson-bin.js","../../js/list-bin.js","../../js/wikipedia-bin.js","paper-renderer.js"],"names":["this","obj","__t","__p","_","escape","__e","Array","prototype","join","renkan","translate","edge","title","options","show_edge_editor_uri","uri","properties","length","each","ontology","label","property","show_edge_editor_style","show_edge_editor_style_color","show_edge_editor_style_dash","dash","show_edge_editor_style_thickness","thickness","show_edge_editor_style_arrow","arrow","show_edge_editor_direction","show_edge_editor_nodes","from_color","shortenText","from_title","to_title","show_edge_editor_creator","has_creator","created_by_title","show_edge_tooltip_color","color","show_edge_tooltip_uri","short_uri","show_edge_tooltip_nodes","to_color","show_edge_tooltip_creator","created_by_color","Rkns","Utils","getFullURL","image","description","static_url","url","show_bins","show_editor","node","show_node_editor_uri","change_types","types","type","charAt","toUpperCase","substring","show_node_editor_description","show_node_editor_description_richtext","show_node_editor_size","size","show_node_editor_style","show_node_editor_style_color","show_node_editor_style_dash","show_node_editor_style_thickness","show_node_editor_image","image_placeholder","clip_path","allow_image_upload","show_node_editor_creator","change_shapes","shapes","shape","show_node_tooltip_color","show_node_tooltip_uri","show_node_tooltip_description","show_node_tooltip_image","show_node_tooltip_creator","_id","print","__j","call","arguments","show_top_bar","editor_mode","project","get","show_user_list","show_user_color","user_color_editable","colorPicker","home_button_url","home_button_title","show_fullscreen_button","show_addnode_button","show_addedge_button","show_export_button","show_save_button","show_open_button","show_bookmarklet","show_search_field","resize","show_zoom","save_view","hide_nodes","root","$","jQuery","pickerColors","__renkans","_BaseBin","_renkan","_opts","find","hide","addClass","appendTo","title_icon_$","_this","attr","href","html","click","destroy","slideDown","resizeBins","refresh","count_$","title_$","main_$","auto_refresh","window","setInterval","detach","Renkan","push","defaults","templates","renkanJST","node_editor_templates","template","types_templates","value","key","property_files","f","getJSON","data","concat","read_only","router","Router","Models","Project","dataloader","DataLoader","Loader","setCurrentUser","user_id","user_name","addUser","current_user","renderer","redrawUsers","container","tabs","search_engines","current_user_list","UsersList","on","_tmpl","map","c","Renderer","Scene","search","_select","_input","_form","_search","Search","_key","getSearchTitle","className","getBgClass","_el","setSearchEngine","submit","val","search_engine","mouseenter","mouseleave","bins","_bin","Bin","elementDropped","_mainDiv","siblings","is","slideUp","_t","_models","where","_model","highlightModel","mouseout","unhighlightAll","dragDrop","err","e","preventDefault","touch","originalEvent","changedTouches","off","canvas_$","offset","w","width","h","height","pageX","left","pageY","top","onMouseMove","div","document","createElement","appendChild","cloneNode","dropData","text/html","innerHTML","onMouseDown","onMouseUp","dataTransfer","setData","lastsearch","lastval","regexpFromTextOrArray","source","tab","render","_text","i18n","language","substr","onStatusChange","listClasses","split","classes","i","_d","outerHeight","css","getUUID4","replace","r","Math","random","v","toString","getUID","pad","n","Date","ID_AUTO_INCREMENT","ID_BASE","getUTCFullYear","getUTCMonth","getUTCDate","_base","_n","_uidbase","test","img","Image","src","res","inherit","_baseClass","_callbefore","_class","apply","slice","_init","_initialized","extend","replaceText","makeReplaceFunc","l","k","charsrx","txt","toLowerCase","remrx","j","remsrc","charsub","getSource","inp","removeChars","String","fromCharCode","RegExp","_textOrArray","testrx","replacerx","isempty","_replace","text","_MIN_DRAG_DISTANCE","_NODE_BUTTON_WIDTH","_EDGE_BUTTON_INNER","_EDGE_BUTTON_OUTER","_CLICKMODE_ADDNODE","_CLICKMODE_STARTEDGE","_CLICKMODE_ENDEDGE","_NODE_SIZE_STEP","LN2","_MIN_SCALE","_MAX_SCALE","_MOUSEMOVE_RATE","_DOUBLETAP_DELAY","_DOUBLETAP_DISTANCE","_USER_PLACEHOLDER","default_user_color","_BOOKMARKLET_CODE","_maxlength","drawEditBox","_options","_coords","_path","_xmargin","_selector","tooltip_width","tooltip_padding","_height","_isLeft","x","paper","view","center","_left","tooltip_arrow_length","_right","_top","y","tooltip_margin","max","tooltip_arrow_width","min","_bottom","segments","point","add","closed","fillColor","GradientColor","Gradient","tooltip_top_color","tooltip_bottom_color","increaseBrightness","hex","percent","parseInt","g","b","Backbone","routes","index","parameters","result","forEach","part","item","decodeURIComponent","trigger","converters","from1to2","len","nodes","style","edges","schema_version","dataConverters","convert","schemaVersionFrom","getSchemaVersion","schemaVersionTo","converterName","load","set","validate","guid","RenkanModel","RelationalModel","idAttribute","constructor","id","prepare","addReference","_propName","_list","_default","_element","User","toJSON","Node","relations","HasOne","relatedModel","created_by","position","Edge","from","to","View","isArray","zoom_level","hidden_nodes","RosterUser","blacklist","HasMany","reverseRelation","includeInJSON","_props","_user","findOrCreate","addNode","_node","addEdge","_edge","addView","_view","removeNode","remove","removeEdge","_project","users","views","_item","t","version","initialize","filter","json","clone","attributes","Model","Collection","omit","site_id","model","navigator","userLanguage","popup_editor","editor_panel","manual_save","size_bug_fix","force_resize","allow_double_click","zoom_on_scroll","element_delete_delay","autoscale_padding","default_view","user_name_editable","show_minimap","minimap_width","minimap_height","minimap_padding","minimap_background_color","minimap_border_color","minimap_highlight_color","minimap_highlight_weight","buttons_background","buttons_label_color","buttons_label_font_size","ghost_opacity","default_dash_array","show_node_circles","clip_node_images","node_images_fill_mode","node_size_base","node_stroke_width","node_stroke_max_width","selected_node_stroke_width","selected_node_stroke_max_width","node_stroke_witdh_scale","node_fill_color","highlighted_node_fill_color","node_label_distance","node_label_max_length","label_untitled_nodes","default","video","edge_stroke_width","edge_stroke_max_width","selected_edge_stroke_width","selected_edge_stroke_max_width","edge_stroke_witdh_scale","edge_label_distance","edge_label_max_length","edge_arrow_length","edge_arrow_width","edge_arrow_max_width","edge_gap_in_bundles","label_untitled_edges","tooltip_border_color","tooltip_border_width","richtext_editor_config","toolbarGroups","name","groups","removePlugins","uploaded_image_max_kb","fr","Edit Node","Edit Edge","Title:","URI:","Description:","From:","To:","Image URL:","Choose Image File:","Full Screen","Add Node","Add Edge","Save Project","Open Project","Auto-save enabled","Connection lost","Created by:","Zoom In","Zoom Out","Edit","Remove","Cancel deletion","Link to another node","Enlarge","Shrink","Click on the background canvas to add a node","Click on a first node to start the edge","Click on a second node to complete the edge","Wikipedia","Wikipedia in ","French","English","Japanese","Untitled project","Lignes de Temps","Loading, please wait","Edge color:","Dash:","Thickness:","Arrow:","Node color:","Choose color","Change edge direction","Do you really wish to remove node ","Do you really wish to remove edge ","This file is not an image","Image size must be under ","Size:","KB","Choose from vocabulary:","SKOS Documentation properties","has note","has example","has definition","SKOS Semantic relations","has broader","has narrower","has related","Dublin Core Metadata","has contributor","covers","created by","has date","published by","has source","has subject","Dragged resource","Search the Web","Search in Bins","Close bin","Refresh bin","(untitled)","Select contents:","Drag items from this website, drop them in Renkan","Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.","Shapes available","Circle","Square","Diamond","Hexagone","Ellipse","Star","Cloud","Triangle","Zoom Fit","Download Project","Save view","View saved view","Renkan 'Drag-to-Add' bookmarklet","(unknown user)","","Search in graph","Search in ","jsonIO","_proj","http_method","_load","redrawActive","loadingStatus","_data","saveStatus","fixSize","_save","ajax","contentType","JSON","stringify","success","_thrSave","throttle","setTimeout","changedAttributes","hasChanged","jsonIOSaveOnClick","_saveWarn","_onLeave","getdata","rx","matches","location","hash","match","beforeSend","autoScale","_checkLeave","removeClass","save","hasClass","Ldt","ProjectBin","ldt_type","Resclass","console","error","tagTemplate","annotationTemplate","proj_id","project_id","ldt_platform","searchbase","highlight","_e","convertTC","_ms","_res","_totalSeconds","abs","floor","_hours","_minutes","_seconds","_html","_projtitle","meta","count","tags","_tag","_title","htitle","encodedtitle","encodeURIComponent","annotations","_annotation","_description","content","_duration","end","begin","_img","hdescription","start","duration","mediaid","media","annotationid","show","dataType","lang","_q","ResultsBin","segmentTemplate","max_results","highlightrx","objects","_segment","_begin","start_ts","_end","iri_id","element_id","format","q","limit","ResourceList","resultTemplate","list","trim","_match","langs","en","ja","query","_result","encodeURI","snippet","define","_BaseRepresentation","_renderer","_changeBinding","redraw","change","_removeBinding","removeRepresentation","defer","_selectBinding","select","_unselectBinding","unselect","_super","_func","moveTo","unhighlight","mousedown","mouseup","getUtils","getRenderer","requtils","BaseRepresentation","_BaseButton","_pos","sector","_newTarget","source_representation","cloud_path","builders","circle","getShape","Path","getImageShape","radius","rectangle","Rectangle","ellipse","polygon","RegularPolygon","diamond","d","SQRT2","rotate","star","cloud","path","scale","triangle","svg","ShapeBuilder","NodeRepr","node_layer","activate","buildShape","hidden","ghost","strokeWidth","h_ratio","labels_$","normal_buttons","NodeEditButton","NodeRemoveButton","NodeLinkButton","NodeEnlargeButton","NodeShrinkButton","NodeHideButton","NodeShowButton","pending_delete_buttons","NodeRevertButton","all_buttons","active_buttons","last_circle_radius","minimap","minimap_circle","__representation","miniframe","node_group","addChild","_getStrokeWidth","has","_getSelectedStrokeWidth","changed","shapeBuilder","sendToBack","_model_coords","Point","_baseRadius","exp","is_dragging","paper_coords","toPaperCoords","circle_radius","setSectorSize","node_image","subtract","image_delta","multiply","old_act_btn","opacity","dashArray","selected","isEditable","highlighted","_strokeWidth","_color","_dash","strokeColor","_pc","lastImage","showImage","minipos","toMinimapCoords","miniradius","minisize","Size","fitBounds","dontRedrawEdges","ed","repr","getRepresentationByModel","from_representation","to_representation","_image","image_cache","clipPath","hasClipPath","_clip","baseRadius","centerPoint","instructions","lastCoords","minX","Infinity","minY","maxX","maxY","transformCoords","tabc","relative","newCoords","parseFloat","isY","instr","coords","lineTo","cubicCurveTo","quadraticCurveTo","_raster","Raster","locked","Group","clipped","_circleClip","divide","insertAbove","paperShift","_delta","openEditor","removeRepresentationsOfType","_editor","addRepresentation","draw","_uri","showNeighbors","hideButtons","buttons_timeout","undefined","hideNeighbors","indexNode","hiddenNodes","indexOf","splice","textToReplace","hlvalue","throttledPaperDraw","saveCoords","toModelCoords","_event","_isTouch","unselectAll","click_target","edge_layer","bundle","addToBundles","line","arrow_scale","pivot","arrow_angle","EdgeEditButton","EdgeRemoveButton","EdgeRevertButton","minimap_line","_getArrowScale","_opacity","_arrow_scale","_p0a","_p1a","_v","_r","_u","_ortho","_group_pos","getPosition","_p0b","_p1b","_a","angle","_textdelta","_handle","visible","handleIn","handleOut","bounds","_textpos","transform","-moz-transform","-webkit-transform","text_angle","reject","TempEdge","_p0","_p1","end_pos","_c","_hitResult","hitTest","findTarget","_endDrag","_target","_destmodel","_BaseEditor","buttons_layer","editor_block","_pts","range","editor_$","BaseEditor","NodeEditor","readOnlyTemplate","_created_by","_template","_image_placeholder","_size","keys","editorInstance","ckeditor","closeEditor","cleanEditor","editor","focusManager","blur","onFieldChange","checkDirty","getData","resetDirty","assign","keyCode","files","FileReader","alert","onload","target","readAsDataURL","focus","_picker","hover","shiftSize","_newsize","shiftThickness","_oldThickness","_newThickness","titlehtml","EdgeEditor","_from_model","_to_model","BaseButton","_NodeButton","sectorInner","lastSectorInner","drawSector","startAngle","endAngle","imageName","clearTimeout","NodeButton","delid","delete_list","time","valueOf","confirm","addHiddenNode","unset","_off","_point","addTempEdge","MiniFrame","filesaver","representations","notif_$","setup","initialScale","totalScroll","mouse_down","selected_target","Layer","background_layer","topleft","bottomRight","cliprectangle","bundles","click_mode","_allowScroll","_originalScale","_zooming","_lastTapX","_lastTapY","icon_cache","imgname","throttledMouseMove","mousemove","mousewheel","onScroll","touchstart","_touches","touches","_lastTap","pow","onDoubleClick","touchmove","_newScale","_scaleRatio","_newOffset","setScale","touchend","dblclick","dragover","dragenter","dragleave","drop","parse","bindClick","selector","fname","evt","last","showNodes","hideNodes","fadeIn","delay","fadeOut","mouseover","onResize","_ratio","newWidth","newHeight","ratioH","delta","ratioW","resizeZoom","_thRedraw","addRepresentations","_thRedrawUsers","history","el","_params","_delay","$cpwrapper","$cplist","$this","rxs","_now","findWhere","delete_scheduled","rescaleMinimap","_repr","_inR","_outR","_startAngle","_endAngle","_padding","_imgname","_caption","_startRads","PI","_endRads","_startdx","sin","_startdy","cos","_startXIn","_startYIn","_startXOut","_startYOut","_enddx","_enddy","_endXIn","_endYIn","_endXOut","_endYOut","_centerR","_centerRads","_centerX","_centerY","_centerXIn","_centerXOut","_centerYIn","_centerYOut","_textX","_textY","arcTo","PointText","characterStyle","fontSize","paragraphStyle","justification","_visible","_restPos","_grp","_imgdelta","_currentPos","_edgeRepr","_bundle","_er","_dir","savebtn","tip","_offset","force_view","_xx","_yy","_minx","_miny","_maxx","_maxy","_scale","at","redrawMiniframe","bottomright","_type","RendererType","_collection","userTemplate","allUsers","models","ulistHtml","$userpanel","$name","$cpitems","$colorsquare","$input","empty","parent","background","_representation","_representations","_from","_tmpEdge","hideNode","last_point","_scrolldelta","SQRT1_2","open","defaultDropHandler","newNode","tweetdiv","_svgimgs","_svgpaths","_imgs","_as","fields","drop_enhancer","jsondata","drop_handler","_nodedata","fullScreen","_isFull","mozFullScreen","webkitIsFullScreen","_requestMethods","_cancelMethods","widthAft","heightAft","viewSize","zoomOut","zoomIn","_scaleWidth","_scaleHeight","addNodeBtn","addEdgeBtn","exportProject","projectJSON","projectId","fileNameToSaveAs","space_id","objId","idsMap","projectJSONStr","blob","Blob","idnode","foldBins","sizeAft","foldBinsButton","sizeBef","animate","require","config","paths","jquery","underscore","ckeditor-core","ckeditor-jquery","shim","deps","startRenkan"],"mappings":"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","sourcesContent":["this[\"renkanJST\"] = this[\"renkanJST\"] || {};\n\nthis[\"renkanJST\"][\"templates/colorpicker.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                    • ';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/edgeeditor.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(renkan.translate(\"Edit Edge\")) +\n'\\n

                      \\n

                      \\n \\n \\n

                      \\n';\n if (options.show_edge_editor_uri) { ;\n__p += '\\n

                      \\n \\n \\n \\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 } ;\n__p += '\\n';\n if (options.show_edge_editor_direction) { ;\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 ';\n if (options.show_edge_tooltip_color) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (edge.uri) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n__e(edge.title) +\n'\\n ';\n if (edge.uri) { ;\n__p += ' ';\n } ;\n__p += '\\n \\n

                      \\n';\n if (options.show_edge_tooltip_uri && edge.uri) { ;\n__p += '\\n

                      \\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\\n \\n

                      ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                      \\n

                      ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                      \\n

                      Start: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'

                      \\n
                      \\n
                    • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/segmenttemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                    • \\n\\n \\n

                      ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                      \\n

                      ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                      \\n

                      Start: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'

                      \\n
                      \\n
                    • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/tagtemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                    • \\n\\n \\n

                      ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                      \\n
                      \\n
                    • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/list-bin.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 } ;\n__p += '\\n

                      \\n ';\n if (url) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n((__t = (htitle)) == null ? '' : __t) +\n'\\n ';\n if (url) { ;\n__p += '';\n } ;\n__p += '\\n

                      \\n ';\n if (description) { ;\n__p += '\\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}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/main.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_bins) { ;\n__p += '\\n
                      \\n
                      \\n

                      ' +\n__e( translate(\"Select contents:\")) +\n'

                      \\n
                      \\n \\n
                      \\n
                      \\n
                        \\n
                        \\n \\n
                        \\n
                        \\n \\n \\n
                        \\n
                          \\n
                          \\n';\n } ;\n__p += ' ';\n if (options.show_editor) { ;\n__p += '\\n
                          \\n

                          \\n

                          \\n \\n \\n

                          \\n';\n if (options.show_node_editor_uri) { ;\n__p += '\\n

                          \\n \\n \\n \\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((__t = (node.description)) == null ? '' : __t) +\n'
                          \\n ';\n } else { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\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 if (options.show_node_editor_style_color) { ;\n__p += '\\n
                          \\n \\n ' +\n__e(renkan.translate(\"Node color:\")) +\n'\\n
                          \\n \\n \\n \\n ' +\n((__t = ( renkan.colorPicker )) == null ? '' : __t) +\n'\\n ' +\n__e( renkan.translate(\"Choose color\") ) +\n'\\n
                          \\n
                          \\n ';\n } ;\n__p += '\\n ';\n if (options.show_node_editor_style_dash) { ;\n__p += '\\n
                          \\n ' +\n__e(renkan.translate(\"Dash:\")) +\n'\\n \\n
                          \\n ';\n } ;\n__p += '\\n ';\n if (options.show_node_editor_style_thickness) { ;\n__p += '\\n
                          \\n ' +\n__e(renkan.translate(\"Thickness:\")) +\n'\\n -\\n ' +\n__e(node.thickness) +\n'\\n +\\n
                          \\n ';\n } ;\n__p += '\\n
                          \\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_image) { ;\n__p += '\\n
                          \\n
                          \\n \\n ';\n if (node.clip_path) { ;\n__p += '\\n \\n \\n \\n ';\n };\n__p += '\\n
                          \\n
                          \\n

                          \\n \\n

                          \\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 ';\n if (options.show_node_tooltip_color) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (node.uri) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n__e(node.title) +\n'\\n ';\n if (node.uri) { ;\n__p += '';\n } ;\n__p += '\\n \\n

                          \\n';\n if (node.uri && options.show_node_tooltip_uri) { ;\n__p += '\\n

                          \\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 } ;\n__p += ' ';\n if (node.has_creator && options.show_node_tooltip_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 ' +\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 ×\\n ';\n if (options.show_node_tooltip_color) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (node.uri) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n__e(node.title) +\n'\\n ';\n if (node.uri) { ;\n__p += '';\n } ;\n__p += '\\n \\n

                          \\n';\n if (node.uri && options.show_node_tooltip_uri) { ;\n__p += '\\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/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
                          \\n ';\n if (!options.editor_mode) { ;\n__p += '\\n

                          \\n ' +\n__e( project.get(\"title\") || translate(\"Untitled project\")) +\n'\\n

                          \\n ';\n } else { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ';\n if (options.show_user_list) { ;\n__p += '\\n
                          \\n
                          \\n ';\n if (options.show_user_color) { ;\n__p += '\\n
                          \\n \\n ';\n if (options.user_color_editable) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (options.user_color_editable) { print(colorPicker) } ;\n__p += '\\n
                          \\n ';\n } ;\n__p += '\\n <unknown user>\\n
                          \\n
                            \\n
                            \\n ';\n } ;\n__p += '\\n ';\n if (options.home_button_url) {;\n__p += '\\n
                            \\n \\n
                            \\n
                            \\n ' +\n__e( translate(options.home_button_title) ) +\n'\\n
                            \\n
                            \\n
                            \\n ';\n } ;\n__p += '\\n ';\n if (options.show_fullscreen_button) { ;\n__p += '\\n
                            \\n
                            \\n
                            \\n
                            \\n ' +\n__e(translate(\"Full Screen\")) +\n'\\n
                            \\n
                            \\n
                            \\n ';\n } ;\n__p += '\\n ';\n if (options.editor_mode) { ;\n__p += '\\n ';\n if (options.show_addnode_button) { ;\n__p += '\\n
                            \\n
                            \\n
                            \\n
                            \\n ' +\n__e(translate(\"Add Node\")) +\n'\\n
                            \\n
                            \\n
                            \\n ';\n } ;\n__p += '\\n ';\n if (options.show_addedge_button) { ;\n__p += '\\n
                            \\n
                            \\n
                            \\n
                            \\n ' +\n__e(translate(\"Add Edge\")) +\n'\\n
                            \\n
                            \\n
                            \\n ';\n } ;\n__p += '\\n ';\n if (options.show_export_button) { ;\n__p += '\\n
                            \\n
                            \\n
                            \\n
                            \\n ' +\n__e(translate(\"Download Project\")) +\n'\\n
                            \\n
                            \\n
                            \\n ';\n } ;\n__p += '\\n ';\n if (options.show_save_button) { ;\n__p += '\\n
                            \\n
                            \\n
                            \\n
                            \\n
                            \\n
                            \\n ';\n } ;\n__p += '\\n ';\n if (options.show_open_button) { ;\n__p += '\\n
                            \\n
                            \\n
                            \\n
                            \\n ' +\n__e(translate(\"Open Project\")) +\n'\\n
                            \\n
                            \\n
                            \\n ';\n } ;\n__p += '\\n ';\n if (options.show_bookmarklet) { ;\n__p += '\\n
                            \\n \\n
                            \\n
                            \\n ' +\n__e(translate(\"Renkan \\'Drag-to-Add\\' bookmarklet\")) +\n'\\n
                            \\n
                            \\n
                            \\n
                            \\n ';\n } ;\n__p += '\\n ';\n } else { ;\n__p += '\\n ';\n if (options.show_export_button) { ;\n__p += '\\n
                            \\n
                            \\n
                            \\n
                            \\n ' +\n__e(translate(\"Download Project\")) +\n'\\n
                            \\n
                            \\n
                            \\n
                            \\n ';\n } ;\n__p += '\\n ';\n }; ;\n__p += '\\n ';\n if (options.show_search_field) { ;\n__p += '\\n
                            \\n \\n
                            \\n
                            \\n ';\n } ;\n__p += '\\n
                            \\n';\n } ;\n__p += '\\n
                            \\n
                            \\n
                            \\n ';\n if (options.editor_mode && options.save_view) { ;\n__p += '\\n
                            \\n ';\n } ;\n__p += '\\n ';\n if (options.save_view) { ;\n__p += '\\n
                            \\n ';\n if (options.hide_nodes) { ;\n__p += '\\n \\t \\n ';\n } ;\n__p += ' \\n ';\n } ;\n__p += '\\n
                            \\n ';\n } ;\n__p += '\\n \\n\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/search.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                          • ' +\n((__t = ( title )) == null ? '' : __t) +\n'
                          • ';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/wikipedia-bin/resulttemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                          • \\n\\n \\n

                            \\n ' +\n((__t = (htitle)) == null ? '' : __t) +\n'\\n

                            \\n

                            ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                            \\n
                          • \\n';\n\n}\nreturn __p\n};","/* Declaring the Renkan Namespace Rkns and Default values */\n\n(function(root) {\n\n \"use strict\";\n\n if (typeof root.Rkns !== \"object\") {\n root.Rkns = {};\n }\n\n var Rkns = root.Rkns;\n var $ = Rkns.$ = root.jQuery;\n var _ = Rkns._ = root._;\n\n Rkns.pickerColors = [\"#8f1919\", \"#a80000\", \"#d82626\", \"#ff0000\", \"#e87c7c\", \"#ff6565\", \"#f7d3d3\", \"#fecccc\",\n \"#8f5419\", \"#a85400\", \"#d87f26\", \"#ff7f00\", \"#e8b27c\", \"#ffb265\", \"#f7e5d3\", \"#fee5cc\",\n \"#8f8f19\", \"#a8a800\", \"#d8d826\", \"#feff00\", \"#e8e87c\", \"#feff65\", \"#f7f7d3\", \"#fefecc\",\n \"#198f19\", \"#00a800\", \"#26d826\", \"#00ff00\", \"#7ce87c\", \"#65ff65\", \"#d3f7d3\", \"#ccfecc\",\n \"#198f8f\", \"#00a8a8\", \"#26d8d8\", \"#00feff\", \"#7ce8e8\", \"#65feff\", \"#d3f7f7\", \"#ccfefe\",\n \"#19198f\", \"#0000a8\", \"#2626d8\", \"#0000ff\", \"#7c7ce8\", \"#6565ff\", \"#d3d3f7\", \"#ccccfe\",\n \"#8f198f\", \"#a800a8\", \"#d826d8\", \"#ff00fe\", \"#e87ce8\", \"#ff65fe\", \"#f7d3f7\", \"#feccfe\",\n \"#000000\", \"#242424\", \"#484848\", \"#6d6d6d\", \"#919191\", \"#b6b6b6\", \"#dadada\", \"#ffffff\"\n ];\n\n Rkns.__renkans = [];\n\n var _BaseBin = Rkns._BaseBin = function(_renkan, _opts) {\n if (typeof _renkan !== \"undefined\") {\n this.renkan = _renkan;\n this.renkan.$.find(\".Rk-Bin-Main\").hide();\n this.$ = Rkns.$('
                          • ')\n .addClass(\"Rk-Bin\")\n .appendTo(_renkan.$.find(\".Rk-Bin-List\"));\n this.title_icon_$ = Rkns.$('')\n .addClass(\"Rk-Bin-Title-Icon\")\n .appendTo(this.$);\n\n var _this = this;\n\n Rkns.$('')\n .attr({\n href: \"#\",\n title: _renkan.translate(\"Close bin\")\n })\n .addClass(\"Rk-Bin-Close\")\n .html('×')\n .appendTo(this.$)\n .click(function() {\n _this.destroy();\n if (!_renkan.$.find(\".Rk-Bin-Main:visible\").length) {\n _renkan.$.find(\".Rk-Bin-Main:last\").slideDown();\n }\n _renkan.resizeBins();\n return false;\n });\n Rkns.$('')\n .attr({\n href: \"#\",\n title: _renkan.translate(\"Refresh bin\")\n })\n .addClass(\"Rk-Bin-Refresh\")\n .appendTo(this.$)\n .click(function() {\n _this.refresh();\n return false;\n });\n this.count_$ = Rkns.$('
                            ')\n .addClass(\"Rk-Bin-Count\")\n .appendTo(this.$);\n this.title_$ = Rkns.$('

                            ')\n .addClass(\"Rk-Bin-Title\")\n .appendTo(this.$);\n this.main_$ = Rkns.$('
                            ')\n .addClass(\"Rk-Bin-Main\")\n .appendTo(this.$)\n .html('

                            ' + _renkan.translate(\"Loading, please wait\") + '

                            ');\n this.title_$.html(_opts.title || '(new bin)');\n this.renkan.resizeBins();\n\n if (_opts.auto_refresh) {\n window.setInterval(function() {\n _this.refresh();\n }, _opts.auto_refresh);\n }\n }\n };\n\n _BaseBin.prototype.destroy = function() {\n this.$.detach();\n this.renkan.resizeBins();\n };\n\n /* Point of entry */\n\n var Renkan = Rkns.Renkan = function(_opts) {\n var _this = this;\n\n Rkns.__renkans.push(this);\n\n this.options = _.defaults(_opts, Rkns.defaults, {\n templates: _.defaults(_opts.templates, renkanJST) || renkanJST,\n node_editor_templates: _.defaults(_opts.node_editor_templates, Rkns.defaults.node_editor_templates)\n });\n this.template = renkanJST['templates/main.html'];\n\n var types_templates = {};\n _.each(this.options.node_editor_templates, function(value, key) {\n types_templates[key] = _this.options.templates[value];\n delete _this.options.templates[value];\n });\n this.options.node_editor_templates = types_templates;\n\n _.each(this.options.property_files, function(f) {\n Rkns.$.getJSON(f, function(data) {\n _this.options.properties = _this.options.properties.concat(data);\n });\n });\n\n this.read_only = this.options.read_only || !this.options.editor_mode;\n \n this.router = new Rkns.Router();\n \n this.project = new Rkns.Models.Project();\n this.dataloader = new Rkns.DataLoader.Loader(this.project, this.options);\n\n this.setCurrentUser = function(user_id, user_name) {\n this.project.addUser({\n _id: user_id,\n title: user_name\n });\n this.current_user = user_id;\n this.renderer.redrawUsers();\n };\n\n if (typeof this.options.user_id !== \"undefined\") {\n this.current_user = this.options.user_id;\n }\n this.$ = Rkns.$(\"#\" + this.options.container);\n this.$\n .addClass(\"Rk-Main\")\n .html(this.template(this));\n\n this.tabs = [];\n this.search_engines = [];\n\n this.current_user_list = new Rkns.Models.UsersList();\n\n this.current_user_list.on(\"add remove\", function() {\n if (this.renderer) {\n this.renderer.redrawUsers();\n }\n });\n\n this.colorPicker = (function() {\n var _tmpl = renkanJST['templates/colorpicker.html'];\n return '
                              ' + Rkns.pickerColors.map(function(c) {\n return _tmpl({\n c: c\n });\n }).join(\"\") + '
                            ';\n })();\n\n if (this.options.show_editor) {\n this.renderer = new Rkns.Renderer.Scene(this);\n }\n\n if (!this.options.search.length) {\n this.$.find(\".Rk-Web-Search-Form\").detach();\n } else {\n var _tmpl = renkanJST['templates/search.html'],\n _select = this.$.find(\".Rk-Search-List\"),\n _input = this.$.find(\".Rk-Web-Search-Input\"),\n _form = this.$.find(\".Rk-Web-Search-Form\");\n _.each(this.options.search, function(_search, _key) {\n if (Rkns[_search.type] && Rkns[_search.type].Search) {\n _this.search_engines.push(new Rkns[_search.type].Search(_this, _search));\n }\n });\n _select.html(\n _(this.search_engines).map(function(_search, _key) {\n return _tmpl({\n key: _key,\n title: _search.getSearchTitle(),\n className: _search.getBgClass()\n });\n }).join(\"\")\n );\n _select.find(\"li\").click(function() {\n var _el = Rkns.$(this);\n _this.setSearchEngine(_el.attr(\"data-key\"));\n _form.submit();\n });\n _form.submit(function() {\n if (_input.val()) {\n var _search = _this.search_engine;\n _search.search(_input.val());\n }\n return false;\n });\n this.$.find(\".Rk-Search-Current\").mouseenter(\n function() {\n _select.slideDown();\n }\n );\n this.$.find(\".Rk-Search-Select\").mouseleave(\n function() {\n _select.hide();\n }\n );\n this.setSearchEngine(0);\n }\n _.each(this.options.bins, function(_bin) {\n if (Rkns[_bin.type] && Rkns[_bin.type].Bin) {\n _this.tabs.push(new Rkns[_bin.type].Bin(_this, _bin));\n }\n });\n\n var elementDropped = false;\n\n this.$.find(\".Rk-Bins\")\n .on(\"click\", \".Rk-Bin-Title,.Rk-Bin-Title-Icon\", function() {\n var _mainDiv = Rkns.$(this).siblings(\".Rk-Bin-Main\");\n if (_mainDiv.is(\":hidden\")) {\n _this.$.find(\".Rk-Bin-Main\").slideUp();\n _mainDiv.slideDown();\n }\n });\n\n if (this.options.show_editor) {\n\n this.$.find(\".Rk-Bins\").on(\"mouseover\", \".Rk-Bin-Item\", function(_e) {\n var _t = Rkns.$(this);\n if (_t && $(_t).attr(\"data-uri\")) {\n var _models = _this.project.get(\"nodes\").where({\n uri: $(_t).attr(\"data-uri\")\n });\n _.each(_models, function(_model) {\n _this.renderer.highlightModel(_model);\n });\n }\n }).mouseout(function() {\n _this.renderer.unhighlightAll();\n }).on(\"mousemove\", \".Rk-Bin-Item\", function(e) {\n try {\n this.dragDrop();\n } catch (err) {}\n }).on(\"touchstart\", \".Rk-Bin-Item\", function(e) {\n elementDropped = false;\n }).on(\"touchmove\", \".Rk-Bin-Item\", function(e) {\n e.preventDefault();\n var touch = e.originalEvent.changedTouches[0],\n off = _this.renderer.canvas_$.offset(),\n w = _this.renderer.canvas_$.width(),\n h = _this.renderer.canvas_$.height();\n if (touch.pageX >= off.left && touch.pageX < (off.left + w) && touch.pageY >= off.top && touch.pageY < (off.top + h)) {\n if (elementDropped) {\n _this.renderer.onMouseMove(touch, true);\n } else {\n elementDropped = true;\n var div = document.createElement('div');\n div.appendChild(this.cloneNode(true));\n _this.renderer.dropData({\n \"text/html\": div.innerHTML\n }, touch);\n _this.renderer.onMouseDown(touch, true);\n }\n }\n }).on(\"touchend\", \".Rk-Bin-Item\", function(e) {\n if (elementDropped) {\n _this.renderer.onMouseUp(e.originalEvent.changedTouches[0], true);\n }\n elementDropped = false;\n }).on(\"dragstart\", \".Rk-Bin-Item\", function(e) {\n var div = document.createElement('div');\n div.appendChild(this.cloneNode(true));\n try {\n e.originalEvent.dataTransfer.setData(\"text/html\", div.innerHTML);\n } catch (err) {\n e.originalEvent.dataTransfer.setData(\"text\", div.innerHTML);\n }\n });\n\n }\n\n Rkns.$(window).resize(function() {\n _this.resizeBins();\n });\n\n var lastsearch = false,\n lastval = '';\n\n this.$.find(\".Rk-Bins-Search-Input\").on(\"change keyup paste input\", function() {\n var val = Rkns.$(this).val();\n if (val === lastval) {\n return;\n }\n var search = Rkns.Utils.regexpFromTextOrArray(val.length > 1 ? val : null);\n if (search.source === lastsearch) {\n return;\n }\n lastsearch = search.source;\n _.each(_this.tabs, function(tab) {\n tab.render(search);\n });\n\n });\n this.$.find(\".Rk-Bins-Search-Form\").submit(function() {\n return false;\n });\n };\n\n Renkan.prototype.translate = function(_text) {\n if (Rkns.i18n[this.options.language] && Rkns.i18n[this.options.language][_text]) {\n return Rkns.i18n[this.options.language][_text];\n }\n if (this.options.language.length > 2 && Rkns.i18n[this.options.language.substr(0, 2)] && Rkns.i18n[this.options.language.substr(0, 2)][_text]) {\n return Rkns.i18n[this.options.language.substr(0, 2)][_text];\n }\n return _text;\n };\n\n Renkan.prototype.onStatusChange = function() {\n this.renderer.onStatusChange();\n };\n\n Renkan.prototype.setSearchEngine = function(_key) {\n this.search_engine = this.search_engines[_key];\n this.$.find(\".Rk-Search-Current\").attr(\"class\", \"Rk-Search-Current \" + this.search_engine.getBgClass());\n var listClasses = this.search_engine.getBgClass().split(\" \");\n var classes = \"\";\n for (var i = 0; i < listClasses.length; i++) {\n classes += \".\" + listClasses[i];\n }\n this.$.find(\".Rk-Web-Search-Input.Rk-Search-Input\").attr(\"placeholder\", this.translate(\"Search in \") + this.$.find(\".Rk-Search-List \" + classes).html());\n };\n\n Renkan.prototype.resizeBins = function() {\n var _d = +this.$.find(\".Rk-Bins-Head\").outerHeight();\n this.$.find(\".Rk-Bin-Title:visible\").each(function() {\n _d += Rkns.$(this).outerHeight();\n });\n this.$.find(\".Rk-Bin-Main\").css({\n height: this.$.find(\".Rk-Bins\").height() - _d\n });\n };\n\n /* Utility functions */\n var getUUID4 = function() {\n return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {\n var r = Math.random() * 16 | 0,\n v = c === 'x' ? r : (r & 0x3 | 0x8);\n return v.toString(16);\n });\n };\n\n Rkns.Utils = {\n getUUID4: getUUID4,\n getUID: (function() {\n function pad(n) {\n return n < 10 ? '0' + n : n;\n }\n var _d = new Date(),\n ID_AUTO_INCREMENT = 0,\n ID_BASE = _d.getUTCFullYear() + '-' +\n pad(_d.getUTCMonth() + 1) + '-' +\n pad(_d.getUTCDate()) + '-' +\n getUUID4();\n return function(_base) {\n var _n = (++ID_AUTO_INCREMENT).toString(16),\n _uidbase = (typeof _base === \"undefined\" ? \"\" : _base + \"-\");\n while (_n.length < 4) {\n _n = '0' + _n;\n }\n return _uidbase + ID_BASE + '-' + _n;\n };\n })(),\n getFullURL: function(url) {\n\n if (typeof(url) === 'undefined' || url == null) {\n return \"\";\n }\n if (/https?:\\/\\//.test(url)) {\n return url;\n }\n var img = new Image();\n img.src = url;\n var res = img.src;\n img.src = null;\n return res;\n\n },\n inherit: function(_baseClass, _callbefore) {\n\n var _class = function(_arg) {\n if (typeof _callbefore === \"function\") {\n _callbefore.apply(this, Array.prototype.slice.call(arguments, 0));\n }\n _baseClass.apply(this, Array.prototype.slice.call(arguments, 0));\n if (typeof this._init === \"function\" && !this._initialized) {\n this._init.apply(this, Array.prototype.slice.call(arguments, 0));\n this._initialized = true;\n }\n };\n _.extend(_class.prototype, _baseClass.prototype);\n\n return _class;\n\n },\n regexpFromTextOrArray: (function() {\n var charsub = [\n '[aáàâä]',\n '[cç]',\n '[eéèêë]',\n '[iíìîï]',\n '[oóòôö]',\n '[uùûü]'\n ],\n removeChars = [\n String.fromCharCode(768), String.fromCharCode(769), String.fromCharCode(770), String.fromCharCode(771), String.fromCharCode(807),\n \"{\", \"}\", \"(\", \")\", \"[\", \"]\", \"【\", \"】\", \"、\", \"・\", \"‥\", \"。\", \"「\", \"」\", \"『\", \"』\", \"〜\", \":\", \"!\", \"?\", \" \",\n \",\", \" \", \";\", \"(\", \")\", \".\", \"*\", \"+\", \"\\\\\", \"?\", \"|\", \"{\", \"}\", \"[\", \"]\", \"^\", \"#\", \"/\"\n ],\n remsrc = \"[\\\\\" + removeChars.join(\"\\\\\") + \"]\",\n remrx = new RegExp(remsrc, \"gm\"),\n charsrx = _.map(charsub, function(c) {\n return new RegExp(c);\n });\n\n function replaceText(_text) {\n var txt = _text.toLowerCase().replace(remrx, \"\"),\n src = \"\";\n\n function makeReplaceFunc(l) {\n return function(k, v) {\n l = l.replace(charsrx[k], v);\n };\n }\n for (var j = 0; j < txt.length; j++) {\n if (j) {\n src += remsrc + \"*\";\n }\n var l = txt[j];\n _.each(charsub, makeReplaceFunc(l));\n src += l;\n }\n return src;\n }\n\n function getSource(inp) {\n switch (typeof inp) {\n case \"string\":\n return replaceText(inp);\n case \"object\":\n var src = '';\n _.each(inp, function(v) {\n var res = getSource(v);\n if (res) {\n if (src) {\n src += '|';\n }\n src += res;\n }\n });\n return src;\n }\n return '';\n }\n\n return function(_textOrArray) {\n var source = getSource(_textOrArray);\n if (source) {\n var testrx = new RegExp(source, \"im\"),\n replacerx = new RegExp('(' + source + ')', \"igm\");\n return {\n isempty: false,\n source: source,\n test: function(_t) {\n return testrx.test(_t);\n },\n replace: function(_text, _replace) {\n return _text.replace(replacerx, _replace);\n }\n };\n } else {\n return {\n isempty: true,\n source: '',\n test: function() {\n return true;\n },\n replace: function(_text) {\n return text;\n }\n };\n }\n };\n })(),\n /* The minimum distance (in pixels) the mouse has to move to consider an element was dragged */\n _MIN_DRAG_DISTANCE: 2,\n /* Distance between the inner and outer radius of buttons that appear when hovering on a node */\n _NODE_BUTTON_WIDTH: 40,\n\n _EDGE_BUTTON_INNER: 2,\n _EDGE_BUTTON_OUTER: 40,\n /* Constants used to know if a specific action is to be performed when clicking on the canvas */\n _CLICKMODE_ADDNODE: 1,\n _CLICKMODE_STARTEDGE: 2,\n _CLICKMODE_ENDEDGE: 3,\n /* Node size step: Used to calculate the size change when clicking the +/- buttons */\n _NODE_SIZE_STEP: Math.LN2 / 4,\n _MIN_SCALE: 1 / 20,\n _MAX_SCALE: 20,\n _MOUSEMOVE_RATE: 80,\n _DOUBLETAP_DELAY: 800,\n /* Maximum distance in pixels (squared, to reduce calculations)\n * between two taps when double-tapping on a touch terminal */\n _DOUBLETAP_DISTANCE: 20 * 20,\n /* A placeholder so a default colour is displayed when a node has a null value for its user property */\n _USER_PLACEHOLDER: function(_renkan) {\n return {\n color: _renkan.options.default_user_color,\n title: _renkan.translate(\"(unknown user)\"),\n get: function(attr) {\n return this[attr] || false;\n }\n };\n },\n /* The code for the \"Drag and Add Bookmarklet\", slightly minified and with whitespaces removed, though\n * it doesn't seem that it's still a requirement in newer browsers (i.e. the ones compatibles with canvas drawing)\n */\n _BOOKMARKLET_CODE: function(_renkan) {\n return \"(function(a,b,c,d,e,f,h,i,j,k,l,m,n,o,p,q,r){a=document;b=a.body;c=a.location.href;j='draggable';m='text/x-iri-';d=a.createElement('div');d.innerHTML='\" +\n _renkan.translate(\"Drag items from this website, drop them in Renkan\").replace(/ /g, \"_\") +\n \"

                            '.replace(/_/g,String.fromCharCode(32));b.appendChild(d);e=[{r:/https?:\\\\/\\\\/[^\\\\/]*twitter\\\\.com\\\\//,s:'.tweet',n:'twitter'},{r:/https?:\\\\/\\\\/[^\\\\/]*google\\\\.[^\\\\/]+\\\\//,s:'.g',n:'google'},{r:/https?:\\\\/\\\\/[^\\\\/]*lemonde\\\\.fr\\\\//,s:'[data-vr-contentbox]',n:'lemonde'}];f=false;e.forEach(function(g){if(g.r.test(c)){f=g;}});if(f){h=function(){Array.prototype.forEach.call(a.querySelectorAll(f.s),function(i){i[j]=true;k=i.style;k.borderWidth='2px';k.borderColor='#909';k.borderStyle='solid';k.backgroundColor='rgba(200,0,180,.1)';})};window.setInterval(h,500);h();};a.addEventListener('dragstart',function(k){l=k.dataTransfer;l.setData(m+'source-uri',c);l.setData(m+'source-title',a.title);n=k.target;if(f){o=n;while(!o.attributes[j]){o=o.parentNode;if(o==b){break;}}}if(f&&o.attributes[j]){p=o.cloneNode(true);l.setData(m+'specific-site',f.n)}else{q=a.getSelection();if(q.type==='Range'||!q.type){p=q.getRangeAt(0).cloneContents();}else{p=n.cloneNode();}}r=a.createElement('div');r.appendChild(p);l.setData('text/x-iri-selected-text',r.textContent.trim());l.setData('text/x-iri-selected-html',r.innerHTML);},false);})();\";\n },\n /* Shortens text to the required length then adds ellipsis */\n shortenText: function(_text, _maxlength) {\n return (_text.length > _maxlength ? (_text.substr(0, _maxlength) + '…') : _text);\n },\n /* Drawing an edit box with an arrow and positioning the edit box according to the position of the node/edge being edited\n * Called by Rkns.Renderer.NodeEditor and Rkns.Renderer.EdgeEditor */\n drawEditBox: function(_options, _coords, _path, _xmargin, _selector) {\n _selector.css({\n width: (_options.tooltip_width - 2 * _options.tooltip_padding)\n });\n var _height = _selector.outerHeight() + 2 * _options.tooltip_padding,\n _isLeft = (_coords.x < paper.view.center.x ? 1 : -1),\n _left = _coords.x + _isLeft * (_xmargin + _options.tooltip_arrow_length),\n _right = _coords.x + _isLeft * (_xmargin + _options.tooltip_arrow_length + _options.tooltip_width),\n _top = _coords.y - _height / 2;\n if (_top + _height > (paper.view.size.height - _options.tooltip_margin)) {\n _top = Math.max(paper.view.size.height - _options.tooltip_margin, _coords.y + _options.tooltip_arrow_width / 2) - _height;\n }\n if (_top < _options.tooltip_margin) {\n _top = Math.min(_options.tooltip_margin, _coords.y - _options.tooltip_arrow_width / 2);\n }\n var _bottom = _top + _height;\n /* jshint laxbreak:true */\n _path.segments[0].point = _path.segments[7].point = _coords.add([_isLeft * _xmargin, 0]);\n _path.segments[1].point.x = _path.segments[2].point.x = _path.segments[5].point.x = _path.segments[6].point.x = _left;\n _path.segments[3].point.x = _path.segments[4].point.x = _right;\n _path.segments[2].point.y = _path.segments[3].point.y = _top;\n _path.segments[4].point.y = _path.segments[5].point.y = _bottom;\n _path.segments[1].point.y = _coords.y - _options.tooltip_arrow_width / 2;\n _path.segments[6].point.y = _coords.y + _options.tooltip_arrow_width / 2;\n _path.closed = true;\n _path.fillColor = new paper.GradientColor(new paper.Gradient([_options.tooltip_top_color, _options.tooltip_bottom_color]), [0, _top], [0, _bottom]);\n _selector.css({\n left: (_options.tooltip_padding + Math.min(_left, _right)),\n top: (_options.tooltip_padding + _top)\n });\n return _path;\n },\n // from http://stackoverflow.com/a/6444043\n increaseBrightness: function (hex, percent){\n // strip the leading # if it's there\n hex = hex.replace(/^\\s*#|\\s*$/g, '');\n\n // convert 3 char codes --> 6, e.g. `E0F` --> `EE00FF`\n if(hex.length === 3){\n hex = hex.replace(/(.)/g, '$1$1');\n }\n\n var r = parseInt(hex.substr(0, 2), 16),\n g = parseInt(hex.substr(2, 2), 16),\n b = parseInt(hex.substr(4, 2), 16);\n\n return '#' +\n ((0|(1<<8) + r + (256 - r) * percent / 100).toString(16)).substr(1) +\n ((0|(1<<8) + g + (256 - g) * percent / 100).toString(16)).substr(1) +\n ((0|(1<<8) + b + (256 - b) * percent / 100).toString(16)).substr(1);\n }\n };\n})(window);\n\n/* END main.js */\n","(function(root) {\n \"use strict\";\n \n var Backbone = root.Backbone;\n \n var Router = root.Rkns.Router = Backbone.Router.extend({\n routes: {\n '': 'index'\n },\n \n index: function (parameters) {\n \n var result = {};\n if (parameters === null){\n return;\n }\n parameters.split(\"&\").forEach(function(part) {\n var item = part.split(\"=\");\n result[item[0]] = decodeURIComponent(item[1]);\n });\n this.trigger('router', result); \n } \n });\n\n})(window);","(function(root) {\n\n \"use strict\";\n\n var DataLoader = root.Rkns.DataLoader = {\n converters: {\n from1to2: function(data) {\n\n var i, len;\n if(typeof data.nodes !== 'undefined') {\n for(i=0, len=data.nodes.length; i 1 ? options.offset[1]\n : options.offset[0];\n }\n else if (options.offset.x != null) {\n offset.x = options.offset.x;\n offset.y = options.offset.y;\n }\n options.offset = offset;\n }\n return options;\n },\n toJSON : function() {\n return {\n _id : this.get(\"_id\"),\n zoom_level : this.get(\"zoom_level\"),\n offset : this.get(\"offset\"),\n title : this.get(\"title\"),\n description : this.get(\"description\"),\n created_by : this.get(\"created_by\") ? this.get(\"created_by\")\n .get(\"_id\") : null,\n hidden_nodes: this.get(\"hidden_nodes\")\n // Don't need project id\n };\n }\n });\n\n // PROJECT\n var Project = Models.Project = RenkanModel.extend({\n schema_version : \"2\",\n type : \"project\",\n blacklist : [ 'saveStatus', 'loadingStatus'],\n relations : [ {\n type : Backbone.HasMany,\n key : \"users\",\n relatedModel : User,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"nodes\",\n relatedModel : Node,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"edges\",\n relatedModel : Edge,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"views\",\n relatedModel : View,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n } ],\n addUser : function(_props, _options) {\n _props.project = this;\n var _user = User.findOrCreate(_props);\n this.get(\"users\").push(_user, _options);\n return _user;\n },\n addNode : function(_props, _options) {\n _props.project = this;\n var _node = Node.findOrCreate(_props);\n this.get(\"nodes\").push(_node, _options);\n return _node;\n },\n addEdge : function(_props, _options) {\n _props.project = this;\n var _edge = Edge.findOrCreate(_props);\n this.get(\"edges\").push(_edge, _options);\n return _edge;\n },\n addView : function(_props, _options) {\n _props.project = this;\n // TODO: check if need to replace with create only\n var _view = View.findOrCreate(_props);\n // TODO: Should we remember only one view?\n this.get(\"views\").push(_view, _options);\n return _view;\n },\n removeNode : function(_model) {\n this.get(\"nodes\").remove(_model);\n },\n removeEdge : function(_model) {\n this.get(\"edges\").remove(_model);\n },\n validate : function(options) {\n var _project = this;\n _.each(\n [].concat(options.users, options.nodes, options.edges,options.views),\n function(_item) {\n if (_item) {\n _item.project = _project;\n }\n }\n );\n },\n getSchemaVersion : function(data) {\n var t = data;\n if(typeof(t) === \"undefined\") {\n t = this;\n }\n var version = t.schema_version;\n if(!version) {\n return 1;\n }\n else {\n return version;\n }\n },\n // Add event handler to remove edges when a node is removed\n initialize : function() {\n var _this = this;\n this.on(\"remove:nodes\", function(_node) {\n _this.get(\"edges\").remove(\n _this.get(\"edges\").filter(\n function(_edge) {\n return _edge.get(\"from\") === _node ||\n _edge.get(\"to\") === _node;\n }));\n });\n },\n toJSON : function() {\n var json = _.clone(this.attributes);\n for ( var attr in json) {\n if ((json[attr] instanceof Backbone.Model) ||\n (json[attr] instanceof Backbone.Collection) ||\n (json[attr] instanceof RenkanModel)) {\n json[attr] = json[attr].toJSON();\n }\n }\n return _.omit(json, this.blacklist);\n }\n });\n\n var RosterUser = Models.RosterUser = Backbone.Model\n .extend({\n type : \"roster_user\",\n idAttribute : \"_id\",\n\n constructor : function(options) {\n\n if (typeof options !== \"undefined\") {\n options._id = options._id ||\n options.id ||\n Models.getUID(this);\n options.title = options.title || \"(untitled \" + this.type + \")\";\n options.description = options.description || \"\";\n options.uri = options.uri || \"\";\n options.project = options.project || null;\n options.site_id = options.site_id || 0;\n\n if (typeof this.prepare === \"function\") {\n options = this.prepare(options);\n }\n }\n Backbone.Model.prototype.constructor.call(this, options);\n },\n\n validate : function() {\n if (!this.type) {\n return \"object has no type\";\n }\n },\n\n prepare : function(options) {\n options.color = options.color || \"#666666\";\n return options;\n },\n\n toJSON : function() {\n return {\n _id : this.get(\"_id\"),\n title : this.get(\"title\"),\n uri : this.get(\"uri\"),\n description : this.get(\"description\"),\n color : this.get(\"color\"),\n project : (this.get(\"project\") != null) ? this.get(\n \"project\").get(\"id\") : null,\n site_id : this.get(\"site_id\")\n };\n }\n });\n\n var UsersList = Models.UsersList = Backbone.Collection.extend({\n model : RosterUser\n });\n\n})(window);\n","Rkns.defaults = {\n\n language: (navigator.language || navigator.userLanguage || \"en\"),\n /* GUI Language */\n container: \"renkan\",\n /* GUI Container DOM element ID */\n search: [],\n /* List of Search Engines */\n bins: [],\n /* List of Bins */\n static_url: \"\",\n /* URL for static resources */\n popup_editor: true,\n /* show the node editor as a popup inside the renkan view */\n editor_panel: 'editor-panel',\n /* GUI continer DOM element ID of the editor panel */\n show_bins: true,\n /* Show bins in left column */\n properties: [],\n /* Semantic properties for edges */\n show_editor: true,\n /* Show the graph editor... Setting this to \"false\" only shows the bins part ! */\n read_only: false,\n /* Allows editing of renkan without changing the rest of the GUI. Can be switched on/off on the fly to block/enable editing */\n editor_mode: true,\n /* Switch for Publish/Edit GUI. If editor_mode is false, read_only will be true. */\n manual_save: false,\n /* In snapshot mode, clicking on the floppy will save a snapshot. Otherwise, it will show the connection status */\n show_top_bar: true,\n /* Show the top bar, (title, buttons, users) */\n default_user_color: \"#303030\",\n size_bug_fix: true,\n /* Resize the canvas after load (fixes a bug on iPad and FF Mac) */\n force_resize: false,\n allow_double_click: true,\n /* Allows Double Click to create a node on an empty background */\n zoom_on_scroll: true,\n /* Allows to use the scrollwheel to zoom */\n element_delete_delay: 0,\n /* Delay between clicking on the bin on an element and really deleting it\n Set to 0 for delete confirm */\n autoscale_padding: 50,\n resize: true,\n\n /* zoom options */\n show_zoom: true,\n /* show zoom buttons */\n save_view: true,\n /* show buttons to save view */\n default_view: false,\n /* Allows to load default view (zoom+offset) at start on read_only mode, instead of autoScale. the default_view will be the last */\n\n\n /* TOP BAR BUTTONS */\n show_search_field: true,\n show_user_list: true,\n user_name_editable: true,\n user_color_editable: true,\n show_user_color: true,\n show_save_button: true,\n show_export_button: true,\n show_open_button: false,\n show_addnode_button: true,\n show_addedge_button: true,\n show_bookmarklet: true,\n show_fullscreen_button: true,\n home_button_url: false,\n home_button_title: \"Home\",\n\n /* MINI-MAP OPTIONS */\n\n show_minimap: true,\n /* Show a small map at the bottom right */\n minimap_width: 160,\n minimap_height: 120,\n minimap_padding: 20,\n minimap_background_color: \"#ffffff\",\n minimap_border_color: \"#cccccc\",\n minimap_highlight_color: \"#ffff00\",\n minimap_highlight_weight: 5,\n\n\n /* EDGE/NODE COMMON OPTIONS */\n\n buttons_background: \"#202020\",\n buttons_label_color: \"#c000c0\",\n buttons_label_font_size: 9,\n\n ghost_opacity : 0.3,\n /* opacity when the hidden element is revealed */\n default_dash_array : [4, 5],\n /* dash line genometry */\n\n /* NODE DISPLAY OPTIONS */\n\n show_node_circles: true,\n /* Show circles for nodes */\n clip_node_images: true,\n /* Constraint node images to circles */\n node_images_fill_mode: false,\n /* Set to false for \"letterboxing\" (height/width of node adapted to show full image)\n Set to true for \"crop\" (adapted to fill circle) */\n node_size_base: 25,\n node_stroke_width: 2,\n node_stroke_max_width: 12,\n selected_node_stroke_width: 4,\n selected_node_stroke_max_width: 24,\n node_stroke_witdh_scale: 5,\n node_fill_color: \"#ffffff\",\n highlighted_node_fill_color: \"#ffff00\",\n node_label_distance: 5,\n /* Vertical distance between node and label */\n node_label_max_length: 60,\n /* Maximum displayed text length */\n label_untitled_nodes: \"(untitled)\",\n /* Label to display on untitled nodes */\n hide_nodes: true, \n /* allow hide/show nodes */\n change_shapes: true,\n /* Change shapes enabled */\n change_types: true,\n /* Change type enabled */\n \n /* NODE EDITOR TEMPLATE*/\n \n node_editor_templates: {\n \"default\": \"templates/nodeeditor_readonly.html\",\n \"video\": \"templates/nodeeditor_video.html\"\n },\n\n /* EDGE DISPLAY OPTIONS */\n\n edge_stroke_width: 2,\n edge_stroke_max_width: 12,\n selected_edge_stroke_width: 4,\n selected_edge_stroke_max_width: 24,\n edge_stroke_witdh_scale: 5,\n\n edge_label_distance: 0,\n edge_label_max_length: 20,\n edge_arrow_length: 18,\n edge_arrow_width: 12,\n edge_arrow_max_width: 32,\n edge_gap_in_bundles: 12,\n label_untitled_edges: \"\",\n\n /* CONTEXTUAL DISPLAY (TOOLTIP OR EDITOR) OPTIONS */\n\n tooltip_width: 275,\n tooltip_padding: 10,\n tooltip_margin: 15,\n tooltip_arrow_length : 20,\n tooltip_arrow_width : 40,\n tooltip_top_color: \"#f0f0f0\",\n tooltip_bottom_color: \"#d0d0d0\",\n tooltip_border_color: \"#808080\",\n tooltip_border_width: 1,\n\n richtext_editor_config: {\n toolbarGroups: [\n { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },\n { name: 'clipboard', groups: [ 'clipboard', 'undo' ] },\n '/',\n\t { name: 'styles'},\n ],\n removePlugins : 'colorbutton,find,flash,font,forms,iframe,image,newpage,smiley,specialchar,stylescombo,templates',\n },\n\n /* NODE EDITOR OPTIONS */\n\n show_node_editor_uri: true,\n show_node_editor_description: true,\n show_node_editor_description_richtext: true,\n show_node_editor_size: true,\n show_node_editor_style: true,\n show_node_editor_style_color: true,\n show_node_editor_style_dash: true,\n show_node_editor_style_thickness: true,\n show_node_editor_image: true,\n show_node_editor_creator: true,\n allow_image_upload: true,\n uploaded_image_max_kb: 500,\n\n\n /* NODE TOOLTIP OPTIONS */\n\n show_node_tooltip_uri: true,\n show_node_tooltip_description: true,\n show_node_tooltip_color: true,\n show_node_tooltip_image: true,\n show_node_tooltip_creator: true,\n\n /* EDGE EDITOR OPTIONS */\n\n show_edge_editor_uri: true,\n show_edge_editor_style: true,\n show_edge_editor_style_color: true,\n show_edge_editor_style_dash: true,\n show_edge_editor_style_thickness: true,\n show_edge_editor_style_arrow: true,\n show_edge_editor_direction: true,\n show_edge_editor_nodes: true,\n show_edge_editor_creator: true,\n\n /* EDGE TOOLTIP OPTIONS */\n\n show_edge_tooltip_uri: true,\n show_edge_tooltip_color: true,\n show_edge_tooltip_nodes: true,\n show_edge_tooltip_creator: true,\n\n};\n","Rkns.i18n = {\n fr: {\n \"Edit Node\": \"Édition d’un nœud\",\n \"Edit Edge\": \"Édition d’un lien\",\n \"Title:\": \"Titre :\",\n \"URI:\": \"URI :\",\n \"Description:\": \"Description :\",\n \"From:\": \"De :\",\n \"To:\": \"Vers :\",\n \"Image\": \"Image\",\n \"Image URL:\": \"URL d'Image\",\n \"Choose Image File:\": \"Choisir un fichier image\",\n \"Full Screen\": \"Mode plein écran\",\n \"Add Node\": \"Ajouter un nœud\",\n \"Add Edge\": \"Ajouter un lien\",\n \"Save Project\": \"Enregistrer le projet\",\n \"Open Project\": \"Ouvrir un projet\",\n \"Auto-save enabled\": \"Enregistrement automatique activé\",\n \"Connection lost\": \"Connexion perdue\",\n \"Created by:\": \"Créé par :\",\n \"Zoom In\": \"Agrandir l’échelle\",\n \"Zoom Out\": \"Rapetisser l’échelle\",\n \"Edit\": \"Éditer\",\n \"Remove\": \"Supprimer\",\n \"Cancel deletion\": \"Annuler la suppression\",\n \"Link to another node\": \"Créer un lien\",\n \"Enlarge\": \"Agrandir\",\n \"Shrink\": \"Rétrécir\",\n \"Click on the background canvas to add a node\": \"Cliquer sur le fond du graphe pour rajouter un nœud\",\n \"Click on a first node to start the edge\": \"Cliquer sur un premier nœud pour commencer le lien\",\n \"Click on a second node to complete the edge\": \"Cliquer sur un second nœud pour terminer le lien\",\n \"Wikipedia\": \"Wikipédia\",\n \"Wikipedia in \": \"Wikipédia en \",\n \"French\": \"Français\",\n \"English\": \"Anglais\",\n \"Japanese\": \"Japonais\",\n \"Untitled project\": \"Projet sans titre\",\n \"Lignes de Temps\": \"Lignes de Temps\",\n \"Loading, please wait\": \"Chargement en cours, merci de patienter\",\n \"Edge color:\": \"Couleur :\",\n \"Dash:\": \"Point. :\",\n \"Thickness:\": \"Epaisseur :\",\n \"Arrow:\": \"Flèche :\",\n \"Node color:\": \"Couleur :\",\n \"Choose color\": \"Choisir une couleur\",\n \"Change edge direction\": \"Changer le sens du lien\",\n \"Do you really wish to remove node \": \"Voulez-vous réellement supprimer le nœud \",\n \"Do you really wish to remove edge \": \"Voulez-vous réellement supprimer le lien \",\n \"This file is not an image\": \"Ce fichier n'est pas une image\",\n \"Image size must be under \": \"L'image doit peser moins de \",\n \"Size:\": \"Taille :\",\n \"KB\": \"ko\",\n \"Choose from vocabulary:\": \"Choisir dans un vocabulaire :\",\n \"SKOS Documentation properties\": \"SKOS: Propriétés documentaires\",\n \"has note\": \"a pour note\",\n \"has example\": \"a pour exemple\",\n \"has definition\": \"a pour définition\",\n \"SKOS Semantic relations\": \"SKOS: Relations sémantiques\",\n \"has broader\": \"a pour concept plus large\",\n \"has narrower\": \"a pour concept plus étroit\",\n \"has related\": \"a pour concept apparenté\",\n \"Dublin Core Metadata\": \"Métadonnées Dublin Core\",\n \"has contributor\": \"a pour contributeur\",\n \"covers\": \"couvre\",\n \"created by\": \"créé par\",\n \"has date\": \"a pour date\",\n \"published by\": \"édité par\",\n \"has source\": \"a pour source\",\n \"has subject\": \"a pour sujet\",\n \"Dragged resource\": \"Ressource glisée-déposée\",\n \"Search the Web\": \"Rechercher en ligne\",\n \"Search in Bins\": \"Rechercher dans les chutiers\",\n \"Close bin\": \"Fermer le chutier\",\n \"Refresh bin\": \"Rafraîchir le chutier\",\n \"(untitled)\": \"(sans titre)\",\n \"Select contents:\": \"Sélectionner des contenus :\",\n \"Drag items from this website, drop them in Renkan\": \"Glissez des éléments de ce site web vers Renkan\",\n \"Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.\": \"Glissez ce bouton vers votre barre de favoris. Ensuite, depuis un site tiers, cliquez dessus pour activer 'Drag-to-Add' puis glissez des éléments de ce site vers Renkan\",\n \"Shapes available\": \"Formes disponibles\",\n \"Circle\": \"Cercle\",\n \"Square\": \"Carré\",\n \"Diamond\": \"Losange\",\n \"Hexagone\": \"Hexagone\",\n \"Ellipse\": \"Ellipse\",\n \"Star\": \"Étoile\",\n \"Cloud\": \"Nuage\",\n \"Triangle\": \"Triangle\",\n \"Zoom Fit\": \"Ajuster le Zoom\",\n \"Download Project\": \"Télécharger le projet\",\n \"Save view\": \"Sauver la vue\",\n \"View saved view\": \"Restaurer la Vue\",\n \"Renkan \\'Drag-to-Add\\' bookmarklet\": \"Renkan \\'Deplacer-Pour-Ajouter\\' Signet\",\n \"(unknown user)\":\"(non authentifié)\",\n \"\":\"\",\n \"Search in graph\":\"Rechercher dans carte\",\n \"Search in \" : \"Chercher dans \"\n }\n};\n","/* Saves the Full JSON at each modification */\n\nRkns.jsonIO = function(_renkan, _opts) {\n var _proj = _renkan.project;\n if (typeof _opts.http_method === \"undefined\") {\n _opts.http_method = 'PUT';\n }\n var _load = function() {\n _renkan.renderer.redrawActive = false;\n _proj.set({\n loadingStatus : true\n });\n Rkns.$.getJSON(_opts.url, function(_data) {\n _renkan.dataloader.load(_data);\n _proj.set({\n loadingStatus : false\n });\n _proj.set({\n saveStatus : 0\n });\n _renkan.renderer.redrawActive = true;\n _renkan.renderer.fixSize();\n });\n };\n var _save = function() {\n _proj.set({\n saveStatus : 2\n });\n var _data = _proj.toJSON();\n if (!_renkan.read_only) {\n Rkns.$.ajax({\n type : _opts.http_method,\n url : _opts.url,\n contentType : \"application/json\",\n data : JSON.stringify(_data),\n success : function(data, textStatus, jqXHR) {\n _proj.set({\n saveStatus : 0\n });\n }\n });\n }\n\n };\n var _thrSave = Rkns._.throttle(function() {\n setTimeout(_save, 100);\n }, 1000);\n _proj.on(\"add:nodes add:edges add:users add:views\", function(_model) {\n _model.on(\"change remove\", function(_model) {\n _thrSave();\n });\n _thrSave();\n });\n _proj.on(\"change\", function() {\n if (!(_proj.changedAttributes.length === 1 && _proj\n .hasChanged('saveStatus'))) {\n _thrSave();\n }\n });\n\n _load();\n};\n","/* Saves the Full JSON once */\n\nRkns.jsonIOSaveOnClick = function(_renkan, _opts) {\n var _proj = _renkan.project,\n _saveWarn = false,\n _onLeave = function() {\n return \"Project not saved\";\n };\n if (typeof _opts.http_method === \"undefined\") {\n _opts.http_method = 'POST';\n }\n var _load = function() {\n var getdata = {},\n rx = /id=([^&#?=]+)/,\n matches = document.location.hash.match(rx);\n if (matches) {\n getdata.id = matches[1];\n }\n Rkns.$.ajax({\n url: _opts.url,\n data: getdata,\n beforeSend: function(){\n \t_proj.set({loadingStatus:true});\n },\n success: function(_data) {\n _renkan.dataloader.load(_data);\n _proj.set({loadingStatus:false});\n _proj.set({saveStatus:0});\n _renkan.renderer.autoScale();\n }\n });\n };\n var _save = function() {\n _proj.set(\"saved_at\", new Date());\n var _data = _proj.toJSON();\n Rkns.$.ajax({\n type: _opts.http_method,\n url: _opts.url,\n contentType: \"application/json\",\n data: JSON.stringify(_data),\n beforeSend: function(){\n \t_proj.set({saveStatus:2});\n },\n success: function(data, textStatus, jqXHR) {\n $(window).off(\"beforeunload\", _onLeave);\n _saveWarn = false;\n _proj.set({saveStatus:0});\n //document.location.hash = \"#id=\" + data.id;\n //$(\".Rk-Notifications\").text(\"Saved as \"+document.location.href).fadeIn().delay(2000).fadeOut();\n }\n });\n };\n var _checkLeave = function() {\n \t_proj.set({saveStatus:1});\n\n var title = _proj.get(\"title\");\n if (title && _proj.get(\"nodes\").length) {\n $(\".Rk-Save-Button\").removeClass(\"disabled\");\n } else {\n $(\".Rk-Save-Button\").addClass(\"disabled\");\n }\n if (title) {\n $(\".Rk-PadTitle\").css(\"border-color\",\"#333333\");\n }\n if (!_saveWarn) {\n _saveWarn = true;\n $(window).on(\"beforeunload\", _onLeave);\n }\n };\n _load();\n _proj.on(\"add:nodes add:edges add:users change\", function(_model) {\n\t _model.on(\"change remove\", function(_model) {\n\t \tif(!(_model.changedAttributes.length === 1 && _model.hasChanged('saveStatus'))) {\n\t \t\t_checkLeave();\n\t \t}\n\t });\n\t\tif(!(_proj.changedAttributes.length === 1 && _proj.hasChanged('saveStatus'))) {\n\t\t _checkLeave();\n \t}\n });\n _renkan.renderer.save = function() {\n if ($(\".Rk-Save-Button\").hasClass(\"disabled\")) {\n if (!_proj.get(\"title\")) {\n $(\".Rk-PadTitle\").css(\"border-color\",\"#ff0000\");\n }\n } else {\n _save();\n }\n };\n};\n","(function(Rkns) {\n\"use strict\";\n\nvar _ = Rkns._;\n\nvar Ldt = Rkns.Ldt = {};\n\nvar Bin = Ldt.Bin = function(_renkan, _opts) {\n if (_opts.ldt_type) {\n var Resclass = Ldt[_opts.ldt_type+\"Bin\"];\n if (Resclass) {\n return new Resclass(_renkan, _opts);\n }\n }\n console.error(\"No such LDT Bin Type\");\n};\n\nvar ProjectBin = Ldt.ProjectBin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nProjectBin.prototype.tagTemplate = renkanJST['templates/ldtjson-bin/tagtemplate.html'];\n\nProjectBin.prototype.annotationTemplate = renkanJST['templates/ldtjson-bin/annotationtemplate.html'];\n\nProjectBin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.proj_id = _opts.project_id;\n this.ldt_platform = _opts.ldt_platform || \"http://ldt.iri.centrepompidou.fr/\";\n this.title_$.html(_opts.title);\n this.title_icon_$.addClass('Rk-Ldt-Title-Icon');\n this.refresh();\n};\n\nProjectBin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n function highlight(_text) {\n var _e = _(_text).escape();\n return search.isempty ? _e : search.replace(_e, \"$1\");\n }\n function convertTC(_ms) {\n function pad(_n) {\n var _res = _n.toString();\n while (_res.length < 2) {\n _res = '0' + _res;\n }\n return _res;\n }\n var _totalSeconds = Math.abs(Math.floor(_ms/1000)),\n _hours = Math.floor(_totalSeconds / 3600),\n _minutes = (Math.floor(_totalSeconds / 60) % 60),\n _seconds = _totalSeconds % 60,\n _res = '';\n if (_hours) {\n _res += pad(_hours) + ':';\n }\n _res += pad(_minutes) + ':' + pad(_seconds);\n return _res;\n }\n\n var _html = '
                          • Tags

                          • ',\n _projtitle = this.data.meta[\"dc:title\"],\n _this = this,\n count = 0;\n _this.title_$.text('LDT Project: \"' + _projtitle + '\"');\n _.map(_this.data.tags,function(_tag) {\n var _title = _tag.meta[\"dc:title\"];\n if (!search.isempty && !search.test(_title)) {\n return;\n }\n count++;\n _html += _this.tagTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n encodedtitle : encodeURIComponent(_title),\n static_url: _this.renkan.options.static_url\n });\n });\n _html += '
                          • Annotations

                          • ';\n _.map(_this.data.annotations,function(_annotation) {\n var _description = _annotation.content.description,\n _title = _annotation.content.title.replace(_description,\"\");\n if (!search.isempty && !search.test(_title) && !search.test(_description)) {\n return;\n }\n count++;\n var _duration = _annotation.end - _annotation.begin,\n _img = (\n (_annotation.content && _annotation.content.img && _annotation.content.img.src) ?\n _annotation.content.img.src :\n ( _duration ? _this.renkan.options.static_url+\"img/ldt-segment.png\" : _this.renkan.options.static_url+\"img/ldt-point.png\" )\n );\n _html += _this.annotationTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n description: _description,\n hdescription: highlight(_description),\n start: convertTC(_annotation.begin),\n end: convertTC(_annotation.end),\n duration: convertTC(_duration),\n mediaid: _annotation.media,\n annotationid: _annotation.id,\n image: _img,\n static_url: _this.renkan.options.static_url\n });\n });\n\n this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nProjectBin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: this.ldt_platform + 'ldtplatform/ldt/cljson/id/' + this.proj_id,\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n\nvar Search = Ldt.Search = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.lang = _opts.lang || \"en\";\n};\n\nSearch.prototype.getBgClass = function() {\n return \"Rk-Ldt-Icon\";\n};\n\nSearch.prototype.getSearchTitle = function() {\n return this.renkan.translate(\"Lignes de Temps\");\n};\n\nSearch.prototype.search = function(_q) {\n this.renkan.tabs.push(\n new ResultsBin(this.renkan, {\n search: _q\n })\n );\n};\n\nvar ResultsBin = Ldt.ResultsBin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nResultsBin.prototype.segmentTemplate = renkanJST['templates/ldtjson-bin/segmenttemplate.html'];\n\nResultsBin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.ldt_platform = _opts.ldt_platform || \"http://ldt.iri.centrepompidou.fr/\";\n this.max_results = _opts.max_results || 50;\n this.search = _opts.search;\n this.title_$.html('Lignes de Temps: \"' + _opts.search + '\"');\n this.title_icon_$.addClass('Rk-Ldt-Title-Icon');\n this.refresh();\n};\n\nResultsBin.prototype.render = function(searchbase) {\n if (!this.data) {\n return;\n }\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n var highlightrx = (search.isempty ? Rkns.Utils.regexpFromTextOrArray(this.search) : search);\n function highlight(_text) {\n return highlightrx.replace(_(_text).escape(), \"$1\");\n }\n function convertTC(_ms) {\n function pad(_n) {\n var _res = _n.toString();\n while (_res.length < 2) {\n _res = '0' + _res;\n }\n return _res;\n }\n var _totalSeconds = Math.abs(Math.floor(_ms/1000)),\n _hours = Math.floor(_totalSeconds / 3600),\n _minutes = (Math.floor(_totalSeconds / 60) % 60),\n _seconds = _totalSeconds % 60,\n _res = '';\n if (_hours) {\n _res += pad(_hours) + ':';\n }\n _res += pad(_minutes) + ':' + pad(_seconds);\n return _res;\n }\n\n var _html = '',\n _this = this,\n count = 0;\n _.each(this.data.objects,function(_segment) {\n var _description = _segment.abstract,\n _title = _segment.title;\n if (!search.isempty && !search.test(_title) && !search.test(_description)) {\n return;\n }\n count++;\n var _duration = _segment.duration,\n _begin = _segment.start_ts,\n _end = + _segment.duration + _begin,\n _img = (\n _duration ?\n _this.renkan.options.static_url + \"img/ldt-segment.png\" :\n _this.renkan.options.static_url + \"img/ldt-point.png\"\n );\n _html += _this.segmentTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n description: _description,\n hdescription: highlight(_description),\n start: convertTC(_begin),\n end: convertTC(_end),\n duration: convertTC(_duration),\n mediaid: _segment.iri_id,\n //projectid: _segment.project_id,\n //cuttingid: _segment.cutting_id,\n annotationid: _segment.element_id,\n image: _img\n });\n });\n\n this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nResultsBin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: this.ldt_platform + 'ldtplatform/api/ldt/1.0/segments/search/',\n data: {\n format: \"jsonp\",\n q: this.search,\n limit: this.max_results\n },\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n\n})(window.Rkns);\n","Rkns.ResourceList = {};\n\nRkns.ResourceList.Bin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nRkns.ResourceList.Bin.prototype.resultTemplate = renkanJST['templates/list-bin.html'];\n\nRkns.ResourceList.Bin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.title_$.html(_opts.title);\n if (_opts.list) {\n this.data = _opts.list;\n }\n this.refresh();\n};\n\nRkns.ResourceList.Bin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n function highlight(_text) {\n var _e = _(_text).escape();\n return search.isempty ? _e : search.replace(_e, \"$1\");\n }\n var _html = \"\",\n _this = this,\n count = 0;\n Rkns._.each(this.data,function(_item) {\n var _element;\n if (typeof _item === \"string\") {\n if (/^(https?:\\/\\/|www)/.test(_item)) {\n _element = { url: _item };\n } else {\n _element = { title: _item.replace(/[:,]?\\s?(https?:\\/\\/|www)[\\d\\w\\/.&?=#%-_]+\\s?/,'').trim() };\n var _match = _item.match(/(https?:\\/\\/|www)[\\d\\w\\/.&?=#%-_]+/);\n if (_match) {\n _element.url = _match[0];\n }\n if (_element.title.length > 80) {\n _element.description = _element.title;\n _element.title = _element.title.replace(/^(.{30,60})\\s.+$/,'$1…');\n }\n }\n } else {\n _element = _item;\n }\n var title = _element.title || (_element.url || \"\").replace(/^https?:\\/\\/(www\\.)?/,'').replace(/^(.{40}).+$/,'$1…'),\n url = _element.url || \"\",\n description = _element.description || \"\",\n image = _element.image || \"\";\n if (url && !/^https?:\\/\\//.test(url)) {\n url = 'http://' + url;\n }\n if (!search.isempty && !search.test(title) && !search.test(description)) {\n return;\n }\n count++;\n _html += _this.resultTemplate({\n url: url,\n title: title,\n htitle: highlight(title),\n image: image,\n description: description,\n hdescription: highlight(description),\n static_url: _this.renkan.options.static_url\n });\n });\n _this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nRkns.ResourceList.Bin.prototype.refresh = function() {\n if (this.data) {\n this.render();\n }\n};\n","Rkns.Wikipedia = {\n};\n\nRkns.Wikipedia.Search = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.lang = _opts.lang || \"en\";\n};\n\nRkns.Wikipedia.Search.prototype.getBgClass = function() {\n return \"Rk-Wikipedia-Search-Icon Rk-Wikipedia-Lang-\" + this.lang;\n};\n\nRkns.Wikipedia.Search.prototype.getSearchTitle = function() {\n var langs = {\n \"fr\": \"French\",\n \"en\": \"English\",\n \"ja\": \"Japanese\"\n };\n if (langs[this.lang]) {\n return this.renkan.translate(\"Wikipedia in \") + this.renkan.translate(langs[this.lang]);\n } else {\n return this.renkan.translate(\"Wikipedia\") + \" [\" + this.lang + \"]\";\n }\n};\n\nRkns.Wikipedia.Search.prototype.search = function(_q) {\n this.renkan.tabs.push(\n new Rkns.Wikipedia.Bin(this.renkan, {\n lang: this.lang,\n search: _q\n })\n );\n};\n\nRkns.Wikipedia.Bin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nRkns.Wikipedia.Bin.prototype.resultTemplate = renkanJST['templates/wikipedia-bin/resulttemplate.html'];\n\nRkns.Wikipedia.Bin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.search = _opts.search;\n this.lang = _opts.lang || \"en\";\n this.title_icon_$.addClass('Rk-Wikipedia-Title-Icon Rk-Wikipedia-Lang-' + this.lang);\n this.title_$.html(this.search).addClass(\"Rk-Wikipedia-Title\");\n this.refresh();\n};\n\nRkns.Wikipedia.Bin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n var highlightrx = (search.isempty ? Rkns.Utils.regexpFromTextOrArray(this.search) : search);\n function highlight(_text) {\n return highlightrx.replace(_(_text).escape(), \"$1\");\n }\n var _html = \"\",\n _this = this,\n count = 0;\n Rkns._.each(this.data.query.search, function(_result) {\n var title = _result.title,\n url = \"http://\" + _this.lang + \".wikipedia.org/wiki/\" + encodeURI(title.replace(/ /g,\"_\")),\n description = Rkns.$('
                            ').html(_result.snippet).text();\n if (!search.isempty && !search.test(title) && !search.test(description)) {\n return;\n }\n count++;\n _html += _this.resultTemplate({\n url: url,\n title: title,\n htitle: highlight(title),\n description: description,\n hdescription: highlight(description),\n static_url: _this.renkan.options.static_url\n });\n });\n _this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nRkns.Wikipedia.Bin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: \"http://\" + _this.lang + \".wikipedia.org/w/api.php?action=query&list=search&srsearch=\" + encodeURIComponent(this.search) + \"&format=json\",\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n","\ndefine('renderer/baserepresentation',['jquery', 'underscore'], function ($, _) {\n \n\n /* Rkns.Renderer._BaseRepresentation Class */\n\n /* In Renkan, a \"Representation\" is a sort of ViewModel (in the MVVM paradigm) and bridges the gap between\n * models (written with Backbone.js) and the view (written with Paper.js)\n * Renkan's representations all inherit from Rkns.Renderer._BaseRepresentation '*/\n\n var _BaseRepresentation = function(_renderer, _model) {\n if (typeof _renderer !== \"undefined\") {\n this.renderer = _renderer;\n this.renkan = _renderer.renkan;\n this.project = _renderer.renkan.project;\n this.options = _renderer.renkan.options;\n this.model = _model;\n if (this.model) {\n var _this = this;\n this._changeBinding = function() {\n _this.redraw({change: true});\n };\n this._removeBinding = function() {\n _renderer.removeRepresentation(_this);\n _.defer(function() {\n _renderer.redraw();\n });\n };\n this._selectBinding = function() {\n _this.select();\n };\n this._unselectBinding = function() {\n _this.unselect();\n };\n this.model.on(\"change\", this._changeBinding );\n this.model.on(\"remove\", this._removeBinding );\n this.model.on(\"select\", this._selectBinding );\n this.model.on(\"unselect\", this._unselectBinding );\n }\n }\n };\n\n /* Rkns.Renderer._BaseRepresentation Methods */\n\n _(_BaseRepresentation.prototype).extend({\n _super: function(_func) {\n return _BaseRepresentation.prototype[_func].apply(this, Array.prototype.slice.call(arguments, 1));\n },\n redraw: function() {},\n moveTo: function() {},\n show: function() { return \"BaseRepresentation.show\"; },\n hide: function() {},\n select: function() {\n if (this.model) {\n this.model.trigger(\"selected\");\n }\n },\n unselect: function() {\n if (this.model) {\n this.model.trigger(\"unselected\");\n }\n },\n highlight: function() {},\n unhighlight: function() {},\n mousedown: function() {},\n mouseup: function() {\n if (this.model) {\n this.model.trigger(\"clicked\");\n }\n },\n destroy: function() {\n if (this.model) {\n this.model.off(\"change\", this._changeBinding );\n this.model.off(\"remove\", this._removeBinding );\n this.model.off(\"select\", this._selectBinding );\n this.model.off(\"unselect\", this._unselectBinding );\n }\n }\n }).value();\n\n /* End of Rkns.Renderer._BaseRepresentation Class */\n\n return _BaseRepresentation;\n\n});\n\ndefine('requtils',[], function ($, _) {\n \n return {\n getUtils: function(){\n return window.Rkns.Utils;\n },\n getRenderer: function(){\n return window.Rkns.Renderer;\n }\n };\n\n});\n\n\ndefine('renderer/basebutton',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* Rkns.Renderer._BaseButton Class */\n\n /* BaseButton is extended by contextual buttons that appear when hovering on nodes and edges */\n\n var _BaseButton = Utils.inherit(BaseRepresentation);\n\n _(_BaseButton.prototype).extend({\n moveTo: function(_pos) {\n this.sector.moveTo(_pos);\n },\n show: function() {\n this.sector.show();\n },\n hide: function() {\n this.sector.hide();\n },\n select: function() {\n this.sector.select();\n },\n unselect: function(_newTarget) {\n this.sector.unselect();\n if (!_newTarget || (_newTarget !== this.source_representation && _newTarget.source_representation !== this.source_representation)) {\n this.source_representation.unselect();\n }\n },\n destroy: function() {\n this.sector.destroy();\n }\n }).value();\n\n return _BaseButton;\n\n});\n\n\ndefine('renderer/shapebuilder',[], function () {\n \n\n var cloud_path = \"M0,0c-0.1218516546,-0.0336420601 -0.2451649928,0.0048580836 -0.3302944641,0.0884969975c-0.0444763883,-0.0550844815 -0.1047003238,-0.0975985034 -0.1769360893,-0.1175406746c-0.1859066673,-0.0513257002 -0.3774236254,0.0626045858 -0.4272374613,0.2541588105c-0.0036603877,0.0140753132 -0.0046241235,0.028229722 -0.0065872453,0.042307536c-0.1674179627,-0.0179317735 -0.3276106855,0.0900599386 -0.3725537463,0.2628868425c-0.0445325077,0.1712456429 0.0395025693,0.3463497959 0.1905420475,0.4183458793c-0.0082101538,0.0183442886 -0.0158652506,0.0372432828 -0.0211098452,0.0574080693c-0.0498130336,0.1915540431 0.0608692569,0.3884647499 0.2467762814,0.4397904033c0.0910577256,0.0251434257 0.1830791813,0.0103792696 0.2594677475,-0.0334472349c0.042100113,0.0928009202 0.1205930075,0.1674914182 0.2240666796,0.1960572479c0.1476344161,0.0407610407 0.297446165,-0.0238077445 0.3783262342,-0.1475652419c0.0327623278,0.0238981846 0.0691792333,0.0436665447 0.1102008706,0.0549940004c0.1859065794,0.0513256592 0.3770116432,-0.0627203154 0.4268255671,-0.2542745401c0.0250490557,-0.0963230532 0.0095494076,-0.1938010889 -0.0356681889,-0.2736906101c0.0447507424,-0.0439678867 0.0797796014,-0.0996624318 0.0969425462,-0.1656617192c0.0498137481,-0.1915564561 -0.0608688118,-0.3884669813 -0.2467755669,-0.4397928163c-0.0195699622,-0.0054005426 -0.0391731675,-0.0084429542 -0.0586916488,-0.0102888295c0.0115683912,-0.1682147574 -0.0933564223,-0.3269222408 -0.2572937178,-0.3721841203z\";\n /* ShapeBuilder Begin */\n\n var builders = {\n \"circle\":{\n getShape: function() {\n return new paper.Path.Circle([0, 0], 1);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Circle(center, radius);\n }\n },\n \"rectangle\":{\n getShape: function() {\n return new paper.Path.Rectangle([-2, -2], [2, 2]);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Rectangle([-radius, -radius], [radius*2, radius*2]);\n }\n },\n \"ellipse\":{\n getShape: function() {\n return new paper.Path.Ellipse(new paper.Rectangle([-2, -1], [2, 1]));\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Ellipse(new paper.Rectangle([-radius, -radius/2], [radius*2, radius]));\n }\n },\n \"polygon\":{\n getShape: function() {\n return new paper.Path.RegularPolygon([0, 0], 6, 1);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.RegularPolygon(center, 6, radius);\n }\n },\n \"diamond\":{\n getShape: function() {\n var d = new paper.Path.Rectangle([-Math.SQRT2, -Math.SQRT2], [Math.SQRT2, Math.SQRT2]);\n d.rotate(45);\n return d;\n },\n getImageShape: function(center, radius) {\n var d = new paper.Path.Rectangle([-radius*Math.SQRT2/2, -radius*Math.SQRT2/2], [radius*Math.SQRT2, radius*Math.SQRT2]);\n d.rotate(45);\n return d;\n }\n },\n \"star\":{\n getShape: function() {\n return new paper.Path.Star([0, 0], 8, 1, 0.7);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Star(center, 8, radius*1, radius*0.7);\n }\n },\n \"cloud\": {\n getShape: function() {\n var path = new paper.Path(cloud_path);\n return path;\n\n },\n getImageShape: function(center, radius) {\n var path = new paper.Path(cloud_path);\n path.scale(radius);\n path.translate(center);\n return path;\n }\n },\n \"triangle\": {\n getShape: function() {\n return new paper.Path.RegularPolygon([0,0], 3, 1);\n },\n getImageShape: function(center, radius) {\n var shape = new paper.Path.RegularPolygon([0,0], 3, 1);\n shape.scale(radius);\n shape.translate(center);\n return shape;\n }\n },\n \"svg\": function(path){\n return {\n getShape: function() {\n return new paper.Path(path);\n },\n getImageShape: function(center, radius) {\n // No calcul for the moment\n return new paper.Path();\n }\n };\n }\n };\n\n var ShapeBuilder = function (shape){\n if(shape === null || typeof shape === \"undefined\"){\n shape = \"circle\";\n }\n if(shape.substr(0,4)===\"svg:\"){\n return builders.svg(shape.substr(4));\n }\n if(!(shape in builders)){\n shape = \"circle\";\n }\n return builders[shape];\n };\n\n ShapeBuilder.builders = builders;\n\n return ShapeBuilder;\n\n});\n\ndefine('renderer/noderepr',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation', 'renderer/shapebuilder'], function ($, _, requtils, BaseRepresentation, ShapeBuilder) {\n \n\n var Utils = requtils.getUtils();\n\n /* Rkns.Renderer.Node Class */\n\n /* The representation for the node : A circle, with an image inside and a text label underneath.\n * The circle and the image are drawn on canvas and managed by Paper.js.\n * The text label is an HTML node, managed by jQuery. */\n\n //var NodeRepr = Renderer.Node = Utils.inherit(Renderer._BaseRepresentation);\n var NodeRepr = Utils.inherit(BaseRepresentation);\n\n _(NodeRepr.prototype).extend({\n _init: function() {\n this.renderer.node_layer.activate();\n this.type = \"Node\";\n this.buildShape();\n this.hidden = false;\n this.ghost= false;\n if (this.options.show_node_circles) {\n this.circle.strokeWidth = this.options.node_stroke_width;\n this.h_ratio = 1;\n } else {\n this.h_ratio = 0;\n }\n this.title = $('
                            ').appendTo(this.renderer.labels_$);\n\n if (this.options.editor_mode) {\n var Renderer = requtils.getRenderer();\n this.normal_buttons = [\n new Renderer.NodeEditButton(this.renderer, null),\n new Renderer.NodeRemoveButton(this.renderer, null),\n new Renderer.NodeLinkButton(this.renderer, null),\n new Renderer.NodeEnlargeButton(this.renderer, null),\n new Renderer.NodeShrinkButton(this.renderer, null)\n ];\n if (this.options.hide_nodes){\n this.normal_buttons.push(\n new Renderer.NodeHideButton(this.renderer, null),\n new Renderer.NodeShowButton(this.renderer, null)\n );\n }\n this.pending_delete_buttons = [\n new Renderer.NodeRevertButton(this.renderer, null)\n ];\n this.all_buttons = this.normal_buttons.concat(this.pending_delete_buttons);\n\n for (var i = 0; i < this.all_buttons.length; i++) {\n this.all_buttons[i].source_representation = this;\n }\n this.active_buttons = [];\n } else {\n this.active_buttons = this.all_buttons = [];\n }\n this.last_circle_radius = 1;\n\n if (this.renderer.minimap) {\n this.renderer.minimap.node_layer.activate();\n this.minimap_circle = new paper.Path.Circle([0, 0], 1);\n this.minimap_circle.__representation = this.renderer.minimap.miniframe.__representation;\n this.renderer.minimap.node_group.addChild(this.minimap_circle);\n }\n },\n _getStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.node_stroke_width + (thickness-1) * (this.options.node_stroke_max_width - this.options.node_stroke_width) / (this.options.node_stroke_witdh_scale-1);\n },\n _getSelectedStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.selected_node_stroke_width + (thickness-1) * (this.options.selected_node_stroke_max_width - this.options.selected_node_stroke_width) / (this.options.node_stroke_witdh_scale-1);\n },\n buildShape: function(){\n if( 'shape' in this.model.changed ) {\n delete this.img;\n }\n if(this.circle){\n this.circle.remove();\n delete this.circle;\n }\n // \"circle\" \"rectangle\" \"ellipse\" \"polygon\" \"star\" \"diamond\"\n this.shapeBuilder = new ShapeBuilder(this.model.get(\"shape\"));\n this.circle = this.shapeBuilder.getShape();\n this.circle.__representation = this;\n this.circle.sendToBack();\n this.last_circle_radius = 1;\n },\n redraw: function(options) {\n if( 'shape' in this.model.changed && 'change' in options && options.change ) {\n //if( 'shape' in this.model.changed ) {\n this.buildShape();\n }\n var _model_coords = new paper.Point(this.model.get(\"position\")),\n _baseRadius = this.options.node_size_base * Math.exp((this.model.get(\"size\") || 0) * Utils._NODE_SIZE_STEP);\n if (!this.is_dragging || !this.paper_coords) {\n this.paper_coords = this.renderer.toPaperCoords(_model_coords);\n }\n this.circle_radius = _baseRadius * this.renderer.scale;\n if (this.last_circle_radius !== this.circle_radius) {\n this.all_buttons.forEach(function(b) {\n b.setSectorSize();\n });\n this.circle.scale(this.circle_radius / this.last_circle_radius);\n if (this.node_image) {\n this.node_image.scale(this.circle_radius / this.last_circle_radius);\n }\n }\n this.circle.position = this.paper_coords;\n if (this.node_image) {\n this.node_image.position = this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius));\n }\n this.last_circle_radius = this.circle_radius;\n\n var old_act_btn = this.active_buttons;\n\n var opacity = 1;\n if (this.model.get(\"delete_scheduled\")) {\n opacity = 0.5;\n this.active_buttons = this.pending_delete_buttons;\n this.circle.dashArray = [2,2];\n } else {\n opacity = 1;\n this.active_buttons = this.normal_buttons;\n this.circle.dashArray = null;\n }\n if (this.selected && this.renderer.isEditable() && !this.ghost) {\n if (old_act_btn !== this.active_buttons) {\n old_act_btn.forEach(function(b) {\n b.hide();\n });\n }\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n\n if (this.node_image) {\n this.node_image.opacity = this.highlighted ? opacity * 0.5 : (opacity - 0.01);\n }\n\n this.circle.fillColor = this.highlighted ? this.options.highlighted_node_fill_color : this.options.node_fill_color;\n\n this.circle.opacity = this.options.show_node_circles ? opacity : 0.01;\n\n var _text = this.model.get(\"title\") || this.renkan.translate(this.options.label_untitled_nodes) || \"\";\n _text = Utils.shortenText(_text, this.options.node_label_max_length);\n\n if (typeof this.highlighted === \"object\") {\n this.title.html(this.highlighted.replace(_(_text).escape(),'$1'));\n } else {\n this.title.text(_text);\n }\n\n var _strokeWidth = this._getStrokeWidth();\n this.title.css({\n left: this.paper_coords.x,\n top: this.paper_coords.y + this.circle_radius * this.h_ratio + this.options.node_label_distance + 0.5*_strokeWidth,\n opacity: opacity\n });\n var _color = (this.model.has(\"style\") && this.model.get(\"style\").color) || (this.model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n _dash = (this.model.has(\"style\") && this.model.get(\"style\").dash) ? this.options.default_dash_array : null;\n this.circle.strokeWidth = _strokeWidth;\n this.circle.strokeColor = _color;\n this.circle.dashArray = _dash;\n var _pc = this.paper_coords;\n this.all_buttons.forEach(function(b) {\n b.moveTo(_pc);\n });\n var lastImage = this.img;\n this.img = this.model.get(\"image\");\n if (this.img && this.img !== lastImage) {\n this.showImage();\n if(this.circle) {\n this.circle.sendToBack();\n }\n }\n if (this.node_image && !this.img) {\n this.node_image.remove();\n delete this.node_image;\n }\n\n if (this.renderer.minimap) {\n this.minimap_circle.fillColor = _color;\n var minipos = this.renderer.toMinimapCoords(_model_coords),\n miniradius = this.renderer.minimap.scale * _baseRadius,\n minisize = new paper.Size([miniradius, miniradius]);\n this.minimap_circle.fitBounds(minipos.subtract(minisize), minisize.multiply(2));\n }\n\n if (typeof options === 'undefined' || !('dontRedrawEdges' in options) || !options.dontRedrawEdges) {\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.redraw();\n }\n }\n );\n }\n if (this.ghost){\n this.show(true);\n } else {\n if (this.hidden) { this.hide(); }\n }\n },\n showImage: function() {\n var _image = null;\n if (typeof this.renderer.image_cache[this.img] === \"undefined\") {\n _image = new Image();\n this.renderer.image_cache[this.img] = _image;\n _image.src = this.img;\n } else {\n _image = this.renderer.image_cache[this.img];\n }\n if (_image.width) {\n if (this.node_image) {\n this.node_image.remove();\n }\n this.renderer.node_layer.activate();\n var width = _image.width,\n height = _image.height,\n clipPath = this.model.get(\"clip_path\"),\n hasClipPath = (typeof clipPath !== \"undefined\" && clipPath),\n _clip = null,\n baseRadius = null,\n centerPoint = null;\n\n if (hasClipPath) {\n _clip = new paper.Path();\n var instructions = clipPath.match(/[a-z][^a-z]+/gi) || [],\n lastCoords = [0,0],\n minX = Infinity,\n minY = Infinity,\n maxX = -Infinity,\n maxY = -Infinity;\n\n var transformCoords = function(tabc, relative) {\n var newCoords = tabc.slice(1).map(function(v, k) {\n var res = parseFloat(v),\n isY = k % 2;\n if (isY) {\n res = ( res - 0.5 ) * height;\n } else {\n res = ( res - 0.5 ) * width;\n }\n if (relative) {\n res += lastCoords[isY];\n }\n if (isY) {\n minY = Math.min(minY, res);\n maxY = Math.max(maxY, res);\n } else {\n minX = Math.min(minX, res);\n maxX = Math.max(maxX, res);\n }\n return res;\n });\n lastCoords = newCoords.slice(-2);\n return newCoords;\n };\n\n instructions.forEach(function(instr) {\n var coords = instr.match(/([a-z]|[0-9.-]+)/ig) || [\"\"];\n switch(coords[0]) {\n case \"M\":\n _clip.moveTo(transformCoords(coords));\n break;\n case \"m\":\n _clip.moveTo(transformCoords(coords, true));\n break;\n case \"L\":\n _clip.lineTo(transformCoords(coords));\n break;\n case \"l\":\n _clip.lineTo(transformCoords(coords, true));\n break;\n case \"C\":\n _clip.cubicCurveTo(transformCoords(coords));\n break;\n case \"c\":\n _clip.cubicCurveTo(transformCoords(coords, true));\n break;\n case \"Q\":\n _clip.quadraticCurveTo(transformCoords(coords));\n break;\n case \"q\":\n _clip.quadraticCurveTo(transformCoords(coords, true));\n break;\n }\n });\n\n baseRadius = Math[this.options.node_images_fill_mode ? \"min\" : \"max\"](maxX - minX, maxY - minY) / 2;\n centerPoint = new paper.Point((maxX + minX) / 2, (maxY + minY) / 2);\n if (!this.options.show_node_circles) {\n this.h_ratio = (maxY - minY) / (2 * baseRadius);\n }\n } else {\n baseRadius = Math[this.options.node_images_fill_mode ? \"min\" : \"max\"](width, height) / 2;\n centerPoint = new paper.Point(0,0);\n if (!this.options.show_node_circles) {\n this.h_ratio = height / (2 * baseRadius);\n }\n }\n var _raster = new paper.Raster(_image);\n _raster.locked = true; // Disable mouse events on icon\n if (hasClipPath) {\n _raster = new paper.Group(_clip, _raster);\n _raster.opacity = 0.99;\n /* This is a workaround to allow clipping at group level\n * If opacity was set to 1, paper.js would merge all clipping groups in one (known bug).\n */\n _raster.clipped = true;\n _clip.__representation = this;\n }\n if (this.options.clip_node_images) {\n var _circleClip = this.shapeBuilder.getImageShape(centerPoint, baseRadius);\n _raster = new paper.Group(_circleClip, _raster);\n _raster.opacity = 0.99;\n _raster.clipped = true;\n _circleClip.__representation = this;\n }\n this.image_delta = centerPoint.divide(baseRadius);\n this.node_image = _raster;\n this.node_image.__representation = _this;\n this.node_image.scale(this.circle_radius / baseRadius);\n this.node_image.position = this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius));\n this.node_image.insertAbove(this.circle);\n } else {\n var _this = this;\n $(_image).on(\"load\", function() {\n _this.showImage();\n });\n }\n },\n paperShift: function(_delta) {\n if (this.options.editor_mode) {\n if (!this.renkan.read_only) {\n this.is_dragging = true;\n this.paper_coords = this.paper_coords.add(_delta);\n this.redraw();\n }\n } else {\n this.renderer.paperShift(_delta);\n }\n },\n openEditor: function() {\n this.renderer.removeRepresentationsOfType(\"editor\");\n var _editor = this.renderer.addRepresentation(\"NodeEditor\",null);\n _editor.source_representation = this;\n _editor.draw();\n },\n select: function() {\n this.selected = true;\n this.circle.strokeWidth = this._getSelectedStrokeWidth();\n if (this.renderer.isEditable() && !this.hidden) {\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n var _uri = this.model.get(\"uri\");\n if (_uri) {\n $('.Rk-Bin-Item').each(function() {\n var _el = $(this);\n if (_el.attr(\"data-uri\") === _uri) {\n _el.addClass(\"selected\");\n }\n });\n }\n if (!this.options.editor_mode) {\n this.openEditor();\n }\n\n if (this.renderer.minimap) {\n this.minimap_circle.strokeWidth = this.options.minimap_highlight_weight;\n this.minimap_circle.strokeColor = this.options.minimap_highlight_color;\n }\n //if the node is hidden and the mouse hover it, it appears as a ghost\n if (this.hidden) {\n this.show(true);\n }\n else {\n this.showNeighbors(true);\n }\n this._super(\"select\");\n },\n hideButtons: function() {\n this.all_buttons.forEach(function(b) {\n b.hide();\n });\n delete(this.buttonTimeout);\n },\n unselect: function(_newTarget) {\n if (!_newTarget || _newTarget.source_representation !== this) {\n this.selected = false;\n var _this = this;\n this.buttons_timeout = setTimeout(function() { _this.hideButtons(); }, 200);\n this.circle.strokeWidth = this._getStrokeWidth();\n $('.Rk-Bin-Item').removeClass(\"selected\");\n if (this.renderer.minimap) {\n this.minimap_circle.strokeColor = undefined;\n }\n //when the mouse don't hover the node anymore, we hide it\n if (this.hidden) {\n this.hide();\n }\n else {\n this.hideNeighbors();\n }\n this._super(\"unselect\");\n }\n },\n hide: function(){\n var _this = this;\n this.ghost = false;\n this.hidden = true;\n if (typeof this.node_image !== 'undefined'){\n this.node_image.opacity = 0;\n }\n this.hideButtons();\n this.circle.opacity = 0;\n this.title.css('opacity', 0);\n this.minimap_circle.opacity = 0;\n\n\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.hide();\n }\n }\n );\n this.hideNeighbors();\n },\n show: function(ghost){\n var _this = this;\n this.ghost = ghost;\n if (this.ghost){\n if (typeof this.node_image !== 'undefined'){\n this.node_image.opacity = this.options.ghost_opacity;\n }\n this.circle.opacity = this.options.ghost_opacity;\n this.title.css('opacity', this.options.ghost_opacity);\n this.minimap_circle.opacity = this.options.ghost_opacity;\n } else {\n this.hidden = false;\n this.redraw();\n }\n\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.show(_this.ghost);\n }\n }\n );\n },\n hideNeighbors: function(){\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return (ed.get(\"from\") === _this.model);\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge.get(\"to\"));\n if (repr && repr.ghost) {\n repr.hide();\n }\n }\n );\n },\n showNeighbors: function(ghost){\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return (ed.get(\"from\") === _this.model);\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge.get(\"to\"));\n if (repr && repr.hidden) {\n repr.show(ghost);\n if (!ghost){\n var indexNode = _this.renderer.hiddenNodes.indexOf(repr.model.id);\n if (indexNode !== -1){\n _this.renderer.hiddenNodes.splice(indexNode, 1);\n }\n }\n }\n }\n );\n },\n highlight: function(textToReplace) {\n var hlvalue = textToReplace || true;\n if (this.highlighted === hlvalue) {\n return;\n }\n this.highlighted = hlvalue;\n this.redraw();\n this.renderer.throttledPaperDraw();\n },\n unhighlight: function() {\n if (!this.highlighted) {\n return;\n }\n this.highlighted = false;\n this.redraw();\n this.renderer.throttledPaperDraw();\n },\n saveCoords: function() {\n var _coords = this.renderer.toModelCoords(this.paper_coords),\n _data = {\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n if (this.renderer.isEditable()) {\n this.model.set(_data);\n }\n },\n mousedown: function(_event, _isTouch) {\n if (_isTouch) {\n this.renderer.unselectAll();\n this.select();\n }\n },\n mouseup: function(_event, _isTouch) {\n if (this.renderer.is_dragging && this.renderer.isEditable()) {\n this.saveCoords();\n } else {\n if (this.hidden) {\n var index = this.renderer.hiddenNodes.indexOf(this.model.id);\n if (index !== -1){\n this.renderer.hiddenNodes.splice(index, 1);\n }\n this.show(false);\n this.select();\n } else {\n if (!_isTouch && !this.model.get(\"delete_scheduled\")) {\n this.openEditor();\n }\n this.model.trigger(\"clicked\");\n }\n }\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.is_dragging = false;\n },\n destroy: function(_event) {\n this._super(\"destroy\");\n this.all_buttons.forEach(function(b) {\n b.destroy();\n });\n this.circle.remove();\n this.title.remove();\n if (this.renderer.minimap) {\n this.minimap_circle.remove();\n }\n if (this.node_image) {\n this.node_image.remove();\n }\n }\n }).value();\n\n return NodeRepr;\n\n});\n\n\ndefine('renderer/edge',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* Edge Class Begin */\n\n //var Edge = Renderer.Edge = Utils.inherit(Renderer._BaseRepresentation);\n var Edge = Utils.inherit(BaseRepresentation);\n\n _(Edge.prototype).extend({\n _init: function() {\n this.renderer.edge_layer.activate();\n this.type = \"Edge\";\n this.hidden = false;\n this.ghost = false;\n this.from_representation = this.renderer.getRepresentationByModel(this.model.get(\"from\"));\n this.to_representation = this.renderer.getRepresentationByModel(this.model.get(\"to\"));\n this.bundle = this.renderer.addToBundles(this);\n this.line = new paper.Path();\n this.line.add([0,0],[0,0],[0,0]);\n this.line.__representation = this;\n this.line.strokeWidth = this.options.edge_stroke_width;\n this.arrow_scale = 1;\n this.arrow = new paper.Path();\n this.arrow.add(\n [ 0, 0 ],\n [ this.options.edge_arrow_length, this.options.edge_arrow_width / 2 ],\n [ 0, this.options.edge_arrow_width ]\n );\n this.arrow.pivot = new paper.Point([ this.options.edge_arrow_length / 2, this.options.edge_arrow_width / 2 ]);\n this.arrow.__representation = this;\n this.text = $('
                            ').appendTo(this.renderer.labels_$);\n this.arrow_angle = 0;\n if (this.options.editor_mode) {\n var Renderer = requtils.getRenderer();\n this.normal_buttons = [\n new Renderer.EdgeEditButton(this.renderer, null),\n new Renderer.EdgeRemoveButton(this.renderer, null)\n ];\n this.pending_delete_buttons = [\n new Renderer.EdgeRevertButton(this.renderer, null)\n ];\n this.all_buttons = this.normal_buttons.concat(this.pending_delete_buttons);\n for (var i = 0; i < this.all_buttons.length; i++) {\n this.all_buttons[i].source_representation = this;\n }\n this.active_buttons = [];\n } else {\n this.active_buttons = this.all_buttons = [];\n }\n\n if (this.renderer.minimap) {\n this.renderer.minimap.edge_layer.activate();\n this.minimap_line = new paper.Path();\n this.minimap_line.add([0,0],[0,0]);\n this.minimap_line.__representation = this.renderer.minimap.miniframe.__representation;\n this.minimap_line.strokeWidth = 1;\n }\n },\n _getStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.edge_stroke_width + (thickness-1) * (this.options.edge_stroke_max_width - this.options.edge_stroke_width) / (this.options.edge_stroke_witdh_scale-1);\n },\n _getSelectedStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.selected_edge_stroke_width + (thickness-1) * (this.options.selected_edge_stroke_max_width - this.options.selected_edge_stroke_width) / (this.options.edge_stroke_witdh_scale-1);\n },\n _getArrowScale: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return 1 + (thickness-1) * ((this.options.edge_arrow_max_width / this.options.edge_arrow_width) - 1) / (this.options.edge_stroke_witdh_scale-1);\n },\n redraw: function() {\n var from = this.model.get(\"from\"),\n to = this.model.get(\"to\");\n if (!from || !to || (this.hidden && !this.ghost)) {\n return;\n }\n this.from_representation = this.renderer.getRepresentationByModel(from);\n this.to_representation = this.renderer.getRepresentationByModel(to);\n if (typeof this.from_representation === \"undefined\" || typeof this.to_representation === \"undefined\" ||\n (this.from_representation.hidden && !this.from_representation.ghost) ||\n (this.to_representation.hidden && !this.to_representation.ghost)) {\n this.hide();\n return;\n }\n var _strokeWidth = this._getStrokeWidth(),\n _arrow_scale = this._getArrowScale(),\n _p0a = this.from_representation.paper_coords,\n _p1a = this.to_representation.paper_coords,\n _v = _p1a.subtract(_p0a),\n _r = _v.length,\n _u = _v.divide(_r),\n _ortho = new paper.Point([- _u.y, _u.x]),\n _group_pos = this.bundle.getPosition(this),\n _delta = _ortho.multiply( this.options.edge_gap_in_bundles * _group_pos ),\n _p0b = _p0a.add(_delta), /* Adding a 4 px difference */\n _p1b = _p1a.add(_delta), /* to differentiate bundled links */\n _a = _v.angle,\n _textdelta = _ortho.multiply(this.options.edge_label_distance + 0.5 * _arrow_scale * this.options.edge_arrow_width),\n _handle = _v.divide(3),\n _color = (this.model.has(\"style\") && this.model.get(\"style\").color) || (this.model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n _dash = (this.model.has(\"style\") && this.model.get(\"style\").dash) ? this.options.default_dash_array : null,\n _opacity;\n\n if (this.model.get(\"delete_scheduled\") || this.from_representation.model.get(\"delete_scheduled\") || this.to_representation.model.get(\"delete_scheduled\")) {\n _opacity = 0.5;\n this.line.dashArray = [2, 2];\n } else {\n _opacity = this.ghost ? this.options.ghost_opacity : 1;\n this.line.dashArray = null;\n }\n\n var old_act_btn = this.active_buttons;\n\n this.arrow.visible =\n (this.model.has(\"style\") && this.model.get(\"style\").arrow) ||\n !this.model.has(\"style\") ||\n typeof this.model.get(\"style\").arrow === 'undefined';\n\n this.active_buttons = this.model.get(\"delete_scheduled\") ? this.pending_delete_buttons : this.normal_buttons;\n\n if (this.selected && this.renderer.isEditable() && old_act_btn !== this.active_buttons) {\n old_act_btn.forEach(function(b) {\n b.hide();\n });\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n\n this.paper_coords = _p0b.add(_p1b).divide(2);\n this.line.strokeWidth = _strokeWidth;\n this.line.strokeColor = _color;\n this.line.dashArray = _dash;\n this.line.opacity = _opacity;\n this.line.segments[0].point = _p0a;\n this.line.segments[1].point = this.paper_coords;\n this.line.segments[1].handleIn = _handle.multiply(-1);\n this.line.segments[1].handleOut = _handle;\n this.line.segments[2].point = _p1a;\n this.arrow.scale(_arrow_scale / this.arrow_scale);\n this.arrow_scale = _arrow_scale;\n this.arrow.fillColor = _color;\n this.arrow.opacity = _opacity;\n this.arrow.rotate(_a - this.arrow_angle, this.arrow.bounds.center);\n this.arrow.position = this.paper_coords;\n\n this.arrow_angle = _a;\n if (_a > 90) {\n _a -= 180;\n _textdelta = _textdelta.multiply(-1);\n }\n if (_a < -90) {\n _a += 180;\n _textdelta = _textdelta.multiply(-1);\n }\n var _text = this.model.get(\"title\") || this.renkan.translate(this.options.label_untitled_edges) || \"\";\n _text = Utils.shortenText(_text, this.options.node_label_max_length);\n this.text.text(_text);\n var _textpos = this.paper_coords.add(_textdelta);\n this.text.css({\n left: _textpos.x,\n top: _textpos.y,\n transform: \"rotate(\" + _a + \"deg)\",\n \"-moz-transform\": \"rotate(\" + _a + \"deg)\",\n \"-webkit-transform\": \"rotate(\" + _a + \"deg)\",\n opacity: _opacity\n });\n this.text_angle = _a;\n\n var _pc = this.paper_coords;\n this.all_buttons.forEach(function(b) {\n b.moveTo(_pc);\n });\n\n if (this.renderer.minimap) {\n this.minimap_line.strokeColor = _color;\n this.minimap_line.segments[0].point = this.renderer.toMinimapCoords(new paper.Point(this.from_representation.model.get(\"position\")));\n this.minimap_line.segments[1].point = this.renderer.toMinimapCoords(new paper.Point(this.to_representation.model.get(\"position\")));\n }\n },\n hide: function(){\n this.hidden = true;\n this.ghost = false;\n\n this.text.hide();\n this.line.visible = false;\n this.arrow.visible = false;\n this.minimap_line.visible = false;\n },\n show: function(ghost){\n this.ghost = ghost;\n if (this.ghost) {\n this.text.css('opacity', 0.3);\n this.line.opacity = 0.3;\n this.arrow.opacity = 0.3;\n this.minimap_line.opacity = 0.3;\n } else {\n this.hidden = false;\n\n this.text.css('opacity', 1);\n this.line.opacity = 1;\n this.arrow.opacity = 1;\n this.minimap_line.opacity = 1;\n }\n this.text.show();\n this.line.visible = true;\n this.arrow.visible = true;\n this.minimap_line.visible = true;\n this.redraw();\n },\n openEditor: function() {\n this.renderer.removeRepresentationsOfType(\"editor\");\n var _editor = this.renderer.addRepresentation(\"EdgeEditor\",null);\n _editor.source_representation = this;\n _editor.draw();\n },\n select: function() {\n this.selected = true;\n this.line.strokeWidth = this._getSelectedStrokeWidth();\n if (this.renderer.isEditable()) {\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n if (!this.options.editor_mode) {\n this.openEditor();\n }\n this._super(\"select\");\n },\n unselect: function(_newTarget) {\n if (!_newTarget || _newTarget.source_representation !== this) {\n this.selected = false;\n if (this.options.editor_mode) {\n this.all_buttons.forEach(function(b) {\n b.hide();\n });\n }\n this.line.strokeWidth = this._getStrokeWidth();\n this._super(\"unselect\");\n }\n },\n mousedown: function(_event, _isTouch) {\n if (_isTouch) {\n this.renderer.unselectAll();\n this.select();\n }\n },\n mouseup: function(_event, _isTouch) {\n if (!this.renkan.read_only && this.renderer.is_dragging) {\n this.from_representation.saveCoords();\n this.to_representation.saveCoords();\n this.from_representation.is_dragging = false;\n this.to_representation.is_dragging = false;\n } else {\n if (!_isTouch) {\n this.openEditor();\n }\n this.model.trigger(\"clicked\");\n }\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n },\n paperShift: function(_delta) {\n if (this.options.editor_mode) {\n if (!this.options.read_only) {\n this.from_representation.paperShift(_delta);\n this.to_representation.paperShift(_delta);\n }\n } else {\n this.renderer.paperShift(_delta);\n }\n },\n destroy: function() {\n this._super(\"destroy\");\n this.line.remove();\n this.arrow.remove();\n this.text.remove();\n if (this.renderer.minimap) {\n this.minimap_line.remove();\n }\n this.all_buttons.forEach(function(b) {\n b.destroy();\n });\n var _this = this;\n this.bundle.edges = _.reject(this.bundle.edges, function(_edge) {\n return _this === _edge;\n });\n }\n }).value();\n\n return Edge;\n\n});\n\n\n\ndefine('renderer/tempedge',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* TempEdge Class Begin */\n\n //var TempEdge = Renderer.TempEdge = Utils.inherit(Renderer._BaseRepresentation);\n var TempEdge = Utils.inherit(BaseRepresentation);\n\n _(TempEdge.prototype).extend({\n _init: function() {\n this.renderer.edge_layer.activate();\n this.type = \"Temp-edge\";\n\n var _color = (this.project.get(\"users\").get(this.renkan.current_user) || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\");\n this.line = new paper.Path();\n this.line.strokeColor = _color;\n this.line.dashArray = [4, 2];\n this.line.strokeWidth = this.options.selected_edge_stroke_width;\n this.line.add([0,0],[0,0]);\n this.line.__representation = this;\n this.arrow = new paper.Path();\n this.arrow.fillColor = _color;\n this.arrow.add(\n [ 0, 0 ],\n [ this.options.edge_arrow_length, this.options.edge_arrow_width / 2 ],\n [ 0, this.options.edge_arrow_width ]\n );\n this.arrow.__representation = this;\n this.arrow_angle = 0;\n },\n redraw: function() {\n var _p0 = this.from_representation.paper_coords,\n _p1 = this.end_pos,\n _a = _p1.subtract(_p0).angle,\n _c = _p0.add(_p1).divide(2);\n this.line.segments[0].point = _p0;\n this.line.segments[1].point = _p1;\n this.arrow.rotate(_a - this.arrow_angle);\n this.arrow.position = _c;\n this.arrow_angle = _a;\n },\n paperShift: function(_delta) {\n if (!this.renderer.isEditable()) {\n this.renderer.removeRepresentation(_this);\n paper.view.draw();\n return;\n }\n this.end_pos = this.end_pos.add(_delta);\n var _hitResult = paper.project.hitTest(this.end_pos);\n this.renderer.findTarget(_hitResult);\n this.redraw();\n },\n mouseup: function(_event, _isTouch) {\n var _hitResult = paper.project.hitTest(_event.point),\n _model = this.from_representation.model,\n _endDrag = true;\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n var _target = _hitResult.item.__representation;\n if (_target.type.substr(0,4) === \"Node\") {\n var _destmodel = _target.model || _target.source_representation.model;\n if (_model !== _destmodel) {\n var _data = {\n id: Utils.getUID('edge'),\n created_by: this.renkan.current_user,\n from: _model,\n to: _destmodel\n };\n if (this.renderer.isEditable()) {\n this.project.addEdge(_data);\n }\n }\n }\n\n if (_model === _target.model || (_target.source_representation && _target.source_representation.model === _model)) {\n _endDrag = false;\n this.renderer.is_dragging = true;\n }\n }\n if (_endDrag) {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentation(this);\n paper.view.draw();\n }\n },\n destroy: function() {\n this.arrow.remove();\n this.line.remove();\n }\n }).value();\n\n /* TempEdge Class End */\n\n return TempEdge;\n\n});\n\n\ndefine('renderer/baseeditor',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* _BaseEditor Begin */\n //var _BaseEditor = Renderer._BaseEditor = Utils.inherit(Renderer._BaseRepresentation);\n var _BaseEditor = Utils.inherit(BaseRepresentation);\n\n _(_BaseEditor.prototype).extend({\n _init: function() {\n this.renderer.buttons_layer.activate();\n this.type = \"editor\";\n this.editor_block = new paper.Path();\n var _pts = _.map(_.range(8), function() {return [0,0];});\n this.editor_block.add.apply(this.editor_block, _pts);\n this.editor_block.strokeWidth = this.options.tooltip_border_width;\n this.editor_block.strokeColor = this.options.tooltip_border_color;\n this.editor_block.opacity = 0.8;\n this.editor_$ = $('
                            ')\n .appendTo(this.renderer.editor_$)\n .css({\n position: \"absolute\",\n opacity: 0.8\n })\n .hide();\n },\n destroy: function() {\n this.editor_block.remove();\n this.editor_$.remove();\n }\n }).value();\n\n /* _BaseEditor End */\n\n return _BaseEditor;\n\n});\n\n\ndefine('renderer/nodeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor', 'renderer/shapebuilder', 'ckeditor-jquery'], function ($, _, requtils, BaseEditor, ShapeBuilder) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEditor Begin */\n //var NodeEditor = Renderer.NodeEditor = Utils.inherit(Renderer._BaseEditor);\n var NodeEditor = Utils.inherit(BaseEditor);\n\n _(NodeEditor.prototype).extend({\n _init: function() {\n BaseEditor.prototype._init.apply(this);\n this.template = this.options.templates['templates/nodeeditor.html'];\n //this.templates['default']= this.options.templates['templates/nodeeditor.html'];\n //fusionner avec this.options.node_editor_templates\n this.readOnlyTemplate = this.options.node_editor_templates;\n },\n draw: function() {\n var _model = this.source_representation.model,\n _created_by = _model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan),\n _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate[_model.get(\"type\")] || this.readOnlyTemplate[\"default\"]),\n _image_placeholder = this.options.static_url + \"img/image-placeholder.png\",\n _size = (_model.get(\"size\") || 0);\n this.editor_$\n .html(_template({\n node: {\n _id: _model.get(\"_id\"),\n has_creator: !!_model.get(\"created_by\"),\n title: _model.get(\"title\"),\n uri: _model.get(\"uri\"),\n type: _model.get(\"type\") || \"default\",\n short_uri: Utils.shortenText((_model.get(\"uri\") || \"\").replace(/^(https?:\\/\\/)?(www\\.)?/,'').replace(/\\/$/,''),40),\n description: _model.get(\"description\"),\n image: _model.get(\"image\") || \"\",\n image_placeholder: _image_placeholder,\n color: (_model.has(\"style\") && _model.get(\"style\").color) || _created_by.get(\"color\"),\n thickness: (_model.has(\"style\") && _model.get(\"style\").thickness) || 1,\n dash: _model.has(\"style\") && _model.get(\"style\").dash ? \"checked\" : \"\",\n clip_path: _model.get(\"clip_path\") || false,\n created_by_color: _created_by.get(\"color\"),\n created_by_title: _created_by.get(\"title\"),\n size: (_size > 0 ? \"+\" : \"\") + _size,\n shape: _model.get(\"shape\") || \"circle\"\n },\n renkan: this.renkan,\n options: this.options,\n shortenText: Utils.shortenText,\n shapes : _(ShapeBuilder.builders).omit('svg').keys().value(),\n types : _(this.options.node_editor_templates).keys().value(),\n }));\n this.redraw();\n var _this = this,\n editorInstance = _this.options.show_node_editor_description_richtext ?\n $(\".Rk-Edit-Description\").ckeditor(_this.options.richtext_editor_config) :\n false,\n closeEditor = function() {\n _this.renderer.removeRepresentation(_this);\n paper.view.draw();\n };\n\n _this.cleanEditor = function() {\n _this.editor_$.off(\"keyup\");\n _this.editor_$.find(\"input, textarea, select\").off(\"change keyup paste\");\n _this.editor_$.find(\".Rk-Edit-Image-File\").off('change');\n _this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").off('hover');\n _this.editor_$.find(\".Rk-Edit-Size-Btn\").off('click');\n _this.editor_$.find(\".Rk-Edit-Image-Del\").off('click');\n _this.editor_$.find(\".Rk-Edit-ColorPicker\").find(\"li\").off('hover click');\n _this.editor_$.find(\".Rk-CloseX\").off('click');\n _this.editor_$.find(\".Rk-Edit-Goto\").off('click');\n\n if(_this.options.show_node_editor_description_richtext) {\n if(typeof editorInstance.editor !== 'undefined') {\n var _editor = editorInstance.editor;\n delete editorInstance.editor;\n _editor.focusManager.blur(true);\n _editor.destroy();\n }\n }\n };\n\n this.editor_$.find(\".Rk-CloseX\").click(function (e) {\n e.preventDefault();\n closeEditor();\n });\n\n this.editor_$.find(\".Rk-Edit-Goto\").click(function() {\n if (!_model.get(\"uri\")) {\n return false;\n }\n });\n\n if (this.renderer.isEditable()) {\n\n var onFieldChange = _.throttle(function() {\n _.defer(function() {\n if (_this.renderer.isEditable()) {\n var _data = {\n title: _this.editor_$.find(\".Rk-Edit-Title\").val()\n };\n if (_this.options.show_node_editor_uri) {\n _data.uri = _this.editor_$.find(\".Rk-Edit-URI\").val();\n _this.editor_$.find(\".Rk-Edit-Goto\").attr(\"href\",_data.uri || \"#\");\n }\n if (_this.options.show_node_editor_image) {\n _data.image = _this.editor_$.find(\".Rk-Edit-Image\").val();\n _this.editor_$.find(\".Rk-Edit-ImgPreview\").attr(\"src\", _data.image || _image_placeholder);\n }\n if (_this.options.show_node_editor_description) {\n if(_this.options.show_node_editor_description_richtext) {\n if(typeof editorInstance.editor !== 'undefined' &&\n editorInstance.editor.checkDirty()) {\n _data.description = editorInstance.editor.getData();\n editorInstance.editor.resetDirty();\n }\n }\n else {\n _data.description = _this.editor_$.find(\".Rk-Edit-Description\").val();\n }\n }\n if (_this.options.show_node_editor_style) {\n var dash = _this.editor_$.find(\".Rk-Edit-Dash\").is(':checked');\n _data.style = _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {dash: dash});\n }\n if (_this.options.change_shapes) {\n if(_model.get(\"shape\")!==_this.editor_$.find(\".Rk-Edit-Shape\").val()){\n _data.shape = _this.editor_$.find(\".Rk-Edit-Shape\").val();\n }\n }\n if (_this.options.change_types) {\n if(_model.get(\"type\")!==_this.editor_$.find(\".Rk-Edit-Type\").val()){\n _data.type = _this.editor_$.find(\".Rk-Edit-Type\").val();\n }\n }\n _model.set(_data);\n _this.redraw();\n } else {\n closeEditor();\n }\n });\n }, 1000);\n\n this.editor_$.on(\"keyup\", function(_e) {\n if (_e.keyCode === 27) {\n closeEditor();\n }\n });\n\n this.editor_$.find(\"input, textarea, select\").on(\"change keyup paste\", onFieldChange);\n if( _this.options.show_node_editor_description &&\n _this.options.show_node_editor_description_richtext &&\n typeof editorInstance.editor !== 'undefined')\n {\n editorInstance.editor.on(\"change\", onFieldChange);\n editorInstance.editor.on(\"blur\", onFieldChange);\n }\n\n if(_this.options.allow_image_upload) {\n this.editor_$.find(\".Rk-Edit-Image-File\").change(function() {\n if (this.files.length) {\n var f = this.files[0],\n fr = new FileReader();\n if (f.type.substr(0,5) !== \"image\") {\n alert(_this.renkan.translate(\"This file is not an image\"));\n return;\n }\n if (f.size > (_this.options.uploaded_image_max_kb * 1024)) {\n alert(_this.renkan.translate(\"Image size must be under \") + _this.options.uploaded_image_max_kb + _this.renkan.translate(\"KB\"));\n return;\n }\n fr.onload = function(e) {\n _this.editor_$.find(\".Rk-Edit-Image\").val(e.target.result);\n onFieldChange();\n };\n fr.readAsDataURL(f);\n }\n });\n }\n this.editor_$.find(\".Rk-Edit-Title\")[0].focus();\n\n var _picker = _this.editor_$.find(\".Rk-Edit-ColorPicker\");\n\n this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").hover(\n function(_e) {\n _e.preventDefault();\n _picker.show();\n },\n function(_e) {\n _e.preventDefault();\n _picker.hide();\n }\n );\n\n _picker.find(\"li\").hover(\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", $(this).attr(\"data-color\"));\n },\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", (_model.has(\"style\") && _model.get(\"style\").color) || (_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(_this.renkan)).get(\"color\"));\n }\n ).click(function(_e) {\n _e.preventDefault();\n if (_this.renderer.isEditable()) {\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {color: $(this).attr(\"data-color\")}));\n _picker.hide();\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n\n var shiftSize = function(n) {\n if (_this.renderer.isEditable()) {\n var _newsize = n+(_model.get(\"size\") || 0);\n _this.editor_$.find(\"#Rk-Edit-Size-Value\").text((_newsize > 0 ? \"+\" : \"\") + _newsize);\n _model.set(\"size\", _newsize);\n paper.view.draw();\n } else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Size-Down\").click(function() {\n shiftSize(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Size-Up\").click(function() {\n shiftSize(1);\n return false;\n });\n\n var shiftThickness = function(n) {\n if (_this.renderer.isEditable()) {\n var _oldThickness = ((_model.has('style') && _model.get('style').thickness) || 1),\n _newThickness = n + _oldThickness;\n if(_newThickness < 1 ) {\n _newThickness = 1;\n }\n else if (_newThickness > _this.options.node_stroke_witdh_scale) {\n _newThickness = _this.options.node_stroke_witdh_scale;\n }\n if (_newThickness !== _oldThickness) {\n _this.editor_$.find(\"#Rk-Edit-Thickness-Value\").text(_newThickness);\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {thickness: _newThickness}));\n paper.view.draw();\n }\n }\n else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Thickness-Down\").click(function() {\n shiftThickness(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Thickness-Up\").click(function() {\n shiftThickness(1);\n return false;\n });\n\n this.editor_$.find(\".Rk-Edit-Image-Del\").click(function() {\n _this.editor_$.find(\".Rk-Edit-Image\").val('');\n onFieldChange();\n return false;\n });\n } else {\n if (typeof this.source_representation.highlighted === \"object\") {\n var titlehtml = this.source_representation.highlighted.replace(_(_model.get(\"title\")).escape(),'$1');\n this.editor_$.find(\".Rk-Display-Title\" + (_model.get(\"uri\") ? \" a\" : \"\")).html(titlehtml);\n if (this.options.show_node_tooltip_description) {\n this.editor_$.find(\".Rk-Display-Description\").html(this.source_representation.highlighted.replace(_(_model.get(\"description\")).escape(),'$1'));\n }\n }\n }\n this.editor_$.find(\"img\").load(function() {\n _this.redraw();\n });\n },\n redraw: function() {\n if (this.options.popup_editor){\n var _coords = this.source_representation.paper_coords;\n Utils.drawEditBox(this.options, _coords, this.editor_block, this.source_representation.circle_radius * 0.75, this.editor_$);\n }\n this.editor_$.show();\n paper.view.draw();\n },\n destroy: function() {\n if(typeof this.cleanEditor !== 'undefined') {\n this.cleanEditor();\n }\n this.editor_block.remove();\n this.editor_$.remove();\n }\n }).value();\n\n /* NodeEditor End */\n\n return NodeEditor;\n\n});\n\n\ndefine('renderer/edgeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor'], function ($, _, requtils, BaseEditor) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeEditor Begin */\n\n //var EdgeEditor = Renderer.EdgeEditor = Utils.inherit(Renderer._BaseEditor);\n var EdgeEditor = Utils.inherit(BaseEditor);\n\n _(EdgeEditor.prototype).extend({\n _init: function() {\n BaseEditor.prototype._init.apply(this);\n this.template = this.options.templates['templates/edgeeditor.html'];\n this.readOnlyTemplate = this.options.templates['templates/edgeeditor_readonly.html'];\n },\n draw: function() {\n var _model = this.source_representation.model,\n _from_model = _model.get(\"from\"),\n _to_model = _model.get(\"to\"),\n _created_by = _model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan),\n _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate);\n this.editor_$\n .html(_template({\n edge: {\n has_creator: !!_model.get(\"created_by\"),\n title: _model.get(\"title\"),\n uri: _model.get(\"uri\"),\n short_uri: Utils.shortenText((_model.get(\"uri\") || \"\").replace(/^(https?:\\/\\/)?(www\\.)?/,'').replace(/\\/$/,''),40),\n description: _model.get(\"description\"),\n color: (_model.has(\"style\") && _model.get(\"style\").color) || _created_by.get(\"color\"),\n dash: _model.has(\"style\") && _model.get(\"style\").dash ? \"checked\" : \"\",\n arrow: (_model.has(\"style\") && _model.get(\"style\").arrow) || !_model.has(\"style\") || (typeof _model.get(\"style\").arrow === 'undefined') ? \"checked\" : \"\",\n thickness: (_model.has(\"style\") && _model.get(\"style\").thickness) || 1,\n from_title: _from_model.get(\"title\"),\n to_title: _to_model.get(\"title\"),\n from_color: (_from_model.has(\"style\") && _from_model.get(\"style\").color) || (_from_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n to_color: (_to_model.has(\"style\") && _to_model.get(\"style\").color) || (_to_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n created_by_color: _created_by.get(\"color\"),\n created_by_title: _created_by.get(\"title\")\n },\n renkan: this.renkan,\n shortenText: Utils.shortenText,\n options: this.options\n }));\n this.redraw();\n var _this = this,\n closeEditor = function() {\n _this.renderer.removeRepresentation(_this);\n _this.editor_$.find(\".Rk-Edit-Size-Btn\").off('click');\n paper.view.draw();\n };\n this.editor_$.find(\".Rk-CloseX\").click(closeEditor);\n this.editor_$.find(\".Rk-Edit-Goto\").click(function() {\n if (!_model.get(\"uri\")) {\n return false;\n }\n });\n\n if (this.renderer.isEditable()) {\n\n var onFieldChange = _.throttle(function() {\n _.defer(function() {\n if (_this.renderer.isEditable()) {\n var _data = {\n title: _this.editor_$.find(\".Rk-Edit-Title\").val()\n };\n if (_this.options.show_edge_editor_uri) {\n _data.uri = _this.editor_$.find(\".Rk-Edit-URI\").val();\n }\n if (_this.options.show_node_editor_style) {\n var dash = _this.editor_$.find(\".Rk-Edit-Dash\").is(':checked'),\n arrow = _this.editor_$.find(\".Rk-Edit-Arrow\").is(':checked');\n _data.style = _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {dash: dash, arrow: arrow});\n }\n _this.editor_$.find(\".Rk-Edit-Goto\").attr(\"href\",_data.uri || \"#\");\n _model.set(_data);\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n },500);\n\n this.editor_$.on(\"keyup\", function(_e) {\n if (_e.keyCode === 27) {\n closeEditor();\n }\n });\n\n this.editor_$.find(\"input\").on(\"keyup change paste\", onFieldChange);\n\n this.editor_$.find(\".Rk-Edit-Vocabulary\").change(function() {\n var e = $(this),\n v = e.val();\n if (v) {\n _this.editor_$.find(\".Rk-Edit-Title\").val(e.find(\":selected\").text());\n _this.editor_$.find(\".Rk-Edit-URI\").val(v);\n onFieldChange();\n }\n });\n this.editor_$.find(\".Rk-Edit-Direction\").click(function() {\n if (_this.renderer.isEditable()) {\n _model.set({\n from: _model.get(\"to\"),\n to: _model.get(\"from\")\n });\n _this.draw();\n } else {\n closeEditor();\n }\n });\n\n var _picker = _this.editor_$.find(\".Rk-Edit-ColorPicker\");\n\n this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").hover(\n function(_e) {\n _e.preventDefault();\n _picker.show();\n },\n function(_e) {\n _e.preventDefault();\n _picker.hide();\n }\n );\n\n _picker.find(\"li\").hover(\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", $(this).attr(\"data-color\"));\n },\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", (_model.has(\"style\") && _model.get(\"style\").color)|| (_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(_this.renkan)).get(\"color\"));\n }\n ).click(function(_e) {\n _e.preventDefault();\n if (_this.renderer.isEditable()) {\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {color: $(this).attr(\"data-color\")}));\n _picker.hide();\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n var shiftThickness = function(n) {\n if (_this.renderer.isEditable()) {\n var _oldThickness = ((_model.has('style') && _model.get('style').thickness) || 1),\n _newThickness = n + _oldThickness;\n if(_newThickness < 1 ) {\n _newThickness = 1;\n }\n else if (_newThickness > _this.options.node_stroke_witdh_scale) {\n _newThickness = _this.options.node_stroke_witdh_scale;\n }\n if (_newThickness !== _oldThickness) {\n _this.editor_$.find(\"#Rk-Edit-Thickness-Value\").text(_newThickness);\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {thickness: _newThickness}));\n paper.view.draw();\n }\n }\n else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Thickness-Down\").click(function() {\n shiftThickness(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Thickness-Up\").click(function() {\n shiftThickness(1);\n return false;\n });\n }\n },\n redraw: function() {\n if (this.options.popup_editor){\n var _coords = this.source_representation.paper_coords;\n Utils.drawEditBox(this.options, _coords, this.editor_block, 5, this.editor_$);\n }\n this.editor_$.show();\n paper.view.draw();\n }\n }).value();\n\n /* EdgeEditor End */\n\n return EdgeEditor;\n\n});\n\n\ndefine('renderer/nodebutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* _NodeButton Begin */\n\n //var _NodeButton = Renderer._NodeButton = Utils.inherit(Renderer._BaseButton);\n var _NodeButton = Utils.inherit(BaseButton);\n\n _(_NodeButton.prototype).extend({\n setSectorSize: function() {\n var sectorInner = this.source_representation.circle_radius;\n if (sectorInner !== this.lastSectorInner) {\n if (this.sector) {\n this.sector.destroy();\n }\n this.sector = this.renderer.drawSector(\n this, 1 + sectorInner,\n Utils._NODE_BUTTON_WIDTH + sectorInner,\n this.startAngle,\n this.endAngle,\n 1,\n this.imageName,\n this.renkan.translate(this.text)\n );\n this.lastSectorInner = sectorInner;\n }\n },\n unselect: function() {\n BaseButton.prototype.unselect.apply(this, Array.prototype.slice.call(arguments, 1));\n if(this.source_representation && this.source_representation.buttons_timeout) {\n clearTimeout(this.source_representation.buttons_timeout);\n this.source_representation.hideButtons();\n }\n },\n select: function() {\n if(this.source_representation && this.source_representation.buttons_timeout) {\n clearTimeout(this.source_representation.buttons_timeout);\n }\n this.sector.select();\n },\n }).value();\n\n\n /* _NodeButton End */\n\n return _NodeButton;\n\n});\n\n\ndefine('renderer/nodeeditbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEditButton Begin */\n\n //var NodeEditButton = Renderer.NodeEditButton = Utils.inherit(Renderer._NodeButton);\n var NodeEditButton = Utils.inherit(NodeButton);\n\n _(NodeEditButton.prototype).extend({\n _init: function() {\n this.type = \"Node-edit-button\";\n this.lastSectorInner = 0;\n this.startAngle = this.options.hide_nodes ? -125 : -135;\n this.endAngle = this.options.hide_nodes ? -55 : -45;\n this.imageName = \"edit\";\n this.text = \"Edit\";\n },\n mouseup: function() {\n if (!this.renderer.is_dragging) {\n this.source_representation.openEditor();\n }\n }\n }).value();\n\n /* NodeEditButton End */\n\n return NodeEditButton;\n\n});\n\n\ndefine('renderer/noderemovebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeRemoveButton = Utils.inherit(NodeButton);\n\n _(NodeRemoveButton.prototype).extend({\n _init: function() {\n this.type = \"Node-remove-button\";\n this.lastSectorInner = 0;\n this.startAngle = this.options.hide_nodes ? -10 : 0;\n this.endAngle = this.options.hide_nodes ? 45 : 90;\n this.imageName = \"remove\";\n this.text = \"Remove\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n if (this.options.element_delete_delay) {\n var delid = Utils.getUID(\"delete\");\n this.renderer.delete_list.push({\n id: delid,\n time: new Date().valueOf() + this.options.element_delete_delay\n });\n this.source_representation.model.set(\"delete_scheduled\", delid);\n } else {\n if (confirm(this.renkan.translate('Do you really wish to remove node ') + '\"' + this.source_representation.model.get(\"title\") + '\"?')) {\n this.project.removeNode(this.source_representation.model);\n }\n }\n }\n }\n }).value();\n\n /* NodeRemoveButton End */\n\n return NodeRemoveButton;\n\n});\n\n\ndefine('renderer/nodehidebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeHideButton = Utils.inherit(NodeButton);\n\n _(NodeHideButton.prototype).extend({\n _init: function() {\n this.type = \"Node-hide-button\";\n this.lastSectorInner = 0;\n this.startAngle = 45;\n this.endAngle = 90;\n this.imageName = \"hide\";\n this.text = \"Hide\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n this.renderer.addHiddenNode(this.source_representation.model);\n }\n }\n }).value();\n\n /* NodeRemoveButton End */\n\n return NodeHideButton;\n\n});\n\n\ndefine('renderer/nodeshowbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeShowButton = Utils.inherit(NodeButton);\n\n _(NodeShowButton.prototype).extend({\n _init: function() {\n this.type = \"Node-show-button\";\n this.lastSectorInner = 0;\n this.startAngle = 90;\n this.endAngle = 135;\n this.imageName = \"show\";\n this.text = \"Show\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n this.source_representation.showNeighbors(false);\n }\n }\n }).value();\n\n /* NodeShowButton End */\n\n return NodeShowButton;\n\n});\n\n\ndefine('renderer/noderevertbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRevertButton Begin */\n\n //var NodeRevertButton = Renderer.NodeRevertButton = Utils.inherit(Renderer._NodeButton);\n var NodeRevertButton = Utils.inherit(NodeButton);\n\n _(NodeRevertButton.prototype).extend({\n _init: function() {\n this.type = \"Node-revert-button\";\n this.lastSectorInner = 0;\n this.startAngle = -135;\n this.endAngle = 135;\n this.imageName = \"revert\";\n this.text = \"Cancel deletion\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n if (this.renderer.isEditable()) {\n this.source_representation.model.unset(\"delete_scheduled\");\n }\n }\n }).value();\n\n /* NodeRevertButton End */\n\n return NodeRevertButton;\n\n});\n\n\ndefine('renderer/nodelinkbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeLinkButton Begin */\n\n //var NodeLinkButton = Renderer.NodeLinkButton = Utils.inherit(Renderer._NodeButton);\n var NodeLinkButton = Utils.inherit(NodeButton);\n\n _(NodeLinkButton.prototype).extend({\n _init: function() {\n this.type = \"Node-link-button\";\n this.lastSectorInner = 0;\n this.startAngle = this.options.hide_nodes ? 135 : 90;\n this.endAngle = this.options.hide_nodes ? 190 : 180;\n this.imageName = \"link\";\n this.text = \"Link to another node\";\n },\n mousedown: function(_event, _isTouch) {\n if (this.renderer.isEditable()) {\n var _off = this.renderer.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n this.renderer.click_target = null;\n this.renderer.removeRepresentationsOfType(\"editor\");\n this.renderer.addTempEdge(this.source_representation, _point);\n }\n }\n }).value();\n\n /* NodeLinkButton End */\n\n return NodeLinkButton;\n\n});\n\n\n\ndefine('renderer/nodeenlargebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEnlargeButton Begin */\n\n //var NodeEnlargeButton = Renderer.NodeEnlargeButton = Utils.inherit(Renderer._NodeButton);\n var NodeEnlargeButton = Utils.inherit(NodeButton);\n\n _(NodeEnlargeButton.prototype).extend({\n _init: function() {\n this.type = \"Node-enlarge-button\";\n this.lastSectorInner = 0;\n this.startAngle = this.options.hide_nodes ? -55 : -45;\n this.endAngle = this.options.hide_nodes ? -10 : 0;\n this.imageName = \"enlarge\";\n this.text = \"Enlarge\";\n },\n mouseup: function() {\n var _newsize = 1 + (this.source_representation.model.get(\"size\") || 0);\n this.source_representation.model.set(\"size\", _newsize);\n this.source_representation.select();\n this.select();\n paper.view.draw();\n }\n }).value();\n\n /* NodeEnlargeButton End */\n\n return NodeEnlargeButton;\n\n});\n\n\ndefine('renderer/nodeshrinkbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeShrinkButton Begin */\n\n //var NodeShrinkButton = Renderer.NodeShrinkButton = Utils.inherit(Renderer._NodeButton);\n var NodeShrinkButton = Utils.inherit(NodeButton);\n\n _(NodeShrinkButton.prototype).extend({\n _init: function() {\n this.type = \"Node-shrink-button\";\n this.lastSectorInner = 0;\n this.startAngle = this.options.hide_nodes ? -170 : -180;\n this.endAngle = this.options.hide_nodes ? -125 : -135;\n this.imageName = \"shrink\";\n this.text = \"Shrink\";\n },\n mouseup: function() {\n var _newsize = -1 + (this.source_representation.model.get(\"size\") || 0);\n this.source_representation.model.set(\"size\", _newsize);\n this.source_representation.select();\n this.select();\n paper.view.draw();\n }\n }).value();\n\n /* NodeShrinkButton End */\n\n return NodeShrinkButton;\n\n});\n\n\ndefine('renderer/edgeeditbutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeEditButton Begin */\n\n //var EdgeEditButton = Renderer.EdgeEditButton = Utils.inherit(Renderer._BaseButton);\n var EdgeEditButton = Utils.inherit(BaseButton);\n\n _(EdgeEditButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-edit-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -270, -90, 1, \"edit\", this.renkan.translate(\"Edit\"));\n },\n mouseup: function() {\n if (!this.renderer.is_dragging) {\n this.source_representation.openEditor();\n }\n }\n }).value();\n\n /* EdgeEditButton End */\n\n return EdgeEditButton;\n\n});\n\n\ndefine('renderer/edgeremovebutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeRemoveButton Begin */\n\n //var EdgeRemoveButton = Renderer.EdgeRemoveButton = Utils.inherit(Renderer._BaseButton);\n var EdgeRemoveButton = Utils.inherit(BaseButton);\n\n _(EdgeRemoveButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-remove-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -90, 90, 1, \"remove\", this.renkan.translate(\"Remove\"));\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n if (this.options.element_delete_delay) {\n var delid = Utils.getUID(\"delete\");\n this.renderer.delete_list.push({\n id: delid,\n time: new Date().valueOf() + this.options.element_delete_delay\n });\n this.source_representation.model.set(\"delete_scheduled\", delid);\n } else {\n if (confirm(this.renkan.translate('Do you really wish to remove edge ') + '\"' + this.source_representation.model.get(\"title\") + '\"?')) {\n this.project.removeEdge(this.source_representation.model);\n }\n }\n }\n }\n }).value();\n\n /* EdgeRemoveButton End */\n\n return EdgeRemoveButton;\n\n});\n\n\ndefine('renderer/edgerevertbutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeRevertButton Begin */\n\n //var EdgeRevertButton = Renderer.EdgeRevertButton = Utils.inherit(Renderer._BaseButton);\n var EdgeRevertButton = Utils.inherit(BaseButton);\n\n _(EdgeRevertButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-revert-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -135, 135, 1, \"revert\", this.renkan.translate(\"Cancel deletion\"));\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n if (this.renderer.isEditable()) {\n this.source_representation.model.unset(\"delete_scheduled\");\n }\n }\n }).value();\n\n /* EdgeRevertButton End */\n\n return EdgeRevertButton;\n\n});\n\n\ndefine('renderer/miniframe',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* MiniFrame Begin */\n\n //var MiniFrame = Renderer.MiniFrame = Utils.inherit(Renderer._BaseRepresentation);\n var MiniFrame = Utils.inherit(BaseRepresentation);\n\n _(MiniFrame.prototype).extend({\n paperShift: function(_delta) {\n this.renderer.offset = this.renderer.offset.subtract(_delta.divide(this.renderer.minimap.scale).multiply(this.renderer.scale));\n this.renderer.redraw();\n },\n mouseup: function(_delta) {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n }\n }).value();\n\n\n /* MiniFrame End */\n\n return MiniFrame;\n\n});\n\n\ndefine('renderer/scene',['jquery', 'underscore', 'filesaver', 'requtils', 'renderer/miniframe'], function ($, _, filesaver, requtils, MiniFrame) {\n \n\n var Utils = requtils.getUtils();\n\n /* Scene Begin */\n\n var Scene = function(_renkan) {\n this.renkan = _renkan;\n this.$ = $(\".Rk-Render\");\n this.representations = [];\n this.$.html(_renkan.options.templates['templates/scene.html'](_renkan));\n this.onStatusChange();\n this.canvas_$ = this.$.find(\".Rk-Canvas\");\n this.labels_$ = this.$.find(\".Rk-Labels\");\n if (!_renkan.options.popup_editor){\n this.editor_$ = $(\"#\" + _renkan.options.editor_panel);\n }else{\n this.editor_$ = this.$.find(\".Rk-Editor\");\n }\n this.notif_$ = this.$.find(\".Rk-Notifications\");\n paper.setup(this.canvas_$[0]);\n this.scale = 1;\n this.initialScale = 1;\n this.offset = paper.view.center;\n this.totalScroll = 0;\n this.hiddenNodes = [];\n this.mouse_down = false;\n this.click_target = null;\n this.selected_target = null;\n this.edge_layer = new paper.Layer();\n this.node_layer = new paper.Layer();\n this.buttons_layer = new paper.Layer();\n this.delete_list = [];\n this.redrawActive = true;\n\n if (_renkan.options.show_minimap) {\n this.minimap = {\n background_layer: new paper.Layer(),\n edge_layer: new paper.Layer(),\n node_layer: new paper.Layer(),\n node_group: new paper.Group(),\n size: new paper.Size( _renkan.options.minimap_width, _renkan.options.minimap_height )\n };\n\n this.minimap.background_layer.activate();\n this.minimap.topleft = paper.view.bounds.bottomRight.subtract(this.minimap.size);\n this.minimap.rectangle = new paper.Path.Rectangle(this.minimap.topleft.subtract([2,2]), this.minimap.size.add([4,4]));\n this.minimap.rectangle.fillColor = _renkan.options.minimap_background_color;\n this.minimap.rectangle.strokeColor = _renkan.options.minimap_border_color;\n this.minimap.rectangle.strokeWidth = 4;\n this.minimap.offset = new paper.Point(this.minimap.size.divide(2));\n this.minimap.scale = 0.1;\n\n this.minimap.node_layer.activate();\n this.minimap.cliprectangle = new paper.Path.Rectangle(this.minimap.topleft, this.minimap.size);\n this.minimap.node_group.addChild(this.minimap.cliprectangle);\n this.minimap.node_group.clipped = true;\n this.minimap.miniframe = new paper.Path.Rectangle(this.minimap.topleft, this.minimap.size);\n this.minimap.node_group.addChild(this.minimap.miniframe);\n this.minimap.miniframe.fillColor = '#c0c0ff';\n this.minimap.miniframe.opacity = 0.3;\n this.minimap.miniframe.strokeColor = '#000080';\n this.minimap.miniframe.strokeWidth = 2;\n this.minimap.miniframe.__representation = new MiniFrame(this, null);\n }\n\n this.throttledPaperDraw = _(function() {\n paper.view.draw();\n }).throttle(100).value();\n\n this.bundles = [];\n this.click_mode = false;\n\n var _this = this,\n _allowScroll = true,\n _originalScale = 1,\n _zooming = false,\n _lastTapX = 0,\n _lastTapY = 0;\n\n this.image_cache = {};\n this.icon_cache = {};\n\n ['edit', 'remove', 'hide', 'show', 'link', 'enlarge', 'shrink', 'revert' ].forEach(function(imgname) {\n var img = new Image();\n img.src = _renkan.options.static_url + 'img/' + imgname + '.png';\n _this.icon_cache[imgname] = img;\n });\n\n var throttledMouseMove = _.throttle(function(_event, _isTouch) {\n _this.onMouseMove(_event, _isTouch);\n }, Utils._MOUSEMOVE_RATE);\n\n this.canvas_$.on({\n mousedown: function(_event) {\n _event.preventDefault();\n _this.onMouseDown(_event, false);\n },\n mousemove: function(_event) {\n _event.preventDefault();\n throttledMouseMove(_event, false);\n },\n mouseup: function(_event) {\n _event.preventDefault();\n _this.onMouseUp(_event, false);\n },\n mousewheel: function(_event, _delta) {\n if(_renkan.options.zoom_on_scroll) {\n _event.preventDefault();\n if (_allowScroll) {\n _this.onScroll(_event, _delta);\n }\n }\n },\n touchstart: function(_event) {\n _event.preventDefault();\n var _touches = _event.originalEvent.touches[0];\n if (\n _renkan.options.allow_double_click &&\n new Date() - _lastTap < Utils._DOUBLETAP_DELAY &&\n ( Math.pow(_lastTapX - _touches.pageX, 2) + Math.pow(_lastTapY - _touches.pageY, 2) < Utils._DOUBLETAP_DISTANCE )\n ) {\n _lastTap = 0;\n _this.onDoubleClick(_touches);\n } else {\n _lastTap = new Date();\n _lastTapX = _touches.pageX;\n _lastTapY = _touches.pageY;\n _originalScale = _this.scale;\n _zooming = false;\n _this.onMouseDown(_touches, true);\n }\n },\n touchmove: function(_event) {\n _event.preventDefault();\n _lastTap = 0;\n if (_event.originalEvent.touches.length === 1) {\n _this.onMouseMove(_event.originalEvent.touches[0], true);\n } else {\n if (!_zooming) {\n _this.onMouseUp(_event.originalEvent.touches[0], true);\n _this.click_target = null;\n _this.is_dragging = false;\n _zooming = true;\n }\n if (_event.originalEvent.scale === \"undefined\") {\n return;\n }\n var _newScale = _event.originalEvent.scale * _originalScale,\n _scaleRatio = _newScale / _this.scale,\n _newOffset = new paper.Point([\n _this.canvas_$.width(),\n _this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - _scaleRatio ) ).add(_this.offset.multiply( _scaleRatio ));\n _this.setScale(_newScale, _newOffset);\n }\n },\n touchend: function(_event) {\n _event.preventDefault();\n _this.onMouseUp(_event.originalEvent.changedTouches[0], true);\n },\n dblclick: function(_event) {\n _event.preventDefault();\n if (_renkan.options.allow_double_click) {\n _this.onDoubleClick(_event);\n }\n },\n mouseleave: function(_event) {\n _event.preventDefault();\n //_this.onMouseUp(_event, false);//\n _this.click_target = null;\n _this.is_dragging = false;\n },\n dragover: function(_event) {\n _event.preventDefault();\n },\n dragenter: function(_event) {\n _event.preventDefault();\n _allowScroll = false;\n },\n dragleave: function(_event) {\n _event.preventDefault();\n _allowScroll = true;\n },\n drop: function(_event) {\n _event.preventDefault();\n _allowScroll = true;\n var res = {};\n _.each(_event.originalEvent.dataTransfer.types, function(t) {\n try {\n res[t] = _event.originalEvent.dataTransfer.getData(t);\n } catch(e) {}\n });\n var text = _event.originalEvent.dataTransfer.getData(\"Text\");\n if (typeof text === \"string\") {\n switch(text[0]) {\n case \"{\":\n case \"[\":\n try {\n var data = JSON.parse(text);\n _.extend(res,data);\n }\n catch(e) {\n if (!res[\"text/plain\"]) {\n res[\"text/plain\"] = text;\n }\n }\n break;\n case \"<\":\n if (!res[\"text/html\"]) {\n res[\"text/html\"] = text;\n }\n break;\n default:\n if (!res[\"text/plain\"]) {\n res[\"text/plain\"] = text;\n }\n }\n }\n var url = _event.originalEvent.dataTransfer.getData(\"URL\");\n if (url && !res[\"text/uri-list\"]) {\n res[\"text/uri-list\"] = url;\n }\n _this.dropData(res, _event.originalEvent);\n }\n });\n\n var bindClick = function(selector, fname) {\n _this.$.find(selector).click(function(evt) {\n _this[fname](evt);\n return false;\n });\n };\n\n bindClick(\".Rk-ZoomOut\", \"zoomOut\");\n bindClick(\".Rk-ZoomIn\", \"zoomIn\");\n bindClick(\".Rk-ZoomFit\", \"autoScale\");\n this.$.find(\".Rk-ZoomSave\").click( function() {\n // Save scale and offset point\n _this.renkan.project.addView( { zoom_level:_this.scale, offset:_this.offset, hidden_nodes: _this.hiddenNodes } );\n });\n this.$.find(\".Rk-ZoomSetSaved\").click( function() {\n var view = _this.renkan.project.get(\"views\").last();\n if(view){\n _this.showNodes(false);\n _this.setScale(view.get(\"zoom_level\"), new paper.Point(view.get(\"offset\")));\n if (_this.renkan.options.hide_nodes){\n _this.hiddenNodes = (view.get(\"hidden_nodes\") || []).concat();\n _this.hideNodes(); \n }\n }\n });\n this.$.find(\".Rk-ShowHiddenNodes\").mouseenter( function() {\n _this.showNodes(true);\n _this.$.find(\".Rk-ShowHiddenNodes\").mouseleave( function() {\n _this.hideNodes();\n });\n });\n this.$.find(\".Rk-ShowHiddenNodes\").click( function() {\n _this.showNodes(false);\n _this.$.find(\".Rk-ShowHiddenNodes\").off( \"mouseleave\" );\n });\n if(this.renkan.project.get(\"views\").length > 0 && this.renkan.options.save_view){\n this.$.find(\".Rk-ZoomSetSaved\").show();\n }\n this.$.find(\".Rk-CurrentUser\").mouseenter(\n function() { _this.$.find(\".Rk-UserList\").slideDown(); }\n );\n this.$.find(\".Rk-Users\").mouseleave(\n function() { _this.$.find(\".Rk-UserList\").slideUp(); }\n );\n bindClick(\".Rk-FullScreen-Button\", \"fullScreen\");\n bindClick(\".Rk-AddNode-Button\", \"addNodeBtn\");\n bindClick(\".Rk-AddEdge-Button\", \"addEdgeBtn\");\n bindClick(\".Rk-Save-Button\", \"save\");\n bindClick(\".Rk-Open-Button\", \"open\");\n bindClick(\".Rk-Export-Button\", \"exportProject\");\n this.$.find(\".Rk-Bookmarklet-Button\")\n /*jshint scripturl:true */\n .attr(\"href\",\"javascript:\" + Utils._BOOKMARKLET_CODE(_renkan))\n .click(function(){\n _this.notif_$\n .text(_renkan.translate(\"Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.\"))\n .fadeIn()\n .delay(5000)\n .fadeOut();\n return false;\n });\n this.$.find(\".Rk-TopBar-Button\").mouseover(function() {\n $(this).find(\".Rk-TopBar-Tooltip\").show();\n }).mouseout(function() {\n $(this).find(\".Rk-TopBar-Tooltip\").hide();\n });\n bindClick(\".Rk-Fold-Bins\", \"foldBins\");\n\n paper.view.onResize = function(_event) {\n var _ratio,\n newWidth = _event.width,\n newHeight = _event.height;\n\n if (_this.minimap) {\n _this.minimap.topleft = paper.view.bounds.bottomRight.subtract(_this.minimap.size);\n _this.minimap.rectangle.fitBounds(_this.minimap.topleft.subtract([2,2]), _this.minimap.size.add([4,4]));\n _this.minimap.cliprectangle.fitBounds(_this.minimap.topleft, _this.minimap.size);\n }\n\n var ratioH = newHeight/(newHeight-_event.delta.height),\n ratioW = newWidth/(newWidth-_event.delta.width);\n if (newHeight < newWidth) {\n _ratio = ratioH;\n } else {\n _ratio = ratioW;\n }\n\n _this.resizeZoom(ratioW, ratioH, _ratio);\n\n _this.redraw();\n\n };\n\n var _thRedraw = _.throttle(function() {\n _this.redraw();\n },50);\n\n this.addRepresentations(\"Node\", this.renkan.project.get(\"nodes\"));\n this.addRepresentations(\"Edge\", this.renkan.project.get(\"edges\"));\n this.renkan.project.on(\"change:title\", function() {\n _this.$.find(\".Rk-PadTitle\").val(_renkan.project.get(\"title\"));\n });\n\n this.$.find(\".Rk-PadTitle\").on(\"keyup input paste\", function() {\n _renkan.project.set({\"title\": $(this).val()});\n });\n\n var _thRedrawUsers = _.throttle(function() {\n _this.redrawUsers();\n }, 100);\n\n _thRedrawUsers();\n\n // register model events\n this.renkan.project.on(\"change:saveStatus\", function(){\n switch (_this.renkan.project.get(\"saveStatus\")) {\n case 0: //clean\n _this.$.find(\".Rk-Save-Button\").removeClass(\"to-save\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saving\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"saved\");\n break;\n case 1: //dirty\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saved\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saving\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"to-save\");\n break;\n case 2: //saving\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saved\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"to-save\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"saving\");\n break;\n }\n });\n\n this.renkan.project.on(\"change:loadingStatus\", function(){\n if (_this.renkan.project.get(\"loadingStatus\")){\n var animate = _this.$.find(\".loader\").addClass(\"run\");\n var timer = setTimeout(function(){\n _this.$.find(\".loader\").hide(250);\n }, 3000);\n }\n else{\n Backbone.history.start();\n }\n });\n\n this.renkan.project.on(\"add:users remove:users\", _thRedrawUsers);\n\n this.renkan.project.on(\"add:views remove:views\", function(_node) {\n if(_this.renkan.project.get('views').length > 0) {\n _this.$.find(\".Rk-ZoomSetSaved\").show();\n }\n else {\n _this.$.find(\".Rk-ZoomSetSaved\").hide();\n }\n });\n\n this.renkan.project.on(\"add:nodes\", function(_node) {\n _this.addRepresentation(\"Node\", _node);\n if (!_this.renkan.project.get(\"loadingStatus\")){\n _thRedraw();\n }\n });\n this.renkan.project.on(\"add:edges\", function(_edge) {\n _this.addRepresentation(\"Edge\", _edge);\n if (!_this.renkan.project.get(\"loadingStatus\")){\n _thRedraw();\n }\n });\n this.renkan.project.on(\"change:title\", function(_model, _title) {\n var el = _this.$.find(\".Rk-PadTitle\");\n if (el.is(\"input\")) {\n if (el.val() !== _title) {\n el.val(_title);\n }\n } else {\n el.text(_title);\n }\n });\n \n //register router events\n this.renkan.router.on(\"router\", function(_params){\n _this.parameters(_params);\n });\n\n if (_renkan.options.size_bug_fix) {\n var _delay = (\n typeof _renkan.options.size_bug_fix === \"number\" ?\n _renkan.options.size_bug_fix\n : 500\n );\n window.setTimeout(\n function() {\n _this.fixSize();\n },\n _delay\n );\n }\n\n if (_renkan.options.force_resize) {\n $(window).resize(function() {\n _this.autoScale();\n });\n }\n\n if (_renkan.options.show_user_list && _renkan.options.user_color_editable) {\n var $cpwrapper = this.$.find(\".Rk-Users .Rk-Edit-ColorPicker-Wrapper\"),\n $cplist = this.$.find(\".Rk-Users .Rk-Edit-ColorPicker\");\n\n $cpwrapper.hover(\n function(_e) {\n if (_this.isEditable()) {\n _e.preventDefault();\n $cplist.show();\n }\n },\n function(_e) {\n _e.preventDefault();\n $cplist.hide();\n }\n );\n\n $cplist.find(\"li\").mouseenter(\n function(_e) {\n if (_this.isEditable()) {\n _e.preventDefault();\n _this.$.find(\".Rk-CurrentUser-Color\").css(\"background\", $(this).attr(\"data-color\"));\n }\n }\n );\n }\n\n if (_renkan.options.show_search_field) {\n\n var lastval = '';\n\n this.$.find(\".Rk-GraphSearch-Field\").on(\"keyup change paste input\", function() {\n var $this = $(this),\n val = $this.val();\n if (val === lastval) {\n return;\n }\n lastval = val;\n if (val.length < 2) {\n _renkan.project.get(\"nodes\").each(function(n) {\n _this.getRepresentationByModel(n).unhighlight();\n });\n } else {\n var rxs = Utils.regexpFromTextOrArray(val);\n _renkan.project.get(\"nodes\").each(function(n) {\n if (rxs.test(n.get(\"title\")) || rxs.test(n.get(\"description\"))) {\n _this.getRepresentationByModel(n).highlight(rxs);\n } else {\n _this.getRepresentationByModel(n).unhighlight();\n }\n });\n }\n });\n }\n\n this.redraw();\n\n window.setInterval(function() {\n var _now = new Date().valueOf();\n _this.delete_list.forEach(function(d) {\n if (_now >= d.time) {\n var el = _renkan.project.get(\"nodes\").findWhere({\"delete_scheduled\":d.id});\n if (el) {\n project.removeNode(el);\n }\n el = _renkan.project.get(\"edges\").findWhere({\"delete_scheduled\":d.id});\n if (el) {\n project.removeEdge(el);\n }\n }\n });\n _this.delete_list = _this.delete_list.filter(function(d) {\n return _renkan.project.get(\"nodes\").findWhere({\"delete_scheduled\":d.id}) || _renkan.project.get(\"edges\").findWhere({\"delete_scheduled\":d.id});\n });\n }, 500);\n\n if (this.minimap) {\n window.setInterval(function() {\n _this.rescaleMinimap();\n }, 2000);\n }\n\n };\n\n _(Scene.prototype).extend({\n fixSize: function() {\n if( this.renkan.options.default_view && this.renkan.project.get(\"views\").length > 0) {\n var view = this.renkan.project.get(\"views\").last();\n this.setScale(view.get(\"zoom_level\"), new paper.Point(view.get(\"offset\")));\n }\n else{\n this.autoScale();\n }\n },\n drawSector: function(_repr, _inR, _outR, _startAngle, _endAngle, _padding, _imgname, _caption) {\n var _options = this.renkan.options,\n _startRads = _startAngle * Math.PI / 180,\n _endRads = _endAngle * Math.PI / 180,\n _img = this.icon_cache[_imgname],\n _startdx = - Math.sin(_startRads),\n _startdy = Math.cos(_startRads),\n _startXIn = Math.cos(_startRads) * _inR + _padding * _startdx,\n _startYIn = Math.sin(_startRads) * _inR + _padding * _startdy,\n _startXOut = Math.cos(_startRads) * _outR + _padding * _startdx,\n _startYOut = Math.sin(_startRads) * _outR + _padding * _startdy,\n _enddx = - Math.sin(_endRads),\n _enddy = Math.cos(_endRads),\n _endXIn = Math.cos(_endRads) * _inR - _padding * _enddx,\n _endYIn = Math.sin(_endRads) * _inR - _padding * _enddy,\n _endXOut = Math.cos(_endRads) * _outR - _padding * _enddx,\n _endYOut = Math.sin(_endRads) * _outR - _padding * _enddy,\n _centerR = (_inR + _outR) / 2,\n _centerRads = (_startRads + _endRads) / 2,\n _centerX = Math.cos(_centerRads) * _centerR,\n _centerY = Math.sin(_centerRads) * _centerR,\n _centerXIn = Math.cos(_centerRads) * _inR,\n _centerXOut = Math.cos(_centerRads) * _outR,\n _centerYIn = Math.sin(_centerRads) * _inR,\n _centerYOut = Math.sin(_centerRads) * _outR,\n _textX = Math.cos(_centerRads) * (_outR + 3),\n _textY = Math.sin(_centerRads) * (_outR + _options.buttons_label_font_size) + _options.buttons_label_font_size / 2;\n this.buttons_layer.activate();\n var _path = new paper.Path();\n _path.add([_startXIn, _startYIn]);\n _path.arcTo([_centerXIn, _centerYIn], [_endXIn, _endYIn]);\n _path.lineTo([_endXOut, _endYOut]);\n _path.arcTo([_centerXOut, _centerYOut], [_startXOut, _startYOut]);\n _path.fillColor = _options.buttons_background;\n _path.opacity = 0.5;\n _path.closed = true;\n _path.__representation = _repr;\n var _text = new paper.PointText(_textX,_textY);\n _text.characterStyle = {\n fontSize: _options.buttons_label_font_size,\n fillColor: _options.buttons_label_color\n };\n if (_textX > 2) {\n _text.paragraphStyle.justification = 'left';\n } else if (_textX < -2) {\n _text.paragraphStyle.justification = 'right';\n } else {\n _text.paragraphStyle.justification = 'center';\n }\n _text.visible = false;\n var _visible = false,\n _restPos = new paper.Point(-200, -200),\n _grp = new paper.Group([_path, _text]),\n //_grp = new paper.Group([_path]),\n _delta = _grp.position,\n _imgdelta = new paper.Point([_centerX, _centerY]),\n _currentPos = new paper.Point(0,0);\n _text.content = _caption;\n // set group pivot to not depend on text visibility that changes the group bounding box.\n _grp.pivot = _grp.bounds.center;\n _grp.visible = false;\n _grp.position = _restPos;\n var _res = {\n show: function() {\n _visible = true;\n _grp.position = _currentPos.add(_delta);\n _grp.visible = true;\n },\n moveTo: function(_point) {\n _currentPos = _point;\n if (_visible) {\n _grp.position = _point.add(_delta);\n }\n },\n hide: function() {\n _visible = false;\n _grp.visible = false;\n _grp.position = _restPos;\n },\n select: function() {\n _path.opacity = 0.8;\n _text.visible = true;\n },\n unselect: function() {\n _path.opacity = 0.5;\n _text.visible = false;\n },\n destroy: function() {\n _grp.remove();\n }\n };\n var showImage = function() {\n var _raster = new paper.Raster(_img);\n _raster.position = _imgdelta.add(_grp.position).subtract(_delta);\n _raster.locked = true; // Disable mouse events on icon\n _grp.addChild(_raster);\n };\n if (_img.width) {\n showImage();\n } else {\n $(_img).on(\"load\",showImage);\n }\n\n return _res;\n },\n addToBundles: function(_edgeRepr) {\n var _bundle = _(this.bundles).find(function(_bundle) {\n return (\n ( _bundle.from === _edgeRepr.from_representation && _bundle.to === _edgeRepr.to_representation ) ||\n ( _bundle.from === _edgeRepr.to_representation && _bundle.to === _edgeRepr.from_representation )\n );\n });\n if (typeof _bundle !== \"undefined\") {\n _bundle.edges.push(_edgeRepr);\n } else {\n _bundle = {\n from: _edgeRepr.from_representation,\n to: _edgeRepr.to_representation,\n edges: [ _edgeRepr ],\n getPosition: function(_er) {\n var _dir = (_er.from_representation === this.from) ? 1 : -1;\n return _dir * ( _(this.edges).indexOf(_er) - (this.edges.length - 1) / 2 );\n }\n };\n this.bundles.push(_bundle);\n }\n return _bundle;\n },\n isEditable: function() {\n return (this.renkan.options.editor_mode && !this.renkan.read_only);\n },\n onStatusChange: function() {\n var savebtn = this.$.find(\".Rk-Save-Button\"),\n tip = savebtn.find(\".Rk-TopBar-Tooltip-Contents\");\n if (this.renkan.read_only) {\n savebtn.removeClass(\"disabled Rk-Save-Online\").addClass(\"Rk-Save-ReadOnly\");\n tip.text(this.renkan.translate(\"Connection lost\"));\n } else {\n if (this.renkan.options.manual_save) {\n savebtn.removeClass(\"Rk-Save-ReadOnly Rk-Save-Online\");\n tip.text(this.renkan.translate(\"Save Project\"));\n } else {\n savebtn.removeClass(\"disabled Rk-Save-ReadOnly\").addClass(\"Rk-Save-Online\");\n tip.text(this.renkan.translate(\"Auto-save enabled\"));\n }\n }\n this.redrawUsers();\n },\n setScale: function(_newScale, _offset) {\n if ((_newScale/this.initialScale) > Utils._MIN_SCALE && (_newScale/this.initialScale) < Utils._MAX_SCALE) {\n this.scale = _newScale;\n if (_offset) {\n this.offset = _offset;\n }\n this.redraw();\n }\n },\n autoScale: function(force_view) {\n var nodes = this.renkan.project.get(\"nodes\");\n if (nodes.length > 1) {\n var _xx = nodes.map(function(_node) { return _node.get(\"position\").x; }),\n _yy = nodes.map(function(_node) { return _node.get(\"position\").y; }),\n _minx = Math.min.apply(Math, _xx),\n _miny = Math.min.apply(Math, _yy),\n _maxx = Math.max.apply(Math, _xx),\n _maxy = Math.max.apply(Math, _yy);\n var _scale = Math.min( (paper.view.size.width - 2 * this.renkan.options.autoscale_padding) / (_maxx - _minx), (paper.view.size.height - 2 * this.renkan.options.autoscale_padding) / (_maxy - _miny));\n this.initialScale = _scale;\n // Override calculated scale if asked\n if((typeof force_view !== \"undefined\") && parseFloat(force_view.zoom_level)>0 && parseFloat(force_view.offset.x)>0 && parseFloat(force_view.offset.y)>0){\n this.setScale(parseFloat(force_view.zoom_level), new paper.Point(parseFloat(force_view.offset.x), parseFloat(force_view.offset.y)));\n }\n else{\n this.setScale(_scale, paper.view.center.subtract(new paper.Point([(_maxx + _minx) / 2, (_maxy + _miny) / 2]).multiply(_scale)));\n }\n }\n if (nodes.length === 1) {\n this.setScale(1, paper.view.center.subtract(new paper.Point([nodes.at(0).get(\"position\").x, nodes.at(0).get(\"position\").y])));\n }\n },\n redrawMiniframe: function() {\n var topleft = this.toMinimapCoords(this.toModelCoords(new paper.Point([0,0]))),\n bottomright = this.toMinimapCoords(this.toModelCoords(paper.view.bounds.bottomRight));\n this.minimap.miniframe.fitBounds(topleft, bottomright);\n },\n rescaleMinimap: function() {\n var nodes = this.renkan.project.get(\"nodes\");\n if (nodes.length > 1) {\n var _xx = nodes.map(function(_node) { return _node.get(\"position\").x; }),\n _yy = nodes.map(function(_node) { return _node.get(\"position\").y; }),\n _minx = Math.min.apply(Math, _xx),\n _miny = Math.min.apply(Math, _yy),\n _maxx = Math.max.apply(Math, _xx),\n _maxy = Math.max.apply(Math, _yy);\n var _scale = Math.min(\n this.scale * 0.8 * this.renkan.options.minimap_width / paper.view.bounds.width,\n this.scale * 0.8 * this.renkan.options.minimap_height / paper.view.bounds.height,\n ( this.renkan.options.minimap_width - 2 * this.renkan.options.minimap_padding ) / (_maxx - _minx),\n ( this.renkan.options.minimap_height - 2 * this.renkan.options.minimap_padding ) / (_maxy - _miny)\n );\n this.minimap.offset = this.minimap.size.divide(2).subtract(new paper.Point([(_maxx + _minx) / 2, (_maxy + _miny) / 2]).multiply(_scale));\n this.minimap.scale = _scale;\n }\n if (nodes.length === 1) {\n this.minimap.scale = 0.1;\n this.minimap.offset = this.minimap.size.divide(2).subtract(new paper.Point([nodes.at(0).get(\"position\").x, nodes.at(0).get(\"position\").y]).multiply(this.minimap.scale));\n }\n this.redraw();\n },\n toPaperCoords: function(_point) {\n return _point.multiply(this.scale).add(this.offset);\n },\n toMinimapCoords: function(_point) {\n return _point.multiply(this.minimap.scale).add(this.minimap.offset).add(this.minimap.topleft);\n },\n toModelCoords: function(_point) {\n return _point.subtract(this.offset).divide(this.scale);\n },\n addRepresentation: function(_type, _model) {\n var RendererType = requtils.getRenderer()[_type];\n var _repr = new RendererType(this, _model);\n this.representations.push(_repr);\n return _repr;\n },\n addRepresentations: function(_type, _collection) {\n var _this = this;\n _collection.forEach(function(_model) {\n _this.addRepresentation(_type, _model);\n });\n },\n userTemplate: _.template(\n '
                          • ;\"><%=name%>
                          • '\n ),\n redrawUsers: function() {\n if (!this.renkan.options.show_user_list) {\n return;\n }\n var allUsers = [].concat((this.renkan.project.current_user_list || {}).models || [], (this.renkan.project.get(\"users\") || {}).models || []),\n ulistHtml = '',\n $userpanel = this.$.find(\".Rk-Users\"),\n $name = $userpanel.find(\".Rk-CurrentUser-Name\"),\n $cpitems = $userpanel.find(\".Rk-Edit-ColorPicker li\"),\n $colorsquare = $userpanel.find(\".Rk-CurrentUser-Color\"),\n _this = this;\n $name.off(\"click\").text(this.renkan.translate(\"\"));\n $cpitems.off(\"mouseleave click\");\n allUsers.forEach(function(_user) {\n if (_user.get(\"_id\") === _this.renkan.current_user) {\n $name.text(_user.get(\"title\"));\n $colorsquare.css(\"background\", _user.get(\"color\"));\n if (_this.isEditable()) {\n\n if (_this.renkan.options.user_name_editable) {\n $name.click(function() {\n var $this = $(this),\n $input = $('').val(_user.get(\"title\")).blur(function() {\n _user.set(\"title\", $(this).val());\n _this.redrawUsers();\n _this.redraw();\n });\n $this.empty().html($input);\n $input.select();\n });\n }\n\n if (_this.renkan.options.user_color_editable) {\n $cpitems.click(\n function(_e) {\n _e.preventDefault();\n if (_this.isEditable()) {\n _user.set(\"color\", $(this).attr(\"data-color\"));\n }\n $(this).parent().hide();\n }\n ).mouseleave(function() {\n $colorsquare.css(\"background\", _user.get(\"color\"));\n });\n }\n }\n\n } else {\n ulistHtml += _this.userTemplate({\n name: _user.get(\"title\"),\n background: _user.get(\"color\")\n });\n }\n });\n $userpanel.find(\".Rk-UserList\").html(ulistHtml);\n },\n removeRepresentation: function(_representation) {\n _representation.destroy();\n this.representations = _.reject(this.representations,\n function(_repr) {\n return _repr === _representation;\n }\n );\n },\n getRepresentationByModel: function(_model) {\n if (!_model) {\n return undefined;\n }\n return _.find(this.representations, function(_repr) {\n return _repr.model === _model;\n });\n },\n removeRepresentationsOfType: function(_type) {\n var _representations = _.filter(this.representations,function(_repr) {\n return _repr.type === _type;\n }),\n _this = this;\n _.each(_representations, function(_repr) {\n _this.removeRepresentation(_repr);\n });\n },\n highlightModel: function(_model) {\n var _repr = this.getRepresentationByModel(_model);\n if (_repr) {\n _repr.highlight();\n }\n },\n unhighlightAll: function(_model) {\n _.each(this.representations, function(_repr) {\n _repr.unhighlight();\n });\n },\n unselectAll: function(_model) {\n _.each(this.representations, function(_repr) {\n _repr.unselect();\n });\n },\n redraw: function() {\n var _this = this;\n if(! this.redrawActive ) {\n return;\n }\n _.each(this.representations, function(_representation) {\n _representation.redraw({ dontRedrawEdges:true });\n });\n if (this.minimap) {\n this.redrawMiniframe();\n }\n paper.view.draw();\n },\n addTempEdge: function(_from, _point) {\n var _tmpEdge = this.addRepresentation(\"TempEdge\",null);\n _tmpEdge.end_pos = _point;\n _tmpEdge.from_representation = _from;\n _tmpEdge.redraw();\n this.click_target = _tmpEdge;\n },\n addHiddenNode: function(_model){\n this.hideNode(_model);\n this.hiddenNodes.push(_model.id);\n },\n hideNode: function(_model){\n var _this = this;\n if (typeof _this.getRepresentationByModel(_model) !== 'undefined'){\n _this.getRepresentationByModel(_model).hide();\n }\n },\n hideNodes: function(){\n var _this = this;\n this.hiddenNodes.forEach(function(_id, index){\n var node = _this.renkan.project.get(\"nodes\").get(_id);\n if (typeof node !== 'undefined'){\n return _this.hideNode(_this.renkan.project.get(\"nodes\").get(_id));\n }else{\n _this.hiddenNodes.splice(index, 1);\n }\n });\n paper.view.draw();\n },\n showNodes: function(ghost){\n var _this = this;\n var i = 0;\n this.hiddenNodes.forEach(function(_id){\n i++;\n _this.getRepresentationByModel(_this.renkan.project.get(\"nodes\").get(_id)).show(ghost);\n });\n if (!ghost){\n this.hiddenNodes = [];\n }\n paper.view.draw();\n },\n findTarget: function(_hitResult) {\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n var _newTarget = _hitResult.item.__representation;\n if (this.selected_target !== _hitResult.item.__representation) {\n if (this.selected_target) {\n this.selected_target.unselect(_newTarget);\n }\n _newTarget.select(this.selected_target);\n this.selected_target = _newTarget;\n }\n } else {\n if (this.selected_target) {\n this.selected_target.unselect();\n }\n this.selected_target = null;\n }\n },\n paperShift: function(_delta) {\n this.offset = this.offset.add(_delta);\n this.redraw();\n },\n onMouseMove: function(_event) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]),\n _delta = _point.subtract(this.last_point);\n this.last_point = _point;\n if (!this.is_dragging && this.mouse_down && _delta.length > Utils._MIN_DRAG_DISTANCE) {\n this.is_dragging = true;\n }\n var _hitResult = paper.project.hitTest(_point);\n if (this.is_dragging) {\n if (this.click_target && typeof this.click_target.paperShift === \"function\") {\n this.click_target.paperShift(_delta);\n } else {\n this.paperShift(_delta);\n }\n } else {\n this.findTarget(_hitResult);\n }\n paper.view.draw();\n },\n onMouseDown: function(_event, _isTouch) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n this.last_point = _point;\n this.mouse_down = true;\n if (!this.click_target || this.click_target.type !== \"Temp-edge\") {\n this.removeRepresentationsOfType(\"editor\");\n this.is_dragging = false;\n var _hitResult = paper.project.hitTest(_point);\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n this.click_target = _hitResult.item.__representation;\n this.click_target.mousedown(_event, _isTouch);\n } else {\n this.click_target = null;\n if (this.isEditable() && this.click_mode === Utils._CLICKMODE_ADDNODE) {\n var _coords = this.toModelCoords(_point),\n _data = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n var _node = this.renkan.project.addNode(_data);\n this.getRepresentationByModel(_node).openEditor();\n }\n }\n }\n if (this.click_mode) {\n if (this.isEditable() && this.click_mode === Utils._CLICKMODE_STARTEDGE && this.click_target && this.click_target.type === \"Node\") {\n this.removeRepresentationsOfType(\"editor\");\n this.addTempEdge(this.click_target, _point);\n this.click_mode = Utils._CLICKMODE_ENDEDGE;\n this.notif_$.fadeOut(function() {\n $(this).html(this.renkan.translate(\"Click on a second node to complete the edge\")).fadeIn();\n });\n } else {\n this.notif_$.hide();\n this.click_mode = false;\n }\n }\n paper.view.draw();\n },\n onMouseUp: function(_event, _isTouch) {\n this.mouse_down = false;\n if (this.click_target) {\n var _off = this.canvas_$.offset();\n this.click_target.mouseup(\n {\n point: new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ])\n },\n _isTouch\n );\n } else {\n this.click_target = null;\n this.is_dragging = false;\n if (_isTouch) {\n this.unselectAll();\n }\n }\n paper.view.draw();\n },\n onScroll: function(_event, _scrolldelta) {\n this.totalScroll += _scrolldelta;\n if (Math.abs(this.totalScroll) >= 1) {\n var _off = this.canvas_$.offset(),\n _delta = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]).subtract(this.offset).multiply( Math.SQRT2 - 1 );\n if (this.totalScroll > 0) {\n this.setScale( this.scale * Math.SQRT2, this.offset.subtract(_delta) );\n } else {\n this.setScale( this.scale * Math.SQRT1_2, this.offset.add(_delta.divide(Math.SQRT2)));\n }\n this.totalScroll = 0;\n }\n },\n onDoubleClick: function(_event) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n var _hitResult = paper.project.hitTest(_point);\n\n if (!this.isEditable()) {\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n if (_hitResult.item.__representation.model.get('uri')){\n window.open(_hitResult.item.__representation.model.get('uri'), '_blank');\n }\n }\n return;\n }\n if (this.isEditable() && (!_hitResult || typeof _hitResult.item.__representation === \"undefined\")) {\n var _coords = this.toModelCoords(_point),\n _data = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n },\n _node = this.renkan.project.addNode(_data);\n this.getRepresentationByModel(_node).openEditor();\n }\n paper.view.draw();\n },\n defaultDropHandler: function(_data) {\n var newNode = {};\n var snippet = \"\";\n switch(_data[\"text/x-iri-specific-site\"]) {\n case \"twitter\":\n snippet = $('
                            ').html(_data[\"text/x-iri-selected-html\"]);\n var tweetdiv = snippet.find(\".tweet\");\n newNode.title = this.renkan.translate(\"Tweet by \") + tweetdiv.attr(\"data-name\");\n newNode.uri = \"http://twitter.com/\" + tweetdiv.attr(\"data-screen-name\") + \"/status/\" + tweetdiv.attr(\"data-tweet-id\");\n newNode.image = tweetdiv.find(\".avatar\").attr(\"src\");\n newNode.description = tweetdiv.find(\".js-tweet-text:first\").text();\n break;\n case \"google\":\n snippet = $('
                            ').html(_data[\"text/x-iri-selected-html\"]);\n newNode.title = snippet.find(\"h3:first\").text().trim();\n newNode.uri = snippet.find(\"h3 a\").attr(\"href\");\n newNode.description = snippet.find(\".st:first\").text().trim();\n break;\n default:\n if (_data[\"text/x-iri-source-uri\"]) {\n newNode.uri = _data[\"text/x-iri-source-uri\"];\n }\n }\n if (_data[\"text/plain\"] || _data[\"text/x-iri-selected-text\"]) {\n newNode.description = (_data[\"text/plain\"] || _data[\"text/x-iri-selected-text\"]).replace(/[\\s\\n]+/gm,' ').trim();\n }\n if (_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]) {\n snippet = $('
                            ').html(_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]);\n var _svgimgs = snippet.find(\"image\");\n if (_svgimgs.length) {\n newNode.image = _svgimgs.attr(\"xlink:href\");\n }\n var _svgpaths = snippet.find(\"path\");\n if (_svgpaths.length) {\n newNode.clipPath = _svgpaths.attr(\"d\");\n }\n var _imgs = snippet.find(\"img\");\n if (_imgs.length) {\n newNode.image = _imgs[0].src;\n }\n var _as = snippet.find(\"a\");\n if (_as.length) {\n newNode.uri = _as[0].href;\n }\n newNode.title = snippet.find(\"[title]\").attr(\"title\") || newNode.title;\n newNode.description = snippet.text().replace(/[\\s\\n]+/gm,' ').trim();\n }\n if (_data[\"text/uri-list\"]) {\n newNode.uri = _data[\"text/uri-list\"];\n }\n if (_data[\"text/x-moz-url\"] && !newNode.title) {\n newNode.title = (_data[\"text/x-moz-url\"].split(\"\\n\")[1] || \"\").trim();\n if (newNode.title === newNode.uri) {\n newNode.title = false;\n }\n }\n if (_data[\"text/x-iri-source-title\"] && !newNode.title) {\n newNode.title = _data[\"text/x-iri-source-title\"];\n }\n if (_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]) {\n snippet = $('
                            ').html(_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]);\n newNode.image = snippet.find(\"[data-image]\").attr(\"data-image\") || newNode.image;\n newNode.uri = snippet.find(\"[data-uri]\").attr(\"data-uri\") || newNode.uri;\n newNode.title = snippet.find(\"[data-title]\").attr(\"data-title\") || newNode.title;\n newNode.description = snippet.find(\"[data-description]\").attr(\"data-description\") || newNode.description;\n newNode.clipPath = snippet.find(\"[data-clip-path]\").attr(\"data-clip-path\") || newNode.clipPath;\n }\n\n if (!newNode.title) {\n newNode.title = this.renkan.translate(\"Dragged resource\");\n }\n var fields = [\"title\", \"description\", \"uri\", \"image\"];\n for (var i = 0; i < fields.length; i++) {\n var f = fields[i];\n if (_data[\"text/x-iri-\" + f] || _data[f]) {\n newNode[f] = _data[\"text/x-iri-\" + f] || _data[f];\n }\n if (newNode[f] === \"none\" || newNode[f] === \"null\") {\n newNode[f] = undefined;\n }\n }\n\n if(typeof this.renkan.options.drop_enhancer === \"function\"){\n newNode = this.renkan.options.drop_enhancer(newNode, _data);\n }\n\n return newNode;\n\n },\n dropData: function(_data, _event) {\n if (!this.isEditable()) {\n return;\n }\n if (_data[\"text/json\"] || _data[\"application/json\"]) {\n try {\n var jsondata = JSON.parse(_data[\"text/json\"] || _data[\"application/json\"]);\n _.extend(_data,jsondata);\n }\n catch(e) {}\n }\n\n var newNode = (typeof this.renkan.options.drop_handler === \"undefined\")?this.defaultDropHandler(_data):this.renkan.options.drop_handler(_data);\n\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]),\n _coords = this.toModelCoords(_point),\n _nodedata = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n uri: newNode.uri || \"\",\n title: newNode.title || \"\",\n description: newNode.description || \"\",\n image: newNode.image || \"\",\n color: newNode.color || undefined,\n clip_path: newNode.clipPath || undefined,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n var _node = this.renkan.project.addNode(_nodedata),\n _repr = this.getRepresentationByModel(_node);\n if (_event.type === \"drop\") {\n _repr.openEditor();\n }\n },\n fullScreen: function() {\n var _isFull = document.fullScreen || document.mozFullScreen || document.webkitIsFullScreen,\n _el = this.renkan.$[0],\n _requestMethods = [\"requestFullScreen\",\"mozRequestFullScreen\",\"webkitRequestFullScreen\"],\n _cancelMethods = [\"cancelFullScreen\",\"mozCancelFullScreen\",\"webkitCancelFullScreen\"],\n i;\n if (_isFull) {\n for (i = 0; i < _cancelMethods.length; i++) {\n if (typeof document[_cancelMethods[i]] === \"function\") {\n document[_cancelMethods[i]]();\n break;\n }\n }\n var widthAft = this.$.width();\n var heightAft = this.$.height();\n\n if (this.renkan.options.show_top_bar) {\n heightAft -= this.$.find(\".Rk-TopBar\").height();\n }\n if (this.renkan.options.show_bins && (this.renkan.$.find(\".Rk-Bins\").position().left > 0)) {\n widthAft -= this.renkan.$.find(\".Rk-Bins\").width();\n }\n\n paper.view.viewSize = new paper.Size([widthAft, heightAft]);\n\n } else {\n for (i = 0; i < _requestMethods.length; i++) {\n if (typeof _el[_requestMethods[i]] === \"function\") {\n _el[_requestMethods[i]]();\n break;\n }\n }\n this.redraw();\n }\n },\n zoomOut: function() {\n var _newScale = this.scale * Math.SQRT1_2,\n _offset = new paper.Point([\n this.canvas_$.width(),\n this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - Math.SQRT1_2 ) ).add(this.offset.multiply( Math.SQRT1_2 ));\n this.setScale( _newScale, _offset );\n },\n zoomIn: function() {\n var _newScale = this.scale * Math.SQRT2,\n _offset = new paper.Point([\n this.canvas_$.width(),\n this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - Math.SQRT2 ) ).add(this.offset.multiply( Math.SQRT2 ));\n this.setScale( _newScale, _offset );\n },\n resizeZoom: function(_scaleWidth, _scaleHeight, _ratio) {\n var _newScale = this.scale * _ratio,\n _offset = new paper.Point([\n (this.offset.x * _scaleWidth),\n (this.offset.y * _scaleHeight)\n ]);\n this.setScale( _newScale, _offset );\n },\n addNodeBtn: function() {\n if (this.click_mode === Utils._CLICKMODE_ADDNODE) {\n this.click_mode = false;\n this.notif_$.hide();\n } else {\n this.click_mode = Utils._CLICKMODE_ADDNODE;\n this.notif_$.text(this.renkan.translate(\"Click on the background canvas to add a node\")).fadeIn();\n }\n return false;\n },\n addEdgeBtn: function() {\n if (this.click_mode === Utils._CLICKMODE_STARTEDGE || this.click_mode === Utils._CLICKMODE_ENDEDGE) {\n this.click_mode = false;\n this.notif_$.hide();\n } else {\n this.click_mode = Utils._CLICKMODE_STARTEDGE;\n this.notif_$.text(this.renkan.translate(\"Click on a first node to start the edge\")).fadeIn();\n }\n return false;\n },\n exportProject: function() {\n var projectJSON = this.renkan.project.toJSON(),\n downloadLink = document.createElement(\"a\"),\n projectId = projectJSON.id,\n fileNameToSaveAs = projectId + \".json\";\n\n // clean ids\n delete projectJSON.id;\n delete projectJSON._id;\n delete projectJSON.space_id;\n\n var objId,\n idsMap = {},\n hiddenNodes;\n\n _.each(projectJSON.nodes, function(e,i,l) {\n objId = e.id || e._id;\n delete e._id;\n delete e.id;\n idsMap[objId] = e['@id'] = Utils.getUUID4();\n });\n _.each(projectJSON.edges, function(e,i,l) {\n delete e._id;\n delete e.id;\n e.to = idsMap[e.to];\n e.from = idsMap[e.from];\n });\n _.each(projectJSON.views, function(e,i,l) {\n delete e._id;\n delete e.id;\n\n if(e.hidden_nodes) {\n hiddenNodes = e.hidden_nodes;\n e.hidden_nodes = [];\n _.each(hiddenNodes, function(h,j) {\n e.hidden_nodes.push(idsMap[h]);\n });\n }\n });\n projectJSON.users = [];\n\n var projectJSONStr = JSON.stringify(projectJSON, null, 2);\n var blob = new Blob([projectJSONStr], {type: \"application/json;charset=utf-8\"});\n filesaver(blob,fileNameToSaveAs);\n\n },\n parameters: function(_params){\n if (typeof _params.idnode !== 'undefined'){\n this.unhighlightAll();\n this.highlightModel(this.renkan.project.get(\"nodes\").get(_params.idnode)); \n }\n },\n foldBins: function() {\n var foldBinsButton = this.$.find(\".Rk-Fold-Bins\"),\n bins = this.renkan.$.find(\".Rk-Bins\");\n var _this = this,\n sizeBef = _this.canvas_$.width(),\n sizeAft;\n if (bins.position().left < 0) {\n bins.animate({left: 0},250);\n this.$.animate({left: 300},250,function() {\n var w = _this.$.width();\n paper.view.viewSize = new paper.Size([w, _this.canvas_$.height()]);\n });\n if ((sizeBef - bins.width()) < bins.height()){\n sizeAft = sizeBef;\n } else {\n sizeAft = sizeBef - bins.width();\n }\n foldBinsButton.html(\"«\");\n } else {\n bins.animate({left: -300},250);\n this.$.animate({left: 0},250,function() {\n var w = _this.$.width();\n paper.view.viewSize = new paper.Size([w, _this.canvas_$.height()]);\n });\n sizeAft = sizeBef+300;\n foldBinsButton.html(\"»\");\n }\n _this.resizeZoom(1, 1, (sizeAft/sizeBef));\n },\n save: function() { },\n open: function() { }\n }).value();\n\n /* Scene End */\n\n return Scene;\n\n});\n\n\n//Load modules and use them\nif( typeof require.config === \"function\" ) {\n require.config({\n paths: {\n 'jquery':'../lib/jquery/jquery',\n 'underscore':'../lib/lodash/lodash',\n 'filesaver' :'../lib/FileSaver/FileSaver',\n 'requtils':'require-utils',\n 'ckeditor-core':'../lib/ckeditor/ckeditor',\n 'ckeditor-jquery':'../lib/ckeditor/adapters/jquery'\n },\n shim: {\n 'ckeditor-jquery':{\n deps:['jquery','ckeditor-core']\n }\n },\n });\n}\n\nrequire(['renderer/baserepresentation',\n 'renderer/basebutton',\n 'renderer/noderepr',\n 'renderer/edge',\n 'renderer/tempedge',\n 'renderer/baseeditor',\n 'renderer/nodeeditor',\n 'renderer/edgeeditor',\n 'renderer/nodebutton',\n 'renderer/nodeeditbutton',\n 'renderer/noderemovebutton',\n 'renderer/nodehidebutton',\n 'renderer/nodeshowbutton',\n 'renderer/noderevertbutton',\n 'renderer/nodelinkbutton',\n 'renderer/nodeenlargebutton',\n 'renderer/nodeshrinkbutton',\n 'renderer/edgeeditbutton',\n 'renderer/edgeremovebutton',\n 'renderer/edgerevertbutton',\n 'renderer/miniframe',\n 'renderer/scene'\n ], function(BaseRepresentation, BaseButton, NodeRepr, Edge, TempEdge, BaseEditor, NodeEditor, EdgeEditor, NodeButton, NodeEditButton, NodeRemoveButton, NodeHideButton, NodeShowButton, NodeRevertButton, NodeLinkButton, NodeEnlargeButton, NodeShrinkButton, EdgeEditButton, EdgeRemoveButton, EdgeRevertButton, MiniFrame, Scene){\n\n \n\n var Rkns = window.Rkns;\n\n if(typeof Rkns.Renderer === \"undefined\"){\n Rkns.Renderer = {};\n }\n var Renderer = Rkns.Renderer;\n\n Renderer._BaseRepresentation = BaseRepresentation;\n Renderer._BaseButton = BaseButton;\n Renderer.Node = NodeRepr;\n Renderer.Edge = Edge;\n Renderer.TempEdge = TempEdge;\n Renderer._BaseEditor = BaseEditor;\n Renderer.NodeEditor = NodeEditor;\n Renderer.EdgeEditor = EdgeEditor;\n Renderer._NodeButton = NodeButton;\n Renderer.NodeEditButton = NodeEditButton;\n Renderer.NodeRemoveButton = NodeRemoveButton;\n Renderer.NodeHideButton = NodeHideButton;\n Renderer.NodeShowButton = NodeShowButton;\n Renderer.NodeRevertButton = NodeRevertButton;\n Renderer.NodeLinkButton = NodeLinkButton;\n Renderer.NodeEnlargeButton = NodeEnlargeButton;\n Renderer.NodeShrinkButton = NodeShrinkButton;\n Renderer.EdgeEditButton = EdgeEditButton;\n Renderer.EdgeRemoveButton = EdgeRemoveButton;\n Renderer.EdgeRevertButton = EdgeRevertButton;\n Renderer.MiniFrame = MiniFrame;\n Renderer.Scene = Scene;\n\n startRenkan();\n});\n\ndefine(\"main-renderer\", function(){});\n\n"]} \ No newline at end of file diff -r 48be7ebb3187 -r 1324bd8747ff server/php/basic/public_html/static/lib/requirejs/require.js --- a/server/php/basic/public_html/static/lib/requirejs/require.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/php/basic/public_html/static/lib/requirejs/require.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,5 +1,5 @@ /** vim: et:ts=4:sw=4:sts=4 - * @license RequireJS 2.1.17 Copyright (c) 2010-2015, The Dojo Foundation All Rights Reserved. + * @license RequireJS 2.1.15 Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. * Available via the MIT or new BSD license. * see: http://github.com/jrburke/requirejs for details */ @@ -12,7 +12,7 @@ (function (global) { var req, s, head, baseElement, dataMain, src, interactiveScript, currentlyAddingScript, mainScript, subPath, - version = '2.1.17', + version = '2.1.15', commentRegExp = /(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg, cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g, jsSuffixRegExp = /\.js$/, @@ -244,7 +244,7 @@ // still work when converted to a path, even though // as an ID it is less than ideal. In larger point // releases, may be better to just kick out an error. - if (i === 0 || (i === 1 && ary[2] === '..') || ary[i - 1] === '..') { + if (i === 0 || (i == 1 && ary[2] === '..') || ary[i - 1] === '..') { continue; } else if (i > 0) { ary.splice(i - 1, 2); @@ -1123,13 +1123,6 @@ if (this.errback) { on(depMap, 'error', bind(this, this.errback)); - } else if (this.events.error) { - // No direct errback on this module, but something - // else is listening for errors, so be sure to - // propagate the error correctly. - on(depMap, 'error', bind(this, function(err) { - this.emit('error', err); - })); } } diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/FileSaver/FileSaver.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/FileSaver/FileSaver.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/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/python/django/renkanmanager/static/renkanmanager/lib/FileSaver/FileSaver.min.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/FileSaver/FileSaver.min.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/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/python/django/renkanmanager/static/renkanmanager/lib/FileSaver/LICENSE.md --- a/server/python/django/renkanmanager/static/renkanmanager/lib/FileSaver/LICENSE.md Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/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/python/django/renkanmanager/static/renkanmanager/lib/FileSaver/README.md --- a/server/python/django/renkanmanager/static/renkanmanager/lib/FileSaver/README.md Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/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. ![Tracking image](https://in.getclicky.com/212712ns.gif) [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/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.compat.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.compat.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/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) + * Lo-Dash 2.4.2 (Custom Build) * Build: `lodash -o ./dist/lodash.compat.js` * Copyright 2012-2013 The Dojo Foundation * Based on Underscore.js 1.5.2 * Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - * Available under MIT license + * Available under MIT license */ ;(function() { @@ -1818,6 +1818,7 @@ var setBindData = !defineProperty ? noop : function(func, value) { descriptor.value = value; defineProperty(func, '__bindData__', descriptor); + descriptor.value = null; }; /** @@ -6489,7 +6490,7 @@ * debugging. See http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl * * For more information on precompiling templates see: - * http://lodash.com/custom-builds + * https://lodash.com/custom-builds * * For more information on Chrome extension sandboxes see: * http://developer.chrome.com/stable/extensions/sandboxingEval.html @@ -7058,7 +7059,7 @@ * @memberOf _ * @type string */ - lodash.VERSION = '2.4.1'; + lodash.VERSION = '2.4.2'; // add "Chaining" functions to the wrapper lodash.prototype.chain = wrapperChain; diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.compat.min.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.compat.min.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.compat.min.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,61 +1,92 @@ /** * @license - * Lo-Dash 2.4.1 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE + * Lo-Dash 2.4.2 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE * Build: `lodash -o ./dist/lodash.compat.js` */ -;(function(){function n(n,t,e){e=(e||0)-1;for(var r=n?n.length:0;++ei||typeof a=="undefined")return 1;if(ae?0:e);++r=_&&a===n,f=[];if(l){var c=o(r);c?(a=t,r=c):l=false}for(;++ua(r,c)&&f.push(c);return l&&p(r),f}function ot(n,t,e,r){r=(r||0)-1; -for(var u=n?n.length:0,o=[];++r=_&&l===n,h=u||g?i():s;for(g&&(h=o(h),l=t);++al(h,y))&&((u||g)&&h.push(y),s.push(v))}return g?(c(h.k),p(h)):u&&c(h),s}function ct(n){return function(t,e,r){var u={}; -if(e=v.createCallback(e,r,3),qe(t)){r=-1;for(var o=t.length;++rk;k++)r+="n='"+e.h[k]+"';if((!(r&&x[n])&&m.call(t,n))",e.j||(r+="||(!x[n]&&t[n]!==A[n])"),r+="){"+e.g+"}"; -r+="}"}return(e.b||Le.nonEnumArgs)&&(r+="}"),r+=e.c+";return E",n("d,j,k,m,o,p,q,s,v,A,B,y,I,J,L",t+r+"}")(tt,q,ce,we,d,dt,qe,kt,Q.f,pe,X,$e,M,se,he)}function gt(n){return Ve[n]}function ht(){var t=(t=v.indexOf)===zt?n:t;return t}function vt(n){return typeof n=="function"&&ve.test(n)}function yt(n){var t,e;return!n||he.call(n)!=G||(t=n.constructor,jt(t)&&!(t instanceof t))||!Le.argsClass&&dt(n)||!Le.nodeClass&&f(n)?false:Le.ownLast?(nr(n,function(n,t,r){return e=we.call(r,t),false}),false!==e):(nr(n,function(n,t){e=t -}),typeof e=="undefined"||we.call(n,e))}function mt(n){return He[n]}function dt(n){return n&&typeof n=="object"&&typeof n.length=="number"&&he.call(n)==T||false}function bt(n,t,e){var r=We(n),u=r.length;for(t=tt(t,e,3);u--&&(e=r[u],false!==t(n[e],e,n)););return n}function _t(n){var t=[];return nr(n,function(n,e){jt(n)&&t.push(e)}),t.sort()}function wt(n){for(var t=-1,e=We(n),r=e.length,u={};++te?Be(0,o+e):e)||0,qe(n)?a=-1o&&(o=i)}}else t=null==t&&kt(n)?r:v.createCallback(t,e,3),Xe(n,function(n,e,r){e=t(n,e,r),e>u&&(u=e,o=n)});return o}function Rt(n,t,e,r){var u=3>arguments.length;if(t=v.createCallback(t,r,4),qe(n)){var o=-1,a=n.length;for(u&&(e=n[++o]);++oarguments.length; -return t=v.createCallback(t,r,4),Nt(n,function(n,r,o){e=u?(u=false,n):t(e,n,r,o)}),e}function Tt(n){var t=-1,e=n?n.length:0,r=Zt(typeof e=="number"?e:0);return Dt(n,function(n){var e=lt(0,++t);r[t]=r[e],r[e]=n}),r}function $t(n,t,e){var r;if(t=v.createCallback(t,e,3),qe(n)){e=-1;for(var u=n.length;++er?Be(0,u+r):r||0}else if(r)return r=Kt(t,e),t[r]===e?r:-1;return n(t,e,r)}function qt(n,t,e){if(typeof t!="number"&&null!=t){var r=0,u=-1,o=n?n.length:0;for(t=v.createCallback(t,e,3);++u>>1,e(n[r])e?0:e);++t=h;m?(u&&(u=me(u)),c=a,o=n.apply(i,r)):u||(u=Ce(y,h))}return m&&l?l=me(l):l||t===p||(l=Ce(v,t)),e&&(m=true,o=n.apply(i,r)),!m||l||u||(r=i=null),o}}function Ht(n){return n}function Ut(n,t,e){var r=true,u=t&&_t(t);t&&(e||u.length)||(null==e&&(e=t),o=y,t=n,n=v,u=_t(t)),false===e?r=false:xt(e)&&"chain"in e&&(r=e.chain);var o=n,a=jt(o);Dt(u,function(e){var u=n[e]=t[e];a&&(o.prototype[e]=function(){var t=this.__chain__,e=this.__wrapped__,a=[e];if(je.apply(a,arguments),a=u.apply(n,a),r||t){if(e===a&&xt(a))return this; -a=new o(a),a.__chain__=t}return a})})}function Qt(){}function Xt(n){return function(t){return t[n]}}function Yt(){return this.__wrapped__}e=e?ut.defaults(Z.Object(),e,ut.pick(Z,R)):Z;var Zt=e.Array,ne=e.Boolean,te=e.Date,ee=e.Function,re=e.Math,ue=e.Number,oe=e.Object,ae=e.RegExp,ie=e.String,le=e.TypeError,fe=[],ce=e.Error.prototype,pe=oe.prototype,se=ie.prototype,ge=e._,he=pe.toString,ve=ae("^"+ie(he).replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/toString| for [^\]]+/g,".*?")+"$"),ye=re.ceil,me=e.clearTimeout,de=re.floor,be=ee.prototype.toString,_e=vt(_e=oe.getPrototypeOf)&&_e,we=pe.hasOwnProperty,je=fe.push,xe=pe.propertyIsEnumerable,Ce=e.setTimeout,ke=fe.splice,Ee=fe.unshift,Oe=function(){try{var n={},t=vt(t=oe.defineProperty)&&t,e=t(n,n,n)&&t -}catch(r){}return e}(),Se=vt(Se=oe.create)&&Se,Ae=vt(Ae=Zt.isArray)&&Ae,Ie=e.isFinite,De=e.isNaN,Ne=vt(Ne=oe.keys)&&Ne,Be=re.max,Pe=re.min,Re=e.parseInt,Fe=re.random,Te={};Te[$]=Zt,Te[L]=ne,Te[z]=te,Te[K]=ee,Te[G]=oe,Te[W]=ue,Te[J]=ae,Te[M]=ie;var $e={};$e[$]=$e[z]=$e[W]={constructor:true,toLocaleString:true,toString:true,valueOf:true},$e[L]=$e[M]={constructor:true,toString:true,valueOf:true},$e[q]=$e[K]=$e[J]={constructor:true,toString:true},$e[G]={constructor:true},function(){for(var n=F.length;n--;){var t,e=F[n]; -for(t in $e)we.call($e,t)&&!we.call($e[t],e)&&($e[t][e]=false)}}(),y.prototype=v.prototype;var Le=v.support={};!function(){var n=function(){this.x=1},t={0:1,length:1},r=[];n.prototype={valueOf:1,y:1};for(var u in new n)r.push(u);for(u in arguments);Le.argsClass=he.call(arguments)==T,Le.argsObject=arguments.constructor==oe&&!(arguments instanceof Zt),Le.enumErrorProps=xe.call(ce,"message")||xe.call(ce,"name"),Le.enumPrototypes=xe.call(n,"prototype"),Le.funcDecomp=!vt(e.WinRTError)&&B.test(g),Le.funcNames=typeof ee.name=="string",Le.nonEnumArgs=0!=u,Le.nonEnumShadows=!/valueOf/.test(r),Le.ownLast="x"!=r[0],Le.spliceObjects=(fe.splice.call(t,0,1),!t[0]),Le.unindexedChars="xx"!="x"[0]+oe("x")[0]; -try{Le.nodeClass=!(he.call(document)==G&&!({toString:0}+""))}catch(o){Le.nodeClass=true}}(1),v.templateSettings={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:I,variable:"",imports:{_:v}},Se||(nt=function(){function n(){}return function(t){if(xt(t)){n.prototype=t;var r=new n;n.prototype=null}return r||e.Object()}}());var ze=Oe?function(n,t){U.value=t,Oe(n,"__bindData__",U)}:Qt;Le.argsClass||(dt=function(n){return n&&typeof n=="object"&&typeof n.length=="number"&&we.call(n,"callee")&&!xe.call(n,"callee")||false -});var qe=Ae||function(n){return n&&typeof n=="object"&&typeof n.length=="number"&&he.call(n)==$||false},Ke=st({a:"z",e:"[]",i:"if(!(B[typeof z]))return E",g:"E.push(n)"}),We=Ne?function(n){return xt(n)?Le.enumPrototypes&&typeof n=="function"||Le.nonEnumArgs&&n.length&&dt(n)?Ke(n):Ne(n):[]}:Ke,Ge={a:"g,e,K",i:"e=e&&typeof K=='undefined'?e:d(e,K,3)",b:"typeof u=='number'",v:We,g:"if(e(t[n],n,g)===false)return E"},Je={a:"z,H,l",i:"var a=arguments,b=0,c=typeof l=='number'?2:a.length;while(++b":">",'"':""","'":"'"},He=wt(Ve),Ue=ae("("+We(He).join("|")+")","g"),Qe=ae("["+We(Ve).join("")+"]","g"),Xe=st(Ge),Ye=st(Je,{i:Je.i.replace(";",";if(c>3&&typeof a[c-2]=='function'){var e=d(a[--c-1],a[c--],2)}else if(c>2&&typeof a[c-1]=='function'){e=a[--c]}"),g:"E[n]=e?e(E[n],t[n]):t[n]"}),Ze=st(Je),nr=st(Ge,Me,{j:false}),tr=st(Ge,Me); -jt(/x/)&&(jt=function(n){return typeof n=="function"&&he.call(n)==K});var er=_e?function(n){if(!n||he.call(n)!=G||!Le.argsClass&&dt(n))return false;var t=n.valueOf,e=vt(t)&&(e=_e(t))&&_e(e);return e?n==e||_e(n)==e:yt(n)}:yt,rr=ct(function(n,t,e){we.call(n,e)?n[e]++:n[e]=1}),ur=ct(function(n,t,e){(we.call(n,e)?n[e]:n[e]=[]).push(t)}),or=ct(function(n,t,e){n[e]=t}),ar=Bt,ir=vt(ir=te.now)&&ir||function(){return(new te).getTime()},lr=8==Re(j+"08")?Re:function(n,t){return Re(kt(n)?n.replace(D,""):n,t||0)}; -return v.after=function(n,t){if(!jt(t))throw new le;return function(){return 1>--n?t.apply(this,arguments):void 0}},v.assign=Ye,v.at=function(n){var t=arguments,e=-1,r=ot(t,true,false,1),t=t[2]&&t[2][t[1]]===n?1:r.length,u=Zt(t);for(Le.unindexedChars&&kt(n)&&(n=n.split(""));++e=_&&o(r?e[r]:s)))}var f=e[0],h=-1,v=f?f.length:0,y=[];n:for(;++h(m?t(m,g):l(s,g))){for(r=u,(m||s).push(g);--r;)if(m=a[r],0>(m?t(m,g):l(e[r],g)))continue n;y.push(g) -}}for(;u--;)(m=a[u])&&p(m);return c(a),c(s),y},v.invert=wt,v.invoke=function(n,t){var e=s(arguments,2),r=-1,u=typeof t=="function",o=n?n.length:0,a=Zt(typeof o=="number"?o:0);return Dt(n,function(n){a[++r]=(u?t:n[t]).apply(n,e)}),a},v.keys=We,v.map=Bt,v.mapValues=function(n,t,e){var r={};return t=v.createCallback(t,e,3),tr(n,function(n,e,u){r[e]=t(n,e,u)}),r},v.max=Pt,v.memoize=function(n,t){if(!jt(n))throw new le;var e=function(){var r=e.cache,u=t?t.apply(this,arguments):b+arguments[0];return we.call(r,u)?r[u]:r[u]=n.apply(this,arguments) -};return e.cache={},e},v.merge=function(n){var t=arguments,e=2;if(!xt(n))return n;if("number"!=typeof t[2]&&(e=t.length),3e?Be(0,r+e):Pe(e,r-1))+1);r--;)if(n[r]===t)return r;return-1},v.mixin=Ut,v.noConflict=function(){return e._=ge,this},v.noop=Qt,v.now=ir,v.parseInt=lr,v.random=function(n,t,e){var r=null==n,u=null==t;return null==e&&(typeof n=="boolean"&&u?(e=n,n=1):u||typeof t!="boolean"||(e=t,u=true)),r&&u&&(t=1),n=+n||0,u?(t=n,n=0):t=+t||0,e||n%1||t%1?(e=Fe(),Pe(n+e*(t-n+parseFloat("1e-"+((e+"").length-1))),t)):lt(n,t)},v.reduce=Rt,v.reduceRight=Ft,v.result=function(n,t){if(n){var e=n[t]; -return jt(e)?n[t]():e}},v.runInContext=g,v.size=function(n){var t=n?n.length:0;return typeof t=="number"?t:We(n).length},v.some=$t,v.sortedIndex=Kt,v.template=function(n,t,e){var r=v.templateSettings;n=ie(n||""),e=Ze({},e,r);var u,o=Ze({},e.imports,r.imports),r=We(o),o=Et(o),i=0,l=e.interpolate||N,f="__p+='",l=ae((e.escape||N).source+"|"+l.source+"|"+(l===I?O:N).source+"|"+(e.evaluate||N).source+"|$","g");n.replace(l,function(t,e,r,o,l,c){return r||(r=o),f+=n.slice(i,c).replace(P,a),e&&(f+="'+__e("+e+")+'"),l&&(u=true,f+="';"+l+";\n__p+='"),r&&(f+="'+((__t=("+r+"))==null?'':__t)+'"),i=c+t.length,t -}),f+="';",l=e=e.variable,l||(e="obj",f="with("+e+"){"+f+"}"),f=(u?f.replace(x,""):f).replace(C,"$1").replace(E,"$1;"),f="function("+e+"){"+(l?"":e+"||("+e+"={});")+"var __t,__p='',__e=_.escape"+(u?",__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}":";")+f+"return __p}";try{var c=ee(r,"return "+f).apply(h,o)}catch(p){throw p.source=f,p}return t?c(t):(c.source=f,c)},v.unescape=function(n){return null==n?"":ie(n).replace(Ue,mt)},v.uniqueId=function(n){var t=++m;return ie(null==n?"":n)+t -},v.all=St,v.any=$t,v.detect=It,v.findWhere=It,v.foldl=Rt,v.foldr=Ft,v.include=Ot,v.inject=Rt,Ut(function(){var n={};return tr(v,function(t,e){v.prototype[e]||(n[e]=t)}),n}(),false),v.first=Lt,v.last=function(n,t,e){var r=0,u=n?n.length:0;if(typeof t!="number"&&null!=t){var o=u;for(t=v.createCallback(t,e,3);o--&&t(n[o],o,n);)r++}else if(r=t,null==r||e)return n?n[u-1]:h;return s(n,Be(0,u-r))},v.sample=function(n,t,e){return n&&typeof n.length!="number"?n=Et(n):Le.unindexedChars&&kt(n)&&(n=n.split("")),null==t||e?n?n[lt(0,n.length-1)]:h:(n=Tt(n),n.length=Pe(Be(0,t),n.length),n) -},v.take=Lt,v.head=Lt,tr(v,function(n,t){var e="sample"!==t;v.prototype[t]||(v.prototype[t]=function(t,r){var u=this.__chain__,o=n(this.__wrapped__,t,r);return u||null!=t&&(!r||e&&typeof t=="function")?new y(o,u):o})}),v.VERSION="2.4.1",v.prototype.chain=function(){return this.__chain__=true,this},v.prototype.toString=function(){return ie(this.__wrapped__)},v.prototype.value=Yt,v.prototype.valueOf=Yt,Xe(["join","pop","shift"],function(n){var t=fe[n];v.prototype[n]=function(){var n=this.__chain__,e=t.apply(this.__wrapped__,arguments); -return n?new y(e,n):e}}),Xe(["push","reverse","sort","unshift"],function(n){var t=fe[n];v.prototype[n]=function(){return t.apply(this.__wrapped__,arguments),this}}),Xe(["concat","slice","splice"],function(n){var t=fe[n];v.prototype[n]=function(){return new y(t.apply(this.__wrapped__,arguments),this.__chain__)}}),Le.spliceObjects||Xe(["pop","shift","splice"],function(n){var t=fe[n],e="splice"==n;v.prototype[n]=function(){var n=this.__chain__,r=this.__wrapped__,u=t.apply(r,arguments);return 0===r.length&&delete r[0],n||e?new y(u,n):u -}}),v}var h,v=[],y=[],m=0,d={},b=+new Date+"",_=75,w=40,j=" \t\x0B\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000",x=/\b__p\+='';/g,C=/\b(__p\+=)''\+/g,E=/(__e\(.*?\)|\b__t\))\+'';/g,O=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,S=/\w*$/,A=/^\s*function[ \n\r\t]+\w/,I=/<%=([\s\S]+?)%>/g,D=RegExp("^["+j+"]*0+(?=.$)"),N=/($^)/,B=/\bthis\b/,P=/['\n\r\t\u2028\u2029\\]/g,R="Array Boolean Date Error Function Math Number Object RegExp String _ attachEvent clearTimeout isFinite isNaN parseInt setTimeout".split(" "),F="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" "),T="[object Arguments]",$="[object Array]",L="[object Boolean]",z="[object Date]",q="[object Error]",K="[object Function]",W="[object Number]",G="[object Object]",J="[object RegExp]",M="[object String]",V={}; -V[K]=false,V[T]=V[$]=V[L]=V[z]=V[W]=V[G]=V[J]=V[M]=true;var H={leading:false,maxWait:0,trailing:false},U={configurable:false,enumerable:false,value:null,writable:false},Q={a:"",b:null,c:"",d:"",e:"",v:null,g:"",h:null,support:null,i:"",j:false},X={"boolean":false,"function":true,object:true,number:false,string:false,undefined:false},Y={"\\":"\\","'":"'","\n":"n","\r":"r","\t":"t","\u2028":"u2028","\u2029":"u2029"},Z=X[typeof window]&&window||this,nt=X[typeof exports]&&exports&&!exports.nodeType&&exports,tt=X[typeof module]&&module&&!module.nodeType&&module,et=tt&&tt.exports===nt&&nt,rt=X[typeof global]&&global; -!rt||rt.global!==rt&&rt.window!==rt||(Z=rt);var ut=g();typeof define=="function"&&typeof define.amd=="object"&&define.amd?(Z._=ut, define(function(){return ut})):nt&&tt?et?(tt.exports=ut)._=ut:nt._=ut:Z._=ut}).call(this); \ No newline at end of file +;(function(){function n(n,r,e){for(var t=(e||0)-1,o=n?n.length:0;++t-1?0:-1:r?0:-1}function e(n){var r=this.cache,e=typeof n;if("boolean"==e||null==n)r[n]=!0;else{"number"!=e&&"string"!=e&&(e="object");var t="number"==e?n:m+n,o=r[e]||(r[e]={});"object"==e?(o[t]||(o[t]=[])).push(n):o[t]=!0; + +}}function t(n){return n.charCodeAt(0)}function o(n,r){for(var e=n.criteria,t=r.criteria,o=-1,u=e.length;++oi||"undefined"==typeof a)return 1;if(a=_&&a===n,c=[];if(l){var f=u(t);f?(a=r,t=f):l=!1}for(;++o-1:h});return o.pop(),u.pop(),_&&(f(o),f(u)),a}function cn(n,r,e,t,o){(st(r)?or:Ct)(r,function(r,u){var a,i,l=r,c=n[u];if(r&&((i=st(r))||Pt(r))){for(var f=t.length;f--;)if(a=t[f]==r){c=o[f];break}if(!a){var s;e&&(l=e(c,r),(s="undefined"!=typeof l)&&(c=l)),s||(c=i?st(c)?c:[]:Pt(c)?c:{}),t.push(r),o.push(c),s||cn(c,r,e,t,o)}}else e&&(l=e(c,r),"undefined"==typeof l&&(l=r)),"undefined"!=typeof l&&(c=l);n[u]=c; + +})}function fn(n,r){return n+We(ut()*(r-n+1))}function sn(e,t,o){var a=-1,l=yn(),c=e?e.length:0,p=[],g=!t&&c>=_&&l===n,h=o||g?i():p;if(g){var v=u(h);l=r,h=v}for(;++a3&&"function"==typeof r[e-2])var t=en(r[--e-1],r[e--],2);else e>2&&"function"==typeof r[e-1]&&(t=r[--e]);for(var o=p(arguments,1,e),u=-1,a=i(),l=i();++u-1:"number"==typeof u?a=(zn(n)?n.indexOf(r,e):o(n,r,e))>-1:wt(n,function(n){return++tu&&(u=l)}else r=null==r&&zn(n)?t:v.createCallback(r,e,3),wt(n,function(n,e,t){var a=r(n,e,t);a>o&&(o=a,u=n)});return u}function cr(n,r,e){var o=1/0,u=o;if("function"!=typeof r&&e&&e[r]===n&&(r=null),null==r&&st(n))for(var a=-1,i=n.length;++a=_&&u(t?e[t]:p)))}var h=e[0],v=-1,y=h?h.length:0,b=[];n:for(;++v>>1;e(n[a])1?arguments:arguments[0],r=-1,e=n?lr(At(n,"length")):0,t=we(e<0?0:e);++r2?gn(n,17,p(arguments,2),null,r):gn(n,1,null,null,r)}function zr(n){for(var r=arguments.length>1?an(arguments,!0,!1,1):On(n),e=-1,t=r.length;++e2?gn(r,19,p(arguments,2),null,n):gn(r,3,null,null,n)}function Ur(){for(var n=arguments,r=n.length;r--;)if(!$n(n[r]))throw new Ie;return function(){for(var r=arguments,e=n.length;e--;)r=[n[e].apply(this,r)]; + +return r[0]}}function Mr(n,r){return r="number"==typeof r?r:+r||n.length,gn(n,4,null,null,null,r)}function Vr(n,r,e){var t,o,u,a,i,l,c,f=0,s=!1,p=!0;if(!$n(n))throw new Ie;if(r=et(0,r)||0,e===!0){var g=!0;p=!1}else Fn(e)&&(g=e.leading,s="maxWait"in e&&(et(r,e.maxWait)||0),p="trailing"in e?e.trailing:p);var v=function(){var e=r-(Lt()-a);if(e>0)l=Ve(v,e);else{o&&He(o);var s=c;o=l=c=h,s&&(f=Lt(),u=n.apply(i,t),l||o||(t=i=null))}},y=function(){l&&He(l),o=l=c=h,(p||s!==r)&&(f=Lt(),u=n.apply(i,t),l||o||(t=i=null)); + +};return function(){if(t=arguments,a=Lt(),i=this,c=p&&(l||!g),s===!1)var e=g&&!l;else{o||g||(f=a);var h=s-(a-f),b=h<=0;b?(o&&(o=He(o)),f=a,u=n.apply(i,t)):o||(o=Ve(y,h))}return b&&l?l=He(l):l||r===s||(l=Ve(v,r)),e&&(b=!0,u=n.apply(i,t)),!b||l||o||(t=i=null),u}}function Gr(n){if(!$n(n))throw new Ie;var r=p(arguments,1);return Ve(function(){n.apply(h,r)},1)}function Jr(n,r){if(!$n(n))throw new Ie;var e=p(arguments,2);return Ve(function(){n.apply(h,e)},r)}function Qr(n,r){if(!$n(n))throw new Ie;var e=function(){ +var t=e.cache,o=r?r.apply(this,arguments):m+arguments[0];return Ke.call(t,o)?t[o]:t[o]=n.apply(this,arguments)};return e.cache={},e}function Xr(n){var r,e;if(!$n(n))throw new Ie;return function(){return r?e:(r=!0,e=n.apply(this,arguments),n=null,e)}}function Yr(n){return gn(n,16,p(arguments,1))}function Zr(n){return gn(n,32,null,p(arguments,1))}function ne(n,r,e){var t=!0,o=!0;if(!$n(n))throw new Ie;return e===!1?t=!1:Fn(e)&&(t="leading"in e?e.leading:t,o="trailing"in e?e.trailing:o),J.leading=t, +J.maxWait=r,J.trailing=o,Vr(n,r,J)}function re(n,r){return gn(r,16,[n])}function ee(n){return function(){return n}}function te(n,r,e){var t=typeof n;if(null==n||"function"==t)return en(n,r,e);if("object"!=t)return ce(n);var o=gt(n),u=o[0],a=n[u];return 1!=o.length||a!==a||Fn(a)?function(r){for(var e=o.length,t=!1;e--&&(t=ln(r[o[e]],n[o[e]],null,!0)););return t}:function(n){var r=n[u];return a===r&&(0!==a||1/a==1/r)}}function oe(n){return null==n?"":Ae(n).replace(_t,vn)}function ue(n){return n}function ae(n,r,e){ +var t=!0,o=r&&On(r);r&&(e||o.length)||(null==e&&(e=r),u=y,r=n,n=v,o=On(r)),e===!1?t=!1:Fn(e)&&"chain"in e&&(t=e.chain);var u=n,a=$n(u);or(o,function(e){var o=n[e]=r[e];a&&(u.prototype[e]=function(){var r=this.__chain__,e=this.__wrapped__,a=[e];Ue.apply(a,arguments);var i=o.apply(n,a);if(t||r){if(e===i&&Fn(i))return this;i=new u(i),i.__chain__=r}return i})})}function ie(){return e._=De,this}function le(){}function ce(n){return function(r){return r[n]}}function fe(n,r,e){var t=null==n,o=null==r;if(null==e&&("boolean"==typeof n&&o?(e=n, +n=1):o||"boolean"!=typeof r||(e=r,o=!0)),t&&o&&(r=1),n=+n||0,o?(r=n,n=0):r=+r||0,e||n%1||r%1){var u=ut();return tt(n+u*(r-n+parseFloat("1e-"+((u+"").length-1))),r)}return fn(n,r)}function se(n,r){if(n){var e=n[r];return $n(e)?n[r]():e}}function pe(n,r,e){var t=v.templateSettings;n=Ae(n||""),e=jt({},e,t);var o,u=jt({},e.imports,t.imports),i=gt(u),l=Xn(u),c=0,f=e.interpolate||L,s="__p += '",p=Se((e.escape||L).source+"|"+f.source+"|"+(f===A?E:L).source+"|"+(e.evaluate||L).source+"|$","g");n.replace(p,function(r,e,t,u,i,l){ +return t||(t=u),s+=n.slice(c,l).replace(R,a),e&&(s+="' +\n__e("+e+") +\n'"),i&&(o=!0,s+="';\n"+i+";\n__p += '"),t&&(s+="' +\n((__t = ("+t+")) == null ? '' : __t) +\n'"),c=l+r.length,r}),s+="';\n";var g=e.variable,y=g;y||(g="obj",s="with ("+g+") {\n"+s+"\n}\n"),s=(o?s.replace(j,""):s).replace(C,"$1").replace(P,"$1;"),s="function("+g+") {\n"+(y?"":g+" || ("+g+" = {});\n")+"var __t, __p = '', __e = _.escape"+(o?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+s+"return __p\n}"; + +var b="\n/*\n//# sourceURL="+(e.sourceURL||"/lodash/template/source["+$++ +"]")+"\n*/";try{var d=Ce(i,"return "+s+b).apply(h,l)}catch(m){throw m.source=s,m}return r?d(r):(d.source=s,d)}function ge(n,r,e){n=(n=+n)>-1?n:0;var t=-1,o=we(n);for(r=en(r,e,1);++t/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:A,variable:"",imports:{_:v}};var ct=function(n){var r="var index, iterable = "+n.firstArg+", result = "+n.init+";\nif (!iterable) return result;\n"+n.top+";"; + +n.array?(r+="\nvar length = iterable.length; index = -1;\nif ("+n.array+") { ",lt.unindexedChars&&(r+="\n if (isString(iterable)) {\n iterable = iterable.split('')\n } "),r+="\n while (++index < length) {\n "+n.loop+";\n }\n}\nelse { "):lt.nonEnumArgs&&(r+="\n var length = iterable.length; index = -1;\n if (length && isArguments(iterable)) {\n while (++index < length) {\n index += '';\n "+n.loop+";\n }\n } else { "),lt.enumPrototypes&&(r+="\n var skipProto = typeof iterable == 'function';\n "), +lt.enumErrorProps&&(r+="\n var skipErrorProps = iterable === errorProto || iterable instanceof Error;\n ");var e=[];if(lt.enumPrototypes&&e.push('!(skipProto && index == "prototype")'),lt.enumErrorProps&&e.push('!(skipErrorProps && (index == "message" || index == "name"))'),n.useHas&&n.keys)r+="\n var ownIndex = -1,\n ownProps = objectTypes[typeof iterable] && keys(iterable),\n length = ownProps ? ownProps.length : 0;\n\n while (++ownIndex < length) {\n index = ownProps[ownIndex];\n", +e.length&&(r+=" if ("+e.join(" && ")+") {\n "),r+=n.loop+"; ",e.length&&(r+="\n }"),r+="\n } ";else if(r+="\n for (index in iterable) {\n",n.useHas&&e.push("hasOwnProperty.call(iterable, index)"),e.length&&(r+=" if ("+e.join(" && ")+") {\n "),r+=n.loop+"; ",e.length&&(r+="\n }"),r+="\n } ",lt.nonEnumShadows){for(r+="\n\n if (iterable !== objectProto) {\n var ctor = iterable.constructor,\n isProto = iterable === (ctor && ctor.prototype),\n className = iterable === stringProto ? stringClass : iterable === errorProto ? errorClass : toString.call(iterable),\n nonEnum = nonEnumProps[className];\n ", +k=0;k<7;k++)r+="\n index = '"+n.shadowedProps[k]+"';\n if ((!(isProto && nonEnum[index]) && hasOwnProperty.call(iterable, index))",n.useHas||(r+=" || (!nonEnum[index] && iterable[index] !== objectProto[index])"),r+=") {\n "+n.loop+";\n } ";r+="\n } "}return(n.array||lt.nonEnumArgs)&&(r+="\n}"),r+=n.bottom+";\nreturn result"};Xe||(rn=function(){function n(){}return function(r){if(Fn(r)){n.prototype=r;var t=new n;n.prototype=null}return t||e.Object()}}());var ft=Qe?function(n,r){ +Q.value=r,Qe(n,"__bindData__",Q),Q.value=null}:le;lt.argsClass||(_n=function(n){return n&&"object"==typeof n&&"number"==typeof n.length&&Ke.call(n,"callee")&&!Me.call(n,"callee")||!1});var st=Ye||function(n){return n&&"object"==typeof n&&"number"==typeof n.length&&$e.call(n)==B||!1},pt=hn({args:"object",init:"[]",top:"if (!(objectTypes[typeof object])) return result",loop:"result.push(index)"}),gt=rt?function(n){return Fn(n)?lt.enumPrototypes&&"function"==typeof n||lt.nonEnumArgs&&n.length&&_n(n)?pt(n):rt(n):[]; + +}:pt,ht={args:"collection, callback, thisArg",top:"callback = callback && typeof thisArg == 'undefined' ? callback : baseCreateCallback(callback, thisArg, 3)",array:"typeof length == 'number'",keys:gt,loop:"if (callback(iterable[index], index, collection) === false) return result"},vt={args:"object, source, guard",top:"var args = arguments,\n argsIndex = 0,\n argsLength = typeof guard == 'number' ? 2 : args.length;\nwhile (++argsIndex < argsLength) {\n iterable = args[argsIndex];\n if (iterable && objectTypes[typeof iterable]) {", +keys:gt,loop:"if (typeof result[index] == 'undefined') result[index] = iterable[index]",bottom:" }\n}"},yt={top:"if (!objectTypes[typeof iterable]) return result;\n"+ht.top,array:!1},bt={"&":"&","<":"<",">":">",'"':""","'":"'"},dt=An(bt),mt=Se("("+gt(dt).join("|")+")","g"),_t=Se("["+gt(bt).join("")+"]","g"),wt=hn(ht),xt=hn(vt,{top:vt.top.replace(";",";\nif (argsLength > 3 && typeof args[argsLength - 2] == 'function') {\n var callback = baseCreateCallback(args[--argsLength - 1], args[argsLength--], 2);\n} else if (argsLength > 2 && typeof args[argsLength - 1] == 'function') {\n callback = args[--argsLength];\n}"), +loop:"result[index] = callback ? callback(result[index], iterable[index]) : iterable[index]"}),jt=hn(vt),kt=hn(ht,yt,{useHas:!1}),Ct=hn(ht,yt);$n(/x/)&&($n=function(n){return"function"==typeof n&&$e.call(n)==z});var Pt=ze?function(n){if(!n||$e.call(n)!=U||!lt.argsClass&&_n(n))return!1;var r=n.valueOf,e=bn(r)&&(e=ze(r))&&ze(e);return e?n==e||ze(n)==e:dn(n)}:dn,Et=pn(function(n,r,e){Ke.call(n,e)?n[e]++:n[e]=1}),Ot=pn(function(n,r,e){(Ke.call(n,e)?n[e]:n[e]=[]).push(r)}),St=pn(function(n,r,e){n[e]=r; + +}),At=ir,It=rr,Lt=bn(Lt=je.now)&&Lt||function(){return(new je).getTime()},Nt=8==ot(x+"08")?ot:function(n,r){return ot(zn(n)?n.replace(I,""):n,r||0)};return v.after=Wr,v.assign=xt,v.at=Yn,v.bind=qr,v.bindAll=zr,v.bindKey=Kr,v.chain=ye,v.compact=mr,v.compose=Ur,v.constant=ee,v.countBy=Et,v.create=jn,v.createCallback=te,v.curry=Mr,v.debounce=Vr,v.defaults=jt,v.defer=Gr,v.delay=Jr,v.difference=_r,v.filter=rr,v.flatten=kr,v.forEach=or,v.forEachRight=ur,v.forIn=kt,v.forInRight=Pn,v.forOwn=Ct,v.forOwnRight=En, +v.functions=On,v.groupBy=Ot,v.indexBy=St,v.initial=Pr,v.intersection=Er,v.invert=An,v.invoke=ar,v.keys=gt,v.map=ir,v.mapValues=Un,v.max=lr,v.memoize=Qr,v.merge=Mn,v.min=cr,v.omit=Vn,v.once=Xr,v.pairs=Gn,v.partial=Yr,v.partialRight=Zr,v.pick=Jn,v.pluck=At,v.property=ce,v.pull=Ar,v.range=Ir,v.reject=pr,v.remove=Lr,v.rest=Nr,v.shuffle=hr,v.sortBy=br,v.tap=be,v.throttle=ne,v.times=ge,v.toArray=dr,v.transform=Qn,v.union=Tr,v.uniq=Dr,v.values=Xn,v.where=It,v.without=$r,v.wrap=re,v.xor=Fr,v.zip=Br,v.zipObject=Hr, +v.collect=ir,v.drop=Nr,v.each=or,v.eachRight=ur,v.extend=xt,v.methods=On,v.object=Hr,v.select=rr,v.tail=Nr,v.unique=Dr,v.unzip=Br,ae(v),v.clone=wn,v.cloneDeep=xn,v.contains=Zn,v.escape=oe,v.every=nr,v.find=er,v.findIndex=wr,v.findKey=kn,v.findLast=tr,v.findLastIndex=xr,v.findLastKey=Cn,v.has=Sn,v.identity=ue,v.indexOf=Cr,v.isArguments=_n,v.isArray=st,v.isBoolean=In,v.isDate=Ln,v.isElement=Nn,v.isEmpty=Rn,v.isEqual=Tn,v.isFinite=Dn,v.isFunction=$n,v.isNaN=Bn,v.isNull=Hn,v.isNumber=Wn,v.isObject=Fn, +v.isPlainObject=Pt,v.isRegExp=qn,v.isString=zn,v.isUndefined=Kn,v.lastIndexOf=Sr,v.mixin=ae,v.noConflict=ie,v.noop=le,v.now=Lt,v.parseInt=Nt,v.random=fe,v.reduce=fr,v.reduceRight=sr,v.result=se,v.runInContext=g,v.size=vr,v.some=yr,v.sortedIndex=Rr,v.template=pe,v.unescape=he,v.uniqueId=ve,v.all=nr,v.any=yr,v.detect=er,v.findWhere=er,v.foldl=fr,v.foldr=sr,v.include=Zn,v.inject=fr,ae(function(){var n={};return Ct(v,function(r,e){v.prototype[e]||(n[e]=r)}),n}(),!1),v.first=jr,v.last=Or,v.sample=gr,v.take=jr, +v.head=jr,Ct(v,function(n,r){var e="sample"!==r;v.prototype[r]||(v.prototype[r]=function(r,t){var o=this.__chain__,u=n(this.__wrapped__,r,t);return o||null!=r&&(!t||e&&"function"==typeof r)?new y(u,o):u})}),v.VERSION="2.4.2",v.prototype.chain=de,v.prototype.toString=me,v.prototype.value=_e,v.prototype.valueOf=_e,wt(["join","pop","shift"],function(n){var r=Le[n];v.prototype[n]=function(){var n=this.__chain__,e=r.apply(this.__wrapped__,arguments);return n?new y(e,n):e}}),wt(["push","reverse","sort","unshift"],function(n){ +var r=Le[n];v.prototype[n]=function(){return r.apply(this.__wrapped__,arguments),this}}),wt(["concat","slice","splice"],function(n){var r=Le[n];v.prototype[n]=function(){return new y(r.apply(this.__wrapped__,arguments),this.__chain__)}}),lt.spliceObjects||wt(["pop","shift","splice"],function(n){var r=Le[n],e="splice"==n;v.prototype[n]=function(){var n=this.__chain__,t=this.__wrapped__,o=r.apply(t,arguments);return 0===t.length&&delete t[0],n||e?new y(o,n):o}}),v}var h,v=[],y=[],b=0,d={},m=+new Date+"",_=75,w=40,x=" \f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000",j=/\b__p \+= '';/g,C=/\b(__p \+=) '' \+/g,P=/(__e\(.*?\)|\b__t\)) \+\n'';/g,E=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,O=/\w*$/,S=/^\s*function[ \n\r\t]+\w/,A=/<%=([\s\S]+?)%>/g,I=RegExp("^["+x+"]*0+(?=.$)"),L=/($^)/,N=/\bthis\b/,R=/['\n\r\t\u2028\u2029\\]/g,T=["Array","Boolean","Date","Error","Function","Math","Number","Object","RegExp","String","_","attachEvent","clearTimeout","isFinite","isNaN","parseInt","setTimeout"],D=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],$=0,F="[object Arguments]",B="[object Array]",H="[object Boolean]",W="[object Date]",q="[object Error]",z="[object Function]",K="[object Number]",U="[object Object]",M="[object RegExp]",V="[object String]",G={}; + +G[z]=!1,G[F]=G[B]=G[H]=G[W]=G[K]=G[U]=G[M]=G[V]=!0;var J={leading:!1,maxWait:0,trailing:!1},Q={configurable:!1,enumerable:!1,value:null,writable:!1},X={args:"",array:null,bottom:"",firstArg:"",init:"",keys:null,loop:"",shadowedProps:null,support:null,top:"",useHas:!1},Y={"boolean":!1,"function":!0,object:!0,number:!1,string:!1,undefined:!1},Z={"\\":"\\","'":"'","\n":"n","\r":"r"," ":"t","\u2028":"u2028","\u2029":"u2029"},nn=Y[typeof window]&&window||this,rn=Y[typeof exports]&&exports&&!exports.nodeType&&exports,en=Y[typeof module]&&module&&!module.nodeType&&module,tn=en&&en.exports===rn&&rn,on=Y[typeof global]&&global; + +!on||on.global!==on&&on.window!==on||(nn=on);var un=g();"function"==typeof define&&"object"==typeof define.amd&&define.amd?(nn._=un,define(function(){return un})):rn&&en?tn?(en.exports=un)._=un:rn._=un:nn._=un}).call(this); \ No newline at end of file diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,11 +1,11 @@ /** * @license - * Lo-Dash 2.4.1 (Custom Build) + * Lo-Dash 2.4.2 (Custom Build) * Build: `lodash modern -o ./dist/lodash.js` * Copyright 2012-2013 The Dojo Foundation * Based on Underscore.js 1.5.2 * Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - * Available under MIT license + * Available under MIT license */ ;(function() { @@ -1494,6 +1494,7 @@ var setBindData = !defineProperty ? noop : function(func, value) { descriptor.value = value; defineProperty(func, '__bindData__', descriptor); + descriptor.value = null; }; /** @@ -6139,7 +6140,7 @@ * debugging. See http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl * * For more information on precompiling templates see: - * http://lodash.com/custom-builds + * https://lodash.com/custom-builds * * For more information on Chrome extension sandboxes see: * http://developer.chrome.com/stable/extensions/sandboxingEval.html @@ -6708,7 +6709,7 @@ * @memberOf _ * @type string */ - lodash.VERSION = '2.4.1'; + lodash.VERSION = '2.4.2'; // add "Chaining" functions to the wrapper lodash.prototype.chain = wrapperChain; diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.min.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.min.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.min.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,56 +1,87 @@ /** * @license - * Lo-Dash 2.4.1 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE + * Lo-Dash 2.4.2 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE * Build: `lodash modern -o ./dist/lodash.js` */ -;(function(){function n(n,t,e){e=(e||0)-1;for(var r=n?n.length:0;++ea||typeof i=="undefined")return 1;if(ie?0:e);++r=b&&i===n,l=[];if(f){var p=o(r);p?(i=t,r=p):f=false}for(;++ui(r,p)&&l.push(p);return f&&c(r),l}function ut(n,t,e,r){r=(r||0)-1;for(var u=n?n.length:0,o=[];++r=b&&f===n,h=u||v?a():s; -for(v&&(h=o(h),f=t);++if(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(;++re?Ie(0,o+e):e)||0,Te(n)?i=-1o&&(o=a)}}else t=null==t&&kt(n)?r:J.createCallback(t,e,3),St(n,function(n,e,r){e=t(n,e,r),e>u&&(u=e,o=n)});return o}function Dt(n,t,e,r){if(!n)return e;var u=3>arguments.length;t=J.createCallback(t,r,4);var o=-1,i=n.length;if(typeof i=="number")for(u&&(e=n[++o]);++oarguments.length;return t=J.createCallback(t,r,4),Et(n,function(n,r,o){e=u?(u=false,n):t(e,n,r,o)}),e}function Tt(n){var t=-1,e=n?n.length:0,r=Xt(typeof e=="number"?e:0);return St(n,function(n){var e=at(0,++t);r[t]=r[e],r[e]=n}),r}function Ft(n,t,e){var r;t=J.createCallback(t,e,3),e=-1;var u=n?n.length:0;if(typeof u=="number")for(;++er?Ie(0,u+r):r||0}else if(r)return r=zt(t,e),t[r]===e?r:-1;return n(t,e,r)}function qt(n,t,e){if(typeof t!="number"&&null!=t){var r=0,u=-1,o=n?n.length:0;for(t=J.createCallback(t,e,3);++u>>1,e(n[r])e?0:e);++t=v; -m?(i&&(i=ve(i)),s=f,a=n.apply(l,o)):i||(i=_e(r,v))}return m&&c?c=ve(c):c||t===h||(c=_e(u,t)),e&&(m=true,a=n.apply(l,o)),!m||c||i||(o=l=null),a}}function Ut(n){return n}function Gt(n,t,e){var r=true,u=t&&bt(t);t&&(e||u.length)||(null==e&&(e=t),o=Q,t=n,n=J,u=bt(t)),false===e?r=false:wt(e)&&"chain"in e&&(r=e.chain);var o=n,i=dt(o);St(u,function(e){var u=n[e]=t[e];i&&(o.prototype[e]=function(){var t=this.__chain__,e=this.__wrapped__,i=[e];if(be.apply(i,arguments),i=u.apply(n,i),r||t){if(e===i&&wt(i))return this; -i=new o(i),i.__chain__=t}return i})})}function Ht(){}function Jt(n){return function(t){return t[n]}}function Qt(){return this.__wrapped__}e=e?Y.defaults(G.Object(),e,Y.pick(G,A)):G;var Xt=e.Array,Yt=e.Boolean,Zt=e.Date,ne=e.Function,te=e.Math,ee=e.Number,re=e.Object,ue=e.RegExp,oe=e.String,ie=e.TypeError,ae=[],fe=re.prototype,le=e._,ce=fe.toString,pe=ue("^"+oe(ce).replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/toString| for [^\]]+/g,".*?")+"$"),se=te.ceil,ve=e.clearTimeout,he=te.floor,ge=ne.prototype.toString,ye=vt(ye=re.getPrototypeOf)&&ye,me=fe.hasOwnProperty,be=ae.push,_e=e.setTimeout,de=ae.splice,we=ae.unshift,je=function(){try{var n={},t=vt(t=re.defineProperty)&&t,e=t(n,n,n)&&t -}catch(r){}return e}(),ke=vt(ke=re.create)&&ke,xe=vt(xe=Xt.isArray)&&xe,Ce=e.isFinite,Oe=e.isNaN,Ne=vt(Ne=re.keys)&&Ne,Ie=te.max,Se=te.min,Ee=e.parseInt,Re=te.random,Ae={};Ae[$]=Xt,Ae[T]=Yt,Ae[F]=Zt,Ae[B]=ne,Ae[q]=re,Ae[W]=ee,Ae[z]=ue,Ae[P]=oe,Q.prototype=J.prototype;var De=J.support={};De.funcDecomp=!vt(e.a)&&E.test(s),De.funcNames=typeof ne.name=="string",J.templateSettings={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:N,variable:"",imports:{_:J}},ke||(nt=function(){function n(){}return function(t){if(wt(t)){n.prototype=t; -var r=new n;n.prototype=null}return r||e.Object()}}());var $e=je?function(n,t){M.value=t,je(n,"__bindData__",M)}:Ht,Te=xe||function(n){return n&&typeof n=="object"&&typeof n.length=="number"&&ce.call(n)==$||false},Fe=Ne?function(n){return wt(n)?Ne(n):[]}:H,Be={"&":"&","<":"<",">":">",'"':""","'":"'"},We=_t(Be),qe=ue("("+Fe(We).join("|")+")","g"),ze=ue("["+Fe(Be).join("")+"]","g"),Pe=ye?function(n){if(!n||ce.call(n)!=q)return false;var t=n.valueOf,e=vt(t)&&(e=ye(t))&&ye(e);return e?n==e||ye(n)==e:ht(n) -}:ht,Ke=lt(function(n,t,e){me.call(n,e)?n[e]++:n[e]=1}),Le=lt(function(n,t,e){(me.call(n,e)?n[e]:n[e]=[]).push(t)}),Me=lt(function(n,t,e){n[e]=t}),Ve=Rt,Ue=vt(Ue=Zt.now)&&Ue||function(){return(new Zt).getTime()},Ge=8==Ee(d+"08")?Ee:function(n,t){return Ee(kt(n)?n.replace(I,""):n,t||0)};return J.after=function(n,t){if(!dt(t))throw new ie;return function(){return 1>--n?t.apply(this,arguments):void 0}},J.assign=U,J.at=function(n){for(var t=arguments,e=-1,r=ut(t,true,false,1),t=t[2]&&t[2][t[1]]===n?1:r.length,u=Xt(t);++e=b&&o(r?e[r]:s)))}var p=e[0],h=-1,g=p?p.length:0,y=[];n:for(;++h(m?t(m,v):f(s,v))){for(r=u,(m||s).push(v);--r;)if(m=i[r],0>(m?t(m,v):f(e[r],v)))continue n;y.push(v)}}for(;u--;)(m=i[u])&&c(m);return l(i),l(s),y},J.invert=_t,J.invoke=function(n,t){var e=p(arguments,2),r=-1,u=typeof t=="function",o=n?n.length:0,i=Xt(typeof o=="number"?o:0);return St(n,function(n){i[++r]=(u?t:n[t]).apply(n,e)}),i},J.keys=Fe,J.map=Rt,J.mapValues=function(n,t,e){var r={}; -return t=J.createCallback(t,e,3),h(n,function(n,e,u){r[e]=t(n,e,u)}),r},J.max=At,J.memoize=function(n,t){function e(){var r=e.cache,u=t?t.apply(this,arguments):m+arguments[0];return me.call(r,u)?r[u]:r[u]=n.apply(this,arguments)}if(!dt(n))throw new ie;return e.cache={},e},J.merge=function(n){var t=arguments,e=2;if(!wt(n))return n;if("number"!=typeof t[2]&&(e=t.length),3e?Ie(0,r+e):Se(e,r-1))+1);r--;)if(n[r]===t)return r;return-1},J.mixin=Gt,J.noConflict=function(){return e._=le,this},J.noop=Ht,J.now=Ue,J.parseInt=Ge,J.random=function(n,t,e){var r=null==n,u=null==t;return null==e&&(typeof n=="boolean"&&u?(e=n,n=1):u||typeof t!="boolean"||(e=t,u=true)),r&&u&&(t=1),n=+n||0,u?(t=n,n=0):t=+t||0,e||n%1||t%1?(e=Re(),Se(n+e*(t-n+parseFloat("1e-"+((e+"").length-1))),t)):at(n,t) -},J.reduce=Dt,J.reduceRight=$t,J.result=function(n,t){if(n){var e=n[t];return dt(e)?n[t]():e}},J.runInContext=s,J.size=function(n){var t=n?n.length:0;return typeof t=="number"?t:Fe(n).length},J.some=Ft,J.sortedIndex=zt,J.template=function(n,t,e){var r=J.templateSettings;n=oe(n||""),e=_({},e,r);var u,o=_({},e.imports,r.imports),r=Fe(o),o=xt(o),a=0,f=e.interpolate||S,l="__p+='",f=ue((e.escape||S).source+"|"+f.source+"|"+(f===N?x:S).source+"|"+(e.evaluate||S).source+"|$","g");n.replace(f,function(t,e,r,o,f,c){return r||(r=o),l+=n.slice(a,c).replace(R,i),e&&(l+="'+__e("+e+")+'"),f&&(u=true,l+="';"+f+";\n__p+='"),r&&(l+="'+((__t=("+r+"))==null?'':__t)+'"),a=c+t.length,t -}),l+="';",f=e=e.variable,f||(e="obj",l="with("+e+"){"+l+"}"),l=(u?l.replace(w,""):l).replace(j,"$1").replace(k,"$1;"),l="function("+e+"){"+(f?"":e+"||("+e+"={});")+"var __t,__p='',__e=_.escape"+(u?",__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}":";")+l+"return __p}";try{var c=ne(r,"return "+l).apply(v,o)}catch(p){throw p.source=l,p}return t?c(t):(c.source=l,c)},J.unescape=function(n){return null==n?"":oe(n).replace(qe,gt)},J.uniqueId=function(n){var t=++y;return oe(null==n?"":n)+t -},J.all=Ot,J.any=Ft,J.detect=It,J.findWhere=It,J.foldl=Dt,J.foldr=$t,J.include=Ct,J.inject=Dt,Gt(function(){var n={};return h(J,function(t,e){J.prototype[e]||(n[e]=t)}),n}(),false),J.first=Bt,J.last=function(n,t,e){var r=0,u=n?n.length:0;if(typeof t!="number"&&null!=t){var o=u;for(t=J.createCallback(t,e,3);o--&&t(n[o],o,n);)r++}else if(r=t,null==r||e)return n?n[u-1]:v;return p(n,Ie(0,u-r))},J.sample=function(n,t,e){return n&&typeof n.length!="number"&&(n=xt(n)),null==t||e?n?n[at(0,n.length-1)]:v:(n=Tt(n),n.length=Se(Ie(0,t),n.length),n) -},J.take=Bt,J.head=Bt,h(J,function(n,t){var e="sample"!==t;J.prototype[t]||(J.prototype[t]=function(t,r){var u=this.__chain__,o=n(this.__wrapped__,t,r);return u||null!=t&&(!r||e&&typeof t=="function")?new Q(o,u):o})}),J.VERSION="2.4.1",J.prototype.chain=function(){return this.__chain__=true,this},J.prototype.toString=function(){return oe(this.__wrapped__)},J.prototype.value=Qt,J.prototype.valueOf=Qt,St(["join","pop","shift"],function(n){var t=ae[n];J.prototype[n]=function(){var n=this.__chain__,e=t.apply(this.__wrapped__,arguments); -return n?new Q(e,n):e}}),St(["push","reverse","sort","unshift"],function(n){var t=ae[n];J.prototype[n]=function(){return t.apply(this.__wrapped__,arguments),this}}),St(["concat","slice","splice"],function(n){var t=ae[n];J.prototype[n]=function(){return new Q(t.apply(this.__wrapped__,arguments),this.__chain__)}}),J}var v,h=[],g=[],y=0,m=+new Date+"",b=75,_=40,d=" \t\x0B\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000",w=/\b__p\+='';/g,j=/\b(__p\+=)''\+/g,k=/(__e\(.*?\)|\b__t\))\+'';/g,x=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,C=/\w*$/,O=/^\s*function[ \n\r\t]+\w/,N=/<%=([\s\S]+?)%>/g,I=RegExp("^["+d+"]*0+(?=.$)"),S=/($^)/,E=/\bthis\b/,R=/['\n\r\t\u2028\u2029\\]/g,A="Array Boolean Date Function Math Number Object RegExp String _ attachEvent clearTimeout isFinite isNaN parseInt setTimeout".split(" "),D="[object Arguments]",$="[object Array]",T="[object Boolean]",F="[object Date]",B="[object Function]",W="[object Number]",q="[object Object]",z="[object RegExp]",P="[object String]",K={}; -K[B]=false,K[D]=K[$]=K[T]=K[F]=K[W]=K[q]=K[z]=K[P]=true;var L={leading:false,maxWait:0,trailing:false},M={configurable:false,enumerable:false,value:null,writable:false},V={"boolean":false,"function":true,object:true,number:false,string:false,undefined:false},U={"\\":"\\","'":"'","\n":"n","\r":"r","\t":"t","\u2028":"u2028","\u2029":"u2029"},G=V[typeof window]&&window||this,H=V[typeof exports]&&exports&&!exports.nodeType&&exports,J=V[typeof module]&&module&&!module.nodeType&&module,Q=J&&J.exports===H&&H,X=V[typeof global]&&global;!X||X.global!==X&&X.window!==X||(G=X); -var Y=s();typeof define=="function"&&typeof define.amd=="object"&&define.amd?(G._=Y, define(function(){return Y})):H&&J?Q?(J.exports=Y)._=Y:H._=Y:G._=Y}).call(this); \ No newline at end of file +;(function(){function n(n,r,t){for(var e=(t||0)-1,u=n?n.length:0;++e-1?0:-1:r?0:-1}function t(n){var r=this.cache,t=typeof n;if("boolean"==t||null==n)r[n]=!0;else{"number"!=t&&"string"!=t&&(t="object");var e="number"==t?n:m+n,u=r[t]||(r[t]={});"object"==t?(u[e]||(u[e]=[])).push(n):u[e]=!0; + +}}function e(n){return n.charCodeAt(0)}function u(n,r){for(var t=n.criteria,e=r.criteria,u=-1,o=t.length;++ui||"undefined"==typeof a)return 1;if(a=b&&a===n,l=[]; + +if(f){var p=o(e);p?(a=r,e=p):f=!1}for(;++u-1:v});return u.pop(),o.pop(),_&&(l(u),l(o)),a}function tn(n,r,t,e,u){(Yt(r)?Xn:fe)(r,function(r,o){ +var a,i,f=r,l=n[o];if(r&&((i=Yt(r))||le(r))){for(var c=e.length;c--;)if(a=e[c]==r){l=u[c];break}if(!a){var p;t&&(f=t(l,r),(p="undefined"!=typeof f)&&(l=f)),p||(l=i?Yt(l)?l:[]:le(l)?l:{}),e.push(r),u.push(l),p||tn(l,r,t,e,u)}}else t&&(f=t(l,r),"undefined"==typeof f&&(f=r)),"undefined"!=typeof f&&(l=f);n[o]=l})}function en(n,r){return n+St(Ht()*(r-n+1))}function un(t,e,u){var a=-1,f=ln(),p=t?t.length:0,s=[],v=!e&&p>=b&&f===n,h=u||v?i():s;if(v){var g=o(h);f=r,h=g}for(;++a3&&"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-1:"number"==typeof o?a=(Fn(n)?n.indexOf(r,t):u(n,r,t))>-1:fe(n,function(n){return++eo&&(o=f)}else r=null==r&&Fn(n)?e:h.createCallback(r,t,3),Xn(n,function(n,t,e){var a=r(n,t,e);a>u&&(u=a,o=n)});return o; + +}function tr(n,r,t){var u=1/0,o=u;if("function"!=typeof r&&t&&t[r]===n&&(r=null),null==r&&Yt(n))for(var a=-1,i=n.length;++a=b&&o(e?t[e]:s)))}var h=t[0],g=-1,y=h?h.length:0,m=[];n:for(;++g>>1;t(n[a])1?arguments:arguments[0],r=-1,t=n?rr(ve(n,"length")):0,e=ht(t<0?0:t);++r2?an(n,17,p(arguments,2),null,r):an(n,1,null,null,r)}function Fr(n){for(var r=arguments.length>1?nn(arguments,!0,!1,1):wn(n),t=-1,e=r.length;++t2?an(r,19,p(arguments,2),null,n):an(r,3,null,null,n); + +}function Wr(){for(var n=arguments,r=n.length;r--;)if(!In(n[r]))throw new kt;return function(){for(var r=arguments,t=n.length;t--;)r=[n[t].apply(this,r)];return r[0]}}function qr(n,r){return r="number"==typeof r?r:+r||n.length,an(n,4,null,null,null,r)}function zr(n,r,t){var e,u,o,a,i,f,l,c=0,p=!1,s=!0;if(!In(n))throw new kt;if(r=Mt(0,r)||0,t===!0){var h=!0;s=!1}else Sn(t)&&(h=t.leading,p="maxWait"in t&&(Mt(r,t.maxWait)||0),s="trailing"in t?t.trailing:s);var g=function(){var t=r-(ge()-a);if(t>0)f=Ft(g,t); +else{u&&It(u);var p=l;u=f=l=v,p&&(c=ge(),o=n.apply(i,e),f||u||(e=i=null))}},y=function(){f&&It(f),u=f=l=v,(s||p!==r)&&(c=ge(),o=n.apply(i,e),f||u||(e=i=null))};return function(){if(e=arguments,a=ge(),i=this,l=s&&(f||!h),p===!1)var t=h&&!f;else{u||h||(c=a);var v=p-(a-c),m=v<=0;m?(u&&(u=It(u)),c=a,o=n.apply(i,e)):u||(u=Ft(y,v))}return m&&f?f=It(f):f||r===p||(f=Ft(g,r)),t&&(m=!0,o=n.apply(i,e)),!m||f||u||(e=i=null),o}}function Lr(n){if(!In(n))throw new kt;var r=p(arguments,1);return Ft(function(){n.apply(v,r); + +},1)}function Pr(n,r){if(!In(n))throw new kt;var t=p(arguments,2);return Ft(function(){n.apply(v,t)},r)}function Kr(n,r){if(!In(n))throw new kt;var t=function(){var e=t.cache,u=r?r.apply(this,arguments):m+arguments[0];return Tt.call(e,u)?e[u]:e[u]=n.apply(this,arguments)};return t.cache={},t}function Ur(n){var r,t;if(!In(n))throw new kt;return function(){return r?t:(r=!0,t=n.apply(this,arguments),n=null,t)}}function Mr(n){return an(n,16,p(arguments,1))}function Vr(n){return an(n,32,null,p(arguments,1)); + +}function Gr(n,r,t){var e=!0,u=!0;if(!In(n))throw new kt;return t===!1?e=!1:Sn(t)&&(e="leading"in t?t.leading:e,u="trailing"in t?t.trailing:u),U.leading=e,U.maxWait=r,U.trailing=u,zr(n,r,U)}function Hr(n,r){return an(r,16,[n])}function Jr(n){return function(){return n}}function Qr(n,r,t){var e=typeof n;if(null==n||"function"==e)return Q(n,r,t);if("object"!=e)return tt(n);var u=ne(n),o=u[0],a=n[o];return 1!=u.length||a!==a||Sn(a)?function(r){for(var t=u.length,e=!1;t--&&(e=rn(r[u[t]],n[u[t]],null,!0));); +return e}:function(n){var r=n[o];return a===r&&(0!==a||1/a==1/r)}}function Xr(n){return null==n?"":jt(n).replace(ue,fn)}function Yr(n){return n}function Zr(n,r,t){var e=!0,u=r&&wn(r);r&&(t||u.length)||(null==t&&(t=r),o=g,r=n,n=h,u=wn(r)),t===!1?e=!1:Sn(t)&&"chain"in t&&(e=t.chain);var o=n,a=In(o);Xn(u,function(t){var u=n[t]=r[t];a&&(o.prototype[t]=function(){var r=this.__chain__,t=this.__wrapped__,a=[t];$t.apply(a,arguments);var i=u.apply(n,a);if(e||r){if(t===i&&Sn(i))return this;i=new o(i),i.__chain__=r; + +}return i})})}function nt(){return t._=Ot,this}function rt(){}function tt(n){return function(r){return r[n]}}function et(n,r,t){var e=null==n,u=null==r;if(null==t&&("boolean"==typeof n&&u?(t=n,n=1):u||"boolean"!=typeof r||(t=r,u=!0)),e&&u&&(r=1),n=+n||0,u?(r=n,n=0):r=+r||0,t||n%1||r%1){var o=Ht();return Vt(n+o*(r-n+parseFloat("1e-"+((o+"").length-1))),r)}return en(n,r)}function ut(n,r){if(n){var t=n[r];return In(t)?n[r]():t}}function ot(n,r,t){var e=h.templateSettings;n=jt(n||""),t=ae({},t,e);var u,o=ae({},t.imports,e.imports),i=ne(o),f=Un(o),l=0,c=t.interpolate||E,p="__p += '",s=wt((t.escape||E).source+"|"+c.source+"|"+(c===N?x:E).source+"|"+(t.evaluate||E).source+"|$","g"); + +n.replace(s,function(r,t,e,o,i,f){return e||(e=o),p+=n.slice(l,f).replace(S,a),t&&(p+="' +\n__e("+t+") +\n'"),i&&(u=!0,p+="';\n"+i+";\n__p += '"),e&&(p+="' +\n((__t = ("+e+")) == null ? '' : __t) +\n'"),l=f+r.length,r}),p+="';\n";var g=t.variable,y=g;y||(g="obj",p="with ("+g+") {\n"+p+"\n}\n"),p=(u?p.replace(w,""):p).replace(j,"$1").replace(k,"$1;"),p="function("+g+") {\n"+(y?"":g+" || ("+g+" = {});\n")+"var __t, __p = '', __e = _.escape"+(u?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+p+"return __p\n}"; + +var m="\n/*\n//# sourceURL="+(t.sourceURL||"/lodash/template/source["+D++ +"]")+"\n*/";try{var b=mt(i,"return "+p+m).apply(v,f)}catch(_){throw _.source=p,_}return r?b(r):(b.source=p,b)}function at(n,r,t){n=(n=+n)>-1?n:0;var e=-1,u=ht(n);for(r=Q(r,t,1);++e/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:N, +variable:"",imports:{_:h}},zt||(J=function(){function n(){}return function(r){if(Sn(r)){n.prototype=r;var e=new n;n.prototype=null}return e||t.Object()}}());var Xt=qt?function(n,r){M.value=r,qt(n,"__bindData__",M),M.value=null}:rt,Yt=Lt||function(n){return n&&"object"==typeof n&&"number"==typeof n.length&&Nt.call(n)==$||!1},Zt=function(n){var r,t=n,e=[];if(!t)return e;if(!V[typeof n])return e;for(r in t)Tt.call(t,r)&&e.push(r);return e},ne=Ut?function(n){return Sn(n)?Ut(n):[]}:Zt,re={"&":"&", +"<":"<",">":">",'"':""","'":"'"},te=kn(re),ee=wt("("+ne(te).join("|")+")","g"),ue=wt("["+ne(re).join("")+"]","g"),oe=function(n,r,t){var e,u=n,o=u;if(!u)return o;var a=arguments,i=0,f="number"==typeof t?2:a.length;if(f>3&&"function"==typeof a[f-2])var l=Q(a[--f-1],a[f--],2);else f>2&&"function"==typeof a[f-1]&&(l=a[--f]);for(;++i/g,R=RegExp("^["+d+"]*0+(?=.$)"),E=/($^)/,I=/\bthis\b/,S=/['\n\r\t\u2028\u2029\\]/g,A=["Array","Boolean","Date","Function","Math","Number","Object","RegExp","String","_","attachEvent","clearTimeout","isFinite","isNaN","parseInt","setTimeout"],D=0,T="[object Arguments]",$="[object Array]",F="[object Boolean]",B="[object Date]",W="[object Function]",q="[object Number]",z="[object Object]",L="[object RegExp]",P="[object String]",K={}; + +K[W]=!1,K[T]=K[$]=K[F]=K[B]=K[q]=K[z]=K[L]=K[P]=!0;var U={leading:!1,maxWait:0,trailing:!1},M={configurable:!1,enumerable:!1,value:null,writable:!1},V={"boolean":!1,"function":!0,object:!0,number:!1,string:!1,undefined:!1},G={"\\":"\\","'":"'","\n":"n","\r":"r"," ":"t","\u2028":"u2028","\u2029":"u2029"},H=V[typeof window]&&window||this,J=V[typeof exports]&&exports&&!exports.nodeType&&exports,Q=V[typeof module]&&module&&!module.nodeType&&module,X=Q&&Q.exports===J&&J,Y=V[typeof global]&&global;!Y||Y.global!==Y&&Y.window!==Y||(H=Y); + +var Z=s();"function"==typeof define&&"object"==typeof define.amd&&define.amd?(H._=Z,define(function(){return Z})):J&&Q?X?(Q.exports=Z)._=Z:J._=Z:H._=Z}).call(this); \ No newline at end of file diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.underscore.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.underscore.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.underscore.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,11 +1,11 @@ /** * @license - * Lo-Dash 2.4.1 (Custom Build) + * Lo-Dash 2.4.2 (Custom Build) * Build: `lodash underscore exports="amd,commonjs,global,node" -o ./dist/lodash.underscore.js` * Copyright 2012-2013 The Dojo Foundation * Based on Underscore.js 1.5.2 * Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - * Available under MIT license + * Available under MIT license */ ;(function() { @@ -4458,7 +4458,7 @@ * debugging. See http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl * * For more information on precompiling templates see: - * http://lodash.com/custom-builds + * https://lodash.com/custom-builds * * For more information on Chrome extension sandboxes see: * http://developer.chrome.com/stable/extensions/sandboxingEval.html @@ -4909,7 +4909,7 @@ * @memberOf _ * @type string */ - lodash.VERSION = '2.4.1'; + lodash.VERSION = '2.4.2'; // add "Chaining" functions to the wrapper lodash.prototype.chain = wrapperChain; diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.underscore.min.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.underscore.min.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/lib/lodash/lodash.underscore.min.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,6 +1,6 @@ /** * @license - * Lo-Dash 2.4.1 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE + * Lo-Dash 2.4.2 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE * Build: `lodash underscore exports="amd,commonjs,global,node" -o ./dist/lodash.underscore.js` */ ;(function(){function n(n,r,t){t=(t||0)-1;for(var e=n?n.length:0;++tf||typeof i=="undefined")return 1;if(it?0:t);++et?Mr(0,e+t):$r(t,e-1))+1);e--;)if(n[e]===r)return e; return-1},u.mixin=Z,u.noConflict=function(){return mr._=Tr,this},u.random=function(n,r){return null==n&&null==r&&(r=1),n=+n||0,null==r?(r=n,n=0):r=+r||0,n+Sr(Wr()*(r-n+1))},u.reduce=W,u.reduceRight=z,u.result=function(n,r){if(n){var t=n[r];return A(t)?n[r]():t}},u.size=function(n){var r=n?n.length:0;return typeof r=="number"?r:Ur(n).length},u.some=P,u.sortedIndex=J,u.template=function(n,r,e){var o=u,i=o.templateSettings;n=(n||"")+"",e=j({},e,i);var f=0,a="__p+='",i=e.variable;n.replace(RegExp((e.escape||or).source+"|"+(e.interpolate||or).source+"|"+(e.evaluate||or).source+"|$","g"),function(r,e,u,o,i){return a+=n.slice(f,i).replace(ir,t),e&&(a+="'+_.escape("+e+")+'"),o&&(a+="';"+o+";\n__p+='"),u&&(a+="'+((__t=("+u+"))==null?'':__t)+'"),f=i+r.length,r }),a+="';",i||(i="obj",a="with("+i+"||{}){"+a+"}"),a="function("+i+"){var __t,__p='',__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}"+a+"return __p}";try{var l=Function("_","return "+a)(o)}catch(c){throw c.source=a,c}return r?l(r):(l.source=a,l)},u.unescape=function(n){return null==n?"":(n+"").replace(Hr,d)},u.uniqueId=function(n){var r=++tr+"";return n?n+r:r},u.all=B,u.any=P,u.detect=q,u.findWhere=function(n,r){return U(n,r,true)},u.foldl=W,u.foldr=z,u.include=k,u.inject=W,u.first=V,u.last=function(n,r,t){var u=0,o=n?n.length:0; -if(typeof r!="number"&&null!=r){var i=o;for(r=X(r,t,3);i--&&r(n[i],i,n);)u++}else if(u=r,null==u||t)return n?n[o-1]:rr;return e(n,Mr(0,o-u))},u.sample=function(n,r,t){return n&&typeof n.length!="number"&&(n=R(n)),null==r||t?n?n[0+Sr(Wr()*(n.length-1-0+1))]:rr:(n=C(n),n.length=$r(Mr(0,r),n.length),n)},u.take=V,u.head=V,Z(u),u.VERSION="2.4.1",u.prototype.chain=function(){return this.__chain__=true,this},u.prototype.value=function(){return this.__wrapped__},D("pop push reverse shift sort splice unshift".split(" "),function(n){var r=jr[n]; +if(typeof r!="number"&&null!=r){var i=o;for(r=X(r,t,3);i--&&r(n[i],i,n);)u++}else if(u=r,null==u||t)return n?n[o-1]:rr;return e(n,Mr(0,o-u))},u.sample=function(n,r,t){return n&&typeof n.length!="number"&&(n=R(n)),null==r||t?n?n[0+Sr(Wr()*(n.length-1-0+1))]:rr:(n=C(n),n.length=$r(Mr(0,r),n.length),n)},u.take=V,u.head=V,Z(u),u.VERSION="2.4.2",u.prototype.chain=function(){return this.__chain__=true,this},u.prototype.value=function(){return this.__wrapped__},D("pop push reverse shift sort splice unshift".split(" "),function(n){var r=jr[n]; u.prototype[n]=function(){var n=this.__wrapped__;return r.apply(n,arguments),zr.spliceObjects||0!==n.length||delete n[0],this}}),D(["concat","join","slice"],function(n){var r=jr[n];u.prototype[n]=function(){var n=r.apply(this.__wrapped__,arguments);return this.__chain__&&(n=new o(n),n.__chain__=true),n}}),typeof define=="function"&&typeof define.amd=="object"&&define.amd?(mr._=u, define(function(){return u})):_r&&dr?br?(dr.exports=u)._=u:_r._=u:mr._=u}).call(this); \ No newline at end of file diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/renkan/css/renkan.css --- a/server/python/django/renkanmanager/static/renkanmanager/lib/renkan/css/renkan.css Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/lib/renkan/css/renkan.css Thu Jun 18 16:53:16 2015 +0200 @@ -394,6 +394,15 @@ font-size: 16px; font-weight: bold; } +.Rk-Editor video { + max-height: 100%; + max-width: 100%; +} +.Rk-Editor audio { + max-height: 100%; + max-width: 100%; +} + .Rk-Editor p, .Rk-Editor-p, .Rk-Editor-p > div { margin: 5px 0; font-size: 12px; clear: both; } @@ -455,6 +464,18 @@ width: 250px; height: 120px; resize: none; } +div.Rk-Edit-Description { + -moz-appearance: textfield-multiline; + -webkit-appearance: textarea; + background-color: #FFF; + border: 1px solid #F0F0F0; + width: 250px; + height: 120px; + resize: vertical; + overflow: auto; + padding: 2px; +} + .Rk-UserColor { display: inline-block; width: 12px; height: 12px; border: 1px solid #666666; margin: -2px 2px; } diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/renkan/css/renkan.min.css --- a/server/python/django/renkanmanager/static/renkanmanager/lib/renkan/css/renkan.min.css Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/lib/renkan/css/renkan.min.css Thu Jun 18 16:53:16 2015 +0200 @@ -50,4 +50,4 @@ * * The fact that you are presently reading this means that you have had * knowledge of the CeCILL-C license and that you accept its terms. - *//*! renkan - v0.7.11 - Copyright © IRI 2014 */#renkan{overflow:hidden}.Rk-Main h3,.Rk-Main h4,.Rk-Main li,.Rk-Main p,.Rk-Main ul{border:0 none;margin:0;padding:0}.Rk-Main li,.Rk-Main ul{list-style:none}.Rk-Main input::-moz-focus-inner{border:0;padding:0}.Rk-Main table{border-collapse:separate;border-spacing:0}.Rk-Main td,.Rk-Main th{vertical-align:top}.Rk-Main img a{border:none}.Rk-Main{font-size:10px;font-family:Arial,Helvetica,sans-serif;background:#fff;color:#000}.Rk-Main a{color:#6060c0}.Rk-Main{position:absolute;left:0;top:0;right:0;bottom:0}.Rk-Render{position:absolute;top:0;right:0;bottom:0;background:#fff}.Rk-Render-Full{left:0}.Rk-Render-Panel{left:300px}.Rk-TopBar{position:absolute;left:0;top:0;right:0;height:35px;background:#333;background:-moz-linear-gradient(top,#505050 5px,#1e1e1e 30px);background:-webkit-linear-gradient(top,#505050 5px,#1e1e1e 30px);background:-ms-linear-gradient(top,#505050 5px,#1e1e1e 30px);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#505050', endColorstr='#1e1e1e', GradientType=0)}.Rk-TopBar .loader{display:block;background:none repeat red;width:0;height:4px;overflow:hidden;position:absolute;bottom:0;left:0;transition:width 3s linear;z-index:50}.Rk-TopBar .loader.run{width:100%}.Rk-PadTitle{float:left;font-size:14px;height:16px;margin:4px 5px;background:#666;padding:4px;border:1px solid #333;border-radius:3px;box-shadow:0 1px 0 #505050;color:#fff;font-weight:700}input.Rk-PadTitle{width:180px}h2.Rk-PadTitle{min-width:180px;max-width:320px;overflow:hidden}.Rk-Users{float:right;width:130px;margin:4px 5px}.Rk-CurrentUser{font-size:13px;background:#666;padding:4px;border:1px solid #333;border-radius:3px;box-shadow:0 1px 0 #505050;color:#fff;text-align:center}.Rk-CurrentUser-Color{display:inline-block;width:12px;height:12px;border:1px solid #333;margin:-2px 2px;position:relative}.Rk-CurrentUser input{width:95px;padding:1px;border:none;border-radius:2px}.Rk-UserList{box-shadow:0 2px 2px #999;position:relative;z-index:3;display:none;padding-top:8px}.Rk-User{background:#fff;padding:3px;font-size:12px;border-style:solid solid none;border-color:#ccc;border-width:1px}.Rk-TopBar-Button{float:right;background:url(../img/topbarbuttons.png) no-repeat;height:35px;cursor:pointer;position:relative}.Rk-TopBar-Separator{background:#666;background:-moz-linear-gradient(top,#666 20%,#333 80%);background:-webkit-linear-gradient(top,#666 20%,#333 80%);background:-ms-linear-gradient(top,#666 20%,#333 80%);content:"";display:block;height:35px;float:right;width:1px;border-left:1px solid #111;margin:0 3px}.Rk-TopBar-Tooltip{position:absolute;top:31px;left:50%;margin-left:-60px;width:120px;z-index:4;display:none}.Rk-TopBar-Tooltip-Contents{background:#fff;font-size:13px;font-weight:700;color:#6060c0;text-align:center;padding:2px;border-style:none solid solid;border-width:1px;border-color:#ccc;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.Rk-TopBar-Tooltip:before{content:".";display:block;text-indent:-8000px;height:7px;background:url(../img/tooltiparrow.png) center no-repeat;margin:0 1px}.Rk-AddNode-Button{width:30px;background-position:-2px 0}.Rk-AddNode-Button:hover{background-position:-2px -35px}.Rk-FullScreen-Button{width:30px;background-position:-36px 0}.Rk-FullScreen-Button:hover{background-position:-36px -35px}.Rk-AddEdge-Button{width:30px;background-position:-70px 0}.Rk-AddEdge-Button:hover{background-position:-70px -35px}.Rk-Save-Button{width:30px;background-position:-104px 0}.Rk-Save-Button.saving{background-position:-104px 0}.Rk-Save-Button.Rk-Save-Online:hover,.Rk-Save-Button.saved:hover,.Rk-Save-Button:hover{background-position:-104px -35px}.Rk-Save-Button.Rk-Save-Online:active,.Rk-Save-Button.saved:active,.Rk-Save-Button:active{background-position:-104px 0}.Rk-Save-Button.to-save{background-position:-172px -35px}.Rk-Save-Button.Rk-Save-Online,.Rk-Save-Button.saved{background-position:-172px 0}.Rk-Save-Button.Rk-Save-ReadOnly,.Rk-Save-Button.disabled{opacity:.4;cursor:default}.Rk-Export-Button{width:30px;background-position:-274px 0}.Rk-Export-Button.disabled{opacity:.5;cursor:default}.Rk-Export-Button:hover{background-position:-274px -35px}.Rk-Export-Button.disabled:hover{opacity:1;background-position:-274px 0}.Rk-Bookmarklet-Button{width:30px;background-position:-138px 0}.Rk-Bookmarklet-Button.disabled{opacity:.5;cursor:default}.Rk-Bookmarklet-Button:hover{background-position:-138px -35px}.Rk-Bookmarklet-Button.disabled:hover{opacity:1;background-position:-138px 0}.Rk-Home-Button{width:30px;background-position:-206px 0}.Rk-Home-Button:hover{background-position:-206px -35px}.Rk-Open-Button{width:30px;background-position:-240px 0}.Rk-Open-Button:hover{background-position:-240px -35px}.Rk-GraphSearch-Form{float:right;width:185px;position:relative}.Rk-GraphSearch-Form:after,.Rk-GraphSearch-Form:before{position:absolute;display:block;content:".";text-indent:-9999px}.Rk-GraphSearch-Form:before{right:10px;top:20px;width:7px;height:2px;border:none;padding:0;background:#666;transform:rotate(40deg);-webkit-transform:rotate(40deg)}.Rk-GraphSearch-Form:after{right:13px;top:11px;width:6px;height:6px;border-radius:8px;border:2px solid #666}.Rk-GraphSearch-Field{line-height:23px;font-size:14px;height:23px;padding:0 5px;border:none;margin:6px 5px;width:165px;background:#f0f0f0;box-shadow:1px 1px 1px #999 inset;border-radius:5px;-webkit-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.Rk-Editing-Space{position:absolute;left:0;top:35px;right:0;bottom:0;overflow:hidden;background:-moz-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%);background:-webkit-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%);background:-ms-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%)}.Rk-Editing-Space-Full{top:0}.Rk-Canvas{position:absolute;left:0;top:0;right:0;bottom:0;z-index:2}.Rk-Canvas[resize]{width:100%;height:100%}.Rk-Highlighted{background:rgba(255,255,0,.5)}.Rk-Labels{position:absolute;left:0;top:0;z-index:1;font-family:"Segoe UI","Helvetica Neue",Arial,Helvetica,sans-serif}.Rk-Label{position:absolute;width:160px;margin-left:-80px;text-align:center;font-size:13px;line-height:13px}.Rk-Edge-Label{font-size:11px;transform-origin:50% 0;-moz-transform-origin:50% 0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0}.Rk-Editor{position:absolute;left:0;top:0;z-index:3}.Rk-Notifications{position:absolute;right:15px;top:15px;width:200px;padding:10px;border-radius:8px;display:none;color:#fff;font-size:13px;text-align:center;font-weight:700;background:rgba(20,20,20,.7);background:-moz-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);background:-webkit-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);background:-ms-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#202020', endColorstr='#000000', GradientType=0)}.Rk-CloseX{float:right;cursor:pointer}.Rk-Editor h2{font-size:16px;font-weight:700}.Rk-Editor p,.Rk-Editor-p,.Rk-Editor-p>div{margin:5px 0;font-size:12px;clear:both}.Rk-Editor-Label{float:left;width:80px}a.Rk-Edit-Goto{display:block;float:right;width:18px;height:17px;margin:1px 0;border:none;background:url(../img/goto.png)}.Rk-Edit-Image-File,.Rk-Edit-Title,.Rk-Edit-URI,.Rk-Edit-Vocabulary{font-size:12px;width:250px}.Rk-Edit-Image{font-size:12px;width:220px}.Rk-Edit-Image-Del{display:inline-block;background:url(../img/remove.png);background-size:15px 20px;background-repeat:no-repeat;vertical-align:top;height:20px;width:15px;margin-right:2px}.Rk-Edit-URI{font-size:12px;width:220px}.Rk-Edit-ImgWrap{text-align:center}.Rk-Edit-ImgPreview{display:inline-block;border:1px solid #666;margin:5px auto;position:relative}.Rk-Edit-ImgPreview img{display:inline-block;max-width:253px!important;max-height:200px!important}.Rk-Edit-ImgPreview svg{height:100%;left:0;position:absolute;top:0;width:100%}.Rk-Editor textarea{width:250px;height:120px;resize:none}.Rk-UserColor{display:inline-block;width:12px;height:12px;border:1px solid #666;margin:-2px 2px}.Rk-Edit-Color{display:inline-block;width:10px;height:10px;border:2px solid #333;margin:-2px 2px;position:relative}.Rk-Edit-ColorTip{display:block;width:3px;height:3px;background:#fff;position:absolute;bottom:0;right:0;cursor:pointer}.Rk-Edit-ColorPicker-Wrapper{display:inline-block;position:relative;float:left}.Rk-Edit-ColorPicker{position:absolute;top:-2px;left:15px;width:96px;height:96px;border:1px solid #CCC;padding:5px 4px 4px 5px;background:#fff;border-radius:5px;display:none;z-index:4}.Rk-CurrentUser .Rk-Edit-ColorPicker{left:-105px;top:2px}.Rk-Edit-ColorPicker-Text{color:#303080;font-weight:700}.Rk-Edit-ColorPicker li{float:left;width:11px;height:11px;margin:0 1px 1px 0;cursor:pointer}.Rk-Edit-Dash{float:left;display:inline-block}.Rk-Edit-Size-Btn{font-size:13px;font-weight:700;padding:0 4px;background:#fff;color:#000;border:1px solid #ccc;text-decoration:none}.Rk-Edit-Size-Btn:hover{background:#666}.Rk-Edit-Size-Disp{display:inline-block;padding:0 5px;text-align:center;width:20px}.Rk-Edit-Vocabulary-Class{color:#999;font-style:italic;font-weight:700}.Rk-Edit-Vocabulary-Property{padding-left:20px}.Rk-Edit-Direction{border:1px solid #666;padding:3px 5px;line-height:20px;border-radius:3px;background:#f0f0f0;cursor:pointer}.Rk-Edit-Direction:hover{background:silver}.Rk-Display-Title a{text-decoration:none;color:#000}.Rk-Display-Title a:hover{text-decoration:underline}.Rk-Display-URI{font-style:italic}.Rk-Display-ImgPreview{margin:5px auto;display:block;max-width:255px!important;max-height:260px!important}.Rk-Fold-Bins{position:absolute;top:5px;width:12px;text-align:center;font-size:16px;cursor:pointer;line-height:16px;padding:4px;color:#fff;background:#666;border-radius:0 6px 6px 0;font-weight:700}.Rk-Fold-Bins:hover{background:#333}.Rk-ZoomButtons{position:absolute;left:0;top:35px;cursor:pointer}.Rk-Editing-Space-Full .Rk-ZoomButtons{top:0}.Rk-ShowHiddenNodes,.Rk-ZoomFit,.Rk-ZoomIn,.Rk-ZoomOut,.Rk-ZoomSave,.Rk-ZoomSetSaved{width:21px;height:20px;background:url(../img/zoombuttons.png);margin:5px}.Rk-ZoomIn:hover{background-position:0 -20px}.Rk-ZoomFit{background-position:-42px 0}.Rk-ZoomFit:hover{background-position:-42px -20px}.Rk-ZoomOut{background-position:-21px 0}.Rk-ZoomOut:hover{background-position:-21px -20px}.Rk-ZoomSave{background-position:-63px 0}.Rk-ZoomSave:hover{background-position:-63px -20px}.Rk-ZoomSetSaved{background-position:-84px 0;display:none}.Rk-ZoomSetSaved:hover{background-position:-84px -20px}.Rk-ShowHiddenNodes{background-position:-105px 0}.Rk-ShowHiddenNodes:hover{background-position:-105px -20px}.Rk-Bins{background:#fff;position:absolute;left:0;top:0;width:299px;bottom:0;overflow:hidden;border-right:1px solid #252525}.Rk-Bins-Title{border:0 none;width:290px;height:15px;line-height:15px;margin:0;padding:15px 0 5px 10px;font-size:14px;color:#F0F0F0;background:-moz-linear-gradient(top,#1e1e1e 5px,#606060 30px);background:-webkit-linear-gradient(top,#1e1e1e 5px,#606060 30px);background:-ms-linear-gradient(top,#1e1e1e 5px,#606060 30px);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e1e1e', endColorstr='#606060', GradientType=0)}.Rk-Search-Form{padding:0 10px 8px;height:27px;background:#606060}.Rk-Search-Input,.Rk-Search-Select{float:left;margin:0}.Rk-Search-Input{border-top-left-radius:5px;border-bottom-left-radius:5px;border:1px solid #003050;font-size:13px;background:#fff;height:25px;padding:0 5px;line-height:25px;-webkit-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.Rk-Web-Search-Input{width:190px}.Rk-Bins-Search-Input{width:235px}.Rk-Search-Select{display:inline-block;position:relative;width:45px;border-width:1px;border-color:#003050;border-style:solid none;cursor:pointer;height:25px;background:#fff url(../img/more.png) 30px 10px no-repeat}.Rk-Search-Select:hover{background-color:#3030FF}.Rk-Search-Current{width:40px;height:20px;margin:2px;background-repeat:no-repeat}.Rk-Search-List{width:180px;margin-left:15px;font-size:13px;position:absolute;right:0;top:25px;background:#fff;box-shadow:1px 1px 2px #505050;display:none;border:1px solid #ccc;z-index:2}.Rk-Search-List li{padding:2px 2px 2px 30px;border-top:1px solid #ccc;height:16px;background-color:#fff;background-repeat:no-repeat;cursor:pointer}.Rk-Search-List li:hover{background-color:#3030ff;color:#fff}.Rk-Search-Submit{border:1px solid #003050;height:27px;width:30px;border-top-right-radius:5px;border-bottom-right-radius:5px;background:#333 center no-repeat url(../img/search.png);cursor:pointer}.Rk-Search-Submit:hover{background-color:#999}.Rk-Bin-Title{background:#333;background:-moz-linear-gradient(top,#505050 20%,#1e1e1e 80%);background:-webkit-linear-gradient(top,#505050 20%,#1e1e1e 80%);background:-ms-linear-gradient(top,#505050 20%,#1e1e1e 80%);font-weight:700;font-size:14px;padding:5px;cursor:pointer;color:#f0f0f0;margin:0;border:0 none}.Rk-Bin-Close{float:right;display:block;font-size:16px;font-weight:700;margin:2px 3px 0;color:#f0f0f0;cursor:pointer;text-shadow:-1px -1px 1px #999,1px 1px 1px #000;text-decoration:none}.Rk-Bin-Close:hover{color:#ffff80}.Rk-Bin-Title:hover{color:#ffffe0;background:#505050;background:-moz-linear-gradient(top,#141414 20%,#3c3c3c 80%);background:-webkit-linear-gradient(top,#141414 20%,#3c3c3c 80%);background:-ms-linear-gradient(top,#141414 20%,#3c3c3c 80%)}.Rk-Bin-Refresh{width:18px;height:17px;background:url(../img/refresh.png);display:block;float:right;margin-top:4px}.Rk-Bin-Refresh:hover{background-position:-18px 0}.Rk-Bin-Count{float:right;background:#c000a0;color:#FFF;text-shadow:1px 1px 1px #000;display:none;border-radius:4px;padding:1px 3px;font-size:10px;font-weight:700;margin-top:4px}.Rk-Bin-Title-Icon{float:left;width:25px;margin:2px}.Rk-Bin-Main{overflow:auto;background:#fff;background:-moz-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%);background:-webkit-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%);background:-ms-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%)}.Rk-Bin-Item{cursor:move}.Rk-Bin-Item.hover,.Rk-Bin-Item:hover{background:-moz-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);background:-webkit-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);background:-ms-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d0d0d0', endColorstr='#f3f3f3', GradientType=0)}.Rk-Bin-Item.selected{background:#ffffc0}.Rk-Bin-Main li{padding:2px;border-bottom:1px solid #ccc;clear:both;overflow:hidden}.Rk-Bin-Main h3{font-size:14px;font-style:italic;font-weight:700;text-align:center}.Rk-Bin-Main h4{font-size:12px;font-weight:700}.Rk-Bin-Main p{font-size:11px}.Rk-Bin-Main h4 a{color:#303080}.Rk-Bin-Main .searchmatch{background:#ffff80}.Rk-Wikipedia-Search-Icon{background-image:url(../img/search-logos.png)}.Rk-Wikipedia-Icon{float:left;margin:3px;max-height:48px;max-width:48px}.Rk-Wikipedia-Title-Icon{height:20px;background:url(../img/search-logos.png)}.Rk-Wikipedia-Lang-en{background-position:0 -20px}.Rk-Wikipedia-Lang-fr{background-position:0 -40px}.Rk-Wikipedia-Lang-ja{background-position:0 -60px}.Rk-Wikipedia-Result{min-height:51px}.Rk-Wikipedia-Result h4,.Rk-Wikipedia-Result p{margin-left:54px}.Rk-ResourceList-Image{float:left;max-width:100px;max-height:75px;margin-right:2px}.Rk-Ldt-Icon,.Rk-Ldt-Title-Icon{background:url(../img/search-logos.png);background-position:0 -100px;background-repeat:no-repeat}.Rk-Ldt-Title-Icon{height:20px;margin-top:4px}.Rk-Ldt-Tag-Icon{float:left;margin:0 2px 0 0}.Rk-Ldt-Annotation-Icon{float:left;margin:3px}.Rk-Clear{clear:both}h4.Rk-Bin-Loading{margin:10px;text-align:center;font-size:20px;color:#999} \ No newline at end of file + *//*! renkan - v0.7.11 - Copyright © IRI 2014 */#renkan{overflow:hidden}.Rk-Main h3,.Rk-Main h4,.Rk-Main li,.Rk-Main p,.Rk-Main ul{border:0 none;margin:0;padding:0}.Rk-Main li,.Rk-Main ul{list-style:none}.Rk-Main input::-moz-focus-inner{border:0;padding:0}.Rk-Main table{border-collapse:separate;border-spacing:0}.Rk-Main td,.Rk-Main th{vertical-align:top}.Rk-Main img a{border:none}.Rk-Main{font-size:10px;font-family:Arial,Helvetica,sans-serif;background:#fff;color:#000}.Rk-Main a{color:#6060c0}.Rk-Main{position:absolute;left:0;top:0;right:0;bottom:0}.Rk-Render{position:absolute;top:0;right:0;bottom:0;background:#fff}.Rk-Render-Full{left:0}.Rk-Render-Panel{left:300px}.Rk-TopBar{position:absolute;left:0;top:0;right:0;height:35px;background:#333;background:-moz-linear-gradient(top,#505050 5px,#1e1e1e 30px);background:-webkit-linear-gradient(top,#505050 5px,#1e1e1e 30px);background:-ms-linear-gradient(top,#505050 5px,#1e1e1e 30px);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#505050', endColorstr='#1e1e1e', GradientType=0)}.Rk-TopBar .loader{display:block;background:none repeat red;width:0;height:4px;overflow:hidden;position:absolute;bottom:0;left:0;transition:width 3s linear;z-index:50}.Rk-TopBar .loader.run{width:100%}.Rk-PadTitle{float:left;font-size:14px;height:16px;margin:4px 5px;background:#666;padding:4px;border:1px solid #333;border-radius:3px;box-shadow:0 1px 0 #505050;color:#fff;font-weight:700}input.Rk-PadTitle{width:180px}h2.Rk-PadTitle{min-width:180px;max-width:320px;overflow:hidden}.Rk-Users{float:right;width:130px;margin:4px 5px}.Rk-CurrentUser{font-size:13px;background:#666;padding:4px;border:1px solid #333;border-radius:3px;box-shadow:0 1px 0 #505050;color:#fff;text-align:center}.Rk-CurrentUser-Color{display:inline-block;width:12px;height:12px;border:1px solid #333;margin:-2px 2px;position:relative}.Rk-CurrentUser input{width:95px;padding:1px;border:none;border-radius:2px}.Rk-UserList{box-shadow:0 2px 2px #999;position:relative;z-index:3;display:none;padding-top:8px}.Rk-User{background:#fff;padding:3px;font-size:12px;border-style:solid solid none;border-color:#ccc;border-width:1px}.Rk-TopBar-Button{float:right;background:url(../img/topbarbuttons.png) no-repeat;height:35px;cursor:pointer;position:relative}.Rk-TopBar-Separator{background:#666;background:-moz-linear-gradient(top,#666 20%,#333 80%);background:-webkit-linear-gradient(top,#666 20%,#333 80%);background:-ms-linear-gradient(top,#666 20%,#333 80%);content:"";display:block;height:35px;float:right;width:1px;border-left:1px solid #111;margin:0 3px}.Rk-TopBar-Tooltip{position:absolute;top:31px;left:50%;margin-left:-60px;width:120px;z-index:4;display:none}.Rk-TopBar-Tooltip-Contents{background:#fff;font-size:13px;font-weight:700;color:#6060c0;text-align:center;padding:2px;border-style:none solid solid;border-width:1px;border-color:#ccc;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.Rk-TopBar-Tooltip:before{content:".";display:block;text-indent:-8000px;height:7px;background:url(../img/tooltiparrow.png) center no-repeat;margin:0 1px}.Rk-AddNode-Button{width:30px;background-position:-2px 0}.Rk-AddNode-Button:hover{background-position:-2px -35px}.Rk-FullScreen-Button{width:30px;background-position:-36px 0}.Rk-FullScreen-Button:hover{background-position:-36px -35px}.Rk-AddEdge-Button{width:30px;background-position:-70px 0}.Rk-AddEdge-Button:hover{background-position:-70px -35px}.Rk-Save-Button{width:30px;background-position:-104px 0}.Rk-Save-Button.saving{background-position:-104px 0}.Rk-Save-Button.Rk-Save-Online:hover,.Rk-Save-Button.saved:hover,.Rk-Save-Button:hover{background-position:-104px -35px}.Rk-Save-Button.Rk-Save-Online:active,.Rk-Save-Button.saved:active,.Rk-Save-Button:active{background-position:-104px 0}.Rk-Save-Button.to-save{background-position:-172px -35px}.Rk-Save-Button.Rk-Save-Online,.Rk-Save-Button.saved{background-position:-172px 0}.Rk-Save-Button.Rk-Save-ReadOnly,.Rk-Save-Button.disabled{opacity:.4;cursor:default}.Rk-Export-Button{width:30px;background-position:-274px 0}.Rk-Export-Button.disabled{opacity:.5;cursor:default}.Rk-Export-Button:hover{background-position:-274px -35px}.Rk-Export-Button.disabled:hover{opacity:1;background-position:-274px 0}.Rk-Bookmarklet-Button{width:30px;background-position:-138px 0}.Rk-Bookmarklet-Button.disabled{opacity:.5;cursor:default}.Rk-Bookmarklet-Button:hover{background-position:-138px -35px}.Rk-Bookmarklet-Button.disabled:hover{opacity:1;background-position:-138px 0}.Rk-Home-Button{width:30px;background-position:-206px 0}.Rk-Home-Button:hover{background-position:-206px -35px}.Rk-Open-Button{width:30px;background-position:-240px 0}.Rk-Open-Button:hover{background-position:-240px -35px}.Rk-GraphSearch-Form{float:right;width:185px;position:relative}.Rk-GraphSearch-Form:after,.Rk-GraphSearch-Form:before{position:absolute;display:block;content:".";text-indent:-9999px}.Rk-GraphSearch-Form:before{right:10px;top:20px;width:7px;height:2px;border:none;padding:0;background:#666;transform:rotate(40deg);-webkit-transform:rotate(40deg)}.Rk-GraphSearch-Form:after{right:13px;top:11px;width:6px;height:6px;border-radius:8px;border:2px solid #666}.Rk-GraphSearch-Field{line-height:23px;font-size:14px;height:23px;padding:0 5px;border:none;margin:6px 5px;width:165px;background:#f0f0f0;box-shadow:1px 1px 1px #999 inset;border-radius:5px;-webkit-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.Rk-Editing-Space{position:absolute;left:0;top:35px;right:0;bottom:0;overflow:hidden;background:-moz-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%);background:-webkit-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%);background:-ms-radial-gradient(center,circle,#fff 40%,#e0e0e0 90%)}.Rk-Editing-Space-Full{top:0}.Rk-Canvas{position:absolute;left:0;top:0;right:0;bottom:0;z-index:2}.Rk-Canvas[resize]{width:100%;height:100%}.Rk-Highlighted{background:rgba(255,255,0,.5)}.Rk-Labels{position:absolute;left:0;top:0;z-index:1;font-family:"Segoe UI","Helvetica Neue",Arial,Helvetica,sans-serif}.Rk-Label{position:absolute;width:160px;margin-left:-80px;text-align:center;font-size:13px;line-height:13px}.Rk-Edge-Label{font-size:11px;transform-origin:50% 0;-moz-transform-origin:50% 0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0}.Rk-Editor{position:absolute;left:0;top:0;z-index:3}.Rk-Notifications{position:absolute;right:15px;top:15px;width:200px;padding:10px;border-radius:8px;display:none;color:#fff;font-size:13px;text-align:center;font-weight:700;background:rgba(20,20,20,.7);background:-moz-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);background:-webkit-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);background:-ms-linear-gradient(top,rgba(40,40,40,.7)20%,rgba(0,0,0,.7)80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#202020', endColorstr='#000000', GradientType=0)}.Rk-CloseX{float:right;cursor:pointer}.Rk-Editor h2{font-size:16px;font-weight:700}.Rk-Editor audio,.Rk-Editor video{max-height:100%;max-width:100%}.Rk-Editor p,.Rk-Editor-p,.Rk-Editor-p>div{margin:5px 0;font-size:12px;clear:both}.Rk-Editor-Label{float:left;width:80px}a.Rk-Edit-Goto{display:block;float:right;width:18px;height:17px;margin:1px 0;border:none;background:url(../img/goto.png)}.Rk-Edit-Image-File,.Rk-Edit-Title,.Rk-Edit-URI,.Rk-Edit-Vocabulary{font-size:12px;width:250px}.Rk-Edit-Image{font-size:12px;width:220px}.Rk-Edit-Image-Del{display:inline-block;background:url(../img/remove.png);background-size:15px 20px;background-repeat:no-repeat;vertical-align:top;height:20px;width:15px;margin-right:2px}.Rk-Edit-URI{font-size:12px;width:220px}.Rk-Edit-ImgWrap{text-align:center}.Rk-Edit-ImgPreview{display:inline-block;border:1px solid #666;margin:5px auto;position:relative}.Rk-Edit-ImgPreview img{display:inline-block;max-width:253px!important;max-height:200px!important}.Rk-Edit-ImgPreview svg{height:100%;left:0;position:absolute;top:0;width:100%}.Rk-Editor textarea{width:250px;height:120px;resize:none}div.Rk-Edit-Description{-moz-appearance:textfield-multiline;-webkit-appearance:textarea;background-color:#FFF;border:1px solid #F0F0F0;width:250px;height:120px;resize:vertical;overflow:auto;padding:2px}.Rk-UserColor{display:inline-block;width:12px;height:12px;border:1px solid #666;margin:-2px 2px}.Rk-Edit-Color{display:inline-block;width:10px;height:10px;border:2px solid #333;margin:-2px 2px;position:relative}.Rk-Edit-ColorTip{display:block;width:3px;height:3px;background:#fff;position:absolute;bottom:0;right:0;cursor:pointer}.Rk-Edit-ColorPicker-Wrapper{display:inline-block;position:relative;float:left}.Rk-Edit-ColorPicker{position:absolute;top:-2px;left:15px;width:96px;height:96px;border:1px solid #CCC;padding:5px 4px 4px 5px;background:#fff;border-radius:5px;display:none;z-index:4}.Rk-CurrentUser .Rk-Edit-ColorPicker{left:-105px;top:2px}.Rk-Edit-ColorPicker-Text{color:#303080;font-weight:700}.Rk-Edit-ColorPicker li{float:left;width:11px;height:11px;margin:0 1px 1px 0;cursor:pointer}.Rk-Edit-Dash{float:left;display:inline-block}.Rk-Edit-Size-Btn{font-size:13px;font-weight:700;padding:0 4px;background:#fff;color:#000;border:1px solid #ccc;text-decoration:none}.Rk-Edit-Size-Btn:hover{background:#666}.Rk-Edit-Size-Disp{display:inline-block;padding:0 5px;text-align:center;width:20px}.Rk-Edit-Vocabulary-Class{color:#999;font-style:italic;font-weight:700}.Rk-Edit-Vocabulary-Property{padding-left:20px}.Rk-Edit-Direction{border:1px solid #666;padding:3px 5px;line-height:20px;border-radius:3px;background:#f0f0f0;cursor:pointer}.Rk-Edit-Direction:hover{background:silver}.Rk-Display-Title a{text-decoration:none;color:#000}.Rk-Display-Title a:hover{text-decoration:underline}.Rk-Display-URI{font-style:italic}.Rk-Display-ImgPreview{margin:5px auto;display:block;max-width:255px!important;max-height:260px!important}.Rk-Fold-Bins{position:absolute;top:5px;width:12px;text-align:center;font-size:16px;cursor:pointer;line-height:16px;padding:4px;color:#fff;background:#666;border-radius:0 6px 6px 0;font-weight:700}.Rk-Fold-Bins:hover{background:#333}.Rk-ZoomButtons{position:absolute;left:0;top:35px;cursor:pointer}.Rk-Editing-Space-Full .Rk-ZoomButtons{top:0}.Rk-ShowHiddenNodes,.Rk-ZoomFit,.Rk-ZoomIn,.Rk-ZoomOut,.Rk-ZoomSave,.Rk-ZoomSetSaved{width:21px;height:20px;background:url(../img/zoombuttons.png);margin:5px}.Rk-ZoomIn:hover{background-position:0 -20px}.Rk-ZoomFit{background-position:-42px 0}.Rk-ZoomFit:hover{background-position:-42px -20px}.Rk-ZoomOut{background-position:-21px 0}.Rk-ZoomOut:hover{background-position:-21px -20px}.Rk-ZoomSave{background-position:-63px 0}.Rk-ZoomSave:hover{background-position:-63px -20px}.Rk-ZoomSetSaved{background-position:-84px 0;display:none}.Rk-ZoomSetSaved:hover{background-position:-84px -20px}.Rk-ShowHiddenNodes{background-position:-105px 0}.Rk-ShowHiddenNodes:hover{background-position:-105px -20px}.Rk-Bins{background:#fff;position:absolute;left:0;top:0;width:299px;bottom:0;overflow:hidden;border-right:1px solid #252525}.Rk-Bins-Title{border:0 none;width:290px;height:15px;line-height:15px;margin:0;padding:15px 0 5px 10px;font-size:14px;color:#F0F0F0;background:-moz-linear-gradient(top,#1e1e1e 5px,#606060 30px);background:-webkit-linear-gradient(top,#1e1e1e 5px,#606060 30px);background:-ms-linear-gradient(top,#1e1e1e 5px,#606060 30px);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e1e1e', endColorstr='#606060', GradientType=0)}.Rk-Search-Form{padding:0 10px 8px;height:27px;background:#606060}.Rk-Search-Input,.Rk-Search-Select{float:left;margin:0}.Rk-Search-Input{border-top-left-radius:5px;border-bottom-left-radius:5px;border:1px solid #003050;font-size:13px;background:#fff;height:25px;padding:0 5px;line-height:25px;-webkit-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.Rk-Web-Search-Input{width:190px}.Rk-Bins-Search-Input{width:235px}.Rk-Search-Select{display:inline-block;position:relative;width:45px;border-width:1px;border-color:#003050;border-style:solid none;cursor:pointer;height:25px;background:#fff url(../img/more.png) 30px 10px no-repeat}.Rk-Search-Select:hover{background-color:#3030FF}.Rk-Search-Current{width:40px;height:20px;margin:2px;background-repeat:no-repeat}.Rk-Search-List{width:180px;margin-left:15px;font-size:13px;position:absolute;right:0;top:25px;background:#fff;box-shadow:1px 1px 2px #505050;display:none;border:1px solid #ccc;z-index:2}.Rk-Search-List li{padding:2px 2px 2px 30px;border-top:1px solid #ccc;height:16px;background-color:#fff;background-repeat:no-repeat;cursor:pointer}.Rk-Search-List li:hover{background-color:#3030ff;color:#fff}.Rk-Search-Submit{border:1px solid #003050;height:27px;width:30px;border-top-right-radius:5px;border-bottom-right-radius:5px;background:#333 center no-repeat url(../img/search.png);cursor:pointer}.Rk-Search-Submit:hover{background-color:#999}.Rk-Bin-Title{background:#333;background:-moz-linear-gradient(top,#505050 20%,#1e1e1e 80%);background:-webkit-linear-gradient(top,#505050 20%,#1e1e1e 80%);background:-ms-linear-gradient(top,#505050 20%,#1e1e1e 80%);font-weight:700;font-size:14px;padding:5px;cursor:pointer;color:#f0f0f0;margin:0;border:0 none}.Rk-Bin-Close{float:right;display:block;font-size:16px;font-weight:700;margin:2px 3px 0;color:#f0f0f0;cursor:pointer;text-shadow:-1px -1px 1px #999,1px 1px 1px #000;text-decoration:none}.Rk-Bin-Close:hover{color:#ffff80}.Rk-Bin-Title:hover{color:#ffffe0;background:#505050;background:-moz-linear-gradient(top,#141414 20%,#3c3c3c 80%);background:-webkit-linear-gradient(top,#141414 20%,#3c3c3c 80%);background:-ms-linear-gradient(top,#141414 20%,#3c3c3c 80%)}.Rk-Bin-Refresh{width:18px;height:17px;background:url(../img/refresh.png);display:block;float:right;margin-top:4px}.Rk-Bin-Refresh:hover{background-position:-18px 0}.Rk-Bin-Count{float:right;background:#c000a0;color:#FFF;text-shadow:1px 1px 1px #000;display:none;border-radius:4px;padding:1px 3px;font-size:10px;font-weight:700;margin-top:4px}.Rk-Bin-Title-Icon{float:left;width:25px;margin:2px}.Rk-Bin-Main{overflow:auto;background:#fff;background:-moz-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%);background:-webkit-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%);background:-ms-linear-gradient(top,#e0e0e0 0,#FFF 2%,#FFF 98%,#e0e0e0 100%)}.Rk-Bin-Item{cursor:move}.Rk-Bin-Item.hover,.Rk-Bin-Item:hover{background:-moz-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);background:-webkit-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);background:-ms-linear-gradient(top,rgba(0,0,0,.1)20%,rgba(128,128,128,.1)80%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d0d0d0', endColorstr='#f3f3f3', GradientType=0)}.Rk-Bin-Item.selected{background:#ffffc0}.Rk-Bin-Main li{padding:2px;border-bottom:1px solid #ccc;clear:both;overflow:hidden}.Rk-Bin-Main h3{font-size:14px;font-style:italic;font-weight:700;text-align:center}.Rk-Bin-Main h4{font-size:12px;font-weight:700}.Rk-Bin-Main p{font-size:11px}.Rk-Bin-Main h4 a{color:#303080}.Rk-Bin-Main .searchmatch{background:#ffff80}.Rk-Wikipedia-Search-Icon{background-image:url(../img/search-logos.png)}.Rk-Wikipedia-Icon{float:left;margin:3px;max-height:48px;max-width:48px}.Rk-Wikipedia-Title-Icon{height:20px;background:url(../img/search-logos.png)}.Rk-Wikipedia-Lang-en{background-position:0 -20px}.Rk-Wikipedia-Lang-fr{background-position:0 -40px}.Rk-Wikipedia-Lang-ja{background-position:0 -60px}.Rk-Wikipedia-Result{min-height:51px}.Rk-Wikipedia-Result h4,.Rk-Wikipedia-Result p{margin-left:54px}.Rk-ResourceList-Image{float:left;max-width:100px;max-height:75px;margin-right:2px}.Rk-Ldt-Icon,.Rk-Ldt-Title-Icon{background:url(../img/search-logos.png);background-position:0 -100px;background-repeat:no-repeat}.Rk-Ldt-Title-Icon{height:20px;margin-top:4px}.Rk-Ldt-Tag-Icon{float:left;margin:0 2px 0 0}.Rk-Ldt-Annotation-Icon{float:left;margin:3px}.Rk-Clear{clear:both}h4.Rk-Bin-Loading{margin:10px;text-align:center;font-size:20px;color:#999} \ No newline at end of file diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/renkan/js/renkan.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/renkan/js/renkan.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/lib/renkan/js/renkan.js Thu Jun 18 16:53:16 2015 +0200 @@ -189,7 +189,7 @@ '\n

                            \n'; } ; __p += '\n

                            ' + -__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
                            ' + +((__t = (node.description)) == null ? '' : __t) + +'
                            \n '; + } else { ; +__p += '\n \n '; + } ; +__p += '\n

                            \n'; } ; __p += ' '; if (options.show_node_editor_size) { ; @@ -563,7 +589,7 @@ __p += ' '; if (options.show_node_tooltip_description) { ; __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 '; + if (options.show_node_tooltip_color) { ; +__p += '\n \n '; + } ; +__p += '\n \n '; + if (node.uri) { ; +__p += '\n \n '; + } ; +__p += '\n ' + +__e(node.title) + +'\n '; + if (node.uri) { ; +__p += ''; + } ; +__p += '\n \n

                            \n'; + if (node.uri && options.show_node_tooltip_uri) { ; +__p += '\n \n'; + } ; +__p += '\n ' + +__e(renkan.translate("Link to the node")) + +'\n'; } return __p @@ -712,16 +781,20 @@ '">
                            \n '; if (options.editor_mode && options.save_view) { ; __p += '\n
                            \n '; } ; __p += '\n '; if (options.save_view) { ; __p += '\n
                            \n \t
                            \n '; + if (options.hide_nodes) { ; +__p += '\n \t
                            \n '; +'">
                            \n '; + } ; +__p += ' \n '; } ; __p += '\n
                            \n '; } ; @@ -872,10 +945,18 @@ Rkns.__renkans.push(this); this.options = _.defaults(_opts, Rkns.defaults, { - templates: renkanJST + templates: _.defaults(_opts.templates, renkanJST) || renkanJST, + node_editor_templates: _.defaults(_opts.node_editor_templates, Rkns.defaults.node_editor_templates) }); this.template = renkanJST['templates/main.html']; + var types_templates = {}; + _.each(this.options.node_editor_templates, function(value, key) { + types_templates[key] = _this.options.templates[value]; + delete _this.options.templates[value]; + }); + this.options.node_editor_templates = types_templates; + _.each(this.options.property_files, function(f) { Rkns.$.getJSON(f, function(data) { _this.options.properties = _this.options.properties.concat(data); @@ -883,7 +964,9 @@ }); this.read_only = this.options.read_only || !this.options.editor_mode; - + + this.router = new Rkns.Router(); + this.project = new Rkns.Models.Project(); this.dataloader = new Rkns.DataLoader.Loader(this.project, this.options); @@ -1071,7 +1154,6 @@ this.$.find(".Rk-Bins-Search-Form").submit(function() { return false; }); - }; Renkan.prototype.translate = function(_text) { @@ -1361,6 +1443,31 @@ /* END main.js */ (function(root) { + "use strict"; + + var Backbone = root.Backbone; + + var Router = root.Rkns.Router = Backbone.Router.extend({ + routes: { + '': 'index' + }, + + index: function (parameters) { + + var result = {}; + if (parameters === null){ + return; + } + parameters.split("&").forEach(function(part) { + var item = part.split("="); + result[item[0]] = decodeURIComponent(item[1]); + }); + this.trigger('router', result); + } + }); + +})(window); +(function(root) { "use strict"; @@ -1373,7 +1480,6 @@ for(i=0, len=data.nodes.length; i":"", @@ -2908,7 +3033,10 @@ return new paper.Path.RegularPolygon([0,0], 3, 1); }, getImageShape: function(center, radius) { - return new paper.Path.RegularPolygon(center, 3, radius); + var shape = new paper.Path.RegularPolygon([0,0], 3, 1); + shape.scale(radius); + shape.translate(center); + return shape; } }, "svg": function(path){ @@ -2977,12 +3105,16 @@ this.normal_buttons = [ new Renderer.NodeEditButton(this.renderer, null), new Renderer.NodeRemoveButton(this.renderer, null), - new Renderer.NodeHideButton(this.renderer, null), - new Renderer.NodeShowButton(this.renderer, null), new Renderer.NodeLinkButton(this.renderer, null), new Renderer.NodeEnlargeButton(this.renderer, null), new Renderer.NodeShrinkButton(this.renderer, null) ]; + if (this.options.hide_nodes){ + this.normal_buttons.push( + new Renderer.NodeHideButton(this.renderer, null), + new Renderer.NodeShowButton(this.renderer, null) + ); + } this.pending_delete_buttons = [ new Renderer.NodeRevertButton(this.renderer, null) ]; @@ -3968,7 +4100,7 @@ }); -define('renderer/nodeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor', 'renderer/shapebuilder'], function ($, _, requtils, BaseEditor, ShapeBuilder) { +define('renderer/nodeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor', 'renderer/shapebuilder', 'ckeditor-jquery'], function ($, _, requtils, BaseEditor, ShapeBuilder) { var Utils = requtils.getUtils(); @@ -3983,20 +4115,22 @@ this.template = this.options.templates['templates/nodeeditor.html']; //this.templates['default']= this.options.templates['templates/nodeeditor.html']; //fusionner avec this.options.node_editor_templates - this.readOnlyTemplate = this.options.templates['templates/nodeeditor_readonly.html']; + this.readOnlyTemplate = this.options.node_editor_templates; }, draw: function() { var _model = this.source_representation.model, _created_by = _model.get("created_by") || Utils._USER_PLACEHOLDER(this.renkan), - _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate ), + _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate[_model.get("type")] || this.readOnlyTemplate["default"]), _image_placeholder = this.options.static_url + "img/image-placeholder.png", _size = (_model.get("size") || 0); this.editor_$ .html(_template({ node: { + _id: _model.get("_id"), has_creator: !!_model.get("created_by"), title: _model.get("title"), uri: _model.get("uri"), + type: _model.get("type") || "default", short_uri: Utils.shortenText((_model.get("uri") || "").replace(/^(https?:\/\/)?(www\.)?/,'').replace(/\/$/,''),40), description: _model.get("description"), image: _model.get("image") || "", @@ -4014,10 +4148,19 @@ options: this.options, shortenText: Utils.shortenText, shapes : _(ShapeBuilder.builders).omit('svg').keys().value(), + types : _(this.options.node_editor_templates).keys().value(), })); this.redraw(); var _this = this, - closeEditor = function() { + editorInstance = _this.options.show_node_editor_description_richtext ? + $(".Rk-Edit-Description").ckeditor(_this.options.richtext_editor_config) : + false, + closeEditor = function() { + _this.renderer.removeRepresentation(_this); + paper.view.draw(); + }; + + _this.cleanEditor = function() { _this.editor_$.off("keyup"); _this.editor_$.find("input, textarea, select").off("change keyup paste"); _this.editor_$.find(".Rk-Edit-Image-File").off('change'); @@ -4028,11 +4171,20 @@ _this.editor_$.find(".Rk-CloseX").off('click'); _this.editor_$.find(".Rk-Edit-Goto").off('click'); - _this.renderer.removeRepresentation(_this); - paper.view.draw(); + if(_this.options.show_node_editor_description_richtext) { + if(typeof editorInstance.editor !== 'undefined') { + var _editor = editorInstance.editor; + delete editorInstance.editor; + _editor.focusManager.blur(true); + _editor.destroy(); + } + } }; - this.editor_$.find(".Rk-CloseX").click(closeEditor); + this.editor_$.find(".Rk-CloseX").click(function (e) { + e.preventDefault(); + closeEditor(); + }); this.editor_$.find(".Rk-Edit-Goto").click(function() { if (!_model.get("uri")) { @@ -4057,7 +4209,16 @@ _this.editor_$.find(".Rk-Edit-ImgPreview").attr("src", _data.image || _image_placeholder); } if (_this.options.show_node_editor_description) { - _data.description = _this.editor_$.find(".Rk-Edit-Description").val(); + if(_this.options.show_node_editor_description_richtext) { + if(typeof editorInstance.editor !== 'undefined' && + editorInstance.editor.checkDirty()) { + _data.description = editorInstance.editor.getData(); + editorInstance.editor.resetDirty(); + } + } + else { + _data.description = _this.editor_$.find(".Rk-Edit-Description").val(); + } } if (_this.options.show_node_editor_style) { var dash = _this.editor_$.find(".Rk-Edit-Dash").is(':checked'); @@ -4068,13 +4229,18 @@ _data.shape = _this.editor_$.find(".Rk-Edit-Shape").val(); } } + if (_this.options.change_types) { + if(_model.get("type")!==_this.editor_$.find(".Rk-Edit-Type").val()){ + _data.type = _this.editor_$.find(".Rk-Edit-Type").val(); + } + } _model.set(_data); _this.redraw(); } else { closeEditor(); } }); - }, 500); + }, 1000); this.editor_$.on("keyup", function(_e) { if (_e.keyCode === 27) { @@ -4083,6 +4249,13 @@ }); this.editor_$.find("input, textarea, select").on("change keyup paste", onFieldChange); + if( _this.options.show_node_editor_description && + _this.options.show_node_editor_description_richtext && + typeof editorInstance.editor !== 'undefined') + { + editorInstance.editor.on("change", onFieldChange); + editorInstance.editor.on("blur", onFieldChange); + } if(_this.options.allow_image_upload) { this.editor_$.find(".Rk-Edit-Image-File").change(function() { @@ -4211,10 +4384,17 @@ redraw: function() { if (this.options.popup_editor){ var _coords = this.source_representation.paper_coords; - Utils.drawEditBox(this.options, _coords, this.editor_block, this.source_representation.circle_radius * 0.75, this.editor_$); + Utils.drawEditBox(this.options, _coords, this.editor_block, this.source_representation.circle_radius * 0.75, this.editor_$); } this.editor_$.show(); paper.view.draw(); + }, + destroy: function() { + if(typeof this.cleanEditor !== 'undefined') { + this.cleanEditor(); + } + this.editor_block.remove(); + this.editor_$.remove(); } }).value(); @@ -4296,10 +4476,9 @@ _data.uri = _this.editor_$.find(".Rk-Edit-URI").val(); } if (_this.options.show_node_editor_style) { - var dash = _this.editor_$.find(".Rk-Edit-Dash").is(':checked'); - _data.style = _.assign( ((_model.has("style") && _.clone(_model.get("style"))) || {}), {dash: dash}); - var arrow = _this.editor_$.find(".Rk-Edit-Arrow").is(':checked'); - _data.style = _.assign( ((_model.has("style") && _.clone(_model.get("style"))) || {}), {arrow: arrow}); + var dash = _this.editor_$.find(".Rk-Edit-Dash").is(':checked'), + arrow = _this.editor_$.find(".Rk-Edit-Arrow").is(':checked'); + _data.style = _.assign( ((_model.has("style") && _.clone(_model.get("style"))) || {}), {dash: dash, arrow: arrow}); } _this.editor_$.find(".Rk-Edit-Goto").attr("href",_data.uri || "#"); _model.set(_data); @@ -4485,8 +4664,8 @@ _init: function() { this.type = "Node-edit-button"; this.lastSectorInner = 0; - this.startAngle = -125; - this.endAngle = -55; + this.startAngle = this.options.hide_nodes ? -125 : -135; + this.endAngle = this.options.hide_nodes ? -55 : -45; this.imageName = "edit"; this.text = "Edit"; }, @@ -4518,8 +4697,8 @@ _init: function() { this.type = "Node-remove-button"; this.lastSectorInner = 0; - this.startAngle = -10; - this.endAngle = 45; + this.startAngle = this.options.hide_nodes ? -10 : 0; + this.endAngle = this.options.hide_nodes ? 45 : 90; this.imageName = "remove"; this.text = "Remove"; }, @@ -4672,8 +4851,8 @@ _init: function() { this.type = "Node-link-button"; this.lastSectorInner = 0; - this.startAngle = 135; - this.endAngle = 190; + this.startAngle = this.options.hide_nodes ? 135 : 90; + this.endAngle = this.options.hide_nodes ? 190 : 180; this.imageName = "link"; this.text = "Link to another node"; }, @@ -4713,8 +4892,8 @@ _init: function() { this.type = "Node-enlarge-button"; this.lastSectorInner = 0; - this.startAngle = -55; - this.endAngle = -10; + this.startAngle = this.options.hide_nodes ? -55 : -45; + this.endAngle = this.options.hide_nodes ? -10 : 0; this.imageName = "enlarge"; this.text = "Enlarge"; }, @@ -4748,8 +4927,8 @@ _init: function() { this.type = "Node-shrink-button"; this.lastSectorInner = 0; - this.startAngle = -170; - this.endAngle = -125; + this.startAngle = this.options.hide_nodes ? -170 : -180; + this.endAngle = this.options.hide_nodes ? -125 : -135; this.imageName = "shrink"; this.text = "Shrink"; }, @@ -5071,7 +5250,7 @@ }, mouseleave: function(_event) { _event.preventDefault(); - _this.onMouseUp(_event, false); + //_this.onMouseUp(_event, false);// _this.click_target = null; _this.is_dragging = false; }, @@ -5146,20 +5325,23 @@ this.$.find(".Rk-ZoomSetSaved").click( function() { var view = _this.renkan.project.get("views").last(); if(view){ + _this.showNodes(false); _this.setScale(view.get("zoom_level"), new paper.Point(view.get("offset"))); - _this.hiddenNodes = view.get("hidden_nodes") || []; - _this.hideNodes(); + if (_this.renkan.options.hide_nodes){ + _this.hiddenNodes = (view.get("hidden_nodes") || []).concat(); + _this.hideNodes(); + } } }); this.$.find(".Rk-ShowHiddenNodes").mouseenter( function() { _this.showNodes(true); _this.$.find(".Rk-ShowHiddenNodes").mouseleave( function() { - _this.hideNodes(false); + _this.hideNodes(); }); }); this.$.find(".Rk-ShowHiddenNodes").click( function() { _this.showNodes(false); - _this.$.find(".Rk-ShowHiddenNodes").off( "mouseleave" ); + _this.$.find(".Rk-ShowHiddenNodes").off( "mouseleave" ); }); if(this.renkan.project.get("views").length > 0 && this.renkan.options.save_view){ this.$.find(".Rk-ZoomSetSaved").show(); @@ -5267,6 +5449,9 @@ _this.$.find(".loader").hide(250); }, 3000); } + else{ + Backbone.history.start(); + } }); this.renkan.project.on("add:users remove:users", _thRedrawUsers); @@ -5302,6 +5487,11 @@ el.text(_title); } }); + + //register router events + this.renkan.router.on("router", function(_params){ + _this.parameters(_params); + }); if (_renkan.options.size_bug_fix) { var _delay = ( @@ -5791,7 +5981,9 @@ }, showNodes: function(ghost){ var _this = this; + var i = 0; this.hiddenNodes.forEach(function(_id){ + i++; _this.getRepresentationByModel(_this.renkan.project.get("nodes").get(_id)).show(ghost); }); if (!ghost){ @@ -5870,7 +6062,7 @@ y: _coords.y } }; - _node = this.renkan.project.addNode(_data); + var _node = this.renkan.project.addNode(_data); this.getRepresentationByModel(_node).openEditor(); } } @@ -5935,7 +6127,7 @@ _event.pageY - _off.top ]); var _hitResult = paper.project.hitTest(_point); - + if (!this.isEditable()) { if (_hitResult && typeof _hitResult.item.__representation !== "undefined") { if (_hitResult.item.__representation.model.get('uri')){ @@ -6197,7 +6389,7 @@ _.each(projectJSON.views, function(e,i,l) { delete e._id; delete e.id; - + if(e.hidden_nodes) { hiddenNodes = e.hidden_nodes; e.hidden_nodes = []; @@ -6213,6 +6405,12 @@ filesaver(blob,fileNameToSaveAs); }, + parameters: function(_params){ + if (typeof _params.idnode !== 'undefined'){ + this.unhighlightAll(); + this.highlightModel(this.renkan.project.get("nodes").get(_params.idnode)); + } + }, foldBins: function() { var foldBinsButton = this.$.find(".Rk-Fold-Bins"), bins = this.renkan.$.find(".Rk-Bins"); @@ -6260,8 +6458,15 @@ 'jquery':'../lib/jquery/jquery', 'underscore':'../lib/lodash/lodash', 'filesaver' :'../lib/FileSaver/FileSaver', - 'requtils':'require-utils' - } + 'requtils':'require-utils', + 'ckeditor-core':'../lib/ckeditor/ckeditor', + 'ckeditor-jquery':'../lib/ckeditor/adapters/jquery' + }, + shim: { + 'ckeditor-jquery':{ + deps:['jquery','ckeditor-core'] + } + }, }); } diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/renkan/js/renkan.min.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/renkan/js/renkan.min.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/lib/renkan/js/renkan.min.js Thu Jun 18 16:53:16 2015 +0200 @@ -27,9 +27,9 @@ /*! renkan - v0.10.0 - Copyright © IRI 2015 */ -this.renkanJST=this.renkanJST||{},this.renkanJST["templates/colorpicker.html"]=function(obj){obj||(obj={});{var __t,__p="";_.escape}with(obj)__p+='
                          • ';return __p},this.renkanJST["templates/edgeeditor.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+='

                            \n ×'+__e(renkan.translate("Edit Edge"))+"\n

                            \n

                            \n \n \n

                            \n',options.show_edge_editor_uri&&(__p+="\n

                            \n \n \n \n

                            \n ',options.properties.length&&(__p+="\n

                            \n \n \n

                            \n")),__p+="\n",options.show_edge_editor_style&&(__p+='\n
                            \n ',options.show_edge_editor_style_color&&(__p+='\n
                            \n '+__e(renkan.translate("Edge color:"))+'\n
                            \n \n \n \n '+(null==(__t=renkan.colorPicker)?"":__t)+'\n '+__e(renkan.translate("Choose color"))+"\n
                            \n
                            \n "),__p+="\n ",options.show_edge_editor_style_dash&&(__p+='\n
                            \n '+__e(renkan.translate("Dash:"))+'\n \n
                            \n "),__p+="\n ",options.show_edge_editor_style_thickness&&(__p+='\n
                            \n '+__e(renkan.translate("Thickness:"))+'\n -\n '+__e(edge.thickness)+'\n +\n
                            \n '),__p+="\n ",options.show_edge_editor_style_arrow&&(__p+='\n
                            \n '+__e(renkan.translate("Arrow:"))+'\n \n
                            \n "),__p+="\n
                            \n"),__p+="\n",options.show_edge_editor_direction&&(__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+='

                            \n ×\n ',options.show_edge_tooltip_color&&(__p+='\n \n '),__p+='\n \n ',edge.uri&&(__p+='\n \n '),__p+="\n "+__e(edge.title)+"\n ",edge.uri&&(__p+=" "),__p+="\n \n

                            \n",options.show_edge_tooltip_uri&&edge.uri&&(__p+='\n

                            \n '+__e(edge.short_uri)+"\n

                            \n"),__p+="\n

                            "+__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+='
                          • \n\n \n

                            '+(null==(__t=htitle)?"":__t)+"

                            \n

                            "+(null==(__t=hdescription)?"":__t)+"

                            \n

                            Start: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'

                            \n
                            \n
                          • \n';return __p},this.renkanJST["templates/ldtjson-bin/segmenttemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
                          • \n\n \n

                            '+(null==(__t=htitle)?"":__t)+"

                            \n

                            "+(null==(__t=hdescription)?"":__t)+"

                            \n

                            Start: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'

                            \n
                            \n
                          • \n';return __p},this.renkanJST["templates/ldtjson-bin/tagtemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
                          • \n\n \n

                            '+(null==(__t=htitle)?"":__t)+'

                            \n
                            \n
                          • \n';return __p},this.renkanJST["templates/list-bin.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+='
                          • \n'),__p+='\n

                            \n ',url&&(__p+='\n \n '),__p+="\n "+(null==(__t=htitle)?"":__t)+"\n ",url&&(__p+=""),__p+="\n

                            \n ",description&&(__p+='\n

                            '+(null==(__t=hdescription)?"":__t)+"

                            \n "),__p+="\n ",image&&(__p+='\n
                            \n '),__p+="\n
                          • \n";return __p},this.renkanJST["templates/main.html"]=function(obj){obj||(obj={});{var __p="",__e=_.escape;Array.prototype.join}with(obj)options.show_bins&&(__p+='\n
                            \n
                            \n

                            '+__e(translate("Select contents:"))+'

                            \n
                            \n \n
                            \n
                            \n
                              \n
                              \n \n
                              \n
                              \n \n \n
                              \n
                                \n
                                \n'),__p+=" ",options.show_editor&&(__p+='\n
                                \n ×'+__e(renkan.translate("Edit Node"))+"\n

                                \n

                                \n \n \n

                                \n',options.show_node_editor_uri&&(__p+="\n

                                \n \n \n \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 ',options.show_node_editor_style_color&&(__p+='\n
                                \n \n '+__e(renkan.translate("Node color:"))+'\n
                                \n \n \n \n '+(null==(__t=renkan.colorPicker)?"":__t)+'\n '+__e(renkan.translate("Choose color"))+"\n
                                \n
                                \n "),__p+="\n ",options.show_node_editor_style_dash&&(__p+='\n
                                \n '+__e(renkan.translate("Dash:"))+'\n \n
                                \n "),__p+="\n ",options.show_node_editor_style_thickness&&(__p+='\n
                                \n '+__e(renkan.translate("Thickness:"))+'\n -\n '+__e(node.thickness)+'\n +\n
                                \n '),__p+="\n
                                \n"),__p+=" ",options.show_node_editor_image&&(__p+='\n
                                \n
                                \n \n ',node.clip_path&&(__p+='\n \n \n \n '),__p+="\n
                                \n
                                \n

                                \n \n

                                \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+='

                                \n ×\n ',options.show_node_tooltip_color&&(__p+='\n \n '),__p+='\n \n ',node.uri&&(__p+='\n \n '),__p+="\n "+__e(node.title)+"\n ",node.uri&&(__p+=""),__p+="\n \n

                                \n",node.uri&&options.show_node_tooltip_uri&&(__p+='\n

                                \n '+__e(node.short_uri)+"\n

                                \n"),__p+=" ",options.show_node_tooltip_description&&(__p+='\n

                                '+__e(node.description)+"

                                \n"),__p+=" ",node.image&&options.show_node_tooltip_image&&(__p+='\n \n'),__p+=" ",node.has_creator&&options.show_node_tooltip_creator&&(__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
                                \n ',__p+=options.editor_mode?'\n \n ':'\n

                                \n '+__e(project.get("title")||translate("Untitled project"))+"\n

                                \n ",__p+="\n ",options.show_user_list&&(__p+='\n
                                \n
                                \n ',options.show_user_color&&(__p+='\n
                                \n \n ',options.user_color_editable&&(__p+='\n \n '),__p+="\n \n ",options.user_color_editable&&print(colorPicker),__p+="\n
                                \n "),__p+='\n <unknown user>\n
                                \n
                                  \n
                                  \n '),__p+="\n ",options.home_button_url&&(__p+='\n
                                  \n \n
                                  \n
                                  \n '+__e(translate(options.home_button_title))+"\n
                                  \n
                                  \n
                                  \n "),__p+="\n ",options.show_fullscreen_button&&(__p+='\n
                                  \n
                                  \n
                                  \n
                                  \n '+__e(translate("Full Screen"))+"\n
                                  \n
                                  \n
                                  \n "),__p+="\n ",options.editor_mode?(__p+="\n ",options.show_addnode_button&&(__p+='\n
                                  \n
                                  \n
                                  \n
                                  \n '+__e(translate("Add Node"))+"\n
                                  \n
                                  \n
                                  \n "),__p+="\n ",options.show_addedge_button&&(__p+='\n
                                  \n
                                  \n
                                  \n
                                  \n '+__e(translate("Add Edge"))+"\n
                                  \n
                                  \n
                                  \n "),__p+="\n ",options.show_export_button&&(__p+='\n
                                  \n
                                  \n
                                  \n
                                  \n '+__e(translate("Download Project"))+"\n
                                  \n
                                  \n
                                  \n "),__p+="\n ",options.show_save_button&&(__p+='\n
                                  \n
                                  \n
                                  \n
                                  \n
                                  \n
                                  \n '),__p+="\n ",options.show_open_button&&(__p+='\n
                                  \n
                                  \n
                                  \n
                                  \n '+__e(translate("Open Project"))+"\n
                                  \n
                                  \n
                                  \n "),__p+="\n ",options.show_bookmarklet&&(__p+='\n
                                  \n \n
                                  \n
                                  \n '+__e(translate("Renkan 'Drag-to-Add' bookmarklet"))+'\n
                                  \n
                                  \n
                                  \n
                                  \n '),__p+="\n "):(__p+="\n ",options.show_export_button&&(__p+='\n
                                  \n
                                  \n
                                  \n
                                  \n '+__e(translate("Download Project"))+'\n
                                  \n
                                  \n
                                  \n
                                  \n '),__p+="\n "),__p+="\n ",options.show_search_field&&(__p+='\n
                                  \n \n
                                  \n
                                  \n '),__p+="\n
                                  \n"),__p+='\n
                                  \n
                                  \n
                                  \n ',options.editor_mode&&options.save_view&&(__p+='\n
                                  \n '),__p+="\n ",options.save_view&&(__p+='\n
                                  \n \n '),__p+="\n
                                  \n "),__p+="\n \n\n";return __p},this.renkanJST["templates/search.html"]=function(obj){obj||(obj={});{var __t,__p="";_.escape}with(obj)__p+='
                                • '+(null==(__t=title)?"":__t)+"
                                • ";return __p},this.renkanJST["templates/wikipedia-bin/resulttemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
                                • \n\n \n

                                  \n '+(null==(__t=htitle)?"":__t)+'\n

                                  \n

                                  '+(null==(__t=hdescription)?"":__t)+"

                                  \n
                                • \n";return __p},function(a){"use strict";"object"!=typeof a.Rkns&&(a.Rkns={});var b=a.Rkns,c=b.$=a.jQuery,d=b._=a._;b.pickerColors=["#8f1919","#a80000","#d82626","#ff0000","#e87c7c","#ff6565","#f7d3d3","#fecccc","#8f5419","#a85400","#d87f26","#ff7f00","#e8b27c","#ffb265","#f7e5d3","#fee5cc","#8f8f19","#a8a800","#d8d826","#feff00","#e8e87c","#feff65","#f7f7d3","#fefecc","#198f19","#00a800","#26d826","#00ff00","#7ce87c","#65ff65","#d3f7d3","#ccfecc","#198f8f","#00a8a8","#26d8d8","#00feff","#7ce8e8","#65feff","#d3f7f7","#ccfefe","#19198f","#0000a8","#2626d8","#0000ff","#7c7ce8","#6565ff","#d3d3f7","#ccccfe","#8f198f","#a800a8","#d826d8","#ff00fe","#e87ce8","#ff65fe","#f7d3f7","#feccfe","#000000","#242424","#484848","#6d6d6d","#919191","#b6b6b6","#dadada","#ffffff"],b.__renkans=[];var e=b._BaseBin=function(a,c){if("undefined"!=typeof a){this.renkan=a,this.renkan.$.find(".Rk-Bin-Main").hide(),this.$=b.$("
                                • ").addClass("Rk-Bin").appendTo(a.$.find(".Rk-Bin-List")),this.title_icon_$=b.$("").addClass("Rk-Bin-Title-Icon").appendTo(this.$);var d=this;b.$("").attr({href:"#",title:a.translate("Close bin")}).addClass("Rk-Bin-Close").html("×").appendTo(this.$).click(function(){return d.destroy(),a.$.find(".Rk-Bin-Main:visible").length||a.$.find(".Rk-Bin-Main:last").slideDown(),a.resizeBins(),!1}),b.$("").attr({href:"#",title:a.translate("Refresh bin")}).addClass("Rk-Bin-Refresh").appendTo(this.$).click(function(){return d.refresh(),!1}),this.count_$=b.$("
                                  ").addClass("Rk-Bin-Count").appendTo(this.$),this.title_$=b.$("

                                  ").addClass("Rk-Bin-Title").appendTo(this.$),this.main_$=b.$("
                                  ").addClass("Rk-Bin-Main").appendTo(this.$).html('

                                  '+a.translate("Loading, please wait")+"

                                  "),this.title_$.html(c.title||"(new bin)"),this.renkan.resizeBins(),c.auto_refresh&&window.setInterval(function(){d.refresh()},c.auto_refresh)}};e.prototype.destroy=function(){this.$.detach(),this.renkan.resizeBins()};var f=b.Renkan=function(a){var e=this;if(b.__renkans.push(this),this.options=d.defaults(a,b.defaults,{templates:renkanJST}),this.template=renkanJST["templates/main.html"],d.each(this.options.property_files,function(a){b.$.getJSON(a,function(a){e.options.properties=e.options.properties.concat(a)})}),this.read_only=this.options.read_only||!this.options.editor_mode,this.project=new b.Models.Project,this.dataloader=new b.DataLoader.Loader(this.project,this.options),this.setCurrentUser=function(a,b){this.project.addUser({_id:a,title:b}),this.current_user=a,this.renderer.redrawUsers()},"undefined"!=typeof this.options.user_id&&(this.current_user=this.options.user_id),this.$=b.$("#"+this.options.container),this.$.addClass("Rk-Main").html(this.template(this)),this.tabs=[],this.search_engines=[],this.current_user_list=new b.Models.UsersList,this.current_user_list.on("add remove",function(){this.renderer&&this.renderer.redrawUsers()}),this.colorPicker=function(){var a=renkanJST["templates/colorpicker.html"];return'
                                    '+b.pickerColors.map(function(b){return a({c:b})}).join("")+"
                                  "}(),this.options.show_editor&&(this.renderer=new b.Renderer.Scene(this)),this.options.search.length){var f=renkanJST["templates/search.html"],g=this.$.find(".Rk-Search-List"),h=this.$.find(".Rk-Web-Search-Input"),i=this.$.find(".Rk-Web-Search-Form");d.each(this.options.search,function(a){b[a.type]&&b[a.type].Search&&e.search_engines.push(new b[a.type].Search(e,a))}),g.html(d(this.search_engines).map(function(a,b){return f({key:b,title:a.getSearchTitle(),className:a.getBgClass()})}).join("")),g.find("li").click(function(){var a=b.$(this);e.setSearchEngine(a.attr("data-key")),i.submit()}),i.submit(function(){if(h.val()){var a=e.search_engine;a.search(h.val())}return!1}),this.$.find(".Rk-Search-Current").mouseenter(function(){g.slideDown()}),this.$.find(".Rk-Search-Select").mouseleave(function(){g.hide()}),this.setSearchEngine(0)}else this.$.find(".Rk-Web-Search-Form").detach();d.each(this.options.bins,function(a){b[a.type]&&b[a.type].Bin&&e.tabs.push(new b[a.type].Bin(e,a))});var j=!1;this.$.find(".Rk-Bins").on("click",".Rk-Bin-Title,.Rk-Bin-Title-Icon",function(){var a=b.$(this).siblings(".Rk-Bin-Main");a.is(":hidden")&&(e.$.find(".Rk-Bin-Main").slideUp(),a.slideDown())}),this.options.show_editor&&this.$.find(".Rk-Bins").on("mouseover",".Rk-Bin-Item",function(){var a=b.$(this);if(a&&c(a).attr("data-uri")){var f=e.project.get("nodes").where({uri:c(a).attr("data-uri")});d.each(f,function(a){e.renderer.highlightModel(a)})}}).mouseout(function(){e.renderer.unhighlightAll()}).on("mousemove",".Rk-Bin-Item",function(){try{this.dragDrop()}catch(a){}}).on("touchstart",".Rk-Bin-Item",function(){j=!1}).on("touchmove",".Rk-Bin-Item",function(a){a.preventDefault();var b=a.originalEvent.changedTouches[0],c=e.renderer.canvas_$.offset(),d=e.renderer.canvas_$.width(),f=e.renderer.canvas_$.height();if(b.pageX>=c.left&&b.pageX=c.top&&b.pageY1?a:null);c.source!==k&&(k=c.source,d.each(e.tabs,function(a){a.render(c)}))}}),this.$.find(".Rk-Bins-Search-Form").submit(function(){return!1})};f.prototype.translate=function(a){return b.i18n[this.options.language]&&b.i18n[this.options.language][a]?b.i18n[this.options.language][a]:this.options.language.length>2&&b.i18n[this.options.language.substr(0,2)]&&b.i18n[this.options.language.substr(0,2)][a]?b.i18n[this.options.language.substr(0,2)][a]:a},f.prototype.onStatusChange=function(){this.renderer.onStatusChange()},f.prototype.setSearchEngine=function(a){this.search_engine=this.search_engines[a],this.$.find(".Rk-Search-Current").attr("class","Rk-Search-Current "+this.search_engine.getBgClass());for(var b=this.search_engine.getBgClass().split(" "),c="",d=0;da?"0"+a:a}var b=new Date,c=0,d=b.getUTCFullYear()+"-"+a(b.getUTCMonth()+1)+"-"+a(b.getUTCDate())+"-"+g();return function(a){for(var b=(++c).toString(16),e="undefined"==typeof a?"":a+"-";b.length<4;)b="0"+b;return e+d+"-"+b}}(),getFullURL:function(a){if("undefined"==typeof a||null==a)return"";if(/https?:\/\//.test(a))return a;var b=new Image;b.src=a;var c=b.src;return b.src=null,c},inherit:function(a,b){var c=function(){"function"==typeof b&&b.apply(this,Array.prototype.slice.call(arguments,0)),a.apply(this,Array.prototype.slice.call(arguments,0)),"function"!=typeof this._init||this._initialized||(this._init.apply(this,Array.prototype.slice.call(arguments,0)),this._initialized=!0)};return d.extend(c.prototype,a.prototype),c},regexpFromTextOrArray:function(){function a(a){function b(a){return function(b,c){a=a.replace(h[b],c)}}for(var e=a.toLowerCase().replace(g,""),i="",j=0;j"+a.translate("Drag items from this website, drop them in Renkan").replace(/ /g,"_")+"

                                  '.replace(/_/g,String.fromCharCode(32));b.appendChild(d);e=[{r:/https?:\\/\\/[^\\/]*twitter\\.com\\//,s:'.tweet',n:'twitter'},{r:/https?:\\/\\/[^\\/]*google\\.[^\\/]+\\//,s:'.g',n:'google'},{r:/https?:\\/\\/[^\\/]*lemonde\\.fr\\//,s:'[data-vr-contentbox]',n:'lemonde'}];f=false;e.forEach(function(g){if(g.r.test(c)){f=g;}});if(f){h=function(){Array.prototype.forEach.call(a.querySelectorAll(f.s),function(i){i[j]=true;k=i.style;k.borderWidth='2px';k.borderColor='#909';k.borderStyle='solid';k.backgroundColor='rgba(200,0,180,.1)';})};window.setInterval(h,500);h();};a.addEventListener('dragstart',function(k){l=k.dataTransfer;l.setData(m+'source-uri',c);l.setData(m+'source-title',a.title);n=k.target;if(f){o=n;while(!o.attributes[j]){o=o.parentNode;if(o==b){break;}}}if(f&&o.attributes[j]){p=o.cloneNode(true);l.setData(m+'specific-site',f.n)}else{q=a.getSelection();if(q.type==='Range'||!q.type){p=q.getRangeAt(0).cloneContents();}else{p=n.cloneNode();}}r=a.createElement('div');r.appendChild(p);l.setData('text/x-iri-selected-text',r.textContent.trim());l.setData('text/x-iri-selected-html',r.innerHTML);},false);})();"},shortenText:function(a,b){return a.length>b?a.substr(0,b)+"…":a},drawEditBox:function(a,b,c,d,e){e.css({width:a.tooltip_width-2*a.tooltip_padding});var f=e.outerHeight()+2*a.tooltip_padding,g=b.xpaper.view.size.height-a.tooltip_margin&&(j=Math.max(paper.view.size.height-a.tooltip_margin,b.y+a.tooltip_arrow_width/2)-f),jb;b++){var d=a.nodes[b];d.color?(console.log("node color : ",d.color),d.style={color:d.color}):d.style={}}if("undefined"!=typeof a.edges)for(b=0,c=a.edges.length;c>b;b++){var e=a.edges[b];e.style=e.color?{color:e.color}:{}}return a.schema_version="2",a}}};b.Loader=function(a,c){this.project=a,this.dataConverters=_.defaults(c.converters||{},b.converters)},b.Loader.prototype.convert=function(a){var b=this.project.getSchemaVersion(a),c=this.project.getSchemaVersion();if(b!==c){var d="from"+b+"to"+c;"function"==typeof this.dataConverters[d]&&(console.log("Apply conversion function :",d),a=this.dataConverters[d](a))}return a},b.Loader.prototype.load=function(a){console.log(a),this.project.set(this.convert(a),{validate:!0})}}(window),function(a){"use strict";var b=a.Backbone,c=a.Rkns.Models={};c.getUID=function(a){var b="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(a){var b=16*Math.random()|0,c="x"===a?b:3&b|8;return c.toString(16)});return"undefined"!=typeof a?a.type+"-"+b:b};{var d=b.RelationalModel.extend({idAttribute:"_id",constructor:function(a){"undefined"!=typeof a&&(a._id=a._id||a.id||c.getUID(this),a.title=a.title||"",a.description=a.description||"",a.uri=a.uri||"","function"==typeof this.prepare&&(a=this.prepare(a))),b.RelationalModel.prototype.constructor.call(this,a)},validate:function(){return this.type?void 0:"object has no type"},addReference:function(a,b,c,d,e){var f=c.get(d);a[b]="undefined"==typeof f&&"undefined"!=typeof e?e:f}}),e=c.User=d.extend({type:"user",prepare:function(a){return a.color=a.color||"#666666",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),color:this.get("color")}}}),f=c.Node=d.extend({type:"node",relations:[{type:b.HasOne,key:"created_by",relatedModel:e}],prepare:function(a){var b=a.project;return this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),a.description=a.description||"",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),position:this.get("position"),image:this.get("image"),style:this.get("style"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null,size:this.get("size"),clip_path:this.get("clip_path"),shape:this.get("shape"),type:this.get("type")}}}),g=c.Edge=d.extend({type:"edge",relations:[{type:b.HasOne,key:"created_by",relatedModel:e},{type:b.HasOne,key:"from",relatedModel:f},{type:b.HasOne,key:"to",relatedModel:f}],prepare:function(a){var b=a.project;return this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),this.addReference(a,"from",b.get("nodes"),a.from),this.addReference(a,"to",b.get("nodes"),a.to),a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),from:this.get("from")?this.get("from").get("_id"):null,to:this.get("to")?this.get("to").get("_id"):null,style:this.get("style"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null}}}),h=c.View=d.extend({type:"view",relations:[{type:b.HasOne,key:"created_by",relatedModel:e}],prepare:function(a){var b=a.project;if(this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),a.description=a.description||"","undefined"!=typeof a.offset){var c={};Array.isArray(a.offset)?(c.x=a.offset[0],c.y=a.offset.length>1?a.offset[1]:a.offset[0]):null!=a.offset.x&&(c.x=a.offset.x,c.y=a.offset.y),a.offset=c}return a},toJSON:function(){return{_id:this.get("_id"),zoom_level:this.get("zoom_level"),offset:this.get("offset"),title:this.get("title"),description:this.get("description"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null,hidden_nodes:this.get("hidden_nodes")}}}),i=(c.Project=d.extend({schema_version:"2",type:"project",blacklist:["saveStatus","loadingStatus"],relations:[{type:b.HasMany,key:"users",relatedModel:e,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"nodes",relatedModel:f,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"edges",relatedModel:g,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"views",relatedModel:h,reverseRelation:{key:"project",includeInJSON:"_id"}}],addUser:function(a,b){a.project=this;var c=e.findOrCreate(a);return this.get("users").push(c,b),c},addNode:function(a,b){a.project=this;var c=f.findOrCreate(a);return this.get("nodes").push(c,b),c},addEdge:function(a,b){a.project=this;var c=g.findOrCreate(a);return this.get("edges").push(c,b),c},addView:function(a,b){a.project=this;var c=h.findOrCreate(a);return this.get("views").push(c,b),c},removeNode:function(a){this.get("nodes").remove(a)},removeEdge:function(a){this.get("edges").remove(a)},validate:function(a){var b=this;_.each([].concat(a.users,a.nodes,a.edges,a.views),function(a){a&&(a.project=b)})},getSchemaVersion:function(a){var b=a;"undefined"==typeof b&&(b=this);var c=b.schema_version;return c?c:1},initialize:function(){var a=this;this.on("remove:nodes",function(b){a.get("edges").remove(a.get("edges").filter(function(a){return a.get("from")===b||a.get("to")===b}))})},toJSON:function(){var a=_.clone(this.attributes);for(var c in a)(a[c]instanceof b.Model||a[c]instanceof b.Collection||a[c]instanceof d)&&(a[c]=a[c].toJSON());return _.omit(a,this.blacklist)}}),c.RosterUser=b.Model.extend({type:"roster_user",idAttribute:"_id",constructor:function(a){"undefined"!=typeof a&&(a._id=a._id||a.id||c.getUID(this),a.title=a.title||"(untitled "+this.type+")",a.description=a.description||"",a.uri=a.uri||"",a.project=a.project||null,a.site_id=a.site_id||0,"function"==typeof this.prepare&&(a=this.prepare(a))),b.Model.prototype.constructor.call(this,a)},validate:function(){return this.type?void 0:"object has no type"},prepare:function(a){return a.color=a.color||"#666666",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),color:this.get("color"),project:null!=this.get("project")?this.get("project").get("id"):null,site_id:this.get("site_id")}}}));c.UsersList=b.Collection.extend({model:i})}}(window),Rkns.defaults={language:navigator.language||navigator.userLanguage||"en",container:"renkan",search:[],bins:[],static_url:"",popup_editor:!0,editor_panel:"editor-panel",show_bins:!0,properties:[],show_editor:!0,read_only:!1,editor_mode:!0,manual_save:!1,show_top_bar:!0,default_user_color:"#303030",size_bug_fix:!0,force_resize:!1,allow_double_click:!0,zoom_on_scroll:!0,element_delete_delay:0,autoscale_padding:50,resize:!0,show_zoom:!0,save_view:!0,default_view:!1,show_search_field:!0,show_user_list:!0,user_name_editable:!0,user_color_editable:!0,show_user_color:!0,show_save_button:!0,show_export_button:!0,show_open_button:!1,show_addnode_button:!0,show_addedge_button:!0,show_bookmarklet:!0,show_fullscreen_button:!0,home_button_url:!1,home_button_title:"Home",show_minimap:!0,minimap_width:160,minimap_height:120,minimap_padding:20,minimap_background_color:"#ffffff",minimap_border_color:"#cccccc",minimap_highlight_color:"#ffff00",minimap_highlight_weight:5,buttons_background:"#202020",buttons_label_color:"#c000c0",buttons_label_font_size:9,ghost_opacity:.3,default_dash_array:[4,5],show_node_circles:!0,clip_node_images:!0,node_images_fill_mode:!1,node_size_base:25,node_stroke_width:2,node_stroke_max_width:12,selected_node_stroke_width:4,selected_node_stroke_max_width:24,node_stroke_witdh_scale:5,node_fill_color:"#ffffff",highlighted_node_fill_color:"#ffff00",node_label_distance:5,node_label_max_length:60,label_untitled_nodes:"(untitled)",change_shapes:!0,edge_stroke_width:2,edge_stroke_max_width:12,selected_edge_stroke_width:4,selected_edge_stroke_max_width:24,edge_stroke_witdh_scale:5,edge_label_distance:0,edge_label_max_length:20,edge_arrow_length:18,edge_arrow_width:12,edge_arrow_max_width:32,edge_gap_in_bundles:12,label_untitled_edges:"",tooltip_width:275,tooltip_padding:10,tooltip_margin:15,tooltip_arrow_length:20,tooltip_arrow_width:40,tooltip_top_color:"#f0f0f0",tooltip_bottom_color:"#d0d0d0",tooltip_border_color:"#808080",tooltip_border_width:1,show_node_editor_uri:!0,show_node_editor_description:!0,show_node_editor_size:!0,show_node_editor_style:!0,show_node_editor_style_color:!0,show_node_editor_style_dash:!0,show_node_editor_style_thickness:!0,show_node_editor_image:!0,show_node_editor_creator:!0,allow_image_upload:!0,uploaded_image_max_kb:500,show_node_tooltip_uri:!0,show_node_tooltip_description:!0,show_node_tooltip_color:!0,show_node_tooltip_image:!0,show_node_tooltip_creator:!0,show_edge_editor_uri:!0,show_edge_editor_style:!0,show_edge_editor_style_color:!0,show_edge_editor_style_dash:!0,show_edge_editor_style_thickness:!0,show_edge_editor_style_arrow:!0,show_edge_editor_direction:!0,show_edge_editor_nodes:!0,show_edge_editor_creator:!0,show_edge_tooltip_uri:!0,show_edge_tooltip_color:!0,show_edge_tooltip_nodes:!0,show_edge_tooltip_creator:!0},Rkns.i18n={fr:{"Edit Node":"Édition d’un nœud","Edit Edge":"Édition d’un lien","Title:":"Titre :","URI:":"URI :","Description:":"Description :","From:":"De :","To:":"Vers :",Image:"Image","Image URL:":"URL d'Image","Choose Image File:":"Choisir un fichier image","Full Screen":"Mode plein écran","Add Node":"Ajouter un nœud","Add Edge":"Ajouter un lien","Save Project":"Enregistrer le projet","Open Project":"Ouvrir un projet","Auto-save enabled":"Enregistrement automatique activé","Connection lost":"Connexion perdue","Created by:":"Créé par :","Zoom In":"Agrandir l’échelle","Zoom Out":"Rapetisser l’échelle",Edit:"Éditer",Remove:"Supprimer","Cancel deletion":"Annuler la suppression","Link to another node":"Créer un lien",Enlarge:"Agrandir",Shrink:"Rétrécir","Click on the background canvas to add a node":"Cliquer sur le fond du graphe pour rajouter un nœud","Click on a first node to start the edge":"Cliquer sur un premier nœud pour commencer le lien","Click on a second node to complete the edge":"Cliquer sur un second nœud pour terminer le lien",Wikipedia:"Wikipédia","Wikipedia in ":"Wikipédia en ",French:"Français",English:"Anglais",Japanese:"Japonais","Untitled project":"Projet sans titre","Lignes de Temps":"Lignes de Temps","Loading, please wait":"Chargement en cours, merci de patienter","Edge color:":"Couleur :","Dash:":"Point. :","Thickness:":"Epaisseur :","Arrow:":"Flèche :","Node color:":"Couleur :","Choose color":"Choisir une couleur","Change edge direction":"Changer le sens du lien","Do you really wish to remove node ":"Voulez-vous réellement supprimer le nœud ","Do you really wish to remove edge ":"Voulez-vous réellement supprimer le lien ","This file is not an image":"Ce fichier n'est pas une image","Image size must be under ":"L'image doit peser moins de ","Size:":"Taille :",KB:"ko","Choose from vocabulary:":"Choisir dans un vocabulaire :","SKOS Documentation properties":"SKOS: Propriétés documentaires","has note":"a pour note","has example":"a pour exemple","has definition":"a pour définition","SKOS Semantic relations":"SKOS: Relations sémantiques","has broader":"a pour concept plus large","has narrower":"a pour concept plus étroit","has related":"a pour concept apparenté","Dublin Core Metadata":"Métadonnées Dublin Core","has contributor":"a pour contributeur",covers:"couvre","created by":"créé par","has date":"a pour date","published by":"édité par","has source":"a pour source","has subject":"a pour sujet","Dragged resource":"Ressource glisée-déposée","Search the Web":"Rechercher en ligne","Search in Bins":"Rechercher dans les chutiers","Close bin":"Fermer le chutier","Refresh bin":"Rafraîchir le chutier","(untitled)":"(sans titre)","Select contents:":"Sélectionner des contenus :","Drag items from this website, drop them in Renkan":"Glissez des éléments de ce site web vers Renkan","Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.":"Glissez ce bouton vers votre barre de favoris. Ensuite, depuis un site tiers, cliquez dessus pour activer 'Drag-to-Add' puis glissez des éléments de ce site vers Renkan","Shapes available":"Formes disponibles",Circle:"Cercle",Square:"Carré",Diamond:"Losange",Hexagone:"Hexagone",Ellipse:"Ellipse",Star:"Étoile",Cloud:"Nuage",Triangle:"Triangle","Zoom Fit":"Ajuster le Zoom","Download Project":"Télécharger le projet","Zoom Save":"Sauver le Zoom","View saved zoom":"Restaurer le Zoom","Renkan 'Drag-to-Add' bookmarklet":"Renkan 'Deplacer-Pour-Ajouter' Signet","(unknown user)":"(non authentifié)","":"","Search in graph":"Rechercher dans carte","Search in ":"Chercher dans "}},Rkns.jsonIO=function(a,b){var c=a.project;"undefined"==typeof b.http_method&&(b.http_method="PUT");var d=function(){a.renderer.redrawActive=!1,c.set({loadingStatus:!0}),Rkns.$.getJSON(b.url,function(b){a.dataloader.load(b),c.set({loadingStatus:!1}),c.set({saveStatus:0}),a.renderer.redrawActive=!0,a.renderer.fixSize()})},e=function(){c.set({saveStatus:2});var d=c.toJSON();a.read_only||Rkns.$.ajax({type:b.http_method,url:b.url,contentType:"application/json",data:JSON.stringify(d),success:function(){c.set({saveStatus:0})}})},f=Rkns._.throttle(function(){setTimeout(e,100)},1e3);c.on("add:nodes add:edges add:users add:views",function(a){a.on("change remove",function(){f()}),f()}),c.on("change",function(){1===c.changedAttributes.length&&c.hasChanged("saveStatus")||f()}),d()},Rkns.jsonIOSaveOnClick=function(a,b){var c=a.project,d=!1,e=function(){return"Project not saved"};"undefined"==typeof b.http_method&&(b.http_method="POST");var f=function(){var d={},e=/id=([^&#?=]+)/,f=document.location.hash.match(e);f&&(d.id=f[1]),Rkns.$.ajax({url:b.url,data:d,beforeSend:function(){c.set({loadingStatus:!0})},success:function(b){a.dataloader.load(b),c.set({loadingStatus:!1}),c.set({saveStatus:0}),a.renderer.autoScale()}})},g=function(){c.set("saved_at",new Date);var a=c.toJSON();Rkns.$.ajax({type:b.http_method,url:b.url,contentType:"application/json",data:JSON.stringify(a),beforeSend:function(){c.set({saveStatus:2})},success:function(){$(window).off("beforeunload",e),d=!1,c.set({saveStatus:0})}})},h=function(){c.set({saveStatus:1});var a=c.get("title");a&&c.get("nodes").length?$(".Rk-Save-Button").removeClass("disabled"):$(".Rk-Save-Button").addClass("disabled"),a&&$(".Rk-PadTitle").css("border-color","#333333"),d||(d=!0,$(window).on("beforeunload",e))};f(),c.on("add:nodes add:edges add:users change",function(a){a.on("change remove",function(a){1===a.changedAttributes.length&&a.hasChanged("saveStatus")||h()}),1===c.changedAttributes.length&&c.hasChanged("saveStatus")||h()}),a.renderer.save=function(){$(".Rk-Save-Button").hasClass("disabled")?c.get("title")||$(".Rk-PadTitle").css("border-color","#ff0000"):g()}},function(a){"use strict";var b=a._,c=a.Ldt={},d=(c.Bin=function(a,b){if(b.ldt_type){var d=c[b.ldt_type+"Bin"];if(d)return new d(a,b)}console.error("No such LDT Bin Type")},c.ProjectBin=a.Utils.inherit(a._BaseBin));d.prototype.tagTemplate=renkanJST["templates/ldtjson-bin/tagtemplate.html"],d.prototype.annotationTemplate=renkanJST["templates/ldtjson-bin/annotationtemplate.html"],d.prototype._init=function(a,b){this.renkan=a,this.proj_id=b.project_id,this.ldt_platform=b.ldt_platform||"http://ldt.iri.centrepompidou.fr/",this.title_$.html(b.title),this.title_icon_$.addClass("Rk-Ldt-Title-Icon"),this.refresh()},d.prototype.render=function(c){function d(a){var c=b(a).escape();return f.isempty?c:f.replace(c,"$1")}function e(a){function b(a){for(var b=a.toString();b.length<2;)b="0"+b;return b}var c=Math.abs(Math.floor(a/1e3)),d=Math.floor(c/3600),e=Math.floor(c/60)%60,f=c%60,g="";return d&&(g+=b(d)+":"),g+=b(e)+":"+b(f)}var f=c||a.Utils.regexpFromTextOrArray(),g="
                                • Tags

                                • ",h=this.data.meta["dc:title"],i=this,j=0;i.title_$.text('LDT Project: "'+h+'"'),b.map(i.data.tags,function(a){var b=a.meta["dc:title"];(f.isempty||f.test(b))&&(j++,g+=i.tagTemplate({ldt_platform:i.ldt_platform,title:b,htitle:d(b),encodedtitle:encodeURIComponent(b),static_url:i.renkan.options.static_url}))}),g+="
                                • Annotations

                                • ",b.map(i.data.annotations,function(a){var b=a.content.description,c=a.content.title.replace(b,"");if(f.isempty||f.test(c)||f.test(b)){j++;var h=a.end-a.begin,k=a.content&&a.content.img&&a.content.img.src?a.content.img.src:h?i.renkan.options.static_url+"img/ldt-segment.png":i.renkan.options.static_url+"img/ldt-point.png";g+=i.annotationTemplate({ldt_platform:i.ldt_platform,title:c,htitle:d(c),description:b,hdescription:d(b),start:e(a.begin),end:e(a.end),duration:e(h),mediaid:a.media,annotationid:a.id,image:k,static_url:i.renkan.options.static_url})}}),this.main_$.html(g),!f.isempty&&j?this.count_$.text(j).show():this.count_$.hide(),f.isempty||j?this.$.show():this.$.hide(),this.renkan.resizeBins()},d.prototype.refresh=function(){var b=this;a.$.ajax({url:this.ldt_platform+"ldtplatform/ldt/cljson/id/"+this.proj_id,dataType:"jsonp",success:function(a){b.data=a,b.render()}})};var e=c.Search=function(a,b){this.renkan=a,this.lang=b.lang||"en"};e.prototype.getBgClass=function(){return"Rk-Ldt-Icon"},e.prototype.getSearchTitle=function(){return this.renkan.translate("Lignes de Temps")},e.prototype.search=function(a){this.renkan.tabs.push(new f(this.renkan,{search:a}))};var f=c.ResultsBin=a.Utils.inherit(a._BaseBin);f.prototype.segmentTemplate=renkanJST["templates/ldtjson-bin/segmenttemplate.html"],f.prototype._init=function(a,b){this.renkan=a,this.ldt_platform=b.ldt_platform||"http://ldt.iri.centrepompidou.fr/",this.max_results=b.max_results||50,this.search=b.search,this.title_$.html('Lignes de Temps: "'+b.search+'"'),this.title_icon_$.addClass("Rk-Ldt-Title-Icon"),this.refresh()},f.prototype.render=function(c){function d(a){return g.replace(b(a).escape(),"$1")}function e(a){function b(a){for(var b=a.toString();b.length<2;)b="0"+b;return b}var c=Math.abs(Math.floor(a/1e3)),d=Math.floor(c/3600),e=Math.floor(c/60)%60,f=c%60,g="";return d&&(g+=b(d)+":"),g+=b(e)+":"+b(f)}if(this.data){var f=c||a.Utils.regexpFromTextOrArray(),g=f.isempty?a.Utils.regexpFromTextOrArray(this.search):f,h="",i=this,j=0;b.each(this.data.objects,function(a){var b=a["abstract"],c=a.title;if(f.isempty||f.test(c)||f.test(b)){j++;var g=a.duration,k=a.start_ts,l=+a.duration+k,m=g?i.renkan.options.static_url+"img/ldt-segment.png":i.renkan.options.static_url+"img/ldt-point.png";h+=i.segmentTemplate({ldt_platform:i.ldt_platform,title:c,htitle:d(c),description:b,hdescription:d(b),start:e(k),end:e(l),duration:e(g),mediaid:a.iri_id,annotationid:a.element_id,image:m})}}),this.main_$.html(h),!f.isempty&&j?this.count_$.text(j).show():this.count_$.hide(),f.isempty||j?this.$.show():this.$.hide(),this.renkan.resizeBins()}},f.prototype.refresh=function(){var b=this;a.$.ajax({url:this.ldt_platform+"ldtplatform/api/ldt/1.0/segments/search/",data:{format:"jsonp",q:this.search,limit:this.max_results},dataType:"jsonp",success:function(a){b.data=a,b.render()}})}}(window.Rkns),Rkns.ResourceList={},Rkns.ResourceList.Bin=Rkns.Utils.inherit(Rkns._BaseBin),Rkns.ResourceList.Bin.prototype.resultTemplate=renkanJST["templates/list-bin.html"],Rkns.ResourceList.Bin.prototype._init=function(a,b){this.renkan=a,this.title_$.html(b.title),b.list&&(this.data=b.list),this.refresh()},Rkns.ResourceList.Bin.prototype.render=function(a){function b(a){var b=_(a).escape();return c.isempty?b:c.replace(b,"$1")}var c=a||Rkns.Utils.regexpFromTextOrArray(),d="",e=this,f=0;Rkns._.each(this.data,function(a){var g;if("string"==typeof a)if(/^(https?:\/\/|www)/.test(a))g={url:a};else{g={title:a.replace(/[:,]?\s?(https?:\/\/|www)[\d\w\/.&?=#%-_]+\s?/,"").trim()};var h=a.match(/(https?:\/\/|www)[\d\w\/.&?=#%-_]+/);h&&(g.url=h[0]),g.title.length>80&&(g.description=g.title,g.title=g.title.replace(/^(.{30,60})\s.+$/,"$1…"))}else g=a;var i=g.title||(g.url||"").replace(/^https?:\/\/(www\.)?/,"").replace(/^(.{40}).+$/,"$1…"),j=g.url||"",k=g.description||"",l=g.image||"";j&&!/^https?:\/\//.test(j)&&(j="http://"+j),(c.isempty||c.test(i)||c.test(k))&&(f++,d+=e.resultTemplate({url:j,title:i,htitle:b(i),image:l,description:k,hdescription:b(k),static_url:e.renkan.options.static_url}))}),e.main_$.html(d),!c.isempty&&f?this.count_$.text(f).show():this.count_$.hide(),c.isempty||f?this.$.show():this.$.hide(),this.renkan.resizeBins()},Rkns.ResourceList.Bin.prototype.refresh=function(){this.data&&this.render()},Rkns.Wikipedia={},Rkns.Wikipedia.Search=function(a,b){this.renkan=a,this.lang=b.lang||"en"},Rkns.Wikipedia.Search.prototype.getBgClass=function(){return"Rk-Wikipedia-Search-Icon Rk-Wikipedia-Lang-"+this.lang},Rkns.Wikipedia.Search.prototype.getSearchTitle=function(){var a={fr:"French",en:"English",ja:"Japanese"};return a[this.lang]?this.renkan.translate("Wikipedia in ")+this.renkan.translate(a[this.lang]):this.renkan.translate("Wikipedia")+" ["+this.lang+"]"},Rkns.Wikipedia.Search.prototype.search=function(a){this.renkan.tabs.push(new Rkns.Wikipedia.Bin(this.renkan,{lang:this.lang,search:a}))},Rkns.Wikipedia.Bin=Rkns.Utils.inherit(Rkns._BaseBin),Rkns.Wikipedia.Bin.prototype.resultTemplate=renkanJST["templates/wikipedia-bin/resulttemplate.html"],Rkns.Wikipedia.Bin.prototype._init=function(a,b){this.renkan=a,this.search=b.search,this.lang=b.lang||"en",this.title_icon_$.addClass("Rk-Wikipedia-Title-Icon Rk-Wikipedia-Lang-"+this.lang),this.title_$.html(this.search).addClass("Rk-Wikipedia-Title"),this.refresh()},Rkns.Wikipedia.Bin.prototype.render=function(a){function b(a){return d.replace(_(a).escape(),"$1")}var c=a||Rkns.Utils.regexpFromTextOrArray(),d=c.isempty?Rkns.Utils.regexpFromTextOrArray(this.search):c,e="",f=this,g=0;Rkns._.each(this.data.query.search,function(a){var d=a.title,h="http://"+f.lang+".wikipedia.org/wiki/"+encodeURI(d.replace(/ /g,"_")),i=Rkns.$("
                                  ").html(a.snippet).text();(c.isempty||c.test(d)||c.test(i))&&(g++,e+=f.resultTemplate({url:h,title:d,htitle:b(d),description:i,hdescription:b(i),static_url:f.renkan.options.static_url}))}),f.main_$.html(e),!c.isempty&&g?this.count_$.text(g).show():this.count_$.hide(),c.isempty||g?this.$.show():this.$.hide(),this.renkan.resizeBins()},Rkns.Wikipedia.Bin.prototype.refresh=function(){var a=this;Rkns.$.ajax({url:"http://"+a.lang+".wikipedia.org/w/api.php?action=query&list=search&srsearch="+encodeURIComponent(this.search)+"&format=json",dataType:"jsonp",success:function(b){a.data=b,a.render()}})},define("renderer/baserepresentation",["jquery","underscore"],function(a,b){var c=function(a,c){if("undefined"!=typeof a&&(this.renderer=a,this.renkan=a.renkan,this.project=a.renkan.project,this.options=a.renkan.options,this.model=c,this.model)){var d=this;this._changeBinding=function(){d.redraw({change:!0})},this._removeBinding=function(){a.removeRepresentation(d),b.defer(function(){a.redraw()})},this._selectBinding=function(){d.select()},this._unselectBinding=function(){d.unselect()},this.model.on("change",this._changeBinding),this.model.on("remove",this._removeBinding),this.model.on("select",this._selectBinding),this.model.on("unselect",this._unselectBinding)}};return b(c.prototype).extend({_super:function(a){return c.prototype[a].apply(this,Array.prototype.slice.call(arguments,1))},redraw:function(){},moveTo:function(){},show:function(){return"BaseRepresentation.show"},hide:function(){},select:function(){this.model&&this.model.trigger("selected")},unselect:function(){this.model&&this.model.trigger("unselected")},highlight:function(){},unhighlight:function(){},mousedown:function(){},mouseup:function(){this.model&&this.model.trigger("clicked")},destroy:function(){this.model&&(this.model.off("change",this._changeBinding),this.model.off("remove",this._removeBinding),this.model.off("select",this._selectBinding),this.model.off("unselect",this._unselectBinding))}}).value(),c}),define("requtils",[],function(){return{getUtils:function(){return window.Rkns.Utils},getRenderer:function(){return window.Rkns.Renderer}}}),define("renderer/basebutton",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({moveTo:function(a){this.sector.moveTo(a)},show:function(){this.sector.show()},hide:function(){this.sector.hide()},select:function(){this.sector.select()},unselect:function(a){this.sector.unselect(),(!a||a!==this.source_representation&&a.source_representation!==this.source_representation)&&this.source_representation.unselect()},destroy:function(){this.sector.destroy()}}).value(),f}),define("renderer/shapebuilder",[],function(){var a="M0,0c-0.1218516546,-0.0336420601 -0.2451649928,0.0048580836 -0.3302944641,0.0884969975c-0.0444763883,-0.0550844815 -0.1047003238,-0.0975985034 -0.1769360893,-0.1175406746c-0.1859066673,-0.0513257002 -0.3774236254,0.0626045858 -0.4272374613,0.2541588105c-0.0036603877,0.0140753132 -0.0046241235,0.028229722 -0.0065872453,0.042307536c-0.1674179627,-0.0179317735 -0.3276106855,0.0900599386 -0.3725537463,0.2628868425c-0.0445325077,0.1712456429 0.0395025693,0.3463497959 0.1905420475,0.4183458793c-0.0082101538,0.0183442886 -0.0158652506,0.0372432828 -0.0211098452,0.0574080693c-0.0498130336,0.1915540431 0.0608692569,0.3884647499 0.2467762814,0.4397904033c0.0910577256,0.0251434257 0.1830791813,0.0103792696 0.2594677475,-0.0334472349c0.042100113,0.0928009202 0.1205930075,0.1674914182 0.2240666796,0.1960572479c0.1476344161,0.0407610407 0.297446165,-0.0238077445 0.3783262342,-0.1475652419c0.0327623278,0.0238981846 0.0691792333,0.0436665447 0.1102008706,0.0549940004c0.1859065794,0.0513256592 0.3770116432,-0.0627203154 0.4268255671,-0.2542745401c0.0250490557,-0.0963230532 0.0095494076,-0.1938010889 -0.0356681889,-0.2736906101c0.0447507424,-0.0439678867 0.0797796014,-0.0996624318 0.0969425462,-0.1656617192c0.0498137481,-0.1915564561 -0.0608688118,-0.3884669813 -0.2467755669,-0.4397928163c-0.0195699622,-0.0054005426 -0.0391731675,-0.0084429542 -0.0586916488,-0.0102888295c0.0115683912,-0.1682147574 -0.0933564223,-0.3269222408 -0.2572937178,-0.3721841203z",b={circle:{getShape:function(){return new paper.Path.Circle([0,0],1) -},getImageShape:function(a,b){return new paper.Path.Circle(a,b)}},rectangle:{getShape:function(){return new paper.Path.Rectangle([-2,-2],[2,2])},getImageShape:function(a,b){return new paper.Path.Rectangle([-b,-b],[2*b,2*b])}},ellipse:{getShape:function(){return new paper.Path.Ellipse(new paper.Rectangle([-2,-1],[2,1]))},getImageShape:function(a,b){return new paper.Path.Ellipse(new paper.Rectangle([-b,-b/2],[2*b,b]))}},polygon:{getShape:function(){return new paper.Path.RegularPolygon([0,0],6,1)},getImageShape:function(a,b){return new paper.Path.RegularPolygon(a,6,b)}},diamond:{getShape:function(){var a=new paper.Path.Rectangle([-Math.SQRT2,-Math.SQRT2],[Math.SQRT2,Math.SQRT2]);return a.rotate(45),a},getImageShape:function(a,b){var c=new paper.Path.Rectangle([-b*Math.SQRT2/2,-b*Math.SQRT2/2],[b*Math.SQRT2,b*Math.SQRT2]);return c.rotate(45),c}},star:{getShape:function(){return new paper.Path.Star([0,0],8,1,.7)},getImageShape:function(a,b){return new paper.Path.Star(a,8,1*b,.7*b)}},cloud:{getShape:function(){var b=new paper.Path(a);return b},getImageShape:function(b,c){var d=new paper.Path(a);return d.scale(c),d.translate(b),d}},triangle:{getShape:function(){return new paper.Path.RegularPolygon([0,0],3,1)},getImageShape:function(a,b){return new paper.Path.RegularPolygon(a,3,b)}},svg:function(a){return{getShape:function(){return new paper.Path(a)},getImageShape:function(){return new paper.Path}}}},c=function(a){return(null===a||"undefined"==typeof a)&&(a="circle"),"svg:"===a.substr(0,4)?b.svg(a.substr(4)):(a in b||(a="circle"),b[a])};return c.builders=b,c}),define("renderer/noderepr",["jquery","underscore","requtils","renderer/baserepresentation","renderer/shapebuilder"],function(a,b,c,d,e){var f=c.getUtils(),g=f.inherit(d);return b(g.prototype).extend({_init:function(){if(this.renderer.node_layer.activate(),this.type="Node",this.buildShape(),this.hidden=!1,this.ghost=!1,this.options.show_node_circles?(this.circle.strokeWidth=this.options.node_stroke_width,this.h_ratio=1):this.h_ratio=0,this.title=a('
                                  ').appendTo(this.renderer.labels_$),this.options.editor_mode){var b=c.getRenderer();this.normal_buttons=[new b.NodeEditButton(this.renderer,null),new b.NodeRemoveButton(this.renderer,null),new b.NodeHideButton(this.renderer,null),new b.NodeShowButton(this.renderer,null),new b.NodeLinkButton(this.renderer,null),new b.NodeEnlargeButton(this.renderer,null),new b.NodeShrinkButton(this.renderer,null)],this.pending_delete_buttons=[new b.NodeRevertButton(this.renderer,null)],this.all_buttons=this.normal_buttons.concat(this.pending_delete_buttons);for(var d=0;d$1')):this.title.text(h);var i=this._getStrokeWidth();this.title.css({left:this.paper_coords.x,top:this.paper_coords.y+this.circle_radius*this.h_ratio+this.options.node_label_distance+.5*i,opacity:g});var j=this.model.has("style")&&this.model.get("style").color||(this.model.get("created_by")||f._USER_PLACEHOLDER(this.renkan)).get("color"),k=this.model.has("style")&&this.model.get("style").dash?this.options.default_dash_array:null;this.circle.strokeWidth=i,this.circle.strokeColor=j,this.circle.dashArray=k;var l=this.paper_coords;this.all_buttons.forEach(function(a){a.moveTo(l)});var m=this.img;if(this.img=this.model.get("image"),this.img&&this.img!==m&&(this.showImage(),this.circle&&this.circle.sendToBack()),this.node_image&&!this.img&&(this.node_image.remove(),delete this.node_image),this.renderer.minimap){this.minimap_circle.fillColor=j;var n=this.renderer.toMinimapCoords(c),o=this.renderer.minimap.scale*d,p=new paper.Size([o,o]);this.minimap_circle.fitBounds(n.subtract(p),p.multiply(2))}if(!("undefined"!=typeof a&&"dontRedrawEdges"in a&&a.dontRedrawEdges)){var q=this;b.each(this.project.get("edges").filter(function(a){return a.get("to")===q.model||a.get("from")===q.model}),function(a){var b=q.renderer.getRepresentationByModel(a);b&&"undefined"!=typeof b.from_representation&&"undefined"!=typeof b.from_representation.paper_coords&&"undefined"!=typeof b.to_representation&&"undefined"!=typeof b.to_representation.paper_coords&&b.redraw()})}this.ghost?this.show(!0):this.hidden&&this.hide()},showImage:function(){var b=null;if("undefined"==typeof this.renderer.image_cache[this.img]?(b=new Image,this.renderer.image_cache[this.img]=b,b.src=this.img):b=this.renderer.image_cache[this.img],b.width){this.node_image&&this.node_image.remove(),this.renderer.node_layer.activate();var c=b.width,d=b.height,e=this.model.get("clip_path"),f="undefined"!=typeof e&&e,g=null,h=null,i=null;if(f){g=new paper.Path;var j=e.match(/[a-z][^a-z]+/gi)||[],k=[0,0],l=1/0,m=1/0,n=-1/0,o=-1/0,p=function(a,b){var e=a.slice(1).map(function(a,e){var f=parseFloat(a),g=e%2;return f=g?(f-.5)*d:(f-.5)*c,b&&(f+=k[g]),g?(m=Math.min(m,f),o=Math.max(o,f)):(l=Math.min(l,f),n=Math.max(n,f)),f});return k=e.slice(-2),e};j.forEach(function(a){var b=a.match(/([a-z]|[0-9.-]+)/gi)||[""];switch(b[0]){case"M":g.moveTo(p(b));break;case"m":g.moveTo(p(b,!0));break;case"L":g.lineTo(p(b));break;case"l":g.lineTo(p(b,!0));break;case"C":g.cubicCurveTo(p(b));break;case"c":g.cubicCurveTo(p(b,!0));break;case"Q":g.quadraticCurveTo(p(b));break;case"q":g.quadraticCurveTo(p(b,!0))}}),h=Math[this.options.node_images_fill_mode?"min":"max"](n-l,o-m)/2,i=new paper.Point((n+l)/2,(o+m)/2),this.options.show_node_circles||(this.h_ratio=(o-m)/(2*h))}else h=Math[this.options.node_images_fill_mode?"min":"max"](c,d)/2,i=new paper.Point(0,0),this.options.show_node_circles||(this.h_ratio=d/(2*h));var q=new paper.Raster(b);if(q.locked=!0,f&&(q=new paper.Group(g,q),q.opacity=.99,q.clipped=!0,g.__representation=this),this.options.clip_node_images){var r=this.shapeBuilder.getImageShape(i,h);q=new paper.Group(r,q),q.opacity=.99,q.clipped=!0,r.__representation=this}this.image_delta=i.divide(h),this.node_image=q,this.node_image.__representation=s,this.node_image.scale(this.circle_radius/h),this.node_image.position=this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius)),this.node_image.insertAbove(this.circle)}else{var s=this;a(b).on("load",function(){s.showImage()})}},paperShift:function(a){this.options.editor_mode?this.renkan.read_only||(this.is_dragging=!0,this.paper_coords=this.paper_coords.add(a),this.redraw()):this.renderer.paperShift(a)},openEditor:function(){this.renderer.removeRepresentationsOfType("editor");var a=this.renderer.addRepresentation("NodeEditor",null);a.source_representation=this,a.draw()},select:function(){this.selected=!0,this.circle.strokeWidth=this._getSelectedStrokeWidth(),this.renderer.isEditable()&&!this.hidden&&this.active_buttons.forEach(function(a){a.show()});var b=this.model.get("uri");b&&a(".Rk-Bin-Item").each(function(){var c=a(this);c.attr("data-uri")===b&&c.addClass("selected")}),this.options.editor_mode||this.openEditor(),this.renderer.minimap&&(this.minimap_circle.strokeWidth=this.options.minimap_highlight_weight,this.minimap_circle.strokeColor=this.options.minimap_highlight_color),this.hidden?this.show(!0):this.showNeighbors(!0),this._super("select")},hideButtons:function(){this.all_buttons.forEach(function(a){a.hide()}),delete this.buttonTimeout},unselect:function(b){if(!b||b.source_representation!==this){this.selected=!1;var c=this;this.buttons_timeout=setTimeout(function(){c.hideButtons()},200),this.circle.strokeWidth=this._getStrokeWidth(),a(".Rk-Bin-Item").removeClass("selected"),this.renderer.minimap&&(this.minimap_circle.strokeColor=void 0),this.hidden?this.hide():this.hideNeighbors(),this._super("unselect")}},hide:function(){var a=this;this.ghost=!1,this.hidden=!0,"undefined"!=typeof this.node_image&&(this.node_image.opacity=0),this.hideButtons(),this.circle.opacity=0,this.title.css("opacity",0),this.minimap_circle.opacity=0,b.each(this.project.get("edges").filter(function(b){return b.get("to")===a.model||b.get("from")===a.model}),function(b){var c=a.renderer.getRepresentationByModel(b);c&&"undefined"!=typeof c.from_representation&&"undefined"!=typeof c.from_representation.paper_coords&&"undefined"!=typeof c.to_representation&&"undefined"!=typeof c.to_representation.paper_coords&&c.hide()}),this.hideNeighbors()},show:function(a){var c=this;this.ghost=a,this.ghost?("undefined"!=typeof this.node_image&&(this.node_image.opacity=this.options.ghost_opacity),this.circle.opacity=this.options.ghost_opacity,this.title.css("opacity",this.options.ghost_opacity),this.minimap_circle.opacity=this.options.ghost_opacity):(this.hidden=!1,this.redraw()),b.each(this.project.get("edges").filter(function(a){return a.get("to")===c.model||a.get("from")===c.model}),function(a){var b=c.renderer.getRepresentationByModel(a);b&&"undefined"!=typeof b.from_representation&&"undefined"!=typeof b.from_representation.paper_coords&&"undefined"!=typeof b.to_representation&&"undefined"!=typeof b.to_representation.paper_coords&&b.show(c.ghost)})},hideNeighbors:function(){var a=this;b.each(this.project.get("edges").filter(function(b){return b.get("from")===a.model}),function(b){var c=a.renderer.getRepresentationByModel(b.get("to"));c&&c.ghost&&c.hide()})},showNeighbors:function(a){var c=this;b.each(this.project.get("edges").filter(function(a){return a.get("from")===c.model}),function(b){var d=c.renderer.getRepresentationByModel(b.get("to"));if(d&&d.hidden&&(d.show(a),!a)){var e=c.renderer.hiddenNodes.indexOf(d.model.id);-1!==e&&c.renderer.hiddenNodes.splice(e,1)}})},highlight:function(a){var b=a||!0;this.highlighted!==b&&(this.highlighted=b,this.redraw(),this.renderer.throttledPaperDraw())},unhighlight:function(){this.highlighted&&(this.highlighted=!1,this.redraw(),this.renderer.throttledPaperDraw())},saveCoords:function(){var a=this.renderer.toModelCoords(this.paper_coords),b={position:{x:a.x,y:a.y}};this.renderer.isEditable()&&this.model.set(b)},mousedown:function(a,b){b&&(this.renderer.unselectAll(),this.select())},mouseup:function(a,b){if(this.renderer.is_dragging&&this.renderer.isEditable())this.saveCoords();else if(this.hidden){var c=this.renderer.hiddenNodes.indexOf(this.model.id);-1!==c&&this.renderer.hiddenNodes.splice(c,1),this.show(!1),this.select()}else b||this.model.get("delete_scheduled")||this.openEditor(),this.model.trigger("clicked");this.renderer.click_target=null,this.renderer.is_dragging=!1,this.is_dragging=!1},destroy:function(){this._super("destroy"),this.all_buttons.forEach(function(a){a.destroy()}),this.circle.remove(),this.title.remove(),this.renderer.minimap&&this.minimap_circle.remove(),this.node_image&&this.node_image.remove()}}).value(),g}),define("renderer/edge",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){if(this.renderer.edge_layer.activate(),this.type="Edge",this.hidden=!1,this.ghost=!1,this.from_representation=this.renderer.getRepresentationByModel(this.model.get("from")),this.to_representation=this.renderer.getRepresentationByModel(this.model.get("to")),this.bundle=this.renderer.addToBundles(this),this.line=new paper.Path,this.line.add([0,0],[0,0],[0,0]),this.line.__representation=this,this.line.strokeWidth=this.options.edge_stroke_width,this.arrow_scale=1,this.arrow=new paper.Path,this.arrow.add([0,0],[this.options.edge_arrow_length,this.options.edge_arrow_width/2],[0,this.options.edge_arrow_width]),this.arrow.pivot=new paper.Point([this.options.edge_arrow_length/2,this.options.edge_arrow_width/2]),this.arrow.__representation=this,this.text=a('
                                  ').appendTo(this.renderer.labels_$),this.arrow_angle=0,this.options.editor_mode){var b=c.getRenderer();this.normal_buttons=[new b.EdgeEditButton(this.renderer,null),new b.EdgeRemoveButton(this.renderer,null)],this.pending_delete_buttons=[new b.EdgeRevertButton(this.renderer,null)],this.all_buttons=this.normal_buttons.concat(this.pending_delete_buttons);for(var d=0;d90&&(q-=180,r=r.multiply(-1)),-90>q&&(q+=180,r=r.multiply(-1));var w=this.model.get("title")||this.renkan.translate(this.options.label_untitled_edges)||"";w=e.shortenText(w,this.options.node_label_max_length),this.text.text(w);var x=this.paper_coords.add(r);this.text.css({left:x.x,top:x.y,transform:"rotate("+q+"deg)","-moz-transform":"rotate("+q+"deg)","-webkit-transform":"rotate("+q+"deg)",opacity:c}),this.text_angle=q;var y=this.paper_coords;this.all_buttons.forEach(function(a){a.moveTo(y)}),this.renderer.minimap&&(this.minimap_line.strokeColor=t,this.minimap_line.segments[0].point=this.renderer.toMinimapCoords(new paper.Point(this.from_representation.model.get("position"))),this.minimap_line.segments[1].point=this.renderer.toMinimapCoords(new paper.Point(this.to_representation.model.get("position"))))}},hide:function(){this.hidden=!0,this.ghost=!1,this.text.hide(),this.line.visible=!1,this.arrow.visible=!1,this.minimap_line.visible=!1},show:function(a){this.ghost=a,this.ghost?(this.text.css("opacity",.3),this.line.opacity=.3,this.arrow.opacity=.3,this.minimap_line.opacity=.3):(this.hidden=!1,this.text.css("opacity",1),this.line.opacity=1,this.arrow.opacity=1,this.minimap_line.opacity=1),this.text.show(),this.line.visible=!0,this.arrow.visible=!0,this.minimap_line.visible=!0,this.redraw()},openEditor:function(){this.renderer.removeRepresentationsOfType("editor");var a=this.renderer.addRepresentation("EdgeEditor",null);a.source_representation=this,a.draw()},select:function(){this.selected=!0,this.line.strokeWidth=this._getSelectedStrokeWidth(),this.renderer.isEditable()&&this.active_buttons.forEach(function(a){a.show()}),this.options.editor_mode||this.openEditor(),this._super("select")},unselect:function(a){a&&a.source_representation===this||(this.selected=!1,this.options.editor_mode&&this.all_buttons.forEach(function(a){a.hide()}),this.line.strokeWidth=this._getStrokeWidth(),this._super("unselect"))},mousedown:function(a,b){b&&(this.renderer.unselectAll(),this.select())},mouseup:function(a,b){!this.renkan.read_only&&this.renderer.is_dragging?(this.from_representation.saveCoords(),this.to_representation.saveCoords(),this.from_representation.is_dragging=!1,this.to_representation.is_dragging=!1):(b||this.openEditor(),this.model.trigger("clicked")),this.renderer.click_target=null,this.renderer.is_dragging=!1},paperShift:function(a){this.options.editor_mode?this.options.read_only||(this.from_representation.paperShift(a),this.to_representation.paperShift(a)):this.renderer.paperShift(a)},destroy:function(){this._super("destroy"),this.line.remove(),this.arrow.remove(),this.text.remove(),this.renderer.minimap&&this.minimap_line.remove(),this.all_buttons.forEach(function(a){a.destroy()});var a=this;this.bundle.edges=b.reject(this.bundle.edges,function(b){return a===b})}}).value(),f}),define("renderer/tempedge",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.renderer.edge_layer.activate(),this.type="Temp-edge";var a=(this.project.get("users").get(this.renkan.current_user)||e._USER_PLACEHOLDER(this.renkan)).get("color");this.line=new paper.Path,this.line.strokeColor=a,this.line.dashArray=[4,2],this.line.strokeWidth=this.options.selected_edge_stroke_width,this.line.add([0,0],[0,0]),this.line.__representation=this,this.arrow=new paper.Path,this.arrow.fillColor=a,this.arrow.add([0,0],[this.options.edge_arrow_length,this.options.edge_arrow_width/2],[0,this.options.edge_arrow_width]),this.arrow.__representation=this,this.arrow_angle=0},redraw:function(){var a=this.from_representation.paper_coords,b=this.end_pos,c=b.subtract(a).angle,d=a.add(b).divide(2);this.line.segments[0].point=a,this.line.segments[1].point=b,this.arrow.rotate(c-this.arrow_angle),this.arrow.position=d,this.arrow_angle=c},paperShift:function(a){if(!this.renderer.isEditable())return this.renderer.removeRepresentation(_this),void paper.view.draw();this.end_pos=this.end_pos.add(a);var b=paper.project.hitTest(this.end_pos);this.renderer.findTarget(b),this.redraw()},mouseup:function(a){var b=paper.project.hitTest(a.point),c=this.from_representation.model,d=!0;if(b&&"undefined"!=typeof b.item.__representation){var f=b.item.__representation;if("Node"===f.type.substr(0,4)){var g=f.model||f.source_representation.model;if(c!==g){var h={id:e.getUID("edge"),created_by:this.renkan.current_user,from:c,to:g};this.renderer.isEditable()&&this.project.addEdge(h)}}(c===f.model||f.source_representation&&f.source_representation.model===c)&&(d=!1,this.renderer.is_dragging=!0)}d&&(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentation(this),paper.view.draw())},destroy:function(){this.arrow.remove(),this.line.remove()}}).value(),f}),define("renderer/baseeditor",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.renderer.buttons_layer.activate(),this.type="editor",this.editor_block=new paper.Path;var c=b.map(b.range(8),function(){return[0,0]});this.editor_block.add.apply(this.editor_block,c),this.editor_block.strokeWidth=this.options.tooltip_border_width,this.editor_block.strokeColor=this.options.tooltip_border_color,this.editor_block.opacity=.8,this.editor_$=a("
                                  ").appendTo(this.renderer.editor_$).css({position:"absolute",opacity:.8}).hide()},destroy:function(){this.editor_block.remove(),this.editor_$.remove()}}).value(),f}),define("renderer/nodeeditor",["jquery","underscore","requtils","renderer/baseeditor","renderer/shapebuilder"],function(a,b,c,d,e){var f=c.getUtils(),g=f.inherit(d);return b(g.prototype).extend({_init:function(){d.prototype._init.apply(this),this.template=this.options.templates["templates/nodeeditor.html"],this.readOnlyTemplate=this.options.templates["templates/nodeeditor_readonly.html"]},draw:function(){var c=this.source_representation.model,d=c.get("created_by")||f._USER_PLACEHOLDER(this.renkan),g=this.renderer.isEditable()?this.template:this.readOnlyTemplate,h=this.options.static_url+"img/image-placeholder.png",i=c.get("size")||0;this.editor_$.html(g({node:{has_creator:!!c.get("created_by"),title:c.get("title"),uri:c.get("uri"),short_uri:f.shortenText((c.get("uri")||"").replace(/^(https?:\/\/)?(www\.)?/,"").replace(/\/$/,""),40),description:c.get("description"),image:c.get("image")||"",image_placeholder:h,color:c.has("style")&&c.get("style").color||d.get("color"),thickness:c.has("style")&&c.get("style").thickness||1,dash:c.has("style")&&c.get("style").dash?"checked":"",clip_path:c.get("clip_path")||!1,created_by_color:d.get("color"),created_by_title:d.get("title"),size:(i>0?"+":"")+i,shape:c.get("shape")||"circle"},renkan:this.renkan,options:this.options,shortenText:f.shortenText,shapes:b(e.builders).omit("svg").keys().value()})),this.redraw();var j=this,k=function(){j.editor_$.off("keyup"),j.editor_$.find("input, textarea, select").off("change keyup paste"),j.editor_$.find(".Rk-Edit-Image-File").off("change"),j.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").off("hover"),j.editor_$.find(".Rk-Edit-Size-Btn").off("click"),j.editor_$.find(".Rk-Edit-Image-Del").off("click"),j.editor_$.find(".Rk-Edit-ColorPicker").find("li").off("hover click"),j.editor_$.find(".Rk-CloseX").off("click"),j.editor_$.find(".Rk-Edit-Goto").off("click"),j.renderer.removeRepresentation(j),paper.view.draw()};if(this.editor_$.find(".Rk-CloseX").click(k),this.editor_$.find(".Rk-Edit-Goto").click(function(){return c.get("uri")?void 0:!1}),this.renderer.isEditable()){var l=b.throttle(function(){b.defer(function(){if(j.renderer.isEditable()){var a={title:j.editor_$.find(".Rk-Edit-Title").val()};if(j.options.show_node_editor_uri&&(a.uri=j.editor_$.find(".Rk-Edit-URI").val(),j.editor_$.find(".Rk-Edit-Goto").attr("href",a.uri||"#")),j.options.show_node_editor_image&&(a.image=j.editor_$.find(".Rk-Edit-Image").val(),j.editor_$.find(".Rk-Edit-ImgPreview").attr("src",a.image||h)),j.options.show_node_editor_description&&(a.description=j.editor_$.find(".Rk-Edit-Description").val()),j.options.show_node_editor_style){var d=j.editor_$.find(".Rk-Edit-Dash").is(":checked");a.style=b.assign(c.has("style")&&b.clone(c.get("style"))||{},{dash:d})}j.options.change_shapes&&c.get("shape")!==j.editor_$.find(".Rk-Edit-Shape").val()&&(a.shape=j.editor_$.find(".Rk-Edit-Shape").val()),c.set(a),j.redraw()}else k()})},500);this.editor_$.on("keyup",function(a){27===a.keyCode&&k()}),this.editor_$.find("input, textarea, select").on("change keyup paste",l),j.options.allow_image_upload&&this.editor_$.find(".Rk-Edit-Image-File").change(function(){if(this.files.length){var a=this.files[0],b=new FileReader;if("image"!==a.type.substr(0,5))return void alert(j.renkan.translate("This file is not an image"));if(a.size>1024*j.options.uploaded_image_max_kb)return void alert(j.renkan.translate("Image size must be under ")+j.options.uploaded_image_max_kb+j.renkan.translate("KB"));b.onload=function(a){j.editor_$.find(".Rk-Edit-Image").val(a.target.result),l()},b.readAsDataURL(a)}}),this.editor_$.find(".Rk-Edit-Title")[0].focus();var m=j.editor_$.find(".Rk-Edit-ColorPicker");this.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").hover(function(a){a.preventDefault(),m.show()},function(a){a.preventDefault(),m.hide()}),m.find("li").hover(function(b){b.preventDefault(),j.editor_$.find(".Rk-Edit-Color").css("background",a(this).attr("data-color"))},function(a){a.preventDefault(),j.editor_$.find(".Rk-Edit-Color").css("background",c.has("style")&&c.get("style").color||(c.get("created_by")||f._USER_PLACEHOLDER(j.renkan)).get("color"))}).click(function(d){d.preventDefault(),j.renderer.isEditable()?(c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{color:a(this).attr("data-color")})),m.hide(),paper.view.draw()):k()});var n=function(a){if(j.renderer.isEditable()){var b=a+(c.get("size")||0);j.editor_$.find("#Rk-Edit-Size-Value").text((b>0?"+":"")+b),c.set("size",b),paper.view.draw()}else k()};this.editor_$.find("#Rk-Edit-Size-Down").click(function(){return n(-1),!1}),this.editor_$.find("#Rk-Edit-Size-Up").click(function(){return n(1),!1});var o=function(a){if(j.renderer.isEditable()){var d=c.has("style")&&c.get("style").thickness||1,e=a+d;1>e?e=1:e>j.options.node_stroke_witdh_scale&&(e=j.options.node_stroke_witdh_scale),e!==d&&(j.editor_$.find("#Rk-Edit-Thickness-Value").text(e),c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{thickness:e})),paper.view.draw())}else k()};this.editor_$.find("#Rk-Edit-Thickness-Down").click(function(){return o(-1),!1}),this.editor_$.find("#Rk-Edit-Thickness-Up").click(function(){return o(1),!1}),this.editor_$.find(".Rk-Edit-Image-Del").click(function(){return j.editor_$.find(".Rk-Edit-Image").val(""),l(),!1})}else if("object"==typeof this.source_representation.highlighted){var p=this.source_representation.highlighted.replace(b(c.get("title")).escape(),'$1');this.editor_$.find(".Rk-Display-Title"+(c.get("uri")?" a":"")).html(p),this.options.show_node_tooltip_description&&this.editor_$.find(".Rk-Display-Description").html(this.source_representation.highlighted.replace(b(c.get("description")).escape(),'$1'))}this.editor_$.find("img").load(function(){j.redraw()})},redraw:function(){if(this.options.popup_editor){var a=this.source_representation.paper_coords;f.drawEditBox(this.options,a,this.editor_block,.75*this.source_representation.circle_radius,this.editor_$)}this.editor_$.show(),paper.view.draw()}}).value(),g}),define("renderer/edgeeditor",["jquery","underscore","requtils","renderer/baseeditor"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){d.prototype._init.apply(this),this.template=this.options.templates["templates/edgeeditor.html"],this.readOnlyTemplate=this.options.templates["templates/edgeeditor_readonly.html"]},draw:function(){var c=this.source_representation.model,d=c.get("from"),f=c.get("to"),g=c.get("created_by")||e._USER_PLACEHOLDER(this.renkan),h=this.renderer.isEditable()?this.template:this.readOnlyTemplate;this.editor_$.html(h({edge:{has_creator:!!c.get("created_by"),title:c.get("title"),uri:c.get("uri"),short_uri:e.shortenText((c.get("uri")||"").replace(/^(https?:\/\/)?(www\.)?/,"").replace(/\/$/,""),40),description:c.get("description"),color:c.has("style")&&c.get("style").color||g.get("color"),dash:c.has("style")&&c.get("style").dash?"checked":"",arrow:c.has("style")&&c.get("style").arrow||!c.has("style")||"undefined"==typeof c.get("style").arrow?"checked":"",thickness:c.has("style")&&c.get("style").thickness||1,from_title:d.get("title"),to_title:f.get("title"),from_color:d.has("style")&&d.get("style").color||(d.get("created_by")||e._USER_PLACEHOLDER(this.renkan)).get("color"),to_color:f.has("style")&&f.get("style").color||(f.get("created_by")||e._USER_PLACEHOLDER(this.renkan)).get("color"),created_by_color:g.get("color"),created_by_title:g.get("title")},renkan:this.renkan,shortenText:e.shortenText,options:this.options})),this.redraw();var i=this,j=function(){i.renderer.removeRepresentation(i),i.editor_$.find(".Rk-Edit-Size-Btn").off("click"),paper.view.draw()};if(this.editor_$.find(".Rk-CloseX").click(j),this.editor_$.find(".Rk-Edit-Goto").click(function(){return c.get("uri")?void 0:!1}),this.renderer.isEditable()){var k=b.throttle(function(){b.defer(function(){if(i.renderer.isEditable()){var a={title:i.editor_$.find(".Rk-Edit-Title").val()};if(i.options.show_edge_editor_uri&&(a.uri=i.editor_$.find(".Rk-Edit-URI").val()),i.options.show_node_editor_style){var d=i.editor_$.find(".Rk-Edit-Dash").is(":checked");a.style=b.assign(c.has("style")&&b.clone(c.get("style"))||{},{dash:d}); -var e=i.editor_$.find(".Rk-Edit-Arrow").is(":checked");a.style=b.assign(c.has("style")&&b.clone(c.get("style"))||{},{arrow:e})}i.editor_$.find(".Rk-Edit-Goto").attr("href",a.uri||"#"),c.set(a),paper.view.draw()}else j()})},500);this.editor_$.on("keyup",function(a){27===a.keyCode&&j()}),this.editor_$.find("input").on("keyup change paste",k),this.editor_$.find(".Rk-Edit-Vocabulary").change(function(){var b=a(this),c=b.val();c&&(i.editor_$.find(".Rk-Edit-Title").val(b.find(":selected").text()),i.editor_$.find(".Rk-Edit-URI").val(c),k())}),this.editor_$.find(".Rk-Edit-Direction").click(function(){i.renderer.isEditable()?(c.set({from:c.get("to"),to:c.get("from")}),i.draw()):j()});var l=i.editor_$.find(".Rk-Edit-ColorPicker");this.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").hover(function(a){a.preventDefault(),l.show()},function(a){a.preventDefault(),l.hide()}),l.find("li").hover(function(b){b.preventDefault(),i.editor_$.find(".Rk-Edit-Color").css("background",a(this).attr("data-color"))},function(a){a.preventDefault(),i.editor_$.find(".Rk-Edit-Color").css("background",c.has("style")&&c.get("style").color||(c.get("created_by")||e._USER_PLACEHOLDER(i.renkan)).get("color"))}).click(function(d){d.preventDefault(),i.renderer.isEditable()?(c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{color:a(this).attr("data-color")})),l.hide(),paper.view.draw()):j()});var m=function(a){if(i.renderer.isEditable()){var d=c.has("style")&&c.get("style").thickness||1,e=a+d;1>e?e=1:e>i.options.node_stroke_witdh_scale&&(e=i.options.node_stroke_witdh_scale),e!==d&&(i.editor_$.find("#Rk-Edit-Thickness-Value").text(e),c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{thickness:e})),paper.view.draw())}else j()};this.editor_$.find("#Rk-Edit-Thickness-Down").click(function(){return m(-1),!1}),this.editor_$.find("#Rk-Edit-Thickness-Up").click(function(){return m(1),!1})}},redraw:function(){if(this.options.popup_editor){var a=this.source_representation.paper_coords;e.drawEditBox(this.options,a,this.editor_block,5,this.editor_$)}this.editor_$.show(),paper.view.draw()}}).value(),f}),define("renderer/nodebutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({setSectorSize:function(){var a=this.source_representation.circle_radius;a!==this.lastSectorInner&&(this.sector&&this.sector.destroy(),this.sector=this.renderer.drawSector(this,1+a,e._NODE_BUTTON_WIDTH+a,this.startAngle,this.endAngle,1,this.imageName,this.renkan.translate(this.text)),this.lastSectorInner=a)},unselect:function(){d.prototype.unselect.apply(this,Array.prototype.slice.call(arguments,1)),this.source_representation&&this.source_representation.buttons_timeout&&(clearTimeout(this.source_representation.buttons_timeout),this.source_representation.hideButtons())},select:function(){this.source_representation&&this.source_representation.buttons_timeout&&clearTimeout(this.source_representation.buttons_timeout),this.sector.select()}}).value(),f}),define("renderer/nodeeditbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-edit-button",this.lastSectorInner=0,this.startAngle=-125,this.endAngle=-55,this.imageName="edit",this.text="Edit"},mouseup:function(){this.renderer.is_dragging||this.source_representation.openEditor()}}).value(),f}),define("renderer/noderemovebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-remove-button",this.lastSectorInner=0,this.startAngle=-10,this.endAngle=45,this.imageName="remove",this.text="Remove"},mouseup:function(){if(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable())if(this.options.element_delete_delay){var a=e.getUID("delete");this.renderer.delete_list.push({id:a,time:(new Date).valueOf()+this.options.element_delete_delay}),this.source_representation.model.set("delete_scheduled",a)}else confirm(this.renkan.translate("Do you really wish to remove node ")+'"'+this.source_representation.model.get("title")+'"?')&&this.project.removeNode(this.source_representation.model)}}).value(),f}),define("renderer/nodehidebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-hide-button",this.lastSectorInner=0,this.startAngle=45,this.endAngle=90,this.imageName="hide",this.text="Hide"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable()&&this.renderer.addHiddenNode(this.source_representation.model)}}).value(),f}),define("renderer/nodeshowbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-show-button",this.lastSectorInner=0,this.startAngle=90,this.endAngle=135,this.imageName="show",this.text="Show"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable()&&this.source_representation.showNeighbors(!1)}}).value(),f}),define("renderer/noderevertbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-revert-button",this.lastSectorInner=0,this.startAngle=-135,this.endAngle=135,this.imageName="revert",this.text="Cancel deletion"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.isEditable()&&this.source_representation.model.unset("delete_scheduled")}}).value(),f}),define("renderer/nodelinkbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-link-button",this.lastSectorInner=0,this.startAngle=135,this.endAngle=190,this.imageName="link",this.text="Link to another node"},mousedown:function(a){if(this.renderer.isEditable()){var b=this.renderer.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]);this.renderer.click_target=null,this.renderer.removeRepresentationsOfType("editor"),this.renderer.addTempEdge(this.source_representation,c)}}}).value(),f}),define("renderer/nodeenlargebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-enlarge-button",this.lastSectorInner=0,this.startAngle=-55,this.endAngle=-10,this.imageName="enlarge",this.text="Enlarge"},mouseup:function(){var a=1+(this.source_representation.model.get("size")||0);this.source_representation.model.set("size",a),this.source_representation.select(),this.select(),paper.view.draw()}}).value(),f}),define("renderer/nodeshrinkbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-shrink-button",this.lastSectorInner=0,this.startAngle=-170,this.endAngle=-125,this.imageName="shrink",this.text="Shrink"},mouseup:function(){var a=-1+(this.source_representation.model.get("size")||0);this.source_representation.model.set("size",a),this.source_representation.select(),this.select(),paper.view.draw()}}).value(),f}),define("renderer/edgeeditbutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-edit-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-270,-90,1,"edit",this.renkan.translate("Edit"))},mouseup:function(){this.renderer.is_dragging||this.source_representation.openEditor()}}).value(),f}),define("renderer/edgeremovebutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-remove-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-90,90,1,"remove",this.renkan.translate("Remove"))},mouseup:function(){if(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable())if(this.options.element_delete_delay){var a=e.getUID("delete");this.renderer.delete_list.push({id:a,time:(new Date).valueOf()+this.options.element_delete_delay}),this.source_representation.model.set("delete_scheduled",a)}else confirm(this.renkan.translate("Do you really wish to remove edge ")+'"'+this.source_representation.model.get("title")+'"?')&&this.project.removeEdge(this.source_representation.model)}}).value(),f}),define("renderer/edgerevertbutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-revert-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-135,135,1,"revert",this.renkan.translate("Cancel deletion"))},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.isEditable()&&this.source_representation.model.unset("delete_scheduled")}}).value(),f}),define("renderer/miniframe",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({paperShift:function(a){this.renderer.offset=this.renderer.offset.subtract(a.divide(this.renderer.minimap.scale).multiply(this.renderer.scale)),this.renderer.redraw()},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1}}).value(),f}),define("renderer/scene",["jquery","underscore","filesaver","requtils","renderer/miniframe"],function(a,b,c,d,e){var f=d.getUtils(),g=function(c){this.renkan=c,this.$=a(".Rk-Render"),this.representations=[],this.$.html(c.options.templates["templates/scene.html"](c)),this.onStatusChange(),this.canvas_$=this.$.find(".Rk-Canvas"),this.labels_$=this.$.find(".Rk-Labels"),this.editor_$=c.options.popup_editor?this.$.find(".Rk-Editor"):a("#"+c.options.editor_panel),this.notif_$=this.$.find(".Rk-Notifications"),paper.setup(this.canvas_$[0]),this.scale=1,this.initialScale=1,this.offset=paper.view.center,this.totalScroll=0,this.hiddenNodes=[],this.mouse_down=!1,this.click_target=null,this.selected_target=null,this.edge_layer=new paper.Layer,this.node_layer=new paper.Layer,this.buttons_layer=new paper.Layer,this.delete_list=[],this.redrawActive=!0,c.options.show_minimap&&(this.minimap={background_layer:new paper.Layer,edge_layer:new paper.Layer,node_layer:new paper.Layer,node_group:new paper.Group,size:new paper.Size(c.options.minimap_width,c.options.minimap_height)},this.minimap.background_layer.activate(),this.minimap.topleft=paper.view.bounds.bottomRight.subtract(this.minimap.size),this.minimap.rectangle=new paper.Path.Rectangle(this.minimap.topleft.subtract([2,2]),this.minimap.size.add([4,4])),this.minimap.rectangle.fillColor=c.options.minimap_background_color,this.minimap.rectangle.strokeColor=c.options.minimap_border_color,this.minimap.rectangle.strokeWidth=4,this.minimap.offset=new paper.Point(this.minimap.size.divide(2)),this.minimap.scale=.1,this.minimap.node_layer.activate(),this.minimap.cliprectangle=new paper.Path.Rectangle(this.minimap.topleft,this.minimap.size),this.minimap.node_group.addChild(this.minimap.cliprectangle),this.minimap.node_group.clipped=!0,this.minimap.miniframe=new paper.Path.Rectangle(this.minimap.topleft,this.minimap.size),this.minimap.node_group.addChild(this.minimap.miniframe),this.minimap.miniframe.fillColor="#c0c0ff",this.minimap.miniframe.opacity=.3,this.minimap.miniframe.strokeColor="#000080",this.minimap.miniframe.strokeWidth=2,this.minimap.miniframe.__representation=new e(this,null)),this.throttledPaperDraw=b(function(){paper.view.draw()}).throttle(100).value(),this.bundles=[],this.click_mode=!1;var d=this,g=!0,h=1,i=!1,j=0,k=0;this.image_cache={},this.icon_cache={},["edit","remove","hide","show","link","enlarge","shrink","revert"].forEach(function(a){var b=new Image;b.src=c.options.static_url+"img/"+a+".png",d.icon_cache[a]=b});var l=b.throttle(function(a,b){d.onMouseMove(a,b)},f._MOUSEMOVE_RATE);this.canvas_$.on({mousedown:function(a){a.preventDefault(),d.onMouseDown(a,!1)},mousemove:function(a){a.preventDefault(),l(a,!1)},mouseup:function(a){a.preventDefault(),d.onMouseUp(a,!1)},mousewheel:function(a,b){c.options.zoom_on_scroll&&(a.preventDefault(),g&&d.onScroll(a,b))},touchstart:function(a){a.preventDefault();var b=a.originalEvent.touches[0];c.options.allow_double_click&&new Date-_lastTap0&&this.renkan.options.save_view&&this.$.find(".Rk-ZoomSetSaved").show(),this.$.find(".Rk-CurrentUser").mouseenter(function(){d.$.find(".Rk-UserList").slideDown()}),this.$.find(".Rk-Users").mouseleave(function(){d.$.find(".Rk-UserList").slideUp()}),m(".Rk-FullScreen-Button","fullScreen"),m(".Rk-AddNode-Button","addNodeBtn"),m(".Rk-AddEdge-Button","addEdgeBtn"),m(".Rk-Save-Button","save"),m(".Rk-Open-Button","open"),m(".Rk-Export-Button","exportProject"),this.$.find(".Rk-Bookmarklet-Button").attr("href","javascript:"+f._BOOKMARKLET_CODE(c)).click(function(){return d.notif_$.text(c.translate("Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.")).fadeIn().delay(5e3).fadeOut(),!1}),this.$.find(".Rk-TopBar-Button").mouseover(function(){a(this).find(".Rk-TopBar-Tooltip").show()}).mouseout(function(){a(this).find(".Rk-TopBar-Tooltip").hide()}),m(".Rk-Fold-Bins","foldBins"),paper.view.onResize=function(a){var b,c=a.width,e=a.height;d.minimap&&(d.minimap.topleft=paper.view.bounds.bottomRight.subtract(d.minimap.size),d.minimap.rectangle.fitBounds(d.minimap.topleft.subtract([2,2]),d.minimap.size.add([4,4])),d.minimap.cliprectangle.fitBounds(d.minimap.topleft,d.minimap.size));var f=e/(e-a.delta.height),g=c/(c-a.delta.width);b=c>e?f:g,d.resizeZoom(g,f,b),d.redraw()};var n=b.throttle(function(){d.redraw()},50);this.addRepresentations("Node",this.renkan.project.get("nodes")),this.addRepresentations("Edge",this.renkan.project.get("edges")),this.renkan.project.on("change:title",function(){d.$.find(".Rk-PadTitle").val(c.project.get("title"))}),this.$.find(".Rk-PadTitle").on("keyup input paste",function(){c.project.set({title:a(this).val()})});var o=b.throttle(function(){d.redrawUsers()},100);if(o(),this.renkan.project.on("change:saveStatus",function(){switch(d.renkan.project.get("saveStatus")){case 0:d.$.find(".Rk-Save-Button").removeClass("to-save"),d.$.find(".Rk-Save-Button").removeClass("saving"),d.$.find(".Rk-Save-Button").addClass("saved");break;case 1:d.$.find(".Rk-Save-Button").removeClass("saved"),d.$.find(".Rk-Save-Button").removeClass("saving"),d.$.find(".Rk-Save-Button").addClass("to-save");break;case 2:d.$.find(".Rk-Save-Button").removeClass("saved"),d.$.find(".Rk-Save-Button").removeClass("to-save"),d.$.find(".Rk-Save-Button").addClass("saving")}}),this.renkan.project.on("change:loadingStatus",function(){if(d.renkan.project.get("loadingStatus")){d.$.find(".loader").addClass("run"),setTimeout(function(){d.$.find(".loader").hide(250)},3e3)}}),this.renkan.project.on("add:users remove:users",o),this.renkan.project.on("add:views remove:views",function(){d.renkan.project.get("views").length>0?d.$.find(".Rk-ZoomSetSaved").show():d.$.find(".Rk-ZoomSetSaved").hide()}),this.renkan.project.on("add:nodes",function(a){d.addRepresentation("Node",a),d.renkan.project.get("loadingStatus")||n()}),this.renkan.project.on("add:edges",function(a){d.addRepresentation("Edge",a),d.renkan.project.get("loadingStatus")||n()}),this.renkan.project.on("change:title",function(a,b){var c=d.$.find(".Rk-PadTitle");c.is("input")?c.val()!==b&&c.val(b):c.text(b)}),c.options.size_bug_fix){var p="number"==typeof c.options.size_bug_fix?c.options.size_bug_fix:500;window.setTimeout(function(){d.fixSize()},p)}if(c.options.force_resize&&a(window).resize(function(){d.autoScale()}),c.options.show_user_list&&c.options.user_color_editable){var q=this.$.find(".Rk-Users .Rk-Edit-ColorPicker-Wrapper"),r=this.$.find(".Rk-Users .Rk-Edit-ColorPicker");q.hover(function(a){d.isEditable()&&(a.preventDefault(),r.show())},function(a){a.preventDefault(),r.hide()}),r.find("li").mouseenter(function(b){d.isEditable()&&(b.preventDefault(),d.$.find(".Rk-CurrentUser-Color").css("background",a(this).attr("data-color")))})}if(c.options.show_search_field){var s="";this.$.find(".Rk-GraphSearch-Field").on("keyup change paste input",function(){var b=a(this),e=b.val();if(e!==s)if(s=e,e.length<2)c.project.get("nodes").each(function(a){d.getRepresentationByModel(a).unhighlight()});else{var g=f.regexpFromTextOrArray(e);c.project.get("nodes").each(function(a){g.test(a.get("title"))||g.test(a.get("description"))?d.getRepresentationByModel(a).highlight(g):d.getRepresentationByModel(a).unhighlight()})}})}this.redraw(),window.setInterval(function(){var a=(new Date).valueOf();d.delete_list.forEach(function(b){if(a>=b.time){var d=c.project.get("nodes").findWhere({delete_scheduled:b.id});d&&project.removeNode(d),d=c.project.get("edges").findWhere({delete_scheduled:b.id}),d&&project.removeEdge(d)}}),d.delete_list=d.delete_list.filter(function(a){return c.project.get("nodes").findWhere({delete_scheduled:a.id})||c.project.get("edges").findWhere({delete_scheduled:a.id})})},500),this.minimap&&window.setInterval(function(){d.rescaleMinimap()},2e3)};return b(g.prototype).extend({fixSize:function(){if(this.renkan.options.default_view&&this.renkan.project.get("views").length>0){var a=this.renkan.project.get("views").last();this.setScale(a.get("zoom_level"),new paper.Point(a.get("offset")))}else this.autoScale()},drawSector:function(b,c,d,e,f,g,h,i){var j=this.renkan.options,k=e*Math.PI/180,l=f*Math.PI/180,m=this.icon_cache[h],n=-Math.sin(k),o=Math.cos(k),p=Math.cos(k)*c+g*n,q=Math.sin(k)*c+g*o,r=Math.cos(k)*d+g*n,s=Math.sin(k)*d+g*o,t=-Math.sin(l),u=Math.cos(l),v=Math.cos(l)*c-g*t,w=Math.sin(l)*c-g*u,x=Math.cos(l)*d-g*t,y=Math.sin(l)*d-g*u,z=(c+d)/2,A=(k+l)/2,B=Math.cos(A)*z,C=Math.sin(A)*z,D=Math.cos(A)*c,E=Math.cos(A)*d,F=Math.sin(A)*c,G=Math.sin(A)*d,H=Math.cos(A)*(d+3),I=Math.sin(A)*(d+j.buttons_label_font_size)+j.buttons_label_font_size/2;this.buttons_layer.activate();var J=new paper.Path;J.add([p,q]),J.arcTo([D,F],[v,w]),J.lineTo([x,y]),J.arcTo([E,G],[r,s]),J.fillColor=j.buttons_background,J.opacity=.5,J.closed=!0,J.__representation=b;var K=new paper.PointText(H,I);K.characterStyle={fontSize:j.buttons_label_font_size,fillColor:j.buttons_label_color},K.paragraphStyle.justification=H>2?"left":-2>H?"right":"center",K.visible=!1;var L=!1,M=new paper.Point(-200,-200),N=new paper.Group([J,K]),O=N.position,P=new paper.Point([B,C]),Q=new paper.Point(0,0);K.content=i,N.pivot=N.bounds.center,N.visible=!1,N.position=M;var R={show:function(){L=!0,N.position=Q.add(O),N.visible=!0},moveTo:function(a){Q=a,L&&(N.position=a.add(O))},hide:function(){L=!1,N.visible=!1,N.position=M},select:function(){J.opacity=.8,K.visible=!0},unselect:function(){J.opacity=.5,K.visible=!1},destroy:function(){N.remove()}},S=function(){var a=new paper.Raster(m);a.position=P.add(N.position).subtract(O),a.locked=!0,N.addChild(a)};return m.width?S():a(m).on("load",S),R},addToBundles:function(a){var c=b(this.bundles).find(function(b){return b.from===a.from_representation&&b.to===a.to_representation||b.from===a.to_representation&&b.to===a.from_representation});return"undefined"!=typeof c?c.edges.push(a):(c={from:a.from_representation,to:a.to_representation,edges:[a],getPosition:function(a){var c=a.from_representation===this.from?1:-1;return c*(b(this.edges).indexOf(a)-(this.edges.length-1)/2)}},this.bundles.push(c)),c},isEditable:function(){return this.renkan.options.editor_mode&&!this.renkan.read_only},onStatusChange:function(){var a=this.$.find(".Rk-Save-Button"),b=a.find(".Rk-TopBar-Tooltip-Contents");this.renkan.read_only?(a.removeClass("disabled Rk-Save-Online").addClass("Rk-Save-ReadOnly"),b.text(this.renkan.translate("Connection lost"))):this.renkan.options.manual_save?(a.removeClass("Rk-Save-ReadOnly Rk-Save-Online"),b.text(this.renkan.translate("Save Project"))):(a.removeClass("disabled Rk-Save-ReadOnly").addClass("Rk-Save-Online"),b.text(this.renkan.translate("Auto-save enabled"))),this.redrawUsers()},setScale:function(a,b){a/this.initialScale>f._MIN_SCALE&&a/this.initialScale1){var c=b.map(function(a){return a.get("position").x}),d=b.map(function(a){return a.get("position").y}),e=Math.min.apply(Math,c),f=Math.min.apply(Math,d),g=Math.max.apply(Math,c),h=Math.max.apply(Math,d),i=Math.min((paper.view.size.width-2*this.renkan.options.autoscale_padding)/(g-e),(paper.view.size.height-2*this.renkan.options.autoscale_padding)/(h-f));this.initialScale=i,"undefined"!=typeof a&&parseFloat(a.zoom_level)>0&&parseFloat(a.offset.x)>0&&parseFloat(a.offset.y)>0?this.setScale(parseFloat(a.zoom_level),new paper.Point(parseFloat(a.offset.x),parseFloat(a.offset.y))):this.setScale(i,paper.view.center.subtract(new paper.Point([(g+e)/2,(h+f)/2]).multiply(i)))}1===b.length&&this.setScale(1,paper.view.center.subtract(new paper.Point([b.at(0).get("position").x,b.at(0).get("position").y])))},redrawMiniframe:function(){var a=this.toMinimapCoords(this.toModelCoords(new paper.Point([0,0]))),b=this.toMinimapCoords(this.toModelCoords(paper.view.bounds.bottomRight));this.minimap.miniframe.fitBounds(a,b)},rescaleMinimap:function(){var a=this.renkan.project.get("nodes");if(a.length>1){var b=a.map(function(a){return a.get("position").x}),c=a.map(function(a){return a.get("position").y}),d=Math.min.apply(Math,b),e=Math.min.apply(Math,c),f=Math.max.apply(Math,b),g=Math.max.apply(Math,c),h=Math.min(.8*this.scale*this.renkan.options.minimap_width/paper.view.bounds.width,.8*this.scale*this.renkan.options.minimap_height/paper.view.bounds.height,(this.renkan.options.minimap_width-2*this.renkan.options.minimap_padding)/(f-d),(this.renkan.options.minimap_height-2*this.renkan.options.minimap_padding)/(g-e));this.minimap.offset=this.minimap.size.divide(2).subtract(new paper.Point([(f+d)/2,(g+e)/2]).multiply(h)),this.minimap.scale=h}1===a.length&&(this.minimap.scale=.1,this.minimap.offset=this.minimap.size.divide(2).subtract(new paper.Point([a.at(0).get("position").x,a.at(0).get("position").y]).multiply(this.minimap.scale))),this.redraw()},toPaperCoords:function(a){return a.multiply(this.scale).add(this.offset)},toMinimapCoords:function(a){return a.multiply(this.minimap.scale).add(this.minimap.offset).add(this.minimap.topleft)},toModelCoords:function(a){return a.subtract(this.offset).divide(this.scale)},addRepresentation:function(a,b){var c=d.getRenderer()[a],e=new c(this,b);return this.representations.push(e),e},addRepresentations:function(a,b){var c=this;b.forEach(function(b){c.addRepresentation(a,b)})},userTemplate:b.template('
                                • <%=name%>
                                • '),redrawUsers:function(){if(this.renkan.options.show_user_list){var b=[].concat((this.renkan.project.current_user_list||{}).models||[],(this.renkan.project.get("users")||{}).models||[]),c="",d=this.$.find(".Rk-Users"),e=d.find(".Rk-CurrentUser-Name"),f=d.find(".Rk-Edit-ColorPicker li"),g=d.find(".Rk-CurrentUser-Color"),h=this;e.off("click").text(this.renkan.translate("")),f.off("mouseleave click"),b.forEach(function(b){b.get("_id")===h.renkan.current_user?(e.text(b.get("title")),g.css("background",b.get("color")),h.isEditable()&&(h.renkan.options.user_name_editable&&e.click(function(){var c=a(this),d=a("").val(b.get("title")).blur(function(){b.set("title",a(this).val()),h.redrawUsers(),h.redraw()});c.empty().html(d),d.select()}),h.renkan.options.user_color_editable&&f.click(function(c){c.preventDefault(),h.isEditable()&&b.set("color",a(this).attr("data-color")),a(this).parent().hide()}).mouseleave(function(){g.css("background",b.get("color"))}))):c+=h.userTemplate({name:b.get("title"),background:b.get("color")})}),d.find(".Rk-UserList").html(c)}},removeRepresentation:function(a){a.destroy(),this.representations=b.reject(this.representations,function(b){return b===a})},getRepresentationByModel:function(a){return a?b.find(this.representations,function(b){return b.model===a}):void 0},removeRepresentationsOfType:function(a){var c=b.filter(this.representations,function(b){return b.type===a}),d=this;b.each(c,function(a){d.removeRepresentation(a)})},highlightModel:function(a){var b=this.getRepresentationByModel(a);b&&b.highlight()},unhighlightAll:function(){b.each(this.representations,function(a){a.unhighlight()})},unselectAll:function(){b.each(this.representations,function(a){a.unselect()})},redraw:function(){this.redrawActive&&(b.each(this.representations,function(a){a.redraw({dontRedrawEdges:!0})}),this.minimap&&this.redrawMiniframe(),paper.view.draw())},addTempEdge:function(a,b){var c=this.addRepresentation("TempEdge",null);c.end_pos=b,c.from_representation=a,c.redraw(),this.click_target=c},addHiddenNode:function(a){this.hideNode(a),this.hiddenNodes.push(a.id)},hideNode:function(a){var b=this;"undefined"!=typeof b.getRepresentationByModel(a)&&b.getRepresentationByModel(a).hide()},hideNodes:function(){var a=this;this.hiddenNodes.forEach(function(b,c){var d=a.renkan.project.get("nodes").get(b);return"undefined"!=typeof d?a.hideNode(a.renkan.project.get("nodes").get(b)):void a.hiddenNodes.splice(c,1)}),paper.view.draw()},showNodes:function(a){var b=this;this.hiddenNodes.forEach(function(c){b.getRepresentationByModel(b.renkan.project.get("nodes").get(c)).show(a)}),a||(this.hiddenNodes=[]),paper.view.draw()},findTarget:function(a){if(a&&"undefined"!=typeof a.item.__representation){var b=a.item.__representation;this.selected_target!==a.item.__representation&&(this.selected_target&&this.selected_target.unselect(b),b.select(this.selected_target),this.selected_target=b)}else this.selected_target&&this.selected_target.unselect(),this.selected_target=null},paperShift:function(a){this.offset=this.offset.add(a),this.redraw()},onMouseMove:function(a){var b=this.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]),d=c.subtract(this.last_point);this.last_point=c,!this.is_dragging&&this.mouse_down&&d.length>f._MIN_DRAG_DISTANCE&&(this.is_dragging=!0);var e=paper.project.hitTest(c);this.is_dragging?this.click_target&&"function"==typeof this.click_target.paperShift?this.click_target.paperShift(d):this.paperShift(d):this.findTarget(e),paper.view.draw()},onMouseDown:function(b,c){var d=this.canvas_$.offset(),e=new paper.Point([b.pageX-d.left,b.pageY-d.top]);if(this.last_point=e,this.mouse_down=!0,!this.click_target||"Temp-edge"!==this.click_target.type){this.removeRepresentationsOfType("editor"),this.is_dragging=!1;var g=paper.project.hitTest(e);if(g&&"undefined"!=typeof g.item.__representation)this.click_target=g.item.__representation,this.click_target.mousedown(b,c);else if(this.click_target=null,this.isEditable()&&this.click_mode===f._CLICKMODE_ADDNODE){var h=this.toModelCoords(e),i={id:f.getUID("node"),created_by:this.renkan.current_user,position:{x:h.x,y:h.y}};_node=this.renkan.project.addNode(i),this.getRepresentationByModel(_node).openEditor()}}this.click_mode&&(this.isEditable()&&this.click_mode===f._CLICKMODE_STARTEDGE&&this.click_target&&"Node"===this.click_target.type?(this.removeRepresentationsOfType("editor"),this.addTempEdge(this.click_target,e),this.click_mode=f._CLICKMODE_ENDEDGE,this.notif_$.fadeOut(function(){a(this).html(this.renkan.translate("Click on a second node to complete the edge")).fadeIn()})):(this.notif_$.hide(),this.click_mode=!1)),paper.view.draw()},onMouseUp:function(a,b){if(this.mouse_down=!1,this.click_target){var c=this.canvas_$.offset();this.click_target.mouseup({point:new paper.Point([a.pageX-c.left,a.pageY-c.top])},b)}else this.click_target=null,this.is_dragging=!1,b&&this.unselectAll();paper.view.draw()},onScroll:function(a,b){if(this.totalScroll+=b,Math.abs(this.totalScroll)>=1){var c=this.canvas_$.offset(),d=new paper.Point([a.pageX-c.left,a.pageY-c.top]).subtract(this.offset).multiply(Math.SQRT2-1);this.totalScroll>0?this.setScale(this.scale*Math.SQRT2,this.offset.subtract(d)):this.setScale(this.scale*Math.SQRT1_2,this.offset.add(d.divide(Math.SQRT2))),this.totalScroll=0}},onDoubleClick:function(a){var b=this.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]),d=paper.project.hitTest(c);if(!this.isEditable())return void(d&&"undefined"!=typeof d.item.__representation&&d.item.__representation.model.get("uri")&&window.open(d.item.__representation.model.get("uri"),"_blank"));if(this.isEditable()&&(!d||"undefined"==typeof d.item.__representation)){var e=this.toModelCoords(c),g={id:f.getUID("node"),created_by:this.renkan.current_user,position:{x:e.x,y:e.y}},h=this.renkan.project.addNode(g);this.getRepresentationByModel(h).openEditor()}paper.view.draw()},defaultDropHandler:function(b){var c={},d="";switch(b["text/x-iri-specific-site"]){case"twitter":d=a("
                                  ").html(b["text/x-iri-selected-html"]); -var e=d.find(".tweet");c.title=this.renkan.translate("Tweet by ")+e.attr("data-name"),c.uri="http://twitter.com/"+e.attr("data-screen-name")+"/status/"+e.attr("data-tweet-id"),c.image=e.find(".avatar").attr("src"),c.description=e.find(".js-tweet-text:first").text();break;case"google":d=a("
                                  ").html(b["text/x-iri-selected-html"]),c.title=d.find("h3:first").text().trim(),c.uri=d.find("h3 a").attr("href"),c.description=d.find(".st:first").text().trim();break;default:b["text/x-iri-source-uri"]&&(c.uri=b["text/x-iri-source-uri"])}if((b["text/plain"]||b["text/x-iri-selected-text"])&&(c.description=(b["text/plain"]||b["text/x-iri-selected-text"]).replace(/[\s\n]+/gm," ").trim()),b["text/html"]||b["text/x-iri-selected-html"]){d=a("
                                  ").html(b["text/html"]||b["text/x-iri-selected-html"]);var f=d.find("image");f.length&&(c.image=f.attr("xlink:href"));var g=d.find("path");g.length&&(c.clipPath=g.attr("d"));var h=d.find("img");h.length&&(c.image=h[0].src);var i=d.find("a");i.length&&(c.uri=i[0].href),c.title=d.find("[title]").attr("title")||c.title,c.description=d.text().replace(/[\s\n]+/gm," ").trim()}b["text/uri-list"]&&(c.uri=b["text/uri-list"]),b["text/x-moz-url"]&&!c.title&&(c.title=(b["text/x-moz-url"].split("\n")[1]||"").trim(),c.title===c.uri&&(c.title=!1)),b["text/x-iri-source-title"]&&!c.title&&(c.title=b["text/x-iri-source-title"]),(b["text/html"]||b["text/x-iri-selected-html"])&&(d=a("
                                  ").html(b["text/html"]||b["text/x-iri-selected-html"]),c.image=d.find("[data-image]").attr("data-image")||c.image,c.uri=d.find("[data-uri]").attr("data-uri")||c.uri,c.title=d.find("[data-title]").attr("data-title")||c.title,c.description=d.find("[data-description]").attr("data-description")||c.description,c.clipPath=d.find("[data-clip-path]").attr("data-clip-path")||c.clipPath),c.title||(c.title=this.renkan.translate("Dragged resource"));for(var j=["title","description","uri","image"],k=0;k0&&(f-=this.renkan.$.find(".Rk-Bins").width()),paper.view.viewSize=new paper.Size([f,g])}else{for(a=0;a

                                • ';return __p},this.renkanJST["templates/edgeeditor.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+='

                                  \n ×'+__e(renkan.translate("Edit Edge"))+"\n

                                  \n

                                  \n \n \n

                                  \n',options.show_edge_editor_uri&&(__p+="\n

                                  \n \n \n \n

                                  \n ',options.properties.length&&(__p+="\n

                                  \n \n \n

                                  \n")),__p+="\n",options.show_edge_editor_style&&(__p+='\n
                                  \n ',options.show_edge_editor_style_color&&(__p+='\n
                                  \n '+__e(renkan.translate("Edge color:"))+'\n
                                  \n \n \n \n '+(null==(__t=renkan.colorPicker)?"":__t)+'\n '+__e(renkan.translate("Choose color"))+"\n
                                  \n
                                  \n "),__p+="\n ",options.show_edge_editor_style_dash&&(__p+='\n
                                  \n '+__e(renkan.translate("Dash:"))+'\n \n
                                  \n "),__p+="\n ",options.show_edge_editor_style_thickness&&(__p+='\n
                                  \n '+__e(renkan.translate("Thickness:"))+'\n -\n '+__e(edge.thickness)+'\n +\n
                                  \n '),__p+="\n ",options.show_edge_editor_style_arrow&&(__p+='\n
                                  \n '+__e(renkan.translate("Arrow:"))+'\n \n
                                  \n "),__p+="\n
                                  \n"),__p+="\n",options.show_edge_editor_direction&&(__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+='

                                  \n ×\n ',options.show_edge_tooltip_color&&(__p+='\n \n '),__p+='\n \n ',edge.uri&&(__p+='\n \n '),__p+="\n "+__e(edge.title)+"\n ",edge.uri&&(__p+=" "),__p+="\n \n

                                  \n",options.show_edge_tooltip_uri&&edge.uri&&(__p+='\n

                                  \n '+__e(edge.short_uri)+"\n

                                  \n"),__p+="\n

                                  "+(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+='
                                • \n\n \n

                                  '+(null==(__t=htitle)?"":__t)+"

                                  \n

                                  "+(null==(__t=hdescription)?"":__t)+"

                                  \n

                                  Start: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'

                                  \n
                                  \n
                                • \n';return __p},this.renkanJST["templates/ldtjson-bin/segmenttemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
                                • \n\n \n

                                  '+(null==(__t=htitle)?"":__t)+"

                                  \n

                                  "+(null==(__t=hdescription)?"":__t)+"

                                  \n

                                  Start: "+(null==(__t=start)?"":__t)+", End: "+(null==(__t=end)?"":__t)+", Duration: "+(null==(__t=duration)?"":__t)+'

                                  \n
                                  \n
                                • \n';return __p},this.renkanJST["templates/ldtjson-bin/tagtemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
                                • \n\n \n

                                  '+(null==(__t=htitle)?"":__t)+'

                                  \n
                                  \n
                                • \n';return __p},this.renkanJST["templates/list-bin.html"]=function(obj){obj||(obj={});{var __t,__p="",__e=_.escape;Array.prototype.join}with(obj)__p+='
                                • \n'),__p+='\n

                                  \n ',url&&(__p+='\n \n '),__p+="\n "+(null==(__t=htitle)?"":__t)+"\n ",url&&(__p+=""),__p+="\n

                                  \n ",description&&(__p+='\n

                                  '+(null==(__t=hdescription)?"":__t)+"

                                  \n "),__p+="\n ",image&&(__p+='\n
                                  \n '),__p+="\n
                                • \n";return __p},this.renkanJST["templates/main.html"]=function(obj){obj||(obj={});{var __p="",__e=_.escape;Array.prototype.join}with(obj)options.show_bins&&(__p+='\n
                                  \n
                                  \n

                                  '+__e(translate("Select contents:"))+'

                                  \n
                                  \n \n
                                  \n
                                  \n
                                    \n
                                    \n \n
                                    \n
                                    \n \n \n
                                    \n
                                      \n
                                      \n'),__p+=" ",options.show_editor&&(__p+='\n
                                      \n ×'+__e(renkan.translate("Edit Node"))+"\n\n

                                      \n \n \n

                                      \n',options.show_node_editor_uri&&(__p+="\n

                                      \n \n \n \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

                                      '+(null==(__t=node.description)?"":__t)+"
                                      \n ":'\n \n ",__p+="\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 ',options.show_node_editor_style_color&&(__p+='\n
                                      \n \n '+__e(renkan.translate("Node color:"))+'\n
                                      \n \n \n \n '+(null==(__t=renkan.colorPicker)?"":__t)+'\n '+__e(renkan.translate("Choose color"))+"\n
                                      \n
                                      \n "),__p+="\n ",options.show_node_editor_style_dash&&(__p+='\n
                                      \n '+__e(renkan.translate("Dash:"))+'\n \n
                                      \n "),__p+="\n ",options.show_node_editor_style_thickness&&(__p+='\n
                                      \n '+__e(renkan.translate("Thickness:"))+'\n -\n '+__e(node.thickness)+'\n +\n
                                      \n '),__p+="\n
                                      \n"),__p+=" ",options.show_node_editor_image&&(__p+='\n
                                      \n
                                      \n \n ',node.clip_path&&(__p+='\n \n \n \n '),__p+="\n
                                      \n
                                      \n

                                      \n \n

                                      \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+='

                                      \n ×\n ',options.show_node_tooltip_color&&(__p+='\n \n '),__p+='\n \n ',node.uri&&(__p+='\n \n '),__p+="\n "+__e(node.title)+"\n ",node.uri&&(__p+=""),__p+="\n \n

                                      \n",node.uri&&options.show_node_tooltip_uri&&(__p+='\n

                                      \n '+__e(node.short_uri)+"\n

                                      \n"),__p+=" ",options.show_node_tooltip_description&&(__p+='\n

                                      '+(null==(__t=node.description)?"":__t)+"

                                      \n"),__p+=" ",node.image&&options.show_node_tooltip_image&&(__p+='\n \n'),__p+=" ",node.has_creator&&options.show_node_tooltip_creator&&(__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 ×\n ',options.show_node_tooltip_color&&(__p+='\n \n '),__p+='\n \n ',node.uri&&(__p+='\n \n '),__p+="\n "+__e(node.title)+"\n ",node.uri&&(__p+=""),__p+="\n \n

                                      \n",node.uri&&options.show_node_tooltip_uri&&(__p+='\n \n'),__p+='\n '+__e(renkan.translate("Link to the node"))+"\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
                                      \n ',__p+=options.editor_mode?'\n \n ':'\n

                                      \n '+__e(project.get("title")||translate("Untitled project"))+"\n

                                      \n ",__p+="\n ",options.show_user_list&&(__p+='\n
                                      \n
                                      \n ',options.show_user_color&&(__p+='\n
                                      \n \n ',options.user_color_editable&&(__p+='\n \n '),__p+="\n \n ",options.user_color_editable&&print(colorPicker),__p+="\n
                                      \n "),__p+='\n <unknown user>\n
                                      \n
                                        \n
                                        \n '),__p+="\n ",options.home_button_url&&(__p+='\n
                                        \n \n
                                        \n
                                        \n '+__e(translate(options.home_button_title))+"\n
                                        \n
                                        \n
                                        \n "),__p+="\n ",options.show_fullscreen_button&&(__p+='\n
                                        \n
                                        \n
                                        \n
                                        \n '+__e(translate("Full Screen"))+"\n
                                        \n
                                        \n
                                        \n "),__p+="\n ",options.editor_mode?(__p+="\n ",options.show_addnode_button&&(__p+='\n
                                        \n
                                        \n
                                        \n
                                        \n '+__e(translate("Add Node"))+"\n
                                        \n
                                        \n
                                        \n "),__p+="\n ",options.show_addedge_button&&(__p+='\n
                                        \n
                                        \n
                                        \n
                                        \n '+__e(translate("Add Edge"))+"\n
                                        \n
                                        \n
                                        \n "),__p+="\n ",options.show_export_button&&(__p+='\n
                                        \n
                                        \n
                                        \n
                                        \n '+__e(translate("Download Project"))+"\n
                                        \n
                                        \n
                                        \n "),__p+="\n ",options.show_save_button&&(__p+='\n
                                        \n
                                        \n
                                        \n
                                        \n
                                        \n
                                        \n '),__p+="\n ",options.show_open_button&&(__p+='\n
                                        \n
                                        \n
                                        \n
                                        \n '+__e(translate("Open Project"))+"\n
                                        \n
                                        \n
                                        \n "),__p+="\n ",options.show_bookmarklet&&(__p+='\n
                                        \n \n
                                        \n
                                        \n '+__e(translate("Renkan 'Drag-to-Add' bookmarklet"))+'\n
                                        \n
                                        \n
                                        \n
                                        \n '),__p+="\n "):(__p+="\n ",options.show_export_button&&(__p+='\n
                                        \n
                                        \n
                                        \n
                                        \n '+__e(translate("Download Project"))+'\n
                                        \n
                                        \n
                                        \n
                                        \n '),__p+="\n "),__p+="\n ",options.show_search_field&&(__p+='\n
                                        \n \n
                                        \n
                                        \n '),__p+="\n
                                        \n"),__p+='\n
                                        \n
                                        \n
                                        \n ',options.editor_mode&&options.save_view&&(__p+='\n
                                        \n '),__p+="\n ",options.save_view&&(__p+='\n
                                        \n ',options.hide_nodes&&(__p+='\n \n '),__p+=" \n "),__p+="\n
                                        \n "),__p+="\n \n\n";return __p},this.renkanJST["templates/search.html"]=function(obj){obj||(obj={});{var __t,__p="";_.escape}with(obj)__p+='
                                      • '+(null==(__t=title)?"":__t)+"
                                      • ";return __p},this.renkanJST["templates/wikipedia-bin/resulttemplate.html"]=function(obj){obj||(obj={});var __t,__p="",__e=_.escape;with(obj)__p+='
                                      • \n\n \n

                                        \n '+(null==(__t=htitle)?"":__t)+'\n

                                        \n

                                        '+(null==(__t=hdescription)?"":__t)+"

                                        \n
                                      • \n";return __p},function(a){"use strict";"object"!=typeof a.Rkns&&(a.Rkns={});var b=a.Rkns,c=b.$=a.jQuery,d=b._=a._;b.pickerColors=["#8f1919","#a80000","#d82626","#ff0000","#e87c7c","#ff6565","#f7d3d3","#fecccc","#8f5419","#a85400","#d87f26","#ff7f00","#e8b27c","#ffb265","#f7e5d3","#fee5cc","#8f8f19","#a8a800","#d8d826","#feff00","#e8e87c","#feff65","#f7f7d3","#fefecc","#198f19","#00a800","#26d826","#00ff00","#7ce87c","#65ff65","#d3f7d3","#ccfecc","#198f8f","#00a8a8","#26d8d8","#00feff","#7ce8e8","#65feff","#d3f7f7","#ccfefe","#19198f","#0000a8","#2626d8","#0000ff","#7c7ce8","#6565ff","#d3d3f7","#ccccfe","#8f198f","#a800a8","#d826d8","#ff00fe","#e87ce8","#ff65fe","#f7d3f7","#feccfe","#000000","#242424","#484848","#6d6d6d","#919191","#b6b6b6","#dadada","#ffffff"],b.__renkans=[];var e=b._BaseBin=function(a,c){if("undefined"!=typeof a){this.renkan=a,this.renkan.$.find(".Rk-Bin-Main").hide(),this.$=b.$("
                                      • ").addClass("Rk-Bin").appendTo(a.$.find(".Rk-Bin-List")),this.title_icon_$=b.$("").addClass("Rk-Bin-Title-Icon").appendTo(this.$);var d=this;b.$("").attr({href:"#",title:a.translate("Close bin")}).addClass("Rk-Bin-Close").html("×").appendTo(this.$).click(function(){return d.destroy(),a.$.find(".Rk-Bin-Main:visible").length||a.$.find(".Rk-Bin-Main:last").slideDown(),a.resizeBins(),!1}),b.$("").attr({href:"#",title:a.translate("Refresh bin")}).addClass("Rk-Bin-Refresh").appendTo(this.$).click(function(){return d.refresh(),!1}),this.count_$=b.$("
                                        ").addClass("Rk-Bin-Count").appendTo(this.$),this.title_$=b.$("

                                        ").addClass("Rk-Bin-Title").appendTo(this.$),this.main_$=b.$("
                                        ").addClass("Rk-Bin-Main").appendTo(this.$).html('

                                        '+a.translate("Loading, please wait")+"

                                        "),this.title_$.html(c.title||"(new bin)"),this.renkan.resizeBins(),c.auto_refresh&&window.setInterval(function(){d.refresh()},c.auto_refresh)}};e.prototype.destroy=function(){this.$.detach(),this.renkan.resizeBins()};var f=b.Renkan=function(a){var e=this;b.__renkans.push(this),this.options=d.defaults(a,b.defaults,{templates:d.defaults(a.templates,renkanJST)||renkanJST,node_editor_templates:d.defaults(a.node_editor_templates,b.defaults.node_editor_templates)}),this.template=renkanJST["templates/main.html"];var f={};if(d.each(this.options.node_editor_templates,function(a,b){f[b]=e.options.templates[a],delete e.options.templates[a]}),this.options.node_editor_templates=f,d.each(this.options.property_files,function(a){b.$.getJSON(a,function(a){e.options.properties=e.options.properties.concat(a)})}),this.read_only=this.options.read_only||!this.options.editor_mode,this.router=new b.Router,this.project=new b.Models.Project,this.dataloader=new b.DataLoader.Loader(this.project,this.options),this.setCurrentUser=function(a,b){this.project.addUser({_id:a,title:b}),this.current_user=a,this.renderer.redrawUsers()},"undefined"!=typeof this.options.user_id&&(this.current_user=this.options.user_id),this.$=b.$("#"+this.options.container),this.$.addClass("Rk-Main").html(this.template(this)),this.tabs=[],this.search_engines=[],this.current_user_list=new b.Models.UsersList,this.current_user_list.on("add remove",function(){this.renderer&&this.renderer.redrawUsers()}),this.colorPicker=function(){var a=renkanJST["templates/colorpicker.html"];return'
                                          '+b.pickerColors.map(function(b){return a({c:b})}).join("")+"
                                        "}(),this.options.show_editor&&(this.renderer=new b.Renderer.Scene(this)),this.options.search.length){var g=renkanJST["templates/search.html"],h=this.$.find(".Rk-Search-List"),i=this.$.find(".Rk-Web-Search-Input"),j=this.$.find(".Rk-Web-Search-Form");d.each(this.options.search,function(a){b[a.type]&&b[a.type].Search&&e.search_engines.push(new b[a.type].Search(e,a))}),h.html(d(this.search_engines).map(function(a,b){return g({key:b,title:a.getSearchTitle(),className:a.getBgClass()})}).join("")),h.find("li").click(function(){var a=b.$(this);e.setSearchEngine(a.attr("data-key")),j.submit()}),j.submit(function(){if(i.val()){var a=e.search_engine;a.search(i.val())}return!1}),this.$.find(".Rk-Search-Current").mouseenter(function(){h.slideDown()}),this.$.find(".Rk-Search-Select").mouseleave(function(){h.hide()}),this.setSearchEngine(0)}else this.$.find(".Rk-Web-Search-Form").detach();d.each(this.options.bins,function(a){b[a.type]&&b[a.type].Bin&&e.tabs.push(new b[a.type].Bin(e,a))});var k=!1;this.$.find(".Rk-Bins").on("click",".Rk-Bin-Title,.Rk-Bin-Title-Icon",function(){var a=b.$(this).siblings(".Rk-Bin-Main");a.is(":hidden")&&(e.$.find(".Rk-Bin-Main").slideUp(),a.slideDown())}),this.options.show_editor&&this.$.find(".Rk-Bins").on("mouseover",".Rk-Bin-Item",function(){var a=b.$(this);if(a&&c(a).attr("data-uri")){var f=e.project.get("nodes").where({uri:c(a).attr("data-uri")});d.each(f,function(a){e.renderer.highlightModel(a)})}}).mouseout(function(){e.renderer.unhighlightAll() +}).on("mousemove",".Rk-Bin-Item",function(){try{this.dragDrop()}catch(a){}}).on("touchstart",".Rk-Bin-Item",function(){k=!1}).on("touchmove",".Rk-Bin-Item",function(a){a.preventDefault();var b=a.originalEvent.changedTouches[0],c=e.renderer.canvas_$.offset(),d=e.renderer.canvas_$.width(),f=e.renderer.canvas_$.height();if(b.pageX>=c.left&&b.pageX=c.top&&b.pageY1?a:null);c.source!==l&&(l=c.source,d.each(e.tabs,function(a){a.render(c)}))}}),this.$.find(".Rk-Bins-Search-Form").submit(function(){return!1})};f.prototype.translate=function(a){return b.i18n[this.options.language]&&b.i18n[this.options.language][a]?b.i18n[this.options.language][a]:this.options.language.length>2&&b.i18n[this.options.language.substr(0,2)]&&b.i18n[this.options.language.substr(0,2)][a]?b.i18n[this.options.language.substr(0,2)][a]:a},f.prototype.onStatusChange=function(){this.renderer.onStatusChange()},f.prototype.setSearchEngine=function(a){this.search_engine=this.search_engines[a],this.$.find(".Rk-Search-Current").attr("class","Rk-Search-Current "+this.search_engine.getBgClass());for(var b=this.search_engine.getBgClass().split(" "),c="",d=0;da?"0"+a:a}var b=new Date,c=0,d=b.getUTCFullYear()+"-"+a(b.getUTCMonth()+1)+"-"+a(b.getUTCDate())+"-"+g();return function(a){for(var b=(++c).toString(16),e="undefined"==typeof a?"":a+"-";b.length<4;)b="0"+b;return e+d+"-"+b}}(),getFullURL:function(a){if("undefined"==typeof a||null==a)return"";if(/https?:\/\//.test(a))return a;var b=new Image;b.src=a;var c=b.src;return b.src=null,c},inherit:function(a,b){var c=function(){"function"==typeof b&&b.apply(this,Array.prototype.slice.call(arguments,0)),a.apply(this,Array.prototype.slice.call(arguments,0)),"function"!=typeof this._init||this._initialized||(this._init.apply(this,Array.prototype.slice.call(arguments,0)),this._initialized=!0)};return d.extend(c.prototype,a.prototype),c},regexpFromTextOrArray:function(){function a(a){function b(a){return function(b,c){a=a.replace(h[b],c)}}for(var e=a.toLowerCase().replace(g,""),i="",j=0;j"+a.translate("Drag items from this website, drop them in Renkan").replace(/ /g,"_")+"

                                        '.replace(/_/g,String.fromCharCode(32));b.appendChild(d);e=[{r:/https?:\\/\\/[^\\/]*twitter\\.com\\//,s:'.tweet',n:'twitter'},{r:/https?:\\/\\/[^\\/]*google\\.[^\\/]+\\//,s:'.g',n:'google'},{r:/https?:\\/\\/[^\\/]*lemonde\\.fr\\//,s:'[data-vr-contentbox]',n:'lemonde'}];f=false;e.forEach(function(g){if(g.r.test(c)){f=g;}});if(f){h=function(){Array.prototype.forEach.call(a.querySelectorAll(f.s),function(i){i[j]=true;k=i.style;k.borderWidth='2px';k.borderColor='#909';k.borderStyle='solid';k.backgroundColor='rgba(200,0,180,.1)';})};window.setInterval(h,500);h();};a.addEventListener('dragstart',function(k){l=k.dataTransfer;l.setData(m+'source-uri',c);l.setData(m+'source-title',a.title);n=k.target;if(f){o=n;while(!o.attributes[j]){o=o.parentNode;if(o==b){break;}}}if(f&&o.attributes[j]){p=o.cloneNode(true);l.setData(m+'specific-site',f.n)}else{q=a.getSelection();if(q.type==='Range'||!q.type){p=q.getRangeAt(0).cloneContents();}else{p=n.cloneNode();}}r=a.createElement('div');r.appendChild(p);l.setData('text/x-iri-selected-text',r.textContent.trim());l.setData('text/x-iri-selected-html',r.innerHTML);},false);})();"},shortenText:function(a,b){return a.length>b?a.substr(0,b)+"…":a},drawEditBox:function(a,b,c,d,e){e.css({width:a.tooltip_width-2*a.tooltip_padding});var f=e.outerHeight()+2*a.tooltip_padding,g=b.xpaper.view.size.height-a.tooltip_margin&&(j=Math.max(paper.view.size.height-a.tooltip_margin,b.y+a.tooltip_arrow_width/2)-f),jb;b++){var d=a.nodes[b];d.style=d.color?{color:d.color}:{}}if("undefined"!=typeof a.edges)for(b=0,c=a.edges.length;c>b;b++){var e=a.edges[b];e.style=e.color?{color:e.color}:{}}return a.schema_version="2",a}}};b.Loader=function(a,c){this.project=a,this.dataConverters=_.defaults(c.converters||{},b.converters)},b.Loader.prototype.convert=function(a){var b=this.project.getSchemaVersion(a),c=this.project.getSchemaVersion();if(b!==c){var d="from"+b+"to"+c;"function"==typeof this.dataConverters[d]&&(a=this.dataConverters[d](a))}return a},b.Loader.prototype.load=function(a){this.project.set(this.convert(a),{validate:!0})}}(window),function(a){"use strict";var b=a.Backbone,c=a.Rkns.Models={};c.getUID=function(a){var b="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(a){var b=16*Math.random()|0,c="x"===a?b:3&b|8;return c.toString(16)});return"undefined"!=typeof a?a.type+"-"+b:b};{var d=b.RelationalModel.extend({idAttribute:"_id",constructor:function(a){"undefined"!=typeof a&&(a._id=a._id||a.id||c.getUID(this),a.title=a.title||"",a.description=a.description||"",a.uri=a.uri||"","function"==typeof this.prepare&&(a=this.prepare(a))),b.RelationalModel.prototype.constructor.call(this,a)},validate:function(){return this.type?void 0:"object has no type"},addReference:function(a,b,c,d,e){var f=c.get(d);a[b]="undefined"==typeof f&&"undefined"!=typeof e?e:f}}),e=c.User=d.extend({type:"user",prepare:function(a){return a.color=a.color||"#666666",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),color:this.get("color")}}}),f=c.Node=d.extend({type:"node",relations:[{type:b.HasOne,key:"created_by",relatedModel:e}],prepare:function(a){var b=a.project;return this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),a.description=a.description||"",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),position:this.get("position"),image:this.get("image"),style:this.get("style"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null,size:this.get("size"),clip_path:this.get("clip_path"),shape:this.get("shape"),type:this.get("type")}}}),g=c.Edge=d.extend({type:"edge",relations:[{type:b.HasOne,key:"created_by",relatedModel:e},{type:b.HasOne,key:"from",relatedModel:f},{type:b.HasOne,key:"to",relatedModel:f}],prepare:function(a){var b=a.project;return this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),this.addReference(a,"from",b.get("nodes"),a.from),this.addReference(a,"to",b.get("nodes"),a.to),a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),from:this.get("from")?this.get("from").get("_id"):null,to:this.get("to")?this.get("to").get("_id"):null,style:this.get("style"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null}}}),h=c.View=d.extend({type:"view",relations:[{type:b.HasOne,key:"created_by",relatedModel:e}],prepare:function(a){var b=a.project;if(this.addReference(a,"created_by",b.get("users"),a.created_by,b.current_user),a.description=a.description||"","undefined"!=typeof a.offset){var c={};Array.isArray(a.offset)?(c.x=a.offset[0],c.y=a.offset.length>1?a.offset[1]:a.offset[0]):null!=a.offset.x&&(c.x=a.offset.x,c.y=a.offset.y),a.offset=c}return a},toJSON:function(){return{_id:this.get("_id"),zoom_level:this.get("zoom_level"),offset:this.get("offset"),title:this.get("title"),description:this.get("description"),created_by:this.get("created_by")?this.get("created_by").get("_id"):null,hidden_nodes:this.get("hidden_nodes")}}}),i=(c.Project=d.extend({schema_version:"2",type:"project",blacklist:["saveStatus","loadingStatus"],relations:[{type:b.HasMany,key:"users",relatedModel:e,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"nodes",relatedModel:f,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"edges",relatedModel:g,reverseRelation:{key:"project",includeInJSON:"_id"}},{type:b.HasMany,key:"views",relatedModel:h,reverseRelation:{key:"project",includeInJSON:"_id"}}],addUser:function(a,b){a.project=this;var c=e.findOrCreate(a);return this.get("users").push(c,b),c},addNode:function(a,b){a.project=this;var c=f.findOrCreate(a);return this.get("nodes").push(c,b),c},addEdge:function(a,b){a.project=this;var c=g.findOrCreate(a);return this.get("edges").push(c,b),c},addView:function(a,b){a.project=this;var c=h.findOrCreate(a);return this.get("views").push(c,b),c},removeNode:function(a){this.get("nodes").remove(a)},removeEdge:function(a){this.get("edges").remove(a)},validate:function(a){var b=this;_.each([].concat(a.users,a.nodes,a.edges,a.views),function(a){a&&(a.project=b)})},getSchemaVersion:function(a){var b=a;"undefined"==typeof b&&(b=this);var c=b.schema_version;return c?c:1},initialize:function(){var a=this;this.on("remove:nodes",function(b){a.get("edges").remove(a.get("edges").filter(function(a){return a.get("from")===b||a.get("to")===b}))})},toJSON:function(){var a=_.clone(this.attributes);for(var c in a)(a[c]instanceof b.Model||a[c]instanceof b.Collection||a[c]instanceof d)&&(a[c]=a[c].toJSON());return _.omit(a,this.blacklist)}}),c.RosterUser=b.Model.extend({type:"roster_user",idAttribute:"_id",constructor:function(a){"undefined"!=typeof a&&(a._id=a._id||a.id||c.getUID(this),a.title=a.title||"(untitled "+this.type+")",a.description=a.description||"",a.uri=a.uri||"",a.project=a.project||null,a.site_id=a.site_id||0,"function"==typeof this.prepare&&(a=this.prepare(a))),b.Model.prototype.constructor.call(this,a)},validate:function(){return this.type?void 0:"object has no type"},prepare:function(a){return a.color=a.color||"#666666",a},toJSON:function(){return{_id:this.get("_id"),title:this.get("title"),uri:this.get("uri"),description:this.get("description"),color:this.get("color"),project:null!=this.get("project")?this.get("project").get("id"):null,site_id:this.get("site_id")}}}));c.UsersList=b.Collection.extend({model:i})}}(window),Rkns.defaults={language:navigator.language||navigator.userLanguage||"en",container:"renkan",search:[],bins:[],static_url:"",popup_editor:!0,editor_panel:"editor-panel",show_bins:!0,properties:[],show_editor:!0,read_only:!1,editor_mode:!0,manual_save:!1,show_top_bar:!0,default_user_color:"#303030",size_bug_fix:!0,force_resize:!1,allow_double_click:!0,zoom_on_scroll:!0,element_delete_delay:0,autoscale_padding:50,resize:!0,show_zoom:!0,save_view:!0,default_view:!1,show_search_field:!0,show_user_list:!0,user_name_editable:!0,user_color_editable:!0,show_user_color:!0,show_save_button:!0,show_export_button:!0,show_open_button:!1,show_addnode_button:!0,show_addedge_button:!0,show_bookmarklet:!0,show_fullscreen_button:!0,home_button_url:!1,home_button_title:"Home",show_minimap:!0,minimap_width:160,minimap_height:120,minimap_padding:20,minimap_background_color:"#ffffff",minimap_border_color:"#cccccc",minimap_highlight_color:"#ffff00",minimap_highlight_weight:5,buttons_background:"#202020",buttons_label_color:"#c000c0",buttons_label_font_size:9,ghost_opacity:.3,default_dash_array:[4,5],show_node_circles:!0,clip_node_images:!0,node_images_fill_mode:!1,node_size_base:25,node_stroke_width:2,node_stroke_max_width:12,selected_node_stroke_width:4,selected_node_stroke_max_width:24,node_stroke_witdh_scale:5,node_fill_color:"#ffffff",highlighted_node_fill_color:"#ffff00",node_label_distance:5,node_label_max_length:60,label_untitled_nodes:"(untitled)",hide_nodes:!0,change_shapes:!0,change_types:!0,node_editor_templates:{"default":"templates/nodeeditor_readonly.html",video:"templates/nodeeditor_video.html"},edge_stroke_width:2,edge_stroke_max_width:12,selected_edge_stroke_width:4,selected_edge_stroke_max_width:24,edge_stroke_witdh_scale:5,edge_label_distance:0,edge_label_max_length:20,edge_arrow_length:18,edge_arrow_width:12,edge_arrow_max_width:32,edge_gap_in_bundles:12,label_untitled_edges:"",tooltip_width:275,tooltip_padding:10,tooltip_margin:15,tooltip_arrow_length:20,tooltip_arrow_width:40,tooltip_top_color:"#f0f0f0",tooltip_bottom_color:"#d0d0d0",tooltip_border_color:"#808080",tooltip_border_width:1,richtext_editor_config:{toolbarGroups:[{name:"basicstyles",groups:["basicstyles","cleanup"]},{name:"clipboard",groups:["clipboard","undo"]},"/",{name:"styles"}],removePlugins:"colorbutton,find,flash,font,forms,iframe,image,newpage,smiley,specialchar,stylescombo,templates"},show_node_editor_uri:!0,show_node_editor_description:!0,show_node_editor_description_richtext:!0,show_node_editor_size:!0,show_node_editor_style:!0,show_node_editor_style_color:!0,show_node_editor_style_dash:!0,show_node_editor_style_thickness:!0,show_node_editor_image:!0,show_node_editor_creator:!0,allow_image_upload:!0,uploaded_image_max_kb:500,show_node_tooltip_uri:!0,show_node_tooltip_description:!0,show_node_tooltip_color:!0,show_node_tooltip_image:!0,show_node_tooltip_creator:!0,show_edge_editor_uri:!0,show_edge_editor_style:!0,show_edge_editor_style_color:!0,show_edge_editor_style_dash:!0,show_edge_editor_style_thickness:!0,show_edge_editor_style_arrow:!0,show_edge_editor_direction:!0,show_edge_editor_nodes:!0,show_edge_editor_creator:!0,show_edge_tooltip_uri:!0,show_edge_tooltip_color:!0,show_edge_tooltip_nodes:!0,show_edge_tooltip_creator:!0},Rkns.i18n={fr:{"Edit Node":"Édition d’un nœud","Edit Edge":"Édition d’un lien","Title:":"Titre :","URI:":"URI :","Description:":"Description :","From:":"De :","To:":"Vers :",Image:"Image","Image URL:":"URL d'Image","Choose Image File:":"Choisir un fichier image","Full Screen":"Mode plein écran","Add Node":"Ajouter un nœud","Add Edge":"Ajouter un lien","Save Project":"Enregistrer le projet","Open Project":"Ouvrir un projet","Auto-save enabled":"Enregistrement automatique activé","Connection lost":"Connexion perdue","Created by:":"Créé par :","Zoom In":"Agrandir l’échelle","Zoom Out":"Rapetisser l’échelle",Edit:"Éditer",Remove:"Supprimer","Cancel deletion":"Annuler la suppression","Link to another node":"Créer un lien",Enlarge:"Agrandir",Shrink:"Rétrécir","Click on the background canvas to add a node":"Cliquer sur le fond du graphe pour rajouter un nœud","Click on a first node to start the edge":"Cliquer sur un premier nœud pour commencer le lien","Click on a second node to complete the edge":"Cliquer sur un second nœud pour terminer le lien",Wikipedia:"Wikipédia","Wikipedia in ":"Wikipédia en ",French:"Français",English:"Anglais",Japanese:"Japonais","Untitled project":"Projet sans titre","Lignes de Temps":"Lignes de Temps","Loading, please wait":"Chargement en cours, merci de patienter","Edge color:":"Couleur :","Dash:":"Point. :","Thickness:":"Epaisseur :","Arrow:":"Flèche :","Node color:":"Couleur :","Choose color":"Choisir une couleur","Change edge direction":"Changer le sens du lien","Do you really wish to remove node ":"Voulez-vous réellement supprimer le nœud ","Do you really wish to remove edge ":"Voulez-vous réellement supprimer le lien ","This file is not an image":"Ce fichier n'est pas une image","Image size must be under ":"L'image doit peser moins de ","Size:":"Taille :",KB:"ko","Choose from vocabulary:":"Choisir dans un vocabulaire :","SKOS Documentation properties":"SKOS: Propriétés documentaires","has note":"a pour note","has example":"a pour exemple","has definition":"a pour définition","SKOS Semantic relations":"SKOS: Relations sémantiques","has broader":"a pour concept plus large","has narrower":"a pour concept plus étroit","has related":"a pour concept apparenté","Dublin Core Metadata":"Métadonnées Dublin Core","has contributor":"a pour contributeur",covers:"couvre","created by":"créé par","has date":"a pour date","published by":"édité par","has source":"a pour source","has subject":"a pour sujet","Dragged resource":"Ressource glisée-déposée","Search the Web":"Rechercher en ligne","Search in Bins":"Rechercher dans les chutiers","Close bin":"Fermer le chutier","Refresh bin":"Rafraîchir le chutier","(untitled)":"(sans titre)","Select contents:":"Sélectionner des contenus :","Drag items from this website, drop them in Renkan":"Glissez des éléments de ce site web vers Renkan","Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.":"Glissez ce bouton vers votre barre de favoris. Ensuite, depuis un site tiers, cliquez dessus pour activer 'Drag-to-Add' puis glissez des éléments de ce site vers Renkan","Shapes available":"Formes disponibles",Circle:"Cercle",Square:"Carré",Diamond:"Losange",Hexagone:"Hexagone",Ellipse:"Ellipse",Star:"Étoile",Cloud:"Nuage",Triangle:"Triangle","Zoom Fit":"Ajuster le Zoom","Download Project":"Télécharger le projet","Save view":"Sauver la vue","View saved view":"Restaurer la Vue","Renkan 'Drag-to-Add' bookmarklet":"Renkan 'Deplacer-Pour-Ajouter' Signet","(unknown user)":"(non authentifié)","":"","Search in graph":"Rechercher dans carte","Search in ":"Chercher dans "}},Rkns.jsonIO=function(a,b){var c=a.project;"undefined"==typeof b.http_method&&(b.http_method="PUT");var d=function(){a.renderer.redrawActive=!1,c.set({loadingStatus:!0}),Rkns.$.getJSON(b.url,function(b){a.dataloader.load(b),c.set({loadingStatus:!1}),c.set({saveStatus:0}),a.renderer.redrawActive=!0,a.renderer.fixSize()})},e=function(){c.set({saveStatus:2});var d=c.toJSON();a.read_only||Rkns.$.ajax({type:b.http_method,url:b.url,contentType:"application/json",data:JSON.stringify(d),success:function(){c.set({saveStatus:0})}})},f=Rkns._.throttle(function(){setTimeout(e,100)},1e3);c.on("add:nodes add:edges add:users add:views",function(a){a.on("change remove",function(){f()}),f()}),c.on("change",function(){1===c.changedAttributes.length&&c.hasChanged("saveStatus")||f()}),d()},Rkns.jsonIOSaveOnClick=function(a,b){var c=a.project,d=!1,e=function(){return"Project not saved"};"undefined"==typeof b.http_method&&(b.http_method="POST");var f=function(){var d={},e=/id=([^&#?=]+)/,f=document.location.hash.match(e);f&&(d.id=f[1]),Rkns.$.ajax({url:b.url,data:d,beforeSend:function(){c.set({loadingStatus:!0})},success:function(b){a.dataloader.load(b),c.set({loadingStatus:!1}),c.set({saveStatus:0}),a.renderer.autoScale()}})},g=function(){c.set("saved_at",new Date);var a=c.toJSON();Rkns.$.ajax({type:b.http_method,url:b.url,contentType:"application/json",data:JSON.stringify(a),beforeSend:function(){c.set({saveStatus:2})},success:function(){$(window).off("beforeunload",e),d=!1,c.set({saveStatus:0})}})},h=function(){c.set({saveStatus:1});var a=c.get("title");a&&c.get("nodes").length?$(".Rk-Save-Button").removeClass("disabled"):$(".Rk-Save-Button").addClass("disabled"),a&&$(".Rk-PadTitle").css("border-color","#333333"),d||(d=!0,$(window).on("beforeunload",e))};f(),c.on("add:nodes add:edges add:users change",function(a){a.on("change remove",function(a){1===a.changedAttributes.length&&a.hasChanged("saveStatus")||h()}),1===c.changedAttributes.length&&c.hasChanged("saveStatus")||h()}),a.renderer.save=function(){$(".Rk-Save-Button").hasClass("disabled")?c.get("title")||$(".Rk-PadTitle").css("border-color","#ff0000"):g()}},function(a){"use strict";var b=a._,c=a.Ldt={},d=(c.Bin=function(a,b){if(b.ldt_type){var d=c[b.ldt_type+"Bin"];if(d)return new d(a,b)}console.error("No such LDT Bin Type")},c.ProjectBin=a.Utils.inherit(a._BaseBin));d.prototype.tagTemplate=renkanJST["templates/ldtjson-bin/tagtemplate.html"],d.prototype.annotationTemplate=renkanJST["templates/ldtjson-bin/annotationtemplate.html"],d.prototype._init=function(a,b){this.renkan=a,this.proj_id=b.project_id,this.ldt_platform=b.ldt_platform||"http://ldt.iri.centrepompidou.fr/",this.title_$.html(b.title),this.title_icon_$.addClass("Rk-Ldt-Title-Icon"),this.refresh()},d.prototype.render=function(c){function d(a){var c=b(a).escape();return f.isempty?c:f.replace(c,"$1")}function e(a){function b(a){for(var b=a.toString();b.length<2;)b="0"+b;return b}var c=Math.abs(Math.floor(a/1e3)),d=Math.floor(c/3600),e=Math.floor(c/60)%60,f=c%60,g="";return d&&(g+=b(d)+":"),g+=b(e)+":"+b(f)}var f=c||a.Utils.regexpFromTextOrArray(),g="
                                      • Tags

                                      • ",h=this.data.meta["dc:title"],i=this,j=0;i.title_$.text('LDT Project: "'+h+'"'),b.map(i.data.tags,function(a){var b=a.meta["dc:title"];(f.isempty||f.test(b))&&(j++,g+=i.tagTemplate({ldt_platform:i.ldt_platform,title:b,htitle:d(b),encodedtitle:encodeURIComponent(b),static_url:i.renkan.options.static_url}))}),g+="
                                      • Annotations

                                      • ",b.map(i.data.annotations,function(a){var b=a.content.description,c=a.content.title.replace(b,"");if(f.isempty||f.test(c)||f.test(b)){j++;var h=a.end-a.begin,k=a.content&&a.content.img&&a.content.img.src?a.content.img.src:h?i.renkan.options.static_url+"img/ldt-segment.png":i.renkan.options.static_url+"img/ldt-point.png";g+=i.annotationTemplate({ldt_platform:i.ldt_platform,title:c,htitle:d(c),description:b,hdescription:d(b),start:e(a.begin),end:e(a.end),duration:e(h),mediaid:a.media,annotationid:a.id,image:k,static_url:i.renkan.options.static_url})}}),this.main_$.html(g),!f.isempty&&j?this.count_$.text(j).show():this.count_$.hide(),f.isempty||j?this.$.show():this.$.hide(),this.renkan.resizeBins()},d.prototype.refresh=function(){var b=this;a.$.ajax({url:this.ldt_platform+"ldtplatform/ldt/cljson/id/"+this.proj_id,dataType:"jsonp",success:function(a){b.data=a,b.render()}})};var e=c.Search=function(a,b){this.renkan=a,this.lang=b.lang||"en"};e.prototype.getBgClass=function(){return"Rk-Ldt-Icon"},e.prototype.getSearchTitle=function(){return this.renkan.translate("Lignes de Temps")},e.prototype.search=function(a){this.renkan.tabs.push(new f(this.renkan,{search:a}))};var f=c.ResultsBin=a.Utils.inherit(a._BaseBin);f.prototype.segmentTemplate=renkanJST["templates/ldtjson-bin/segmenttemplate.html"],f.prototype._init=function(a,b){this.renkan=a,this.ldt_platform=b.ldt_platform||"http://ldt.iri.centrepompidou.fr/",this.max_results=b.max_results||50,this.search=b.search,this.title_$.html('Lignes de Temps: "'+b.search+'"'),this.title_icon_$.addClass("Rk-Ldt-Title-Icon"),this.refresh()},f.prototype.render=function(c){function d(a){return g.replace(b(a).escape(),"$1")}function e(a){function b(a){for(var b=a.toString();b.length<2;)b="0"+b;return b}var c=Math.abs(Math.floor(a/1e3)),d=Math.floor(c/3600),e=Math.floor(c/60)%60,f=c%60,g="";return d&&(g+=b(d)+":"),g+=b(e)+":"+b(f)}if(this.data){var f=c||a.Utils.regexpFromTextOrArray(),g=f.isempty?a.Utils.regexpFromTextOrArray(this.search):f,h="",i=this,j=0;b.each(this.data.objects,function(a){var b=a["abstract"],c=a.title;if(f.isempty||f.test(c)||f.test(b)){j++;var g=a.duration,k=a.start_ts,l=+a.duration+k,m=g?i.renkan.options.static_url+"img/ldt-segment.png":i.renkan.options.static_url+"img/ldt-point.png";h+=i.segmentTemplate({ldt_platform:i.ldt_platform,title:c,htitle:d(c),description:b,hdescription:d(b),start:e(k),end:e(l),duration:e(g),mediaid:a.iri_id,annotationid:a.element_id,image:m})}}),this.main_$.html(h),!f.isempty&&j?this.count_$.text(j).show():this.count_$.hide(),f.isempty||j?this.$.show():this.$.hide(),this.renkan.resizeBins()}},f.prototype.refresh=function(){var b=this;a.$.ajax({url:this.ldt_platform+"ldtplatform/api/ldt/1.0/segments/search/",data:{format:"jsonp",q:this.search,limit:this.max_results},dataType:"jsonp",success:function(a){b.data=a,b.render()}})}}(window.Rkns),Rkns.ResourceList={},Rkns.ResourceList.Bin=Rkns.Utils.inherit(Rkns._BaseBin),Rkns.ResourceList.Bin.prototype.resultTemplate=renkanJST["templates/list-bin.html"],Rkns.ResourceList.Bin.prototype._init=function(a,b){this.renkan=a,this.title_$.html(b.title),b.list&&(this.data=b.list),this.refresh()},Rkns.ResourceList.Bin.prototype.render=function(a){function b(a){var b=_(a).escape();return c.isempty?b:c.replace(b,"$1")}var c=a||Rkns.Utils.regexpFromTextOrArray(),d="",e=this,f=0;Rkns._.each(this.data,function(a){var g;if("string"==typeof a)if(/^(https?:\/\/|www)/.test(a))g={url:a};else{g={title:a.replace(/[:,]?\s?(https?:\/\/|www)[\d\w\/.&?=#%-_]+\s?/,"").trim()};var h=a.match(/(https?:\/\/|www)[\d\w\/.&?=#%-_]+/);h&&(g.url=h[0]),g.title.length>80&&(g.description=g.title,g.title=g.title.replace(/^(.{30,60})\s.+$/,"$1…"))}else g=a;var i=g.title||(g.url||"").replace(/^https?:\/\/(www\.)?/,"").replace(/^(.{40}).+$/,"$1…"),j=g.url||"",k=g.description||"",l=g.image||"";j&&!/^https?:\/\//.test(j)&&(j="http://"+j),(c.isempty||c.test(i)||c.test(k))&&(f++,d+=e.resultTemplate({url:j,title:i,htitle:b(i),image:l,description:k,hdescription:b(k),static_url:e.renkan.options.static_url}))}),e.main_$.html(d),!c.isempty&&f?this.count_$.text(f).show():this.count_$.hide(),c.isempty||f?this.$.show():this.$.hide(),this.renkan.resizeBins()},Rkns.ResourceList.Bin.prototype.refresh=function(){this.data&&this.render()},Rkns.Wikipedia={},Rkns.Wikipedia.Search=function(a,b){this.renkan=a,this.lang=b.lang||"en"},Rkns.Wikipedia.Search.prototype.getBgClass=function(){return"Rk-Wikipedia-Search-Icon Rk-Wikipedia-Lang-"+this.lang},Rkns.Wikipedia.Search.prototype.getSearchTitle=function(){var a={fr:"French",en:"English",ja:"Japanese"};return a[this.lang]?this.renkan.translate("Wikipedia in ")+this.renkan.translate(a[this.lang]):this.renkan.translate("Wikipedia")+" ["+this.lang+"]"},Rkns.Wikipedia.Search.prototype.search=function(a){this.renkan.tabs.push(new Rkns.Wikipedia.Bin(this.renkan,{lang:this.lang,search:a}))},Rkns.Wikipedia.Bin=Rkns.Utils.inherit(Rkns._BaseBin),Rkns.Wikipedia.Bin.prototype.resultTemplate=renkanJST["templates/wikipedia-bin/resulttemplate.html"],Rkns.Wikipedia.Bin.prototype._init=function(a,b){this.renkan=a,this.search=b.search,this.lang=b.lang||"en",this.title_icon_$.addClass("Rk-Wikipedia-Title-Icon Rk-Wikipedia-Lang-"+this.lang),this.title_$.html(this.search).addClass("Rk-Wikipedia-Title"),this.refresh()},Rkns.Wikipedia.Bin.prototype.render=function(a){function b(a){return d.replace(_(a).escape(),"$1")}var c=a||Rkns.Utils.regexpFromTextOrArray(),d=c.isempty?Rkns.Utils.regexpFromTextOrArray(this.search):c,e="",f=this,g=0;Rkns._.each(this.data.query.search,function(a){var d=a.title,h="http://"+f.lang+".wikipedia.org/wiki/"+encodeURI(d.replace(/ /g,"_")),i=Rkns.$("
                                        ").html(a.snippet).text();(c.isempty||c.test(d)||c.test(i))&&(g++,e+=f.resultTemplate({url:h,title:d,htitle:b(d),description:i,hdescription:b(i),static_url:f.renkan.options.static_url}))}),f.main_$.html(e),!c.isempty&&g?this.count_$.text(g).show():this.count_$.hide(),c.isempty||g?this.$.show():this.$.hide(),this.renkan.resizeBins()},Rkns.Wikipedia.Bin.prototype.refresh=function(){var a=this;Rkns.$.ajax({url:"http://"+a.lang+".wikipedia.org/w/api.php?action=query&list=search&srsearch="+encodeURIComponent(this.search)+"&format=json",dataType:"jsonp",success:function(b){a.data=b,a.render()}})},define("renderer/baserepresentation",["jquery","underscore"],function(a,b){var c=function(a,c){if("undefined"!=typeof a&&(this.renderer=a,this.renkan=a.renkan,this.project=a.renkan.project,this.options=a.renkan.options,this.model=c,this.model)){var d=this;this._changeBinding=function(){d.redraw({change:!0})},this._removeBinding=function(){a.removeRepresentation(d),b.defer(function(){a.redraw()})},this._selectBinding=function(){d.select()},this._unselectBinding=function(){d.unselect()},this.model.on("change",this._changeBinding),this.model.on("remove",this._removeBinding),this.model.on("select",this._selectBinding),this.model.on("unselect",this._unselectBinding)}};return b(c.prototype).extend({_super:function(a){return c.prototype[a].apply(this,Array.prototype.slice.call(arguments,1))},redraw:function(){},moveTo:function(){},show:function(){return"BaseRepresentation.show"},hide:function(){},select:function(){this.model&&this.model.trigger("selected") +},unselect:function(){this.model&&this.model.trigger("unselected")},highlight:function(){},unhighlight:function(){},mousedown:function(){},mouseup:function(){this.model&&this.model.trigger("clicked")},destroy:function(){this.model&&(this.model.off("change",this._changeBinding),this.model.off("remove",this._removeBinding),this.model.off("select",this._selectBinding),this.model.off("unselect",this._unselectBinding))}}).value(),c}),define("requtils",[],function(){return{getUtils:function(){return window.Rkns.Utils},getRenderer:function(){return window.Rkns.Renderer}}}),define("renderer/basebutton",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({moveTo:function(a){this.sector.moveTo(a)},show:function(){this.sector.show()},hide:function(){this.sector.hide()},select:function(){this.sector.select()},unselect:function(a){this.sector.unselect(),(!a||a!==this.source_representation&&a.source_representation!==this.source_representation)&&this.source_representation.unselect()},destroy:function(){this.sector.destroy()}}).value(),f}),define("renderer/shapebuilder",[],function(){var a="M0,0c-0.1218516546,-0.0336420601 -0.2451649928,0.0048580836 -0.3302944641,0.0884969975c-0.0444763883,-0.0550844815 -0.1047003238,-0.0975985034 -0.1769360893,-0.1175406746c-0.1859066673,-0.0513257002 -0.3774236254,0.0626045858 -0.4272374613,0.2541588105c-0.0036603877,0.0140753132 -0.0046241235,0.028229722 -0.0065872453,0.042307536c-0.1674179627,-0.0179317735 -0.3276106855,0.0900599386 -0.3725537463,0.2628868425c-0.0445325077,0.1712456429 0.0395025693,0.3463497959 0.1905420475,0.4183458793c-0.0082101538,0.0183442886 -0.0158652506,0.0372432828 -0.0211098452,0.0574080693c-0.0498130336,0.1915540431 0.0608692569,0.3884647499 0.2467762814,0.4397904033c0.0910577256,0.0251434257 0.1830791813,0.0103792696 0.2594677475,-0.0334472349c0.042100113,0.0928009202 0.1205930075,0.1674914182 0.2240666796,0.1960572479c0.1476344161,0.0407610407 0.297446165,-0.0238077445 0.3783262342,-0.1475652419c0.0327623278,0.0238981846 0.0691792333,0.0436665447 0.1102008706,0.0549940004c0.1859065794,0.0513256592 0.3770116432,-0.0627203154 0.4268255671,-0.2542745401c0.0250490557,-0.0963230532 0.0095494076,-0.1938010889 -0.0356681889,-0.2736906101c0.0447507424,-0.0439678867 0.0797796014,-0.0996624318 0.0969425462,-0.1656617192c0.0498137481,-0.1915564561 -0.0608688118,-0.3884669813 -0.2467755669,-0.4397928163c-0.0195699622,-0.0054005426 -0.0391731675,-0.0084429542 -0.0586916488,-0.0102888295c0.0115683912,-0.1682147574 -0.0933564223,-0.3269222408 -0.2572937178,-0.3721841203z",b={circle:{getShape:function(){return new paper.Path.Circle([0,0],1)},getImageShape:function(a,b){return new paper.Path.Circle(a,b)}},rectangle:{getShape:function(){return new paper.Path.Rectangle([-2,-2],[2,2])},getImageShape:function(a,b){return new paper.Path.Rectangle([-b,-b],[2*b,2*b])}},ellipse:{getShape:function(){return new paper.Path.Ellipse(new paper.Rectangle([-2,-1],[2,1]))},getImageShape:function(a,b){return new paper.Path.Ellipse(new paper.Rectangle([-b,-b/2],[2*b,b]))}},polygon:{getShape:function(){return new paper.Path.RegularPolygon([0,0],6,1)},getImageShape:function(a,b){return new paper.Path.RegularPolygon(a,6,b)}},diamond:{getShape:function(){var a=new paper.Path.Rectangle([-Math.SQRT2,-Math.SQRT2],[Math.SQRT2,Math.SQRT2]);return a.rotate(45),a},getImageShape:function(a,b){var c=new paper.Path.Rectangle([-b*Math.SQRT2/2,-b*Math.SQRT2/2],[b*Math.SQRT2,b*Math.SQRT2]);return c.rotate(45),c}},star:{getShape:function(){return new paper.Path.Star([0,0],8,1,.7)},getImageShape:function(a,b){return new paper.Path.Star(a,8,1*b,.7*b)}},cloud:{getShape:function(){var b=new paper.Path(a);return b},getImageShape:function(b,c){var d=new paper.Path(a);return d.scale(c),d.translate(b),d}},triangle:{getShape:function(){return new paper.Path.RegularPolygon([0,0],3,1)},getImageShape:function(a,b){var c=new paper.Path.RegularPolygon([0,0],3,1);return c.scale(b),c.translate(a),c}},svg:function(a){return{getShape:function(){return new paper.Path(a)},getImageShape:function(){return new paper.Path}}}},c=function(a){return(null===a||"undefined"==typeof a)&&(a="circle"),"svg:"===a.substr(0,4)?b.svg(a.substr(4)):(a in b||(a="circle"),b[a])};return c.builders=b,c}),define("renderer/noderepr",["jquery","underscore","requtils","renderer/baserepresentation","renderer/shapebuilder"],function(a,b,c,d,e){var f=c.getUtils(),g=f.inherit(d);return b(g.prototype).extend({_init:function(){if(this.renderer.node_layer.activate(),this.type="Node",this.buildShape(),this.hidden=!1,this.ghost=!1,this.options.show_node_circles?(this.circle.strokeWidth=this.options.node_stroke_width,this.h_ratio=1):this.h_ratio=0,this.title=a('
                                        ').appendTo(this.renderer.labels_$),this.options.editor_mode){var b=c.getRenderer();this.normal_buttons=[new b.NodeEditButton(this.renderer,null),new b.NodeRemoveButton(this.renderer,null),new b.NodeLinkButton(this.renderer,null),new b.NodeEnlargeButton(this.renderer,null),new b.NodeShrinkButton(this.renderer,null)],this.options.hide_nodes&&this.normal_buttons.push(new b.NodeHideButton(this.renderer,null),new b.NodeShowButton(this.renderer,null)),this.pending_delete_buttons=[new b.NodeRevertButton(this.renderer,null)],this.all_buttons=this.normal_buttons.concat(this.pending_delete_buttons);for(var d=0;d$1')):this.title.text(h);var i=this._getStrokeWidth();this.title.css({left:this.paper_coords.x,top:this.paper_coords.y+this.circle_radius*this.h_ratio+this.options.node_label_distance+.5*i,opacity:g});var j=this.model.has("style")&&this.model.get("style").color||(this.model.get("created_by")||f._USER_PLACEHOLDER(this.renkan)).get("color"),k=this.model.has("style")&&this.model.get("style").dash?this.options.default_dash_array:null;this.circle.strokeWidth=i,this.circle.strokeColor=j,this.circle.dashArray=k;var l=this.paper_coords;this.all_buttons.forEach(function(a){a.moveTo(l)});var m=this.img;if(this.img=this.model.get("image"),this.img&&this.img!==m&&(this.showImage(),this.circle&&this.circle.sendToBack()),this.node_image&&!this.img&&(this.node_image.remove(),delete this.node_image),this.renderer.minimap){this.minimap_circle.fillColor=j;var n=this.renderer.toMinimapCoords(c),o=this.renderer.minimap.scale*d,p=new paper.Size([o,o]);this.minimap_circle.fitBounds(n.subtract(p),p.multiply(2))}if(!("undefined"!=typeof a&&"dontRedrawEdges"in a&&a.dontRedrawEdges)){var q=this;b.each(this.project.get("edges").filter(function(a){return a.get("to")===q.model||a.get("from")===q.model}),function(a){var b=q.renderer.getRepresentationByModel(a);b&&"undefined"!=typeof b.from_representation&&"undefined"!=typeof b.from_representation.paper_coords&&"undefined"!=typeof b.to_representation&&"undefined"!=typeof b.to_representation.paper_coords&&b.redraw()})}this.ghost?this.show(!0):this.hidden&&this.hide()},showImage:function(){var b=null;if("undefined"==typeof this.renderer.image_cache[this.img]?(b=new Image,this.renderer.image_cache[this.img]=b,b.src=this.img):b=this.renderer.image_cache[this.img],b.width){this.node_image&&this.node_image.remove(),this.renderer.node_layer.activate();var c=b.width,d=b.height,e=this.model.get("clip_path"),f="undefined"!=typeof e&&e,g=null,h=null,i=null;if(f){g=new paper.Path;var j=e.match(/[a-z][^a-z]+/gi)||[],k=[0,0],l=1/0,m=1/0,n=-1/0,o=-1/0,p=function(a,b){var e=a.slice(1).map(function(a,e){var f=parseFloat(a),g=e%2;return f=g?(f-.5)*d:(f-.5)*c,b&&(f+=k[g]),g?(m=Math.min(m,f),o=Math.max(o,f)):(l=Math.min(l,f),n=Math.max(n,f)),f});return k=e.slice(-2),e};j.forEach(function(a){var b=a.match(/([a-z]|[0-9.-]+)/gi)||[""];switch(b[0]){case"M":g.moveTo(p(b));break;case"m":g.moveTo(p(b,!0));break;case"L":g.lineTo(p(b));break;case"l":g.lineTo(p(b,!0));break;case"C":g.cubicCurveTo(p(b));break;case"c":g.cubicCurveTo(p(b,!0));break;case"Q":g.quadraticCurveTo(p(b));break;case"q":g.quadraticCurveTo(p(b,!0))}}),h=Math[this.options.node_images_fill_mode?"min":"max"](n-l,o-m)/2,i=new paper.Point((n+l)/2,(o+m)/2),this.options.show_node_circles||(this.h_ratio=(o-m)/(2*h))}else h=Math[this.options.node_images_fill_mode?"min":"max"](c,d)/2,i=new paper.Point(0,0),this.options.show_node_circles||(this.h_ratio=d/(2*h));var q=new paper.Raster(b);if(q.locked=!0,f&&(q=new paper.Group(g,q),q.opacity=.99,q.clipped=!0,g.__representation=this),this.options.clip_node_images){var r=this.shapeBuilder.getImageShape(i,h);q=new paper.Group(r,q),q.opacity=.99,q.clipped=!0,r.__representation=this}this.image_delta=i.divide(h),this.node_image=q,this.node_image.__representation=s,this.node_image.scale(this.circle_radius/h),this.node_image.position=this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius)),this.node_image.insertAbove(this.circle)}else{var s=this;a(b).on("load",function(){s.showImage()})}},paperShift:function(a){this.options.editor_mode?this.renkan.read_only||(this.is_dragging=!0,this.paper_coords=this.paper_coords.add(a),this.redraw()):this.renderer.paperShift(a)},openEditor:function(){this.renderer.removeRepresentationsOfType("editor");var a=this.renderer.addRepresentation("NodeEditor",null);a.source_representation=this,a.draw()},select:function(){this.selected=!0,this.circle.strokeWidth=this._getSelectedStrokeWidth(),this.renderer.isEditable()&&!this.hidden&&this.active_buttons.forEach(function(a){a.show()});var b=this.model.get("uri");b&&a(".Rk-Bin-Item").each(function(){var c=a(this);c.attr("data-uri")===b&&c.addClass("selected")}),this.options.editor_mode||this.openEditor(),this.renderer.minimap&&(this.minimap_circle.strokeWidth=this.options.minimap_highlight_weight,this.minimap_circle.strokeColor=this.options.minimap_highlight_color),this.hidden?this.show(!0):this.showNeighbors(!0),this._super("select")},hideButtons:function(){this.all_buttons.forEach(function(a){a.hide()}),delete this.buttonTimeout},unselect:function(b){if(!b||b.source_representation!==this){this.selected=!1;var c=this;this.buttons_timeout=setTimeout(function(){c.hideButtons()},200),this.circle.strokeWidth=this._getStrokeWidth(),a(".Rk-Bin-Item").removeClass("selected"),this.renderer.minimap&&(this.minimap_circle.strokeColor=void 0),this.hidden?this.hide():this.hideNeighbors(),this._super("unselect")}},hide:function(){var a=this;this.ghost=!1,this.hidden=!0,"undefined"!=typeof this.node_image&&(this.node_image.opacity=0),this.hideButtons(),this.circle.opacity=0,this.title.css("opacity",0),this.minimap_circle.opacity=0,b.each(this.project.get("edges").filter(function(b){return b.get("to")===a.model||b.get("from")===a.model}),function(b){var c=a.renderer.getRepresentationByModel(b);c&&"undefined"!=typeof c.from_representation&&"undefined"!=typeof c.from_representation.paper_coords&&"undefined"!=typeof c.to_representation&&"undefined"!=typeof c.to_representation.paper_coords&&c.hide()}),this.hideNeighbors()},show:function(a){var c=this;this.ghost=a,this.ghost?("undefined"!=typeof this.node_image&&(this.node_image.opacity=this.options.ghost_opacity),this.circle.opacity=this.options.ghost_opacity,this.title.css("opacity",this.options.ghost_opacity),this.minimap_circle.opacity=this.options.ghost_opacity):(this.hidden=!1,this.redraw()),b.each(this.project.get("edges").filter(function(a){return a.get("to")===c.model||a.get("from")===c.model}),function(a){var b=c.renderer.getRepresentationByModel(a);b&&"undefined"!=typeof b.from_representation&&"undefined"!=typeof b.from_representation.paper_coords&&"undefined"!=typeof b.to_representation&&"undefined"!=typeof b.to_representation.paper_coords&&b.show(c.ghost)})},hideNeighbors:function(){var a=this;b.each(this.project.get("edges").filter(function(b){return b.get("from")===a.model}),function(b){var c=a.renderer.getRepresentationByModel(b.get("to"));c&&c.ghost&&c.hide()})},showNeighbors:function(a){var c=this;b.each(this.project.get("edges").filter(function(a){return a.get("from")===c.model}),function(b){var d=c.renderer.getRepresentationByModel(b.get("to"));if(d&&d.hidden&&(d.show(a),!a)){var e=c.renderer.hiddenNodes.indexOf(d.model.id);-1!==e&&c.renderer.hiddenNodes.splice(e,1)}})},highlight:function(a){var b=a||!0;this.highlighted!==b&&(this.highlighted=b,this.redraw(),this.renderer.throttledPaperDraw())},unhighlight:function(){this.highlighted&&(this.highlighted=!1,this.redraw(),this.renderer.throttledPaperDraw())},saveCoords:function(){var a=this.renderer.toModelCoords(this.paper_coords),b={position:{x:a.x,y:a.y}};this.renderer.isEditable()&&this.model.set(b)},mousedown:function(a,b){b&&(this.renderer.unselectAll(),this.select())},mouseup:function(a,b){if(this.renderer.is_dragging&&this.renderer.isEditable())this.saveCoords();else if(this.hidden){var c=this.renderer.hiddenNodes.indexOf(this.model.id);-1!==c&&this.renderer.hiddenNodes.splice(c,1),this.show(!1),this.select()}else b||this.model.get("delete_scheduled")||this.openEditor(),this.model.trigger("clicked");this.renderer.click_target=null,this.renderer.is_dragging=!1,this.is_dragging=!1},destroy:function(){this._super("destroy"),this.all_buttons.forEach(function(a){a.destroy()}),this.circle.remove(),this.title.remove(),this.renderer.minimap&&this.minimap_circle.remove(),this.node_image&&this.node_image.remove()}}).value(),g}),define("renderer/edge",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){if(this.renderer.edge_layer.activate(),this.type="Edge",this.hidden=!1,this.ghost=!1,this.from_representation=this.renderer.getRepresentationByModel(this.model.get("from")),this.to_representation=this.renderer.getRepresentationByModel(this.model.get("to")),this.bundle=this.renderer.addToBundles(this),this.line=new paper.Path,this.line.add([0,0],[0,0],[0,0]),this.line.__representation=this,this.line.strokeWidth=this.options.edge_stroke_width,this.arrow_scale=1,this.arrow=new paper.Path,this.arrow.add([0,0],[this.options.edge_arrow_length,this.options.edge_arrow_width/2],[0,this.options.edge_arrow_width]),this.arrow.pivot=new paper.Point([this.options.edge_arrow_length/2,this.options.edge_arrow_width/2]),this.arrow.__representation=this,this.text=a('
                                        ').appendTo(this.renderer.labels_$),this.arrow_angle=0,this.options.editor_mode){var b=c.getRenderer();this.normal_buttons=[new b.EdgeEditButton(this.renderer,null),new b.EdgeRemoveButton(this.renderer,null)],this.pending_delete_buttons=[new b.EdgeRevertButton(this.renderer,null)],this.all_buttons=this.normal_buttons.concat(this.pending_delete_buttons);for(var d=0;d90&&(q-=180,r=r.multiply(-1)),-90>q&&(q+=180,r=r.multiply(-1));var w=this.model.get("title")||this.renkan.translate(this.options.label_untitled_edges)||"";w=e.shortenText(w,this.options.node_label_max_length),this.text.text(w);var x=this.paper_coords.add(r);this.text.css({left:x.x,top:x.y,transform:"rotate("+q+"deg)","-moz-transform":"rotate("+q+"deg)","-webkit-transform":"rotate("+q+"deg)",opacity:c}),this.text_angle=q;var y=this.paper_coords;this.all_buttons.forEach(function(a){a.moveTo(y)}),this.renderer.minimap&&(this.minimap_line.strokeColor=t,this.minimap_line.segments[0].point=this.renderer.toMinimapCoords(new paper.Point(this.from_representation.model.get("position"))),this.minimap_line.segments[1].point=this.renderer.toMinimapCoords(new paper.Point(this.to_representation.model.get("position"))))}},hide:function(){this.hidden=!0,this.ghost=!1,this.text.hide(),this.line.visible=!1,this.arrow.visible=!1,this.minimap_line.visible=!1},show:function(a){this.ghost=a,this.ghost?(this.text.css("opacity",.3),this.line.opacity=.3,this.arrow.opacity=.3,this.minimap_line.opacity=.3):(this.hidden=!1,this.text.css("opacity",1),this.line.opacity=1,this.arrow.opacity=1,this.minimap_line.opacity=1),this.text.show(),this.line.visible=!0,this.arrow.visible=!0,this.minimap_line.visible=!0,this.redraw()},openEditor:function(){this.renderer.removeRepresentationsOfType("editor");var a=this.renderer.addRepresentation("EdgeEditor",null);a.source_representation=this,a.draw()},select:function(){this.selected=!0,this.line.strokeWidth=this._getSelectedStrokeWidth(),this.renderer.isEditable()&&this.active_buttons.forEach(function(a){a.show()}),this.options.editor_mode||this.openEditor(),this._super("select")},unselect:function(a){a&&a.source_representation===this||(this.selected=!1,this.options.editor_mode&&this.all_buttons.forEach(function(a){a.hide()}),this.line.strokeWidth=this._getStrokeWidth(),this._super("unselect"))},mousedown:function(a,b){b&&(this.renderer.unselectAll(),this.select())},mouseup:function(a,b){!this.renkan.read_only&&this.renderer.is_dragging?(this.from_representation.saveCoords(),this.to_representation.saveCoords(),this.from_representation.is_dragging=!1,this.to_representation.is_dragging=!1):(b||this.openEditor(),this.model.trigger("clicked")),this.renderer.click_target=null,this.renderer.is_dragging=!1},paperShift:function(a){this.options.editor_mode?this.options.read_only||(this.from_representation.paperShift(a),this.to_representation.paperShift(a)):this.renderer.paperShift(a)},destroy:function(){this._super("destroy"),this.line.remove(),this.arrow.remove(),this.text.remove(),this.renderer.minimap&&this.minimap_line.remove(),this.all_buttons.forEach(function(a){a.destroy()});var a=this;this.bundle.edges=b.reject(this.bundle.edges,function(b){return a===b})}}).value(),f}),define("renderer/tempedge",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.renderer.edge_layer.activate(),this.type="Temp-edge";var a=(this.project.get("users").get(this.renkan.current_user)||e._USER_PLACEHOLDER(this.renkan)).get("color");this.line=new paper.Path,this.line.strokeColor=a,this.line.dashArray=[4,2],this.line.strokeWidth=this.options.selected_edge_stroke_width,this.line.add([0,0],[0,0]),this.line.__representation=this,this.arrow=new paper.Path,this.arrow.fillColor=a,this.arrow.add([0,0],[this.options.edge_arrow_length,this.options.edge_arrow_width/2],[0,this.options.edge_arrow_width]),this.arrow.__representation=this,this.arrow_angle=0},redraw:function(){var a=this.from_representation.paper_coords,b=this.end_pos,c=b.subtract(a).angle,d=a.add(b).divide(2);this.line.segments[0].point=a,this.line.segments[1].point=b,this.arrow.rotate(c-this.arrow_angle),this.arrow.position=d,this.arrow_angle=c},paperShift:function(a){if(!this.renderer.isEditable())return this.renderer.removeRepresentation(_this),void paper.view.draw();this.end_pos=this.end_pos.add(a);var b=paper.project.hitTest(this.end_pos);this.renderer.findTarget(b),this.redraw()},mouseup:function(a){var b=paper.project.hitTest(a.point),c=this.from_representation.model,d=!0;if(b&&"undefined"!=typeof b.item.__representation){var f=b.item.__representation;if("Node"===f.type.substr(0,4)){var g=f.model||f.source_representation.model;if(c!==g){var h={id:e.getUID("edge"),created_by:this.renkan.current_user,from:c,to:g};this.renderer.isEditable()&&this.project.addEdge(h)}}(c===f.model||f.source_representation&&f.source_representation.model===c)&&(d=!1,this.renderer.is_dragging=!0)}d&&(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentation(this),paper.view.draw())},destroy:function(){this.arrow.remove(),this.line.remove()}}).value(),f}),define("renderer/baseeditor",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.renderer.buttons_layer.activate(),this.type="editor",this.editor_block=new paper.Path;var c=b.map(b.range(8),function(){return[0,0]});this.editor_block.add.apply(this.editor_block,c),this.editor_block.strokeWidth=this.options.tooltip_border_width,this.editor_block.strokeColor=this.options.tooltip_border_color,this.editor_block.opacity=.8,this.editor_$=a("
                                        ").appendTo(this.renderer.editor_$).css({position:"absolute",opacity:.8}).hide()},destroy:function(){this.editor_block.remove(),this.editor_$.remove()}}).value(),f}),define("renderer/nodeeditor",["jquery","underscore","requtils","renderer/baseeditor","renderer/shapebuilder","ckeditor-jquery"],function(a,b,c,d,e){var f=c.getUtils(),g=f.inherit(d);return b(g.prototype).extend({_init:function(){d.prototype._init.apply(this),this.template=this.options.templates["templates/nodeeditor.html"],this.readOnlyTemplate=this.options.node_editor_templates},draw:function(){var c=this.source_representation.model,d=c.get("created_by")||f._USER_PLACEHOLDER(this.renkan),g=this.renderer.isEditable()?this.template:this.readOnlyTemplate[c.get("type")]||this.readOnlyTemplate["default"],h=this.options.static_url+"img/image-placeholder.png",i=c.get("size")||0;this.editor_$.html(g({node:{_id:c.get("_id"),has_creator:!!c.get("created_by"),title:c.get("title"),uri:c.get("uri"),type:c.get("type")||"default",short_uri:f.shortenText((c.get("uri")||"").replace(/^(https?:\/\/)?(www\.)?/,"").replace(/\/$/,""),40),description:c.get("description"),image:c.get("image")||"",image_placeholder:h,color:c.has("style")&&c.get("style").color||d.get("color"),thickness:c.has("style")&&c.get("style").thickness||1,dash:c.has("style")&&c.get("style").dash?"checked":"",clip_path:c.get("clip_path")||!1,created_by_color:d.get("color"),created_by_title:d.get("title"),size:(i>0?"+":"")+i,shape:c.get("shape")||"circle"},renkan:this.renkan,options:this.options,shortenText:f.shortenText,shapes:b(e.builders).omit("svg").keys().value(),types:b(this.options.node_editor_templates).keys().value()})),this.redraw();var j=this,k=j.options.show_node_editor_description_richtext?a(".Rk-Edit-Description").ckeditor(j.options.richtext_editor_config):!1,l=function(){j.renderer.removeRepresentation(j),paper.view.draw()};if(j.cleanEditor=function(){if(j.editor_$.off("keyup"),j.editor_$.find("input, textarea, select").off("change keyup paste"),j.editor_$.find(".Rk-Edit-Image-File").off("change"),j.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").off("hover"),j.editor_$.find(".Rk-Edit-Size-Btn").off("click"),j.editor_$.find(".Rk-Edit-Image-Del").off("click"),j.editor_$.find(".Rk-Edit-ColorPicker").find("li").off("hover click"),j.editor_$.find(".Rk-CloseX").off("click"),j.editor_$.find(".Rk-Edit-Goto").off("click"),j.options.show_node_editor_description_richtext&&"undefined"!=typeof k.editor){var a=k.editor;delete k.editor,a.focusManager.blur(!0),a.destroy()}},this.editor_$.find(".Rk-CloseX").click(function(a){a.preventDefault(),l()}),this.editor_$.find(".Rk-Edit-Goto").click(function(){return c.get("uri")?void 0:!1}),this.renderer.isEditable()){var m=b.throttle(function(){b.defer(function(){if(j.renderer.isEditable()){var a={title:j.editor_$.find(".Rk-Edit-Title").val()};if(j.options.show_node_editor_uri&&(a.uri=j.editor_$.find(".Rk-Edit-URI").val(),j.editor_$.find(".Rk-Edit-Goto").attr("href",a.uri||"#")),j.options.show_node_editor_image&&(a.image=j.editor_$.find(".Rk-Edit-Image").val(),j.editor_$.find(".Rk-Edit-ImgPreview").attr("src",a.image||h)),j.options.show_node_editor_description&&(j.options.show_node_editor_description_richtext?"undefined"!=typeof k.editor&&k.editor.checkDirty()&&(a.description=k.editor.getData(),k.editor.resetDirty()):a.description=j.editor_$.find(".Rk-Edit-Description").val()),j.options.show_node_editor_style){var d=j.editor_$.find(".Rk-Edit-Dash").is(":checked");a.style=b.assign(c.has("style")&&b.clone(c.get("style"))||{},{dash:d})}j.options.change_shapes&&c.get("shape")!==j.editor_$.find(".Rk-Edit-Shape").val()&&(a.shape=j.editor_$.find(".Rk-Edit-Shape").val()),j.options.change_types&&c.get("type")!==j.editor_$.find(".Rk-Edit-Type").val()&&(a.type=j.editor_$.find(".Rk-Edit-Type").val()),c.set(a),j.redraw()}else l()})},1e3);this.editor_$.on("keyup",function(a){27===a.keyCode&&l()}),this.editor_$.find("input, textarea, select").on("change keyup paste",m),j.options.show_node_editor_description&&j.options.show_node_editor_description_richtext&&"undefined"!=typeof k.editor&&(k.editor.on("change",m),k.editor.on("blur",m)),j.options.allow_image_upload&&this.editor_$.find(".Rk-Edit-Image-File").change(function(){if(this.files.length){var a=this.files[0],b=new FileReader;if("image"!==a.type.substr(0,5))return void alert(j.renkan.translate("This file is not an image"));if(a.size>1024*j.options.uploaded_image_max_kb)return void alert(j.renkan.translate("Image size must be under ")+j.options.uploaded_image_max_kb+j.renkan.translate("KB"));b.onload=function(a){j.editor_$.find(".Rk-Edit-Image").val(a.target.result),m()},b.readAsDataURL(a)}}),this.editor_$.find(".Rk-Edit-Title")[0].focus();var n=j.editor_$.find(".Rk-Edit-ColorPicker");this.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").hover(function(a){a.preventDefault(),n.show()},function(a){a.preventDefault(),n.hide()}),n.find("li").hover(function(b){b.preventDefault(),j.editor_$.find(".Rk-Edit-Color").css("background",a(this).attr("data-color"))},function(a){a.preventDefault(),j.editor_$.find(".Rk-Edit-Color").css("background",c.has("style")&&c.get("style").color||(c.get("created_by")||f._USER_PLACEHOLDER(j.renkan)).get("color"))}).click(function(d){d.preventDefault(),j.renderer.isEditable()?(c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{color:a(this).attr("data-color")})),n.hide(),paper.view.draw()):l()});var o=function(a){if(j.renderer.isEditable()){var b=a+(c.get("size")||0);j.editor_$.find("#Rk-Edit-Size-Value").text((b>0?"+":"")+b),c.set("size",b),paper.view.draw() +}else l()};this.editor_$.find("#Rk-Edit-Size-Down").click(function(){return o(-1),!1}),this.editor_$.find("#Rk-Edit-Size-Up").click(function(){return o(1),!1});var p=function(a){if(j.renderer.isEditable()){var d=c.has("style")&&c.get("style").thickness||1,e=a+d;1>e?e=1:e>j.options.node_stroke_witdh_scale&&(e=j.options.node_stroke_witdh_scale),e!==d&&(j.editor_$.find("#Rk-Edit-Thickness-Value").text(e),c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{thickness:e})),paper.view.draw())}else l()};this.editor_$.find("#Rk-Edit-Thickness-Down").click(function(){return p(-1),!1}),this.editor_$.find("#Rk-Edit-Thickness-Up").click(function(){return p(1),!1}),this.editor_$.find(".Rk-Edit-Image-Del").click(function(){return j.editor_$.find(".Rk-Edit-Image").val(""),m(),!1})}else if("object"==typeof this.source_representation.highlighted){var q=this.source_representation.highlighted.replace(b(c.get("title")).escape(),'$1');this.editor_$.find(".Rk-Display-Title"+(c.get("uri")?" a":"")).html(q),this.options.show_node_tooltip_description&&this.editor_$.find(".Rk-Display-Description").html(this.source_representation.highlighted.replace(b(c.get("description")).escape(),'$1'))}this.editor_$.find("img").load(function(){j.redraw()})},redraw:function(){if(this.options.popup_editor){var a=this.source_representation.paper_coords;f.drawEditBox(this.options,a,this.editor_block,.75*this.source_representation.circle_radius,this.editor_$)}this.editor_$.show(),paper.view.draw()},destroy:function(){"undefined"!=typeof this.cleanEditor&&this.cleanEditor(),this.editor_block.remove(),this.editor_$.remove()}}).value(),g}),define("renderer/edgeeditor",["jquery","underscore","requtils","renderer/baseeditor"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){d.prototype._init.apply(this),this.template=this.options.templates["templates/edgeeditor.html"],this.readOnlyTemplate=this.options.templates["templates/edgeeditor_readonly.html"]},draw:function(){var c=this.source_representation.model,d=c.get("from"),f=c.get("to"),g=c.get("created_by")||e._USER_PLACEHOLDER(this.renkan),h=this.renderer.isEditable()?this.template:this.readOnlyTemplate;this.editor_$.html(h({edge:{has_creator:!!c.get("created_by"),title:c.get("title"),uri:c.get("uri"),short_uri:e.shortenText((c.get("uri")||"").replace(/^(https?:\/\/)?(www\.)?/,"").replace(/\/$/,""),40),description:c.get("description"),color:c.has("style")&&c.get("style").color||g.get("color"),dash:c.has("style")&&c.get("style").dash?"checked":"",arrow:c.has("style")&&c.get("style").arrow||!c.has("style")||"undefined"==typeof c.get("style").arrow?"checked":"",thickness:c.has("style")&&c.get("style").thickness||1,from_title:d.get("title"),to_title:f.get("title"),from_color:d.has("style")&&d.get("style").color||(d.get("created_by")||e._USER_PLACEHOLDER(this.renkan)).get("color"),to_color:f.has("style")&&f.get("style").color||(f.get("created_by")||e._USER_PLACEHOLDER(this.renkan)).get("color"),created_by_color:g.get("color"),created_by_title:g.get("title")},renkan:this.renkan,shortenText:e.shortenText,options:this.options})),this.redraw();var i=this,j=function(){i.renderer.removeRepresentation(i),i.editor_$.find(".Rk-Edit-Size-Btn").off("click"),paper.view.draw()};if(this.editor_$.find(".Rk-CloseX").click(j),this.editor_$.find(".Rk-Edit-Goto").click(function(){return c.get("uri")?void 0:!1}),this.renderer.isEditable()){var k=b.throttle(function(){b.defer(function(){if(i.renderer.isEditable()){var a={title:i.editor_$.find(".Rk-Edit-Title").val()};if(i.options.show_edge_editor_uri&&(a.uri=i.editor_$.find(".Rk-Edit-URI").val()),i.options.show_node_editor_style){var d=i.editor_$.find(".Rk-Edit-Dash").is(":checked"),e=i.editor_$.find(".Rk-Edit-Arrow").is(":checked");a.style=b.assign(c.has("style")&&b.clone(c.get("style"))||{},{dash:d,arrow:e})}i.editor_$.find(".Rk-Edit-Goto").attr("href",a.uri||"#"),c.set(a),paper.view.draw()}else j()})},500);this.editor_$.on("keyup",function(a){27===a.keyCode&&j()}),this.editor_$.find("input").on("keyup change paste",k),this.editor_$.find(".Rk-Edit-Vocabulary").change(function(){var b=a(this),c=b.val();c&&(i.editor_$.find(".Rk-Edit-Title").val(b.find(":selected").text()),i.editor_$.find(".Rk-Edit-URI").val(c),k())}),this.editor_$.find(".Rk-Edit-Direction").click(function(){i.renderer.isEditable()?(c.set({from:c.get("to"),to:c.get("from")}),i.draw()):j()});var l=i.editor_$.find(".Rk-Edit-ColorPicker");this.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").hover(function(a){a.preventDefault(),l.show()},function(a){a.preventDefault(),l.hide()}),l.find("li").hover(function(b){b.preventDefault(),i.editor_$.find(".Rk-Edit-Color").css("background",a(this).attr("data-color"))},function(a){a.preventDefault(),i.editor_$.find(".Rk-Edit-Color").css("background",c.has("style")&&c.get("style").color||(c.get("created_by")||e._USER_PLACEHOLDER(i.renkan)).get("color"))}).click(function(d){d.preventDefault(),i.renderer.isEditable()?(c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{color:a(this).attr("data-color")})),l.hide(),paper.view.draw()):j()});var m=function(a){if(i.renderer.isEditable()){var d=c.has("style")&&c.get("style").thickness||1,e=a+d;1>e?e=1:e>i.options.node_stroke_witdh_scale&&(e=i.options.node_stroke_witdh_scale),e!==d&&(i.editor_$.find("#Rk-Edit-Thickness-Value").text(e),c.set("style",b.assign(c.has("style")&&b.clone(c.get("style"))||{},{thickness:e})),paper.view.draw())}else j()};this.editor_$.find("#Rk-Edit-Thickness-Down").click(function(){return m(-1),!1}),this.editor_$.find("#Rk-Edit-Thickness-Up").click(function(){return m(1),!1})}},redraw:function(){if(this.options.popup_editor){var a=this.source_representation.paper_coords;e.drawEditBox(this.options,a,this.editor_block,5,this.editor_$)}this.editor_$.show(),paper.view.draw()}}).value(),f}),define("renderer/nodebutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({setSectorSize:function(){var a=this.source_representation.circle_radius;a!==this.lastSectorInner&&(this.sector&&this.sector.destroy(),this.sector=this.renderer.drawSector(this,1+a,e._NODE_BUTTON_WIDTH+a,this.startAngle,this.endAngle,1,this.imageName,this.renkan.translate(this.text)),this.lastSectorInner=a)},unselect:function(){d.prototype.unselect.apply(this,Array.prototype.slice.call(arguments,1)),this.source_representation&&this.source_representation.buttons_timeout&&(clearTimeout(this.source_representation.buttons_timeout),this.source_representation.hideButtons())},select:function(){this.source_representation&&this.source_representation.buttons_timeout&&clearTimeout(this.source_representation.buttons_timeout),this.sector.select()}}).value(),f}),define("renderer/nodeeditbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-edit-button",this.lastSectorInner=0,this.startAngle=this.options.hide_nodes?-125:-135,this.endAngle=this.options.hide_nodes?-55:-45,this.imageName="edit",this.text="Edit"},mouseup:function(){this.renderer.is_dragging||this.source_representation.openEditor()}}).value(),f}),define("renderer/noderemovebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-remove-button",this.lastSectorInner=0,this.startAngle=this.options.hide_nodes?-10:0,this.endAngle=this.options.hide_nodes?45:90,this.imageName="remove",this.text="Remove"},mouseup:function(){if(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable())if(this.options.element_delete_delay){var a=e.getUID("delete");this.renderer.delete_list.push({id:a,time:(new Date).valueOf()+this.options.element_delete_delay}),this.source_representation.model.set("delete_scheduled",a)}else confirm(this.renkan.translate("Do you really wish to remove node ")+'"'+this.source_representation.model.get("title")+'"?')&&this.project.removeNode(this.source_representation.model)}}).value(),f}),define("renderer/nodehidebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-hide-button",this.lastSectorInner=0,this.startAngle=45,this.endAngle=90,this.imageName="hide",this.text="Hide"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable()&&this.renderer.addHiddenNode(this.source_representation.model)}}).value(),f}),define("renderer/nodeshowbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-show-button",this.lastSectorInner=0,this.startAngle=90,this.endAngle=135,this.imageName="show",this.text="Show"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable()&&this.source_representation.showNeighbors(!1)}}).value(),f}),define("renderer/noderevertbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-revert-button",this.lastSectorInner=0,this.startAngle=-135,this.endAngle=135,this.imageName="revert",this.text="Cancel deletion"},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.isEditable()&&this.source_representation.model.unset("delete_scheduled")}}).value(),f}),define("renderer/nodelinkbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-link-button",this.lastSectorInner=0,this.startAngle=this.options.hide_nodes?135:90,this.endAngle=this.options.hide_nodes?190:180,this.imageName="link",this.text="Link to another node"},mousedown:function(a){if(this.renderer.isEditable()){var b=this.renderer.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]);this.renderer.click_target=null,this.renderer.removeRepresentationsOfType("editor"),this.renderer.addTempEdge(this.source_representation,c)}}}).value(),f}),define("renderer/nodeenlargebutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-enlarge-button",this.lastSectorInner=0,this.startAngle=this.options.hide_nodes?-55:-45,this.endAngle=this.options.hide_nodes?-10:0,this.imageName="enlarge",this.text="Enlarge"},mouseup:function(){var a=1+(this.source_representation.model.get("size")||0);this.source_representation.model.set("size",a),this.source_representation.select(),this.select(),paper.view.draw()}}).value(),f}),define("renderer/nodeshrinkbutton",["jquery","underscore","requtils","renderer/nodebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Node-shrink-button",this.lastSectorInner=0,this.startAngle=this.options.hide_nodes?-170:-180,this.endAngle=this.options.hide_nodes?-125:-135,this.imageName="shrink",this.text="Shrink"},mouseup:function(){var a=-1+(this.source_representation.model.get("size")||0);this.source_representation.model.set("size",a),this.source_representation.select(),this.select(),paper.view.draw()}}).value(),f}),define("renderer/edgeeditbutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-edit-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-270,-90,1,"edit",this.renkan.translate("Edit"))},mouseup:function(){this.renderer.is_dragging||this.source_representation.openEditor()}}).value(),f}),define("renderer/edgeremovebutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-remove-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-90,90,1,"remove",this.renkan.translate("Remove"))},mouseup:function(){if(this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.removeRepresentationsOfType("editor"),this.renderer.isEditable())if(this.options.element_delete_delay){var a=e.getUID("delete");this.renderer.delete_list.push({id:a,time:(new Date).valueOf()+this.options.element_delete_delay}),this.source_representation.model.set("delete_scheduled",a)}else confirm(this.renkan.translate("Do you really wish to remove edge ")+'"'+this.source_representation.model.get("title")+'"?')&&this.project.removeEdge(this.source_representation.model)}}).value(),f}),define("renderer/edgerevertbutton",["jquery","underscore","requtils","renderer/basebutton"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({_init:function(){this.type="Edge-revert-button",this.sector=this.renderer.drawSector(this,e._EDGE_BUTTON_INNER,e._EDGE_BUTTON_OUTER,-135,135,1,"revert",this.renkan.translate("Cancel deletion"))},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1,this.renderer.isEditable()&&this.source_representation.model.unset("delete_scheduled")}}).value(),f}),define("renderer/miniframe",["jquery","underscore","requtils","renderer/baserepresentation"],function(a,b,c,d){var e=c.getUtils(),f=e.inherit(d);return b(f.prototype).extend({paperShift:function(a){this.renderer.offset=this.renderer.offset.subtract(a.divide(this.renderer.minimap.scale).multiply(this.renderer.scale)),this.renderer.redraw()},mouseup:function(){this.renderer.click_target=null,this.renderer.is_dragging=!1}}).value(),f}),define("renderer/scene",["jquery","underscore","filesaver","requtils","renderer/miniframe"],function(a,b,c,d,e){var f=d.getUtils(),g=function(c){this.renkan=c,this.$=a(".Rk-Render"),this.representations=[],this.$.html(c.options.templates["templates/scene.html"](c)),this.onStatusChange(),this.canvas_$=this.$.find(".Rk-Canvas"),this.labels_$=this.$.find(".Rk-Labels"),this.editor_$=c.options.popup_editor?this.$.find(".Rk-Editor"):a("#"+c.options.editor_panel),this.notif_$=this.$.find(".Rk-Notifications"),paper.setup(this.canvas_$[0]),this.scale=1,this.initialScale=1,this.offset=paper.view.center,this.totalScroll=0,this.hiddenNodes=[],this.mouse_down=!1,this.click_target=null,this.selected_target=null,this.edge_layer=new paper.Layer,this.node_layer=new paper.Layer,this.buttons_layer=new paper.Layer,this.delete_list=[],this.redrawActive=!0,c.options.show_minimap&&(this.minimap={background_layer:new paper.Layer,edge_layer:new paper.Layer,node_layer:new paper.Layer,node_group:new paper.Group,size:new paper.Size(c.options.minimap_width,c.options.minimap_height)},this.minimap.background_layer.activate(),this.minimap.topleft=paper.view.bounds.bottomRight.subtract(this.minimap.size),this.minimap.rectangle=new paper.Path.Rectangle(this.minimap.topleft.subtract([2,2]),this.minimap.size.add([4,4])),this.minimap.rectangle.fillColor=c.options.minimap_background_color,this.minimap.rectangle.strokeColor=c.options.minimap_border_color,this.minimap.rectangle.strokeWidth=4,this.minimap.offset=new paper.Point(this.minimap.size.divide(2)),this.minimap.scale=.1,this.minimap.node_layer.activate(),this.minimap.cliprectangle=new paper.Path.Rectangle(this.minimap.topleft,this.minimap.size),this.minimap.node_group.addChild(this.minimap.cliprectangle),this.minimap.node_group.clipped=!0,this.minimap.miniframe=new paper.Path.Rectangle(this.minimap.topleft,this.minimap.size),this.minimap.node_group.addChild(this.minimap.miniframe),this.minimap.miniframe.fillColor="#c0c0ff",this.minimap.miniframe.opacity=.3,this.minimap.miniframe.strokeColor="#000080",this.minimap.miniframe.strokeWidth=2,this.minimap.miniframe.__representation=new e(this,null)),this.throttledPaperDraw=b(function(){paper.view.draw()}).throttle(100).value(),this.bundles=[],this.click_mode=!1;var d=this,g=!0,h=1,i=!1,j=0,k=0;this.image_cache={},this.icon_cache={},["edit","remove","hide","show","link","enlarge","shrink","revert"].forEach(function(a){var b=new Image;b.src=c.options.static_url+"img/"+a+".png",d.icon_cache[a]=b});var l=b.throttle(function(a,b){d.onMouseMove(a,b)},f._MOUSEMOVE_RATE);this.canvas_$.on({mousedown:function(a){a.preventDefault(),d.onMouseDown(a,!1)},mousemove:function(a){a.preventDefault(),l(a,!1)},mouseup:function(a){a.preventDefault(),d.onMouseUp(a,!1)},mousewheel:function(a,b){c.options.zoom_on_scroll&&(a.preventDefault(),g&&d.onScroll(a,b))},touchstart:function(a){a.preventDefault();var b=a.originalEvent.touches[0];c.options.allow_double_click&&new Date-_lastTap0&&this.renkan.options.save_view&&this.$.find(".Rk-ZoomSetSaved").show(),this.$.find(".Rk-CurrentUser").mouseenter(function(){d.$.find(".Rk-UserList").slideDown()}),this.$.find(".Rk-Users").mouseleave(function(){d.$.find(".Rk-UserList").slideUp()}),m(".Rk-FullScreen-Button","fullScreen"),m(".Rk-AddNode-Button","addNodeBtn"),m(".Rk-AddEdge-Button","addEdgeBtn"),m(".Rk-Save-Button","save"),m(".Rk-Open-Button","open"),m(".Rk-Export-Button","exportProject"),this.$.find(".Rk-Bookmarklet-Button").attr("href","javascript:"+f._BOOKMARKLET_CODE(c)).click(function(){return d.notif_$.text(c.translate("Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.")).fadeIn().delay(5e3).fadeOut(),!1}),this.$.find(".Rk-TopBar-Button").mouseover(function(){a(this).find(".Rk-TopBar-Tooltip").show()}).mouseout(function(){a(this).find(".Rk-TopBar-Tooltip").hide()}),m(".Rk-Fold-Bins","foldBins"),paper.view.onResize=function(a){var b,c=a.width,e=a.height;d.minimap&&(d.minimap.topleft=paper.view.bounds.bottomRight.subtract(d.minimap.size),d.minimap.rectangle.fitBounds(d.minimap.topleft.subtract([2,2]),d.minimap.size.add([4,4])),d.minimap.cliprectangle.fitBounds(d.minimap.topleft,d.minimap.size));var f=e/(e-a.delta.height),g=c/(c-a.delta.width);b=c>e?f:g,d.resizeZoom(g,f,b),d.redraw()};var n=b.throttle(function(){d.redraw()},50);this.addRepresentations("Node",this.renkan.project.get("nodes")),this.addRepresentations("Edge",this.renkan.project.get("edges")),this.renkan.project.on("change:title",function(){d.$.find(".Rk-PadTitle").val(c.project.get("title"))}),this.$.find(".Rk-PadTitle").on("keyup input paste",function(){c.project.set({title:a(this).val()})});var o=b.throttle(function(){d.redrawUsers()},100);if(o(),this.renkan.project.on("change:saveStatus",function(){switch(d.renkan.project.get("saveStatus")){case 0:d.$.find(".Rk-Save-Button").removeClass("to-save"),d.$.find(".Rk-Save-Button").removeClass("saving"),d.$.find(".Rk-Save-Button").addClass("saved");break;case 1:d.$.find(".Rk-Save-Button").removeClass("saved"),d.$.find(".Rk-Save-Button").removeClass("saving"),d.$.find(".Rk-Save-Button").addClass("to-save");break;case 2:d.$.find(".Rk-Save-Button").removeClass("saved"),d.$.find(".Rk-Save-Button").removeClass("to-save"),d.$.find(".Rk-Save-Button").addClass("saving")}}),this.renkan.project.on("change:loadingStatus",function(){if(d.renkan.project.get("loadingStatus")){d.$.find(".loader").addClass("run"),setTimeout(function(){d.$.find(".loader").hide(250)},3e3)}else Backbone.history.start()}),this.renkan.project.on("add:users remove:users",o),this.renkan.project.on("add:views remove:views",function(){d.renkan.project.get("views").length>0?d.$.find(".Rk-ZoomSetSaved").show():d.$.find(".Rk-ZoomSetSaved").hide()}),this.renkan.project.on("add:nodes",function(a){d.addRepresentation("Node",a),d.renkan.project.get("loadingStatus")||n()}),this.renkan.project.on("add:edges",function(a){d.addRepresentation("Edge",a),d.renkan.project.get("loadingStatus")||n()}),this.renkan.project.on("change:title",function(a,b){var c=d.$.find(".Rk-PadTitle");c.is("input")?c.val()!==b&&c.val(b):c.text(b)}),this.renkan.router.on("router",function(a){d.parameters(a)}),c.options.size_bug_fix){var p="number"==typeof c.options.size_bug_fix?c.options.size_bug_fix:500;window.setTimeout(function(){d.fixSize()},p)}if(c.options.force_resize&&a(window).resize(function(){d.autoScale()}),c.options.show_user_list&&c.options.user_color_editable){var q=this.$.find(".Rk-Users .Rk-Edit-ColorPicker-Wrapper"),r=this.$.find(".Rk-Users .Rk-Edit-ColorPicker");q.hover(function(a){d.isEditable()&&(a.preventDefault(),r.show())},function(a){a.preventDefault(),r.hide()}),r.find("li").mouseenter(function(b){d.isEditable()&&(b.preventDefault(),d.$.find(".Rk-CurrentUser-Color").css("background",a(this).attr("data-color")))})}if(c.options.show_search_field){var s="";this.$.find(".Rk-GraphSearch-Field").on("keyup change paste input",function(){var b=a(this),e=b.val();if(e!==s)if(s=e,e.length<2)c.project.get("nodes").each(function(a){d.getRepresentationByModel(a).unhighlight()});else{var g=f.regexpFromTextOrArray(e);c.project.get("nodes").each(function(a){g.test(a.get("title"))||g.test(a.get("description"))?d.getRepresentationByModel(a).highlight(g):d.getRepresentationByModel(a).unhighlight()})}})}this.redraw(),window.setInterval(function(){var a=(new Date).valueOf();d.delete_list.forEach(function(b){if(a>=b.time){var d=c.project.get("nodes").findWhere({delete_scheduled:b.id});d&&project.removeNode(d),d=c.project.get("edges").findWhere({delete_scheduled:b.id}),d&&project.removeEdge(d)}}),d.delete_list=d.delete_list.filter(function(a){return c.project.get("nodes").findWhere({delete_scheduled:a.id})||c.project.get("edges").findWhere({delete_scheduled:a.id})})},500),this.minimap&&window.setInterval(function(){d.rescaleMinimap()},2e3)};return b(g.prototype).extend({fixSize:function(){if(this.renkan.options.default_view&&this.renkan.project.get("views").length>0){var a=this.renkan.project.get("views").last();this.setScale(a.get("zoom_level"),new paper.Point(a.get("offset")))}else this.autoScale()},drawSector:function(b,c,d,e,f,g,h,i){var j=this.renkan.options,k=e*Math.PI/180,l=f*Math.PI/180,m=this.icon_cache[h],n=-Math.sin(k),o=Math.cos(k),p=Math.cos(k)*c+g*n,q=Math.sin(k)*c+g*o,r=Math.cos(k)*d+g*n,s=Math.sin(k)*d+g*o,t=-Math.sin(l),u=Math.cos(l),v=Math.cos(l)*c-g*t,w=Math.sin(l)*c-g*u,x=Math.cos(l)*d-g*t,y=Math.sin(l)*d-g*u,z=(c+d)/2,A=(k+l)/2,B=Math.cos(A)*z,C=Math.sin(A)*z,D=Math.cos(A)*c,E=Math.cos(A)*d,F=Math.sin(A)*c,G=Math.sin(A)*d,H=Math.cos(A)*(d+3),I=Math.sin(A)*(d+j.buttons_label_font_size)+j.buttons_label_font_size/2;this.buttons_layer.activate();var J=new paper.Path;J.add([p,q]),J.arcTo([D,F],[v,w]),J.lineTo([x,y]),J.arcTo([E,G],[r,s]),J.fillColor=j.buttons_background,J.opacity=.5,J.closed=!0,J.__representation=b;var K=new paper.PointText(H,I);K.characterStyle={fontSize:j.buttons_label_font_size,fillColor:j.buttons_label_color},K.paragraphStyle.justification=H>2?"left":-2>H?"right":"center",K.visible=!1;var L=!1,M=new paper.Point(-200,-200),N=new paper.Group([J,K]),O=N.position,P=new paper.Point([B,C]),Q=new paper.Point(0,0);K.content=i,N.pivot=N.bounds.center,N.visible=!1,N.position=M;var R={show:function(){L=!0,N.position=Q.add(O),N.visible=!0},moveTo:function(a){Q=a,L&&(N.position=a.add(O))},hide:function(){L=!1,N.visible=!1,N.position=M},select:function(){J.opacity=.8,K.visible=!0},unselect:function(){J.opacity=.5,K.visible=!1},destroy:function(){N.remove()}},S=function(){var a=new paper.Raster(m);a.position=P.add(N.position).subtract(O),a.locked=!0,N.addChild(a)};return m.width?S():a(m).on("load",S),R},addToBundles:function(a){var c=b(this.bundles).find(function(b){return b.from===a.from_representation&&b.to===a.to_representation||b.from===a.to_representation&&b.to===a.from_representation});return"undefined"!=typeof c?c.edges.push(a):(c={from:a.from_representation,to:a.to_representation,edges:[a],getPosition:function(a){var c=a.from_representation===this.from?1:-1;return c*(b(this.edges).indexOf(a)-(this.edges.length-1)/2)}},this.bundles.push(c)),c},isEditable:function(){return this.renkan.options.editor_mode&&!this.renkan.read_only},onStatusChange:function(){var a=this.$.find(".Rk-Save-Button"),b=a.find(".Rk-TopBar-Tooltip-Contents");this.renkan.read_only?(a.removeClass("disabled Rk-Save-Online").addClass("Rk-Save-ReadOnly"),b.text(this.renkan.translate("Connection lost"))):this.renkan.options.manual_save?(a.removeClass("Rk-Save-ReadOnly Rk-Save-Online"),b.text(this.renkan.translate("Save Project"))):(a.removeClass("disabled Rk-Save-ReadOnly").addClass("Rk-Save-Online"),b.text(this.renkan.translate("Auto-save enabled"))),this.redrawUsers()},setScale:function(a,b){a/this.initialScale>f._MIN_SCALE&&a/this.initialScale1){var c=b.map(function(a){return a.get("position").x}),d=b.map(function(a){return a.get("position").y}),e=Math.min.apply(Math,c),f=Math.min.apply(Math,d),g=Math.max.apply(Math,c),h=Math.max.apply(Math,d),i=Math.min((paper.view.size.width-2*this.renkan.options.autoscale_padding)/(g-e),(paper.view.size.height-2*this.renkan.options.autoscale_padding)/(h-f));this.initialScale=i,"undefined"!=typeof a&&parseFloat(a.zoom_level)>0&&parseFloat(a.offset.x)>0&&parseFloat(a.offset.y)>0?this.setScale(parseFloat(a.zoom_level),new paper.Point(parseFloat(a.offset.x),parseFloat(a.offset.y))):this.setScale(i,paper.view.center.subtract(new paper.Point([(g+e)/2,(h+f)/2]).multiply(i)))}1===b.length&&this.setScale(1,paper.view.center.subtract(new paper.Point([b.at(0).get("position").x,b.at(0).get("position").y])))},redrawMiniframe:function(){var a=this.toMinimapCoords(this.toModelCoords(new paper.Point([0,0]))),b=this.toMinimapCoords(this.toModelCoords(paper.view.bounds.bottomRight));this.minimap.miniframe.fitBounds(a,b)},rescaleMinimap:function(){var a=this.renkan.project.get("nodes");if(a.length>1){var b=a.map(function(a){return a.get("position").x}),c=a.map(function(a){return a.get("position").y}),d=Math.min.apply(Math,b),e=Math.min.apply(Math,c),f=Math.max.apply(Math,b),g=Math.max.apply(Math,c),h=Math.min(.8*this.scale*this.renkan.options.minimap_width/paper.view.bounds.width,.8*this.scale*this.renkan.options.minimap_height/paper.view.bounds.height,(this.renkan.options.minimap_width-2*this.renkan.options.minimap_padding)/(f-d),(this.renkan.options.minimap_height-2*this.renkan.options.minimap_padding)/(g-e));this.minimap.offset=this.minimap.size.divide(2).subtract(new paper.Point([(f+d)/2,(g+e)/2]).multiply(h)),this.minimap.scale=h}1===a.length&&(this.minimap.scale=.1,this.minimap.offset=this.minimap.size.divide(2).subtract(new paper.Point([a.at(0).get("position").x,a.at(0).get("position").y]).multiply(this.minimap.scale))),this.redraw()},toPaperCoords:function(a){return a.multiply(this.scale).add(this.offset)},toMinimapCoords:function(a){return a.multiply(this.minimap.scale).add(this.minimap.offset).add(this.minimap.topleft)},toModelCoords:function(a){return a.subtract(this.offset).divide(this.scale)},addRepresentation:function(a,b){var c=d.getRenderer()[a],e=new c(this,b);return this.representations.push(e),e},addRepresentations:function(a,b){var c=this;b.forEach(function(b){c.addRepresentation(a,b)})},userTemplate:b.template('
                                      • <%=name%>
                                      • '),redrawUsers:function(){if(this.renkan.options.show_user_list){var b=[].concat((this.renkan.project.current_user_list||{}).models||[],(this.renkan.project.get("users")||{}).models||[]),c="",d=this.$.find(".Rk-Users"),e=d.find(".Rk-CurrentUser-Name"),f=d.find(".Rk-Edit-ColorPicker li"),g=d.find(".Rk-CurrentUser-Color"),h=this;e.off("click").text(this.renkan.translate("")),f.off("mouseleave click"),b.forEach(function(b){b.get("_id")===h.renkan.current_user?(e.text(b.get("title")),g.css("background",b.get("color")),h.isEditable()&&(h.renkan.options.user_name_editable&&e.click(function(){var c=a(this),d=a("").val(b.get("title")).blur(function(){b.set("title",a(this).val()),h.redrawUsers(),h.redraw()});c.empty().html(d),d.select()}),h.renkan.options.user_color_editable&&f.click(function(c){c.preventDefault(),h.isEditable()&&b.set("color",a(this).attr("data-color")),a(this).parent().hide()}).mouseleave(function(){g.css("background",b.get("color"))}))):c+=h.userTemplate({name:b.get("title"),background:b.get("color")})}),d.find(".Rk-UserList").html(c)}},removeRepresentation:function(a){a.destroy(),this.representations=b.reject(this.representations,function(b){return b===a})},getRepresentationByModel:function(a){return a?b.find(this.representations,function(b){return b.model===a}):void 0},removeRepresentationsOfType:function(a){var c=b.filter(this.representations,function(b){return b.type===a}),d=this;b.each(c,function(a){d.removeRepresentation(a)})},highlightModel:function(a){var b=this.getRepresentationByModel(a);b&&b.highlight()},unhighlightAll:function(){b.each(this.representations,function(a){a.unhighlight()})},unselectAll:function(){b.each(this.representations,function(a){a.unselect()})},redraw:function(){this.redrawActive&&(b.each(this.representations,function(a){a.redraw({dontRedrawEdges:!0}) +}),this.minimap&&this.redrawMiniframe(),paper.view.draw())},addTempEdge:function(a,b){var c=this.addRepresentation("TempEdge",null);c.end_pos=b,c.from_representation=a,c.redraw(),this.click_target=c},addHiddenNode:function(a){this.hideNode(a),this.hiddenNodes.push(a.id)},hideNode:function(a){var b=this;"undefined"!=typeof b.getRepresentationByModel(a)&&b.getRepresentationByModel(a).hide()},hideNodes:function(){var a=this;this.hiddenNodes.forEach(function(b,c){var d=a.renkan.project.get("nodes").get(b);return"undefined"!=typeof d?a.hideNode(a.renkan.project.get("nodes").get(b)):void a.hiddenNodes.splice(c,1)}),paper.view.draw()},showNodes:function(a){var b=this,c=0;this.hiddenNodes.forEach(function(d){c++,b.getRepresentationByModel(b.renkan.project.get("nodes").get(d)).show(a)}),a||(this.hiddenNodes=[]),paper.view.draw()},findTarget:function(a){if(a&&"undefined"!=typeof a.item.__representation){var b=a.item.__representation;this.selected_target!==a.item.__representation&&(this.selected_target&&this.selected_target.unselect(b),b.select(this.selected_target),this.selected_target=b)}else this.selected_target&&this.selected_target.unselect(),this.selected_target=null},paperShift:function(a){this.offset=this.offset.add(a),this.redraw()},onMouseMove:function(a){var b=this.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]),d=c.subtract(this.last_point);this.last_point=c,!this.is_dragging&&this.mouse_down&&d.length>f._MIN_DRAG_DISTANCE&&(this.is_dragging=!0);var e=paper.project.hitTest(c);this.is_dragging?this.click_target&&"function"==typeof this.click_target.paperShift?this.click_target.paperShift(d):this.paperShift(d):this.findTarget(e),paper.view.draw()},onMouseDown:function(b,c){var d=this.canvas_$.offset(),e=new paper.Point([b.pageX-d.left,b.pageY-d.top]);if(this.last_point=e,this.mouse_down=!0,!this.click_target||"Temp-edge"!==this.click_target.type){this.removeRepresentationsOfType("editor"),this.is_dragging=!1;var g=paper.project.hitTest(e);if(g&&"undefined"!=typeof g.item.__representation)this.click_target=g.item.__representation,this.click_target.mousedown(b,c);else if(this.click_target=null,this.isEditable()&&this.click_mode===f._CLICKMODE_ADDNODE){var h=this.toModelCoords(e),i={id:f.getUID("node"),created_by:this.renkan.current_user,position:{x:h.x,y:h.y}},j=this.renkan.project.addNode(i);this.getRepresentationByModel(j).openEditor()}}this.click_mode&&(this.isEditable()&&this.click_mode===f._CLICKMODE_STARTEDGE&&this.click_target&&"Node"===this.click_target.type?(this.removeRepresentationsOfType("editor"),this.addTempEdge(this.click_target,e),this.click_mode=f._CLICKMODE_ENDEDGE,this.notif_$.fadeOut(function(){a(this).html(this.renkan.translate("Click on a second node to complete the edge")).fadeIn()})):(this.notif_$.hide(),this.click_mode=!1)),paper.view.draw()},onMouseUp:function(a,b){if(this.mouse_down=!1,this.click_target){var c=this.canvas_$.offset();this.click_target.mouseup({point:new paper.Point([a.pageX-c.left,a.pageY-c.top])},b)}else this.click_target=null,this.is_dragging=!1,b&&this.unselectAll();paper.view.draw()},onScroll:function(a,b){if(this.totalScroll+=b,Math.abs(this.totalScroll)>=1){var c=this.canvas_$.offset(),d=new paper.Point([a.pageX-c.left,a.pageY-c.top]).subtract(this.offset).multiply(Math.SQRT2-1);this.totalScroll>0?this.setScale(this.scale*Math.SQRT2,this.offset.subtract(d)):this.setScale(this.scale*Math.SQRT1_2,this.offset.add(d.divide(Math.SQRT2))),this.totalScroll=0}},onDoubleClick:function(a){var b=this.canvas_$.offset(),c=new paper.Point([a.pageX-b.left,a.pageY-b.top]),d=paper.project.hitTest(c);if(!this.isEditable())return void(d&&"undefined"!=typeof d.item.__representation&&d.item.__representation.model.get("uri")&&window.open(d.item.__representation.model.get("uri"),"_blank"));if(this.isEditable()&&(!d||"undefined"==typeof d.item.__representation)){var e=this.toModelCoords(c),g={id:f.getUID("node"),created_by:this.renkan.current_user,position:{x:e.x,y:e.y}},h=this.renkan.project.addNode(g);this.getRepresentationByModel(h).openEditor()}paper.view.draw()},defaultDropHandler:function(b){var c={},d="";switch(b["text/x-iri-specific-site"]){case"twitter":d=a("
                                        ").html(b["text/x-iri-selected-html"]);var e=d.find(".tweet");c.title=this.renkan.translate("Tweet by ")+e.attr("data-name"),c.uri="http://twitter.com/"+e.attr("data-screen-name")+"/status/"+e.attr("data-tweet-id"),c.image=e.find(".avatar").attr("src"),c.description=e.find(".js-tweet-text:first").text();break;case"google":d=a("
                                        ").html(b["text/x-iri-selected-html"]),c.title=d.find("h3:first").text().trim(),c.uri=d.find("h3 a").attr("href"),c.description=d.find(".st:first").text().trim();break;default:b["text/x-iri-source-uri"]&&(c.uri=b["text/x-iri-source-uri"])}if((b["text/plain"]||b["text/x-iri-selected-text"])&&(c.description=(b["text/plain"]||b["text/x-iri-selected-text"]).replace(/[\s\n]+/gm," ").trim()),b["text/html"]||b["text/x-iri-selected-html"]){d=a("
                                        ").html(b["text/html"]||b["text/x-iri-selected-html"]);var f=d.find("image");f.length&&(c.image=f.attr("xlink:href"));var g=d.find("path");g.length&&(c.clipPath=g.attr("d"));var h=d.find("img");h.length&&(c.image=h[0].src);var i=d.find("a");i.length&&(c.uri=i[0].href),c.title=d.find("[title]").attr("title")||c.title,c.description=d.text().replace(/[\s\n]+/gm," ").trim()}b["text/uri-list"]&&(c.uri=b["text/uri-list"]),b["text/x-moz-url"]&&!c.title&&(c.title=(b["text/x-moz-url"].split("\n")[1]||"").trim(),c.title===c.uri&&(c.title=!1)),b["text/x-iri-source-title"]&&!c.title&&(c.title=b["text/x-iri-source-title"]),(b["text/html"]||b["text/x-iri-selected-html"])&&(d=a("
                                        ").html(b["text/html"]||b["text/x-iri-selected-html"]),c.image=d.find("[data-image]").attr("data-image")||c.image,c.uri=d.find("[data-uri]").attr("data-uri")||c.uri,c.title=d.find("[data-title]").attr("data-title")||c.title,c.description=d.find("[data-description]").attr("data-description")||c.description,c.clipPath=d.find("[data-clip-path]").attr("data-clip-path")||c.clipPath),c.title||(c.title=this.renkan.translate("Dragged resource"));for(var j=["title","description","uri","image"],k=0;k0&&(f-=this.renkan.$.find(".Rk-Bins").width()),paper.view.viewSize=new paper.Size([f,g])}else{for(a=0;a","Search in graph","Search in ","jsonIO","_proj","http_method","_load","redrawActive","loadingStatus","_data","saveStatus","fixSize","_save","ajax","contentType","JSON","stringify","success","_thrSave","throttle","setTimeout","changedAttributes","hasChanged","jsonIOSaveOnClick","_saveWarn","_onLeave","getdata","rx","matches","location","hash","match","beforeSend","autoScale","_checkLeave","removeClass","save","hasClass","Ldt","ProjectBin","ldt_type","Resclass","error","tagTemplate","annotationTemplate","proj_id","project_id","ldt_platform","searchbase","highlight","_e","convertTC","_ms","_res","_totalSeconds","abs","floor","_hours","_minutes","_seconds","_html","_projtitle","meta","count","tags","_tag","_title","htitle","encodedtitle","encodeURIComponent","annotations","_annotation","_description","content","_duration","end","begin","_img","hdescription","start","duration","mediaid","media","annotationid","show","dataType","lang","_q","ResultsBin","segmentTemplate","max_results","highlightrx","objects","_segment","_begin","start_ts","_end","iri_id","element_id","format","q","limit","ResourceList","resultTemplate","list","trim","_match","langs","en","ja","query","_result","encodeURI","snippet","define","_BaseRepresentation","_renderer","_changeBinding","redraw","change","_removeBinding","removeRepresentation","defer","_selectBinding","select","_unselectBinding","unselect","_super","_func","moveTo","trigger","unhighlight","mousedown","mouseup","value","getUtils","getRenderer","requtils","BaseRepresentation","_BaseButton","_pos","sector","_newTarget","source_representation","cloud_path","builders","circle","getShape","Path","getImageShape","radius","rectangle","Rectangle","ellipse","polygon","RegularPolygon","diamond","d","SQRT2","rotate","star","cloud","path","scale","triangle","svg","ShapeBuilder","NodeRepr","node_layer","activate","buildShape","hidden","ghost","strokeWidth","h_ratio","labels_$","normal_buttons","NodeEditButton","NodeRemoveButton","NodeHideButton","NodeShowButton","NodeLinkButton","NodeEnlargeButton","NodeShrinkButton","pending_delete_buttons","NodeRevertButton","all_buttons","active_buttons","last_circle_radius","minimap","minimap_circle","__representation","miniframe","node_group","addChild","_getStrokeWidth","has","_getSelectedStrokeWidth","changed","shapeBuilder","sendToBack","_model_coords","Point","_baseRadius","exp","is_dragging","paper_coords","toPaperCoords","circle_radius","forEach","setSectorSize","node_image","subtract","image_delta","multiply","old_act_btn","opacity","dashArray","selected","isEditable","highlighted","_strokeWidth","_color","_dash","strokeColor","_pc","lastImage","showImage","minipos","toMinimapCoords","miniradius","minisize","Size","fitBounds","dontRedrawEdges","ed","repr","getRepresentationByModel","from_representation","to_representation","_image","image_cache","clipPath","hasClipPath","_clip","baseRadius","centerPoint","instructions","lastCoords","minX","Infinity","minY","maxX","maxY","transformCoords","tabc","relative","newCoords","parseFloat","isY","instr","coords","lineTo","cubicCurveTo","quadraticCurveTo","_raster","Raster","locked","Group","clipped","_circleClip","divide","insertAbove","paperShift","_delta","openEditor","removeRepresentationsOfType","_editor","addRepresentation","draw","_uri","showNeighbors","hideButtons","buttons_timeout","undefined","hideNeighbors","indexNode","hiddenNodes","indexOf","splice","textToReplace","hlvalue","throttledPaperDraw","saveCoords","toModelCoords","_event","_isTouch","unselectAll","index","click_target","edge_layer","bundle","addToBundles","line","arrow_scale","pivot","arrow_angle","EdgeEditButton","EdgeRemoveButton","EdgeRevertButton","minimap_line","_getArrowScale","_opacity","_arrow_scale","_p0a","_p1a","_v","_r","_u","_ortho","_group_pos","getPosition","_p0b","_p1b","_a","angle","_textdelta","_handle","visible","handleIn","handleOut","bounds","_textpos","transform","-moz-transform","-webkit-transform","text_angle","reject","TempEdge","_p0","_p1","end_pos","_c","_hitResult","hitTest","findTarget","_endDrag","item","_target","_destmodel","_BaseEditor","buttons_layer","editor_block","_pts","range","editor_$","BaseEditor","NodeEditor","readOnlyTemplate","_created_by","_template","_image_placeholder","_size","keys","closeEditor","onFieldChange","assign","keyCode","files","FileReader","alert","onload","target","result","readAsDataURL","focus","_picker","hover","shiftSize","_newsize","shiftThickness","_oldThickness","_newThickness","titlehtml","EdgeEditor","_from_model","_to_model","BaseButton","_NodeButton","sectorInner","lastSectorInner","drawSector","startAngle","endAngle","imageName","clearTimeout","NodeButton","delid","delete_list","time","valueOf","confirm","addHiddenNode","unset","_off","_point","addTempEdge","MiniFrame","filesaver","representations","notif_$","setup","initialScale","totalScroll","mouse_down","selected_target","Layer","background_layer","topleft","bottomRight","cliprectangle","bundles","click_mode","_allowScroll","_originalScale","_zooming","_lastTapX","_lastTapY","icon_cache","imgname","throttledMouseMove","mousemove","mousewheel","onScroll","touchstart","_touches","touches","_lastTap","pow","onDoubleClick","touchmove","_newScale","_scaleRatio","_newOffset","setScale","touchend","dblclick","dragover","dragenter","dragleave","drop","types","getData","parse","bindClick","selector","fname","evt","last","hideNodes","showNodes","fadeIn","delay","fadeOut","mouseover","onResize","_ratio","newWidth","newHeight","ratioH","delta","ratioW","resizeZoom","_thRedraw","addRepresentations","_thRedrawUsers","el","_delay","$cpwrapper","$cplist","$this","rxs","_now","findWhere","delete_scheduled","rescaleMinimap","_repr","_inR","_outR","_startAngle","_endAngle","_padding","_imgname","_caption","_startRads","PI","_endRads","_startdx","sin","_startdy","cos","_startXIn","_startYIn","_startXOut","_startYOut","_enddx","_enddy","_endXIn","_endYIn","_endXOut","_endYOut","_centerR","_centerRads","_centerX","_centerY","_centerXIn","_centerXOut","_centerYIn","_centerYOut","_textX","_textY","arcTo","PointText","characterStyle","fontSize","paragraphStyle","justification","_visible","_restPos","_grp","_imgdelta","_currentPos","_edgeRepr","_bundle","_er","_dir","savebtn","tip","_offset","force_view","_xx","_yy","_minx","_miny","_maxx","_maxy","_scale","at","redrawMiniframe","bottomright","_type","RendererType","_collection","userTemplate","allUsers","models","ulistHtml","$userpanel","$name","$cpitems","$colorsquare","$input","blur","empty","parent","name","background","_representation","_representations","_from","_tmpEdge","hideNode","last_point","_scrolldelta","SQRT1_2","open","defaultDropHandler","newNode","tweetdiv","_svgimgs","_svgpaths","_imgs","_as","fields","drop_enhancer","jsondata","drop_handler","_nodedata","fullScreen","_isFull","mozFullScreen","webkitIsFullScreen","_requestMethods","_cancelMethods","widthAft","heightAft","viewSize","zoomOut","zoomIn","_scaleWidth","_scaleHeight","addNodeBtn","addEdgeBtn","exportProject","projectJSON","projectId","fileNameToSaveAs","space_id","objId","idsMap","projectJSONStr","blob","Blob","foldBins","sizeAft","foldBinsButton","sizeBef","animate","require","config","paths","jquery","underscore","startRenkan"],"mappings":"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","sourcesContent":["this[\"renkanJST\"] = this[\"renkanJST\"] || {};\n\nthis[\"renkanJST\"][\"templates/colorpicker.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                                      • ';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/edgeeditor.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(renkan.translate(\"Edit Edge\")) +\n'\\n

                                        \\n

                                        \\n \\n \\n

                                        \\n';\n if (options.show_edge_editor_uri) { ;\n__p += '\\n

                                        \\n \\n \\n \\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 } ;\n__p += '\\n';\n if (options.show_edge_editor_direction) { ;\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 ';\n if (options.show_edge_tooltip_color) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (edge.uri) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n__e(edge.title) +\n'\\n ';\n if (edge.uri) { ;\n__p += ' ';\n } ;\n__p += '\\n \\n

                                        \\n';\n if (options.show_edge_tooltip_uri && edge.uri) { ;\n__p += '\\n

                                        \\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\\n \\n

                                        ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                                        \\n

                                        ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                                        \\n

                                        Start: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'

                                        \\n
                                        \\n
                                      • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/segmenttemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                                      • \\n\\n \\n

                                        ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                                        \\n

                                        ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                                        \\n

                                        Start: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'

                                        \\n
                                        \\n
                                      • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/tagtemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                                      • \\n\\n \\n

                                        ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                                        \\n
                                        \\n
                                      • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/list-bin.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 } ;\n__p += '\\n

                                        \\n ';\n if (url) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n((__t = (htitle)) == null ? '' : __t) +\n'\\n ';\n if (url) { ;\n__p += '';\n } ;\n__p += '\\n

                                        \\n ';\n if (description) { ;\n__p += '\\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}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/main.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_bins) { ;\n__p += '\\n
                                        \\n
                                        \\n

                                        ' +\n__e( translate(\"Select contents:\")) +\n'

                                        \\n
                                        \\n \\n
                                        \\n
                                        \\n
                                          \\n
                                          \\n \\n
                                          \\n
                                          \\n \\n \\n
                                          \\n
                                            \\n
                                            \\n';\n } ;\n__p += ' ';\n if (options.show_editor) { ;\n__p += '\\n
                                            \\n

                                            \\n

                                            \\n \\n \\n

                                            \\n';\n if (options.show_node_editor_uri) { ;\n__p += '\\n

                                            \\n \\n \\n \\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 if (options.show_node_editor_style_color) { ;\n__p += '\\n
                                            \\n \\n ' +\n__e(renkan.translate(\"Node color:\")) +\n'\\n
                                            \\n \\n \\n \\n ' +\n((__t = ( renkan.colorPicker )) == null ? '' : __t) +\n'\\n ' +\n__e( renkan.translate(\"Choose color\") ) +\n'\\n
                                            \\n
                                            \\n ';\n } ;\n__p += '\\n ';\n if (options.show_node_editor_style_dash) { ;\n__p += '\\n
                                            \\n ' +\n__e(renkan.translate(\"Dash:\")) +\n'\\n \\n
                                            \\n ';\n } ;\n__p += '\\n ';\n if (options.show_node_editor_style_thickness) { ;\n__p += '\\n
                                            \\n ' +\n__e(renkan.translate(\"Thickness:\")) +\n'\\n -\\n ' +\n__e(node.thickness) +\n'\\n +\\n
                                            \\n ';\n } ;\n__p += '\\n
                                            \\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_image) { ;\n__p += '\\n
                                            \\n
                                            \\n \\n ';\n if (node.clip_path) { ;\n__p += '\\n \\n \\n \\n ';\n };\n__p += '\\n
                                            \\n
                                            \\n

                                            \\n \\n

                                            \\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 ';\n if (options.show_node_tooltip_color) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (node.uri) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n__e(node.title) +\n'\\n ';\n if (node.uri) { ;\n__p += '';\n } ;\n__p += '\\n \\n

                                            \\n';\n if (node.uri && options.show_node_tooltip_uri) { ;\n__p += '\\n

                                            \\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 } ;\n__p += ' ';\n if (node.has_creator && options.show_node_tooltip_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';\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
                                            \\n ';\n if (!options.editor_mode) { ;\n__p += '\\n

                                            \\n ' +\n__e( project.get(\"title\") || translate(\"Untitled project\")) +\n'\\n

                                            \\n ';\n } else { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ';\n if (options.show_user_list) { ;\n__p += '\\n
                                            \\n
                                            \\n ';\n if (options.show_user_color) { ;\n__p += '\\n
                                            \\n \\n ';\n if (options.user_color_editable) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (options.user_color_editable) { print(colorPicker) } ;\n__p += '\\n
                                            \\n ';\n } ;\n__p += '\\n <unknown user>\\n
                                            \\n
                                              \\n
                                              \\n ';\n } ;\n__p += '\\n ';\n if (options.home_button_url) {;\n__p += '\\n
                                              \\n \\n
                                              \\n
                                              \\n ' +\n__e( translate(options.home_button_title) ) +\n'\\n
                                              \\n
                                              \\n
                                              \\n ';\n } ;\n__p += '\\n ';\n if (options.show_fullscreen_button) { ;\n__p += '\\n
                                              \\n
                                              \\n
                                              \\n
                                              \\n ' +\n__e(translate(\"Full Screen\")) +\n'\\n
                                              \\n
                                              \\n
                                              \\n ';\n } ;\n__p += '\\n ';\n if (options.editor_mode) { ;\n__p += '\\n ';\n if (options.show_addnode_button) { ;\n__p += '\\n
                                              \\n
                                              \\n
                                              \\n
                                              \\n ' +\n__e(translate(\"Add Node\")) +\n'\\n
                                              \\n
                                              \\n
                                              \\n ';\n } ;\n__p += '\\n ';\n if (options.show_addedge_button) { ;\n__p += '\\n
                                              \\n
                                              \\n
                                              \\n
                                              \\n ' +\n__e(translate(\"Add Edge\")) +\n'\\n
                                              \\n
                                              \\n
                                              \\n ';\n } ;\n__p += '\\n ';\n if (options.show_export_button) { ;\n__p += '\\n
                                              \\n
                                              \\n
                                              \\n
                                              \\n ' +\n__e(translate(\"Download Project\")) +\n'\\n
                                              \\n
                                              \\n
                                              \\n ';\n } ;\n__p += '\\n ';\n if (options.show_save_button) { ;\n__p += '\\n
                                              \\n
                                              \\n
                                              \\n
                                              \\n
                                              \\n
                                              \\n ';\n } ;\n__p += '\\n ';\n if (options.show_open_button) { ;\n__p += '\\n
                                              \\n
                                              \\n
                                              \\n
                                              \\n ' +\n__e(translate(\"Open Project\")) +\n'\\n
                                              \\n
                                              \\n
                                              \\n ';\n } ;\n__p += '\\n ';\n if (options.show_bookmarklet) { ;\n__p += '\\n
                                              \\n \\n
                                              \\n
                                              \\n ' +\n__e(translate(\"Renkan \\'Drag-to-Add\\' bookmarklet\")) +\n'\\n
                                              \\n
                                              \\n
                                              \\n
                                              \\n ';\n } ;\n__p += '\\n ';\n } else { ;\n__p += '\\n ';\n if (options.show_export_button) { ;\n__p += '\\n
                                              \\n
                                              \\n
                                              \\n
                                              \\n ' +\n__e(translate(\"Download Project\")) +\n'\\n
                                              \\n
                                              \\n
                                              \\n
                                              \\n ';\n } ;\n__p += '\\n ';\n }; ;\n__p += '\\n ';\n if (options.show_search_field) { ;\n__p += '\\n
                                              \\n \\n
                                              \\n
                                              \\n ';\n } ;\n__p += '\\n
                                              \\n';\n } ;\n__p += '\\n
                                              \\n
                                              \\n
                                              \\n ';\n if (options.editor_mode && options.save_view) { ;\n__p += '\\n
                                              \\n ';\n } ;\n__p += '\\n ';\n if (options.save_view) { ;\n__p += '\\n
                                              \\n \\t\\n ';\n } ;\n__p += '\\n
                                              \\n ';\n } ;\n__p += '\\n \\n\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/search.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                                            • ' +\n((__t = ( title )) == null ? '' : __t) +\n'
                                            • ';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/wikipedia-bin/resulttemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                                            • \\n\\n \\n

                                              \\n ' +\n((__t = (htitle)) == null ? '' : __t) +\n'\\n

                                              \\n

                                              ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                                              \\n
                                            • \\n';\n\n}\nreturn __p\n};","/* Declaring the Renkan Namespace Rkns and Default values */\n\n(function(root) {\n\n \"use strict\";\n\n if (typeof root.Rkns !== \"object\") {\n root.Rkns = {};\n }\n\n var Rkns = root.Rkns;\n var $ = Rkns.$ = root.jQuery;\n var _ = Rkns._ = root._;\n\n Rkns.pickerColors = [\"#8f1919\", \"#a80000\", \"#d82626\", \"#ff0000\", \"#e87c7c\", \"#ff6565\", \"#f7d3d3\", \"#fecccc\",\n \"#8f5419\", \"#a85400\", \"#d87f26\", \"#ff7f00\", \"#e8b27c\", \"#ffb265\", \"#f7e5d3\", \"#fee5cc\",\n \"#8f8f19\", \"#a8a800\", \"#d8d826\", \"#feff00\", \"#e8e87c\", \"#feff65\", \"#f7f7d3\", \"#fefecc\",\n \"#198f19\", \"#00a800\", \"#26d826\", \"#00ff00\", \"#7ce87c\", \"#65ff65\", \"#d3f7d3\", \"#ccfecc\",\n \"#198f8f\", \"#00a8a8\", \"#26d8d8\", \"#00feff\", \"#7ce8e8\", \"#65feff\", \"#d3f7f7\", \"#ccfefe\",\n \"#19198f\", \"#0000a8\", \"#2626d8\", \"#0000ff\", \"#7c7ce8\", \"#6565ff\", \"#d3d3f7\", \"#ccccfe\",\n \"#8f198f\", \"#a800a8\", \"#d826d8\", \"#ff00fe\", \"#e87ce8\", \"#ff65fe\", \"#f7d3f7\", \"#feccfe\",\n \"#000000\", \"#242424\", \"#484848\", \"#6d6d6d\", \"#919191\", \"#b6b6b6\", \"#dadada\", \"#ffffff\"\n ];\n\n Rkns.__renkans = [];\n\n var _BaseBin = Rkns._BaseBin = function(_renkan, _opts) {\n if (typeof _renkan !== \"undefined\") {\n this.renkan = _renkan;\n this.renkan.$.find(\".Rk-Bin-Main\").hide();\n this.$ = Rkns.$('
                                            • ')\n .addClass(\"Rk-Bin\")\n .appendTo(_renkan.$.find(\".Rk-Bin-List\"));\n this.title_icon_$ = Rkns.$('')\n .addClass(\"Rk-Bin-Title-Icon\")\n .appendTo(this.$);\n\n var _this = this;\n\n Rkns.$('')\n .attr({\n href: \"#\",\n title: _renkan.translate(\"Close bin\")\n })\n .addClass(\"Rk-Bin-Close\")\n .html('×')\n .appendTo(this.$)\n .click(function() {\n _this.destroy();\n if (!_renkan.$.find(\".Rk-Bin-Main:visible\").length) {\n _renkan.$.find(\".Rk-Bin-Main:last\").slideDown();\n }\n _renkan.resizeBins();\n return false;\n });\n Rkns.$('')\n .attr({\n href: \"#\",\n title: _renkan.translate(\"Refresh bin\")\n })\n .addClass(\"Rk-Bin-Refresh\")\n .appendTo(this.$)\n .click(function() {\n _this.refresh();\n return false;\n });\n this.count_$ = Rkns.$('
                                              ')\n .addClass(\"Rk-Bin-Count\")\n .appendTo(this.$);\n this.title_$ = Rkns.$('

                                              ')\n .addClass(\"Rk-Bin-Title\")\n .appendTo(this.$);\n this.main_$ = Rkns.$('
                                              ')\n .addClass(\"Rk-Bin-Main\")\n .appendTo(this.$)\n .html('

                                              ' + _renkan.translate(\"Loading, please wait\") + '

                                              ');\n this.title_$.html(_opts.title || '(new bin)');\n this.renkan.resizeBins();\n\n if (_opts.auto_refresh) {\n window.setInterval(function() {\n _this.refresh();\n }, _opts.auto_refresh);\n }\n }\n };\n\n _BaseBin.prototype.destroy = function() {\n this.$.detach();\n this.renkan.resizeBins();\n };\n\n /* Point of entry */\n\n var Renkan = Rkns.Renkan = function(_opts) {\n var _this = this;\n\n Rkns.__renkans.push(this);\n\n this.options = _.defaults(_opts, Rkns.defaults, {\n templates: renkanJST\n });\n this.template = renkanJST['templates/main.html'];\n\n _.each(this.options.property_files, function(f) {\n Rkns.$.getJSON(f, function(data) {\n _this.options.properties = _this.options.properties.concat(data);\n });\n });\n\n this.read_only = this.options.read_only || !this.options.editor_mode;\n\n this.project = new Rkns.Models.Project();\n this.dataloader = new Rkns.DataLoader.Loader(this.project, this.options);\n\n this.setCurrentUser = function(user_id, user_name) {\n this.project.addUser({\n _id: user_id,\n title: user_name\n });\n this.current_user = user_id;\n this.renderer.redrawUsers();\n };\n\n if (typeof this.options.user_id !== \"undefined\") {\n this.current_user = this.options.user_id;\n }\n this.$ = Rkns.$(\"#\" + this.options.container);\n this.$\n .addClass(\"Rk-Main\")\n .html(this.template(this));\n\n this.tabs = [];\n this.search_engines = [];\n\n this.current_user_list = new Rkns.Models.UsersList();\n\n this.current_user_list.on(\"add remove\", function() {\n if (this.renderer) {\n this.renderer.redrawUsers();\n }\n });\n\n this.colorPicker = (function() {\n var _tmpl = renkanJST['templates/colorpicker.html'];\n return '
                                                ' + Rkns.pickerColors.map(function(c) {\n return _tmpl({\n c: c\n });\n }).join(\"\") + '
                                              ';\n })();\n\n if (this.options.show_editor) {\n this.renderer = new Rkns.Renderer.Scene(this);\n }\n\n if (!this.options.search.length) {\n this.$.find(\".Rk-Web-Search-Form\").detach();\n } else {\n var _tmpl = renkanJST['templates/search.html'],\n _select = this.$.find(\".Rk-Search-List\"),\n _input = this.$.find(\".Rk-Web-Search-Input\"),\n _form = this.$.find(\".Rk-Web-Search-Form\");\n _.each(this.options.search, function(_search, _key) {\n if (Rkns[_search.type] && Rkns[_search.type].Search) {\n _this.search_engines.push(new Rkns[_search.type].Search(_this, _search));\n }\n });\n _select.html(\n _(this.search_engines).map(function(_search, _key) {\n return _tmpl({\n key: _key,\n title: _search.getSearchTitle(),\n className: _search.getBgClass()\n });\n }).join(\"\")\n );\n _select.find(\"li\").click(function() {\n var _el = Rkns.$(this);\n _this.setSearchEngine(_el.attr(\"data-key\"));\n _form.submit();\n });\n _form.submit(function() {\n if (_input.val()) {\n var _search = _this.search_engine;\n _search.search(_input.val());\n }\n return false;\n });\n this.$.find(\".Rk-Search-Current\").mouseenter(\n function() {\n _select.slideDown();\n }\n );\n this.$.find(\".Rk-Search-Select\").mouseleave(\n function() {\n _select.hide();\n }\n );\n this.setSearchEngine(0);\n }\n _.each(this.options.bins, function(_bin) {\n if (Rkns[_bin.type] && Rkns[_bin.type].Bin) {\n _this.tabs.push(new Rkns[_bin.type].Bin(_this, _bin));\n }\n });\n\n var elementDropped = false;\n\n this.$.find(\".Rk-Bins\")\n .on(\"click\", \".Rk-Bin-Title,.Rk-Bin-Title-Icon\", function() {\n var _mainDiv = Rkns.$(this).siblings(\".Rk-Bin-Main\");\n if (_mainDiv.is(\":hidden\")) {\n _this.$.find(\".Rk-Bin-Main\").slideUp();\n _mainDiv.slideDown();\n }\n });\n\n if (this.options.show_editor) {\n\n this.$.find(\".Rk-Bins\").on(\"mouseover\", \".Rk-Bin-Item\", function(_e) {\n var _t = Rkns.$(this);\n if (_t && $(_t).attr(\"data-uri\")) {\n var _models = _this.project.get(\"nodes\").where({\n uri: $(_t).attr(\"data-uri\")\n });\n _.each(_models, function(_model) {\n _this.renderer.highlightModel(_model);\n });\n }\n }).mouseout(function() {\n _this.renderer.unhighlightAll();\n }).on(\"mousemove\", \".Rk-Bin-Item\", function(e) {\n try {\n this.dragDrop();\n } catch (err) {}\n }).on(\"touchstart\", \".Rk-Bin-Item\", function(e) {\n elementDropped = false;\n }).on(\"touchmove\", \".Rk-Bin-Item\", function(e) {\n e.preventDefault();\n var touch = e.originalEvent.changedTouches[0],\n off = _this.renderer.canvas_$.offset(),\n w = _this.renderer.canvas_$.width(),\n h = _this.renderer.canvas_$.height();\n if (touch.pageX >= off.left && touch.pageX < (off.left + w) && touch.pageY >= off.top && touch.pageY < (off.top + h)) {\n if (elementDropped) {\n _this.renderer.onMouseMove(touch, true);\n } else {\n elementDropped = true;\n var div = document.createElement('div');\n div.appendChild(this.cloneNode(true));\n _this.renderer.dropData({\n \"text/html\": div.innerHTML\n }, touch);\n _this.renderer.onMouseDown(touch, true);\n }\n }\n }).on(\"touchend\", \".Rk-Bin-Item\", function(e) {\n if (elementDropped) {\n _this.renderer.onMouseUp(e.originalEvent.changedTouches[0], true);\n }\n elementDropped = false;\n }).on(\"dragstart\", \".Rk-Bin-Item\", function(e) {\n var div = document.createElement('div');\n div.appendChild(this.cloneNode(true));\n try {\n e.originalEvent.dataTransfer.setData(\"text/html\", div.innerHTML);\n } catch (err) {\n e.originalEvent.dataTransfer.setData(\"text\", div.innerHTML);\n }\n });\n\n }\n\n Rkns.$(window).resize(function() {\n _this.resizeBins();\n });\n\n var lastsearch = false,\n lastval = '';\n\n this.$.find(\".Rk-Bins-Search-Input\").on(\"change keyup paste input\", function() {\n var val = Rkns.$(this).val();\n if (val === lastval) {\n return;\n }\n var search = Rkns.Utils.regexpFromTextOrArray(val.length > 1 ? val : null);\n if (search.source === lastsearch) {\n return;\n }\n lastsearch = search.source;\n _.each(_this.tabs, function(tab) {\n tab.render(search);\n });\n\n });\n this.$.find(\".Rk-Bins-Search-Form\").submit(function() {\n return false;\n });\n\n };\n\n Renkan.prototype.translate = function(_text) {\n if (Rkns.i18n[this.options.language] && Rkns.i18n[this.options.language][_text]) {\n return Rkns.i18n[this.options.language][_text];\n }\n if (this.options.language.length > 2 && Rkns.i18n[this.options.language.substr(0, 2)] && Rkns.i18n[this.options.language.substr(0, 2)][_text]) {\n return Rkns.i18n[this.options.language.substr(0, 2)][_text];\n }\n return _text;\n };\n\n Renkan.prototype.onStatusChange = function() {\n this.renderer.onStatusChange();\n };\n\n Renkan.prototype.setSearchEngine = function(_key) {\n this.search_engine = this.search_engines[_key];\n this.$.find(\".Rk-Search-Current\").attr(\"class\", \"Rk-Search-Current \" + this.search_engine.getBgClass());\n var listClasses = this.search_engine.getBgClass().split(\" \");\n var classes = \"\";\n for (var i = 0; i < listClasses.length; i++) {\n classes += \".\" + listClasses[i];\n }\n this.$.find(\".Rk-Web-Search-Input.Rk-Search-Input\").attr(\"placeholder\", this.translate(\"Search in \") + this.$.find(\".Rk-Search-List \" + classes).html());\n };\n\n Renkan.prototype.resizeBins = function() {\n var _d = +this.$.find(\".Rk-Bins-Head\").outerHeight();\n this.$.find(\".Rk-Bin-Title:visible\").each(function() {\n _d += Rkns.$(this).outerHeight();\n });\n this.$.find(\".Rk-Bin-Main\").css({\n height: this.$.find(\".Rk-Bins\").height() - _d\n });\n };\n\n /* Utility functions */\n var getUUID4 = function() {\n return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {\n var r = Math.random() * 16 | 0,\n v = c === 'x' ? r : (r & 0x3 | 0x8);\n return v.toString(16);\n });\n };\n\n Rkns.Utils = {\n getUUID4: getUUID4,\n getUID: (function() {\n function pad(n) {\n return n < 10 ? '0' + n : n;\n }\n var _d = new Date(),\n ID_AUTO_INCREMENT = 0,\n ID_BASE = _d.getUTCFullYear() + '-' +\n pad(_d.getUTCMonth() + 1) + '-' +\n pad(_d.getUTCDate()) + '-' +\n getUUID4();\n return function(_base) {\n var _n = (++ID_AUTO_INCREMENT).toString(16),\n _uidbase = (typeof _base === \"undefined\" ? \"\" : _base + \"-\");\n while (_n.length < 4) {\n _n = '0' + _n;\n }\n return _uidbase + ID_BASE + '-' + _n;\n };\n })(),\n getFullURL: function(url) {\n\n if (typeof(url) === 'undefined' || url == null) {\n return \"\";\n }\n if (/https?:\\/\\//.test(url)) {\n return url;\n }\n var img = new Image();\n img.src = url;\n var res = img.src;\n img.src = null;\n return res;\n\n },\n inherit: function(_baseClass, _callbefore) {\n\n var _class = function(_arg) {\n if (typeof _callbefore === \"function\") {\n _callbefore.apply(this, Array.prototype.slice.call(arguments, 0));\n }\n _baseClass.apply(this, Array.prototype.slice.call(arguments, 0));\n if (typeof this._init === \"function\" && !this._initialized) {\n this._init.apply(this, Array.prototype.slice.call(arguments, 0));\n this._initialized = true;\n }\n };\n _.extend(_class.prototype, _baseClass.prototype);\n\n return _class;\n\n },\n regexpFromTextOrArray: (function() {\n var charsub = [\n '[aáàâä]',\n '[cç]',\n '[eéèêë]',\n '[iíìîï]',\n '[oóòôö]',\n '[uùûü]'\n ],\n removeChars = [\n String.fromCharCode(768), String.fromCharCode(769), String.fromCharCode(770), String.fromCharCode(771), String.fromCharCode(807),\n \"{\", \"}\", \"(\", \")\", \"[\", \"]\", \"【\", \"】\", \"、\", \"・\", \"‥\", \"。\", \"「\", \"」\", \"『\", \"』\", \"〜\", \":\", \"!\", \"?\", \" \",\n \",\", \" \", \";\", \"(\", \")\", \".\", \"*\", \"+\", \"\\\\\", \"?\", \"|\", \"{\", \"}\", \"[\", \"]\", \"^\", \"#\", \"/\"\n ],\n remsrc = \"[\\\\\" + removeChars.join(\"\\\\\") + \"]\",\n remrx = new RegExp(remsrc, \"gm\"),\n charsrx = _.map(charsub, function(c) {\n return new RegExp(c);\n });\n\n function replaceText(_text) {\n var txt = _text.toLowerCase().replace(remrx, \"\"),\n src = \"\";\n\n function makeReplaceFunc(l) {\n return function(k, v) {\n l = l.replace(charsrx[k], v);\n };\n }\n for (var j = 0; j < txt.length; j++) {\n if (j) {\n src += remsrc + \"*\";\n }\n var l = txt[j];\n _.each(charsub, makeReplaceFunc(l));\n src += l;\n }\n return src;\n }\n\n function getSource(inp) {\n switch (typeof inp) {\n case \"string\":\n return replaceText(inp);\n case \"object\":\n var src = '';\n _.each(inp, function(v) {\n var res = getSource(v);\n if (res) {\n if (src) {\n src += '|';\n }\n src += res;\n }\n });\n return src;\n }\n return '';\n }\n\n return function(_textOrArray) {\n var source = getSource(_textOrArray);\n if (source) {\n var testrx = new RegExp(source, \"im\"),\n replacerx = new RegExp('(' + source + ')', \"igm\");\n return {\n isempty: false,\n source: source,\n test: function(_t) {\n return testrx.test(_t);\n },\n replace: function(_text, _replace) {\n return _text.replace(replacerx, _replace);\n }\n };\n } else {\n return {\n isempty: true,\n source: '',\n test: function() {\n return true;\n },\n replace: function(_text) {\n return text;\n }\n };\n }\n };\n })(),\n /* The minimum distance (in pixels) the mouse has to move to consider an element was dragged */\n _MIN_DRAG_DISTANCE: 2,\n /* Distance between the inner and outer radius of buttons that appear when hovering on a node */\n _NODE_BUTTON_WIDTH: 40,\n\n _EDGE_BUTTON_INNER: 2,\n _EDGE_BUTTON_OUTER: 40,\n /* Constants used to know if a specific action is to be performed when clicking on the canvas */\n _CLICKMODE_ADDNODE: 1,\n _CLICKMODE_STARTEDGE: 2,\n _CLICKMODE_ENDEDGE: 3,\n /* Node size step: Used to calculate the size change when clicking the +/- buttons */\n _NODE_SIZE_STEP: Math.LN2 / 4,\n _MIN_SCALE: 1 / 20,\n _MAX_SCALE: 20,\n _MOUSEMOVE_RATE: 80,\n _DOUBLETAP_DELAY: 800,\n /* Maximum distance in pixels (squared, to reduce calculations)\n * between two taps when double-tapping on a touch terminal */\n _DOUBLETAP_DISTANCE: 20 * 20,\n /* A placeholder so a default colour is displayed when a node has a null value for its user property */\n _USER_PLACEHOLDER: function(_renkan) {\n return {\n color: _renkan.options.default_user_color,\n title: _renkan.translate(\"(unknown user)\"),\n get: function(attr) {\n return this[attr] || false;\n }\n };\n },\n /* The code for the \"Drag and Add Bookmarklet\", slightly minified and with whitespaces removed, though\n * it doesn't seem that it's still a requirement in newer browsers (i.e. the ones compatibles with canvas drawing)\n */\n _BOOKMARKLET_CODE: function(_renkan) {\n return \"(function(a,b,c,d,e,f,h,i,j,k,l,m,n,o,p,q,r){a=document;b=a.body;c=a.location.href;j='draggable';m='text/x-iri-';d=a.createElement('div');d.innerHTML='\" +\n _renkan.translate(\"Drag items from this website, drop them in Renkan\").replace(/ /g, \"_\") +\n \"

                                              '.replace(/_/g,String.fromCharCode(32));b.appendChild(d);e=[{r:/https?:\\\\/\\\\/[^\\\\/]*twitter\\\\.com\\\\//,s:'.tweet',n:'twitter'},{r:/https?:\\\\/\\\\/[^\\\\/]*google\\\\.[^\\\\/]+\\\\//,s:'.g',n:'google'},{r:/https?:\\\\/\\\\/[^\\\\/]*lemonde\\\\.fr\\\\//,s:'[data-vr-contentbox]',n:'lemonde'}];f=false;e.forEach(function(g){if(g.r.test(c)){f=g;}});if(f){h=function(){Array.prototype.forEach.call(a.querySelectorAll(f.s),function(i){i[j]=true;k=i.style;k.borderWidth='2px';k.borderColor='#909';k.borderStyle='solid';k.backgroundColor='rgba(200,0,180,.1)';})};window.setInterval(h,500);h();};a.addEventListener('dragstart',function(k){l=k.dataTransfer;l.setData(m+'source-uri',c);l.setData(m+'source-title',a.title);n=k.target;if(f){o=n;while(!o.attributes[j]){o=o.parentNode;if(o==b){break;}}}if(f&&o.attributes[j]){p=o.cloneNode(true);l.setData(m+'specific-site',f.n)}else{q=a.getSelection();if(q.type==='Range'||!q.type){p=q.getRangeAt(0).cloneContents();}else{p=n.cloneNode();}}r=a.createElement('div');r.appendChild(p);l.setData('text/x-iri-selected-text',r.textContent.trim());l.setData('text/x-iri-selected-html',r.innerHTML);},false);})();\";\n },\n /* Shortens text to the required length then adds ellipsis */\n shortenText: function(_text, _maxlength) {\n return (_text.length > _maxlength ? (_text.substr(0, _maxlength) + '…') : _text);\n },\n /* Drawing an edit box with an arrow and positioning the edit box according to the position of the node/edge being edited\n * Called by Rkns.Renderer.NodeEditor and Rkns.Renderer.EdgeEditor */\n drawEditBox: function(_options, _coords, _path, _xmargin, _selector) {\n _selector.css({\n width: (_options.tooltip_width - 2 * _options.tooltip_padding)\n });\n var _height = _selector.outerHeight() + 2 * _options.tooltip_padding,\n _isLeft = (_coords.x < paper.view.center.x ? 1 : -1),\n _left = _coords.x + _isLeft * (_xmargin + _options.tooltip_arrow_length),\n _right = _coords.x + _isLeft * (_xmargin + _options.tooltip_arrow_length + _options.tooltip_width),\n _top = _coords.y - _height / 2;\n if (_top + _height > (paper.view.size.height - _options.tooltip_margin)) {\n _top = Math.max(paper.view.size.height - _options.tooltip_margin, _coords.y + _options.tooltip_arrow_width / 2) - _height;\n }\n if (_top < _options.tooltip_margin) {\n _top = Math.min(_options.tooltip_margin, _coords.y - _options.tooltip_arrow_width / 2);\n }\n var _bottom = _top + _height;\n /* jshint laxbreak:true */\n _path.segments[0].point = _path.segments[7].point = _coords.add([_isLeft * _xmargin, 0]);\n _path.segments[1].point.x = _path.segments[2].point.x = _path.segments[5].point.x = _path.segments[6].point.x = _left;\n _path.segments[3].point.x = _path.segments[4].point.x = _right;\n _path.segments[2].point.y = _path.segments[3].point.y = _top;\n _path.segments[4].point.y = _path.segments[5].point.y = _bottom;\n _path.segments[1].point.y = _coords.y - _options.tooltip_arrow_width / 2;\n _path.segments[6].point.y = _coords.y + _options.tooltip_arrow_width / 2;\n _path.closed = true;\n _path.fillColor = new paper.GradientColor(new paper.Gradient([_options.tooltip_top_color, _options.tooltip_bottom_color]), [0, _top], [0, _bottom]);\n _selector.css({\n left: (_options.tooltip_padding + Math.min(_left, _right)),\n top: (_options.tooltip_padding + _top)\n });\n return _path;\n },\n // from http://stackoverflow.com/a/6444043\n increaseBrightness: function (hex, percent){\n // strip the leading # if it's there\n hex = hex.replace(/^\\s*#|\\s*$/g, '');\n\n // convert 3 char codes --> 6, e.g. `E0F` --> `EE00FF`\n if(hex.length === 3){\n hex = hex.replace(/(.)/g, '$1$1');\n }\n\n var r = parseInt(hex.substr(0, 2), 16),\n g = parseInt(hex.substr(2, 2), 16),\n b = parseInt(hex.substr(4, 2), 16);\n\n return '#' +\n ((0|(1<<8) + r + (256 - r) * percent / 100).toString(16)).substr(1) +\n ((0|(1<<8) + g + (256 - g) * percent / 100).toString(16)).substr(1) +\n ((0|(1<<8) + b + (256 - b) * percent / 100).toString(16)).substr(1);\n }\n };\n})(window);\n\n/* END main.js */\n","(function(root) {\n\n \"use strict\";\n\n var DataLoader = root.Rkns.DataLoader = {\n converters: {\n from1to2: function(data) {\n\n var i, len;\n if(typeof data.nodes !== 'undefined') {\n for(i=0, len=data.nodes.length; i 1 ? options.offset[1]\n : options.offset[0];\n }\n else if (options.offset.x != null) {\n offset.x = options.offset.x;\n offset.y = options.offset.y;\n }\n options.offset = offset;\n }\n return options;\n },\n toJSON : function() {\n return {\n _id : this.get(\"_id\"),\n zoom_level : this.get(\"zoom_level\"),\n offset : this.get(\"offset\"),\n title : this.get(\"title\"),\n description : this.get(\"description\"),\n created_by : this.get(\"created_by\") ? this.get(\"created_by\")\n .get(\"_id\") : null,\n hidden_nodes: this.get(\"hidden_nodes\")\n // Don't need project id\n };\n }\n });\n\n // PROJECT\n var Project = Models.Project = RenkanModel.extend({\n schema_version : \"2\",\n type : \"project\",\n blacklist : [ 'saveStatus', 'loadingStatus'],\n relations : [ {\n type : Backbone.HasMany,\n key : \"users\",\n relatedModel : User,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"nodes\",\n relatedModel : Node,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"edges\",\n relatedModel : Edge,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"views\",\n relatedModel : View,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n } ],\n addUser : function(_props, _options) {\n _props.project = this;\n var _user = User.findOrCreate(_props);\n this.get(\"users\").push(_user, _options);\n return _user;\n },\n addNode : function(_props, _options) {\n _props.project = this;\n var _node = Node.findOrCreate(_props);\n this.get(\"nodes\").push(_node, _options);\n return _node;\n },\n addEdge : function(_props, _options) {\n _props.project = this;\n var _edge = Edge.findOrCreate(_props);\n this.get(\"edges\").push(_edge, _options);\n return _edge;\n },\n addView : function(_props, _options) {\n _props.project = this;\n // TODO: check if need to replace with create only\n var _view = View.findOrCreate(_props);\n // TODO: Should we remember only one view?\n this.get(\"views\").push(_view, _options);\n return _view;\n },\n removeNode : function(_model) {\n this.get(\"nodes\").remove(_model);\n },\n removeEdge : function(_model) {\n this.get(\"edges\").remove(_model);\n },\n validate : function(options) {\n var _project = this;\n _.each(\n [].concat(options.users, options.nodes, options.edges,options.views),\n function(_item) {\n if (_item) {\n _item.project = _project;\n }\n }\n );\n },\n getSchemaVersion : function(data) {\n var t = data;\n if(typeof(t) === \"undefined\") {\n t = this;\n }\n var version = t.schema_version;\n if(!version) {\n return 1;\n }\n else {\n return version;\n }\n },\n // Add event handler to remove edges when a node is removed\n initialize : function() {\n var _this = this;\n this.on(\"remove:nodes\", function(_node) {\n _this.get(\"edges\").remove(\n _this.get(\"edges\").filter(\n function(_edge) {\n return _edge.get(\"from\") === _node ||\n _edge.get(\"to\") === _node;\n }));\n });\n },\n toJSON : function() {\n var json = _.clone(this.attributes);\n for ( var attr in json) {\n if ((json[attr] instanceof Backbone.Model) ||\n (json[attr] instanceof Backbone.Collection) ||\n (json[attr] instanceof RenkanModel)) {\n json[attr] = json[attr].toJSON();\n }\n }\n return _.omit(json, this.blacklist);\n }\n });\n\n var RosterUser = Models.RosterUser = Backbone.Model\n .extend({\n type : \"roster_user\",\n idAttribute : \"_id\",\n\n constructor : function(options) {\n\n if (typeof options !== \"undefined\") {\n options._id = options._id ||\n options.id ||\n Models.getUID(this);\n options.title = options.title || \"(untitled \" + this.type + \")\";\n options.description = options.description || \"\";\n options.uri = options.uri || \"\";\n options.project = options.project || null;\n options.site_id = options.site_id || 0;\n\n if (typeof this.prepare === \"function\") {\n options = this.prepare(options);\n }\n }\n Backbone.Model.prototype.constructor.call(this, options);\n },\n\n validate : function() {\n if (!this.type) {\n return \"object has no type\";\n }\n },\n\n prepare : function(options) {\n options.color = options.color || \"#666666\";\n return options;\n },\n\n toJSON : function() {\n return {\n _id : this.get(\"_id\"),\n title : this.get(\"title\"),\n uri : this.get(\"uri\"),\n description : this.get(\"description\"),\n color : this.get(\"color\"),\n project : (this.get(\"project\") != null) ? this.get(\n \"project\").get(\"id\") : null,\n site_id : this.get(\"site_id\")\n };\n }\n });\n\n var UsersList = Models.UsersList = Backbone.Collection.extend({\n model : RosterUser\n });\n\n})(window);\n","Rkns.defaults = {\n\n language: (navigator.language || navigator.userLanguage || \"en\"),\n /* GUI Language */\n container: \"renkan\",\n /* GUI Container DOM element ID */\n search: [],\n /* List of Search Engines */\n bins: [],\n /* List of Bins */\n static_url: \"\",\n /* URL for static resources */\n popup_editor: true,\n /* show the node editor as a popup inside the renkan view */\n editor_panel: 'editor-panel',\n /* GUI continer DOM element ID of the editor panel */\n show_bins: true,\n /* Show bins in left column */\n properties: [],\n /* Semantic properties for edges */\n show_editor: true,\n /* Show the graph editor... Setting this to \"false\" only shows the bins part ! */\n read_only: false,\n /* Allows editing of renkan without changing the rest of the GUI. Can be switched on/off on the fly to block/enable editing */\n editor_mode: true,\n /* Switch for Publish/Edit GUI. If editor_mode is false, read_only will be true. */\n manual_save: false,\n /* In snapshot mode, clicking on the floppy will save a snapshot. Otherwise, it will show the connection status */\n show_top_bar: true,\n /* Show the top bar, (title, buttons, users) */\n default_user_color: \"#303030\",\n size_bug_fix: true,\n /* Resize the canvas after load (fixes a bug on iPad and FF Mac) */\n force_resize: false,\n allow_double_click: true,\n /* Allows Double Click to create a node on an empty background */\n zoom_on_scroll: true,\n /* Allows to use the scrollwheel to zoom */\n element_delete_delay: 0,\n /* Delay between clicking on the bin on an element and really deleting it\n Set to 0 for delete confirm */\n autoscale_padding: 50,\n resize: true,\n\n /* zoom options */\n show_zoom: true,\n /* show zoom buttons */\n save_view: true,\n /* show buttons to save view */\n default_view: false,\n /* Allows to load default view (zoom+offset) at start on read_only mode, instead of autoScale. the default_view will be the last */\n\n\n /* TOP BAR BUTTONS */\n show_search_field: true,\n show_user_list: true,\n user_name_editable: true,\n user_color_editable: true,\n show_user_color: true,\n show_save_button: true,\n show_export_button: true,\n show_open_button: false,\n show_addnode_button: true,\n show_addedge_button: true,\n show_bookmarklet: true,\n show_fullscreen_button: true,\n home_button_url: false,\n home_button_title: \"Home\",\n\n /* MINI-MAP OPTIONS */\n\n show_minimap: true,\n /* Show a small map at the bottom right */\n minimap_width: 160,\n minimap_height: 120,\n minimap_padding: 20,\n minimap_background_color: \"#ffffff\",\n minimap_border_color: \"#cccccc\",\n minimap_highlight_color: \"#ffff00\",\n minimap_highlight_weight: 5,\n\n\n /* EDGE/NODE COMMON OPTIONS */\n\n buttons_background: \"#202020\",\n buttons_label_color: \"#c000c0\",\n buttons_label_font_size: 9,\n\n ghost_opacity : 0.3,\n /* opacity when the hidden element is revealed */\n default_dash_array : [4, 5],\n /* dash line genometry */\n\n /* NODE DISPLAY OPTIONS */\n\n show_node_circles: true,\n /* Show circles for nodes */\n clip_node_images: true,\n /* Constraint node images to circles */\n node_images_fill_mode: false,\n /* Set to false for \"letterboxing\" (height/width of node adapted to show full image)\n Set to true for \"crop\" (adapted to fill circle) */\n node_size_base: 25,\n node_stroke_width: 2,\n node_stroke_max_width: 12,\n selected_node_stroke_width: 4,\n selected_node_stroke_max_width: 24,\n node_stroke_witdh_scale: 5,\n node_fill_color: \"#ffffff\",\n highlighted_node_fill_color: \"#ffff00\",\n node_label_distance: 5,\n /* Vertical distance between node and label */\n node_label_max_length: 60,\n /* Maximum displayed text length */\n label_untitled_nodes: \"(untitled)\",\n /* Label to display on untitled nodes */\n change_shapes: true,\n /* Change shapes enabled */\n\n /* EDGE DISPLAY OPTIONS */\n\n edge_stroke_width: 2,\n edge_stroke_max_width: 12,\n selected_edge_stroke_width: 4,\n selected_edge_stroke_max_width: 24,\n edge_stroke_witdh_scale: 5,\n\n edge_label_distance: 0,\n edge_label_max_length: 20,\n edge_arrow_length: 18,\n edge_arrow_width: 12,\n edge_arrow_max_width: 32,\n edge_gap_in_bundles: 12,\n label_untitled_edges: \"\",\n\n /* CONTEXTUAL DISPLAY (TOOLTIP OR EDITOR) OPTIONS */\n\n tooltip_width: 275,\n tooltip_padding: 10,\n tooltip_margin: 15,\n tooltip_arrow_length : 20,\n tooltip_arrow_width : 40,\n tooltip_top_color: \"#f0f0f0\",\n tooltip_bottom_color: \"#d0d0d0\",\n tooltip_border_color: \"#808080\",\n tooltip_border_width: 1,\n\n /* NODE EDITOR OPTIONS */\n\n show_node_editor_uri: true,\n show_node_editor_description: true,\n show_node_editor_size: true,\n show_node_editor_style: true,\n show_node_editor_style_color: true,\n show_node_editor_style_dash: true,\n show_node_editor_style_thickness: true,\n show_node_editor_image: true,\n show_node_editor_creator: true,\n allow_image_upload: true,\n uploaded_image_max_kb: 500,\n\n /* NODE TOOLTIP OPTIONS */\n\n show_node_tooltip_uri: true,\n show_node_tooltip_description: true,\n show_node_tooltip_color: true,\n show_node_tooltip_image: true,\n show_node_tooltip_creator: true,\n\n /* EDGE EDITOR OPTIONS */\n\n show_edge_editor_uri: true,\n show_edge_editor_style: true,\n show_edge_editor_style_color: true,\n show_edge_editor_style_dash: true,\n show_edge_editor_style_thickness: true,\n show_edge_editor_style_arrow: true,\n show_edge_editor_direction: true,\n show_edge_editor_nodes: true,\n show_edge_editor_creator: true,\n\n /* EDGE TOOLTIP OPTIONS */\n\n show_edge_tooltip_uri: true,\n show_edge_tooltip_color: true,\n show_edge_tooltip_nodes: true,\n show_edge_tooltip_creator: true\n\n /* */\n\n};\n","Rkns.i18n = {\n fr: {\n \"Edit Node\": \"Édition d’un nœud\",\n \"Edit Edge\": \"Édition d’un lien\",\n \"Title:\": \"Titre :\",\n \"URI:\": \"URI :\",\n \"Description:\": \"Description :\",\n \"From:\": \"De :\",\n \"To:\": \"Vers :\",\n \"Image\": \"Image\",\n \"Image URL:\": \"URL d'Image\",\n \"Choose Image File:\": \"Choisir un fichier image\",\n \"Full Screen\": \"Mode plein écran\",\n \"Add Node\": \"Ajouter un nœud\",\n \"Add Edge\": \"Ajouter un lien\",\n \"Save Project\": \"Enregistrer le projet\",\n \"Open Project\": \"Ouvrir un projet\",\n \"Auto-save enabled\": \"Enregistrement automatique activé\",\n \"Connection lost\": \"Connexion perdue\",\n \"Created by:\": \"Créé par :\",\n \"Zoom In\": \"Agrandir l’échelle\",\n \"Zoom Out\": \"Rapetisser l’échelle\",\n \"Edit\": \"Éditer\",\n \"Remove\": \"Supprimer\",\n \"Cancel deletion\": \"Annuler la suppression\",\n \"Link to another node\": \"Créer un lien\",\n \"Enlarge\": \"Agrandir\",\n \"Shrink\": \"Rétrécir\",\n \"Click on the background canvas to add a node\": \"Cliquer sur le fond du graphe pour rajouter un nœud\",\n \"Click on a first node to start the edge\": \"Cliquer sur un premier nœud pour commencer le lien\",\n \"Click on a second node to complete the edge\": \"Cliquer sur un second nœud pour terminer le lien\",\n \"Wikipedia\": \"Wikipédia\",\n \"Wikipedia in \": \"Wikipédia en \",\n \"French\": \"Français\",\n \"English\": \"Anglais\",\n \"Japanese\": \"Japonais\",\n \"Untitled project\": \"Projet sans titre\",\n \"Lignes de Temps\": \"Lignes de Temps\",\n \"Loading, please wait\": \"Chargement en cours, merci de patienter\",\n \"Edge color:\": \"Couleur :\",\n \"Dash:\": \"Point. :\",\n \"Thickness:\": \"Epaisseur :\",\n \"Arrow:\": \"Flèche :\",\n \"Node color:\": \"Couleur :\",\n \"Choose color\": \"Choisir une couleur\",\n \"Change edge direction\": \"Changer le sens du lien\",\n \"Do you really wish to remove node \": \"Voulez-vous réellement supprimer le nœud \",\n \"Do you really wish to remove edge \": \"Voulez-vous réellement supprimer le lien \",\n \"This file is not an image\": \"Ce fichier n'est pas une image\",\n \"Image size must be under \": \"L'image doit peser moins de \",\n \"Size:\": \"Taille :\",\n \"KB\": \"ko\",\n \"Choose from vocabulary:\": \"Choisir dans un vocabulaire :\",\n \"SKOS Documentation properties\": \"SKOS: Propriétés documentaires\",\n \"has note\": \"a pour note\",\n \"has example\": \"a pour exemple\",\n \"has definition\": \"a pour définition\",\n \"SKOS Semantic relations\": \"SKOS: Relations sémantiques\",\n \"has broader\": \"a pour concept plus large\",\n \"has narrower\": \"a pour concept plus étroit\",\n \"has related\": \"a pour concept apparenté\",\n \"Dublin Core Metadata\": \"Métadonnées Dublin Core\",\n \"has contributor\": \"a pour contributeur\",\n \"covers\": \"couvre\",\n \"created by\": \"créé par\",\n \"has date\": \"a pour date\",\n \"published by\": \"édité par\",\n \"has source\": \"a pour source\",\n \"has subject\": \"a pour sujet\",\n \"Dragged resource\": \"Ressource glisée-déposée\",\n \"Search the Web\": \"Rechercher en ligne\",\n \"Search in Bins\": \"Rechercher dans les chutiers\",\n \"Close bin\": \"Fermer le chutier\",\n \"Refresh bin\": \"Rafraîchir le chutier\",\n \"(untitled)\": \"(sans titre)\",\n \"Select contents:\": \"Sélectionner des contenus :\",\n \"Drag items from this website, drop them in Renkan\": \"Glissez des éléments de ce site web vers Renkan\",\n \"Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.\": \"Glissez ce bouton vers votre barre de favoris. Ensuite, depuis un site tiers, cliquez dessus pour activer 'Drag-to-Add' puis glissez des éléments de ce site vers Renkan\",\n \"Shapes available\": \"Formes disponibles\",\n \"Circle\": \"Cercle\",\n \"Square\": \"Carré\",\n \"Diamond\": \"Losange\",\n \"Hexagone\": \"Hexagone\",\n \"Ellipse\": \"Ellipse\",\n \"Star\": \"Étoile\",\n \"Cloud\": \"Nuage\",\n \"Triangle\": \"Triangle\",\n \"Zoom Fit\": \"Ajuster le Zoom\",\n \"Download Project\": \"Télécharger le projet\",\n \"Zoom Save\": \"Sauver le Zoom\",\n \"View saved zoom\": \"Restaurer le Zoom\",\n \"Renkan \\'Drag-to-Add\\' bookmarklet\": \"Renkan \\'Deplacer-Pour-Ajouter\\' Signet\",\n \"(unknown user)\":\"(non authentifié)\",\n \"\":\"\",\n \"Search in graph\":\"Rechercher dans carte\",\n \"Search in \" : \"Chercher dans \"\n }\n};\n","/* Saves the Full JSON at each modification */\n\nRkns.jsonIO = function(_renkan, _opts) {\n var _proj = _renkan.project;\n if (typeof _opts.http_method === \"undefined\") {\n _opts.http_method = 'PUT';\n }\n var _load = function() {\n _renkan.renderer.redrawActive = false;\n _proj.set({\n loadingStatus : true\n });\n Rkns.$.getJSON(_opts.url, function(_data) {\n _renkan.dataloader.load(_data);\n _proj.set({\n loadingStatus : false\n });\n _proj.set({\n saveStatus : 0\n });\n _renkan.renderer.redrawActive = true;\n _renkan.renderer.fixSize();\n });\n };\n var _save = function() {\n _proj.set({\n saveStatus : 2\n });\n var _data = _proj.toJSON();\n if (!_renkan.read_only) {\n Rkns.$.ajax({\n type : _opts.http_method,\n url : _opts.url,\n contentType : \"application/json\",\n data : JSON.stringify(_data),\n success : function(data, textStatus, jqXHR) {\n _proj.set({\n saveStatus : 0\n });\n }\n });\n }\n\n };\n var _thrSave = Rkns._.throttle(function() {\n setTimeout(_save, 100);\n }, 1000);\n _proj.on(\"add:nodes add:edges add:users add:views\", function(_model) {\n _model.on(\"change remove\", function(_model) {\n _thrSave();\n });\n _thrSave();\n });\n _proj.on(\"change\", function() {\n if (!(_proj.changedAttributes.length === 1 && _proj\n .hasChanged('saveStatus'))) {\n _thrSave();\n }\n });\n\n _load();\n};\n","/* Saves the Full JSON once */\n\nRkns.jsonIOSaveOnClick = function(_renkan, _opts) {\n var _proj = _renkan.project,\n _saveWarn = false,\n _onLeave = function() {\n return \"Project not saved\";\n };\n if (typeof _opts.http_method === \"undefined\") {\n _opts.http_method = 'POST';\n }\n var _load = function() {\n var getdata = {},\n rx = /id=([^&#?=]+)/,\n matches = document.location.hash.match(rx);\n if (matches) {\n getdata.id = matches[1];\n }\n Rkns.$.ajax({\n url: _opts.url,\n data: getdata,\n beforeSend: function(){\n \t_proj.set({loadingStatus:true});\n },\n success: function(_data) {\n _renkan.dataloader.load(_data);\n _proj.set({loadingStatus:false});\n _proj.set({saveStatus:0});\n _renkan.renderer.autoScale();\n }\n });\n };\n var _save = function() {\n _proj.set(\"saved_at\", new Date());\n var _data = _proj.toJSON();\n Rkns.$.ajax({\n type: _opts.http_method,\n url: _opts.url,\n contentType: \"application/json\",\n data: JSON.stringify(_data),\n beforeSend: function(){\n \t_proj.set({saveStatus:2});\n },\n success: function(data, textStatus, jqXHR) {\n $(window).off(\"beforeunload\", _onLeave);\n _saveWarn = false;\n _proj.set({saveStatus:0});\n //document.location.hash = \"#id=\" + data.id;\n //$(\".Rk-Notifications\").text(\"Saved as \"+document.location.href).fadeIn().delay(2000).fadeOut();\n }\n });\n };\n var _checkLeave = function() {\n \t_proj.set({saveStatus:1});\n\n var title = _proj.get(\"title\");\n if (title && _proj.get(\"nodes\").length) {\n $(\".Rk-Save-Button\").removeClass(\"disabled\");\n } else {\n $(\".Rk-Save-Button\").addClass(\"disabled\");\n }\n if (title) {\n $(\".Rk-PadTitle\").css(\"border-color\",\"#333333\");\n }\n if (!_saveWarn) {\n _saveWarn = true;\n $(window).on(\"beforeunload\", _onLeave);\n }\n };\n _load();\n _proj.on(\"add:nodes add:edges add:users change\", function(_model) {\n\t _model.on(\"change remove\", function(_model) {\n\t \tif(!(_model.changedAttributes.length === 1 && _model.hasChanged('saveStatus'))) {\n\t \t\t_checkLeave();\n\t \t}\n\t });\n\t\tif(!(_proj.changedAttributes.length === 1 && _proj.hasChanged('saveStatus'))) {\n\t\t _checkLeave();\n \t}\n });\n _renkan.renderer.save = function() {\n if ($(\".Rk-Save-Button\").hasClass(\"disabled\")) {\n if (!_proj.get(\"title\")) {\n $(\".Rk-PadTitle\").css(\"border-color\",\"#ff0000\");\n }\n } else {\n _save();\n }\n };\n};\n","(function(Rkns) {\n\"use strict\";\n\nvar _ = Rkns._;\n\nvar Ldt = Rkns.Ldt = {};\n\nvar Bin = Ldt.Bin = function(_renkan, _opts) {\n if (_opts.ldt_type) {\n var Resclass = Ldt[_opts.ldt_type+\"Bin\"];\n if (Resclass) {\n return new Resclass(_renkan, _opts);\n }\n }\n console.error(\"No such LDT Bin Type\");\n};\n\nvar ProjectBin = Ldt.ProjectBin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nProjectBin.prototype.tagTemplate = renkanJST['templates/ldtjson-bin/tagtemplate.html'];\n\nProjectBin.prototype.annotationTemplate = renkanJST['templates/ldtjson-bin/annotationtemplate.html'];\n\nProjectBin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.proj_id = _opts.project_id;\n this.ldt_platform = _opts.ldt_platform || \"http://ldt.iri.centrepompidou.fr/\";\n this.title_$.html(_opts.title);\n this.title_icon_$.addClass('Rk-Ldt-Title-Icon');\n this.refresh();\n};\n\nProjectBin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n function highlight(_text) {\n var _e = _(_text).escape();\n return search.isempty ? _e : search.replace(_e, \"$1\");\n }\n function convertTC(_ms) {\n function pad(_n) {\n var _res = _n.toString();\n while (_res.length < 2) {\n _res = '0' + _res;\n }\n return _res;\n }\n var _totalSeconds = Math.abs(Math.floor(_ms/1000)),\n _hours = Math.floor(_totalSeconds / 3600),\n _minutes = (Math.floor(_totalSeconds / 60) % 60),\n _seconds = _totalSeconds % 60,\n _res = '';\n if (_hours) {\n _res += pad(_hours) + ':';\n }\n _res += pad(_minutes) + ':' + pad(_seconds);\n return _res;\n }\n\n var _html = '
                                            • Tags

                                            • ',\n _projtitle = this.data.meta[\"dc:title\"],\n _this = this,\n count = 0;\n _this.title_$.text('LDT Project: \"' + _projtitle + '\"');\n _.map(_this.data.tags,function(_tag) {\n var _title = _tag.meta[\"dc:title\"];\n if (!search.isempty && !search.test(_title)) {\n return;\n }\n count++;\n _html += _this.tagTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n encodedtitle : encodeURIComponent(_title),\n static_url: _this.renkan.options.static_url\n });\n });\n _html += '
                                            • Annotations

                                            • ';\n _.map(_this.data.annotations,function(_annotation) {\n var _description = _annotation.content.description,\n _title = _annotation.content.title.replace(_description,\"\");\n if (!search.isempty && !search.test(_title) && !search.test(_description)) {\n return;\n }\n count++;\n var _duration = _annotation.end - _annotation.begin,\n _img = (\n (_annotation.content && _annotation.content.img && _annotation.content.img.src) ?\n _annotation.content.img.src :\n ( _duration ? _this.renkan.options.static_url+\"img/ldt-segment.png\" : _this.renkan.options.static_url+\"img/ldt-point.png\" )\n );\n _html += _this.annotationTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n description: _description,\n hdescription: highlight(_description),\n start: convertTC(_annotation.begin),\n end: convertTC(_annotation.end),\n duration: convertTC(_duration),\n mediaid: _annotation.media,\n annotationid: _annotation.id,\n image: _img,\n static_url: _this.renkan.options.static_url\n });\n });\n\n this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nProjectBin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: this.ldt_platform + 'ldtplatform/ldt/cljson/id/' + this.proj_id,\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n\nvar Search = Ldt.Search = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.lang = _opts.lang || \"en\";\n};\n\nSearch.prototype.getBgClass = function() {\n return \"Rk-Ldt-Icon\";\n};\n\nSearch.prototype.getSearchTitle = function() {\n return this.renkan.translate(\"Lignes de Temps\");\n};\n\nSearch.prototype.search = function(_q) {\n this.renkan.tabs.push(\n new ResultsBin(this.renkan, {\n search: _q\n })\n );\n};\n\nvar ResultsBin = Ldt.ResultsBin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nResultsBin.prototype.segmentTemplate = renkanJST['templates/ldtjson-bin/segmenttemplate.html'];\n\nResultsBin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.ldt_platform = _opts.ldt_platform || \"http://ldt.iri.centrepompidou.fr/\";\n this.max_results = _opts.max_results || 50;\n this.search = _opts.search;\n this.title_$.html('Lignes de Temps: \"' + _opts.search + '\"');\n this.title_icon_$.addClass('Rk-Ldt-Title-Icon');\n this.refresh();\n};\n\nResultsBin.prototype.render = function(searchbase) {\n if (!this.data) {\n return;\n }\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n var highlightrx = (search.isempty ? Rkns.Utils.regexpFromTextOrArray(this.search) : search);\n function highlight(_text) {\n return highlightrx.replace(_(_text).escape(), \"$1\");\n }\n function convertTC(_ms) {\n function pad(_n) {\n var _res = _n.toString();\n while (_res.length < 2) {\n _res = '0' + _res;\n }\n return _res;\n }\n var _totalSeconds = Math.abs(Math.floor(_ms/1000)),\n _hours = Math.floor(_totalSeconds / 3600),\n _minutes = (Math.floor(_totalSeconds / 60) % 60),\n _seconds = _totalSeconds % 60,\n _res = '';\n if (_hours) {\n _res += pad(_hours) + ':';\n }\n _res += pad(_minutes) + ':' + pad(_seconds);\n return _res;\n }\n\n var _html = '',\n _this = this,\n count = 0;\n _.each(this.data.objects,function(_segment) {\n var _description = _segment.abstract,\n _title = _segment.title;\n if (!search.isempty && !search.test(_title) && !search.test(_description)) {\n return;\n }\n count++;\n var _duration = _segment.duration,\n _begin = _segment.start_ts,\n _end = + _segment.duration + _begin,\n _img = (\n _duration ?\n _this.renkan.options.static_url + \"img/ldt-segment.png\" :\n _this.renkan.options.static_url + \"img/ldt-point.png\"\n );\n _html += _this.segmentTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n description: _description,\n hdescription: highlight(_description),\n start: convertTC(_begin),\n end: convertTC(_end),\n duration: convertTC(_duration),\n mediaid: _segment.iri_id,\n //projectid: _segment.project_id,\n //cuttingid: _segment.cutting_id,\n annotationid: _segment.element_id,\n image: _img\n });\n });\n\n this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nResultsBin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: this.ldt_platform + 'ldtplatform/api/ldt/1.0/segments/search/',\n data: {\n format: \"jsonp\",\n q: this.search,\n limit: this.max_results\n },\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n\n})(window.Rkns);\n","Rkns.ResourceList = {};\n\nRkns.ResourceList.Bin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nRkns.ResourceList.Bin.prototype.resultTemplate = renkanJST['templates/list-bin.html'];\n\nRkns.ResourceList.Bin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.title_$.html(_opts.title);\n if (_opts.list) {\n this.data = _opts.list;\n }\n this.refresh();\n};\n\nRkns.ResourceList.Bin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n function highlight(_text) {\n var _e = _(_text).escape();\n return search.isempty ? _e : search.replace(_e, \"$1\");\n }\n var _html = \"\",\n _this = this,\n count = 0;\n Rkns._.each(this.data,function(_item) {\n var _element;\n if (typeof _item === \"string\") {\n if (/^(https?:\\/\\/|www)/.test(_item)) {\n _element = { url: _item };\n } else {\n _element = { title: _item.replace(/[:,]?\\s?(https?:\\/\\/|www)[\\d\\w\\/.&?=#%-_]+\\s?/,'').trim() };\n var _match = _item.match(/(https?:\\/\\/|www)[\\d\\w\\/.&?=#%-_]+/);\n if (_match) {\n _element.url = _match[0];\n }\n if (_element.title.length > 80) {\n _element.description = _element.title;\n _element.title = _element.title.replace(/^(.{30,60})\\s.+$/,'$1…');\n }\n }\n } else {\n _element = _item;\n }\n var title = _element.title || (_element.url || \"\").replace(/^https?:\\/\\/(www\\.)?/,'').replace(/^(.{40}).+$/,'$1…'),\n url = _element.url || \"\",\n description = _element.description || \"\",\n image = _element.image || \"\";\n if (url && !/^https?:\\/\\//.test(url)) {\n url = 'http://' + url;\n }\n if (!search.isempty && !search.test(title) && !search.test(description)) {\n return;\n }\n count++;\n _html += _this.resultTemplate({\n url: url,\n title: title,\n htitle: highlight(title),\n image: image,\n description: description,\n hdescription: highlight(description),\n static_url: _this.renkan.options.static_url\n });\n });\n _this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nRkns.ResourceList.Bin.prototype.refresh = function() {\n if (this.data) {\n this.render();\n }\n};\n","Rkns.Wikipedia = {\n};\n\nRkns.Wikipedia.Search = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.lang = _opts.lang || \"en\";\n};\n\nRkns.Wikipedia.Search.prototype.getBgClass = function() {\n return \"Rk-Wikipedia-Search-Icon Rk-Wikipedia-Lang-\" + this.lang;\n};\n\nRkns.Wikipedia.Search.prototype.getSearchTitle = function() {\n var langs = {\n \"fr\": \"French\",\n \"en\": \"English\",\n \"ja\": \"Japanese\"\n };\n if (langs[this.lang]) {\n return this.renkan.translate(\"Wikipedia in \") + this.renkan.translate(langs[this.lang]);\n } else {\n return this.renkan.translate(\"Wikipedia\") + \" [\" + this.lang + \"]\";\n }\n};\n\nRkns.Wikipedia.Search.prototype.search = function(_q) {\n this.renkan.tabs.push(\n new Rkns.Wikipedia.Bin(this.renkan, {\n lang: this.lang,\n search: _q\n })\n );\n};\n\nRkns.Wikipedia.Bin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nRkns.Wikipedia.Bin.prototype.resultTemplate = renkanJST['templates/wikipedia-bin/resulttemplate.html'];\n\nRkns.Wikipedia.Bin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.search = _opts.search;\n this.lang = _opts.lang || \"en\";\n this.title_icon_$.addClass('Rk-Wikipedia-Title-Icon Rk-Wikipedia-Lang-' + this.lang);\n this.title_$.html(this.search).addClass(\"Rk-Wikipedia-Title\");\n this.refresh();\n};\n\nRkns.Wikipedia.Bin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n var highlightrx = (search.isempty ? Rkns.Utils.regexpFromTextOrArray(this.search) : search);\n function highlight(_text) {\n return highlightrx.replace(_(_text).escape(), \"$1\");\n }\n var _html = \"\",\n _this = this,\n count = 0;\n Rkns._.each(this.data.query.search, function(_result) {\n var title = _result.title,\n url = \"http://\" + _this.lang + \".wikipedia.org/wiki/\" + encodeURI(title.replace(/ /g,\"_\")),\n description = Rkns.$('
                                              ').html(_result.snippet).text();\n if (!search.isempty && !search.test(title) && !search.test(description)) {\n return;\n }\n count++;\n _html += _this.resultTemplate({\n url: url,\n title: title,\n htitle: highlight(title),\n description: description,\n hdescription: highlight(description),\n static_url: _this.renkan.options.static_url\n });\n });\n _this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nRkns.Wikipedia.Bin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: \"http://\" + _this.lang + \".wikipedia.org/w/api.php?action=query&list=search&srsearch=\" + encodeURIComponent(this.search) + \"&format=json\",\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n","\ndefine('renderer/baserepresentation',['jquery', 'underscore'], function ($, _) {\n \n\n /* Rkns.Renderer._BaseRepresentation Class */\n\n /* In Renkan, a \"Representation\" is a sort of ViewModel (in the MVVM paradigm) and bridges the gap between\n * models (written with Backbone.js) and the view (written with Paper.js)\n * Renkan's representations all inherit from Rkns.Renderer._BaseRepresentation '*/\n\n var _BaseRepresentation = function(_renderer, _model) {\n if (typeof _renderer !== \"undefined\") {\n this.renderer = _renderer;\n this.renkan = _renderer.renkan;\n this.project = _renderer.renkan.project;\n this.options = _renderer.renkan.options;\n this.model = _model;\n if (this.model) {\n var _this = this;\n this._changeBinding = function() {\n _this.redraw({change: true});\n };\n this._removeBinding = function() {\n _renderer.removeRepresentation(_this);\n _.defer(function() {\n _renderer.redraw();\n });\n };\n this._selectBinding = function() {\n _this.select();\n };\n this._unselectBinding = function() {\n _this.unselect();\n };\n this.model.on(\"change\", this._changeBinding );\n this.model.on(\"remove\", this._removeBinding );\n this.model.on(\"select\", this._selectBinding );\n this.model.on(\"unselect\", this._unselectBinding );\n }\n }\n };\n\n /* Rkns.Renderer._BaseRepresentation Methods */\n\n _(_BaseRepresentation.prototype).extend({\n _super: function(_func) {\n return _BaseRepresentation.prototype[_func].apply(this, Array.prototype.slice.call(arguments, 1));\n },\n redraw: function() {},\n moveTo: function() {},\n show: function() { return \"BaseRepresentation.show\"; },\n hide: function() {},\n select: function() {\n if (this.model) {\n this.model.trigger(\"selected\");\n }\n },\n unselect: function() {\n if (this.model) {\n this.model.trigger(\"unselected\");\n }\n },\n highlight: function() {},\n unhighlight: function() {},\n mousedown: function() {},\n mouseup: function() {\n if (this.model) {\n this.model.trigger(\"clicked\");\n }\n },\n destroy: function() {\n if (this.model) {\n this.model.off(\"change\", this._changeBinding );\n this.model.off(\"remove\", this._removeBinding );\n this.model.off(\"select\", this._selectBinding );\n this.model.off(\"unselect\", this._unselectBinding );\n }\n }\n }).value();\n\n /* End of Rkns.Renderer._BaseRepresentation Class */\n\n return _BaseRepresentation;\n\n});\n\ndefine('requtils',[], function ($, _) {\n \n return {\n getUtils: function(){\n return window.Rkns.Utils;\n },\n getRenderer: function(){\n return window.Rkns.Renderer;\n }\n };\n\n});\n\n\ndefine('renderer/basebutton',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* Rkns.Renderer._BaseButton Class */\n\n /* BaseButton is extended by contextual buttons that appear when hovering on nodes and edges */\n\n var _BaseButton = Utils.inherit(BaseRepresentation);\n\n _(_BaseButton.prototype).extend({\n moveTo: function(_pos) {\n this.sector.moveTo(_pos);\n },\n show: function() {\n this.sector.show();\n },\n hide: function() {\n this.sector.hide();\n },\n select: function() {\n this.sector.select();\n },\n unselect: function(_newTarget) {\n this.sector.unselect();\n if (!_newTarget || (_newTarget !== this.source_representation && _newTarget.source_representation !== this.source_representation)) {\n this.source_representation.unselect();\n }\n },\n destroy: function() {\n this.sector.destroy();\n }\n }).value();\n\n return _BaseButton;\n\n});\n\n\ndefine('renderer/shapebuilder',[], function () {\n \n\n var cloud_path = \"M0,0c-0.1218516546,-0.0336420601 -0.2451649928,0.0048580836 -0.3302944641,0.0884969975c-0.0444763883,-0.0550844815 -0.1047003238,-0.0975985034 -0.1769360893,-0.1175406746c-0.1859066673,-0.0513257002 -0.3774236254,0.0626045858 -0.4272374613,0.2541588105c-0.0036603877,0.0140753132 -0.0046241235,0.028229722 -0.0065872453,0.042307536c-0.1674179627,-0.0179317735 -0.3276106855,0.0900599386 -0.3725537463,0.2628868425c-0.0445325077,0.1712456429 0.0395025693,0.3463497959 0.1905420475,0.4183458793c-0.0082101538,0.0183442886 -0.0158652506,0.0372432828 -0.0211098452,0.0574080693c-0.0498130336,0.1915540431 0.0608692569,0.3884647499 0.2467762814,0.4397904033c0.0910577256,0.0251434257 0.1830791813,0.0103792696 0.2594677475,-0.0334472349c0.042100113,0.0928009202 0.1205930075,0.1674914182 0.2240666796,0.1960572479c0.1476344161,0.0407610407 0.297446165,-0.0238077445 0.3783262342,-0.1475652419c0.0327623278,0.0238981846 0.0691792333,0.0436665447 0.1102008706,0.0549940004c0.1859065794,0.0513256592 0.3770116432,-0.0627203154 0.4268255671,-0.2542745401c0.0250490557,-0.0963230532 0.0095494076,-0.1938010889 -0.0356681889,-0.2736906101c0.0447507424,-0.0439678867 0.0797796014,-0.0996624318 0.0969425462,-0.1656617192c0.0498137481,-0.1915564561 -0.0608688118,-0.3884669813 -0.2467755669,-0.4397928163c-0.0195699622,-0.0054005426 -0.0391731675,-0.0084429542 -0.0586916488,-0.0102888295c0.0115683912,-0.1682147574 -0.0933564223,-0.3269222408 -0.2572937178,-0.3721841203z\";\n /* ShapeBuilder Begin */\n\n var builders = {\n \"circle\":{\n getShape: function() {\n return new paper.Path.Circle([0, 0], 1);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Circle(center, radius);\n }\n },\n \"rectangle\":{\n getShape: function() {\n return new paper.Path.Rectangle([-2, -2], [2, 2]);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Rectangle([-radius, -radius], [radius*2, radius*2]);\n }\n },\n \"ellipse\":{\n getShape: function() {\n return new paper.Path.Ellipse(new paper.Rectangle([-2, -1], [2, 1]));\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Ellipse(new paper.Rectangle([-radius, -radius/2], [radius*2, radius]));\n }\n },\n \"polygon\":{\n getShape: function() {\n return new paper.Path.RegularPolygon([0, 0], 6, 1);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.RegularPolygon(center, 6, radius);\n }\n },\n \"diamond\":{\n getShape: function() {\n var d = new paper.Path.Rectangle([-Math.SQRT2, -Math.SQRT2], [Math.SQRT2, Math.SQRT2]);\n d.rotate(45);\n return d;\n },\n getImageShape: function(center, radius) {\n var d = new paper.Path.Rectangle([-radius*Math.SQRT2/2, -radius*Math.SQRT2/2], [radius*Math.SQRT2, radius*Math.SQRT2]);\n d.rotate(45);\n return d;\n }\n },\n \"star\":{\n getShape: function() {\n return new paper.Path.Star([0, 0], 8, 1, 0.7);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Star(center, 8, radius*1, radius*0.7);\n }\n },\n \"cloud\": {\n getShape: function() {\n var path = new paper.Path(cloud_path);\n return path;\n\n },\n getImageShape: function(center, radius) {\n var path = new paper.Path(cloud_path);\n path.scale(radius);\n path.translate(center);\n return path;\n }\n },\n \"triangle\": {\n getShape: function() {\n return new paper.Path.RegularPolygon([0,0], 3, 1);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.RegularPolygon(center, 3, radius);\n }\n },\n \"svg\": function(path){\n return {\n getShape: function() {\n return new paper.Path(path);\n },\n getImageShape: function(center, radius) {\n // No calcul for the moment\n return new paper.Path();\n }\n };\n }\n };\n\n var ShapeBuilder = function (shape){\n if(shape === null || typeof shape === \"undefined\"){\n shape = \"circle\";\n }\n if(shape.substr(0,4)===\"svg:\"){\n return builders.svg(shape.substr(4));\n }\n if(!(shape in builders)){\n shape = \"circle\";\n }\n return builders[shape];\n };\n\n ShapeBuilder.builders = builders;\n\n return ShapeBuilder;\n\n});\n\ndefine('renderer/noderepr',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation', 'renderer/shapebuilder'], function ($, _, requtils, BaseRepresentation, ShapeBuilder) {\n \n\n var Utils = requtils.getUtils();\n\n /* Rkns.Renderer.Node Class */\n\n /* The representation for the node : A circle, with an image inside and a text label underneath.\n * The circle and the image are drawn on canvas and managed by Paper.js.\n * The text label is an HTML node, managed by jQuery. */\n\n //var NodeRepr = Renderer.Node = Utils.inherit(Renderer._BaseRepresentation);\n var NodeRepr = Utils.inherit(BaseRepresentation);\n\n _(NodeRepr.prototype).extend({\n _init: function() {\n this.renderer.node_layer.activate();\n this.type = \"Node\";\n this.buildShape();\n this.hidden = false;\n this.ghost= false;\n if (this.options.show_node_circles) {\n this.circle.strokeWidth = this.options.node_stroke_width;\n this.h_ratio = 1;\n } else {\n this.h_ratio = 0;\n }\n this.title = $('
                                              ').appendTo(this.renderer.labels_$);\n\n if (this.options.editor_mode) {\n var Renderer = requtils.getRenderer();\n this.normal_buttons = [\n new Renderer.NodeEditButton(this.renderer, null),\n new Renderer.NodeRemoveButton(this.renderer, null),\n new Renderer.NodeHideButton(this.renderer, null),\n new Renderer.NodeShowButton(this.renderer, null),\n new Renderer.NodeLinkButton(this.renderer, null),\n new Renderer.NodeEnlargeButton(this.renderer, null),\n new Renderer.NodeShrinkButton(this.renderer, null)\n ];\n this.pending_delete_buttons = [\n new Renderer.NodeRevertButton(this.renderer, null)\n ];\n this.all_buttons = this.normal_buttons.concat(this.pending_delete_buttons);\n\n for (var i = 0; i < this.all_buttons.length; i++) {\n this.all_buttons[i].source_representation = this;\n }\n this.active_buttons = [];\n } else {\n this.active_buttons = this.all_buttons = [];\n }\n this.last_circle_radius = 1;\n\n if (this.renderer.minimap) {\n this.renderer.minimap.node_layer.activate();\n this.minimap_circle = new paper.Path.Circle([0, 0], 1);\n this.minimap_circle.__representation = this.renderer.minimap.miniframe.__representation;\n this.renderer.minimap.node_group.addChild(this.minimap_circle);\n }\n },\n _getStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.node_stroke_width + (thickness-1) * (this.options.node_stroke_max_width - this.options.node_stroke_width) / (this.options.node_stroke_witdh_scale-1);\n },\n _getSelectedStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.selected_node_stroke_width + (thickness-1) * (this.options.selected_node_stroke_max_width - this.options.selected_node_stroke_width) / (this.options.node_stroke_witdh_scale-1);\n },\n buildShape: function(){\n if( 'shape' in this.model.changed ) {\n delete this.img;\n }\n if(this.circle){\n this.circle.remove();\n delete this.circle;\n }\n // \"circle\" \"rectangle\" \"ellipse\" \"polygon\" \"star\" \"diamond\"\n this.shapeBuilder = new ShapeBuilder(this.model.get(\"shape\"));\n this.circle = this.shapeBuilder.getShape();\n this.circle.__representation = this;\n this.circle.sendToBack();\n this.last_circle_radius = 1;\n },\n redraw: function(options) {\n if( 'shape' in this.model.changed && 'change' in options && options.change ) {\n //if( 'shape' in this.model.changed ) {\n this.buildShape();\n }\n var _model_coords = new paper.Point(this.model.get(\"position\")),\n _baseRadius = this.options.node_size_base * Math.exp((this.model.get(\"size\") || 0) * Utils._NODE_SIZE_STEP);\n if (!this.is_dragging || !this.paper_coords) {\n this.paper_coords = this.renderer.toPaperCoords(_model_coords);\n }\n this.circle_radius = _baseRadius * this.renderer.scale;\n if (this.last_circle_radius !== this.circle_radius) {\n this.all_buttons.forEach(function(b) {\n b.setSectorSize();\n });\n this.circle.scale(this.circle_radius / this.last_circle_radius);\n if (this.node_image) {\n this.node_image.scale(this.circle_radius / this.last_circle_radius);\n }\n }\n this.circle.position = this.paper_coords;\n if (this.node_image) {\n this.node_image.position = this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius));\n }\n this.last_circle_radius = this.circle_radius;\n\n var old_act_btn = this.active_buttons;\n\n var opacity = 1;\n if (this.model.get(\"delete_scheduled\")) {\n opacity = 0.5;\n this.active_buttons = this.pending_delete_buttons;\n this.circle.dashArray = [2,2];\n } else {\n opacity = 1;\n this.active_buttons = this.normal_buttons;\n this.circle.dashArray = null;\n }\n if (this.selected && this.renderer.isEditable() && !this.ghost) {\n if (old_act_btn !== this.active_buttons) {\n old_act_btn.forEach(function(b) {\n b.hide();\n });\n }\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n\n if (this.node_image) {\n this.node_image.opacity = this.highlighted ? opacity * 0.5 : (opacity - 0.01);\n }\n\n this.circle.fillColor = this.highlighted ? this.options.highlighted_node_fill_color : this.options.node_fill_color;\n\n this.circle.opacity = this.options.show_node_circles ? opacity : 0.01;\n\n var _text = this.model.get(\"title\") || this.renkan.translate(this.options.label_untitled_nodes) || \"\";\n _text = Utils.shortenText(_text, this.options.node_label_max_length);\n\n if (typeof this.highlighted === \"object\") {\n this.title.html(this.highlighted.replace(_(_text).escape(),'$1'));\n } else {\n this.title.text(_text);\n }\n\n var _strokeWidth = this._getStrokeWidth();\n this.title.css({\n left: this.paper_coords.x,\n top: this.paper_coords.y + this.circle_radius * this.h_ratio + this.options.node_label_distance + 0.5*_strokeWidth,\n opacity: opacity\n });\n var _color = (this.model.has(\"style\") && this.model.get(\"style\").color) || (this.model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n _dash = (this.model.has(\"style\") && this.model.get(\"style\").dash) ? this.options.default_dash_array : null;\n this.circle.strokeWidth = _strokeWidth;\n this.circle.strokeColor = _color;\n this.circle.dashArray = _dash;\n var _pc = this.paper_coords;\n this.all_buttons.forEach(function(b) {\n b.moveTo(_pc);\n });\n var lastImage = this.img;\n this.img = this.model.get(\"image\");\n if (this.img && this.img !== lastImage) {\n this.showImage();\n if(this.circle) {\n this.circle.sendToBack();\n }\n }\n if (this.node_image && !this.img) {\n this.node_image.remove();\n delete this.node_image;\n }\n\n if (this.renderer.minimap) {\n this.minimap_circle.fillColor = _color;\n var minipos = this.renderer.toMinimapCoords(_model_coords),\n miniradius = this.renderer.minimap.scale * _baseRadius,\n minisize = new paper.Size([miniradius, miniradius]);\n this.minimap_circle.fitBounds(minipos.subtract(minisize), minisize.multiply(2));\n }\n\n if (typeof options === 'undefined' || !('dontRedrawEdges' in options) || !options.dontRedrawEdges) {\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.redraw();\n }\n }\n );\n }\n if (this.ghost){\n this.show(true);\n } else {\n if (this.hidden) { this.hide(); }\n }\n },\n showImage: function() {\n var _image = null;\n if (typeof this.renderer.image_cache[this.img] === \"undefined\") {\n _image = new Image();\n this.renderer.image_cache[this.img] = _image;\n _image.src = this.img;\n } else {\n _image = this.renderer.image_cache[this.img];\n }\n if (_image.width) {\n if (this.node_image) {\n this.node_image.remove();\n }\n this.renderer.node_layer.activate();\n var width = _image.width,\n height = _image.height,\n clipPath = this.model.get(\"clip_path\"),\n hasClipPath = (typeof clipPath !== \"undefined\" && clipPath),\n _clip = null,\n baseRadius = null,\n centerPoint = null;\n\n if (hasClipPath) {\n _clip = new paper.Path();\n var instructions = clipPath.match(/[a-z][^a-z]+/gi) || [],\n lastCoords = [0,0],\n minX = Infinity,\n minY = Infinity,\n maxX = -Infinity,\n maxY = -Infinity;\n\n var transformCoords = function(tabc, relative) {\n var newCoords = tabc.slice(1).map(function(v, k) {\n var res = parseFloat(v),\n isY = k % 2;\n if (isY) {\n res = ( res - 0.5 ) * height;\n } else {\n res = ( res - 0.5 ) * width;\n }\n if (relative) {\n res += lastCoords[isY];\n }\n if (isY) {\n minY = Math.min(minY, res);\n maxY = Math.max(maxY, res);\n } else {\n minX = Math.min(minX, res);\n maxX = Math.max(maxX, res);\n }\n return res;\n });\n lastCoords = newCoords.slice(-2);\n return newCoords;\n };\n\n instructions.forEach(function(instr) {\n var coords = instr.match(/([a-z]|[0-9.-]+)/ig) || [\"\"];\n switch(coords[0]) {\n case \"M\":\n _clip.moveTo(transformCoords(coords));\n break;\n case \"m\":\n _clip.moveTo(transformCoords(coords, true));\n break;\n case \"L\":\n _clip.lineTo(transformCoords(coords));\n break;\n case \"l\":\n _clip.lineTo(transformCoords(coords, true));\n break;\n case \"C\":\n _clip.cubicCurveTo(transformCoords(coords));\n break;\n case \"c\":\n _clip.cubicCurveTo(transformCoords(coords, true));\n break;\n case \"Q\":\n _clip.quadraticCurveTo(transformCoords(coords));\n break;\n case \"q\":\n _clip.quadraticCurveTo(transformCoords(coords, true));\n break;\n }\n });\n\n baseRadius = Math[this.options.node_images_fill_mode ? \"min\" : \"max\"](maxX - minX, maxY - minY) / 2;\n centerPoint = new paper.Point((maxX + minX) / 2, (maxY + minY) / 2);\n if (!this.options.show_node_circles) {\n this.h_ratio = (maxY - minY) / (2 * baseRadius);\n }\n } else {\n baseRadius = Math[this.options.node_images_fill_mode ? \"min\" : \"max\"](width, height) / 2;\n centerPoint = new paper.Point(0,0);\n if (!this.options.show_node_circles) {\n this.h_ratio = height / (2 * baseRadius);\n }\n }\n var _raster = new paper.Raster(_image);\n _raster.locked = true; // Disable mouse events on icon\n if (hasClipPath) {\n _raster = new paper.Group(_clip, _raster);\n _raster.opacity = 0.99;\n /* This is a workaround to allow clipping at group level\n * If opacity was set to 1, paper.js would merge all clipping groups in one (known bug).\n */\n _raster.clipped = true;\n _clip.__representation = this;\n }\n if (this.options.clip_node_images) {\n var _circleClip = this.shapeBuilder.getImageShape(centerPoint, baseRadius);\n _raster = new paper.Group(_circleClip, _raster);\n _raster.opacity = 0.99;\n _raster.clipped = true;\n _circleClip.__representation = this;\n }\n this.image_delta = centerPoint.divide(baseRadius);\n this.node_image = _raster;\n this.node_image.__representation = _this;\n this.node_image.scale(this.circle_radius / baseRadius);\n this.node_image.position = this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius));\n this.node_image.insertAbove(this.circle);\n } else {\n var _this = this;\n $(_image).on(\"load\", function() {\n _this.showImage();\n });\n }\n },\n paperShift: function(_delta) {\n if (this.options.editor_mode) {\n if (!this.renkan.read_only) {\n this.is_dragging = true;\n this.paper_coords = this.paper_coords.add(_delta);\n this.redraw();\n }\n } else {\n this.renderer.paperShift(_delta);\n }\n },\n openEditor: function() {\n this.renderer.removeRepresentationsOfType(\"editor\");\n var _editor = this.renderer.addRepresentation(\"NodeEditor\",null);\n _editor.source_representation = this;\n _editor.draw();\n },\n select: function() {\n this.selected = true;\n this.circle.strokeWidth = this._getSelectedStrokeWidth();\n if (this.renderer.isEditable() && !this.hidden) {\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n var _uri = this.model.get(\"uri\");\n if (_uri) {\n $('.Rk-Bin-Item').each(function() {\n var _el = $(this);\n if (_el.attr(\"data-uri\") === _uri) {\n _el.addClass(\"selected\");\n }\n });\n }\n if (!this.options.editor_mode) {\n this.openEditor();\n }\n\n if (this.renderer.minimap) {\n this.minimap_circle.strokeWidth = this.options.minimap_highlight_weight;\n this.minimap_circle.strokeColor = this.options.minimap_highlight_color;\n }\n //if the node is hidden and the mouse hover it, it appears as a ghost\n if (this.hidden) {\n this.show(true);\n }\n else {\n this.showNeighbors(true);\n }\n this._super(\"select\");\n },\n hideButtons: function() {\n this.all_buttons.forEach(function(b) {\n b.hide();\n });\n delete(this.buttonTimeout);\n },\n unselect: function(_newTarget) {\n if (!_newTarget || _newTarget.source_representation !== this) {\n this.selected = false;\n var _this = this;\n this.buttons_timeout = setTimeout(function() { _this.hideButtons(); }, 200);\n this.circle.strokeWidth = this._getStrokeWidth();\n $('.Rk-Bin-Item').removeClass(\"selected\");\n if (this.renderer.minimap) {\n this.minimap_circle.strokeColor = undefined;\n }\n //when the mouse don't hover the node anymore, we hide it\n if (this.hidden) {\n this.hide();\n }\n else {\n this.hideNeighbors();\n }\n this._super(\"unselect\");\n }\n },\n hide: function(){\n var _this = this;\n this.ghost = false;\n this.hidden = true;\n if (typeof this.node_image !== 'undefined'){\n this.node_image.opacity = 0;\n }\n this.hideButtons();\n this.circle.opacity = 0;\n this.title.css('opacity', 0);\n this.minimap_circle.opacity = 0;\n\n\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.hide();\n }\n }\n );\n this.hideNeighbors();\n },\n show: function(ghost){\n var _this = this;\n this.ghost = ghost;\n if (this.ghost){\n if (typeof this.node_image !== 'undefined'){\n this.node_image.opacity = this.options.ghost_opacity;\n }\n this.circle.opacity = this.options.ghost_opacity;\n this.title.css('opacity', this.options.ghost_opacity);\n this.minimap_circle.opacity = this.options.ghost_opacity;\n } else {\n this.hidden = false;\n this.redraw();\n }\n\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.show(_this.ghost);\n }\n }\n );\n },\n hideNeighbors: function(){\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return (ed.get(\"from\") === _this.model);\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge.get(\"to\"));\n if (repr && repr.ghost) {\n repr.hide();\n }\n }\n );\n },\n showNeighbors: function(ghost){\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return (ed.get(\"from\") === _this.model);\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge.get(\"to\"));\n if (repr && repr.hidden) {\n repr.show(ghost);\n if (!ghost){\n var indexNode = _this.renderer.hiddenNodes.indexOf(repr.model.id);\n if (indexNode !== -1){\n _this.renderer.hiddenNodes.splice(indexNode, 1);\n }\n }\n }\n }\n );\n },\n highlight: function(textToReplace) {\n var hlvalue = textToReplace || true;\n if (this.highlighted === hlvalue) {\n return;\n }\n this.highlighted = hlvalue;\n this.redraw();\n this.renderer.throttledPaperDraw();\n },\n unhighlight: function() {\n if (!this.highlighted) {\n return;\n }\n this.highlighted = false;\n this.redraw();\n this.renderer.throttledPaperDraw();\n },\n saveCoords: function() {\n var _coords = this.renderer.toModelCoords(this.paper_coords),\n _data = {\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n if (this.renderer.isEditable()) {\n this.model.set(_data);\n }\n },\n mousedown: function(_event, _isTouch) {\n if (_isTouch) {\n this.renderer.unselectAll();\n this.select();\n }\n },\n mouseup: function(_event, _isTouch) {\n if (this.renderer.is_dragging && this.renderer.isEditable()) {\n this.saveCoords();\n } else {\n if (this.hidden) {\n var index = this.renderer.hiddenNodes.indexOf(this.model.id);\n if (index !== -1){\n this.renderer.hiddenNodes.splice(index, 1);\n }\n this.show(false);\n this.select();\n } else {\n if (!_isTouch && !this.model.get(\"delete_scheduled\")) {\n this.openEditor();\n }\n this.model.trigger(\"clicked\");\n }\n }\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.is_dragging = false;\n },\n destroy: function(_event) {\n this._super(\"destroy\");\n this.all_buttons.forEach(function(b) {\n b.destroy();\n });\n this.circle.remove();\n this.title.remove();\n if (this.renderer.minimap) {\n this.minimap_circle.remove();\n }\n if (this.node_image) {\n this.node_image.remove();\n }\n }\n }).value();\n\n return NodeRepr;\n\n});\n\n\ndefine('renderer/edge',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* Edge Class Begin */\n\n //var Edge = Renderer.Edge = Utils.inherit(Renderer._BaseRepresentation);\n var Edge = Utils.inherit(BaseRepresentation);\n\n _(Edge.prototype).extend({\n _init: function() {\n this.renderer.edge_layer.activate();\n this.type = \"Edge\";\n this.hidden = false;\n this.ghost = false;\n this.from_representation = this.renderer.getRepresentationByModel(this.model.get(\"from\"));\n this.to_representation = this.renderer.getRepresentationByModel(this.model.get(\"to\"));\n this.bundle = this.renderer.addToBundles(this);\n this.line = new paper.Path();\n this.line.add([0,0],[0,0],[0,0]);\n this.line.__representation = this;\n this.line.strokeWidth = this.options.edge_stroke_width;\n this.arrow_scale = 1;\n this.arrow = new paper.Path();\n this.arrow.add(\n [ 0, 0 ],\n [ this.options.edge_arrow_length, this.options.edge_arrow_width / 2 ],\n [ 0, this.options.edge_arrow_width ]\n );\n this.arrow.pivot = new paper.Point([ this.options.edge_arrow_length / 2, this.options.edge_arrow_width / 2 ]);\n this.arrow.__representation = this;\n this.text = $('
                                              ').appendTo(this.renderer.labels_$);\n this.arrow_angle = 0;\n if (this.options.editor_mode) {\n var Renderer = requtils.getRenderer();\n this.normal_buttons = [\n new Renderer.EdgeEditButton(this.renderer, null),\n new Renderer.EdgeRemoveButton(this.renderer, null)\n ];\n this.pending_delete_buttons = [\n new Renderer.EdgeRevertButton(this.renderer, null)\n ];\n this.all_buttons = this.normal_buttons.concat(this.pending_delete_buttons);\n for (var i = 0; i < this.all_buttons.length; i++) {\n this.all_buttons[i].source_representation = this;\n }\n this.active_buttons = [];\n } else {\n this.active_buttons = this.all_buttons = [];\n }\n\n if (this.renderer.minimap) {\n this.renderer.minimap.edge_layer.activate();\n this.minimap_line = new paper.Path();\n this.minimap_line.add([0,0],[0,0]);\n this.minimap_line.__representation = this.renderer.minimap.miniframe.__representation;\n this.minimap_line.strokeWidth = 1;\n }\n },\n _getStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.edge_stroke_width + (thickness-1) * (this.options.edge_stroke_max_width - this.options.edge_stroke_width) / (this.options.edge_stroke_witdh_scale-1);\n },\n _getSelectedStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.selected_edge_stroke_width + (thickness-1) * (this.options.selected_edge_stroke_max_width - this.options.selected_edge_stroke_width) / (this.options.edge_stroke_witdh_scale-1);\n },\n _getArrowScale: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return 1 + (thickness-1) * ((this.options.edge_arrow_max_width / this.options.edge_arrow_width) - 1) / (this.options.edge_stroke_witdh_scale-1);\n },\n redraw: function() {\n var from = this.model.get(\"from\"),\n to = this.model.get(\"to\");\n if (!from || !to || (this.hidden && !this.ghost)) {\n return;\n }\n this.from_representation = this.renderer.getRepresentationByModel(from);\n this.to_representation = this.renderer.getRepresentationByModel(to);\n if (typeof this.from_representation === \"undefined\" || typeof this.to_representation === \"undefined\" ||\n (this.from_representation.hidden && !this.from_representation.ghost) ||\n (this.to_representation.hidden && !this.to_representation.ghost)) {\n this.hide();\n return;\n }\n var _strokeWidth = this._getStrokeWidth(),\n _arrow_scale = this._getArrowScale(),\n _p0a = this.from_representation.paper_coords,\n _p1a = this.to_representation.paper_coords,\n _v = _p1a.subtract(_p0a),\n _r = _v.length,\n _u = _v.divide(_r),\n _ortho = new paper.Point([- _u.y, _u.x]),\n _group_pos = this.bundle.getPosition(this),\n _delta = _ortho.multiply( this.options.edge_gap_in_bundles * _group_pos ),\n _p0b = _p0a.add(_delta), /* Adding a 4 px difference */\n _p1b = _p1a.add(_delta), /* to differentiate bundled links */\n _a = _v.angle,\n _textdelta = _ortho.multiply(this.options.edge_label_distance + 0.5 * _arrow_scale * this.options.edge_arrow_width),\n _handle = _v.divide(3),\n _color = (this.model.has(\"style\") && this.model.get(\"style\").color) || (this.model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n _dash = (this.model.has(\"style\") && this.model.get(\"style\").dash) ? this.options.default_dash_array : null,\n _opacity;\n\n if (this.model.get(\"delete_scheduled\") || this.from_representation.model.get(\"delete_scheduled\") || this.to_representation.model.get(\"delete_scheduled\")) {\n _opacity = 0.5;\n this.line.dashArray = [2, 2];\n } else {\n _opacity = this.ghost ? this.options.ghost_opacity : 1;\n this.line.dashArray = null;\n }\n\n var old_act_btn = this.active_buttons;\n\n this.arrow.visible =\n (this.model.has(\"style\") && this.model.get(\"style\").arrow) ||\n !this.model.has(\"style\") ||\n typeof this.model.get(\"style\").arrow === 'undefined';\n\n this.active_buttons = this.model.get(\"delete_scheduled\") ? this.pending_delete_buttons : this.normal_buttons;\n\n if (this.selected && this.renderer.isEditable() && old_act_btn !== this.active_buttons) {\n old_act_btn.forEach(function(b) {\n b.hide();\n });\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n\n this.paper_coords = _p0b.add(_p1b).divide(2);\n this.line.strokeWidth = _strokeWidth;\n this.line.strokeColor = _color;\n this.line.dashArray = _dash;\n this.line.opacity = _opacity;\n this.line.segments[0].point = _p0a;\n this.line.segments[1].point = this.paper_coords;\n this.line.segments[1].handleIn = _handle.multiply(-1);\n this.line.segments[1].handleOut = _handle;\n this.line.segments[2].point = _p1a;\n this.arrow.scale(_arrow_scale / this.arrow_scale);\n this.arrow_scale = _arrow_scale;\n this.arrow.fillColor = _color;\n this.arrow.opacity = _opacity;\n this.arrow.rotate(_a - this.arrow_angle, this.arrow.bounds.center);\n this.arrow.position = this.paper_coords;\n\n this.arrow_angle = _a;\n if (_a > 90) {\n _a -= 180;\n _textdelta = _textdelta.multiply(-1);\n }\n if (_a < -90) {\n _a += 180;\n _textdelta = _textdelta.multiply(-1);\n }\n var _text = this.model.get(\"title\") || this.renkan.translate(this.options.label_untitled_edges) || \"\";\n _text = Utils.shortenText(_text, this.options.node_label_max_length);\n this.text.text(_text);\n var _textpos = this.paper_coords.add(_textdelta);\n this.text.css({\n left: _textpos.x,\n top: _textpos.y,\n transform: \"rotate(\" + _a + \"deg)\",\n \"-moz-transform\": \"rotate(\" + _a + \"deg)\",\n \"-webkit-transform\": \"rotate(\" + _a + \"deg)\",\n opacity: _opacity\n });\n this.text_angle = _a;\n\n var _pc = this.paper_coords;\n this.all_buttons.forEach(function(b) {\n b.moveTo(_pc);\n });\n\n if (this.renderer.minimap) {\n this.minimap_line.strokeColor = _color;\n this.minimap_line.segments[0].point = this.renderer.toMinimapCoords(new paper.Point(this.from_representation.model.get(\"position\")));\n this.minimap_line.segments[1].point = this.renderer.toMinimapCoords(new paper.Point(this.to_representation.model.get(\"position\")));\n }\n },\n hide: function(){\n this.hidden = true;\n this.ghost = false;\n\n this.text.hide();\n this.line.visible = false;\n this.arrow.visible = false;\n this.minimap_line.visible = false;\n },\n show: function(ghost){\n this.ghost = ghost;\n if (this.ghost) {\n this.text.css('opacity', 0.3);\n this.line.opacity = 0.3;\n this.arrow.opacity = 0.3;\n this.minimap_line.opacity = 0.3;\n } else {\n this.hidden = false;\n\n this.text.css('opacity', 1);\n this.line.opacity = 1;\n this.arrow.opacity = 1;\n this.minimap_line.opacity = 1;\n }\n this.text.show();\n this.line.visible = true;\n this.arrow.visible = true;\n this.minimap_line.visible = true;\n this.redraw();\n },\n openEditor: function() {\n this.renderer.removeRepresentationsOfType(\"editor\");\n var _editor = this.renderer.addRepresentation(\"EdgeEditor\",null);\n _editor.source_representation = this;\n _editor.draw();\n },\n select: function() {\n this.selected = true;\n this.line.strokeWidth = this._getSelectedStrokeWidth();\n if (this.renderer.isEditable()) {\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n if (!this.options.editor_mode) {\n this.openEditor();\n }\n this._super(\"select\");\n },\n unselect: function(_newTarget) {\n if (!_newTarget || _newTarget.source_representation !== this) {\n this.selected = false;\n if (this.options.editor_mode) {\n this.all_buttons.forEach(function(b) {\n b.hide();\n });\n }\n this.line.strokeWidth = this._getStrokeWidth();\n this._super(\"unselect\");\n }\n },\n mousedown: function(_event, _isTouch) {\n if (_isTouch) {\n this.renderer.unselectAll();\n this.select();\n }\n },\n mouseup: function(_event, _isTouch) {\n if (!this.renkan.read_only && this.renderer.is_dragging) {\n this.from_representation.saveCoords();\n this.to_representation.saveCoords();\n this.from_representation.is_dragging = false;\n this.to_representation.is_dragging = false;\n } else {\n if (!_isTouch) {\n this.openEditor();\n }\n this.model.trigger(\"clicked\");\n }\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n },\n paperShift: function(_delta) {\n if (this.options.editor_mode) {\n if (!this.options.read_only) {\n this.from_representation.paperShift(_delta);\n this.to_representation.paperShift(_delta);\n }\n } else {\n this.renderer.paperShift(_delta);\n }\n },\n destroy: function() {\n this._super(\"destroy\");\n this.line.remove();\n this.arrow.remove();\n this.text.remove();\n if (this.renderer.minimap) {\n this.minimap_line.remove();\n }\n this.all_buttons.forEach(function(b) {\n b.destroy();\n });\n var _this = this;\n this.bundle.edges = _.reject(this.bundle.edges, function(_edge) {\n return _this === _edge;\n });\n }\n }).value();\n\n return Edge;\n\n});\n\n\n\ndefine('renderer/tempedge',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* TempEdge Class Begin */\n\n //var TempEdge = Renderer.TempEdge = Utils.inherit(Renderer._BaseRepresentation);\n var TempEdge = Utils.inherit(BaseRepresentation);\n\n _(TempEdge.prototype).extend({\n _init: function() {\n this.renderer.edge_layer.activate();\n this.type = \"Temp-edge\";\n\n var _color = (this.project.get(\"users\").get(this.renkan.current_user) || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\");\n this.line = new paper.Path();\n this.line.strokeColor = _color;\n this.line.dashArray = [4, 2];\n this.line.strokeWidth = this.options.selected_edge_stroke_width;\n this.line.add([0,0],[0,0]);\n this.line.__representation = this;\n this.arrow = new paper.Path();\n this.arrow.fillColor = _color;\n this.arrow.add(\n [ 0, 0 ],\n [ this.options.edge_arrow_length, this.options.edge_arrow_width / 2 ],\n [ 0, this.options.edge_arrow_width ]\n );\n this.arrow.__representation = this;\n this.arrow_angle = 0;\n },\n redraw: function() {\n var _p0 = this.from_representation.paper_coords,\n _p1 = this.end_pos,\n _a = _p1.subtract(_p0).angle,\n _c = _p0.add(_p1).divide(2);\n this.line.segments[0].point = _p0;\n this.line.segments[1].point = _p1;\n this.arrow.rotate(_a - this.arrow_angle);\n this.arrow.position = _c;\n this.arrow_angle = _a;\n },\n paperShift: function(_delta) {\n if (!this.renderer.isEditable()) {\n this.renderer.removeRepresentation(_this);\n paper.view.draw();\n return;\n }\n this.end_pos = this.end_pos.add(_delta);\n var _hitResult = paper.project.hitTest(this.end_pos);\n this.renderer.findTarget(_hitResult);\n this.redraw();\n },\n mouseup: function(_event, _isTouch) {\n var _hitResult = paper.project.hitTest(_event.point),\n _model = this.from_representation.model,\n _endDrag = true;\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n var _target = _hitResult.item.__representation;\n if (_target.type.substr(0,4) === \"Node\") {\n var _destmodel = _target.model || _target.source_representation.model;\n if (_model !== _destmodel) {\n var _data = {\n id: Utils.getUID('edge'),\n created_by: this.renkan.current_user,\n from: _model,\n to: _destmodel\n };\n if (this.renderer.isEditable()) {\n this.project.addEdge(_data);\n }\n }\n }\n\n if (_model === _target.model || (_target.source_representation && _target.source_representation.model === _model)) {\n _endDrag = false;\n this.renderer.is_dragging = true;\n }\n }\n if (_endDrag) {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentation(this);\n paper.view.draw();\n }\n },\n destroy: function() {\n this.arrow.remove();\n this.line.remove();\n }\n }).value();\n\n /* TempEdge Class End */\n\n return TempEdge;\n\n});\n\n\ndefine('renderer/baseeditor',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* _BaseEditor Begin */\n //var _BaseEditor = Renderer._BaseEditor = Utils.inherit(Renderer._BaseRepresentation);\n var _BaseEditor = Utils.inherit(BaseRepresentation);\n\n _(_BaseEditor.prototype).extend({\n _init: function() {\n this.renderer.buttons_layer.activate();\n this.type = \"editor\";\n this.editor_block = new paper.Path();\n var _pts = _.map(_.range(8), function() {return [0,0];});\n this.editor_block.add.apply(this.editor_block, _pts);\n this.editor_block.strokeWidth = this.options.tooltip_border_width;\n this.editor_block.strokeColor = this.options.tooltip_border_color;\n this.editor_block.opacity = 0.8;\n this.editor_$ = $('
                                              ')\n .appendTo(this.renderer.editor_$)\n .css({\n position: \"absolute\",\n opacity: 0.8\n })\n .hide();\n },\n destroy: function() {\n this.editor_block.remove();\n this.editor_$.remove();\n }\n }).value();\n\n /* _BaseEditor End */\n\n return _BaseEditor;\n\n});\n\n\ndefine('renderer/nodeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor', 'renderer/shapebuilder'], function ($, _, requtils, BaseEditor, ShapeBuilder) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEditor Begin */\n //var NodeEditor = Renderer.NodeEditor = Utils.inherit(Renderer._BaseEditor);\n var NodeEditor = Utils.inherit(BaseEditor);\n\n _(NodeEditor.prototype).extend({\n _init: function() {\n BaseEditor.prototype._init.apply(this);\n this.template = this.options.templates['templates/nodeeditor.html'];\n //this.templates['default']= this.options.templates['templates/nodeeditor.html'];\n //fusionner avec this.options.node_editor_templates\n this.readOnlyTemplate = this.options.templates['templates/nodeeditor_readonly.html'];\n },\n draw: function() {\n var _model = this.source_representation.model,\n _created_by = _model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan),\n _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate ),\n _image_placeholder = this.options.static_url + \"img/image-placeholder.png\",\n _size = (_model.get(\"size\") || 0);\n this.editor_$\n .html(_template({\n node: {\n has_creator: !!_model.get(\"created_by\"),\n title: _model.get(\"title\"),\n uri: _model.get(\"uri\"),\n short_uri: Utils.shortenText((_model.get(\"uri\") || \"\").replace(/^(https?:\\/\\/)?(www\\.)?/,'').replace(/\\/$/,''),40),\n description: _model.get(\"description\"),\n image: _model.get(\"image\") || \"\",\n image_placeholder: _image_placeholder,\n color: (_model.has(\"style\") && _model.get(\"style\").color) || _created_by.get(\"color\"),\n thickness: (_model.has(\"style\") && _model.get(\"style\").thickness) || 1,\n dash: _model.has(\"style\") && _model.get(\"style\").dash ? \"checked\" : \"\",\n clip_path: _model.get(\"clip_path\") || false,\n created_by_color: _created_by.get(\"color\"),\n created_by_title: _created_by.get(\"title\"),\n size: (_size > 0 ? \"+\" : \"\") + _size,\n shape: _model.get(\"shape\") || \"circle\"\n },\n renkan: this.renkan,\n options: this.options,\n shortenText: Utils.shortenText,\n shapes : _(ShapeBuilder.builders).omit('svg').keys().value(),\n }));\n this.redraw();\n var _this = this,\n closeEditor = function() {\n _this.editor_$.off(\"keyup\");\n _this.editor_$.find(\"input, textarea, select\").off(\"change keyup paste\");\n _this.editor_$.find(\".Rk-Edit-Image-File\").off('change');\n _this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").off('hover');\n _this.editor_$.find(\".Rk-Edit-Size-Btn\").off('click');\n _this.editor_$.find(\".Rk-Edit-Image-Del\").off('click');\n _this.editor_$.find(\".Rk-Edit-ColorPicker\").find(\"li\").off('hover click');\n _this.editor_$.find(\".Rk-CloseX\").off('click');\n _this.editor_$.find(\".Rk-Edit-Goto\").off('click');\n\n _this.renderer.removeRepresentation(_this);\n paper.view.draw();\n };\n\n this.editor_$.find(\".Rk-CloseX\").click(closeEditor);\n\n this.editor_$.find(\".Rk-Edit-Goto\").click(function() {\n if (!_model.get(\"uri\")) {\n return false;\n }\n });\n\n if (this.renderer.isEditable()) {\n\n var onFieldChange = _.throttle(function() {\n _.defer(function() {\n if (_this.renderer.isEditable()) {\n var _data = {\n title: _this.editor_$.find(\".Rk-Edit-Title\").val()\n };\n if (_this.options.show_node_editor_uri) {\n _data.uri = _this.editor_$.find(\".Rk-Edit-URI\").val();\n _this.editor_$.find(\".Rk-Edit-Goto\").attr(\"href\",_data.uri || \"#\");\n }\n if (_this.options.show_node_editor_image) {\n _data.image = _this.editor_$.find(\".Rk-Edit-Image\").val();\n _this.editor_$.find(\".Rk-Edit-ImgPreview\").attr(\"src\", _data.image || _image_placeholder);\n }\n if (_this.options.show_node_editor_description) {\n _data.description = _this.editor_$.find(\".Rk-Edit-Description\").val();\n }\n if (_this.options.show_node_editor_style) {\n var dash = _this.editor_$.find(\".Rk-Edit-Dash\").is(':checked');\n _data.style = _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {dash: dash});\n }\n if (_this.options.change_shapes) {\n if(_model.get(\"shape\")!==_this.editor_$.find(\".Rk-Edit-Shape\").val()){\n _data.shape = _this.editor_$.find(\".Rk-Edit-Shape\").val();\n }\n }\n _model.set(_data);\n _this.redraw();\n } else {\n closeEditor();\n }\n });\n }, 500);\n\n this.editor_$.on(\"keyup\", function(_e) {\n if (_e.keyCode === 27) {\n closeEditor();\n }\n });\n\n this.editor_$.find(\"input, textarea, select\").on(\"change keyup paste\", onFieldChange);\n\n if(_this.options.allow_image_upload) {\n this.editor_$.find(\".Rk-Edit-Image-File\").change(function() {\n if (this.files.length) {\n var f = this.files[0],\n fr = new FileReader();\n if (f.type.substr(0,5) !== \"image\") {\n alert(_this.renkan.translate(\"This file is not an image\"));\n return;\n }\n if (f.size > (_this.options.uploaded_image_max_kb * 1024)) {\n alert(_this.renkan.translate(\"Image size must be under \") + _this.options.uploaded_image_max_kb + _this.renkan.translate(\"KB\"));\n return;\n }\n fr.onload = function(e) {\n _this.editor_$.find(\".Rk-Edit-Image\").val(e.target.result);\n onFieldChange();\n };\n fr.readAsDataURL(f);\n }\n });\n }\n this.editor_$.find(\".Rk-Edit-Title\")[0].focus();\n\n var _picker = _this.editor_$.find(\".Rk-Edit-ColorPicker\");\n\n this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").hover(\n function(_e) {\n _e.preventDefault();\n _picker.show();\n },\n function(_e) {\n _e.preventDefault();\n _picker.hide();\n }\n );\n\n _picker.find(\"li\").hover(\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", $(this).attr(\"data-color\"));\n },\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", (_model.has(\"style\") && _model.get(\"style\").color) || (_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(_this.renkan)).get(\"color\"));\n }\n ).click(function(_e) {\n _e.preventDefault();\n if (_this.renderer.isEditable()) {\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {color: $(this).attr(\"data-color\")}));\n _picker.hide();\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n\n var shiftSize = function(n) {\n if (_this.renderer.isEditable()) {\n var _newsize = n+(_model.get(\"size\") || 0);\n _this.editor_$.find(\"#Rk-Edit-Size-Value\").text((_newsize > 0 ? \"+\" : \"\") + _newsize);\n _model.set(\"size\", _newsize);\n paper.view.draw();\n } else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Size-Down\").click(function() {\n shiftSize(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Size-Up\").click(function() {\n shiftSize(1);\n return false;\n });\n\n var shiftThickness = function(n) {\n if (_this.renderer.isEditable()) {\n var _oldThickness = ((_model.has('style') && _model.get('style').thickness) || 1),\n _newThickness = n + _oldThickness;\n if(_newThickness < 1 ) {\n _newThickness = 1;\n }\n else if (_newThickness > _this.options.node_stroke_witdh_scale) {\n _newThickness = _this.options.node_stroke_witdh_scale;\n }\n if (_newThickness !== _oldThickness) {\n _this.editor_$.find(\"#Rk-Edit-Thickness-Value\").text(_newThickness);\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {thickness: _newThickness}));\n paper.view.draw();\n }\n }\n else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Thickness-Down\").click(function() {\n shiftThickness(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Thickness-Up\").click(function() {\n shiftThickness(1);\n return false;\n });\n\n this.editor_$.find(\".Rk-Edit-Image-Del\").click(function() {\n _this.editor_$.find(\".Rk-Edit-Image\").val('');\n onFieldChange();\n return false;\n });\n } else {\n if (typeof this.source_representation.highlighted === \"object\") {\n var titlehtml = this.source_representation.highlighted.replace(_(_model.get(\"title\")).escape(),'$1');\n this.editor_$.find(\".Rk-Display-Title\" + (_model.get(\"uri\") ? \" a\" : \"\")).html(titlehtml);\n if (this.options.show_node_tooltip_description) {\n this.editor_$.find(\".Rk-Display-Description\").html(this.source_representation.highlighted.replace(_(_model.get(\"description\")).escape(),'$1'));\n }\n }\n }\n this.editor_$.find(\"img\").load(function() {\n _this.redraw();\n });\n },\n redraw: function() {\n if (this.options.popup_editor){\n var _coords = this.source_representation.paper_coords;\n Utils.drawEditBox(this.options, _coords, this.editor_block, this.source_representation.circle_radius * 0.75, this.editor_$); \n }\n this.editor_$.show();\n paper.view.draw();\n }\n }).value();\n\n /* NodeEditor End */\n\n return NodeEditor;\n\n});\n\n\ndefine('renderer/edgeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor'], function ($, _, requtils, BaseEditor) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeEditor Begin */\n\n //var EdgeEditor = Renderer.EdgeEditor = Utils.inherit(Renderer._BaseEditor);\n var EdgeEditor = Utils.inherit(BaseEditor);\n\n _(EdgeEditor.prototype).extend({\n _init: function() {\n BaseEditor.prototype._init.apply(this);\n this.template = this.options.templates['templates/edgeeditor.html'];\n this.readOnlyTemplate = this.options.templates['templates/edgeeditor_readonly.html'];\n },\n draw: function() {\n var _model = this.source_representation.model,\n _from_model = _model.get(\"from\"),\n _to_model = _model.get(\"to\"),\n _created_by = _model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan),\n _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate);\n this.editor_$\n .html(_template({\n edge: {\n has_creator: !!_model.get(\"created_by\"),\n title: _model.get(\"title\"),\n uri: _model.get(\"uri\"),\n short_uri: Utils.shortenText((_model.get(\"uri\") || \"\").replace(/^(https?:\\/\\/)?(www\\.)?/,'').replace(/\\/$/,''),40),\n description: _model.get(\"description\"),\n color: (_model.has(\"style\") && _model.get(\"style\").color) || _created_by.get(\"color\"),\n dash: _model.has(\"style\") && _model.get(\"style\").dash ? \"checked\" : \"\",\n arrow: (_model.has(\"style\") && _model.get(\"style\").arrow) || !_model.has(\"style\") || (typeof _model.get(\"style\").arrow === 'undefined') ? \"checked\" : \"\",\n thickness: (_model.has(\"style\") && _model.get(\"style\").thickness) || 1,\n from_title: _from_model.get(\"title\"),\n to_title: _to_model.get(\"title\"),\n from_color: (_from_model.has(\"style\") && _from_model.get(\"style\").color) || (_from_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n to_color: (_to_model.has(\"style\") && _to_model.get(\"style\").color) || (_to_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n created_by_color: _created_by.get(\"color\"),\n created_by_title: _created_by.get(\"title\")\n },\n renkan: this.renkan,\n shortenText: Utils.shortenText,\n options: this.options\n }));\n this.redraw();\n var _this = this,\n closeEditor = function() {\n _this.renderer.removeRepresentation(_this);\n _this.editor_$.find(\".Rk-Edit-Size-Btn\").off('click');\n paper.view.draw();\n };\n this.editor_$.find(\".Rk-CloseX\").click(closeEditor);\n this.editor_$.find(\".Rk-Edit-Goto\").click(function() {\n if (!_model.get(\"uri\")) {\n return false;\n }\n });\n\n if (this.renderer.isEditable()) {\n\n var onFieldChange = _.throttle(function() {\n _.defer(function() {\n if (_this.renderer.isEditable()) {\n var _data = {\n title: _this.editor_$.find(\".Rk-Edit-Title\").val()\n };\n if (_this.options.show_edge_editor_uri) {\n _data.uri = _this.editor_$.find(\".Rk-Edit-URI\").val();\n }\n if (_this.options.show_node_editor_style) {\n var dash = _this.editor_$.find(\".Rk-Edit-Dash\").is(':checked');\n _data.style = _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {dash: dash});\n var arrow = _this.editor_$.find(\".Rk-Edit-Arrow\").is(':checked');\n _data.style = _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {arrow: arrow});\n }\n _this.editor_$.find(\".Rk-Edit-Goto\").attr(\"href\",_data.uri || \"#\");\n _model.set(_data);\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n },500);\n\n this.editor_$.on(\"keyup\", function(_e) {\n if (_e.keyCode === 27) {\n closeEditor();\n }\n });\n\n this.editor_$.find(\"input\").on(\"keyup change paste\", onFieldChange);\n\n this.editor_$.find(\".Rk-Edit-Vocabulary\").change(function() {\n var e = $(this),\n v = e.val();\n if (v) {\n _this.editor_$.find(\".Rk-Edit-Title\").val(e.find(\":selected\").text());\n _this.editor_$.find(\".Rk-Edit-URI\").val(v);\n onFieldChange();\n }\n });\n this.editor_$.find(\".Rk-Edit-Direction\").click(function() {\n if (_this.renderer.isEditable()) {\n _model.set({\n from: _model.get(\"to\"),\n to: _model.get(\"from\")\n });\n _this.draw();\n } else {\n closeEditor();\n }\n });\n\n var _picker = _this.editor_$.find(\".Rk-Edit-ColorPicker\");\n\n this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").hover(\n function(_e) {\n _e.preventDefault();\n _picker.show();\n },\n function(_e) {\n _e.preventDefault();\n _picker.hide();\n }\n );\n\n _picker.find(\"li\").hover(\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", $(this).attr(\"data-color\"));\n },\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", (_model.has(\"style\") && _model.get(\"style\").color)|| (_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(_this.renkan)).get(\"color\"));\n }\n ).click(function(_e) {\n _e.preventDefault();\n if (_this.renderer.isEditable()) {\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {color: $(this).attr(\"data-color\")}));\n _picker.hide();\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n var shiftThickness = function(n) {\n if (_this.renderer.isEditable()) {\n var _oldThickness = ((_model.has('style') && _model.get('style').thickness) || 1),\n _newThickness = n + _oldThickness;\n if(_newThickness < 1 ) {\n _newThickness = 1;\n }\n else if (_newThickness > _this.options.node_stroke_witdh_scale) {\n _newThickness = _this.options.node_stroke_witdh_scale;\n }\n if (_newThickness !== _oldThickness) {\n _this.editor_$.find(\"#Rk-Edit-Thickness-Value\").text(_newThickness);\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {thickness: _newThickness}));\n paper.view.draw();\n }\n }\n else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Thickness-Down\").click(function() {\n shiftThickness(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Thickness-Up\").click(function() {\n shiftThickness(1);\n return false;\n });\n }\n },\n redraw: function() {\n if (this.options.popup_editor){\n var _coords = this.source_representation.paper_coords;\n Utils.drawEditBox(this.options, _coords, this.editor_block, 5, this.editor_$);\n }\n this.editor_$.show();\n paper.view.draw();\n }\n }).value();\n\n /* EdgeEditor End */\n\n return EdgeEditor;\n\n});\n\n\ndefine('renderer/nodebutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* _NodeButton Begin */\n\n //var _NodeButton = Renderer._NodeButton = Utils.inherit(Renderer._BaseButton);\n var _NodeButton = Utils.inherit(BaseButton);\n\n _(_NodeButton.prototype).extend({\n setSectorSize: function() {\n var sectorInner = this.source_representation.circle_radius;\n if (sectorInner !== this.lastSectorInner) {\n if (this.sector) {\n this.sector.destroy();\n }\n this.sector = this.renderer.drawSector(\n this, 1 + sectorInner,\n Utils._NODE_BUTTON_WIDTH + sectorInner,\n this.startAngle,\n this.endAngle,\n 1,\n this.imageName,\n this.renkan.translate(this.text)\n );\n this.lastSectorInner = sectorInner;\n }\n },\n unselect: function() {\n BaseButton.prototype.unselect.apply(this, Array.prototype.slice.call(arguments, 1));\n if(this.source_representation && this.source_representation.buttons_timeout) {\n clearTimeout(this.source_representation.buttons_timeout);\n this.source_representation.hideButtons();\n }\n },\n select: function() {\n if(this.source_representation && this.source_representation.buttons_timeout) {\n clearTimeout(this.source_representation.buttons_timeout);\n }\n this.sector.select();\n },\n }).value();\n\n\n /* _NodeButton End */\n\n return _NodeButton;\n\n});\n\n\ndefine('renderer/nodeeditbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEditButton Begin */\n\n //var NodeEditButton = Renderer.NodeEditButton = Utils.inherit(Renderer._NodeButton);\n var NodeEditButton = Utils.inherit(NodeButton);\n\n _(NodeEditButton.prototype).extend({\n _init: function() {\n this.type = \"Node-edit-button\";\n this.lastSectorInner = 0;\n this.startAngle = -125;\n this.endAngle = -55;\n this.imageName = \"edit\";\n this.text = \"Edit\";\n },\n mouseup: function() {\n if (!this.renderer.is_dragging) {\n this.source_representation.openEditor();\n }\n }\n }).value();\n\n /* NodeEditButton End */\n\n return NodeEditButton;\n\n});\n\n\ndefine('renderer/noderemovebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeRemoveButton = Utils.inherit(NodeButton);\n\n _(NodeRemoveButton.prototype).extend({\n _init: function() {\n this.type = \"Node-remove-button\";\n this.lastSectorInner = 0;\n this.startAngle = -10;\n this.endAngle = 45;\n this.imageName = \"remove\";\n this.text = \"Remove\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n if (this.options.element_delete_delay) {\n var delid = Utils.getUID(\"delete\");\n this.renderer.delete_list.push({\n id: delid,\n time: new Date().valueOf() + this.options.element_delete_delay\n });\n this.source_representation.model.set(\"delete_scheduled\", delid);\n } else {\n if (confirm(this.renkan.translate('Do you really wish to remove node ') + '\"' + this.source_representation.model.get(\"title\") + '\"?')) {\n this.project.removeNode(this.source_representation.model);\n }\n }\n }\n }\n }).value();\n\n /* NodeRemoveButton End */\n\n return NodeRemoveButton;\n\n});\n\n\ndefine('renderer/nodehidebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeHideButton = Utils.inherit(NodeButton);\n\n _(NodeHideButton.prototype).extend({\n _init: function() {\n this.type = \"Node-hide-button\";\n this.lastSectorInner = 0;\n this.startAngle = 45;\n this.endAngle = 90;\n this.imageName = \"hide\";\n this.text = \"Hide\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n this.renderer.addHiddenNode(this.source_representation.model);\n }\n }\n }).value();\n\n /* NodeRemoveButton End */\n\n return NodeHideButton;\n\n});\n\n\ndefine('renderer/nodeshowbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeShowButton = Utils.inherit(NodeButton);\n\n _(NodeShowButton.prototype).extend({\n _init: function() {\n this.type = \"Node-show-button\";\n this.lastSectorInner = 0;\n this.startAngle = 90;\n this.endAngle = 135;\n this.imageName = \"show\";\n this.text = \"Show\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n this.source_representation.showNeighbors(false);\n }\n }\n }).value();\n\n /* NodeShowButton End */\n\n return NodeShowButton;\n\n});\n\n\ndefine('renderer/noderevertbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRevertButton Begin */\n\n //var NodeRevertButton = Renderer.NodeRevertButton = Utils.inherit(Renderer._NodeButton);\n var NodeRevertButton = Utils.inherit(NodeButton);\n\n _(NodeRevertButton.prototype).extend({\n _init: function() {\n this.type = \"Node-revert-button\";\n this.lastSectorInner = 0;\n this.startAngle = -135;\n this.endAngle = 135;\n this.imageName = \"revert\";\n this.text = \"Cancel deletion\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n if (this.renderer.isEditable()) {\n this.source_representation.model.unset(\"delete_scheduled\");\n }\n }\n }).value();\n\n /* NodeRevertButton End */\n\n return NodeRevertButton;\n\n});\n\n\ndefine('renderer/nodelinkbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeLinkButton Begin */\n\n //var NodeLinkButton = Renderer.NodeLinkButton = Utils.inherit(Renderer._NodeButton);\n var NodeLinkButton = Utils.inherit(NodeButton);\n\n _(NodeLinkButton.prototype).extend({\n _init: function() {\n this.type = \"Node-link-button\";\n this.lastSectorInner = 0;\n this.startAngle = 135;\n this.endAngle = 190;\n this.imageName = \"link\";\n this.text = \"Link to another node\";\n },\n mousedown: function(_event, _isTouch) {\n if (this.renderer.isEditable()) {\n var _off = this.renderer.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n this.renderer.click_target = null;\n this.renderer.removeRepresentationsOfType(\"editor\");\n this.renderer.addTempEdge(this.source_representation, _point);\n }\n }\n }).value();\n\n /* NodeLinkButton End */\n\n return NodeLinkButton;\n\n});\n\n\n\ndefine('renderer/nodeenlargebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEnlargeButton Begin */\n\n //var NodeEnlargeButton = Renderer.NodeEnlargeButton = Utils.inherit(Renderer._NodeButton);\n var NodeEnlargeButton = Utils.inherit(NodeButton);\n\n _(NodeEnlargeButton.prototype).extend({\n _init: function() {\n this.type = \"Node-enlarge-button\";\n this.lastSectorInner = 0;\n this.startAngle = -55;\n this.endAngle = -10;\n this.imageName = \"enlarge\";\n this.text = \"Enlarge\";\n },\n mouseup: function() {\n var _newsize = 1 + (this.source_representation.model.get(\"size\") || 0);\n this.source_representation.model.set(\"size\", _newsize);\n this.source_representation.select();\n this.select();\n paper.view.draw();\n }\n }).value();\n\n /* NodeEnlargeButton End */\n\n return NodeEnlargeButton;\n\n});\n\n\ndefine('renderer/nodeshrinkbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeShrinkButton Begin */\n\n //var NodeShrinkButton = Renderer.NodeShrinkButton = Utils.inherit(Renderer._NodeButton);\n var NodeShrinkButton = Utils.inherit(NodeButton);\n\n _(NodeShrinkButton.prototype).extend({\n _init: function() {\n this.type = \"Node-shrink-button\";\n this.lastSectorInner = 0;\n this.startAngle = -170;\n this.endAngle = -125;\n this.imageName = \"shrink\";\n this.text = \"Shrink\";\n },\n mouseup: function() {\n var _newsize = -1 + (this.source_representation.model.get(\"size\") || 0);\n this.source_representation.model.set(\"size\", _newsize);\n this.source_representation.select();\n this.select();\n paper.view.draw();\n }\n }).value();\n\n /* NodeShrinkButton End */\n\n return NodeShrinkButton;\n\n});\n\n\ndefine('renderer/edgeeditbutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeEditButton Begin */\n\n //var EdgeEditButton = Renderer.EdgeEditButton = Utils.inherit(Renderer._BaseButton);\n var EdgeEditButton = Utils.inherit(BaseButton);\n\n _(EdgeEditButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-edit-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -270, -90, 1, \"edit\", this.renkan.translate(\"Edit\"));\n },\n mouseup: function() {\n if (!this.renderer.is_dragging) {\n this.source_representation.openEditor();\n }\n }\n }).value();\n\n /* EdgeEditButton End */\n\n return EdgeEditButton;\n\n});\n\n\ndefine('renderer/edgeremovebutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeRemoveButton Begin */\n\n //var EdgeRemoveButton = Renderer.EdgeRemoveButton = Utils.inherit(Renderer._BaseButton);\n var EdgeRemoveButton = Utils.inherit(BaseButton);\n\n _(EdgeRemoveButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-remove-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -90, 90, 1, \"remove\", this.renkan.translate(\"Remove\"));\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n if (this.options.element_delete_delay) {\n var delid = Utils.getUID(\"delete\");\n this.renderer.delete_list.push({\n id: delid,\n time: new Date().valueOf() + this.options.element_delete_delay\n });\n this.source_representation.model.set(\"delete_scheduled\", delid);\n } else {\n if (confirm(this.renkan.translate('Do you really wish to remove edge ') + '\"' + this.source_representation.model.get(\"title\") + '\"?')) {\n this.project.removeEdge(this.source_representation.model);\n }\n }\n }\n }\n }).value();\n\n /* EdgeRemoveButton End */\n\n return EdgeRemoveButton;\n\n});\n\n\ndefine('renderer/edgerevertbutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeRevertButton Begin */\n\n //var EdgeRevertButton = Renderer.EdgeRevertButton = Utils.inherit(Renderer._BaseButton);\n var EdgeRevertButton = Utils.inherit(BaseButton);\n\n _(EdgeRevertButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-revert-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -135, 135, 1, \"revert\", this.renkan.translate(\"Cancel deletion\"));\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n if (this.renderer.isEditable()) {\n this.source_representation.model.unset(\"delete_scheduled\");\n }\n }\n }).value();\n\n /* EdgeRevertButton End */\n\n return EdgeRevertButton;\n\n});\n\n\ndefine('renderer/miniframe',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* MiniFrame Begin */\n\n //var MiniFrame = Renderer.MiniFrame = Utils.inherit(Renderer._BaseRepresentation);\n var MiniFrame = Utils.inherit(BaseRepresentation);\n\n _(MiniFrame.prototype).extend({\n paperShift: function(_delta) {\n this.renderer.offset = this.renderer.offset.subtract(_delta.divide(this.renderer.minimap.scale).multiply(this.renderer.scale));\n this.renderer.redraw();\n },\n mouseup: function(_delta) {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n }\n }).value();\n\n\n /* MiniFrame End */\n\n return MiniFrame;\n\n});\n\n\ndefine('renderer/scene',['jquery', 'underscore', 'filesaver', 'requtils', 'renderer/miniframe'], function ($, _, filesaver, requtils, MiniFrame) {\n \n\n var Utils = requtils.getUtils();\n\n /* Scene Begin */\n\n var Scene = function(_renkan) {\n this.renkan = _renkan;\n this.$ = $(\".Rk-Render\");\n this.representations = [];\n this.$.html(_renkan.options.templates['templates/scene.html'](_renkan));\n this.onStatusChange();\n this.canvas_$ = this.$.find(\".Rk-Canvas\");\n this.labels_$ = this.$.find(\".Rk-Labels\");\n if (!_renkan.options.popup_editor){\n this.editor_$ = $(\"#\" + _renkan.options.editor_panel);\n }else{\n this.editor_$ = this.$.find(\".Rk-Editor\");\n }\n this.notif_$ = this.$.find(\".Rk-Notifications\");\n paper.setup(this.canvas_$[0]);\n this.scale = 1;\n this.initialScale = 1;\n this.offset = paper.view.center;\n this.totalScroll = 0;\n this.hiddenNodes = [];\n this.mouse_down = false;\n this.click_target = null;\n this.selected_target = null;\n this.edge_layer = new paper.Layer();\n this.node_layer = new paper.Layer();\n this.buttons_layer = new paper.Layer();\n this.delete_list = [];\n this.redrawActive = true;\n\n if (_renkan.options.show_minimap) {\n this.minimap = {\n background_layer: new paper.Layer(),\n edge_layer: new paper.Layer(),\n node_layer: new paper.Layer(),\n node_group: new paper.Group(),\n size: new paper.Size( _renkan.options.minimap_width, _renkan.options.minimap_height )\n };\n\n this.minimap.background_layer.activate();\n this.minimap.topleft = paper.view.bounds.bottomRight.subtract(this.minimap.size);\n this.minimap.rectangle = new paper.Path.Rectangle(this.minimap.topleft.subtract([2,2]), this.minimap.size.add([4,4]));\n this.minimap.rectangle.fillColor = _renkan.options.minimap_background_color;\n this.minimap.rectangle.strokeColor = _renkan.options.minimap_border_color;\n this.minimap.rectangle.strokeWidth = 4;\n this.minimap.offset = new paper.Point(this.minimap.size.divide(2));\n this.minimap.scale = 0.1;\n\n this.minimap.node_layer.activate();\n this.minimap.cliprectangle = new paper.Path.Rectangle(this.minimap.topleft, this.minimap.size);\n this.minimap.node_group.addChild(this.minimap.cliprectangle);\n this.minimap.node_group.clipped = true;\n this.minimap.miniframe = new paper.Path.Rectangle(this.minimap.topleft, this.minimap.size);\n this.minimap.node_group.addChild(this.minimap.miniframe);\n this.minimap.miniframe.fillColor = '#c0c0ff';\n this.minimap.miniframe.opacity = 0.3;\n this.minimap.miniframe.strokeColor = '#000080';\n this.minimap.miniframe.strokeWidth = 2;\n this.minimap.miniframe.__representation = new MiniFrame(this, null);\n }\n\n this.throttledPaperDraw = _(function() {\n paper.view.draw();\n }).throttle(100).value();\n\n this.bundles = [];\n this.click_mode = false;\n\n var _this = this,\n _allowScroll = true,\n _originalScale = 1,\n _zooming = false,\n _lastTapX = 0,\n _lastTapY = 0;\n\n this.image_cache = {};\n this.icon_cache = {};\n\n ['edit', 'remove', 'hide', 'show', 'link', 'enlarge', 'shrink', 'revert' ].forEach(function(imgname) {\n var img = new Image();\n img.src = _renkan.options.static_url + 'img/' + imgname + '.png';\n _this.icon_cache[imgname] = img;\n });\n\n var throttledMouseMove = _.throttle(function(_event, _isTouch) {\n _this.onMouseMove(_event, _isTouch);\n }, Utils._MOUSEMOVE_RATE);\n\n this.canvas_$.on({\n mousedown: function(_event) {\n _event.preventDefault();\n _this.onMouseDown(_event, false);\n },\n mousemove: function(_event) {\n _event.preventDefault();\n throttledMouseMove(_event, false);\n },\n mouseup: function(_event) {\n _event.preventDefault();\n _this.onMouseUp(_event, false);\n },\n mousewheel: function(_event, _delta) {\n if(_renkan.options.zoom_on_scroll) {\n _event.preventDefault();\n if (_allowScroll) {\n _this.onScroll(_event, _delta);\n }\n }\n },\n touchstart: function(_event) {\n _event.preventDefault();\n var _touches = _event.originalEvent.touches[0];\n if (\n _renkan.options.allow_double_click &&\n new Date() - _lastTap < Utils._DOUBLETAP_DELAY &&\n ( Math.pow(_lastTapX - _touches.pageX, 2) + Math.pow(_lastTapY - _touches.pageY, 2) < Utils._DOUBLETAP_DISTANCE )\n ) {\n _lastTap = 0;\n _this.onDoubleClick(_touches);\n } else {\n _lastTap = new Date();\n _lastTapX = _touches.pageX;\n _lastTapY = _touches.pageY;\n _originalScale = _this.scale;\n _zooming = false;\n _this.onMouseDown(_touches, true);\n }\n },\n touchmove: function(_event) {\n _event.preventDefault();\n _lastTap = 0;\n if (_event.originalEvent.touches.length === 1) {\n _this.onMouseMove(_event.originalEvent.touches[0], true);\n } else {\n if (!_zooming) {\n _this.onMouseUp(_event.originalEvent.touches[0], true);\n _this.click_target = null;\n _this.is_dragging = false;\n _zooming = true;\n }\n if (_event.originalEvent.scale === \"undefined\") {\n return;\n }\n var _newScale = _event.originalEvent.scale * _originalScale,\n _scaleRatio = _newScale / _this.scale,\n _newOffset = new paper.Point([\n _this.canvas_$.width(),\n _this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - _scaleRatio ) ).add(_this.offset.multiply( _scaleRatio ));\n _this.setScale(_newScale, _newOffset);\n }\n },\n touchend: function(_event) {\n _event.preventDefault();\n _this.onMouseUp(_event.originalEvent.changedTouches[0], true);\n },\n dblclick: function(_event) {\n _event.preventDefault();\n if (_renkan.options.allow_double_click) {\n _this.onDoubleClick(_event);\n }\n },\n mouseleave: function(_event) {\n _event.preventDefault();\n _this.onMouseUp(_event, false);\n _this.click_target = null;\n _this.is_dragging = false;\n },\n dragover: function(_event) {\n _event.preventDefault();\n },\n dragenter: function(_event) {\n _event.preventDefault();\n _allowScroll = false;\n },\n dragleave: function(_event) {\n _event.preventDefault();\n _allowScroll = true;\n },\n drop: function(_event) {\n _event.preventDefault();\n _allowScroll = true;\n var res = {};\n _.each(_event.originalEvent.dataTransfer.types, function(t) {\n try {\n res[t] = _event.originalEvent.dataTransfer.getData(t);\n } catch(e) {}\n });\n var text = _event.originalEvent.dataTransfer.getData(\"Text\");\n if (typeof text === \"string\") {\n switch(text[0]) {\n case \"{\":\n case \"[\":\n try {\n var data = JSON.parse(text);\n _.extend(res,data);\n }\n catch(e) {\n if (!res[\"text/plain\"]) {\n res[\"text/plain\"] = text;\n }\n }\n break;\n case \"<\":\n if (!res[\"text/html\"]) {\n res[\"text/html\"] = text;\n }\n break;\n default:\n if (!res[\"text/plain\"]) {\n res[\"text/plain\"] = text;\n }\n }\n }\n var url = _event.originalEvent.dataTransfer.getData(\"URL\");\n if (url && !res[\"text/uri-list\"]) {\n res[\"text/uri-list\"] = url;\n }\n _this.dropData(res, _event.originalEvent);\n }\n });\n\n var bindClick = function(selector, fname) {\n _this.$.find(selector).click(function(evt) {\n _this[fname](evt);\n return false;\n });\n };\n\n bindClick(\".Rk-ZoomOut\", \"zoomOut\");\n bindClick(\".Rk-ZoomIn\", \"zoomIn\");\n bindClick(\".Rk-ZoomFit\", \"autoScale\");\n this.$.find(\".Rk-ZoomSave\").click( function() {\n // Save scale and offset point\n _this.renkan.project.addView( { zoom_level:_this.scale, offset:_this.offset, hidden_nodes: _this.hiddenNodes } );\n });\n this.$.find(\".Rk-ZoomSetSaved\").click( function() {\n var view = _this.renkan.project.get(\"views\").last();\n if(view){\n _this.setScale(view.get(\"zoom_level\"), new paper.Point(view.get(\"offset\")));\n _this.hiddenNodes = view.get(\"hidden_nodes\") || [];\n _this.hideNodes();\n }\n });\n this.$.find(\".Rk-ShowHiddenNodes\").mouseenter( function() {\n _this.showNodes(true);\n _this.$.find(\".Rk-ShowHiddenNodes\").mouseleave( function() {\n _this.hideNodes(false);\n });\n });\n this.$.find(\".Rk-ShowHiddenNodes\").click( function() {\n _this.showNodes(false);\n _this.$.find(\".Rk-ShowHiddenNodes\").off( \"mouseleave\" ); \n });\n if(this.renkan.project.get(\"views\").length > 0 && this.renkan.options.save_view){\n this.$.find(\".Rk-ZoomSetSaved\").show();\n }\n this.$.find(\".Rk-CurrentUser\").mouseenter(\n function() { _this.$.find(\".Rk-UserList\").slideDown(); }\n );\n this.$.find(\".Rk-Users\").mouseleave(\n function() { _this.$.find(\".Rk-UserList\").slideUp(); }\n );\n bindClick(\".Rk-FullScreen-Button\", \"fullScreen\");\n bindClick(\".Rk-AddNode-Button\", \"addNodeBtn\");\n bindClick(\".Rk-AddEdge-Button\", \"addEdgeBtn\");\n bindClick(\".Rk-Save-Button\", \"save\");\n bindClick(\".Rk-Open-Button\", \"open\");\n bindClick(\".Rk-Export-Button\", \"exportProject\");\n this.$.find(\".Rk-Bookmarklet-Button\")\n /*jshint scripturl:true */\n .attr(\"href\",\"javascript:\" + Utils._BOOKMARKLET_CODE(_renkan))\n .click(function(){\n _this.notif_$\n .text(_renkan.translate(\"Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.\"))\n .fadeIn()\n .delay(5000)\n .fadeOut();\n return false;\n });\n this.$.find(\".Rk-TopBar-Button\").mouseover(function() {\n $(this).find(\".Rk-TopBar-Tooltip\").show();\n }).mouseout(function() {\n $(this).find(\".Rk-TopBar-Tooltip\").hide();\n });\n bindClick(\".Rk-Fold-Bins\", \"foldBins\");\n\n paper.view.onResize = function(_event) {\n var _ratio,\n newWidth = _event.width,\n newHeight = _event.height;\n\n if (_this.minimap) {\n _this.minimap.topleft = paper.view.bounds.bottomRight.subtract(_this.minimap.size);\n _this.minimap.rectangle.fitBounds(_this.minimap.topleft.subtract([2,2]), _this.minimap.size.add([4,4]));\n _this.minimap.cliprectangle.fitBounds(_this.minimap.topleft, _this.minimap.size);\n }\n\n var ratioH = newHeight/(newHeight-_event.delta.height),\n ratioW = newWidth/(newWidth-_event.delta.width);\n if (newHeight < newWidth) {\n _ratio = ratioH;\n } else {\n _ratio = ratioW;\n }\n\n _this.resizeZoom(ratioW, ratioH, _ratio);\n\n _this.redraw();\n\n };\n\n var _thRedraw = _.throttle(function() {\n _this.redraw();\n },50);\n\n this.addRepresentations(\"Node\", this.renkan.project.get(\"nodes\"));\n this.addRepresentations(\"Edge\", this.renkan.project.get(\"edges\"));\n this.renkan.project.on(\"change:title\", function() {\n _this.$.find(\".Rk-PadTitle\").val(_renkan.project.get(\"title\"));\n });\n\n this.$.find(\".Rk-PadTitle\").on(\"keyup input paste\", function() {\n _renkan.project.set({\"title\": $(this).val()});\n });\n\n var _thRedrawUsers = _.throttle(function() {\n _this.redrawUsers();\n }, 100);\n\n _thRedrawUsers();\n\n // register model events\n this.renkan.project.on(\"change:saveStatus\", function(){\n switch (_this.renkan.project.get(\"saveStatus\")) {\n case 0: //clean\n _this.$.find(\".Rk-Save-Button\").removeClass(\"to-save\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saving\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"saved\");\n break;\n case 1: //dirty\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saved\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saving\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"to-save\");\n break;\n case 2: //saving\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saved\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"to-save\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"saving\");\n break;\n }\n });\n\n this.renkan.project.on(\"change:loadingStatus\", function(){\n if (_this.renkan.project.get(\"loadingStatus\")){\n var animate = _this.$.find(\".loader\").addClass(\"run\");\n var timer = setTimeout(function(){\n _this.$.find(\".loader\").hide(250);\n }, 3000);\n }\n });\n\n this.renkan.project.on(\"add:users remove:users\", _thRedrawUsers);\n\n this.renkan.project.on(\"add:views remove:views\", function(_node) {\n if(_this.renkan.project.get('views').length > 0) {\n _this.$.find(\".Rk-ZoomSetSaved\").show();\n }\n else {\n _this.$.find(\".Rk-ZoomSetSaved\").hide();\n }\n });\n\n this.renkan.project.on(\"add:nodes\", function(_node) {\n _this.addRepresentation(\"Node\", _node);\n if (!_this.renkan.project.get(\"loadingStatus\")){\n _thRedraw();\n }\n });\n this.renkan.project.on(\"add:edges\", function(_edge) {\n _this.addRepresentation(\"Edge\", _edge);\n if (!_this.renkan.project.get(\"loadingStatus\")){\n _thRedraw();\n }\n });\n this.renkan.project.on(\"change:title\", function(_model, _title) {\n var el = _this.$.find(\".Rk-PadTitle\");\n if (el.is(\"input\")) {\n if (el.val() !== _title) {\n el.val(_title);\n }\n } else {\n el.text(_title);\n }\n });\n\n if (_renkan.options.size_bug_fix) {\n var _delay = (\n typeof _renkan.options.size_bug_fix === \"number\" ?\n _renkan.options.size_bug_fix\n : 500\n );\n window.setTimeout(\n function() {\n _this.fixSize();\n },\n _delay\n );\n }\n\n if (_renkan.options.force_resize) {\n $(window).resize(function() {\n _this.autoScale();\n });\n }\n\n if (_renkan.options.show_user_list && _renkan.options.user_color_editable) {\n var $cpwrapper = this.$.find(\".Rk-Users .Rk-Edit-ColorPicker-Wrapper\"),\n $cplist = this.$.find(\".Rk-Users .Rk-Edit-ColorPicker\");\n\n $cpwrapper.hover(\n function(_e) {\n if (_this.isEditable()) {\n _e.preventDefault();\n $cplist.show();\n }\n },\n function(_e) {\n _e.preventDefault();\n $cplist.hide();\n }\n );\n\n $cplist.find(\"li\").mouseenter(\n function(_e) {\n if (_this.isEditable()) {\n _e.preventDefault();\n _this.$.find(\".Rk-CurrentUser-Color\").css(\"background\", $(this).attr(\"data-color\"));\n }\n }\n );\n }\n\n if (_renkan.options.show_search_field) {\n\n var lastval = '';\n\n this.$.find(\".Rk-GraphSearch-Field\").on(\"keyup change paste input\", function() {\n var $this = $(this),\n val = $this.val();\n if (val === lastval) {\n return;\n }\n lastval = val;\n if (val.length < 2) {\n _renkan.project.get(\"nodes\").each(function(n) {\n _this.getRepresentationByModel(n).unhighlight();\n });\n } else {\n var rxs = Utils.regexpFromTextOrArray(val);\n _renkan.project.get(\"nodes\").each(function(n) {\n if (rxs.test(n.get(\"title\")) || rxs.test(n.get(\"description\"))) {\n _this.getRepresentationByModel(n).highlight(rxs);\n } else {\n _this.getRepresentationByModel(n).unhighlight();\n }\n });\n }\n });\n }\n\n this.redraw();\n\n window.setInterval(function() {\n var _now = new Date().valueOf();\n _this.delete_list.forEach(function(d) {\n if (_now >= d.time) {\n var el = _renkan.project.get(\"nodes\").findWhere({\"delete_scheduled\":d.id});\n if (el) {\n project.removeNode(el);\n }\n el = _renkan.project.get(\"edges\").findWhere({\"delete_scheduled\":d.id});\n if (el) {\n project.removeEdge(el);\n }\n }\n });\n _this.delete_list = _this.delete_list.filter(function(d) {\n return _renkan.project.get(\"nodes\").findWhere({\"delete_scheduled\":d.id}) || _renkan.project.get(\"edges\").findWhere({\"delete_scheduled\":d.id});\n });\n }, 500);\n\n if (this.minimap) {\n window.setInterval(function() {\n _this.rescaleMinimap();\n }, 2000);\n }\n\n };\n\n _(Scene.prototype).extend({\n fixSize: function() {\n if( this.renkan.options.default_view && this.renkan.project.get(\"views\").length > 0) {\n var view = this.renkan.project.get(\"views\").last();\n this.setScale(view.get(\"zoom_level\"), new paper.Point(view.get(\"offset\")));\n }\n else{\n this.autoScale();\n }\n },\n drawSector: function(_repr, _inR, _outR, _startAngle, _endAngle, _padding, _imgname, _caption) {\n var _options = this.renkan.options,\n _startRads = _startAngle * Math.PI / 180,\n _endRads = _endAngle * Math.PI / 180,\n _img = this.icon_cache[_imgname],\n _startdx = - Math.sin(_startRads),\n _startdy = Math.cos(_startRads),\n _startXIn = Math.cos(_startRads) * _inR + _padding * _startdx,\n _startYIn = Math.sin(_startRads) * _inR + _padding * _startdy,\n _startXOut = Math.cos(_startRads) * _outR + _padding * _startdx,\n _startYOut = Math.sin(_startRads) * _outR + _padding * _startdy,\n _enddx = - Math.sin(_endRads),\n _enddy = Math.cos(_endRads),\n _endXIn = Math.cos(_endRads) * _inR - _padding * _enddx,\n _endYIn = Math.sin(_endRads) * _inR - _padding * _enddy,\n _endXOut = Math.cos(_endRads) * _outR - _padding * _enddx,\n _endYOut = Math.sin(_endRads) * _outR - _padding * _enddy,\n _centerR = (_inR + _outR) / 2,\n _centerRads = (_startRads + _endRads) / 2,\n _centerX = Math.cos(_centerRads) * _centerR,\n _centerY = Math.sin(_centerRads) * _centerR,\n _centerXIn = Math.cos(_centerRads) * _inR,\n _centerXOut = Math.cos(_centerRads) * _outR,\n _centerYIn = Math.sin(_centerRads) * _inR,\n _centerYOut = Math.sin(_centerRads) * _outR,\n _textX = Math.cos(_centerRads) * (_outR + 3),\n _textY = Math.sin(_centerRads) * (_outR + _options.buttons_label_font_size) + _options.buttons_label_font_size / 2;\n this.buttons_layer.activate();\n var _path = new paper.Path();\n _path.add([_startXIn, _startYIn]);\n _path.arcTo([_centerXIn, _centerYIn], [_endXIn, _endYIn]);\n _path.lineTo([_endXOut, _endYOut]);\n _path.arcTo([_centerXOut, _centerYOut], [_startXOut, _startYOut]);\n _path.fillColor = _options.buttons_background;\n _path.opacity = 0.5;\n _path.closed = true;\n _path.__representation = _repr;\n var _text = new paper.PointText(_textX,_textY);\n _text.characterStyle = {\n fontSize: _options.buttons_label_font_size,\n fillColor: _options.buttons_label_color\n };\n if (_textX > 2) {\n _text.paragraphStyle.justification = 'left';\n } else if (_textX < -2) {\n _text.paragraphStyle.justification = 'right';\n } else {\n _text.paragraphStyle.justification = 'center';\n }\n _text.visible = false;\n var _visible = false,\n _restPos = new paper.Point(-200, -200),\n _grp = new paper.Group([_path, _text]),\n //_grp = new paper.Group([_path]),\n _delta = _grp.position,\n _imgdelta = new paper.Point([_centerX, _centerY]),\n _currentPos = new paper.Point(0,0);\n _text.content = _caption;\n // set group pivot to not depend on text visibility that changes the group bounding box.\n _grp.pivot = _grp.bounds.center;\n _grp.visible = false;\n _grp.position = _restPos;\n var _res = {\n show: function() {\n _visible = true;\n _grp.position = _currentPos.add(_delta);\n _grp.visible = true;\n },\n moveTo: function(_point) {\n _currentPos = _point;\n if (_visible) {\n _grp.position = _point.add(_delta);\n }\n },\n hide: function() {\n _visible = false;\n _grp.visible = false;\n _grp.position = _restPos;\n },\n select: function() {\n _path.opacity = 0.8;\n _text.visible = true;\n },\n unselect: function() {\n _path.opacity = 0.5;\n _text.visible = false;\n },\n destroy: function() {\n _grp.remove();\n }\n };\n var showImage = function() {\n var _raster = new paper.Raster(_img);\n _raster.position = _imgdelta.add(_grp.position).subtract(_delta);\n _raster.locked = true; // Disable mouse events on icon\n _grp.addChild(_raster);\n };\n if (_img.width) {\n showImage();\n } else {\n $(_img).on(\"load\",showImage);\n }\n\n return _res;\n },\n addToBundles: function(_edgeRepr) {\n var _bundle = _(this.bundles).find(function(_bundle) {\n return (\n ( _bundle.from === _edgeRepr.from_representation && _bundle.to === _edgeRepr.to_representation ) ||\n ( _bundle.from === _edgeRepr.to_representation && _bundle.to === _edgeRepr.from_representation )\n );\n });\n if (typeof _bundle !== \"undefined\") {\n _bundle.edges.push(_edgeRepr);\n } else {\n _bundle = {\n from: _edgeRepr.from_representation,\n to: _edgeRepr.to_representation,\n edges: [ _edgeRepr ],\n getPosition: function(_er) {\n var _dir = (_er.from_representation === this.from) ? 1 : -1;\n return _dir * ( _(this.edges).indexOf(_er) - (this.edges.length - 1) / 2 );\n }\n };\n this.bundles.push(_bundle);\n }\n return _bundle;\n },\n isEditable: function() {\n return (this.renkan.options.editor_mode && !this.renkan.read_only);\n },\n onStatusChange: function() {\n var savebtn = this.$.find(\".Rk-Save-Button\"),\n tip = savebtn.find(\".Rk-TopBar-Tooltip-Contents\");\n if (this.renkan.read_only) {\n savebtn.removeClass(\"disabled Rk-Save-Online\").addClass(\"Rk-Save-ReadOnly\");\n tip.text(this.renkan.translate(\"Connection lost\"));\n } else {\n if (this.renkan.options.manual_save) {\n savebtn.removeClass(\"Rk-Save-ReadOnly Rk-Save-Online\");\n tip.text(this.renkan.translate(\"Save Project\"));\n } else {\n savebtn.removeClass(\"disabled Rk-Save-ReadOnly\").addClass(\"Rk-Save-Online\");\n tip.text(this.renkan.translate(\"Auto-save enabled\"));\n }\n }\n this.redrawUsers();\n },\n setScale: function(_newScale, _offset) {\n if ((_newScale/this.initialScale) > Utils._MIN_SCALE && (_newScale/this.initialScale) < Utils._MAX_SCALE) {\n this.scale = _newScale;\n if (_offset) {\n this.offset = _offset;\n }\n this.redraw();\n }\n },\n autoScale: function(force_view) {\n var nodes = this.renkan.project.get(\"nodes\");\n if (nodes.length > 1) {\n var _xx = nodes.map(function(_node) { return _node.get(\"position\").x; }),\n _yy = nodes.map(function(_node) { return _node.get(\"position\").y; }),\n _minx = Math.min.apply(Math, _xx),\n _miny = Math.min.apply(Math, _yy),\n _maxx = Math.max.apply(Math, _xx),\n _maxy = Math.max.apply(Math, _yy);\n var _scale = Math.min( (paper.view.size.width - 2 * this.renkan.options.autoscale_padding) / (_maxx - _minx), (paper.view.size.height - 2 * this.renkan.options.autoscale_padding) / (_maxy - _miny));\n this.initialScale = _scale;\n // Override calculated scale if asked\n if((typeof force_view !== \"undefined\") && parseFloat(force_view.zoom_level)>0 && parseFloat(force_view.offset.x)>0 && parseFloat(force_view.offset.y)>0){\n this.setScale(parseFloat(force_view.zoom_level), new paper.Point(parseFloat(force_view.offset.x), parseFloat(force_view.offset.y)));\n }\n else{\n this.setScale(_scale, paper.view.center.subtract(new paper.Point([(_maxx + _minx) / 2, (_maxy + _miny) / 2]).multiply(_scale)));\n }\n }\n if (nodes.length === 1) {\n this.setScale(1, paper.view.center.subtract(new paper.Point([nodes.at(0).get(\"position\").x, nodes.at(0).get(\"position\").y])));\n }\n },\n redrawMiniframe: function() {\n var topleft = this.toMinimapCoords(this.toModelCoords(new paper.Point([0,0]))),\n bottomright = this.toMinimapCoords(this.toModelCoords(paper.view.bounds.bottomRight));\n this.minimap.miniframe.fitBounds(topleft, bottomright);\n },\n rescaleMinimap: function() {\n var nodes = this.renkan.project.get(\"nodes\");\n if (nodes.length > 1) {\n var _xx = nodes.map(function(_node) { return _node.get(\"position\").x; }),\n _yy = nodes.map(function(_node) { return _node.get(\"position\").y; }),\n _minx = Math.min.apply(Math, _xx),\n _miny = Math.min.apply(Math, _yy),\n _maxx = Math.max.apply(Math, _xx),\n _maxy = Math.max.apply(Math, _yy);\n var _scale = Math.min(\n this.scale * 0.8 * this.renkan.options.minimap_width / paper.view.bounds.width,\n this.scale * 0.8 * this.renkan.options.minimap_height / paper.view.bounds.height,\n ( this.renkan.options.minimap_width - 2 * this.renkan.options.minimap_padding ) / (_maxx - _minx),\n ( this.renkan.options.minimap_height - 2 * this.renkan.options.minimap_padding ) / (_maxy - _miny)\n );\n this.minimap.offset = this.minimap.size.divide(2).subtract(new paper.Point([(_maxx + _minx) / 2, (_maxy + _miny) / 2]).multiply(_scale));\n this.minimap.scale = _scale;\n }\n if (nodes.length === 1) {\n this.minimap.scale = 0.1;\n this.minimap.offset = this.minimap.size.divide(2).subtract(new paper.Point([nodes.at(0).get(\"position\").x, nodes.at(0).get(\"position\").y]).multiply(this.minimap.scale));\n }\n this.redraw();\n },\n toPaperCoords: function(_point) {\n return _point.multiply(this.scale).add(this.offset);\n },\n toMinimapCoords: function(_point) {\n return _point.multiply(this.minimap.scale).add(this.minimap.offset).add(this.minimap.topleft);\n },\n toModelCoords: function(_point) {\n return _point.subtract(this.offset).divide(this.scale);\n },\n addRepresentation: function(_type, _model) {\n var RendererType = requtils.getRenderer()[_type];\n var _repr = new RendererType(this, _model);\n this.representations.push(_repr);\n return _repr;\n },\n addRepresentations: function(_type, _collection) {\n var _this = this;\n _collection.forEach(function(_model) {\n _this.addRepresentation(_type, _model);\n });\n },\n userTemplate: _.template(\n '
                                            • ;\"><%=name%>
                                            • '\n ),\n redrawUsers: function() {\n if (!this.renkan.options.show_user_list) {\n return;\n }\n var allUsers = [].concat((this.renkan.project.current_user_list || {}).models || [], (this.renkan.project.get(\"users\") || {}).models || []),\n ulistHtml = '',\n $userpanel = this.$.find(\".Rk-Users\"),\n $name = $userpanel.find(\".Rk-CurrentUser-Name\"),\n $cpitems = $userpanel.find(\".Rk-Edit-ColorPicker li\"),\n $colorsquare = $userpanel.find(\".Rk-CurrentUser-Color\"),\n _this = this;\n $name.off(\"click\").text(this.renkan.translate(\"\"));\n $cpitems.off(\"mouseleave click\");\n allUsers.forEach(function(_user) {\n if (_user.get(\"_id\") === _this.renkan.current_user) {\n $name.text(_user.get(\"title\"));\n $colorsquare.css(\"background\", _user.get(\"color\"));\n if (_this.isEditable()) {\n\n if (_this.renkan.options.user_name_editable) {\n $name.click(function() {\n var $this = $(this),\n $input = $('').val(_user.get(\"title\")).blur(function() {\n _user.set(\"title\", $(this).val());\n _this.redrawUsers();\n _this.redraw();\n });\n $this.empty().html($input);\n $input.select();\n });\n }\n\n if (_this.renkan.options.user_color_editable) {\n $cpitems.click(\n function(_e) {\n _e.preventDefault();\n if (_this.isEditable()) {\n _user.set(\"color\", $(this).attr(\"data-color\"));\n }\n $(this).parent().hide();\n }\n ).mouseleave(function() {\n $colorsquare.css(\"background\", _user.get(\"color\"));\n });\n }\n }\n\n } else {\n ulistHtml += _this.userTemplate({\n name: _user.get(\"title\"),\n background: _user.get(\"color\")\n });\n }\n });\n $userpanel.find(\".Rk-UserList\").html(ulistHtml);\n },\n removeRepresentation: function(_representation) {\n _representation.destroy();\n this.representations = _.reject(this.representations,\n function(_repr) {\n return _repr === _representation;\n }\n );\n },\n getRepresentationByModel: function(_model) {\n if (!_model) {\n return undefined;\n }\n return _.find(this.representations, function(_repr) {\n return _repr.model === _model;\n });\n },\n removeRepresentationsOfType: function(_type) {\n var _representations = _.filter(this.representations,function(_repr) {\n return _repr.type === _type;\n }),\n _this = this;\n _.each(_representations, function(_repr) {\n _this.removeRepresentation(_repr);\n });\n },\n highlightModel: function(_model) {\n var _repr = this.getRepresentationByModel(_model);\n if (_repr) {\n _repr.highlight();\n }\n },\n unhighlightAll: function(_model) {\n _.each(this.representations, function(_repr) {\n _repr.unhighlight();\n });\n },\n unselectAll: function(_model) {\n _.each(this.representations, function(_repr) {\n _repr.unselect();\n });\n },\n redraw: function() {\n var _this = this;\n if(! this.redrawActive ) {\n return;\n }\n _.each(this.representations, function(_representation) {\n _representation.redraw({ dontRedrawEdges:true });\n });\n if (this.minimap) {\n this.redrawMiniframe();\n }\n paper.view.draw();\n },\n addTempEdge: function(_from, _point) {\n var _tmpEdge = this.addRepresentation(\"TempEdge\",null);\n _tmpEdge.end_pos = _point;\n _tmpEdge.from_representation = _from;\n _tmpEdge.redraw();\n this.click_target = _tmpEdge;\n },\n addHiddenNode: function(_model){\n this.hideNode(_model);\n this.hiddenNodes.push(_model.id);\n },\n hideNode: function(_model){\n var _this = this;\n if (typeof _this.getRepresentationByModel(_model) !== 'undefined'){\n _this.getRepresentationByModel(_model).hide();\n }\n },\n hideNodes: function(){\n var _this = this;\n this.hiddenNodes.forEach(function(_id, index){\n var node = _this.renkan.project.get(\"nodes\").get(_id);\n if (typeof node !== 'undefined'){\n return _this.hideNode(_this.renkan.project.get(\"nodes\").get(_id));\n }else{\n _this.hiddenNodes.splice(index, 1);\n }\n });\n paper.view.draw();\n },\n showNodes: function(ghost){\n var _this = this;\n this.hiddenNodes.forEach(function(_id){\n _this.getRepresentationByModel(_this.renkan.project.get(\"nodes\").get(_id)).show(ghost);\n });\n if (!ghost){\n this.hiddenNodes = [];\n }\n paper.view.draw();\n },\n findTarget: function(_hitResult) {\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n var _newTarget = _hitResult.item.__representation;\n if (this.selected_target !== _hitResult.item.__representation) {\n if (this.selected_target) {\n this.selected_target.unselect(_newTarget);\n }\n _newTarget.select(this.selected_target);\n this.selected_target = _newTarget;\n }\n } else {\n if (this.selected_target) {\n this.selected_target.unselect();\n }\n this.selected_target = null;\n }\n },\n paperShift: function(_delta) {\n this.offset = this.offset.add(_delta);\n this.redraw();\n },\n onMouseMove: function(_event) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]),\n _delta = _point.subtract(this.last_point);\n this.last_point = _point;\n if (!this.is_dragging && this.mouse_down && _delta.length > Utils._MIN_DRAG_DISTANCE) {\n this.is_dragging = true;\n }\n var _hitResult = paper.project.hitTest(_point);\n if (this.is_dragging) {\n if (this.click_target && typeof this.click_target.paperShift === \"function\") {\n this.click_target.paperShift(_delta);\n } else {\n this.paperShift(_delta);\n }\n } else {\n this.findTarget(_hitResult);\n }\n paper.view.draw();\n },\n onMouseDown: function(_event, _isTouch) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n this.last_point = _point;\n this.mouse_down = true;\n if (!this.click_target || this.click_target.type !== \"Temp-edge\") {\n this.removeRepresentationsOfType(\"editor\");\n this.is_dragging = false;\n var _hitResult = paper.project.hitTest(_point);\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n this.click_target = _hitResult.item.__representation;\n this.click_target.mousedown(_event, _isTouch);\n } else {\n this.click_target = null;\n if (this.isEditable() && this.click_mode === Utils._CLICKMODE_ADDNODE) {\n var _coords = this.toModelCoords(_point),\n _data = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n _node = this.renkan.project.addNode(_data);\n this.getRepresentationByModel(_node).openEditor();\n }\n }\n }\n if (this.click_mode) {\n if (this.isEditable() && this.click_mode === Utils._CLICKMODE_STARTEDGE && this.click_target && this.click_target.type === \"Node\") {\n this.removeRepresentationsOfType(\"editor\");\n this.addTempEdge(this.click_target, _point);\n this.click_mode = Utils._CLICKMODE_ENDEDGE;\n this.notif_$.fadeOut(function() {\n $(this).html(this.renkan.translate(\"Click on a second node to complete the edge\")).fadeIn();\n });\n } else {\n this.notif_$.hide();\n this.click_mode = false;\n }\n }\n paper.view.draw();\n },\n onMouseUp: function(_event, _isTouch) {\n this.mouse_down = false;\n if (this.click_target) {\n var _off = this.canvas_$.offset();\n this.click_target.mouseup(\n {\n point: new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ])\n },\n _isTouch\n );\n } else {\n this.click_target = null;\n this.is_dragging = false;\n if (_isTouch) {\n this.unselectAll();\n }\n }\n paper.view.draw();\n },\n onScroll: function(_event, _scrolldelta) {\n this.totalScroll += _scrolldelta;\n if (Math.abs(this.totalScroll) >= 1) {\n var _off = this.canvas_$.offset(),\n _delta = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]).subtract(this.offset).multiply( Math.SQRT2 - 1 );\n if (this.totalScroll > 0) {\n this.setScale( this.scale * Math.SQRT2, this.offset.subtract(_delta) );\n } else {\n this.setScale( this.scale * Math.SQRT1_2, this.offset.add(_delta.divide(Math.SQRT2)));\n }\n this.totalScroll = 0;\n }\n },\n onDoubleClick: function(_event) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n var _hitResult = paper.project.hitTest(_point);\n \n if (!this.isEditable()) {\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n if (_hitResult.item.__representation.model.get('uri')){\n window.open(_hitResult.item.__representation.model.get('uri'), '_blank');\n }\n }\n return;\n }\n if (this.isEditable() && (!_hitResult || typeof _hitResult.item.__representation === \"undefined\")) {\n var _coords = this.toModelCoords(_point),\n _data = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n },\n _node = this.renkan.project.addNode(_data);\n this.getRepresentationByModel(_node).openEditor();\n }\n paper.view.draw();\n },\n defaultDropHandler: function(_data) {\n var newNode = {};\n var snippet = \"\";\n switch(_data[\"text/x-iri-specific-site\"]) {\n case \"twitter\":\n snippet = $('
                                              ').html(_data[\"text/x-iri-selected-html\"]);\n var tweetdiv = snippet.find(\".tweet\");\n newNode.title = this.renkan.translate(\"Tweet by \") + tweetdiv.attr(\"data-name\");\n newNode.uri = \"http://twitter.com/\" + tweetdiv.attr(\"data-screen-name\") + \"/status/\" + tweetdiv.attr(\"data-tweet-id\");\n newNode.image = tweetdiv.find(\".avatar\").attr(\"src\");\n newNode.description = tweetdiv.find(\".js-tweet-text:first\").text();\n break;\n case \"google\":\n snippet = $('
                                              ').html(_data[\"text/x-iri-selected-html\"]);\n newNode.title = snippet.find(\"h3:first\").text().trim();\n newNode.uri = snippet.find(\"h3 a\").attr(\"href\");\n newNode.description = snippet.find(\".st:first\").text().trim();\n break;\n default:\n if (_data[\"text/x-iri-source-uri\"]) {\n newNode.uri = _data[\"text/x-iri-source-uri\"];\n }\n }\n if (_data[\"text/plain\"] || _data[\"text/x-iri-selected-text\"]) {\n newNode.description = (_data[\"text/plain\"] || _data[\"text/x-iri-selected-text\"]).replace(/[\\s\\n]+/gm,' ').trim();\n }\n if (_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]) {\n snippet = $('
                                              ').html(_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]);\n var _svgimgs = snippet.find(\"image\");\n if (_svgimgs.length) {\n newNode.image = _svgimgs.attr(\"xlink:href\");\n }\n var _svgpaths = snippet.find(\"path\");\n if (_svgpaths.length) {\n newNode.clipPath = _svgpaths.attr(\"d\");\n }\n var _imgs = snippet.find(\"img\");\n if (_imgs.length) {\n newNode.image = _imgs[0].src;\n }\n var _as = snippet.find(\"a\");\n if (_as.length) {\n newNode.uri = _as[0].href;\n }\n newNode.title = snippet.find(\"[title]\").attr(\"title\") || newNode.title;\n newNode.description = snippet.text().replace(/[\\s\\n]+/gm,' ').trim();\n }\n if (_data[\"text/uri-list\"]) {\n newNode.uri = _data[\"text/uri-list\"];\n }\n if (_data[\"text/x-moz-url\"] && !newNode.title) {\n newNode.title = (_data[\"text/x-moz-url\"].split(\"\\n\")[1] || \"\").trim();\n if (newNode.title === newNode.uri) {\n newNode.title = false;\n }\n }\n if (_data[\"text/x-iri-source-title\"] && !newNode.title) {\n newNode.title = _data[\"text/x-iri-source-title\"];\n }\n if (_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]) {\n snippet = $('
                                              ').html(_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]);\n newNode.image = snippet.find(\"[data-image]\").attr(\"data-image\") || newNode.image;\n newNode.uri = snippet.find(\"[data-uri]\").attr(\"data-uri\") || newNode.uri;\n newNode.title = snippet.find(\"[data-title]\").attr(\"data-title\") || newNode.title;\n newNode.description = snippet.find(\"[data-description]\").attr(\"data-description\") || newNode.description;\n newNode.clipPath = snippet.find(\"[data-clip-path]\").attr(\"data-clip-path\") || newNode.clipPath;\n }\n\n if (!newNode.title) {\n newNode.title = this.renkan.translate(\"Dragged resource\");\n }\n var fields = [\"title\", \"description\", \"uri\", \"image\"];\n for (var i = 0; i < fields.length; i++) {\n var f = fields[i];\n if (_data[\"text/x-iri-\" + f] || _data[f]) {\n newNode[f] = _data[\"text/x-iri-\" + f] || _data[f];\n }\n if (newNode[f] === \"none\" || newNode[f] === \"null\") {\n newNode[f] = undefined;\n }\n }\n\n if(typeof this.renkan.options.drop_enhancer === \"function\"){\n newNode = this.renkan.options.drop_enhancer(newNode, _data);\n }\n\n return newNode;\n\n },\n dropData: function(_data, _event) {\n if (!this.isEditable()) {\n return;\n }\n if (_data[\"text/json\"] || _data[\"application/json\"]) {\n try {\n var jsondata = JSON.parse(_data[\"text/json\"] || _data[\"application/json\"]);\n _.extend(_data,jsondata);\n }\n catch(e) {}\n }\n\n var newNode = (typeof this.renkan.options.drop_handler === \"undefined\")?this.defaultDropHandler(_data):this.renkan.options.drop_handler(_data);\n\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]),\n _coords = this.toModelCoords(_point),\n _nodedata = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n uri: newNode.uri || \"\",\n title: newNode.title || \"\",\n description: newNode.description || \"\",\n image: newNode.image || \"\",\n color: newNode.color || undefined,\n clip_path: newNode.clipPath || undefined,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n var _node = this.renkan.project.addNode(_nodedata),\n _repr = this.getRepresentationByModel(_node);\n if (_event.type === \"drop\") {\n _repr.openEditor();\n }\n },\n fullScreen: function() {\n var _isFull = document.fullScreen || document.mozFullScreen || document.webkitIsFullScreen,\n _el = this.renkan.$[0],\n _requestMethods = [\"requestFullScreen\",\"mozRequestFullScreen\",\"webkitRequestFullScreen\"],\n _cancelMethods = [\"cancelFullScreen\",\"mozCancelFullScreen\",\"webkitCancelFullScreen\"],\n i;\n if (_isFull) {\n for (i = 0; i < _cancelMethods.length; i++) {\n if (typeof document[_cancelMethods[i]] === \"function\") {\n document[_cancelMethods[i]]();\n break;\n }\n }\n var widthAft = this.$.width();\n var heightAft = this.$.height();\n\n if (this.renkan.options.show_top_bar) {\n heightAft -= this.$.find(\".Rk-TopBar\").height();\n }\n if (this.renkan.options.show_bins && (this.renkan.$.find(\".Rk-Bins\").position().left > 0)) {\n widthAft -= this.renkan.$.find(\".Rk-Bins\").width();\n }\n\n paper.view.viewSize = new paper.Size([widthAft, heightAft]);\n\n } else {\n for (i = 0; i < _requestMethods.length; i++) {\n if (typeof _el[_requestMethods[i]] === \"function\") {\n _el[_requestMethods[i]]();\n break;\n }\n }\n this.redraw();\n }\n },\n zoomOut: function() {\n var _newScale = this.scale * Math.SQRT1_2,\n _offset = new paper.Point([\n this.canvas_$.width(),\n this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - Math.SQRT1_2 ) ).add(this.offset.multiply( Math.SQRT1_2 ));\n this.setScale( _newScale, _offset );\n },\n zoomIn: function() {\n var _newScale = this.scale * Math.SQRT2,\n _offset = new paper.Point([\n this.canvas_$.width(),\n this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - Math.SQRT2 ) ).add(this.offset.multiply( Math.SQRT2 ));\n this.setScale( _newScale, _offset );\n },\n resizeZoom: function(_scaleWidth, _scaleHeight, _ratio) {\n var _newScale = this.scale * _ratio,\n _offset = new paper.Point([\n (this.offset.x * _scaleWidth),\n (this.offset.y * _scaleHeight)\n ]);\n this.setScale( _newScale, _offset );\n },\n addNodeBtn: function() {\n if (this.click_mode === Utils._CLICKMODE_ADDNODE) {\n this.click_mode = false;\n this.notif_$.hide();\n } else {\n this.click_mode = Utils._CLICKMODE_ADDNODE;\n this.notif_$.text(this.renkan.translate(\"Click on the background canvas to add a node\")).fadeIn();\n }\n return false;\n },\n addEdgeBtn: function() {\n if (this.click_mode === Utils._CLICKMODE_STARTEDGE || this.click_mode === Utils._CLICKMODE_ENDEDGE) {\n this.click_mode = false;\n this.notif_$.hide();\n } else {\n this.click_mode = Utils._CLICKMODE_STARTEDGE;\n this.notif_$.text(this.renkan.translate(\"Click on a first node to start the edge\")).fadeIn();\n }\n return false;\n },\n exportProject: function() {\n var projectJSON = this.renkan.project.toJSON(),\n downloadLink = document.createElement(\"a\"),\n projectId = projectJSON.id,\n fileNameToSaveAs = projectId + \".json\";\n\n // clean ids\n delete projectJSON.id;\n delete projectJSON._id;\n delete projectJSON.space_id;\n\n var objId,\n idsMap = {},\n hiddenNodes;\n\n _.each(projectJSON.nodes, function(e,i,l) {\n objId = e.id || e._id;\n delete e._id;\n delete e.id;\n idsMap[objId] = e['@id'] = Utils.getUUID4();\n });\n _.each(projectJSON.edges, function(e,i,l) {\n delete e._id;\n delete e.id;\n e.to = idsMap[e.to];\n e.from = idsMap[e.from];\n });\n _.each(projectJSON.views, function(e,i,l) {\n delete e._id;\n delete e.id;\n \n if(e.hidden_nodes) {\n hiddenNodes = e.hidden_nodes;\n e.hidden_nodes = [];\n _.each(hiddenNodes, function(h,j) {\n e.hidden_nodes.push(idsMap[h]);\n });\n }\n });\n projectJSON.users = [];\n\n var projectJSONStr = JSON.stringify(projectJSON, null, 2);\n var blob = new Blob([projectJSONStr], {type: \"application/json;charset=utf-8\"});\n filesaver(blob,fileNameToSaveAs);\n\n },\n foldBins: function() {\n var foldBinsButton = this.$.find(\".Rk-Fold-Bins\"),\n bins = this.renkan.$.find(\".Rk-Bins\");\n var _this = this,\n sizeBef = _this.canvas_$.width(),\n sizeAft;\n if (bins.position().left < 0) {\n bins.animate({left: 0},250);\n this.$.animate({left: 300},250,function() {\n var w = _this.$.width();\n paper.view.viewSize = new paper.Size([w, _this.canvas_$.height()]);\n });\n if ((sizeBef - bins.width()) < bins.height()){\n sizeAft = sizeBef;\n } else {\n sizeAft = sizeBef - bins.width();\n }\n foldBinsButton.html(\"«\");\n } else {\n bins.animate({left: -300},250);\n this.$.animate({left: 0},250,function() {\n var w = _this.$.width();\n paper.view.viewSize = new paper.Size([w, _this.canvas_$.height()]);\n });\n sizeAft = sizeBef+300;\n foldBinsButton.html(\"»\");\n }\n _this.resizeZoom(1, 1, (sizeAft/sizeBef));\n },\n save: function() { },\n open: function() { }\n }).value();\n\n /* Scene End */\n\n return Scene;\n\n});\n\n\n//Load modules and use them\nif( typeof require.config === \"function\" ) {\n require.config({\n paths: {\n 'jquery':'../lib/jquery/jquery',\n 'underscore':'../lib/lodash/lodash',\n 'filesaver' :'../lib/FileSaver/FileSaver',\n 'requtils':'require-utils'\n }\n });\n}\n\nrequire(['renderer/baserepresentation',\n 'renderer/basebutton',\n 'renderer/noderepr',\n 'renderer/edge',\n 'renderer/tempedge',\n 'renderer/baseeditor',\n 'renderer/nodeeditor',\n 'renderer/edgeeditor',\n 'renderer/nodebutton',\n 'renderer/nodeeditbutton',\n 'renderer/noderemovebutton',\n 'renderer/nodehidebutton',\n 'renderer/nodeshowbutton',\n 'renderer/noderevertbutton',\n 'renderer/nodelinkbutton',\n 'renderer/nodeenlargebutton',\n 'renderer/nodeshrinkbutton',\n 'renderer/edgeeditbutton',\n 'renderer/edgeremovebutton',\n 'renderer/edgerevertbutton',\n 'renderer/miniframe',\n 'renderer/scene'\n ], function(BaseRepresentation, BaseButton, NodeRepr, Edge, TempEdge, BaseEditor, NodeEditor, EdgeEditor, NodeButton, NodeEditButton, NodeRemoveButton, NodeHideButton, NodeShowButton, NodeRevertButton, NodeLinkButton, NodeEnlargeButton, NodeShrinkButton, EdgeEditButton, EdgeRemoveButton, EdgeRevertButton, MiniFrame, Scene){\n\n \n\n var Rkns = window.Rkns;\n\n if(typeof Rkns.Renderer === \"undefined\"){\n Rkns.Renderer = {};\n }\n var Renderer = Rkns.Renderer;\n\n Renderer._BaseRepresentation = BaseRepresentation;\n Renderer._BaseButton = BaseButton;\n Renderer.Node = NodeRepr;\n Renderer.Edge = Edge;\n Renderer.TempEdge = TempEdge;\n Renderer._BaseEditor = BaseEditor;\n Renderer.NodeEditor = NodeEditor;\n Renderer.EdgeEditor = EdgeEditor;\n Renderer._NodeButton = NodeButton;\n Renderer.NodeEditButton = NodeEditButton;\n Renderer.NodeRemoveButton = NodeRemoveButton;\n Renderer.NodeHideButton = NodeHideButton;\n Renderer.NodeShowButton = NodeShowButton;\n Renderer.NodeRevertButton = NodeRevertButton;\n Renderer.NodeLinkButton = NodeLinkButton;\n Renderer.NodeEnlargeButton = NodeEnlargeButton;\n Renderer.NodeShrinkButton = NodeShrinkButton;\n Renderer.EdgeEditButton = EdgeEditButton;\n Renderer.EdgeRemoveButton = EdgeRemoveButton;\n Renderer.EdgeRevertButton = EdgeRevertButton;\n Renderer.MiniFrame = MiniFrame;\n Renderer.Scene = Scene;\n\n startRenkan();\n});\n\ndefine(\"main-renderer\", function(){});\n\n"]} \ No newline at end of file +{"version":3,"file":"renkan.min.js","sources":["templates.js","../../js/main.js","../../js/router.js","../../js/dataloader.js","../../js/models.js","../../js/defaults.js","../../js/i18n.js","../../js/full-json.js","../../js/save-once.js","../../js/ldtjson-bin.js","../../js/list-bin.js","../../js/wikipedia-bin.js","paper-renderer.js"],"names":["this","obj","__t","__p","_","escape","__e","Array","prototype","join","renkan","translate","edge","title","options","show_edge_editor_uri","uri","properties","length","each","ontology","label","property","show_edge_editor_style","show_edge_editor_style_color","show_edge_editor_style_dash","dash","show_edge_editor_style_thickness","thickness","show_edge_editor_style_arrow","arrow","show_edge_editor_direction","show_edge_editor_nodes","from_color","shortenText","from_title","to_title","show_edge_editor_creator","has_creator","created_by_title","show_edge_tooltip_color","color","show_edge_tooltip_uri","short_uri","show_edge_tooltip_nodes","to_color","show_edge_tooltip_creator","created_by_color","Rkns","Utils","getFullURL","image","description","static_url","url","show_bins","show_editor","node","show_node_editor_uri","change_types","types","type","charAt","toUpperCase","substring","show_node_editor_description","show_node_editor_description_richtext","show_node_editor_size","size","show_node_editor_style","show_node_editor_style_color","show_node_editor_style_dash","show_node_editor_style_thickness","show_node_editor_image","image_placeholder","clip_path","allow_image_upload","show_node_editor_creator","change_shapes","shapes","shape","show_node_tooltip_color","show_node_tooltip_uri","show_node_tooltip_description","show_node_tooltip_image","show_node_tooltip_creator","_id","print","__j","call","arguments","show_top_bar","editor_mode","project","get","show_user_list","show_user_color","user_color_editable","colorPicker","home_button_url","home_button_title","show_fullscreen_button","show_addnode_button","show_addedge_button","show_export_button","show_save_button","show_open_button","show_bookmarklet","show_search_field","resize","show_zoom","save_view","hide_nodes","root","$","jQuery","pickerColors","__renkans","_BaseBin","_renkan","_opts","find","hide","addClass","appendTo","title_icon_$","_this","attr","href","html","click","destroy","slideDown","resizeBins","refresh","count_$","title_$","main_$","auto_refresh","window","setInterval","detach","Renkan","push","defaults","templates","renkanJST","node_editor_templates","template","types_templates","value","key","property_files","f","getJSON","data","concat","read_only","router","Router","Models","Project","dataloader","DataLoader","Loader","setCurrentUser","user_id","user_name","addUser","current_user","renderer","redrawUsers","container","tabs","search_engines","current_user_list","UsersList","on","_tmpl","map","c","Renderer","Scene","search","_select","_input","_form","_search","Search","_key","getSearchTitle","className","getBgClass","_el","setSearchEngine","submit","val","search_engine","mouseenter","mouseleave","bins","_bin","Bin","elementDropped","_mainDiv","siblings","is","slideUp","_t","_models","where","_model","highlightModel","mouseout","unhighlightAll","dragDrop","err","e","preventDefault","touch","originalEvent","changedTouches","off","canvas_$","offset","w","width","h","height","pageX","left","pageY","top","onMouseMove","div","document","createElement","appendChild","cloneNode","dropData","text/html","innerHTML","onMouseDown","onMouseUp","dataTransfer","setData","lastsearch","lastval","regexpFromTextOrArray","source","tab","render","_text","i18n","language","substr","onStatusChange","listClasses","split","classes","i","_d","outerHeight","css","getUUID4","replace","r","Math","random","v","toString","getUID","pad","n","Date","ID_AUTO_INCREMENT","ID_BASE","getUTCFullYear","getUTCMonth","getUTCDate","_base","_n","_uidbase","test","img","Image","src","res","inherit","_baseClass","_callbefore","_class","apply","slice","_init","_initialized","extend","replaceText","makeReplaceFunc","l","k","charsrx","txt","toLowerCase","remrx","j","remsrc","charsub","getSource","inp","removeChars","String","fromCharCode","RegExp","_textOrArray","testrx","replacerx","isempty","_replace","text","_MIN_DRAG_DISTANCE","_NODE_BUTTON_WIDTH","_EDGE_BUTTON_INNER","_EDGE_BUTTON_OUTER","_CLICKMODE_ADDNODE","_CLICKMODE_STARTEDGE","_CLICKMODE_ENDEDGE","_NODE_SIZE_STEP","LN2","_MIN_SCALE","_MAX_SCALE","_MOUSEMOVE_RATE","_DOUBLETAP_DELAY","_DOUBLETAP_DISTANCE","_USER_PLACEHOLDER","default_user_color","_BOOKMARKLET_CODE","_maxlength","drawEditBox","_options","_coords","_path","_xmargin","_selector","tooltip_width","tooltip_padding","_height","_isLeft","x","paper","view","center","_left","tooltip_arrow_length","_right","_top","y","tooltip_margin","max","tooltip_arrow_width","min","_bottom","segments","point","add","closed","fillColor","GradientColor","Gradient","tooltip_top_color","tooltip_bottom_color","increaseBrightness","hex","percent","parseInt","g","b","Backbone","routes","index","parameters","result","forEach","part","item","decodeURIComponent","trigger","converters","from1to2","len","nodes","style","edges","schema_version","dataConverters","convert","schemaVersionFrom","getSchemaVersion","schemaVersionTo","converterName","load","set","validate","guid","RenkanModel","RelationalModel","idAttribute","constructor","id","prepare","addReference","_propName","_list","_default","_element","User","toJSON","Node","relations","HasOne","relatedModel","created_by","position","Edge","from","to","View","isArray","zoom_level","hidden_nodes","RosterUser","blacklist","HasMany","reverseRelation","includeInJSON","_props","_user","findOrCreate","addNode","_node","addEdge","_edge","addView","_view","removeNode","remove","removeEdge","_project","users","views","_item","t","version","initialize","filter","json","clone","attributes","Model","Collection","omit","site_id","model","navigator","userLanguage","popup_editor","editor_panel","manual_save","size_bug_fix","force_resize","allow_double_click","zoom_on_scroll","element_delete_delay","autoscale_padding","default_view","user_name_editable","show_minimap","minimap_width","minimap_height","minimap_padding","minimap_background_color","minimap_border_color","minimap_highlight_color","minimap_highlight_weight","buttons_background","buttons_label_color","buttons_label_font_size","ghost_opacity","default_dash_array","show_node_circles","clip_node_images","node_images_fill_mode","node_size_base","node_stroke_width","node_stroke_max_width","selected_node_stroke_width","selected_node_stroke_max_width","node_stroke_witdh_scale","node_fill_color","highlighted_node_fill_color","node_label_distance","node_label_max_length","label_untitled_nodes","default","video","edge_stroke_width","edge_stroke_max_width","selected_edge_stroke_width","selected_edge_stroke_max_width","edge_stroke_witdh_scale","edge_label_distance","edge_label_max_length","edge_arrow_length","edge_arrow_width","edge_arrow_max_width","edge_gap_in_bundles","label_untitled_edges","tooltip_border_color","tooltip_border_width","richtext_editor_config","toolbarGroups","name","groups","removePlugins","uploaded_image_max_kb","fr","Edit Node","Edit Edge","Title:","URI:","Description:","From:","To:","Image URL:","Choose Image File:","Full Screen","Add Node","Add Edge","Save Project","Open Project","Auto-save enabled","Connection lost","Created by:","Zoom In","Zoom Out","Edit","Remove","Cancel deletion","Link to another node","Enlarge","Shrink","Click on the background canvas to add a node","Click on a first node to start the edge","Click on a second node to complete the edge","Wikipedia","Wikipedia in ","French","English","Japanese","Untitled project","Lignes de Temps","Loading, please wait","Edge color:","Dash:","Thickness:","Arrow:","Node color:","Choose color","Change edge direction","Do you really wish to remove node ","Do you really wish to remove edge ","This file is not an image","Image size must be under ","Size:","KB","Choose from vocabulary:","SKOS Documentation properties","has note","has example","has definition","SKOS Semantic relations","has broader","has narrower","has related","Dublin Core Metadata","has contributor","covers","created by","has date","published by","has source","has subject","Dragged resource","Search the Web","Search in Bins","Close bin","Refresh bin","(untitled)","Select contents:","Drag items from this website, drop them in Renkan","Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.","Shapes available","Circle","Square","Diamond","Hexagone","Ellipse","Star","Cloud","Triangle","Zoom Fit","Download Project","Save view","View saved view","Renkan 'Drag-to-Add' bookmarklet","(unknown user)","","Search in graph","Search in ","jsonIO","_proj","http_method","_load","redrawActive","loadingStatus","_data","saveStatus","fixSize","_save","ajax","contentType","JSON","stringify","success","_thrSave","throttle","setTimeout","changedAttributes","hasChanged","jsonIOSaveOnClick","_saveWarn","_onLeave","getdata","rx","matches","location","hash","match","beforeSend","autoScale","_checkLeave","removeClass","save","hasClass","Ldt","ProjectBin","ldt_type","Resclass","console","error","tagTemplate","annotationTemplate","proj_id","project_id","ldt_platform","searchbase","highlight","_e","convertTC","_ms","_res","_totalSeconds","abs","floor","_hours","_minutes","_seconds","_html","_projtitle","meta","count","tags","_tag","_title","htitle","encodedtitle","encodeURIComponent","annotations","_annotation","_description","content","_duration","end","begin","_img","hdescription","start","duration","mediaid","media","annotationid","show","dataType","lang","_q","ResultsBin","segmentTemplate","max_results","highlightrx","objects","_segment","_begin","start_ts","_end","iri_id","element_id","format","q","limit","ResourceList","resultTemplate","list","trim","_match","langs","en","ja","query","_result","encodeURI","snippet","define","_BaseRepresentation","_renderer","_changeBinding","redraw","change","_removeBinding","removeRepresentation","defer","_selectBinding","select","_unselectBinding","unselect","_super","_func","moveTo","unhighlight","mousedown","mouseup","getUtils","getRenderer","requtils","BaseRepresentation","_BaseButton","_pos","sector","_newTarget","source_representation","cloud_path","builders","circle","getShape","Path","getImageShape","radius","rectangle","Rectangle","ellipse","polygon","RegularPolygon","diamond","d","SQRT2","rotate","star","cloud","path","scale","triangle","svg","ShapeBuilder","NodeRepr","node_layer","activate","buildShape","hidden","ghost","strokeWidth","h_ratio","labels_$","normal_buttons","NodeEditButton","NodeRemoveButton","NodeLinkButton","NodeEnlargeButton","NodeShrinkButton","NodeHideButton","NodeShowButton","pending_delete_buttons","NodeRevertButton","all_buttons","active_buttons","last_circle_radius","minimap","minimap_circle","__representation","miniframe","node_group","addChild","_getStrokeWidth","has","_getSelectedStrokeWidth","changed","shapeBuilder","sendToBack","_model_coords","Point","_baseRadius","exp","is_dragging","paper_coords","toPaperCoords","circle_radius","setSectorSize","node_image","subtract","image_delta","multiply","old_act_btn","opacity","dashArray","selected","isEditable","highlighted","_strokeWidth","_color","_dash","strokeColor","_pc","lastImage","showImage","minipos","toMinimapCoords","miniradius","minisize","Size","fitBounds","dontRedrawEdges","ed","repr","getRepresentationByModel","from_representation","to_representation","_image","image_cache","clipPath","hasClipPath","_clip","baseRadius","centerPoint","instructions","lastCoords","minX","Infinity","minY","maxX","maxY","transformCoords","tabc","relative","newCoords","parseFloat","isY","instr","coords","lineTo","cubicCurveTo","quadraticCurveTo","_raster","Raster","locked","Group","clipped","_circleClip","divide","insertAbove","paperShift","_delta","openEditor","removeRepresentationsOfType","_editor","addRepresentation","draw","_uri","showNeighbors","hideButtons","buttons_timeout","undefined","hideNeighbors","indexNode","hiddenNodes","indexOf","splice","textToReplace","hlvalue","throttledPaperDraw","saveCoords","toModelCoords","_event","_isTouch","unselectAll","click_target","edge_layer","bundle","addToBundles","line","arrow_scale","pivot","arrow_angle","EdgeEditButton","EdgeRemoveButton","EdgeRevertButton","minimap_line","_getArrowScale","_opacity","_arrow_scale","_p0a","_p1a","_v","_r","_u","_ortho","_group_pos","getPosition","_p0b","_p1b","_a","angle","_textdelta","_handle","visible","handleIn","handleOut","bounds","_textpos","transform","-moz-transform","-webkit-transform","text_angle","reject","TempEdge","_p0","_p1","end_pos","_c","_hitResult","hitTest","findTarget","_endDrag","_target","_destmodel","_BaseEditor","buttons_layer","editor_block","_pts","range","editor_$","BaseEditor","NodeEditor","readOnlyTemplate","_created_by","_template","_image_placeholder","_size","keys","editorInstance","ckeditor","closeEditor","cleanEditor","editor","focusManager","blur","onFieldChange","checkDirty","getData","resetDirty","assign","keyCode","files","FileReader","alert","onload","target","readAsDataURL","focus","_picker","hover","shiftSize","_newsize","shiftThickness","_oldThickness","_newThickness","titlehtml","EdgeEditor","_from_model","_to_model","BaseButton","_NodeButton","sectorInner","lastSectorInner","drawSector","startAngle","endAngle","imageName","clearTimeout","NodeButton","delid","delete_list","time","valueOf","confirm","addHiddenNode","unset","_off","_point","addTempEdge","MiniFrame","filesaver","representations","notif_$","setup","initialScale","totalScroll","mouse_down","selected_target","Layer","background_layer","topleft","bottomRight","cliprectangle","bundles","click_mode","_allowScroll","_originalScale","_zooming","_lastTapX","_lastTapY","icon_cache","imgname","throttledMouseMove","mousemove","mousewheel","onScroll","touchstart","_touches","touches","_lastTap","pow","onDoubleClick","touchmove","_newScale","_scaleRatio","_newOffset","setScale","touchend","dblclick","dragover","dragenter","dragleave","drop","parse","bindClick","selector","fname","evt","last","showNodes","hideNodes","fadeIn","delay","fadeOut","mouseover","onResize","_ratio","newWidth","newHeight","ratioH","delta","ratioW","resizeZoom","_thRedraw","addRepresentations","_thRedrawUsers","history","el","_params","_delay","$cpwrapper","$cplist","$this","rxs","_now","findWhere","delete_scheduled","rescaleMinimap","_repr","_inR","_outR","_startAngle","_endAngle","_padding","_imgname","_caption","_startRads","PI","_endRads","_startdx","sin","_startdy","cos","_startXIn","_startYIn","_startXOut","_startYOut","_enddx","_enddy","_endXIn","_endYIn","_endXOut","_endYOut","_centerR","_centerRads","_centerX","_centerY","_centerXIn","_centerXOut","_centerYIn","_centerYOut","_textX","_textY","arcTo","PointText","characterStyle","fontSize","paragraphStyle","justification","_visible","_restPos","_grp","_imgdelta","_currentPos","_edgeRepr","_bundle","_er","_dir","savebtn","tip","_offset","force_view","_xx","_yy","_minx","_miny","_maxx","_maxy","_scale","at","redrawMiniframe","bottomright","_type","RendererType","_collection","userTemplate","allUsers","models","ulistHtml","$userpanel","$name","$cpitems","$colorsquare","$input","empty","parent","background","_representation","_representations","_from","_tmpEdge","hideNode","last_point","_scrolldelta","SQRT1_2","open","defaultDropHandler","newNode","tweetdiv","_svgimgs","_svgpaths","_imgs","_as","fields","drop_enhancer","jsondata","drop_handler","_nodedata","fullScreen","_isFull","mozFullScreen","webkitIsFullScreen","_requestMethods","_cancelMethods","widthAft","heightAft","viewSize","zoomOut","zoomIn","_scaleWidth","_scaleHeight","addNodeBtn","addEdgeBtn","exportProject","projectJSON","projectId","fileNameToSaveAs","space_id","objId","idsMap","projectJSONStr","blob","Blob","idnode","foldBins","sizeAft","foldBinsButton","sizeBef","animate","require","config","paths","jquery","underscore","ckeditor-core","ckeditor-jquery","shim","deps","startRenkan"],"mappings":"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","sourcesContent":["this[\"renkanJST\"] = this[\"renkanJST\"] || {};\n\nthis[\"renkanJST\"][\"templates/colorpicker.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                                            • ';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/edgeeditor.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(renkan.translate(\"Edit Edge\")) +\n'\\n

                                              \\n

                                              \\n \\n \\n

                                              \\n';\n if (options.show_edge_editor_uri) { ;\n__p += '\\n

                                              \\n \\n \\n \\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 } ;\n__p += '\\n';\n if (options.show_edge_editor_direction) { ;\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 ';\n if (options.show_edge_tooltip_color) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (edge.uri) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n__e(edge.title) +\n'\\n ';\n if (edge.uri) { ;\n__p += ' ';\n } ;\n__p += '\\n \\n

                                              \\n';\n if (options.show_edge_tooltip_uri && edge.uri) { ;\n__p += '\\n

                                              \\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\\n \\n

                                              ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                                              \\n

                                              ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                                              \\n

                                              Start: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'

                                              \\n
                                              \\n
                                            • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/segmenttemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                                            • \\n\\n \\n

                                              ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                                              \\n

                                              ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                                              \\n

                                              Start: ' +\n((__t = (start)) == null ? '' : __t) +\n', End: ' +\n((__t = (end)) == null ? '' : __t) +\n', Duration: ' +\n((__t = (duration)) == null ? '' : __t) +\n'

                                              \\n
                                              \\n
                                            • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/ldtjson-bin/tagtemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                                            • \\n\\n \\n

                                              ' +\n((__t = (htitle)) == null ? '' : __t) +\n'

                                              \\n
                                              \\n
                                            • \\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/list-bin.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 } ;\n__p += '\\n

                                              \\n ';\n if (url) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n((__t = (htitle)) == null ? '' : __t) +\n'\\n ';\n if (url) { ;\n__p += '';\n } ;\n__p += '\\n

                                              \\n ';\n if (description) { ;\n__p += '\\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}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/main.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_bins) { ;\n__p += '\\n
                                              \\n
                                              \\n

                                              ' +\n__e( translate(\"Select contents:\")) +\n'

                                              \\n
                                              \\n \\n
                                              \\n
                                              \\n
                                                \\n
                                                \\n \\n
                                                \\n
                                                \\n \\n \\n
                                                \\n
                                                  \\n
                                                  \\n';\n } ;\n__p += ' ';\n if (options.show_editor) { ;\n__p += '\\n
                                                  \\n

                                                  \\n

                                                  \\n \\n \\n

                                                  \\n';\n if (options.show_node_editor_uri) { ;\n__p += '\\n

                                                  \\n \\n \\n \\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((__t = (node.description)) == null ? '' : __t) +\n'
                                                  \\n ';\n } else { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\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 if (options.show_node_editor_style_color) { ;\n__p += '\\n
                                                  \\n \\n ' +\n__e(renkan.translate(\"Node color:\")) +\n'\\n
                                                  \\n \\n \\n \\n ' +\n((__t = ( renkan.colorPicker )) == null ? '' : __t) +\n'\\n ' +\n__e( renkan.translate(\"Choose color\") ) +\n'\\n
                                                  \\n
                                                  \\n ';\n } ;\n__p += '\\n ';\n if (options.show_node_editor_style_dash) { ;\n__p += '\\n
                                                  \\n ' +\n__e(renkan.translate(\"Dash:\")) +\n'\\n \\n
                                                  \\n ';\n } ;\n__p += '\\n ';\n if (options.show_node_editor_style_thickness) { ;\n__p += '\\n
                                                  \\n ' +\n__e(renkan.translate(\"Thickness:\")) +\n'\\n -\\n ' +\n__e(node.thickness) +\n'\\n +\\n
                                                  \\n ';\n } ;\n__p += '\\n
                                                  \\n';\n } ;\n__p += ' ';\n if (options.show_node_editor_image) { ;\n__p += '\\n
                                                  \\n
                                                  \\n \\n ';\n if (node.clip_path) { ;\n__p += '\\n \\n \\n \\n ';\n };\n__p += '\\n
                                                  \\n
                                                  \\n

                                                  \\n \\n

                                                  \\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 ';\n if (options.show_node_tooltip_color) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (node.uri) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n__e(node.title) +\n'\\n ';\n if (node.uri) { ;\n__p += '';\n } ;\n__p += '\\n \\n

                                                  \\n';\n if (node.uri && options.show_node_tooltip_uri) { ;\n__p += '\\n

                                                  \\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 } ;\n__p += ' ';\n if (node.has_creator && options.show_node_tooltip_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 ' +\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 ×\\n ';\n if (options.show_node_tooltip_color) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (node.uri) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ' +\n__e(node.title) +\n'\\n ';\n if (node.uri) { ;\n__p += '';\n } ;\n__p += '\\n \\n

                                                  \\n';\n if (node.uri && options.show_node_tooltip_uri) { ;\n__p += '\\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/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
                                                  \\n ';\n if (!options.editor_mode) { ;\n__p += '\\n

                                                  \\n ' +\n__e( project.get(\"title\") || translate(\"Untitled project\")) +\n'\\n

                                                  \\n ';\n } else { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n ';\n if (options.show_user_list) { ;\n__p += '\\n
                                                  \\n
                                                  \\n ';\n if (options.show_user_color) { ;\n__p += '\\n
                                                  \\n \\n ';\n if (options.user_color_editable) { ;\n__p += '\\n \\n ';\n } ;\n__p += '\\n \\n ';\n if (options.user_color_editable) { print(colorPicker) } ;\n__p += '\\n
                                                  \\n ';\n } ;\n__p += '\\n <unknown user>\\n
                                                  \\n
                                                    \\n
                                                    \\n ';\n } ;\n__p += '\\n ';\n if (options.home_button_url) {;\n__p += '\\n
                                                    \\n \\n
                                                    \\n
                                                    \\n ' +\n__e( translate(options.home_button_title) ) +\n'\\n
                                                    \\n
                                                    \\n
                                                    \\n ';\n } ;\n__p += '\\n ';\n if (options.show_fullscreen_button) { ;\n__p += '\\n
                                                    \\n
                                                    \\n
                                                    \\n
                                                    \\n ' +\n__e(translate(\"Full Screen\")) +\n'\\n
                                                    \\n
                                                    \\n
                                                    \\n ';\n } ;\n__p += '\\n ';\n if (options.editor_mode) { ;\n__p += '\\n ';\n if (options.show_addnode_button) { ;\n__p += '\\n
                                                    \\n
                                                    \\n
                                                    \\n
                                                    \\n ' +\n__e(translate(\"Add Node\")) +\n'\\n
                                                    \\n
                                                    \\n
                                                    \\n ';\n } ;\n__p += '\\n ';\n if (options.show_addedge_button) { ;\n__p += '\\n
                                                    \\n
                                                    \\n
                                                    \\n
                                                    \\n ' +\n__e(translate(\"Add Edge\")) +\n'\\n
                                                    \\n
                                                    \\n
                                                    \\n ';\n } ;\n__p += '\\n ';\n if (options.show_export_button) { ;\n__p += '\\n
                                                    \\n
                                                    \\n
                                                    \\n
                                                    \\n ' +\n__e(translate(\"Download Project\")) +\n'\\n
                                                    \\n
                                                    \\n
                                                    \\n ';\n } ;\n__p += '\\n ';\n if (options.show_save_button) { ;\n__p += '\\n
                                                    \\n
                                                    \\n
                                                    \\n
                                                    \\n
                                                    \\n
                                                    \\n ';\n } ;\n__p += '\\n ';\n if (options.show_open_button) { ;\n__p += '\\n
                                                    \\n
                                                    \\n
                                                    \\n
                                                    \\n ' +\n__e(translate(\"Open Project\")) +\n'\\n
                                                    \\n
                                                    \\n
                                                    \\n ';\n } ;\n__p += '\\n ';\n if (options.show_bookmarklet) { ;\n__p += '\\n
                                                    \\n \\n
                                                    \\n
                                                    \\n ' +\n__e(translate(\"Renkan \\'Drag-to-Add\\' bookmarklet\")) +\n'\\n
                                                    \\n
                                                    \\n
                                                    \\n
                                                    \\n ';\n } ;\n__p += '\\n ';\n } else { ;\n__p += '\\n ';\n if (options.show_export_button) { ;\n__p += '\\n
                                                    \\n
                                                    \\n
                                                    \\n
                                                    \\n ' +\n__e(translate(\"Download Project\")) +\n'\\n
                                                    \\n
                                                    \\n
                                                    \\n
                                                    \\n ';\n } ;\n__p += '\\n ';\n }; ;\n__p += '\\n ';\n if (options.show_search_field) { ;\n__p += '\\n
                                                    \\n \\n
                                                    \\n
                                                    \\n ';\n } ;\n__p += '\\n
                                                    \\n';\n } ;\n__p += '\\n
                                                    \\n
                                                    \\n
                                                    \\n ';\n if (options.editor_mode && options.save_view) { ;\n__p += '\\n
                                                    \\n ';\n } ;\n__p += '\\n ';\n if (options.save_view) { ;\n__p += '\\n
                                                    \\n ';\n if (options.hide_nodes) { ;\n__p += '\\n \\t \\n ';\n } ;\n__p += ' \\n ';\n } ;\n__p += '\\n
                                                    \\n ';\n } ;\n__p += '\\n \\n\\n';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/search.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                                                  • ' +\n((__t = ( title )) == null ? '' : __t) +\n'
                                                  • ';\n\n}\nreturn __p\n};\n\nthis[\"renkanJST\"][\"templates/wikipedia-bin/resulttemplate.html\"] = function(obj) {\nobj || (obj = {});\nvar __t, __p = '', __e = _.escape;\nwith (obj) {\n__p += '
                                                  • \\n\\n \\n

                                                    \\n ' +\n((__t = (htitle)) == null ? '' : __t) +\n'\\n

                                                    \\n

                                                    ' +\n((__t = (hdescription)) == null ? '' : __t) +\n'

                                                    \\n
                                                  • \\n';\n\n}\nreturn __p\n};","/* Declaring the Renkan Namespace Rkns and Default values */\n\n(function(root) {\n\n \"use strict\";\n\n if (typeof root.Rkns !== \"object\") {\n root.Rkns = {};\n }\n\n var Rkns = root.Rkns;\n var $ = Rkns.$ = root.jQuery;\n var _ = Rkns._ = root._;\n\n Rkns.pickerColors = [\"#8f1919\", \"#a80000\", \"#d82626\", \"#ff0000\", \"#e87c7c\", \"#ff6565\", \"#f7d3d3\", \"#fecccc\",\n \"#8f5419\", \"#a85400\", \"#d87f26\", \"#ff7f00\", \"#e8b27c\", \"#ffb265\", \"#f7e5d3\", \"#fee5cc\",\n \"#8f8f19\", \"#a8a800\", \"#d8d826\", \"#feff00\", \"#e8e87c\", \"#feff65\", \"#f7f7d3\", \"#fefecc\",\n \"#198f19\", \"#00a800\", \"#26d826\", \"#00ff00\", \"#7ce87c\", \"#65ff65\", \"#d3f7d3\", \"#ccfecc\",\n \"#198f8f\", \"#00a8a8\", \"#26d8d8\", \"#00feff\", \"#7ce8e8\", \"#65feff\", \"#d3f7f7\", \"#ccfefe\",\n \"#19198f\", \"#0000a8\", \"#2626d8\", \"#0000ff\", \"#7c7ce8\", \"#6565ff\", \"#d3d3f7\", \"#ccccfe\",\n \"#8f198f\", \"#a800a8\", \"#d826d8\", \"#ff00fe\", \"#e87ce8\", \"#ff65fe\", \"#f7d3f7\", \"#feccfe\",\n \"#000000\", \"#242424\", \"#484848\", \"#6d6d6d\", \"#919191\", \"#b6b6b6\", \"#dadada\", \"#ffffff\"\n ];\n\n Rkns.__renkans = [];\n\n var _BaseBin = Rkns._BaseBin = function(_renkan, _opts) {\n if (typeof _renkan !== \"undefined\") {\n this.renkan = _renkan;\n this.renkan.$.find(\".Rk-Bin-Main\").hide();\n this.$ = Rkns.$('
                                                  • ')\n .addClass(\"Rk-Bin\")\n .appendTo(_renkan.$.find(\".Rk-Bin-List\"));\n this.title_icon_$ = Rkns.$('')\n .addClass(\"Rk-Bin-Title-Icon\")\n .appendTo(this.$);\n\n var _this = this;\n\n Rkns.$('')\n .attr({\n href: \"#\",\n title: _renkan.translate(\"Close bin\")\n })\n .addClass(\"Rk-Bin-Close\")\n .html('×')\n .appendTo(this.$)\n .click(function() {\n _this.destroy();\n if (!_renkan.$.find(\".Rk-Bin-Main:visible\").length) {\n _renkan.$.find(\".Rk-Bin-Main:last\").slideDown();\n }\n _renkan.resizeBins();\n return false;\n });\n Rkns.$('')\n .attr({\n href: \"#\",\n title: _renkan.translate(\"Refresh bin\")\n })\n .addClass(\"Rk-Bin-Refresh\")\n .appendTo(this.$)\n .click(function() {\n _this.refresh();\n return false;\n });\n this.count_$ = Rkns.$('
                                                    ')\n .addClass(\"Rk-Bin-Count\")\n .appendTo(this.$);\n this.title_$ = Rkns.$('

                                                    ')\n .addClass(\"Rk-Bin-Title\")\n .appendTo(this.$);\n this.main_$ = Rkns.$('
                                                    ')\n .addClass(\"Rk-Bin-Main\")\n .appendTo(this.$)\n .html('

                                                    ' + _renkan.translate(\"Loading, please wait\") + '

                                                    ');\n this.title_$.html(_opts.title || '(new bin)');\n this.renkan.resizeBins();\n\n if (_opts.auto_refresh) {\n window.setInterval(function() {\n _this.refresh();\n }, _opts.auto_refresh);\n }\n }\n };\n\n _BaseBin.prototype.destroy = function() {\n this.$.detach();\n this.renkan.resizeBins();\n };\n\n /* Point of entry */\n\n var Renkan = Rkns.Renkan = function(_opts) {\n var _this = this;\n\n Rkns.__renkans.push(this);\n\n this.options = _.defaults(_opts, Rkns.defaults, {\n templates: _.defaults(_opts.templates, renkanJST) || renkanJST,\n node_editor_templates: _.defaults(_opts.node_editor_templates, Rkns.defaults.node_editor_templates)\n });\n this.template = renkanJST['templates/main.html'];\n\n var types_templates = {};\n _.each(this.options.node_editor_templates, function(value, key) {\n types_templates[key] = _this.options.templates[value];\n delete _this.options.templates[value];\n });\n this.options.node_editor_templates = types_templates;\n\n _.each(this.options.property_files, function(f) {\n Rkns.$.getJSON(f, function(data) {\n _this.options.properties = _this.options.properties.concat(data);\n });\n });\n\n this.read_only = this.options.read_only || !this.options.editor_mode;\n \n this.router = new Rkns.Router();\n \n this.project = new Rkns.Models.Project();\n this.dataloader = new Rkns.DataLoader.Loader(this.project, this.options);\n\n this.setCurrentUser = function(user_id, user_name) {\n this.project.addUser({\n _id: user_id,\n title: user_name\n });\n this.current_user = user_id;\n this.renderer.redrawUsers();\n };\n\n if (typeof this.options.user_id !== \"undefined\") {\n this.current_user = this.options.user_id;\n }\n this.$ = Rkns.$(\"#\" + this.options.container);\n this.$\n .addClass(\"Rk-Main\")\n .html(this.template(this));\n\n this.tabs = [];\n this.search_engines = [];\n\n this.current_user_list = new Rkns.Models.UsersList();\n\n this.current_user_list.on(\"add remove\", function() {\n if (this.renderer) {\n this.renderer.redrawUsers();\n }\n });\n\n this.colorPicker = (function() {\n var _tmpl = renkanJST['templates/colorpicker.html'];\n return '
                                                      ' + Rkns.pickerColors.map(function(c) {\n return _tmpl({\n c: c\n });\n }).join(\"\") + '
                                                    ';\n })();\n\n if (this.options.show_editor) {\n this.renderer = new Rkns.Renderer.Scene(this);\n }\n\n if (!this.options.search.length) {\n this.$.find(\".Rk-Web-Search-Form\").detach();\n } else {\n var _tmpl = renkanJST['templates/search.html'],\n _select = this.$.find(\".Rk-Search-List\"),\n _input = this.$.find(\".Rk-Web-Search-Input\"),\n _form = this.$.find(\".Rk-Web-Search-Form\");\n _.each(this.options.search, function(_search, _key) {\n if (Rkns[_search.type] && Rkns[_search.type].Search) {\n _this.search_engines.push(new Rkns[_search.type].Search(_this, _search));\n }\n });\n _select.html(\n _(this.search_engines).map(function(_search, _key) {\n return _tmpl({\n key: _key,\n title: _search.getSearchTitle(),\n className: _search.getBgClass()\n });\n }).join(\"\")\n );\n _select.find(\"li\").click(function() {\n var _el = Rkns.$(this);\n _this.setSearchEngine(_el.attr(\"data-key\"));\n _form.submit();\n });\n _form.submit(function() {\n if (_input.val()) {\n var _search = _this.search_engine;\n _search.search(_input.val());\n }\n return false;\n });\n this.$.find(\".Rk-Search-Current\").mouseenter(\n function() {\n _select.slideDown();\n }\n );\n this.$.find(\".Rk-Search-Select\").mouseleave(\n function() {\n _select.hide();\n }\n );\n this.setSearchEngine(0);\n }\n _.each(this.options.bins, function(_bin) {\n if (Rkns[_bin.type] && Rkns[_bin.type].Bin) {\n _this.tabs.push(new Rkns[_bin.type].Bin(_this, _bin));\n }\n });\n\n var elementDropped = false;\n\n this.$.find(\".Rk-Bins\")\n .on(\"click\", \".Rk-Bin-Title,.Rk-Bin-Title-Icon\", function() {\n var _mainDiv = Rkns.$(this).siblings(\".Rk-Bin-Main\");\n if (_mainDiv.is(\":hidden\")) {\n _this.$.find(\".Rk-Bin-Main\").slideUp();\n _mainDiv.slideDown();\n }\n });\n\n if (this.options.show_editor) {\n\n this.$.find(\".Rk-Bins\").on(\"mouseover\", \".Rk-Bin-Item\", function(_e) {\n var _t = Rkns.$(this);\n if (_t && $(_t).attr(\"data-uri\")) {\n var _models = _this.project.get(\"nodes\").where({\n uri: $(_t).attr(\"data-uri\")\n });\n _.each(_models, function(_model) {\n _this.renderer.highlightModel(_model);\n });\n }\n }).mouseout(function() {\n _this.renderer.unhighlightAll();\n }).on(\"mousemove\", \".Rk-Bin-Item\", function(e) {\n try {\n this.dragDrop();\n } catch (err) {}\n }).on(\"touchstart\", \".Rk-Bin-Item\", function(e) {\n elementDropped = false;\n }).on(\"touchmove\", \".Rk-Bin-Item\", function(e) {\n e.preventDefault();\n var touch = e.originalEvent.changedTouches[0],\n off = _this.renderer.canvas_$.offset(),\n w = _this.renderer.canvas_$.width(),\n h = _this.renderer.canvas_$.height();\n if (touch.pageX >= off.left && touch.pageX < (off.left + w) && touch.pageY >= off.top && touch.pageY < (off.top + h)) {\n if (elementDropped) {\n _this.renderer.onMouseMove(touch, true);\n } else {\n elementDropped = true;\n var div = document.createElement('div');\n div.appendChild(this.cloneNode(true));\n _this.renderer.dropData({\n \"text/html\": div.innerHTML\n }, touch);\n _this.renderer.onMouseDown(touch, true);\n }\n }\n }).on(\"touchend\", \".Rk-Bin-Item\", function(e) {\n if (elementDropped) {\n _this.renderer.onMouseUp(e.originalEvent.changedTouches[0], true);\n }\n elementDropped = false;\n }).on(\"dragstart\", \".Rk-Bin-Item\", function(e) {\n var div = document.createElement('div');\n div.appendChild(this.cloneNode(true));\n try {\n e.originalEvent.dataTransfer.setData(\"text/html\", div.innerHTML);\n } catch (err) {\n e.originalEvent.dataTransfer.setData(\"text\", div.innerHTML);\n }\n });\n\n }\n\n Rkns.$(window).resize(function() {\n _this.resizeBins();\n });\n\n var lastsearch = false,\n lastval = '';\n\n this.$.find(\".Rk-Bins-Search-Input\").on(\"change keyup paste input\", function() {\n var val = Rkns.$(this).val();\n if (val === lastval) {\n return;\n }\n var search = Rkns.Utils.regexpFromTextOrArray(val.length > 1 ? val : null);\n if (search.source === lastsearch) {\n return;\n }\n lastsearch = search.source;\n _.each(_this.tabs, function(tab) {\n tab.render(search);\n });\n\n });\n this.$.find(\".Rk-Bins-Search-Form\").submit(function() {\n return false;\n });\n };\n\n Renkan.prototype.translate = function(_text) {\n if (Rkns.i18n[this.options.language] && Rkns.i18n[this.options.language][_text]) {\n return Rkns.i18n[this.options.language][_text];\n }\n if (this.options.language.length > 2 && Rkns.i18n[this.options.language.substr(0, 2)] && Rkns.i18n[this.options.language.substr(0, 2)][_text]) {\n return Rkns.i18n[this.options.language.substr(0, 2)][_text];\n }\n return _text;\n };\n\n Renkan.prototype.onStatusChange = function() {\n this.renderer.onStatusChange();\n };\n\n Renkan.prototype.setSearchEngine = function(_key) {\n this.search_engine = this.search_engines[_key];\n this.$.find(\".Rk-Search-Current\").attr(\"class\", \"Rk-Search-Current \" + this.search_engine.getBgClass());\n var listClasses = this.search_engine.getBgClass().split(\" \");\n var classes = \"\";\n for (var i = 0; i < listClasses.length; i++) {\n classes += \".\" + listClasses[i];\n }\n this.$.find(\".Rk-Web-Search-Input.Rk-Search-Input\").attr(\"placeholder\", this.translate(\"Search in \") + this.$.find(\".Rk-Search-List \" + classes).html());\n };\n\n Renkan.prototype.resizeBins = function() {\n var _d = +this.$.find(\".Rk-Bins-Head\").outerHeight();\n this.$.find(\".Rk-Bin-Title:visible\").each(function() {\n _d += Rkns.$(this).outerHeight();\n });\n this.$.find(\".Rk-Bin-Main\").css({\n height: this.$.find(\".Rk-Bins\").height() - _d\n });\n };\n\n /* Utility functions */\n var getUUID4 = function() {\n return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {\n var r = Math.random() * 16 | 0,\n v = c === 'x' ? r : (r & 0x3 | 0x8);\n return v.toString(16);\n });\n };\n\n Rkns.Utils = {\n getUUID4: getUUID4,\n getUID: (function() {\n function pad(n) {\n return n < 10 ? '0' + n : n;\n }\n var _d = new Date(),\n ID_AUTO_INCREMENT = 0,\n ID_BASE = _d.getUTCFullYear() + '-' +\n pad(_d.getUTCMonth() + 1) + '-' +\n pad(_d.getUTCDate()) + '-' +\n getUUID4();\n return function(_base) {\n var _n = (++ID_AUTO_INCREMENT).toString(16),\n _uidbase = (typeof _base === \"undefined\" ? \"\" : _base + \"-\");\n while (_n.length < 4) {\n _n = '0' + _n;\n }\n return _uidbase + ID_BASE + '-' + _n;\n };\n })(),\n getFullURL: function(url) {\n\n if (typeof(url) === 'undefined' || url == null) {\n return \"\";\n }\n if (/https?:\\/\\//.test(url)) {\n return url;\n }\n var img = new Image();\n img.src = url;\n var res = img.src;\n img.src = null;\n return res;\n\n },\n inherit: function(_baseClass, _callbefore) {\n\n var _class = function(_arg) {\n if (typeof _callbefore === \"function\") {\n _callbefore.apply(this, Array.prototype.slice.call(arguments, 0));\n }\n _baseClass.apply(this, Array.prototype.slice.call(arguments, 0));\n if (typeof this._init === \"function\" && !this._initialized) {\n this._init.apply(this, Array.prototype.slice.call(arguments, 0));\n this._initialized = true;\n }\n };\n _.extend(_class.prototype, _baseClass.prototype);\n\n return _class;\n\n },\n regexpFromTextOrArray: (function() {\n var charsub = [\n '[aáàâä]',\n '[cç]',\n '[eéèêë]',\n '[iíìîï]',\n '[oóòôö]',\n '[uùûü]'\n ],\n removeChars = [\n String.fromCharCode(768), String.fromCharCode(769), String.fromCharCode(770), String.fromCharCode(771), String.fromCharCode(807),\n \"{\", \"}\", \"(\", \")\", \"[\", \"]\", \"【\", \"】\", \"、\", \"・\", \"‥\", \"。\", \"「\", \"」\", \"『\", \"』\", \"〜\", \":\", \"!\", \"?\", \" \",\n \",\", \" \", \";\", \"(\", \")\", \".\", \"*\", \"+\", \"\\\\\", \"?\", \"|\", \"{\", \"}\", \"[\", \"]\", \"^\", \"#\", \"/\"\n ],\n remsrc = \"[\\\\\" + removeChars.join(\"\\\\\") + \"]\",\n remrx = new RegExp(remsrc, \"gm\"),\n charsrx = _.map(charsub, function(c) {\n return new RegExp(c);\n });\n\n function replaceText(_text) {\n var txt = _text.toLowerCase().replace(remrx, \"\"),\n src = \"\";\n\n function makeReplaceFunc(l) {\n return function(k, v) {\n l = l.replace(charsrx[k], v);\n };\n }\n for (var j = 0; j < txt.length; j++) {\n if (j) {\n src += remsrc + \"*\";\n }\n var l = txt[j];\n _.each(charsub, makeReplaceFunc(l));\n src += l;\n }\n return src;\n }\n\n function getSource(inp) {\n switch (typeof inp) {\n case \"string\":\n return replaceText(inp);\n case \"object\":\n var src = '';\n _.each(inp, function(v) {\n var res = getSource(v);\n if (res) {\n if (src) {\n src += '|';\n }\n src += res;\n }\n });\n return src;\n }\n return '';\n }\n\n return function(_textOrArray) {\n var source = getSource(_textOrArray);\n if (source) {\n var testrx = new RegExp(source, \"im\"),\n replacerx = new RegExp('(' + source + ')', \"igm\");\n return {\n isempty: false,\n source: source,\n test: function(_t) {\n return testrx.test(_t);\n },\n replace: function(_text, _replace) {\n return _text.replace(replacerx, _replace);\n }\n };\n } else {\n return {\n isempty: true,\n source: '',\n test: function() {\n return true;\n },\n replace: function(_text) {\n return text;\n }\n };\n }\n };\n })(),\n /* The minimum distance (in pixels) the mouse has to move to consider an element was dragged */\n _MIN_DRAG_DISTANCE: 2,\n /* Distance between the inner and outer radius of buttons that appear when hovering on a node */\n _NODE_BUTTON_WIDTH: 40,\n\n _EDGE_BUTTON_INNER: 2,\n _EDGE_BUTTON_OUTER: 40,\n /* Constants used to know if a specific action is to be performed when clicking on the canvas */\n _CLICKMODE_ADDNODE: 1,\n _CLICKMODE_STARTEDGE: 2,\n _CLICKMODE_ENDEDGE: 3,\n /* Node size step: Used to calculate the size change when clicking the +/- buttons */\n _NODE_SIZE_STEP: Math.LN2 / 4,\n _MIN_SCALE: 1 / 20,\n _MAX_SCALE: 20,\n _MOUSEMOVE_RATE: 80,\n _DOUBLETAP_DELAY: 800,\n /* Maximum distance in pixels (squared, to reduce calculations)\n * between two taps when double-tapping on a touch terminal */\n _DOUBLETAP_DISTANCE: 20 * 20,\n /* A placeholder so a default colour is displayed when a node has a null value for its user property */\n _USER_PLACEHOLDER: function(_renkan) {\n return {\n color: _renkan.options.default_user_color,\n title: _renkan.translate(\"(unknown user)\"),\n get: function(attr) {\n return this[attr] || false;\n }\n };\n },\n /* The code for the \"Drag and Add Bookmarklet\", slightly minified and with whitespaces removed, though\n * it doesn't seem that it's still a requirement in newer browsers (i.e. the ones compatibles with canvas drawing)\n */\n _BOOKMARKLET_CODE: function(_renkan) {\n return \"(function(a,b,c,d,e,f,h,i,j,k,l,m,n,o,p,q,r){a=document;b=a.body;c=a.location.href;j='draggable';m='text/x-iri-';d=a.createElement('div');d.innerHTML='\" +\n _renkan.translate(\"Drag items from this website, drop them in Renkan\").replace(/ /g, \"_\") +\n \"

                                                    '.replace(/_/g,String.fromCharCode(32));b.appendChild(d);e=[{r:/https?:\\\\/\\\\/[^\\\\/]*twitter\\\\.com\\\\//,s:'.tweet',n:'twitter'},{r:/https?:\\\\/\\\\/[^\\\\/]*google\\\\.[^\\\\/]+\\\\//,s:'.g',n:'google'},{r:/https?:\\\\/\\\\/[^\\\\/]*lemonde\\\\.fr\\\\//,s:'[data-vr-contentbox]',n:'lemonde'}];f=false;e.forEach(function(g){if(g.r.test(c)){f=g;}});if(f){h=function(){Array.prototype.forEach.call(a.querySelectorAll(f.s),function(i){i[j]=true;k=i.style;k.borderWidth='2px';k.borderColor='#909';k.borderStyle='solid';k.backgroundColor='rgba(200,0,180,.1)';})};window.setInterval(h,500);h();};a.addEventListener('dragstart',function(k){l=k.dataTransfer;l.setData(m+'source-uri',c);l.setData(m+'source-title',a.title);n=k.target;if(f){o=n;while(!o.attributes[j]){o=o.parentNode;if(o==b){break;}}}if(f&&o.attributes[j]){p=o.cloneNode(true);l.setData(m+'specific-site',f.n)}else{q=a.getSelection();if(q.type==='Range'||!q.type){p=q.getRangeAt(0).cloneContents();}else{p=n.cloneNode();}}r=a.createElement('div');r.appendChild(p);l.setData('text/x-iri-selected-text',r.textContent.trim());l.setData('text/x-iri-selected-html',r.innerHTML);},false);})();\";\n },\n /* Shortens text to the required length then adds ellipsis */\n shortenText: function(_text, _maxlength) {\n return (_text.length > _maxlength ? (_text.substr(0, _maxlength) + '…') : _text);\n },\n /* Drawing an edit box with an arrow and positioning the edit box according to the position of the node/edge being edited\n * Called by Rkns.Renderer.NodeEditor and Rkns.Renderer.EdgeEditor */\n drawEditBox: function(_options, _coords, _path, _xmargin, _selector) {\n _selector.css({\n width: (_options.tooltip_width - 2 * _options.tooltip_padding)\n });\n var _height = _selector.outerHeight() + 2 * _options.tooltip_padding,\n _isLeft = (_coords.x < paper.view.center.x ? 1 : -1),\n _left = _coords.x + _isLeft * (_xmargin + _options.tooltip_arrow_length),\n _right = _coords.x + _isLeft * (_xmargin + _options.tooltip_arrow_length + _options.tooltip_width),\n _top = _coords.y - _height / 2;\n if (_top + _height > (paper.view.size.height - _options.tooltip_margin)) {\n _top = Math.max(paper.view.size.height - _options.tooltip_margin, _coords.y + _options.tooltip_arrow_width / 2) - _height;\n }\n if (_top < _options.tooltip_margin) {\n _top = Math.min(_options.tooltip_margin, _coords.y - _options.tooltip_arrow_width / 2);\n }\n var _bottom = _top + _height;\n /* jshint laxbreak:true */\n _path.segments[0].point = _path.segments[7].point = _coords.add([_isLeft * _xmargin, 0]);\n _path.segments[1].point.x = _path.segments[2].point.x = _path.segments[5].point.x = _path.segments[6].point.x = _left;\n _path.segments[3].point.x = _path.segments[4].point.x = _right;\n _path.segments[2].point.y = _path.segments[3].point.y = _top;\n _path.segments[4].point.y = _path.segments[5].point.y = _bottom;\n _path.segments[1].point.y = _coords.y - _options.tooltip_arrow_width / 2;\n _path.segments[6].point.y = _coords.y + _options.tooltip_arrow_width / 2;\n _path.closed = true;\n _path.fillColor = new paper.GradientColor(new paper.Gradient([_options.tooltip_top_color, _options.tooltip_bottom_color]), [0, _top], [0, _bottom]);\n _selector.css({\n left: (_options.tooltip_padding + Math.min(_left, _right)),\n top: (_options.tooltip_padding + _top)\n });\n return _path;\n },\n // from http://stackoverflow.com/a/6444043\n increaseBrightness: function (hex, percent){\n // strip the leading # if it's there\n hex = hex.replace(/^\\s*#|\\s*$/g, '');\n\n // convert 3 char codes --> 6, e.g. `E0F` --> `EE00FF`\n if(hex.length === 3){\n hex = hex.replace(/(.)/g, '$1$1');\n }\n\n var r = parseInt(hex.substr(0, 2), 16),\n g = parseInt(hex.substr(2, 2), 16),\n b = parseInt(hex.substr(4, 2), 16);\n\n return '#' +\n ((0|(1<<8) + r + (256 - r) * percent / 100).toString(16)).substr(1) +\n ((0|(1<<8) + g + (256 - g) * percent / 100).toString(16)).substr(1) +\n ((0|(1<<8) + b + (256 - b) * percent / 100).toString(16)).substr(1);\n }\n };\n})(window);\n\n/* END main.js */\n","(function(root) {\n \"use strict\";\n \n var Backbone = root.Backbone;\n \n var Router = root.Rkns.Router = Backbone.Router.extend({\n routes: {\n '': 'index'\n },\n \n index: function (parameters) {\n \n var result = {};\n if (parameters === null){\n return;\n }\n parameters.split(\"&\").forEach(function(part) {\n var item = part.split(\"=\");\n result[item[0]] = decodeURIComponent(item[1]);\n });\n this.trigger('router', result); \n } \n });\n\n})(window);","(function(root) {\n\n \"use strict\";\n\n var DataLoader = root.Rkns.DataLoader = {\n converters: {\n from1to2: function(data) {\n\n var i, len;\n if(typeof data.nodes !== 'undefined') {\n for(i=0, len=data.nodes.length; i 1 ? options.offset[1]\n : options.offset[0];\n }\n else if (options.offset.x != null) {\n offset.x = options.offset.x;\n offset.y = options.offset.y;\n }\n options.offset = offset;\n }\n return options;\n },\n toJSON : function() {\n return {\n _id : this.get(\"_id\"),\n zoom_level : this.get(\"zoom_level\"),\n offset : this.get(\"offset\"),\n title : this.get(\"title\"),\n description : this.get(\"description\"),\n created_by : this.get(\"created_by\") ? this.get(\"created_by\")\n .get(\"_id\") : null,\n hidden_nodes: this.get(\"hidden_nodes\")\n // Don't need project id\n };\n }\n });\n\n // PROJECT\n var Project = Models.Project = RenkanModel.extend({\n schema_version : \"2\",\n type : \"project\",\n blacklist : [ 'saveStatus', 'loadingStatus'],\n relations : [ {\n type : Backbone.HasMany,\n key : \"users\",\n relatedModel : User,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"nodes\",\n relatedModel : Node,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"edges\",\n relatedModel : Edge,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n }, {\n type : Backbone.HasMany,\n key : \"views\",\n relatedModel : View,\n reverseRelation : {\n key : 'project',\n includeInJSON : '_id'\n }\n } ],\n addUser : function(_props, _options) {\n _props.project = this;\n var _user = User.findOrCreate(_props);\n this.get(\"users\").push(_user, _options);\n return _user;\n },\n addNode : function(_props, _options) {\n _props.project = this;\n var _node = Node.findOrCreate(_props);\n this.get(\"nodes\").push(_node, _options);\n return _node;\n },\n addEdge : function(_props, _options) {\n _props.project = this;\n var _edge = Edge.findOrCreate(_props);\n this.get(\"edges\").push(_edge, _options);\n return _edge;\n },\n addView : function(_props, _options) {\n _props.project = this;\n // TODO: check if need to replace with create only\n var _view = View.findOrCreate(_props);\n // TODO: Should we remember only one view?\n this.get(\"views\").push(_view, _options);\n return _view;\n },\n removeNode : function(_model) {\n this.get(\"nodes\").remove(_model);\n },\n removeEdge : function(_model) {\n this.get(\"edges\").remove(_model);\n },\n validate : function(options) {\n var _project = this;\n _.each(\n [].concat(options.users, options.nodes, options.edges,options.views),\n function(_item) {\n if (_item) {\n _item.project = _project;\n }\n }\n );\n },\n getSchemaVersion : function(data) {\n var t = data;\n if(typeof(t) === \"undefined\") {\n t = this;\n }\n var version = t.schema_version;\n if(!version) {\n return 1;\n }\n else {\n return version;\n }\n },\n // Add event handler to remove edges when a node is removed\n initialize : function() {\n var _this = this;\n this.on(\"remove:nodes\", function(_node) {\n _this.get(\"edges\").remove(\n _this.get(\"edges\").filter(\n function(_edge) {\n return _edge.get(\"from\") === _node ||\n _edge.get(\"to\") === _node;\n }));\n });\n },\n toJSON : function() {\n var json = _.clone(this.attributes);\n for ( var attr in json) {\n if ((json[attr] instanceof Backbone.Model) ||\n (json[attr] instanceof Backbone.Collection) ||\n (json[attr] instanceof RenkanModel)) {\n json[attr] = json[attr].toJSON();\n }\n }\n return _.omit(json, this.blacklist);\n }\n });\n\n var RosterUser = Models.RosterUser = Backbone.Model\n .extend({\n type : \"roster_user\",\n idAttribute : \"_id\",\n\n constructor : function(options) {\n\n if (typeof options !== \"undefined\") {\n options._id = options._id ||\n options.id ||\n Models.getUID(this);\n options.title = options.title || \"(untitled \" + this.type + \")\";\n options.description = options.description || \"\";\n options.uri = options.uri || \"\";\n options.project = options.project || null;\n options.site_id = options.site_id || 0;\n\n if (typeof this.prepare === \"function\") {\n options = this.prepare(options);\n }\n }\n Backbone.Model.prototype.constructor.call(this, options);\n },\n\n validate : function() {\n if (!this.type) {\n return \"object has no type\";\n }\n },\n\n prepare : function(options) {\n options.color = options.color || \"#666666\";\n return options;\n },\n\n toJSON : function() {\n return {\n _id : this.get(\"_id\"),\n title : this.get(\"title\"),\n uri : this.get(\"uri\"),\n description : this.get(\"description\"),\n color : this.get(\"color\"),\n project : (this.get(\"project\") != null) ? this.get(\n \"project\").get(\"id\") : null,\n site_id : this.get(\"site_id\")\n };\n }\n });\n\n var UsersList = Models.UsersList = Backbone.Collection.extend({\n model : RosterUser\n });\n\n})(window);\n","Rkns.defaults = {\n\n language: (navigator.language || navigator.userLanguage || \"en\"),\n /* GUI Language */\n container: \"renkan\",\n /* GUI Container DOM element ID */\n search: [],\n /* List of Search Engines */\n bins: [],\n /* List of Bins */\n static_url: \"\",\n /* URL for static resources */\n popup_editor: true,\n /* show the node editor as a popup inside the renkan view */\n editor_panel: 'editor-panel',\n /* GUI continer DOM element ID of the editor panel */\n show_bins: true,\n /* Show bins in left column */\n properties: [],\n /* Semantic properties for edges */\n show_editor: true,\n /* Show the graph editor... Setting this to \"false\" only shows the bins part ! */\n read_only: false,\n /* Allows editing of renkan without changing the rest of the GUI. Can be switched on/off on the fly to block/enable editing */\n editor_mode: true,\n /* Switch for Publish/Edit GUI. If editor_mode is false, read_only will be true. */\n manual_save: false,\n /* In snapshot mode, clicking on the floppy will save a snapshot. Otherwise, it will show the connection status */\n show_top_bar: true,\n /* Show the top bar, (title, buttons, users) */\n default_user_color: \"#303030\",\n size_bug_fix: true,\n /* Resize the canvas after load (fixes a bug on iPad and FF Mac) */\n force_resize: false,\n allow_double_click: true,\n /* Allows Double Click to create a node on an empty background */\n zoom_on_scroll: true,\n /* Allows to use the scrollwheel to zoom */\n element_delete_delay: 0,\n /* Delay between clicking on the bin on an element and really deleting it\n Set to 0 for delete confirm */\n autoscale_padding: 50,\n resize: true,\n\n /* zoom options */\n show_zoom: true,\n /* show zoom buttons */\n save_view: true,\n /* show buttons to save view */\n default_view: false,\n /* Allows to load default view (zoom+offset) at start on read_only mode, instead of autoScale. the default_view will be the last */\n\n\n /* TOP BAR BUTTONS */\n show_search_field: true,\n show_user_list: true,\n user_name_editable: true,\n user_color_editable: true,\n show_user_color: true,\n show_save_button: true,\n show_export_button: true,\n show_open_button: false,\n show_addnode_button: true,\n show_addedge_button: true,\n show_bookmarklet: true,\n show_fullscreen_button: true,\n home_button_url: false,\n home_button_title: \"Home\",\n\n /* MINI-MAP OPTIONS */\n\n show_minimap: true,\n /* Show a small map at the bottom right */\n minimap_width: 160,\n minimap_height: 120,\n minimap_padding: 20,\n minimap_background_color: \"#ffffff\",\n minimap_border_color: \"#cccccc\",\n minimap_highlight_color: \"#ffff00\",\n minimap_highlight_weight: 5,\n\n\n /* EDGE/NODE COMMON OPTIONS */\n\n buttons_background: \"#202020\",\n buttons_label_color: \"#c000c0\",\n buttons_label_font_size: 9,\n\n ghost_opacity : 0.3,\n /* opacity when the hidden element is revealed */\n default_dash_array : [4, 5],\n /* dash line genometry */\n\n /* NODE DISPLAY OPTIONS */\n\n show_node_circles: true,\n /* Show circles for nodes */\n clip_node_images: true,\n /* Constraint node images to circles */\n node_images_fill_mode: false,\n /* Set to false for \"letterboxing\" (height/width of node adapted to show full image)\n Set to true for \"crop\" (adapted to fill circle) */\n node_size_base: 25,\n node_stroke_width: 2,\n node_stroke_max_width: 12,\n selected_node_stroke_width: 4,\n selected_node_stroke_max_width: 24,\n node_stroke_witdh_scale: 5,\n node_fill_color: \"#ffffff\",\n highlighted_node_fill_color: \"#ffff00\",\n node_label_distance: 5,\n /* Vertical distance between node and label */\n node_label_max_length: 60,\n /* Maximum displayed text length */\n label_untitled_nodes: \"(untitled)\",\n /* Label to display on untitled nodes */\n hide_nodes: true, \n /* allow hide/show nodes */\n change_shapes: true,\n /* Change shapes enabled */\n change_types: true,\n /* Change type enabled */\n \n /* NODE EDITOR TEMPLATE*/\n \n node_editor_templates: {\n \"default\": \"templates/nodeeditor_readonly.html\",\n \"video\": \"templates/nodeeditor_video.html\"\n },\n\n /* EDGE DISPLAY OPTIONS */\n\n edge_stroke_width: 2,\n edge_stroke_max_width: 12,\n selected_edge_stroke_width: 4,\n selected_edge_stroke_max_width: 24,\n edge_stroke_witdh_scale: 5,\n\n edge_label_distance: 0,\n edge_label_max_length: 20,\n edge_arrow_length: 18,\n edge_arrow_width: 12,\n edge_arrow_max_width: 32,\n edge_gap_in_bundles: 12,\n label_untitled_edges: \"\",\n\n /* CONTEXTUAL DISPLAY (TOOLTIP OR EDITOR) OPTIONS */\n\n tooltip_width: 275,\n tooltip_padding: 10,\n tooltip_margin: 15,\n tooltip_arrow_length : 20,\n tooltip_arrow_width : 40,\n tooltip_top_color: \"#f0f0f0\",\n tooltip_bottom_color: \"#d0d0d0\",\n tooltip_border_color: \"#808080\",\n tooltip_border_width: 1,\n\n richtext_editor_config: {\n toolbarGroups: [\n { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },\n { name: 'clipboard', groups: [ 'clipboard', 'undo' ] },\n '/',\n\t { name: 'styles'},\n ],\n removePlugins : 'colorbutton,find,flash,font,forms,iframe,image,newpage,smiley,specialchar,stylescombo,templates',\n },\n\n /* NODE EDITOR OPTIONS */\n\n show_node_editor_uri: true,\n show_node_editor_description: true,\n show_node_editor_description_richtext: true,\n show_node_editor_size: true,\n show_node_editor_style: true,\n show_node_editor_style_color: true,\n show_node_editor_style_dash: true,\n show_node_editor_style_thickness: true,\n show_node_editor_image: true,\n show_node_editor_creator: true,\n allow_image_upload: true,\n uploaded_image_max_kb: 500,\n\n\n /* NODE TOOLTIP OPTIONS */\n\n show_node_tooltip_uri: true,\n show_node_tooltip_description: true,\n show_node_tooltip_color: true,\n show_node_tooltip_image: true,\n show_node_tooltip_creator: true,\n\n /* EDGE EDITOR OPTIONS */\n\n show_edge_editor_uri: true,\n show_edge_editor_style: true,\n show_edge_editor_style_color: true,\n show_edge_editor_style_dash: true,\n show_edge_editor_style_thickness: true,\n show_edge_editor_style_arrow: true,\n show_edge_editor_direction: true,\n show_edge_editor_nodes: true,\n show_edge_editor_creator: true,\n\n /* EDGE TOOLTIP OPTIONS */\n\n show_edge_tooltip_uri: true,\n show_edge_tooltip_color: true,\n show_edge_tooltip_nodes: true,\n show_edge_tooltip_creator: true,\n\n};\n","Rkns.i18n = {\n fr: {\n \"Edit Node\": \"Édition d’un nœud\",\n \"Edit Edge\": \"Édition d’un lien\",\n \"Title:\": \"Titre :\",\n \"URI:\": \"URI :\",\n \"Description:\": \"Description :\",\n \"From:\": \"De :\",\n \"To:\": \"Vers :\",\n \"Image\": \"Image\",\n \"Image URL:\": \"URL d'Image\",\n \"Choose Image File:\": \"Choisir un fichier image\",\n \"Full Screen\": \"Mode plein écran\",\n \"Add Node\": \"Ajouter un nœud\",\n \"Add Edge\": \"Ajouter un lien\",\n \"Save Project\": \"Enregistrer le projet\",\n \"Open Project\": \"Ouvrir un projet\",\n \"Auto-save enabled\": \"Enregistrement automatique activé\",\n \"Connection lost\": \"Connexion perdue\",\n \"Created by:\": \"Créé par :\",\n \"Zoom In\": \"Agrandir l’échelle\",\n \"Zoom Out\": \"Rapetisser l’échelle\",\n \"Edit\": \"Éditer\",\n \"Remove\": \"Supprimer\",\n \"Cancel deletion\": \"Annuler la suppression\",\n \"Link to another node\": \"Créer un lien\",\n \"Enlarge\": \"Agrandir\",\n \"Shrink\": \"Rétrécir\",\n \"Click on the background canvas to add a node\": \"Cliquer sur le fond du graphe pour rajouter un nœud\",\n \"Click on a first node to start the edge\": \"Cliquer sur un premier nœud pour commencer le lien\",\n \"Click on a second node to complete the edge\": \"Cliquer sur un second nœud pour terminer le lien\",\n \"Wikipedia\": \"Wikipédia\",\n \"Wikipedia in \": \"Wikipédia en \",\n \"French\": \"Français\",\n \"English\": \"Anglais\",\n \"Japanese\": \"Japonais\",\n \"Untitled project\": \"Projet sans titre\",\n \"Lignes de Temps\": \"Lignes de Temps\",\n \"Loading, please wait\": \"Chargement en cours, merci de patienter\",\n \"Edge color:\": \"Couleur :\",\n \"Dash:\": \"Point. :\",\n \"Thickness:\": \"Epaisseur :\",\n \"Arrow:\": \"Flèche :\",\n \"Node color:\": \"Couleur :\",\n \"Choose color\": \"Choisir une couleur\",\n \"Change edge direction\": \"Changer le sens du lien\",\n \"Do you really wish to remove node \": \"Voulez-vous réellement supprimer le nœud \",\n \"Do you really wish to remove edge \": \"Voulez-vous réellement supprimer le lien \",\n \"This file is not an image\": \"Ce fichier n'est pas une image\",\n \"Image size must be under \": \"L'image doit peser moins de \",\n \"Size:\": \"Taille :\",\n \"KB\": \"ko\",\n \"Choose from vocabulary:\": \"Choisir dans un vocabulaire :\",\n \"SKOS Documentation properties\": \"SKOS: Propriétés documentaires\",\n \"has note\": \"a pour note\",\n \"has example\": \"a pour exemple\",\n \"has definition\": \"a pour définition\",\n \"SKOS Semantic relations\": \"SKOS: Relations sémantiques\",\n \"has broader\": \"a pour concept plus large\",\n \"has narrower\": \"a pour concept plus étroit\",\n \"has related\": \"a pour concept apparenté\",\n \"Dublin Core Metadata\": \"Métadonnées Dublin Core\",\n \"has contributor\": \"a pour contributeur\",\n \"covers\": \"couvre\",\n \"created by\": \"créé par\",\n \"has date\": \"a pour date\",\n \"published by\": \"édité par\",\n \"has source\": \"a pour source\",\n \"has subject\": \"a pour sujet\",\n \"Dragged resource\": \"Ressource glisée-déposée\",\n \"Search the Web\": \"Rechercher en ligne\",\n \"Search in Bins\": \"Rechercher dans les chutiers\",\n \"Close bin\": \"Fermer le chutier\",\n \"Refresh bin\": \"Rafraîchir le chutier\",\n \"(untitled)\": \"(sans titre)\",\n \"Select contents:\": \"Sélectionner des contenus :\",\n \"Drag items from this website, drop them in Renkan\": \"Glissez des éléments de ce site web vers Renkan\",\n \"Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.\": \"Glissez ce bouton vers votre barre de favoris. Ensuite, depuis un site tiers, cliquez dessus pour activer 'Drag-to-Add' puis glissez des éléments de ce site vers Renkan\",\n \"Shapes available\": \"Formes disponibles\",\n \"Circle\": \"Cercle\",\n \"Square\": \"Carré\",\n \"Diamond\": \"Losange\",\n \"Hexagone\": \"Hexagone\",\n \"Ellipse\": \"Ellipse\",\n \"Star\": \"Étoile\",\n \"Cloud\": \"Nuage\",\n \"Triangle\": \"Triangle\",\n \"Zoom Fit\": \"Ajuster le Zoom\",\n \"Download Project\": \"Télécharger le projet\",\n \"Save view\": \"Sauver la vue\",\n \"View saved view\": \"Restaurer la Vue\",\n \"Renkan \\'Drag-to-Add\\' bookmarklet\": \"Renkan \\'Deplacer-Pour-Ajouter\\' Signet\",\n \"(unknown user)\":\"(non authentifié)\",\n \"\":\"\",\n \"Search in graph\":\"Rechercher dans carte\",\n \"Search in \" : \"Chercher dans \"\n }\n};\n","/* Saves the Full JSON at each modification */\n\nRkns.jsonIO = function(_renkan, _opts) {\n var _proj = _renkan.project;\n if (typeof _opts.http_method === \"undefined\") {\n _opts.http_method = 'PUT';\n }\n var _load = function() {\n _renkan.renderer.redrawActive = false;\n _proj.set({\n loadingStatus : true\n });\n Rkns.$.getJSON(_opts.url, function(_data) {\n _renkan.dataloader.load(_data);\n _proj.set({\n loadingStatus : false\n });\n _proj.set({\n saveStatus : 0\n });\n _renkan.renderer.redrawActive = true;\n _renkan.renderer.fixSize();\n });\n };\n var _save = function() {\n _proj.set({\n saveStatus : 2\n });\n var _data = _proj.toJSON();\n if (!_renkan.read_only) {\n Rkns.$.ajax({\n type : _opts.http_method,\n url : _opts.url,\n contentType : \"application/json\",\n data : JSON.stringify(_data),\n success : function(data, textStatus, jqXHR) {\n _proj.set({\n saveStatus : 0\n });\n }\n });\n }\n\n };\n var _thrSave = Rkns._.throttle(function() {\n setTimeout(_save, 100);\n }, 1000);\n _proj.on(\"add:nodes add:edges add:users add:views\", function(_model) {\n _model.on(\"change remove\", function(_model) {\n _thrSave();\n });\n _thrSave();\n });\n _proj.on(\"change\", function() {\n if (!(_proj.changedAttributes.length === 1 && _proj\n .hasChanged('saveStatus'))) {\n _thrSave();\n }\n });\n\n _load();\n};\n","/* Saves the Full JSON once */\n\nRkns.jsonIOSaveOnClick = function(_renkan, _opts) {\n var _proj = _renkan.project,\n _saveWarn = false,\n _onLeave = function() {\n return \"Project not saved\";\n };\n if (typeof _opts.http_method === \"undefined\") {\n _opts.http_method = 'POST';\n }\n var _load = function() {\n var getdata = {},\n rx = /id=([^&#?=]+)/,\n matches = document.location.hash.match(rx);\n if (matches) {\n getdata.id = matches[1];\n }\n Rkns.$.ajax({\n url: _opts.url,\n data: getdata,\n beforeSend: function(){\n \t_proj.set({loadingStatus:true});\n },\n success: function(_data) {\n _renkan.dataloader.load(_data);\n _proj.set({loadingStatus:false});\n _proj.set({saveStatus:0});\n _renkan.renderer.autoScale();\n }\n });\n };\n var _save = function() {\n _proj.set(\"saved_at\", new Date());\n var _data = _proj.toJSON();\n Rkns.$.ajax({\n type: _opts.http_method,\n url: _opts.url,\n contentType: \"application/json\",\n data: JSON.stringify(_data),\n beforeSend: function(){\n \t_proj.set({saveStatus:2});\n },\n success: function(data, textStatus, jqXHR) {\n $(window).off(\"beforeunload\", _onLeave);\n _saveWarn = false;\n _proj.set({saveStatus:0});\n //document.location.hash = \"#id=\" + data.id;\n //$(\".Rk-Notifications\").text(\"Saved as \"+document.location.href).fadeIn().delay(2000).fadeOut();\n }\n });\n };\n var _checkLeave = function() {\n \t_proj.set({saveStatus:1});\n\n var title = _proj.get(\"title\");\n if (title && _proj.get(\"nodes\").length) {\n $(\".Rk-Save-Button\").removeClass(\"disabled\");\n } else {\n $(\".Rk-Save-Button\").addClass(\"disabled\");\n }\n if (title) {\n $(\".Rk-PadTitle\").css(\"border-color\",\"#333333\");\n }\n if (!_saveWarn) {\n _saveWarn = true;\n $(window).on(\"beforeunload\", _onLeave);\n }\n };\n _load();\n _proj.on(\"add:nodes add:edges add:users change\", function(_model) {\n\t _model.on(\"change remove\", function(_model) {\n\t \tif(!(_model.changedAttributes.length === 1 && _model.hasChanged('saveStatus'))) {\n\t \t\t_checkLeave();\n\t \t}\n\t });\n\t\tif(!(_proj.changedAttributes.length === 1 && _proj.hasChanged('saveStatus'))) {\n\t\t _checkLeave();\n \t}\n });\n _renkan.renderer.save = function() {\n if ($(\".Rk-Save-Button\").hasClass(\"disabled\")) {\n if (!_proj.get(\"title\")) {\n $(\".Rk-PadTitle\").css(\"border-color\",\"#ff0000\");\n }\n } else {\n _save();\n }\n };\n};\n","(function(Rkns) {\n\"use strict\";\n\nvar _ = Rkns._;\n\nvar Ldt = Rkns.Ldt = {};\n\nvar Bin = Ldt.Bin = function(_renkan, _opts) {\n if (_opts.ldt_type) {\n var Resclass = Ldt[_opts.ldt_type+\"Bin\"];\n if (Resclass) {\n return new Resclass(_renkan, _opts);\n }\n }\n console.error(\"No such LDT Bin Type\");\n};\n\nvar ProjectBin = Ldt.ProjectBin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nProjectBin.prototype.tagTemplate = renkanJST['templates/ldtjson-bin/tagtemplate.html'];\n\nProjectBin.prototype.annotationTemplate = renkanJST['templates/ldtjson-bin/annotationtemplate.html'];\n\nProjectBin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.proj_id = _opts.project_id;\n this.ldt_platform = _opts.ldt_platform || \"http://ldt.iri.centrepompidou.fr/\";\n this.title_$.html(_opts.title);\n this.title_icon_$.addClass('Rk-Ldt-Title-Icon');\n this.refresh();\n};\n\nProjectBin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n function highlight(_text) {\n var _e = _(_text).escape();\n return search.isempty ? _e : search.replace(_e, \"$1\");\n }\n function convertTC(_ms) {\n function pad(_n) {\n var _res = _n.toString();\n while (_res.length < 2) {\n _res = '0' + _res;\n }\n return _res;\n }\n var _totalSeconds = Math.abs(Math.floor(_ms/1000)),\n _hours = Math.floor(_totalSeconds / 3600),\n _minutes = (Math.floor(_totalSeconds / 60) % 60),\n _seconds = _totalSeconds % 60,\n _res = '';\n if (_hours) {\n _res += pad(_hours) + ':';\n }\n _res += pad(_minutes) + ':' + pad(_seconds);\n return _res;\n }\n\n var _html = '
                                                  • Tags

                                                  • ',\n _projtitle = this.data.meta[\"dc:title\"],\n _this = this,\n count = 0;\n _this.title_$.text('LDT Project: \"' + _projtitle + '\"');\n _.map(_this.data.tags,function(_tag) {\n var _title = _tag.meta[\"dc:title\"];\n if (!search.isempty && !search.test(_title)) {\n return;\n }\n count++;\n _html += _this.tagTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n encodedtitle : encodeURIComponent(_title),\n static_url: _this.renkan.options.static_url\n });\n });\n _html += '
                                                  • Annotations

                                                  • ';\n _.map(_this.data.annotations,function(_annotation) {\n var _description = _annotation.content.description,\n _title = _annotation.content.title.replace(_description,\"\");\n if (!search.isempty && !search.test(_title) && !search.test(_description)) {\n return;\n }\n count++;\n var _duration = _annotation.end - _annotation.begin,\n _img = (\n (_annotation.content && _annotation.content.img && _annotation.content.img.src) ?\n _annotation.content.img.src :\n ( _duration ? _this.renkan.options.static_url+\"img/ldt-segment.png\" : _this.renkan.options.static_url+\"img/ldt-point.png\" )\n );\n _html += _this.annotationTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n description: _description,\n hdescription: highlight(_description),\n start: convertTC(_annotation.begin),\n end: convertTC(_annotation.end),\n duration: convertTC(_duration),\n mediaid: _annotation.media,\n annotationid: _annotation.id,\n image: _img,\n static_url: _this.renkan.options.static_url\n });\n });\n\n this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nProjectBin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: this.ldt_platform + 'ldtplatform/ldt/cljson/id/' + this.proj_id,\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n\nvar Search = Ldt.Search = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.lang = _opts.lang || \"en\";\n};\n\nSearch.prototype.getBgClass = function() {\n return \"Rk-Ldt-Icon\";\n};\n\nSearch.prototype.getSearchTitle = function() {\n return this.renkan.translate(\"Lignes de Temps\");\n};\n\nSearch.prototype.search = function(_q) {\n this.renkan.tabs.push(\n new ResultsBin(this.renkan, {\n search: _q\n })\n );\n};\n\nvar ResultsBin = Ldt.ResultsBin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nResultsBin.prototype.segmentTemplate = renkanJST['templates/ldtjson-bin/segmenttemplate.html'];\n\nResultsBin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.ldt_platform = _opts.ldt_platform || \"http://ldt.iri.centrepompidou.fr/\";\n this.max_results = _opts.max_results || 50;\n this.search = _opts.search;\n this.title_$.html('Lignes de Temps: \"' + _opts.search + '\"');\n this.title_icon_$.addClass('Rk-Ldt-Title-Icon');\n this.refresh();\n};\n\nResultsBin.prototype.render = function(searchbase) {\n if (!this.data) {\n return;\n }\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n var highlightrx = (search.isempty ? Rkns.Utils.regexpFromTextOrArray(this.search) : search);\n function highlight(_text) {\n return highlightrx.replace(_(_text).escape(), \"$1\");\n }\n function convertTC(_ms) {\n function pad(_n) {\n var _res = _n.toString();\n while (_res.length < 2) {\n _res = '0' + _res;\n }\n return _res;\n }\n var _totalSeconds = Math.abs(Math.floor(_ms/1000)),\n _hours = Math.floor(_totalSeconds / 3600),\n _minutes = (Math.floor(_totalSeconds / 60) % 60),\n _seconds = _totalSeconds % 60,\n _res = '';\n if (_hours) {\n _res += pad(_hours) + ':';\n }\n _res += pad(_minutes) + ':' + pad(_seconds);\n return _res;\n }\n\n var _html = '',\n _this = this,\n count = 0;\n _.each(this.data.objects,function(_segment) {\n var _description = _segment.abstract,\n _title = _segment.title;\n if (!search.isempty && !search.test(_title) && !search.test(_description)) {\n return;\n }\n count++;\n var _duration = _segment.duration,\n _begin = _segment.start_ts,\n _end = + _segment.duration + _begin,\n _img = (\n _duration ?\n _this.renkan.options.static_url + \"img/ldt-segment.png\" :\n _this.renkan.options.static_url + \"img/ldt-point.png\"\n );\n _html += _this.segmentTemplate({\n ldt_platform: _this.ldt_platform,\n title: _title,\n htitle: highlight(_title),\n description: _description,\n hdescription: highlight(_description),\n start: convertTC(_begin),\n end: convertTC(_end),\n duration: convertTC(_duration),\n mediaid: _segment.iri_id,\n //projectid: _segment.project_id,\n //cuttingid: _segment.cutting_id,\n annotationid: _segment.element_id,\n image: _img\n });\n });\n\n this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nResultsBin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: this.ldt_platform + 'ldtplatform/api/ldt/1.0/segments/search/',\n data: {\n format: \"jsonp\",\n q: this.search,\n limit: this.max_results\n },\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n\n})(window.Rkns);\n","Rkns.ResourceList = {};\n\nRkns.ResourceList.Bin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nRkns.ResourceList.Bin.prototype.resultTemplate = renkanJST['templates/list-bin.html'];\n\nRkns.ResourceList.Bin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.title_$.html(_opts.title);\n if (_opts.list) {\n this.data = _opts.list;\n }\n this.refresh();\n};\n\nRkns.ResourceList.Bin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n function highlight(_text) {\n var _e = _(_text).escape();\n return search.isempty ? _e : search.replace(_e, \"$1\");\n }\n var _html = \"\",\n _this = this,\n count = 0;\n Rkns._.each(this.data,function(_item) {\n var _element;\n if (typeof _item === \"string\") {\n if (/^(https?:\\/\\/|www)/.test(_item)) {\n _element = { url: _item };\n } else {\n _element = { title: _item.replace(/[:,]?\\s?(https?:\\/\\/|www)[\\d\\w\\/.&?=#%-_]+\\s?/,'').trim() };\n var _match = _item.match(/(https?:\\/\\/|www)[\\d\\w\\/.&?=#%-_]+/);\n if (_match) {\n _element.url = _match[0];\n }\n if (_element.title.length > 80) {\n _element.description = _element.title;\n _element.title = _element.title.replace(/^(.{30,60})\\s.+$/,'$1…');\n }\n }\n } else {\n _element = _item;\n }\n var title = _element.title || (_element.url || \"\").replace(/^https?:\\/\\/(www\\.)?/,'').replace(/^(.{40}).+$/,'$1…'),\n url = _element.url || \"\",\n description = _element.description || \"\",\n image = _element.image || \"\";\n if (url && !/^https?:\\/\\//.test(url)) {\n url = 'http://' + url;\n }\n if (!search.isempty && !search.test(title) && !search.test(description)) {\n return;\n }\n count++;\n _html += _this.resultTemplate({\n url: url,\n title: title,\n htitle: highlight(title),\n image: image,\n description: description,\n hdescription: highlight(description),\n static_url: _this.renkan.options.static_url\n });\n });\n _this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nRkns.ResourceList.Bin.prototype.refresh = function() {\n if (this.data) {\n this.render();\n }\n};\n","Rkns.Wikipedia = {\n};\n\nRkns.Wikipedia.Search = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.lang = _opts.lang || \"en\";\n};\n\nRkns.Wikipedia.Search.prototype.getBgClass = function() {\n return \"Rk-Wikipedia-Search-Icon Rk-Wikipedia-Lang-\" + this.lang;\n};\n\nRkns.Wikipedia.Search.prototype.getSearchTitle = function() {\n var langs = {\n \"fr\": \"French\",\n \"en\": \"English\",\n \"ja\": \"Japanese\"\n };\n if (langs[this.lang]) {\n return this.renkan.translate(\"Wikipedia in \") + this.renkan.translate(langs[this.lang]);\n } else {\n return this.renkan.translate(\"Wikipedia\") + \" [\" + this.lang + \"]\";\n }\n};\n\nRkns.Wikipedia.Search.prototype.search = function(_q) {\n this.renkan.tabs.push(\n new Rkns.Wikipedia.Bin(this.renkan, {\n lang: this.lang,\n search: _q\n })\n );\n};\n\nRkns.Wikipedia.Bin = Rkns.Utils.inherit(Rkns._BaseBin);\n\nRkns.Wikipedia.Bin.prototype.resultTemplate = renkanJST['templates/wikipedia-bin/resulttemplate.html'];\n\nRkns.Wikipedia.Bin.prototype._init = function(_renkan, _opts) {\n this.renkan = _renkan;\n this.search = _opts.search;\n this.lang = _opts.lang || \"en\";\n this.title_icon_$.addClass('Rk-Wikipedia-Title-Icon Rk-Wikipedia-Lang-' + this.lang);\n this.title_$.html(this.search).addClass(\"Rk-Wikipedia-Title\");\n this.refresh();\n};\n\nRkns.Wikipedia.Bin.prototype.render = function(searchbase) {\n var search = searchbase || Rkns.Utils.regexpFromTextOrArray();\n var highlightrx = (search.isempty ? Rkns.Utils.regexpFromTextOrArray(this.search) : search);\n function highlight(_text) {\n return highlightrx.replace(_(_text).escape(), \"$1\");\n }\n var _html = \"\",\n _this = this,\n count = 0;\n Rkns._.each(this.data.query.search, function(_result) {\n var title = _result.title,\n url = \"http://\" + _this.lang + \".wikipedia.org/wiki/\" + encodeURI(title.replace(/ /g,\"_\")),\n description = Rkns.$('
                                                    ').html(_result.snippet).text();\n if (!search.isempty && !search.test(title) && !search.test(description)) {\n return;\n }\n count++;\n _html += _this.resultTemplate({\n url: url,\n title: title,\n htitle: highlight(title),\n description: description,\n hdescription: highlight(description),\n static_url: _this.renkan.options.static_url\n });\n });\n _this.main_$.html(_html);\n if (!search.isempty && count) {\n this.count_$.text(count).show();\n } else {\n this.count_$.hide();\n }\n if (!search.isempty && !count) {\n this.$.hide();\n } else {\n this.$.show();\n }\n this.renkan.resizeBins();\n};\n\nRkns.Wikipedia.Bin.prototype.refresh = function() {\n var _this = this;\n Rkns.$.ajax({\n url: \"http://\" + _this.lang + \".wikipedia.org/w/api.php?action=query&list=search&srsearch=\" + encodeURIComponent(this.search) + \"&format=json\",\n dataType: \"jsonp\",\n success: function(_data) {\n _this.data = _data;\n _this.render();\n }\n });\n};\n","\ndefine('renderer/baserepresentation',['jquery', 'underscore'], function ($, _) {\n \n\n /* Rkns.Renderer._BaseRepresentation Class */\n\n /* In Renkan, a \"Representation\" is a sort of ViewModel (in the MVVM paradigm) and bridges the gap between\n * models (written with Backbone.js) and the view (written with Paper.js)\n * Renkan's representations all inherit from Rkns.Renderer._BaseRepresentation '*/\n\n var _BaseRepresentation = function(_renderer, _model) {\n if (typeof _renderer !== \"undefined\") {\n this.renderer = _renderer;\n this.renkan = _renderer.renkan;\n this.project = _renderer.renkan.project;\n this.options = _renderer.renkan.options;\n this.model = _model;\n if (this.model) {\n var _this = this;\n this._changeBinding = function() {\n _this.redraw({change: true});\n };\n this._removeBinding = function() {\n _renderer.removeRepresentation(_this);\n _.defer(function() {\n _renderer.redraw();\n });\n };\n this._selectBinding = function() {\n _this.select();\n };\n this._unselectBinding = function() {\n _this.unselect();\n };\n this.model.on(\"change\", this._changeBinding );\n this.model.on(\"remove\", this._removeBinding );\n this.model.on(\"select\", this._selectBinding );\n this.model.on(\"unselect\", this._unselectBinding );\n }\n }\n };\n\n /* Rkns.Renderer._BaseRepresentation Methods */\n\n _(_BaseRepresentation.prototype).extend({\n _super: function(_func) {\n return _BaseRepresentation.prototype[_func].apply(this, Array.prototype.slice.call(arguments, 1));\n },\n redraw: function() {},\n moveTo: function() {},\n show: function() { return \"BaseRepresentation.show\"; },\n hide: function() {},\n select: function() {\n if (this.model) {\n this.model.trigger(\"selected\");\n }\n },\n unselect: function() {\n if (this.model) {\n this.model.trigger(\"unselected\");\n }\n },\n highlight: function() {},\n unhighlight: function() {},\n mousedown: function() {},\n mouseup: function() {\n if (this.model) {\n this.model.trigger(\"clicked\");\n }\n },\n destroy: function() {\n if (this.model) {\n this.model.off(\"change\", this._changeBinding );\n this.model.off(\"remove\", this._removeBinding );\n this.model.off(\"select\", this._selectBinding );\n this.model.off(\"unselect\", this._unselectBinding );\n }\n }\n }).value();\n\n /* End of Rkns.Renderer._BaseRepresentation Class */\n\n return _BaseRepresentation;\n\n});\n\ndefine('requtils',[], function ($, _) {\n \n return {\n getUtils: function(){\n return window.Rkns.Utils;\n },\n getRenderer: function(){\n return window.Rkns.Renderer;\n }\n };\n\n});\n\n\ndefine('renderer/basebutton',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* Rkns.Renderer._BaseButton Class */\n\n /* BaseButton is extended by contextual buttons that appear when hovering on nodes and edges */\n\n var _BaseButton = Utils.inherit(BaseRepresentation);\n\n _(_BaseButton.prototype).extend({\n moveTo: function(_pos) {\n this.sector.moveTo(_pos);\n },\n show: function() {\n this.sector.show();\n },\n hide: function() {\n this.sector.hide();\n },\n select: function() {\n this.sector.select();\n },\n unselect: function(_newTarget) {\n this.sector.unselect();\n if (!_newTarget || (_newTarget !== this.source_representation && _newTarget.source_representation !== this.source_representation)) {\n this.source_representation.unselect();\n }\n },\n destroy: function() {\n this.sector.destroy();\n }\n }).value();\n\n return _BaseButton;\n\n});\n\n\ndefine('renderer/shapebuilder',[], function () {\n \n\n var cloud_path = \"M0,0c-0.1218516546,-0.0336420601 -0.2451649928,0.0048580836 -0.3302944641,0.0884969975c-0.0444763883,-0.0550844815 -0.1047003238,-0.0975985034 -0.1769360893,-0.1175406746c-0.1859066673,-0.0513257002 -0.3774236254,0.0626045858 -0.4272374613,0.2541588105c-0.0036603877,0.0140753132 -0.0046241235,0.028229722 -0.0065872453,0.042307536c-0.1674179627,-0.0179317735 -0.3276106855,0.0900599386 -0.3725537463,0.2628868425c-0.0445325077,0.1712456429 0.0395025693,0.3463497959 0.1905420475,0.4183458793c-0.0082101538,0.0183442886 -0.0158652506,0.0372432828 -0.0211098452,0.0574080693c-0.0498130336,0.1915540431 0.0608692569,0.3884647499 0.2467762814,0.4397904033c0.0910577256,0.0251434257 0.1830791813,0.0103792696 0.2594677475,-0.0334472349c0.042100113,0.0928009202 0.1205930075,0.1674914182 0.2240666796,0.1960572479c0.1476344161,0.0407610407 0.297446165,-0.0238077445 0.3783262342,-0.1475652419c0.0327623278,0.0238981846 0.0691792333,0.0436665447 0.1102008706,0.0549940004c0.1859065794,0.0513256592 0.3770116432,-0.0627203154 0.4268255671,-0.2542745401c0.0250490557,-0.0963230532 0.0095494076,-0.1938010889 -0.0356681889,-0.2736906101c0.0447507424,-0.0439678867 0.0797796014,-0.0996624318 0.0969425462,-0.1656617192c0.0498137481,-0.1915564561 -0.0608688118,-0.3884669813 -0.2467755669,-0.4397928163c-0.0195699622,-0.0054005426 -0.0391731675,-0.0084429542 -0.0586916488,-0.0102888295c0.0115683912,-0.1682147574 -0.0933564223,-0.3269222408 -0.2572937178,-0.3721841203z\";\n /* ShapeBuilder Begin */\n\n var builders = {\n \"circle\":{\n getShape: function() {\n return new paper.Path.Circle([0, 0], 1);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Circle(center, radius);\n }\n },\n \"rectangle\":{\n getShape: function() {\n return new paper.Path.Rectangle([-2, -2], [2, 2]);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Rectangle([-radius, -radius], [radius*2, radius*2]);\n }\n },\n \"ellipse\":{\n getShape: function() {\n return new paper.Path.Ellipse(new paper.Rectangle([-2, -1], [2, 1]));\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Ellipse(new paper.Rectangle([-radius, -radius/2], [radius*2, radius]));\n }\n },\n \"polygon\":{\n getShape: function() {\n return new paper.Path.RegularPolygon([0, 0], 6, 1);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.RegularPolygon(center, 6, radius);\n }\n },\n \"diamond\":{\n getShape: function() {\n var d = new paper.Path.Rectangle([-Math.SQRT2, -Math.SQRT2], [Math.SQRT2, Math.SQRT2]);\n d.rotate(45);\n return d;\n },\n getImageShape: function(center, radius) {\n var d = new paper.Path.Rectangle([-radius*Math.SQRT2/2, -radius*Math.SQRT2/2], [radius*Math.SQRT2, radius*Math.SQRT2]);\n d.rotate(45);\n return d;\n }\n },\n \"star\":{\n getShape: function() {\n return new paper.Path.Star([0, 0], 8, 1, 0.7);\n },\n getImageShape: function(center, radius) {\n return new paper.Path.Star(center, 8, radius*1, radius*0.7);\n }\n },\n \"cloud\": {\n getShape: function() {\n var path = new paper.Path(cloud_path);\n return path;\n\n },\n getImageShape: function(center, radius) {\n var path = new paper.Path(cloud_path);\n path.scale(radius);\n path.translate(center);\n return path;\n }\n },\n \"triangle\": {\n getShape: function() {\n return new paper.Path.RegularPolygon([0,0], 3, 1);\n },\n getImageShape: function(center, radius) {\n var shape = new paper.Path.RegularPolygon([0,0], 3, 1);\n shape.scale(radius);\n shape.translate(center);\n return shape;\n }\n },\n \"svg\": function(path){\n return {\n getShape: function() {\n return new paper.Path(path);\n },\n getImageShape: function(center, radius) {\n // No calcul for the moment\n return new paper.Path();\n }\n };\n }\n };\n\n var ShapeBuilder = function (shape){\n if(shape === null || typeof shape === \"undefined\"){\n shape = \"circle\";\n }\n if(shape.substr(0,4)===\"svg:\"){\n return builders.svg(shape.substr(4));\n }\n if(!(shape in builders)){\n shape = \"circle\";\n }\n return builders[shape];\n };\n\n ShapeBuilder.builders = builders;\n\n return ShapeBuilder;\n\n});\n\ndefine('renderer/noderepr',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation', 'renderer/shapebuilder'], function ($, _, requtils, BaseRepresentation, ShapeBuilder) {\n \n\n var Utils = requtils.getUtils();\n\n /* Rkns.Renderer.Node Class */\n\n /* The representation for the node : A circle, with an image inside and a text label underneath.\n * The circle and the image are drawn on canvas and managed by Paper.js.\n * The text label is an HTML node, managed by jQuery. */\n\n //var NodeRepr = Renderer.Node = Utils.inherit(Renderer._BaseRepresentation);\n var NodeRepr = Utils.inherit(BaseRepresentation);\n\n _(NodeRepr.prototype).extend({\n _init: function() {\n this.renderer.node_layer.activate();\n this.type = \"Node\";\n this.buildShape();\n this.hidden = false;\n this.ghost= false;\n if (this.options.show_node_circles) {\n this.circle.strokeWidth = this.options.node_stroke_width;\n this.h_ratio = 1;\n } else {\n this.h_ratio = 0;\n }\n this.title = $('
                                                    ').appendTo(this.renderer.labels_$);\n\n if (this.options.editor_mode) {\n var Renderer = requtils.getRenderer();\n this.normal_buttons = [\n new Renderer.NodeEditButton(this.renderer, null),\n new Renderer.NodeRemoveButton(this.renderer, null),\n new Renderer.NodeLinkButton(this.renderer, null),\n new Renderer.NodeEnlargeButton(this.renderer, null),\n new Renderer.NodeShrinkButton(this.renderer, null)\n ];\n if (this.options.hide_nodes){\n this.normal_buttons.push(\n new Renderer.NodeHideButton(this.renderer, null),\n new Renderer.NodeShowButton(this.renderer, null)\n );\n }\n this.pending_delete_buttons = [\n new Renderer.NodeRevertButton(this.renderer, null)\n ];\n this.all_buttons = this.normal_buttons.concat(this.pending_delete_buttons);\n\n for (var i = 0; i < this.all_buttons.length; i++) {\n this.all_buttons[i].source_representation = this;\n }\n this.active_buttons = [];\n } else {\n this.active_buttons = this.all_buttons = [];\n }\n this.last_circle_radius = 1;\n\n if (this.renderer.minimap) {\n this.renderer.minimap.node_layer.activate();\n this.minimap_circle = new paper.Path.Circle([0, 0], 1);\n this.minimap_circle.__representation = this.renderer.minimap.miniframe.__representation;\n this.renderer.minimap.node_group.addChild(this.minimap_circle);\n }\n },\n _getStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.node_stroke_width + (thickness-1) * (this.options.node_stroke_max_width - this.options.node_stroke_width) / (this.options.node_stroke_witdh_scale-1);\n },\n _getSelectedStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.selected_node_stroke_width + (thickness-1) * (this.options.selected_node_stroke_max_width - this.options.selected_node_stroke_width) / (this.options.node_stroke_witdh_scale-1);\n },\n buildShape: function(){\n if( 'shape' in this.model.changed ) {\n delete this.img;\n }\n if(this.circle){\n this.circle.remove();\n delete this.circle;\n }\n // \"circle\" \"rectangle\" \"ellipse\" \"polygon\" \"star\" \"diamond\"\n this.shapeBuilder = new ShapeBuilder(this.model.get(\"shape\"));\n this.circle = this.shapeBuilder.getShape();\n this.circle.__representation = this;\n this.circle.sendToBack();\n this.last_circle_radius = 1;\n },\n redraw: function(options) {\n if( 'shape' in this.model.changed && 'change' in options && options.change ) {\n //if( 'shape' in this.model.changed ) {\n this.buildShape();\n }\n var _model_coords = new paper.Point(this.model.get(\"position\")),\n _baseRadius = this.options.node_size_base * Math.exp((this.model.get(\"size\") || 0) * Utils._NODE_SIZE_STEP);\n if (!this.is_dragging || !this.paper_coords) {\n this.paper_coords = this.renderer.toPaperCoords(_model_coords);\n }\n this.circle_radius = _baseRadius * this.renderer.scale;\n if (this.last_circle_radius !== this.circle_radius) {\n this.all_buttons.forEach(function(b) {\n b.setSectorSize();\n });\n this.circle.scale(this.circle_radius / this.last_circle_radius);\n if (this.node_image) {\n this.node_image.scale(this.circle_radius / this.last_circle_radius);\n }\n }\n this.circle.position = this.paper_coords;\n if (this.node_image) {\n this.node_image.position = this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius));\n }\n this.last_circle_radius = this.circle_radius;\n\n var old_act_btn = this.active_buttons;\n\n var opacity = 1;\n if (this.model.get(\"delete_scheduled\")) {\n opacity = 0.5;\n this.active_buttons = this.pending_delete_buttons;\n this.circle.dashArray = [2,2];\n } else {\n opacity = 1;\n this.active_buttons = this.normal_buttons;\n this.circle.dashArray = null;\n }\n if (this.selected && this.renderer.isEditable() && !this.ghost) {\n if (old_act_btn !== this.active_buttons) {\n old_act_btn.forEach(function(b) {\n b.hide();\n });\n }\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n\n if (this.node_image) {\n this.node_image.opacity = this.highlighted ? opacity * 0.5 : (opacity - 0.01);\n }\n\n this.circle.fillColor = this.highlighted ? this.options.highlighted_node_fill_color : this.options.node_fill_color;\n\n this.circle.opacity = this.options.show_node_circles ? opacity : 0.01;\n\n var _text = this.model.get(\"title\") || this.renkan.translate(this.options.label_untitled_nodes) || \"\";\n _text = Utils.shortenText(_text, this.options.node_label_max_length);\n\n if (typeof this.highlighted === \"object\") {\n this.title.html(this.highlighted.replace(_(_text).escape(),'$1'));\n } else {\n this.title.text(_text);\n }\n\n var _strokeWidth = this._getStrokeWidth();\n this.title.css({\n left: this.paper_coords.x,\n top: this.paper_coords.y + this.circle_radius * this.h_ratio + this.options.node_label_distance + 0.5*_strokeWidth,\n opacity: opacity\n });\n var _color = (this.model.has(\"style\") && this.model.get(\"style\").color) || (this.model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n _dash = (this.model.has(\"style\") && this.model.get(\"style\").dash) ? this.options.default_dash_array : null;\n this.circle.strokeWidth = _strokeWidth;\n this.circle.strokeColor = _color;\n this.circle.dashArray = _dash;\n var _pc = this.paper_coords;\n this.all_buttons.forEach(function(b) {\n b.moveTo(_pc);\n });\n var lastImage = this.img;\n this.img = this.model.get(\"image\");\n if (this.img && this.img !== lastImage) {\n this.showImage();\n if(this.circle) {\n this.circle.sendToBack();\n }\n }\n if (this.node_image && !this.img) {\n this.node_image.remove();\n delete this.node_image;\n }\n\n if (this.renderer.minimap) {\n this.minimap_circle.fillColor = _color;\n var minipos = this.renderer.toMinimapCoords(_model_coords),\n miniradius = this.renderer.minimap.scale * _baseRadius,\n minisize = new paper.Size([miniradius, miniradius]);\n this.minimap_circle.fitBounds(minipos.subtract(minisize), minisize.multiply(2));\n }\n\n if (typeof options === 'undefined' || !('dontRedrawEdges' in options) || !options.dontRedrawEdges) {\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.redraw();\n }\n }\n );\n }\n if (this.ghost){\n this.show(true);\n } else {\n if (this.hidden) { this.hide(); }\n }\n },\n showImage: function() {\n var _image = null;\n if (typeof this.renderer.image_cache[this.img] === \"undefined\") {\n _image = new Image();\n this.renderer.image_cache[this.img] = _image;\n _image.src = this.img;\n } else {\n _image = this.renderer.image_cache[this.img];\n }\n if (_image.width) {\n if (this.node_image) {\n this.node_image.remove();\n }\n this.renderer.node_layer.activate();\n var width = _image.width,\n height = _image.height,\n clipPath = this.model.get(\"clip_path\"),\n hasClipPath = (typeof clipPath !== \"undefined\" && clipPath),\n _clip = null,\n baseRadius = null,\n centerPoint = null;\n\n if (hasClipPath) {\n _clip = new paper.Path();\n var instructions = clipPath.match(/[a-z][^a-z]+/gi) || [],\n lastCoords = [0,0],\n minX = Infinity,\n minY = Infinity,\n maxX = -Infinity,\n maxY = -Infinity;\n\n var transformCoords = function(tabc, relative) {\n var newCoords = tabc.slice(1).map(function(v, k) {\n var res = parseFloat(v),\n isY = k % 2;\n if (isY) {\n res = ( res - 0.5 ) * height;\n } else {\n res = ( res - 0.5 ) * width;\n }\n if (relative) {\n res += lastCoords[isY];\n }\n if (isY) {\n minY = Math.min(minY, res);\n maxY = Math.max(maxY, res);\n } else {\n minX = Math.min(minX, res);\n maxX = Math.max(maxX, res);\n }\n return res;\n });\n lastCoords = newCoords.slice(-2);\n return newCoords;\n };\n\n instructions.forEach(function(instr) {\n var coords = instr.match(/([a-z]|[0-9.-]+)/ig) || [\"\"];\n switch(coords[0]) {\n case \"M\":\n _clip.moveTo(transformCoords(coords));\n break;\n case \"m\":\n _clip.moveTo(transformCoords(coords, true));\n break;\n case \"L\":\n _clip.lineTo(transformCoords(coords));\n break;\n case \"l\":\n _clip.lineTo(transformCoords(coords, true));\n break;\n case \"C\":\n _clip.cubicCurveTo(transformCoords(coords));\n break;\n case \"c\":\n _clip.cubicCurveTo(transformCoords(coords, true));\n break;\n case \"Q\":\n _clip.quadraticCurveTo(transformCoords(coords));\n break;\n case \"q\":\n _clip.quadraticCurveTo(transformCoords(coords, true));\n break;\n }\n });\n\n baseRadius = Math[this.options.node_images_fill_mode ? \"min\" : \"max\"](maxX - minX, maxY - minY) / 2;\n centerPoint = new paper.Point((maxX + minX) / 2, (maxY + minY) / 2);\n if (!this.options.show_node_circles) {\n this.h_ratio = (maxY - minY) / (2 * baseRadius);\n }\n } else {\n baseRadius = Math[this.options.node_images_fill_mode ? \"min\" : \"max\"](width, height) / 2;\n centerPoint = new paper.Point(0,0);\n if (!this.options.show_node_circles) {\n this.h_ratio = height / (2 * baseRadius);\n }\n }\n var _raster = new paper.Raster(_image);\n _raster.locked = true; // Disable mouse events on icon\n if (hasClipPath) {\n _raster = new paper.Group(_clip, _raster);\n _raster.opacity = 0.99;\n /* This is a workaround to allow clipping at group level\n * If opacity was set to 1, paper.js would merge all clipping groups in one (known bug).\n */\n _raster.clipped = true;\n _clip.__representation = this;\n }\n if (this.options.clip_node_images) {\n var _circleClip = this.shapeBuilder.getImageShape(centerPoint, baseRadius);\n _raster = new paper.Group(_circleClip, _raster);\n _raster.opacity = 0.99;\n _raster.clipped = true;\n _circleClip.__representation = this;\n }\n this.image_delta = centerPoint.divide(baseRadius);\n this.node_image = _raster;\n this.node_image.__representation = _this;\n this.node_image.scale(this.circle_radius / baseRadius);\n this.node_image.position = this.paper_coords.subtract(this.image_delta.multiply(this.circle_radius));\n this.node_image.insertAbove(this.circle);\n } else {\n var _this = this;\n $(_image).on(\"load\", function() {\n _this.showImage();\n });\n }\n },\n paperShift: function(_delta) {\n if (this.options.editor_mode) {\n if (!this.renkan.read_only) {\n this.is_dragging = true;\n this.paper_coords = this.paper_coords.add(_delta);\n this.redraw();\n }\n } else {\n this.renderer.paperShift(_delta);\n }\n },\n openEditor: function() {\n this.renderer.removeRepresentationsOfType(\"editor\");\n var _editor = this.renderer.addRepresentation(\"NodeEditor\",null);\n _editor.source_representation = this;\n _editor.draw();\n },\n select: function() {\n this.selected = true;\n this.circle.strokeWidth = this._getSelectedStrokeWidth();\n if (this.renderer.isEditable() && !this.hidden) {\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n var _uri = this.model.get(\"uri\");\n if (_uri) {\n $('.Rk-Bin-Item').each(function() {\n var _el = $(this);\n if (_el.attr(\"data-uri\") === _uri) {\n _el.addClass(\"selected\");\n }\n });\n }\n if (!this.options.editor_mode) {\n this.openEditor();\n }\n\n if (this.renderer.minimap) {\n this.minimap_circle.strokeWidth = this.options.minimap_highlight_weight;\n this.minimap_circle.strokeColor = this.options.minimap_highlight_color;\n }\n //if the node is hidden and the mouse hover it, it appears as a ghost\n if (this.hidden) {\n this.show(true);\n }\n else {\n this.showNeighbors(true);\n }\n this._super(\"select\");\n },\n hideButtons: function() {\n this.all_buttons.forEach(function(b) {\n b.hide();\n });\n delete(this.buttonTimeout);\n },\n unselect: function(_newTarget) {\n if (!_newTarget || _newTarget.source_representation !== this) {\n this.selected = false;\n var _this = this;\n this.buttons_timeout = setTimeout(function() { _this.hideButtons(); }, 200);\n this.circle.strokeWidth = this._getStrokeWidth();\n $('.Rk-Bin-Item').removeClass(\"selected\");\n if (this.renderer.minimap) {\n this.minimap_circle.strokeColor = undefined;\n }\n //when the mouse don't hover the node anymore, we hide it\n if (this.hidden) {\n this.hide();\n }\n else {\n this.hideNeighbors();\n }\n this._super(\"unselect\");\n }\n },\n hide: function(){\n var _this = this;\n this.ghost = false;\n this.hidden = true;\n if (typeof this.node_image !== 'undefined'){\n this.node_image.opacity = 0;\n }\n this.hideButtons();\n this.circle.opacity = 0;\n this.title.css('opacity', 0);\n this.minimap_circle.opacity = 0;\n\n\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.hide();\n }\n }\n );\n this.hideNeighbors();\n },\n show: function(ghost){\n var _this = this;\n this.ghost = ghost;\n if (this.ghost){\n if (typeof this.node_image !== 'undefined'){\n this.node_image.opacity = this.options.ghost_opacity;\n }\n this.circle.opacity = this.options.ghost_opacity;\n this.title.css('opacity', this.options.ghost_opacity);\n this.minimap_circle.opacity = this.options.ghost_opacity;\n } else {\n this.hidden = false;\n this.redraw();\n }\n\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return ((ed.get(\"to\") === _this.model) || (ed.get(\"from\") === _this.model));\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge);\n if (repr && typeof repr.from_representation !== \"undefined\" && typeof repr.from_representation.paper_coords !== \"undefined\" && typeof repr.to_representation !== \"undefined\" && typeof repr.to_representation.paper_coords !== \"undefined\") {\n repr.show(_this.ghost);\n }\n }\n );\n },\n hideNeighbors: function(){\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return (ed.get(\"from\") === _this.model);\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge.get(\"to\"));\n if (repr && repr.ghost) {\n repr.hide();\n }\n }\n );\n },\n showNeighbors: function(ghost){\n var _this = this;\n _.each(\n this.project.get(\"edges\").filter(\n function (ed) {\n return (ed.get(\"from\") === _this.model);\n }\n ),\n function(edge, index, list) {\n var repr = _this.renderer.getRepresentationByModel(edge.get(\"to\"));\n if (repr && repr.hidden) {\n repr.show(ghost);\n if (!ghost){\n var indexNode = _this.renderer.hiddenNodes.indexOf(repr.model.id);\n if (indexNode !== -1){\n _this.renderer.hiddenNodes.splice(indexNode, 1);\n }\n }\n }\n }\n );\n },\n highlight: function(textToReplace) {\n var hlvalue = textToReplace || true;\n if (this.highlighted === hlvalue) {\n return;\n }\n this.highlighted = hlvalue;\n this.redraw();\n this.renderer.throttledPaperDraw();\n },\n unhighlight: function() {\n if (!this.highlighted) {\n return;\n }\n this.highlighted = false;\n this.redraw();\n this.renderer.throttledPaperDraw();\n },\n saveCoords: function() {\n var _coords = this.renderer.toModelCoords(this.paper_coords),\n _data = {\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n if (this.renderer.isEditable()) {\n this.model.set(_data);\n }\n },\n mousedown: function(_event, _isTouch) {\n if (_isTouch) {\n this.renderer.unselectAll();\n this.select();\n }\n },\n mouseup: function(_event, _isTouch) {\n if (this.renderer.is_dragging && this.renderer.isEditable()) {\n this.saveCoords();\n } else {\n if (this.hidden) {\n var index = this.renderer.hiddenNodes.indexOf(this.model.id);\n if (index !== -1){\n this.renderer.hiddenNodes.splice(index, 1);\n }\n this.show(false);\n this.select();\n } else {\n if (!_isTouch && !this.model.get(\"delete_scheduled\")) {\n this.openEditor();\n }\n this.model.trigger(\"clicked\");\n }\n }\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.is_dragging = false;\n },\n destroy: function(_event) {\n this._super(\"destroy\");\n this.all_buttons.forEach(function(b) {\n b.destroy();\n });\n this.circle.remove();\n this.title.remove();\n if (this.renderer.minimap) {\n this.minimap_circle.remove();\n }\n if (this.node_image) {\n this.node_image.remove();\n }\n }\n }).value();\n\n return NodeRepr;\n\n});\n\n\ndefine('renderer/edge',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* Edge Class Begin */\n\n //var Edge = Renderer.Edge = Utils.inherit(Renderer._BaseRepresentation);\n var Edge = Utils.inherit(BaseRepresentation);\n\n _(Edge.prototype).extend({\n _init: function() {\n this.renderer.edge_layer.activate();\n this.type = \"Edge\";\n this.hidden = false;\n this.ghost = false;\n this.from_representation = this.renderer.getRepresentationByModel(this.model.get(\"from\"));\n this.to_representation = this.renderer.getRepresentationByModel(this.model.get(\"to\"));\n this.bundle = this.renderer.addToBundles(this);\n this.line = new paper.Path();\n this.line.add([0,0],[0,0],[0,0]);\n this.line.__representation = this;\n this.line.strokeWidth = this.options.edge_stroke_width;\n this.arrow_scale = 1;\n this.arrow = new paper.Path();\n this.arrow.add(\n [ 0, 0 ],\n [ this.options.edge_arrow_length, this.options.edge_arrow_width / 2 ],\n [ 0, this.options.edge_arrow_width ]\n );\n this.arrow.pivot = new paper.Point([ this.options.edge_arrow_length / 2, this.options.edge_arrow_width / 2 ]);\n this.arrow.__representation = this;\n this.text = $('
                                                    ').appendTo(this.renderer.labels_$);\n this.arrow_angle = 0;\n if (this.options.editor_mode) {\n var Renderer = requtils.getRenderer();\n this.normal_buttons = [\n new Renderer.EdgeEditButton(this.renderer, null),\n new Renderer.EdgeRemoveButton(this.renderer, null)\n ];\n this.pending_delete_buttons = [\n new Renderer.EdgeRevertButton(this.renderer, null)\n ];\n this.all_buttons = this.normal_buttons.concat(this.pending_delete_buttons);\n for (var i = 0; i < this.all_buttons.length; i++) {\n this.all_buttons[i].source_representation = this;\n }\n this.active_buttons = [];\n } else {\n this.active_buttons = this.all_buttons = [];\n }\n\n if (this.renderer.minimap) {\n this.renderer.minimap.edge_layer.activate();\n this.minimap_line = new paper.Path();\n this.minimap_line.add([0,0],[0,0]);\n this.minimap_line.__representation = this.renderer.minimap.miniframe.__representation;\n this.minimap_line.strokeWidth = 1;\n }\n },\n _getStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.edge_stroke_width + (thickness-1) * (this.options.edge_stroke_max_width - this.options.edge_stroke_width) / (this.options.edge_stroke_witdh_scale-1);\n },\n _getSelectedStrokeWidth: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return this.options.selected_edge_stroke_width + (thickness-1) * (this.options.selected_edge_stroke_max_width - this.options.selected_edge_stroke_width) / (this.options.edge_stroke_witdh_scale-1);\n },\n _getArrowScale: function() {\n var thickness = (this.model.has('style') && this.model.get('style').thickness) || 1;\n return 1 + (thickness-1) * ((this.options.edge_arrow_max_width / this.options.edge_arrow_width) - 1) / (this.options.edge_stroke_witdh_scale-1);\n },\n redraw: function() {\n var from = this.model.get(\"from\"),\n to = this.model.get(\"to\");\n if (!from || !to || (this.hidden && !this.ghost)) {\n return;\n }\n this.from_representation = this.renderer.getRepresentationByModel(from);\n this.to_representation = this.renderer.getRepresentationByModel(to);\n if (typeof this.from_representation === \"undefined\" || typeof this.to_representation === \"undefined\" ||\n (this.from_representation.hidden && !this.from_representation.ghost) ||\n (this.to_representation.hidden && !this.to_representation.ghost)) {\n this.hide();\n return;\n }\n var _strokeWidth = this._getStrokeWidth(),\n _arrow_scale = this._getArrowScale(),\n _p0a = this.from_representation.paper_coords,\n _p1a = this.to_representation.paper_coords,\n _v = _p1a.subtract(_p0a),\n _r = _v.length,\n _u = _v.divide(_r),\n _ortho = new paper.Point([- _u.y, _u.x]),\n _group_pos = this.bundle.getPosition(this),\n _delta = _ortho.multiply( this.options.edge_gap_in_bundles * _group_pos ),\n _p0b = _p0a.add(_delta), /* Adding a 4 px difference */\n _p1b = _p1a.add(_delta), /* to differentiate bundled links */\n _a = _v.angle,\n _textdelta = _ortho.multiply(this.options.edge_label_distance + 0.5 * _arrow_scale * this.options.edge_arrow_width),\n _handle = _v.divide(3),\n _color = (this.model.has(\"style\") && this.model.get(\"style\").color) || (this.model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n _dash = (this.model.has(\"style\") && this.model.get(\"style\").dash) ? this.options.default_dash_array : null,\n _opacity;\n\n if (this.model.get(\"delete_scheduled\") || this.from_representation.model.get(\"delete_scheduled\") || this.to_representation.model.get(\"delete_scheduled\")) {\n _opacity = 0.5;\n this.line.dashArray = [2, 2];\n } else {\n _opacity = this.ghost ? this.options.ghost_opacity : 1;\n this.line.dashArray = null;\n }\n\n var old_act_btn = this.active_buttons;\n\n this.arrow.visible =\n (this.model.has(\"style\") && this.model.get(\"style\").arrow) ||\n !this.model.has(\"style\") ||\n typeof this.model.get(\"style\").arrow === 'undefined';\n\n this.active_buttons = this.model.get(\"delete_scheduled\") ? this.pending_delete_buttons : this.normal_buttons;\n\n if (this.selected && this.renderer.isEditable() && old_act_btn !== this.active_buttons) {\n old_act_btn.forEach(function(b) {\n b.hide();\n });\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n\n this.paper_coords = _p0b.add(_p1b).divide(2);\n this.line.strokeWidth = _strokeWidth;\n this.line.strokeColor = _color;\n this.line.dashArray = _dash;\n this.line.opacity = _opacity;\n this.line.segments[0].point = _p0a;\n this.line.segments[1].point = this.paper_coords;\n this.line.segments[1].handleIn = _handle.multiply(-1);\n this.line.segments[1].handleOut = _handle;\n this.line.segments[2].point = _p1a;\n this.arrow.scale(_arrow_scale / this.arrow_scale);\n this.arrow_scale = _arrow_scale;\n this.arrow.fillColor = _color;\n this.arrow.opacity = _opacity;\n this.arrow.rotate(_a - this.arrow_angle, this.arrow.bounds.center);\n this.arrow.position = this.paper_coords;\n\n this.arrow_angle = _a;\n if (_a > 90) {\n _a -= 180;\n _textdelta = _textdelta.multiply(-1);\n }\n if (_a < -90) {\n _a += 180;\n _textdelta = _textdelta.multiply(-1);\n }\n var _text = this.model.get(\"title\") || this.renkan.translate(this.options.label_untitled_edges) || \"\";\n _text = Utils.shortenText(_text, this.options.node_label_max_length);\n this.text.text(_text);\n var _textpos = this.paper_coords.add(_textdelta);\n this.text.css({\n left: _textpos.x,\n top: _textpos.y,\n transform: \"rotate(\" + _a + \"deg)\",\n \"-moz-transform\": \"rotate(\" + _a + \"deg)\",\n \"-webkit-transform\": \"rotate(\" + _a + \"deg)\",\n opacity: _opacity\n });\n this.text_angle = _a;\n\n var _pc = this.paper_coords;\n this.all_buttons.forEach(function(b) {\n b.moveTo(_pc);\n });\n\n if (this.renderer.minimap) {\n this.minimap_line.strokeColor = _color;\n this.minimap_line.segments[0].point = this.renderer.toMinimapCoords(new paper.Point(this.from_representation.model.get(\"position\")));\n this.minimap_line.segments[1].point = this.renderer.toMinimapCoords(new paper.Point(this.to_representation.model.get(\"position\")));\n }\n },\n hide: function(){\n this.hidden = true;\n this.ghost = false;\n\n this.text.hide();\n this.line.visible = false;\n this.arrow.visible = false;\n this.minimap_line.visible = false;\n },\n show: function(ghost){\n this.ghost = ghost;\n if (this.ghost) {\n this.text.css('opacity', 0.3);\n this.line.opacity = 0.3;\n this.arrow.opacity = 0.3;\n this.minimap_line.opacity = 0.3;\n } else {\n this.hidden = false;\n\n this.text.css('opacity', 1);\n this.line.opacity = 1;\n this.arrow.opacity = 1;\n this.minimap_line.opacity = 1;\n }\n this.text.show();\n this.line.visible = true;\n this.arrow.visible = true;\n this.minimap_line.visible = true;\n this.redraw();\n },\n openEditor: function() {\n this.renderer.removeRepresentationsOfType(\"editor\");\n var _editor = this.renderer.addRepresentation(\"EdgeEditor\",null);\n _editor.source_representation = this;\n _editor.draw();\n },\n select: function() {\n this.selected = true;\n this.line.strokeWidth = this._getSelectedStrokeWidth();\n if (this.renderer.isEditable()) {\n this.active_buttons.forEach(function(b) {\n b.show();\n });\n }\n if (!this.options.editor_mode) {\n this.openEditor();\n }\n this._super(\"select\");\n },\n unselect: function(_newTarget) {\n if (!_newTarget || _newTarget.source_representation !== this) {\n this.selected = false;\n if (this.options.editor_mode) {\n this.all_buttons.forEach(function(b) {\n b.hide();\n });\n }\n this.line.strokeWidth = this._getStrokeWidth();\n this._super(\"unselect\");\n }\n },\n mousedown: function(_event, _isTouch) {\n if (_isTouch) {\n this.renderer.unselectAll();\n this.select();\n }\n },\n mouseup: function(_event, _isTouch) {\n if (!this.renkan.read_only && this.renderer.is_dragging) {\n this.from_representation.saveCoords();\n this.to_representation.saveCoords();\n this.from_representation.is_dragging = false;\n this.to_representation.is_dragging = false;\n } else {\n if (!_isTouch) {\n this.openEditor();\n }\n this.model.trigger(\"clicked\");\n }\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n },\n paperShift: function(_delta) {\n if (this.options.editor_mode) {\n if (!this.options.read_only) {\n this.from_representation.paperShift(_delta);\n this.to_representation.paperShift(_delta);\n }\n } else {\n this.renderer.paperShift(_delta);\n }\n },\n destroy: function() {\n this._super(\"destroy\");\n this.line.remove();\n this.arrow.remove();\n this.text.remove();\n if (this.renderer.minimap) {\n this.minimap_line.remove();\n }\n this.all_buttons.forEach(function(b) {\n b.destroy();\n });\n var _this = this;\n this.bundle.edges = _.reject(this.bundle.edges, function(_edge) {\n return _this === _edge;\n });\n }\n }).value();\n\n return Edge;\n\n});\n\n\n\ndefine('renderer/tempedge',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* TempEdge Class Begin */\n\n //var TempEdge = Renderer.TempEdge = Utils.inherit(Renderer._BaseRepresentation);\n var TempEdge = Utils.inherit(BaseRepresentation);\n\n _(TempEdge.prototype).extend({\n _init: function() {\n this.renderer.edge_layer.activate();\n this.type = \"Temp-edge\";\n\n var _color = (this.project.get(\"users\").get(this.renkan.current_user) || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\");\n this.line = new paper.Path();\n this.line.strokeColor = _color;\n this.line.dashArray = [4, 2];\n this.line.strokeWidth = this.options.selected_edge_stroke_width;\n this.line.add([0,0],[0,0]);\n this.line.__representation = this;\n this.arrow = new paper.Path();\n this.arrow.fillColor = _color;\n this.arrow.add(\n [ 0, 0 ],\n [ this.options.edge_arrow_length, this.options.edge_arrow_width / 2 ],\n [ 0, this.options.edge_arrow_width ]\n );\n this.arrow.__representation = this;\n this.arrow_angle = 0;\n },\n redraw: function() {\n var _p0 = this.from_representation.paper_coords,\n _p1 = this.end_pos,\n _a = _p1.subtract(_p0).angle,\n _c = _p0.add(_p1).divide(2);\n this.line.segments[0].point = _p0;\n this.line.segments[1].point = _p1;\n this.arrow.rotate(_a - this.arrow_angle);\n this.arrow.position = _c;\n this.arrow_angle = _a;\n },\n paperShift: function(_delta) {\n if (!this.renderer.isEditable()) {\n this.renderer.removeRepresentation(_this);\n paper.view.draw();\n return;\n }\n this.end_pos = this.end_pos.add(_delta);\n var _hitResult = paper.project.hitTest(this.end_pos);\n this.renderer.findTarget(_hitResult);\n this.redraw();\n },\n mouseup: function(_event, _isTouch) {\n var _hitResult = paper.project.hitTest(_event.point),\n _model = this.from_representation.model,\n _endDrag = true;\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n var _target = _hitResult.item.__representation;\n if (_target.type.substr(0,4) === \"Node\") {\n var _destmodel = _target.model || _target.source_representation.model;\n if (_model !== _destmodel) {\n var _data = {\n id: Utils.getUID('edge'),\n created_by: this.renkan.current_user,\n from: _model,\n to: _destmodel\n };\n if (this.renderer.isEditable()) {\n this.project.addEdge(_data);\n }\n }\n }\n\n if (_model === _target.model || (_target.source_representation && _target.source_representation.model === _model)) {\n _endDrag = false;\n this.renderer.is_dragging = true;\n }\n }\n if (_endDrag) {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentation(this);\n paper.view.draw();\n }\n },\n destroy: function() {\n this.arrow.remove();\n this.line.remove();\n }\n }).value();\n\n /* TempEdge Class End */\n\n return TempEdge;\n\n});\n\n\ndefine('renderer/baseeditor',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* _BaseEditor Begin */\n //var _BaseEditor = Renderer._BaseEditor = Utils.inherit(Renderer._BaseRepresentation);\n var _BaseEditor = Utils.inherit(BaseRepresentation);\n\n _(_BaseEditor.prototype).extend({\n _init: function() {\n this.renderer.buttons_layer.activate();\n this.type = \"editor\";\n this.editor_block = new paper.Path();\n var _pts = _.map(_.range(8), function() {return [0,0];});\n this.editor_block.add.apply(this.editor_block, _pts);\n this.editor_block.strokeWidth = this.options.tooltip_border_width;\n this.editor_block.strokeColor = this.options.tooltip_border_color;\n this.editor_block.opacity = 0.8;\n this.editor_$ = $('
                                                    ')\n .appendTo(this.renderer.editor_$)\n .css({\n position: \"absolute\",\n opacity: 0.8\n })\n .hide();\n },\n destroy: function() {\n this.editor_block.remove();\n this.editor_$.remove();\n }\n }).value();\n\n /* _BaseEditor End */\n\n return _BaseEditor;\n\n});\n\n\ndefine('renderer/nodeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor', 'renderer/shapebuilder', 'ckeditor-jquery'], function ($, _, requtils, BaseEditor, ShapeBuilder) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEditor Begin */\n //var NodeEditor = Renderer.NodeEditor = Utils.inherit(Renderer._BaseEditor);\n var NodeEditor = Utils.inherit(BaseEditor);\n\n _(NodeEditor.prototype).extend({\n _init: function() {\n BaseEditor.prototype._init.apply(this);\n this.template = this.options.templates['templates/nodeeditor.html'];\n //this.templates['default']= this.options.templates['templates/nodeeditor.html'];\n //fusionner avec this.options.node_editor_templates\n this.readOnlyTemplate = this.options.node_editor_templates;\n },\n draw: function() {\n var _model = this.source_representation.model,\n _created_by = _model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan),\n _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate[_model.get(\"type\")] || this.readOnlyTemplate[\"default\"]),\n _image_placeholder = this.options.static_url + \"img/image-placeholder.png\",\n _size = (_model.get(\"size\") || 0);\n this.editor_$\n .html(_template({\n node: {\n _id: _model.get(\"_id\"),\n has_creator: !!_model.get(\"created_by\"),\n title: _model.get(\"title\"),\n uri: _model.get(\"uri\"),\n type: _model.get(\"type\") || \"default\",\n short_uri: Utils.shortenText((_model.get(\"uri\") || \"\").replace(/^(https?:\\/\\/)?(www\\.)?/,'').replace(/\\/$/,''),40),\n description: _model.get(\"description\"),\n image: _model.get(\"image\") || \"\",\n image_placeholder: _image_placeholder,\n color: (_model.has(\"style\") && _model.get(\"style\").color) || _created_by.get(\"color\"),\n thickness: (_model.has(\"style\") && _model.get(\"style\").thickness) || 1,\n dash: _model.has(\"style\") && _model.get(\"style\").dash ? \"checked\" : \"\",\n clip_path: _model.get(\"clip_path\") || false,\n created_by_color: _created_by.get(\"color\"),\n created_by_title: _created_by.get(\"title\"),\n size: (_size > 0 ? \"+\" : \"\") + _size,\n shape: _model.get(\"shape\") || \"circle\"\n },\n renkan: this.renkan,\n options: this.options,\n shortenText: Utils.shortenText,\n shapes : _(ShapeBuilder.builders).omit('svg').keys().value(),\n types : _(this.options.node_editor_templates).keys().value(),\n }));\n this.redraw();\n var _this = this,\n editorInstance = _this.options.show_node_editor_description_richtext ?\n $(\".Rk-Edit-Description\").ckeditor(_this.options.richtext_editor_config) :\n false,\n closeEditor = function() {\n _this.renderer.removeRepresentation(_this);\n paper.view.draw();\n };\n\n _this.cleanEditor = function() {\n _this.editor_$.off(\"keyup\");\n _this.editor_$.find(\"input, textarea, select\").off(\"change keyup paste\");\n _this.editor_$.find(\".Rk-Edit-Image-File\").off('change');\n _this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").off('hover');\n _this.editor_$.find(\".Rk-Edit-Size-Btn\").off('click');\n _this.editor_$.find(\".Rk-Edit-Image-Del\").off('click');\n _this.editor_$.find(\".Rk-Edit-ColorPicker\").find(\"li\").off('hover click');\n _this.editor_$.find(\".Rk-CloseX\").off('click');\n _this.editor_$.find(\".Rk-Edit-Goto\").off('click');\n\n if(_this.options.show_node_editor_description_richtext) {\n if(typeof editorInstance.editor !== 'undefined') {\n var _editor = editorInstance.editor;\n delete editorInstance.editor;\n _editor.focusManager.blur(true);\n _editor.destroy();\n }\n }\n };\n\n this.editor_$.find(\".Rk-CloseX\").click(function (e) {\n e.preventDefault();\n closeEditor();\n });\n\n this.editor_$.find(\".Rk-Edit-Goto\").click(function() {\n if (!_model.get(\"uri\")) {\n return false;\n }\n });\n\n if (this.renderer.isEditable()) {\n\n var onFieldChange = _.throttle(function() {\n _.defer(function() {\n if (_this.renderer.isEditable()) {\n var _data = {\n title: _this.editor_$.find(\".Rk-Edit-Title\").val()\n };\n if (_this.options.show_node_editor_uri) {\n _data.uri = _this.editor_$.find(\".Rk-Edit-URI\").val();\n _this.editor_$.find(\".Rk-Edit-Goto\").attr(\"href\",_data.uri || \"#\");\n }\n if (_this.options.show_node_editor_image) {\n _data.image = _this.editor_$.find(\".Rk-Edit-Image\").val();\n _this.editor_$.find(\".Rk-Edit-ImgPreview\").attr(\"src\", _data.image || _image_placeholder);\n }\n if (_this.options.show_node_editor_description) {\n if(_this.options.show_node_editor_description_richtext) {\n if(typeof editorInstance.editor !== 'undefined' &&\n editorInstance.editor.checkDirty()) {\n _data.description = editorInstance.editor.getData();\n editorInstance.editor.resetDirty();\n }\n }\n else {\n _data.description = _this.editor_$.find(\".Rk-Edit-Description\").val();\n }\n }\n if (_this.options.show_node_editor_style) {\n var dash = _this.editor_$.find(\".Rk-Edit-Dash\").is(':checked');\n _data.style = _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {dash: dash});\n }\n if (_this.options.change_shapes) {\n if(_model.get(\"shape\")!==_this.editor_$.find(\".Rk-Edit-Shape\").val()){\n _data.shape = _this.editor_$.find(\".Rk-Edit-Shape\").val();\n }\n }\n if (_this.options.change_types) {\n if(_model.get(\"type\")!==_this.editor_$.find(\".Rk-Edit-Type\").val()){\n _data.type = _this.editor_$.find(\".Rk-Edit-Type\").val();\n }\n }\n _model.set(_data);\n _this.redraw();\n } else {\n closeEditor();\n }\n });\n }, 1000);\n\n this.editor_$.on(\"keyup\", function(_e) {\n if (_e.keyCode === 27) {\n closeEditor();\n }\n });\n\n this.editor_$.find(\"input, textarea, select\").on(\"change keyup paste\", onFieldChange);\n if( _this.options.show_node_editor_description &&\n _this.options.show_node_editor_description_richtext &&\n typeof editorInstance.editor !== 'undefined')\n {\n editorInstance.editor.on(\"change\", onFieldChange);\n editorInstance.editor.on(\"blur\", onFieldChange);\n }\n\n if(_this.options.allow_image_upload) {\n this.editor_$.find(\".Rk-Edit-Image-File\").change(function() {\n if (this.files.length) {\n var f = this.files[0],\n fr = new FileReader();\n if (f.type.substr(0,5) !== \"image\") {\n alert(_this.renkan.translate(\"This file is not an image\"));\n return;\n }\n if (f.size > (_this.options.uploaded_image_max_kb * 1024)) {\n alert(_this.renkan.translate(\"Image size must be under \") + _this.options.uploaded_image_max_kb + _this.renkan.translate(\"KB\"));\n return;\n }\n fr.onload = function(e) {\n _this.editor_$.find(\".Rk-Edit-Image\").val(e.target.result);\n onFieldChange();\n };\n fr.readAsDataURL(f);\n }\n });\n }\n this.editor_$.find(\".Rk-Edit-Title\")[0].focus();\n\n var _picker = _this.editor_$.find(\".Rk-Edit-ColorPicker\");\n\n this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").hover(\n function(_e) {\n _e.preventDefault();\n _picker.show();\n },\n function(_e) {\n _e.preventDefault();\n _picker.hide();\n }\n );\n\n _picker.find(\"li\").hover(\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", $(this).attr(\"data-color\"));\n },\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", (_model.has(\"style\") && _model.get(\"style\").color) || (_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(_this.renkan)).get(\"color\"));\n }\n ).click(function(_e) {\n _e.preventDefault();\n if (_this.renderer.isEditable()) {\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {color: $(this).attr(\"data-color\")}));\n _picker.hide();\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n\n var shiftSize = function(n) {\n if (_this.renderer.isEditable()) {\n var _newsize = n+(_model.get(\"size\") || 0);\n _this.editor_$.find(\"#Rk-Edit-Size-Value\").text((_newsize > 0 ? \"+\" : \"\") + _newsize);\n _model.set(\"size\", _newsize);\n paper.view.draw();\n } else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Size-Down\").click(function() {\n shiftSize(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Size-Up\").click(function() {\n shiftSize(1);\n return false;\n });\n\n var shiftThickness = function(n) {\n if (_this.renderer.isEditable()) {\n var _oldThickness = ((_model.has('style') && _model.get('style').thickness) || 1),\n _newThickness = n + _oldThickness;\n if(_newThickness < 1 ) {\n _newThickness = 1;\n }\n else if (_newThickness > _this.options.node_stroke_witdh_scale) {\n _newThickness = _this.options.node_stroke_witdh_scale;\n }\n if (_newThickness !== _oldThickness) {\n _this.editor_$.find(\"#Rk-Edit-Thickness-Value\").text(_newThickness);\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {thickness: _newThickness}));\n paper.view.draw();\n }\n }\n else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Thickness-Down\").click(function() {\n shiftThickness(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Thickness-Up\").click(function() {\n shiftThickness(1);\n return false;\n });\n\n this.editor_$.find(\".Rk-Edit-Image-Del\").click(function() {\n _this.editor_$.find(\".Rk-Edit-Image\").val('');\n onFieldChange();\n return false;\n });\n } else {\n if (typeof this.source_representation.highlighted === \"object\") {\n var titlehtml = this.source_representation.highlighted.replace(_(_model.get(\"title\")).escape(),'$1');\n this.editor_$.find(\".Rk-Display-Title\" + (_model.get(\"uri\") ? \" a\" : \"\")).html(titlehtml);\n if (this.options.show_node_tooltip_description) {\n this.editor_$.find(\".Rk-Display-Description\").html(this.source_representation.highlighted.replace(_(_model.get(\"description\")).escape(),'$1'));\n }\n }\n }\n this.editor_$.find(\"img\").load(function() {\n _this.redraw();\n });\n },\n redraw: function() {\n if (this.options.popup_editor){\n var _coords = this.source_representation.paper_coords;\n Utils.drawEditBox(this.options, _coords, this.editor_block, this.source_representation.circle_radius * 0.75, this.editor_$);\n }\n this.editor_$.show();\n paper.view.draw();\n },\n destroy: function() {\n if(typeof this.cleanEditor !== 'undefined') {\n this.cleanEditor();\n }\n this.editor_block.remove();\n this.editor_$.remove();\n }\n }).value();\n\n /* NodeEditor End */\n\n return NodeEditor;\n\n});\n\n\ndefine('renderer/edgeeditor',['jquery', 'underscore', 'requtils', 'renderer/baseeditor'], function ($, _, requtils, BaseEditor) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeEditor Begin */\n\n //var EdgeEditor = Renderer.EdgeEditor = Utils.inherit(Renderer._BaseEditor);\n var EdgeEditor = Utils.inherit(BaseEditor);\n\n _(EdgeEditor.prototype).extend({\n _init: function() {\n BaseEditor.prototype._init.apply(this);\n this.template = this.options.templates['templates/edgeeditor.html'];\n this.readOnlyTemplate = this.options.templates['templates/edgeeditor_readonly.html'];\n },\n draw: function() {\n var _model = this.source_representation.model,\n _from_model = _model.get(\"from\"),\n _to_model = _model.get(\"to\"),\n _created_by = _model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan),\n _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate);\n this.editor_$\n .html(_template({\n edge: {\n has_creator: !!_model.get(\"created_by\"),\n title: _model.get(\"title\"),\n uri: _model.get(\"uri\"),\n short_uri: Utils.shortenText((_model.get(\"uri\") || \"\").replace(/^(https?:\\/\\/)?(www\\.)?/,'').replace(/\\/$/,''),40),\n description: _model.get(\"description\"),\n color: (_model.has(\"style\") && _model.get(\"style\").color) || _created_by.get(\"color\"),\n dash: _model.has(\"style\") && _model.get(\"style\").dash ? \"checked\" : \"\",\n arrow: (_model.has(\"style\") && _model.get(\"style\").arrow) || !_model.has(\"style\") || (typeof _model.get(\"style\").arrow === 'undefined') ? \"checked\" : \"\",\n thickness: (_model.has(\"style\") && _model.get(\"style\").thickness) || 1,\n from_title: _from_model.get(\"title\"),\n to_title: _to_model.get(\"title\"),\n from_color: (_from_model.has(\"style\") && _from_model.get(\"style\").color) || (_from_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n to_color: (_to_model.has(\"style\") && _to_model.get(\"style\").color) || (_to_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(this.renkan)).get(\"color\"),\n created_by_color: _created_by.get(\"color\"),\n created_by_title: _created_by.get(\"title\")\n },\n renkan: this.renkan,\n shortenText: Utils.shortenText,\n options: this.options\n }));\n this.redraw();\n var _this = this,\n closeEditor = function() {\n _this.renderer.removeRepresentation(_this);\n _this.editor_$.find(\".Rk-Edit-Size-Btn\").off('click');\n paper.view.draw();\n };\n this.editor_$.find(\".Rk-CloseX\").click(closeEditor);\n this.editor_$.find(\".Rk-Edit-Goto\").click(function() {\n if (!_model.get(\"uri\")) {\n return false;\n }\n });\n\n if (this.renderer.isEditable()) {\n\n var onFieldChange = _.throttle(function() {\n _.defer(function() {\n if (_this.renderer.isEditable()) {\n var _data = {\n title: _this.editor_$.find(\".Rk-Edit-Title\").val()\n };\n if (_this.options.show_edge_editor_uri) {\n _data.uri = _this.editor_$.find(\".Rk-Edit-URI\").val();\n }\n if (_this.options.show_node_editor_style) {\n var dash = _this.editor_$.find(\".Rk-Edit-Dash\").is(':checked'),\n arrow = _this.editor_$.find(\".Rk-Edit-Arrow\").is(':checked');\n _data.style = _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {dash: dash, arrow: arrow});\n }\n _this.editor_$.find(\".Rk-Edit-Goto\").attr(\"href\",_data.uri || \"#\");\n _model.set(_data);\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n },500);\n\n this.editor_$.on(\"keyup\", function(_e) {\n if (_e.keyCode === 27) {\n closeEditor();\n }\n });\n\n this.editor_$.find(\"input\").on(\"keyup change paste\", onFieldChange);\n\n this.editor_$.find(\".Rk-Edit-Vocabulary\").change(function() {\n var e = $(this),\n v = e.val();\n if (v) {\n _this.editor_$.find(\".Rk-Edit-Title\").val(e.find(\":selected\").text());\n _this.editor_$.find(\".Rk-Edit-URI\").val(v);\n onFieldChange();\n }\n });\n this.editor_$.find(\".Rk-Edit-Direction\").click(function() {\n if (_this.renderer.isEditable()) {\n _model.set({\n from: _model.get(\"to\"),\n to: _model.get(\"from\")\n });\n _this.draw();\n } else {\n closeEditor();\n }\n });\n\n var _picker = _this.editor_$.find(\".Rk-Edit-ColorPicker\");\n\n this.editor_$.find(\".Rk-Edit-ColorPicker-Wrapper\").hover(\n function(_e) {\n _e.preventDefault();\n _picker.show();\n },\n function(_e) {\n _e.preventDefault();\n _picker.hide();\n }\n );\n\n _picker.find(\"li\").hover(\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", $(this).attr(\"data-color\"));\n },\n function(_e) {\n _e.preventDefault();\n _this.editor_$.find(\".Rk-Edit-Color\").css(\"background\", (_model.has(\"style\") && _model.get(\"style\").color)|| (_model.get(\"created_by\") || Utils._USER_PLACEHOLDER(_this.renkan)).get(\"color\"));\n }\n ).click(function(_e) {\n _e.preventDefault();\n if (_this.renderer.isEditable()) {\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {color: $(this).attr(\"data-color\")}));\n _picker.hide();\n paper.view.draw();\n } else {\n closeEditor();\n }\n });\n var shiftThickness = function(n) {\n if (_this.renderer.isEditable()) {\n var _oldThickness = ((_model.has('style') && _model.get('style').thickness) || 1),\n _newThickness = n + _oldThickness;\n if(_newThickness < 1 ) {\n _newThickness = 1;\n }\n else if (_newThickness > _this.options.node_stroke_witdh_scale) {\n _newThickness = _this.options.node_stroke_witdh_scale;\n }\n if (_newThickness !== _oldThickness) {\n _this.editor_$.find(\"#Rk-Edit-Thickness-Value\").text(_newThickness);\n _model.set(\"style\", _.assign( ((_model.has(\"style\") && _.clone(_model.get(\"style\"))) || {}), {thickness: _newThickness}));\n paper.view.draw();\n }\n }\n else {\n closeEditor();\n }\n };\n\n this.editor_$.find(\"#Rk-Edit-Thickness-Down\").click(function() {\n shiftThickness(-1);\n return false;\n });\n this.editor_$.find(\"#Rk-Edit-Thickness-Up\").click(function() {\n shiftThickness(1);\n return false;\n });\n }\n },\n redraw: function() {\n if (this.options.popup_editor){\n var _coords = this.source_representation.paper_coords;\n Utils.drawEditBox(this.options, _coords, this.editor_block, 5, this.editor_$);\n }\n this.editor_$.show();\n paper.view.draw();\n }\n }).value();\n\n /* EdgeEditor End */\n\n return EdgeEditor;\n\n});\n\n\ndefine('renderer/nodebutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* _NodeButton Begin */\n\n //var _NodeButton = Renderer._NodeButton = Utils.inherit(Renderer._BaseButton);\n var _NodeButton = Utils.inherit(BaseButton);\n\n _(_NodeButton.prototype).extend({\n setSectorSize: function() {\n var sectorInner = this.source_representation.circle_radius;\n if (sectorInner !== this.lastSectorInner) {\n if (this.sector) {\n this.sector.destroy();\n }\n this.sector = this.renderer.drawSector(\n this, 1 + sectorInner,\n Utils._NODE_BUTTON_WIDTH + sectorInner,\n this.startAngle,\n this.endAngle,\n 1,\n this.imageName,\n this.renkan.translate(this.text)\n );\n this.lastSectorInner = sectorInner;\n }\n },\n unselect: function() {\n BaseButton.prototype.unselect.apply(this, Array.prototype.slice.call(arguments, 1));\n if(this.source_representation && this.source_representation.buttons_timeout) {\n clearTimeout(this.source_representation.buttons_timeout);\n this.source_representation.hideButtons();\n }\n },\n select: function() {\n if(this.source_representation && this.source_representation.buttons_timeout) {\n clearTimeout(this.source_representation.buttons_timeout);\n }\n this.sector.select();\n },\n }).value();\n\n\n /* _NodeButton End */\n\n return _NodeButton;\n\n});\n\n\ndefine('renderer/nodeeditbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEditButton Begin */\n\n //var NodeEditButton = Renderer.NodeEditButton = Utils.inherit(Renderer._NodeButton);\n var NodeEditButton = Utils.inherit(NodeButton);\n\n _(NodeEditButton.prototype).extend({\n _init: function() {\n this.type = \"Node-edit-button\";\n this.lastSectorInner = 0;\n this.startAngle = this.options.hide_nodes ? -125 : -135;\n this.endAngle = this.options.hide_nodes ? -55 : -45;\n this.imageName = \"edit\";\n this.text = \"Edit\";\n },\n mouseup: function() {\n if (!this.renderer.is_dragging) {\n this.source_representation.openEditor();\n }\n }\n }).value();\n\n /* NodeEditButton End */\n\n return NodeEditButton;\n\n});\n\n\ndefine('renderer/noderemovebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeRemoveButton = Utils.inherit(NodeButton);\n\n _(NodeRemoveButton.prototype).extend({\n _init: function() {\n this.type = \"Node-remove-button\";\n this.lastSectorInner = 0;\n this.startAngle = this.options.hide_nodes ? -10 : 0;\n this.endAngle = this.options.hide_nodes ? 45 : 90;\n this.imageName = \"remove\";\n this.text = \"Remove\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n if (this.options.element_delete_delay) {\n var delid = Utils.getUID(\"delete\");\n this.renderer.delete_list.push({\n id: delid,\n time: new Date().valueOf() + this.options.element_delete_delay\n });\n this.source_representation.model.set(\"delete_scheduled\", delid);\n } else {\n if (confirm(this.renkan.translate('Do you really wish to remove node ') + '\"' + this.source_representation.model.get(\"title\") + '\"?')) {\n this.project.removeNode(this.source_representation.model);\n }\n }\n }\n }\n }).value();\n\n /* NodeRemoveButton End */\n\n return NodeRemoveButton;\n\n});\n\n\ndefine('renderer/nodehidebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeHideButton = Utils.inherit(NodeButton);\n\n _(NodeHideButton.prototype).extend({\n _init: function() {\n this.type = \"Node-hide-button\";\n this.lastSectorInner = 0;\n this.startAngle = 45;\n this.endAngle = 90;\n this.imageName = \"hide\";\n this.text = \"Hide\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n this.renderer.addHiddenNode(this.source_representation.model);\n }\n }\n }).value();\n\n /* NodeRemoveButton End */\n\n return NodeHideButton;\n\n});\n\n\ndefine('renderer/nodeshowbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRemoveButton Begin */\n\n //var NodeRemoveButton = Renderer.NodeRemoveButton = Utils.inherit(Renderer._NodeButton);\n var NodeShowButton = Utils.inherit(NodeButton);\n\n _(NodeShowButton.prototype).extend({\n _init: function() {\n this.type = \"Node-show-button\";\n this.lastSectorInner = 0;\n this.startAngle = 90;\n this.endAngle = 135;\n this.imageName = \"show\";\n this.text = \"Show\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n this.source_representation.showNeighbors(false);\n }\n }\n }).value();\n\n /* NodeShowButton End */\n\n return NodeShowButton;\n\n});\n\n\ndefine('renderer/noderevertbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeRevertButton Begin */\n\n //var NodeRevertButton = Renderer.NodeRevertButton = Utils.inherit(Renderer._NodeButton);\n var NodeRevertButton = Utils.inherit(NodeButton);\n\n _(NodeRevertButton.prototype).extend({\n _init: function() {\n this.type = \"Node-revert-button\";\n this.lastSectorInner = 0;\n this.startAngle = -135;\n this.endAngle = 135;\n this.imageName = \"revert\";\n this.text = \"Cancel deletion\";\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n if (this.renderer.isEditable()) {\n this.source_representation.model.unset(\"delete_scheduled\");\n }\n }\n }).value();\n\n /* NodeRevertButton End */\n\n return NodeRevertButton;\n\n});\n\n\ndefine('renderer/nodelinkbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeLinkButton Begin */\n\n //var NodeLinkButton = Renderer.NodeLinkButton = Utils.inherit(Renderer._NodeButton);\n var NodeLinkButton = Utils.inherit(NodeButton);\n\n _(NodeLinkButton.prototype).extend({\n _init: function() {\n this.type = \"Node-link-button\";\n this.lastSectorInner = 0;\n this.startAngle = this.options.hide_nodes ? 135 : 90;\n this.endAngle = this.options.hide_nodes ? 190 : 180;\n this.imageName = \"link\";\n this.text = \"Link to another node\";\n },\n mousedown: function(_event, _isTouch) {\n if (this.renderer.isEditable()) {\n var _off = this.renderer.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n this.renderer.click_target = null;\n this.renderer.removeRepresentationsOfType(\"editor\");\n this.renderer.addTempEdge(this.source_representation, _point);\n }\n }\n }).value();\n\n /* NodeLinkButton End */\n\n return NodeLinkButton;\n\n});\n\n\n\ndefine('renderer/nodeenlargebutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeEnlargeButton Begin */\n\n //var NodeEnlargeButton = Renderer.NodeEnlargeButton = Utils.inherit(Renderer._NodeButton);\n var NodeEnlargeButton = Utils.inherit(NodeButton);\n\n _(NodeEnlargeButton.prototype).extend({\n _init: function() {\n this.type = \"Node-enlarge-button\";\n this.lastSectorInner = 0;\n this.startAngle = this.options.hide_nodes ? -55 : -45;\n this.endAngle = this.options.hide_nodes ? -10 : 0;\n this.imageName = \"enlarge\";\n this.text = \"Enlarge\";\n },\n mouseup: function() {\n var _newsize = 1 + (this.source_representation.model.get(\"size\") || 0);\n this.source_representation.model.set(\"size\", _newsize);\n this.source_representation.select();\n this.select();\n paper.view.draw();\n }\n }).value();\n\n /* NodeEnlargeButton End */\n\n return NodeEnlargeButton;\n\n});\n\n\ndefine('renderer/nodeshrinkbutton',['jquery', 'underscore', 'requtils', 'renderer/nodebutton'], function ($, _, requtils, NodeButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* NodeShrinkButton Begin */\n\n //var NodeShrinkButton = Renderer.NodeShrinkButton = Utils.inherit(Renderer._NodeButton);\n var NodeShrinkButton = Utils.inherit(NodeButton);\n\n _(NodeShrinkButton.prototype).extend({\n _init: function() {\n this.type = \"Node-shrink-button\";\n this.lastSectorInner = 0;\n this.startAngle = this.options.hide_nodes ? -170 : -180;\n this.endAngle = this.options.hide_nodes ? -125 : -135;\n this.imageName = \"shrink\";\n this.text = \"Shrink\";\n },\n mouseup: function() {\n var _newsize = -1 + (this.source_representation.model.get(\"size\") || 0);\n this.source_representation.model.set(\"size\", _newsize);\n this.source_representation.select();\n this.select();\n paper.view.draw();\n }\n }).value();\n\n /* NodeShrinkButton End */\n\n return NodeShrinkButton;\n\n});\n\n\ndefine('renderer/edgeeditbutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeEditButton Begin */\n\n //var EdgeEditButton = Renderer.EdgeEditButton = Utils.inherit(Renderer._BaseButton);\n var EdgeEditButton = Utils.inherit(BaseButton);\n\n _(EdgeEditButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-edit-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -270, -90, 1, \"edit\", this.renkan.translate(\"Edit\"));\n },\n mouseup: function() {\n if (!this.renderer.is_dragging) {\n this.source_representation.openEditor();\n }\n }\n }).value();\n\n /* EdgeEditButton End */\n\n return EdgeEditButton;\n\n});\n\n\ndefine('renderer/edgeremovebutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeRemoveButton Begin */\n\n //var EdgeRemoveButton = Renderer.EdgeRemoveButton = Utils.inherit(Renderer._BaseButton);\n var EdgeRemoveButton = Utils.inherit(BaseButton);\n\n _(EdgeRemoveButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-remove-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -90, 90, 1, \"remove\", this.renkan.translate(\"Remove\"));\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n this.renderer.removeRepresentationsOfType(\"editor\");\n if (this.renderer.isEditable()) {\n if (this.options.element_delete_delay) {\n var delid = Utils.getUID(\"delete\");\n this.renderer.delete_list.push({\n id: delid,\n time: new Date().valueOf() + this.options.element_delete_delay\n });\n this.source_representation.model.set(\"delete_scheduled\", delid);\n } else {\n if (confirm(this.renkan.translate('Do you really wish to remove edge ') + '\"' + this.source_representation.model.get(\"title\") + '\"?')) {\n this.project.removeEdge(this.source_representation.model);\n }\n }\n }\n }\n }).value();\n\n /* EdgeRemoveButton End */\n\n return EdgeRemoveButton;\n\n});\n\n\ndefine('renderer/edgerevertbutton',['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {\n \n\n var Utils = requtils.getUtils();\n\n /* EdgeRevertButton Begin */\n\n //var EdgeRevertButton = Renderer.EdgeRevertButton = Utils.inherit(Renderer._BaseButton);\n var EdgeRevertButton = Utils.inherit(BaseButton);\n\n _(EdgeRevertButton.prototype).extend({\n _init: function() {\n this.type = \"Edge-revert-button\";\n this.sector = this.renderer.drawSector(this, Utils._EDGE_BUTTON_INNER, Utils._EDGE_BUTTON_OUTER, -135, 135, 1, \"revert\", this.renkan.translate(\"Cancel deletion\"));\n },\n mouseup: function() {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n if (this.renderer.isEditable()) {\n this.source_representation.model.unset(\"delete_scheduled\");\n }\n }\n }).value();\n\n /* EdgeRevertButton End */\n\n return EdgeRevertButton;\n\n});\n\n\ndefine('renderer/miniframe',['jquery', 'underscore', 'requtils', 'renderer/baserepresentation'], function ($, _, requtils, BaseRepresentation) {\n \n\n var Utils = requtils.getUtils();\n\n /* MiniFrame Begin */\n\n //var MiniFrame = Renderer.MiniFrame = Utils.inherit(Renderer._BaseRepresentation);\n var MiniFrame = Utils.inherit(BaseRepresentation);\n\n _(MiniFrame.prototype).extend({\n paperShift: function(_delta) {\n this.renderer.offset = this.renderer.offset.subtract(_delta.divide(this.renderer.minimap.scale).multiply(this.renderer.scale));\n this.renderer.redraw();\n },\n mouseup: function(_delta) {\n this.renderer.click_target = null;\n this.renderer.is_dragging = false;\n }\n }).value();\n\n\n /* MiniFrame End */\n\n return MiniFrame;\n\n});\n\n\ndefine('renderer/scene',['jquery', 'underscore', 'filesaver', 'requtils', 'renderer/miniframe'], function ($, _, filesaver, requtils, MiniFrame) {\n \n\n var Utils = requtils.getUtils();\n\n /* Scene Begin */\n\n var Scene = function(_renkan) {\n this.renkan = _renkan;\n this.$ = $(\".Rk-Render\");\n this.representations = [];\n this.$.html(_renkan.options.templates['templates/scene.html'](_renkan));\n this.onStatusChange();\n this.canvas_$ = this.$.find(\".Rk-Canvas\");\n this.labels_$ = this.$.find(\".Rk-Labels\");\n if (!_renkan.options.popup_editor){\n this.editor_$ = $(\"#\" + _renkan.options.editor_panel);\n }else{\n this.editor_$ = this.$.find(\".Rk-Editor\");\n }\n this.notif_$ = this.$.find(\".Rk-Notifications\");\n paper.setup(this.canvas_$[0]);\n this.scale = 1;\n this.initialScale = 1;\n this.offset = paper.view.center;\n this.totalScroll = 0;\n this.hiddenNodes = [];\n this.mouse_down = false;\n this.click_target = null;\n this.selected_target = null;\n this.edge_layer = new paper.Layer();\n this.node_layer = new paper.Layer();\n this.buttons_layer = new paper.Layer();\n this.delete_list = [];\n this.redrawActive = true;\n\n if (_renkan.options.show_minimap) {\n this.minimap = {\n background_layer: new paper.Layer(),\n edge_layer: new paper.Layer(),\n node_layer: new paper.Layer(),\n node_group: new paper.Group(),\n size: new paper.Size( _renkan.options.minimap_width, _renkan.options.minimap_height )\n };\n\n this.minimap.background_layer.activate();\n this.minimap.topleft = paper.view.bounds.bottomRight.subtract(this.minimap.size);\n this.minimap.rectangle = new paper.Path.Rectangle(this.minimap.topleft.subtract([2,2]), this.minimap.size.add([4,4]));\n this.minimap.rectangle.fillColor = _renkan.options.minimap_background_color;\n this.minimap.rectangle.strokeColor = _renkan.options.minimap_border_color;\n this.minimap.rectangle.strokeWidth = 4;\n this.minimap.offset = new paper.Point(this.minimap.size.divide(2));\n this.minimap.scale = 0.1;\n\n this.minimap.node_layer.activate();\n this.minimap.cliprectangle = new paper.Path.Rectangle(this.minimap.topleft, this.minimap.size);\n this.minimap.node_group.addChild(this.minimap.cliprectangle);\n this.minimap.node_group.clipped = true;\n this.minimap.miniframe = new paper.Path.Rectangle(this.minimap.topleft, this.minimap.size);\n this.minimap.node_group.addChild(this.minimap.miniframe);\n this.minimap.miniframe.fillColor = '#c0c0ff';\n this.minimap.miniframe.opacity = 0.3;\n this.minimap.miniframe.strokeColor = '#000080';\n this.minimap.miniframe.strokeWidth = 2;\n this.minimap.miniframe.__representation = new MiniFrame(this, null);\n }\n\n this.throttledPaperDraw = _(function() {\n paper.view.draw();\n }).throttle(100).value();\n\n this.bundles = [];\n this.click_mode = false;\n\n var _this = this,\n _allowScroll = true,\n _originalScale = 1,\n _zooming = false,\n _lastTapX = 0,\n _lastTapY = 0;\n\n this.image_cache = {};\n this.icon_cache = {};\n\n ['edit', 'remove', 'hide', 'show', 'link', 'enlarge', 'shrink', 'revert' ].forEach(function(imgname) {\n var img = new Image();\n img.src = _renkan.options.static_url + 'img/' + imgname + '.png';\n _this.icon_cache[imgname] = img;\n });\n\n var throttledMouseMove = _.throttle(function(_event, _isTouch) {\n _this.onMouseMove(_event, _isTouch);\n }, Utils._MOUSEMOVE_RATE);\n\n this.canvas_$.on({\n mousedown: function(_event) {\n _event.preventDefault();\n _this.onMouseDown(_event, false);\n },\n mousemove: function(_event) {\n _event.preventDefault();\n throttledMouseMove(_event, false);\n },\n mouseup: function(_event) {\n _event.preventDefault();\n _this.onMouseUp(_event, false);\n },\n mousewheel: function(_event, _delta) {\n if(_renkan.options.zoom_on_scroll) {\n _event.preventDefault();\n if (_allowScroll) {\n _this.onScroll(_event, _delta);\n }\n }\n },\n touchstart: function(_event) {\n _event.preventDefault();\n var _touches = _event.originalEvent.touches[0];\n if (\n _renkan.options.allow_double_click &&\n new Date() - _lastTap < Utils._DOUBLETAP_DELAY &&\n ( Math.pow(_lastTapX - _touches.pageX, 2) + Math.pow(_lastTapY - _touches.pageY, 2) < Utils._DOUBLETAP_DISTANCE )\n ) {\n _lastTap = 0;\n _this.onDoubleClick(_touches);\n } else {\n _lastTap = new Date();\n _lastTapX = _touches.pageX;\n _lastTapY = _touches.pageY;\n _originalScale = _this.scale;\n _zooming = false;\n _this.onMouseDown(_touches, true);\n }\n },\n touchmove: function(_event) {\n _event.preventDefault();\n _lastTap = 0;\n if (_event.originalEvent.touches.length === 1) {\n _this.onMouseMove(_event.originalEvent.touches[0], true);\n } else {\n if (!_zooming) {\n _this.onMouseUp(_event.originalEvent.touches[0], true);\n _this.click_target = null;\n _this.is_dragging = false;\n _zooming = true;\n }\n if (_event.originalEvent.scale === \"undefined\") {\n return;\n }\n var _newScale = _event.originalEvent.scale * _originalScale,\n _scaleRatio = _newScale / _this.scale,\n _newOffset = new paper.Point([\n _this.canvas_$.width(),\n _this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - _scaleRatio ) ).add(_this.offset.multiply( _scaleRatio ));\n _this.setScale(_newScale, _newOffset);\n }\n },\n touchend: function(_event) {\n _event.preventDefault();\n _this.onMouseUp(_event.originalEvent.changedTouches[0], true);\n },\n dblclick: function(_event) {\n _event.preventDefault();\n if (_renkan.options.allow_double_click) {\n _this.onDoubleClick(_event);\n }\n },\n mouseleave: function(_event) {\n _event.preventDefault();\n //_this.onMouseUp(_event, false);//\n _this.click_target = null;\n _this.is_dragging = false;\n },\n dragover: function(_event) {\n _event.preventDefault();\n },\n dragenter: function(_event) {\n _event.preventDefault();\n _allowScroll = false;\n },\n dragleave: function(_event) {\n _event.preventDefault();\n _allowScroll = true;\n },\n drop: function(_event) {\n _event.preventDefault();\n _allowScroll = true;\n var res = {};\n _.each(_event.originalEvent.dataTransfer.types, function(t) {\n try {\n res[t] = _event.originalEvent.dataTransfer.getData(t);\n } catch(e) {}\n });\n var text = _event.originalEvent.dataTransfer.getData(\"Text\");\n if (typeof text === \"string\") {\n switch(text[0]) {\n case \"{\":\n case \"[\":\n try {\n var data = JSON.parse(text);\n _.extend(res,data);\n }\n catch(e) {\n if (!res[\"text/plain\"]) {\n res[\"text/plain\"] = text;\n }\n }\n break;\n case \"<\":\n if (!res[\"text/html\"]) {\n res[\"text/html\"] = text;\n }\n break;\n default:\n if (!res[\"text/plain\"]) {\n res[\"text/plain\"] = text;\n }\n }\n }\n var url = _event.originalEvent.dataTransfer.getData(\"URL\");\n if (url && !res[\"text/uri-list\"]) {\n res[\"text/uri-list\"] = url;\n }\n _this.dropData(res, _event.originalEvent);\n }\n });\n\n var bindClick = function(selector, fname) {\n _this.$.find(selector).click(function(evt) {\n _this[fname](evt);\n return false;\n });\n };\n\n bindClick(\".Rk-ZoomOut\", \"zoomOut\");\n bindClick(\".Rk-ZoomIn\", \"zoomIn\");\n bindClick(\".Rk-ZoomFit\", \"autoScale\");\n this.$.find(\".Rk-ZoomSave\").click( function() {\n // Save scale and offset point\n _this.renkan.project.addView( { zoom_level:_this.scale, offset:_this.offset, hidden_nodes: _this.hiddenNodes } );\n });\n this.$.find(\".Rk-ZoomSetSaved\").click( function() {\n var view = _this.renkan.project.get(\"views\").last();\n if(view){\n _this.showNodes(false);\n _this.setScale(view.get(\"zoom_level\"), new paper.Point(view.get(\"offset\")));\n if (_this.renkan.options.hide_nodes){\n _this.hiddenNodes = (view.get(\"hidden_nodes\") || []).concat();\n _this.hideNodes(); \n }\n }\n });\n this.$.find(\".Rk-ShowHiddenNodes\").mouseenter( function() {\n _this.showNodes(true);\n _this.$.find(\".Rk-ShowHiddenNodes\").mouseleave( function() {\n _this.hideNodes();\n });\n });\n this.$.find(\".Rk-ShowHiddenNodes\").click( function() {\n _this.showNodes(false);\n _this.$.find(\".Rk-ShowHiddenNodes\").off( \"mouseleave\" );\n });\n if(this.renkan.project.get(\"views\").length > 0 && this.renkan.options.save_view){\n this.$.find(\".Rk-ZoomSetSaved\").show();\n }\n this.$.find(\".Rk-CurrentUser\").mouseenter(\n function() { _this.$.find(\".Rk-UserList\").slideDown(); }\n );\n this.$.find(\".Rk-Users\").mouseleave(\n function() { _this.$.find(\".Rk-UserList\").slideUp(); }\n );\n bindClick(\".Rk-FullScreen-Button\", \"fullScreen\");\n bindClick(\".Rk-AddNode-Button\", \"addNodeBtn\");\n bindClick(\".Rk-AddEdge-Button\", \"addEdgeBtn\");\n bindClick(\".Rk-Save-Button\", \"save\");\n bindClick(\".Rk-Open-Button\", \"open\");\n bindClick(\".Rk-Export-Button\", \"exportProject\");\n this.$.find(\".Rk-Bookmarklet-Button\")\n /*jshint scripturl:true */\n .attr(\"href\",\"javascript:\" + Utils._BOOKMARKLET_CODE(_renkan))\n .click(function(){\n _this.notif_$\n .text(_renkan.translate(\"Drag this button to your bookmark bar. When on a third-party website, click it to enable drag-and-drop from the website to Renkan.\"))\n .fadeIn()\n .delay(5000)\n .fadeOut();\n return false;\n });\n this.$.find(\".Rk-TopBar-Button\").mouseover(function() {\n $(this).find(\".Rk-TopBar-Tooltip\").show();\n }).mouseout(function() {\n $(this).find(\".Rk-TopBar-Tooltip\").hide();\n });\n bindClick(\".Rk-Fold-Bins\", \"foldBins\");\n\n paper.view.onResize = function(_event) {\n var _ratio,\n newWidth = _event.width,\n newHeight = _event.height;\n\n if (_this.minimap) {\n _this.minimap.topleft = paper.view.bounds.bottomRight.subtract(_this.minimap.size);\n _this.minimap.rectangle.fitBounds(_this.minimap.topleft.subtract([2,2]), _this.minimap.size.add([4,4]));\n _this.minimap.cliprectangle.fitBounds(_this.minimap.topleft, _this.minimap.size);\n }\n\n var ratioH = newHeight/(newHeight-_event.delta.height),\n ratioW = newWidth/(newWidth-_event.delta.width);\n if (newHeight < newWidth) {\n _ratio = ratioH;\n } else {\n _ratio = ratioW;\n }\n\n _this.resizeZoom(ratioW, ratioH, _ratio);\n\n _this.redraw();\n\n };\n\n var _thRedraw = _.throttle(function() {\n _this.redraw();\n },50);\n\n this.addRepresentations(\"Node\", this.renkan.project.get(\"nodes\"));\n this.addRepresentations(\"Edge\", this.renkan.project.get(\"edges\"));\n this.renkan.project.on(\"change:title\", function() {\n _this.$.find(\".Rk-PadTitle\").val(_renkan.project.get(\"title\"));\n });\n\n this.$.find(\".Rk-PadTitle\").on(\"keyup input paste\", function() {\n _renkan.project.set({\"title\": $(this).val()});\n });\n\n var _thRedrawUsers = _.throttle(function() {\n _this.redrawUsers();\n }, 100);\n\n _thRedrawUsers();\n\n // register model events\n this.renkan.project.on(\"change:saveStatus\", function(){\n switch (_this.renkan.project.get(\"saveStatus\")) {\n case 0: //clean\n _this.$.find(\".Rk-Save-Button\").removeClass(\"to-save\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saving\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"saved\");\n break;\n case 1: //dirty\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saved\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saving\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"to-save\");\n break;\n case 2: //saving\n _this.$.find(\".Rk-Save-Button\").removeClass(\"saved\");\n _this.$.find(\".Rk-Save-Button\").removeClass(\"to-save\");\n _this.$.find(\".Rk-Save-Button\").addClass(\"saving\");\n break;\n }\n });\n\n this.renkan.project.on(\"change:loadingStatus\", function(){\n if (_this.renkan.project.get(\"loadingStatus\")){\n var animate = _this.$.find(\".loader\").addClass(\"run\");\n var timer = setTimeout(function(){\n _this.$.find(\".loader\").hide(250);\n }, 3000);\n }\n else{\n Backbone.history.start();\n }\n });\n\n this.renkan.project.on(\"add:users remove:users\", _thRedrawUsers);\n\n this.renkan.project.on(\"add:views remove:views\", function(_node) {\n if(_this.renkan.project.get('views').length > 0) {\n _this.$.find(\".Rk-ZoomSetSaved\").show();\n }\n else {\n _this.$.find(\".Rk-ZoomSetSaved\").hide();\n }\n });\n\n this.renkan.project.on(\"add:nodes\", function(_node) {\n _this.addRepresentation(\"Node\", _node);\n if (!_this.renkan.project.get(\"loadingStatus\")){\n _thRedraw();\n }\n });\n this.renkan.project.on(\"add:edges\", function(_edge) {\n _this.addRepresentation(\"Edge\", _edge);\n if (!_this.renkan.project.get(\"loadingStatus\")){\n _thRedraw();\n }\n });\n this.renkan.project.on(\"change:title\", function(_model, _title) {\n var el = _this.$.find(\".Rk-PadTitle\");\n if (el.is(\"input\")) {\n if (el.val() !== _title) {\n el.val(_title);\n }\n } else {\n el.text(_title);\n }\n });\n \n //register router events\n this.renkan.router.on(\"router\", function(_params){\n _this.parameters(_params);\n });\n\n if (_renkan.options.size_bug_fix) {\n var _delay = (\n typeof _renkan.options.size_bug_fix === \"number\" ?\n _renkan.options.size_bug_fix\n : 500\n );\n window.setTimeout(\n function() {\n _this.fixSize();\n },\n _delay\n );\n }\n\n if (_renkan.options.force_resize) {\n $(window).resize(function() {\n _this.autoScale();\n });\n }\n\n if (_renkan.options.show_user_list && _renkan.options.user_color_editable) {\n var $cpwrapper = this.$.find(\".Rk-Users .Rk-Edit-ColorPicker-Wrapper\"),\n $cplist = this.$.find(\".Rk-Users .Rk-Edit-ColorPicker\");\n\n $cpwrapper.hover(\n function(_e) {\n if (_this.isEditable()) {\n _e.preventDefault();\n $cplist.show();\n }\n },\n function(_e) {\n _e.preventDefault();\n $cplist.hide();\n }\n );\n\n $cplist.find(\"li\").mouseenter(\n function(_e) {\n if (_this.isEditable()) {\n _e.preventDefault();\n _this.$.find(\".Rk-CurrentUser-Color\").css(\"background\", $(this).attr(\"data-color\"));\n }\n }\n );\n }\n\n if (_renkan.options.show_search_field) {\n\n var lastval = '';\n\n this.$.find(\".Rk-GraphSearch-Field\").on(\"keyup change paste input\", function() {\n var $this = $(this),\n val = $this.val();\n if (val === lastval) {\n return;\n }\n lastval = val;\n if (val.length < 2) {\n _renkan.project.get(\"nodes\").each(function(n) {\n _this.getRepresentationByModel(n).unhighlight();\n });\n } else {\n var rxs = Utils.regexpFromTextOrArray(val);\n _renkan.project.get(\"nodes\").each(function(n) {\n if (rxs.test(n.get(\"title\")) || rxs.test(n.get(\"description\"))) {\n _this.getRepresentationByModel(n).highlight(rxs);\n } else {\n _this.getRepresentationByModel(n).unhighlight();\n }\n });\n }\n });\n }\n\n this.redraw();\n\n window.setInterval(function() {\n var _now = new Date().valueOf();\n _this.delete_list.forEach(function(d) {\n if (_now >= d.time) {\n var el = _renkan.project.get(\"nodes\").findWhere({\"delete_scheduled\":d.id});\n if (el) {\n project.removeNode(el);\n }\n el = _renkan.project.get(\"edges\").findWhere({\"delete_scheduled\":d.id});\n if (el) {\n project.removeEdge(el);\n }\n }\n });\n _this.delete_list = _this.delete_list.filter(function(d) {\n return _renkan.project.get(\"nodes\").findWhere({\"delete_scheduled\":d.id}) || _renkan.project.get(\"edges\").findWhere({\"delete_scheduled\":d.id});\n });\n }, 500);\n\n if (this.minimap) {\n window.setInterval(function() {\n _this.rescaleMinimap();\n }, 2000);\n }\n\n };\n\n _(Scene.prototype).extend({\n fixSize: function() {\n if( this.renkan.options.default_view && this.renkan.project.get(\"views\").length > 0) {\n var view = this.renkan.project.get(\"views\").last();\n this.setScale(view.get(\"zoom_level\"), new paper.Point(view.get(\"offset\")));\n }\n else{\n this.autoScale();\n }\n },\n drawSector: function(_repr, _inR, _outR, _startAngle, _endAngle, _padding, _imgname, _caption) {\n var _options = this.renkan.options,\n _startRads = _startAngle * Math.PI / 180,\n _endRads = _endAngle * Math.PI / 180,\n _img = this.icon_cache[_imgname],\n _startdx = - Math.sin(_startRads),\n _startdy = Math.cos(_startRads),\n _startXIn = Math.cos(_startRads) * _inR + _padding * _startdx,\n _startYIn = Math.sin(_startRads) * _inR + _padding * _startdy,\n _startXOut = Math.cos(_startRads) * _outR + _padding * _startdx,\n _startYOut = Math.sin(_startRads) * _outR + _padding * _startdy,\n _enddx = - Math.sin(_endRads),\n _enddy = Math.cos(_endRads),\n _endXIn = Math.cos(_endRads) * _inR - _padding * _enddx,\n _endYIn = Math.sin(_endRads) * _inR - _padding * _enddy,\n _endXOut = Math.cos(_endRads) * _outR - _padding * _enddx,\n _endYOut = Math.sin(_endRads) * _outR - _padding * _enddy,\n _centerR = (_inR + _outR) / 2,\n _centerRads = (_startRads + _endRads) / 2,\n _centerX = Math.cos(_centerRads) * _centerR,\n _centerY = Math.sin(_centerRads) * _centerR,\n _centerXIn = Math.cos(_centerRads) * _inR,\n _centerXOut = Math.cos(_centerRads) * _outR,\n _centerYIn = Math.sin(_centerRads) * _inR,\n _centerYOut = Math.sin(_centerRads) * _outR,\n _textX = Math.cos(_centerRads) * (_outR + 3),\n _textY = Math.sin(_centerRads) * (_outR + _options.buttons_label_font_size) + _options.buttons_label_font_size / 2;\n this.buttons_layer.activate();\n var _path = new paper.Path();\n _path.add([_startXIn, _startYIn]);\n _path.arcTo([_centerXIn, _centerYIn], [_endXIn, _endYIn]);\n _path.lineTo([_endXOut, _endYOut]);\n _path.arcTo([_centerXOut, _centerYOut], [_startXOut, _startYOut]);\n _path.fillColor = _options.buttons_background;\n _path.opacity = 0.5;\n _path.closed = true;\n _path.__representation = _repr;\n var _text = new paper.PointText(_textX,_textY);\n _text.characterStyle = {\n fontSize: _options.buttons_label_font_size,\n fillColor: _options.buttons_label_color\n };\n if (_textX > 2) {\n _text.paragraphStyle.justification = 'left';\n } else if (_textX < -2) {\n _text.paragraphStyle.justification = 'right';\n } else {\n _text.paragraphStyle.justification = 'center';\n }\n _text.visible = false;\n var _visible = false,\n _restPos = new paper.Point(-200, -200),\n _grp = new paper.Group([_path, _text]),\n //_grp = new paper.Group([_path]),\n _delta = _grp.position,\n _imgdelta = new paper.Point([_centerX, _centerY]),\n _currentPos = new paper.Point(0,0);\n _text.content = _caption;\n // set group pivot to not depend on text visibility that changes the group bounding box.\n _grp.pivot = _grp.bounds.center;\n _grp.visible = false;\n _grp.position = _restPos;\n var _res = {\n show: function() {\n _visible = true;\n _grp.position = _currentPos.add(_delta);\n _grp.visible = true;\n },\n moveTo: function(_point) {\n _currentPos = _point;\n if (_visible) {\n _grp.position = _point.add(_delta);\n }\n },\n hide: function() {\n _visible = false;\n _grp.visible = false;\n _grp.position = _restPos;\n },\n select: function() {\n _path.opacity = 0.8;\n _text.visible = true;\n },\n unselect: function() {\n _path.opacity = 0.5;\n _text.visible = false;\n },\n destroy: function() {\n _grp.remove();\n }\n };\n var showImage = function() {\n var _raster = new paper.Raster(_img);\n _raster.position = _imgdelta.add(_grp.position).subtract(_delta);\n _raster.locked = true; // Disable mouse events on icon\n _grp.addChild(_raster);\n };\n if (_img.width) {\n showImage();\n } else {\n $(_img).on(\"load\",showImage);\n }\n\n return _res;\n },\n addToBundles: function(_edgeRepr) {\n var _bundle = _(this.bundles).find(function(_bundle) {\n return (\n ( _bundle.from === _edgeRepr.from_representation && _bundle.to === _edgeRepr.to_representation ) ||\n ( _bundle.from === _edgeRepr.to_representation && _bundle.to === _edgeRepr.from_representation )\n );\n });\n if (typeof _bundle !== \"undefined\") {\n _bundle.edges.push(_edgeRepr);\n } else {\n _bundle = {\n from: _edgeRepr.from_representation,\n to: _edgeRepr.to_representation,\n edges: [ _edgeRepr ],\n getPosition: function(_er) {\n var _dir = (_er.from_representation === this.from) ? 1 : -1;\n return _dir * ( _(this.edges).indexOf(_er) - (this.edges.length - 1) / 2 );\n }\n };\n this.bundles.push(_bundle);\n }\n return _bundle;\n },\n isEditable: function() {\n return (this.renkan.options.editor_mode && !this.renkan.read_only);\n },\n onStatusChange: function() {\n var savebtn = this.$.find(\".Rk-Save-Button\"),\n tip = savebtn.find(\".Rk-TopBar-Tooltip-Contents\");\n if (this.renkan.read_only) {\n savebtn.removeClass(\"disabled Rk-Save-Online\").addClass(\"Rk-Save-ReadOnly\");\n tip.text(this.renkan.translate(\"Connection lost\"));\n } else {\n if (this.renkan.options.manual_save) {\n savebtn.removeClass(\"Rk-Save-ReadOnly Rk-Save-Online\");\n tip.text(this.renkan.translate(\"Save Project\"));\n } else {\n savebtn.removeClass(\"disabled Rk-Save-ReadOnly\").addClass(\"Rk-Save-Online\");\n tip.text(this.renkan.translate(\"Auto-save enabled\"));\n }\n }\n this.redrawUsers();\n },\n setScale: function(_newScale, _offset) {\n if ((_newScale/this.initialScale) > Utils._MIN_SCALE && (_newScale/this.initialScale) < Utils._MAX_SCALE) {\n this.scale = _newScale;\n if (_offset) {\n this.offset = _offset;\n }\n this.redraw();\n }\n },\n autoScale: function(force_view) {\n var nodes = this.renkan.project.get(\"nodes\");\n if (nodes.length > 1) {\n var _xx = nodes.map(function(_node) { return _node.get(\"position\").x; }),\n _yy = nodes.map(function(_node) { return _node.get(\"position\").y; }),\n _minx = Math.min.apply(Math, _xx),\n _miny = Math.min.apply(Math, _yy),\n _maxx = Math.max.apply(Math, _xx),\n _maxy = Math.max.apply(Math, _yy);\n var _scale = Math.min( (paper.view.size.width - 2 * this.renkan.options.autoscale_padding) / (_maxx - _minx), (paper.view.size.height - 2 * this.renkan.options.autoscale_padding) / (_maxy - _miny));\n this.initialScale = _scale;\n // Override calculated scale if asked\n if((typeof force_view !== \"undefined\") && parseFloat(force_view.zoom_level)>0 && parseFloat(force_view.offset.x)>0 && parseFloat(force_view.offset.y)>0){\n this.setScale(parseFloat(force_view.zoom_level), new paper.Point(parseFloat(force_view.offset.x), parseFloat(force_view.offset.y)));\n }\n else{\n this.setScale(_scale, paper.view.center.subtract(new paper.Point([(_maxx + _minx) / 2, (_maxy + _miny) / 2]).multiply(_scale)));\n }\n }\n if (nodes.length === 1) {\n this.setScale(1, paper.view.center.subtract(new paper.Point([nodes.at(0).get(\"position\").x, nodes.at(0).get(\"position\").y])));\n }\n },\n redrawMiniframe: function() {\n var topleft = this.toMinimapCoords(this.toModelCoords(new paper.Point([0,0]))),\n bottomright = this.toMinimapCoords(this.toModelCoords(paper.view.bounds.bottomRight));\n this.minimap.miniframe.fitBounds(topleft, bottomright);\n },\n rescaleMinimap: function() {\n var nodes = this.renkan.project.get(\"nodes\");\n if (nodes.length > 1) {\n var _xx = nodes.map(function(_node) { return _node.get(\"position\").x; }),\n _yy = nodes.map(function(_node) { return _node.get(\"position\").y; }),\n _minx = Math.min.apply(Math, _xx),\n _miny = Math.min.apply(Math, _yy),\n _maxx = Math.max.apply(Math, _xx),\n _maxy = Math.max.apply(Math, _yy);\n var _scale = Math.min(\n this.scale * 0.8 * this.renkan.options.minimap_width / paper.view.bounds.width,\n this.scale * 0.8 * this.renkan.options.minimap_height / paper.view.bounds.height,\n ( this.renkan.options.minimap_width - 2 * this.renkan.options.minimap_padding ) / (_maxx - _minx),\n ( this.renkan.options.minimap_height - 2 * this.renkan.options.minimap_padding ) / (_maxy - _miny)\n );\n this.minimap.offset = this.minimap.size.divide(2).subtract(new paper.Point([(_maxx + _minx) / 2, (_maxy + _miny) / 2]).multiply(_scale));\n this.minimap.scale = _scale;\n }\n if (nodes.length === 1) {\n this.minimap.scale = 0.1;\n this.minimap.offset = this.minimap.size.divide(2).subtract(new paper.Point([nodes.at(0).get(\"position\").x, nodes.at(0).get(\"position\").y]).multiply(this.minimap.scale));\n }\n this.redraw();\n },\n toPaperCoords: function(_point) {\n return _point.multiply(this.scale).add(this.offset);\n },\n toMinimapCoords: function(_point) {\n return _point.multiply(this.minimap.scale).add(this.minimap.offset).add(this.minimap.topleft);\n },\n toModelCoords: function(_point) {\n return _point.subtract(this.offset).divide(this.scale);\n },\n addRepresentation: function(_type, _model) {\n var RendererType = requtils.getRenderer()[_type];\n var _repr = new RendererType(this, _model);\n this.representations.push(_repr);\n return _repr;\n },\n addRepresentations: function(_type, _collection) {\n var _this = this;\n _collection.forEach(function(_model) {\n _this.addRepresentation(_type, _model);\n });\n },\n userTemplate: _.template(\n '
                                                  • ;\"><%=name%>
                                                  • '\n ),\n redrawUsers: function() {\n if (!this.renkan.options.show_user_list) {\n return;\n }\n var allUsers = [].concat((this.renkan.project.current_user_list || {}).models || [], (this.renkan.project.get(\"users\") || {}).models || []),\n ulistHtml = '',\n $userpanel = this.$.find(\".Rk-Users\"),\n $name = $userpanel.find(\".Rk-CurrentUser-Name\"),\n $cpitems = $userpanel.find(\".Rk-Edit-ColorPicker li\"),\n $colorsquare = $userpanel.find(\".Rk-CurrentUser-Color\"),\n _this = this;\n $name.off(\"click\").text(this.renkan.translate(\"\"));\n $cpitems.off(\"mouseleave click\");\n allUsers.forEach(function(_user) {\n if (_user.get(\"_id\") === _this.renkan.current_user) {\n $name.text(_user.get(\"title\"));\n $colorsquare.css(\"background\", _user.get(\"color\"));\n if (_this.isEditable()) {\n\n if (_this.renkan.options.user_name_editable) {\n $name.click(function() {\n var $this = $(this),\n $input = $('').val(_user.get(\"title\")).blur(function() {\n _user.set(\"title\", $(this).val());\n _this.redrawUsers();\n _this.redraw();\n });\n $this.empty().html($input);\n $input.select();\n });\n }\n\n if (_this.renkan.options.user_color_editable) {\n $cpitems.click(\n function(_e) {\n _e.preventDefault();\n if (_this.isEditable()) {\n _user.set(\"color\", $(this).attr(\"data-color\"));\n }\n $(this).parent().hide();\n }\n ).mouseleave(function() {\n $colorsquare.css(\"background\", _user.get(\"color\"));\n });\n }\n }\n\n } else {\n ulistHtml += _this.userTemplate({\n name: _user.get(\"title\"),\n background: _user.get(\"color\")\n });\n }\n });\n $userpanel.find(\".Rk-UserList\").html(ulistHtml);\n },\n removeRepresentation: function(_representation) {\n _representation.destroy();\n this.representations = _.reject(this.representations,\n function(_repr) {\n return _repr === _representation;\n }\n );\n },\n getRepresentationByModel: function(_model) {\n if (!_model) {\n return undefined;\n }\n return _.find(this.representations, function(_repr) {\n return _repr.model === _model;\n });\n },\n removeRepresentationsOfType: function(_type) {\n var _representations = _.filter(this.representations,function(_repr) {\n return _repr.type === _type;\n }),\n _this = this;\n _.each(_representations, function(_repr) {\n _this.removeRepresentation(_repr);\n });\n },\n highlightModel: function(_model) {\n var _repr = this.getRepresentationByModel(_model);\n if (_repr) {\n _repr.highlight();\n }\n },\n unhighlightAll: function(_model) {\n _.each(this.representations, function(_repr) {\n _repr.unhighlight();\n });\n },\n unselectAll: function(_model) {\n _.each(this.representations, function(_repr) {\n _repr.unselect();\n });\n },\n redraw: function() {\n var _this = this;\n if(! this.redrawActive ) {\n return;\n }\n _.each(this.representations, function(_representation) {\n _representation.redraw({ dontRedrawEdges:true });\n });\n if (this.minimap) {\n this.redrawMiniframe();\n }\n paper.view.draw();\n },\n addTempEdge: function(_from, _point) {\n var _tmpEdge = this.addRepresentation(\"TempEdge\",null);\n _tmpEdge.end_pos = _point;\n _tmpEdge.from_representation = _from;\n _tmpEdge.redraw();\n this.click_target = _tmpEdge;\n },\n addHiddenNode: function(_model){\n this.hideNode(_model);\n this.hiddenNodes.push(_model.id);\n },\n hideNode: function(_model){\n var _this = this;\n if (typeof _this.getRepresentationByModel(_model) !== 'undefined'){\n _this.getRepresentationByModel(_model).hide();\n }\n },\n hideNodes: function(){\n var _this = this;\n this.hiddenNodes.forEach(function(_id, index){\n var node = _this.renkan.project.get(\"nodes\").get(_id);\n if (typeof node !== 'undefined'){\n return _this.hideNode(_this.renkan.project.get(\"nodes\").get(_id));\n }else{\n _this.hiddenNodes.splice(index, 1);\n }\n });\n paper.view.draw();\n },\n showNodes: function(ghost){\n var _this = this;\n var i = 0;\n this.hiddenNodes.forEach(function(_id){\n i++;\n _this.getRepresentationByModel(_this.renkan.project.get(\"nodes\").get(_id)).show(ghost);\n });\n if (!ghost){\n this.hiddenNodes = [];\n }\n paper.view.draw();\n },\n findTarget: function(_hitResult) {\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n var _newTarget = _hitResult.item.__representation;\n if (this.selected_target !== _hitResult.item.__representation) {\n if (this.selected_target) {\n this.selected_target.unselect(_newTarget);\n }\n _newTarget.select(this.selected_target);\n this.selected_target = _newTarget;\n }\n } else {\n if (this.selected_target) {\n this.selected_target.unselect();\n }\n this.selected_target = null;\n }\n },\n paperShift: function(_delta) {\n this.offset = this.offset.add(_delta);\n this.redraw();\n },\n onMouseMove: function(_event) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]),\n _delta = _point.subtract(this.last_point);\n this.last_point = _point;\n if (!this.is_dragging && this.mouse_down && _delta.length > Utils._MIN_DRAG_DISTANCE) {\n this.is_dragging = true;\n }\n var _hitResult = paper.project.hitTest(_point);\n if (this.is_dragging) {\n if (this.click_target && typeof this.click_target.paperShift === \"function\") {\n this.click_target.paperShift(_delta);\n } else {\n this.paperShift(_delta);\n }\n } else {\n this.findTarget(_hitResult);\n }\n paper.view.draw();\n },\n onMouseDown: function(_event, _isTouch) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n this.last_point = _point;\n this.mouse_down = true;\n if (!this.click_target || this.click_target.type !== \"Temp-edge\") {\n this.removeRepresentationsOfType(\"editor\");\n this.is_dragging = false;\n var _hitResult = paper.project.hitTest(_point);\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n this.click_target = _hitResult.item.__representation;\n this.click_target.mousedown(_event, _isTouch);\n } else {\n this.click_target = null;\n if (this.isEditable() && this.click_mode === Utils._CLICKMODE_ADDNODE) {\n var _coords = this.toModelCoords(_point),\n _data = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n var _node = this.renkan.project.addNode(_data);\n this.getRepresentationByModel(_node).openEditor();\n }\n }\n }\n if (this.click_mode) {\n if (this.isEditable() && this.click_mode === Utils._CLICKMODE_STARTEDGE && this.click_target && this.click_target.type === \"Node\") {\n this.removeRepresentationsOfType(\"editor\");\n this.addTempEdge(this.click_target, _point);\n this.click_mode = Utils._CLICKMODE_ENDEDGE;\n this.notif_$.fadeOut(function() {\n $(this).html(this.renkan.translate(\"Click on a second node to complete the edge\")).fadeIn();\n });\n } else {\n this.notif_$.hide();\n this.click_mode = false;\n }\n }\n paper.view.draw();\n },\n onMouseUp: function(_event, _isTouch) {\n this.mouse_down = false;\n if (this.click_target) {\n var _off = this.canvas_$.offset();\n this.click_target.mouseup(\n {\n point: new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ])\n },\n _isTouch\n );\n } else {\n this.click_target = null;\n this.is_dragging = false;\n if (_isTouch) {\n this.unselectAll();\n }\n }\n paper.view.draw();\n },\n onScroll: function(_event, _scrolldelta) {\n this.totalScroll += _scrolldelta;\n if (Math.abs(this.totalScroll) >= 1) {\n var _off = this.canvas_$.offset(),\n _delta = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]).subtract(this.offset).multiply( Math.SQRT2 - 1 );\n if (this.totalScroll > 0) {\n this.setScale( this.scale * Math.SQRT2, this.offset.subtract(_delta) );\n } else {\n this.setScale( this.scale * Math.SQRT1_2, this.offset.add(_delta.divide(Math.SQRT2)));\n }\n this.totalScroll = 0;\n }\n },\n onDoubleClick: function(_event) {\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]);\n var _hitResult = paper.project.hitTest(_point);\n\n if (!this.isEditable()) {\n if (_hitResult && typeof _hitResult.item.__representation !== \"undefined\") {\n if (_hitResult.item.__representation.model.get('uri')){\n window.open(_hitResult.item.__representation.model.get('uri'), '_blank');\n }\n }\n return;\n }\n if (this.isEditable() && (!_hitResult || typeof _hitResult.item.__representation === \"undefined\")) {\n var _coords = this.toModelCoords(_point),\n _data = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n },\n _node = this.renkan.project.addNode(_data);\n this.getRepresentationByModel(_node).openEditor();\n }\n paper.view.draw();\n },\n defaultDropHandler: function(_data) {\n var newNode = {};\n var snippet = \"\";\n switch(_data[\"text/x-iri-specific-site\"]) {\n case \"twitter\":\n snippet = $('
                                                    ').html(_data[\"text/x-iri-selected-html\"]);\n var tweetdiv = snippet.find(\".tweet\");\n newNode.title = this.renkan.translate(\"Tweet by \") + tweetdiv.attr(\"data-name\");\n newNode.uri = \"http://twitter.com/\" + tweetdiv.attr(\"data-screen-name\") + \"/status/\" + tweetdiv.attr(\"data-tweet-id\");\n newNode.image = tweetdiv.find(\".avatar\").attr(\"src\");\n newNode.description = tweetdiv.find(\".js-tweet-text:first\").text();\n break;\n case \"google\":\n snippet = $('
                                                    ').html(_data[\"text/x-iri-selected-html\"]);\n newNode.title = snippet.find(\"h3:first\").text().trim();\n newNode.uri = snippet.find(\"h3 a\").attr(\"href\");\n newNode.description = snippet.find(\".st:first\").text().trim();\n break;\n default:\n if (_data[\"text/x-iri-source-uri\"]) {\n newNode.uri = _data[\"text/x-iri-source-uri\"];\n }\n }\n if (_data[\"text/plain\"] || _data[\"text/x-iri-selected-text\"]) {\n newNode.description = (_data[\"text/plain\"] || _data[\"text/x-iri-selected-text\"]).replace(/[\\s\\n]+/gm,' ').trim();\n }\n if (_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]) {\n snippet = $('
                                                    ').html(_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]);\n var _svgimgs = snippet.find(\"image\");\n if (_svgimgs.length) {\n newNode.image = _svgimgs.attr(\"xlink:href\");\n }\n var _svgpaths = snippet.find(\"path\");\n if (_svgpaths.length) {\n newNode.clipPath = _svgpaths.attr(\"d\");\n }\n var _imgs = snippet.find(\"img\");\n if (_imgs.length) {\n newNode.image = _imgs[0].src;\n }\n var _as = snippet.find(\"a\");\n if (_as.length) {\n newNode.uri = _as[0].href;\n }\n newNode.title = snippet.find(\"[title]\").attr(\"title\") || newNode.title;\n newNode.description = snippet.text().replace(/[\\s\\n]+/gm,' ').trim();\n }\n if (_data[\"text/uri-list\"]) {\n newNode.uri = _data[\"text/uri-list\"];\n }\n if (_data[\"text/x-moz-url\"] && !newNode.title) {\n newNode.title = (_data[\"text/x-moz-url\"].split(\"\\n\")[1] || \"\").trim();\n if (newNode.title === newNode.uri) {\n newNode.title = false;\n }\n }\n if (_data[\"text/x-iri-source-title\"] && !newNode.title) {\n newNode.title = _data[\"text/x-iri-source-title\"];\n }\n if (_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]) {\n snippet = $('
                                                    ').html(_data[\"text/html\"] || _data[\"text/x-iri-selected-html\"]);\n newNode.image = snippet.find(\"[data-image]\").attr(\"data-image\") || newNode.image;\n newNode.uri = snippet.find(\"[data-uri]\").attr(\"data-uri\") || newNode.uri;\n newNode.title = snippet.find(\"[data-title]\").attr(\"data-title\") || newNode.title;\n newNode.description = snippet.find(\"[data-description]\").attr(\"data-description\") || newNode.description;\n newNode.clipPath = snippet.find(\"[data-clip-path]\").attr(\"data-clip-path\") || newNode.clipPath;\n }\n\n if (!newNode.title) {\n newNode.title = this.renkan.translate(\"Dragged resource\");\n }\n var fields = [\"title\", \"description\", \"uri\", \"image\"];\n for (var i = 0; i < fields.length; i++) {\n var f = fields[i];\n if (_data[\"text/x-iri-\" + f] || _data[f]) {\n newNode[f] = _data[\"text/x-iri-\" + f] || _data[f];\n }\n if (newNode[f] === \"none\" || newNode[f] === \"null\") {\n newNode[f] = undefined;\n }\n }\n\n if(typeof this.renkan.options.drop_enhancer === \"function\"){\n newNode = this.renkan.options.drop_enhancer(newNode, _data);\n }\n\n return newNode;\n\n },\n dropData: function(_data, _event) {\n if (!this.isEditable()) {\n return;\n }\n if (_data[\"text/json\"] || _data[\"application/json\"]) {\n try {\n var jsondata = JSON.parse(_data[\"text/json\"] || _data[\"application/json\"]);\n _.extend(_data,jsondata);\n }\n catch(e) {}\n }\n\n var newNode = (typeof this.renkan.options.drop_handler === \"undefined\")?this.defaultDropHandler(_data):this.renkan.options.drop_handler(_data);\n\n var _off = this.canvas_$.offset(),\n _point = new paper.Point([\n _event.pageX - _off.left,\n _event.pageY - _off.top\n ]),\n _coords = this.toModelCoords(_point),\n _nodedata = {\n id: Utils.getUID('node'),\n created_by: this.renkan.current_user,\n uri: newNode.uri || \"\",\n title: newNode.title || \"\",\n description: newNode.description || \"\",\n image: newNode.image || \"\",\n color: newNode.color || undefined,\n clip_path: newNode.clipPath || undefined,\n position: {\n x: _coords.x,\n y: _coords.y\n }\n };\n var _node = this.renkan.project.addNode(_nodedata),\n _repr = this.getRepresentationByModel(_node);\n if (_event.type === \"drop\") {\n _repr.openEditor();\n }\n },\n fullScreen: function() {\n var _isFull = document.fullScreen || document.mozFullScreen || document.webkitIsFullScreen,\n _el = this.renkan.$[0],\n _requestMethods = [\"requestFullScreen\",\"mozRequestFullScreen\",\"webkitRequestFullScreen\"],\n _cancelMethods = [\"cancelFullScreen\",\"mozCancelFullScreen\",\"webkitCancelFullScreen\"],\n i;\n if (_isFull) {\n for (i = 0; i < _cancelMethods.length; i++) {\n if (typeof document[_cancelMethods[i]] === \"function\") {\n document[_cancelMethods[i]]();\n break;\n }\n }\n var widthAft = this.$.width();\n var heightAft = this.$.height();\n\n if (this.renkan.options.show_top_bar) {\n heightAft -= this.$.find(\".Rk-TopBar\").height();\n }\n if (this.renkan.options.show_bins && (this.renkan.$.find(\".Rk-Bins\").position().left > 0)) {\n widthAft -= this.renkan.$.find(\".Rk-Bins\").width();\n }\n\n paper.view.viewSize = new paper.Size([widthAft, heightAft]);\n\n } else {\n for (i = 0; i < _requestMethods.length; i++) {\n if (typeof _el[_requestMethods[i]] === \"function\") {\n _el[_requestMethods[i]]();\n break;\n }\n }\n this.redraw();\n }\n },\n zoomOut: function() {\n var _newScale = this.scale * Math.SQRT1_2,\n _offset = new paper.Point([\n this.canvas_$.width(),\n this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - Math.SQRT1_2 ) ).add(this.offset.multiply( Math.SQRT1_2 ));\n this.setScale( _newScale, _offset );\n },\n zoomIn: function() {\n var _newScale = this.scale * Math.SQRT2,\n _offset = new paper.Point([\n this.canvas_$.width(),\n this.canvas_$.height()\n ]).multiply( 0.5 * ( 1 - Math.SQRT2 ) ).add(this.offset.multiply( Math.SQRT2 ));\n this.setScale( _newScale, _offset );\n },\n resizeZoom: function(_scaleWidth, _scaleHeight, _ratio) {\n var _newScale = this.scale * _ratio,\n _offset = new paper.Point([\n (this.offset.x * _scaleWidth),\n (this.offset.y * _scaleHeight)\n ]);\n this.setScale( _newScale, _offset );\n },\n addNodeBtn: function() {\n if (this.click_mode === Utils._CLICKMODE_ADDNODE) {\n this.click_mode = false;\n this.notif_$.hide();\n } else {\n this.click_mode = Utils._CLICKMODE_ADDNODE;\n this.notif_$.text(this.renkan.translate(\"Click on the background canvas to add a node\")).fadeIn();\n }\n return false;\n },\n addEdgeBtn: function() {\n if (this.click_mode === Utils._CLICKMODE_STARTEDGE || this.click_mode === Utils._CLICKMODE_ENDEDGE) {\n this.click_mode = false;\n this.notif_$.hide();\n } else {\n this.click_mode = Utils._CLICKMODE_STARTEDGE;\n this.notif_$.text(this.renkan.translate(\"Click on a first node to start the edge\")).fadeIn();\n }\n return false;\n },\n exportProject: function() {\n var projectJSON = this.renkan.project.toJSON(),\n downloadLink = document.createElement(\"a\"),\n projectId = projectJSON.id,\n fileNameToSaveAs = projectId + \".json\";\n\n // clean ids\n delete projectJSON.id;\n delete projectJSON._id;\n delete projectJSON.space_id;\n\n var objId,\n idsMap = {},\n hiddenNodes;\n\n _.each(projectJSON.nodes, function(e,i,l) {\n objId = e.id || e._id;\n delete e._id;\n delete e.id;\n idsMap[objId] = e['@id'] = Utils.getUUID4();\n });\n _.each(projectJSON.edges, function(e,i,l) {\n delete e._id;\n delete e.id;\n e.to = idsMap[e.to];\n e.from = idsMap[e.from];\n });\n _.each(projectJSON.views, function(e,i,l) {\n delete e._id;\n delete e.id;\n\n if(e.hidden_nodes) {\n hiddenNodes = e.hidden_nodes;\n e.hidden_nodes = [];\n _.each(hiddenNodes, function(h,j) {\n e.hidden_nodes.push(idsMap[h]);\n });\n }\n });\n projectJSON.users = [];\n\n var projectJSONStr = JSON.stringify(projectJSON, null, 2);\n var blob = new Blob([projectJSONStr], {type: \"application/json;charset=utf-8\"});\n filesaver(blob,fileNameToSaveAs);\n\n },\n parameters: function(_params){\n if (typeof _params.idnode !== 'undefined'){\n this.unhighlightAll();\n this.highlightModel(this.renkan.project.get(\"nodes\").get(_params.idnode)); \n }\n },\n foldBins: function() {\n var foldBinsButton = this.$.find(\".Rk-Fold-Bins\"),\n bins = this.renkan.$.find(\".Rk-Bins\");\n var _this = this,\n sizeBef = _this.canvas_$.width(),\n sizeAft;\n if (bins.position().left < 0) {\n bins.animate({left: 0},250);\n this.$.animate({left: 300},250,function() {\n var w = _this.$.width();\n paper.view.viewSize = new paper.Size([w, _this.canvas_$.height()]);\n });\n if ((sizeBef - bins.width()) < bins.height()){\n sizeAft = sizeBef;\n } else {\n sizeAft = sizeBef - bins.width();\n }\n foldBinsButton.html(\"«\");\n } else {\n bins.animate({left: -300},250);\n this.$.animate({left: 0},250,function() {\n var w = _this.$.width();\n paper.view.viewSize = new paper.Size([w, _this.canvas_$.height()]);\n });\n sizeAft = sizeBef+300;\n foldBinsButton.html(\"»\");\n }\n _this.resizeZoom(1, 1, (sizeAft/sizeBef));\n },\n save: function() { },\n open: function() { }\n }).value();\n\n /* Scene End */\n\n return Scene;\n\n});\n\n\n//Load modules and use them\nif( typeof require.config === \"function\" ) {\n require.config({\n paths: {\n 'jquery':'../lib/jquery/jquery',\n 'underscore':'../lib/lodash/lodash',\n 'filesaver' :'../lib/FileSaver/FileSaver',\n 'requtils':'require-utils',\n 'ckeditor-core':'../lib/ckeditor/ckeditor',\n 'ckeditor-jquery':'../lib/ckeditor/adapters/jquery'\n },\n shim: {\n 'ckeditor-jquery':{\n deps:['jquery','ckeditor-core']\n }\n },\n });\n}\n\nrequire(['renderer/baserepresentation',\n 'renderer/basebutton',\n 'renderer/noderepr',\n 'renderer/edge',\n 'renderer/tempedge',\n 'renderer/baseeditor',\n 'renderer/nodeeditor',\n 'renderer/edgeeditor',\n 'renderer/nodebutton',\n 'renderer/nodeeditbutton',\n 'renderer/noderemovebutton',\n 'renderer/nodehidebutton',\n 'renderer/nodeshowbutton',\n 'renderer/noderevertbutton',\n 'renderer/nodelinkbutton',\n 'renderer/nodeenlargebutton',\n 'renderer/nodeshrinkbutton',\n 'renderer/edgeeditbutton',\n 'renderer/edgeremovebutton',\n 'renderer/edgerevertbutton',\n 'renderer/miniframe',\n 'renderer/scene'\n ], function(BaseRepresentation, BaseButton, NodeRepr, Edge, TempEdge, BaseEditor, NodeEditor, EdgeEditor, NodeButton, NodeEditButton, NodeRemoveButton, NodeHideButton, NodeShowButton, NodeRevertButton, NodeLinkButton, NodeEnlargeButton, NodeShrinkButton, EdgeEditButton, EdgeRemoveButton, EdgeRevertButton, MiniFrame, Scene){\n\n \n\n var Rkns = window.Rkns;\n\n if(typeof Rkns.Renderer === \"undefined\"){\n Rkns.Renderer = {};\n }\n var Renderer = Rkns.Renderer;\n\n Renderer._BaseRepresentation = BaseRepresentation;\n Renderer._BaseButton = BaseButton;\n Renderer.Node = NodeRepr;\n Renderer.Edge = Edge;\n Renderer.TempEdge = TempEdge;\n Renderer._BaseEditor = BaseEditor;\n Renderer.NodeEditor = NodeEditor;\n Renderer.EdgeEditor = EdgeEditor;\n Renderer._NodeButton = NodeButton;\n Renderer.NodeEditButton = NodeEditButton;\n Renderer.NodeRemoveButton = NodeRemoveButton;\n Renderer.NodeHideButton = NodeHideButton;\n Renderer.NodeShowButton = NodeShowButton;\n Renderer.NodeRevertButton = NodeRevertButton;\n Renderer.NodeLinkButton = NodeLinkButton;\n Renderer.NodeEnlargeButton = NodeEnlargeButton;\n Renderer.NodeShrinkButton = NodeShrinkButton;\n Renderer.EdgeEditButton = EdgeEditButton;\n Renderer.EdgeRemoveButton = EdgeRemoveButton;\n Renderer.EdgeRevertButton = EdgeRevertButton;\n Renderer.MiniFrame = MiniFrame;\n Renderer.Scene = Scene;\n\n startRenkan();\n});\n\ndefine(\"main-renderer\", function(){});\n\n"]} \ No newline at end of file diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/renkan/js/templates.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/renkan/js/templates.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/lib/renkan/js/templates.js Thu Jun 18 16:53:16 2015 +0200 @@ -161,7 +161,7 @@ '\n

                                                    \n'; } ; __p += '\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
                                                    ' + +((__t = (node.description)) == null ? '' : __t) + +'
                                                    \n '; + } else { ; +__p += '\n \n '; + } ; +__p += '\n

                                                    \n'; } ; __p += ' '; if (options.show_node_editor_size) { ; @@ -535,7 +561,7 @@ __p += ' '; if (options.show_node_tooltip_description) { ; __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 += '

                                                    \n ×\n '; + if (options.show_node_tooltip_color) { ; +__p += '\n \n '; + } ; +__p += '\n \n '; + if (node.uri) { ; +__p += '\n \n '; + } ; +__p += '\n ' + +__e(node.title) + +'\n '; + if (node.uri) { ; +__p += ''; + } ; +__p += '\n \n

                                                    \n'; + if (node.uri && options.show_node_tooltip_uri) { ; +__p += '\n \n'; + } ; +__p += '\n ' + +__e(renkan.translate("Link to the node")) + +'\n'; } return __p @@ -684,16 +753,20 @@ '">
                                                    \n '; if (options.editor_mode && options.save_view) { ; __p += '\n
                                                    \n '; } ; __p += '\n '; if (options.save_view) { ; __p += '\n
                                                    \n \t
                                                    \n '; + if (options.hide_nodes) { ; +__p += '\n \t
                                                    \n '; +'">
                                                    \n '; + } ; +__p += ' \n '; } ; __p += '\n
                                                    \n '; } ; diff -r 48be7ebb3187 -r 1324bd8747ff server/python/django/renkanmanager/static/renkanmanager/lib/requirejs/require.js --- a/server/python/django/renkanmanager/static/renkanmanager/lib/requirejs/require.js Thu Jun 18 16:50:54 2015 +0200 +++ b/server/python/django/renkanmanager/static/renkanmanager/lib/requirejs/require.js Thu Jun 18 16:53:16 2015 +0200 @@ -1,5 +1,5 @@ /** vim: et:ts=4:sw=4:sts=4 - * @license RequireJS 2.1.17 Copyright (c) 2010-2015, The Dojo Foundation All Rights Reserved. + * @license RequireJS 2.1.15 Copyright (c) 2010-2014, The Dojo Foundation All Rights Reserved. * Available via the MIT or new BSD license. * see: http://github.com/jrburke/requirejs for details */ @@ -12,7 +12,7 @@ (function (global) { var req, s, head, baseElement, dataMain, src, interactiveScript, currentlyAddingScript, mainScript, subPath, - version = '2.1.17', + version = '2.1.15', commentRegExp = /(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg, cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g, jsSuffixRegExp = /\.js$/, @@ -244,7 +244,7 @@ // still work when converted to a path, even though // as an ID it is less than ideal. In larger point // releases, may be better to just kick out an error. - if (i === 0 || (i === 1 && ary[2] === '..') || ary[i - 1] === '..') { + if (i === 0 || (i == 1 && ary[2] === '..') || ary[i - 1] === '..') { continue; } else if (i > 0) { ary.splice(i - 1, 2); @@ -1123,13 +1123,6 @@ if (this.errback) { on(depMap, 'error', bind(this, this.errback)); - } else if (this.events.error) { - // No direct errback on this module, but something - // else is listening for errors, so be sure to - // propagate the error correctly. - on(depMap, 'error', bind(this, function(err) { - this.emit('error', err); - })); } }