# HG changeset patch # User veltr # Date 1365082860 -7200 # Node ID 860340d4c6459001d8d3d7d559043a7d0d76b89d # Parent ea11e17e0a358adb4255df506046e70a922da75c Improvements for CineCard diff -r ea11e17e0a35 -r 860340d4c645 client/css/renkan.css --- a/client/css/renkan.css Wed Apr 03 16:17:36 2013 +0200 +++ b/client/css/renkan.css Thu Apr 04 15:41:00 2013 +0200 @@ -217,12 +217,20 @@ position: absolute; left: 0; top: 35px; right: 0; bottom: 0; z-index: 1; } +.Rk-Editing-Space-Full .Rk-Canvas { + top: 0; +} + /* Editors */ .Rk-Editor { position: absolute; left: 0; top: 35px; right: 0; z-index: 2; } +.Rk-Editing-Space-Full .Rk-Editor { + top: 0; +} + .Rk-Notifications { position: absolute; right: 15px; top: 15px; width: 200px; padding: 10px; border-radius: 8px; display: none; diff -r ea11e17e0a35 -r 860340d4c645 client/img/enlarge.png Binary file client/img/enlarge.png has changed diff -r ea11e17e0a35 -r 860340d4c645 client/img/shrink.png Binary file client/img/shrink.png has changed diff -r ea11e17e0a35 -r 860340d4c645 client/js/defaults.js --- a/client/js/defaults.js Wed Apr 03 16:17:36 2013 +0200 +++ b/client/js/defaults.js Thu Apr 04 15:41:00 2013 +0200 @@ -1,4 +1,5 @@ Rkns.defaults = { + language: (navigator.language || navigator.userLanguage || "en"), /* GUI Language */ container: "renkan", @@ -19,6 +20,9 @@ /* Switch for Publish/Edit GUI. If editor_mode is false, read_only will be true. */ snapshot_mode: false, /* In snapshot mode, clicking on the floppy will save a snapshot. Otherwise, it will show the connection status */ + show_top_bar: true, + /* Show the top bar, (title, buttons, users) */ + default_user_color: "#303030", /* MINI-MAP OPTIONS */ @@ -26,6 +30,10 @@ /* Show a small map at the bottom right */ minimap_width: 160, minimap_height: 120, + minimap_background_color: "#ffffff", + minimap_border_color: "#cccccc", + minimap_highlight_color: "#ffff00", + minimap_highlight_weight: 5, /* EDGE/NODE COMMON OPTIONS */ @@ -39,8 +47,11 @@ /* Show circles for nodes */ clip_node_images: true, /* Constraint node images to circles */ + node_size_base: 25, node_stroke_width: 2, selected_node_stroke_width: 4, + node_fill_color: "#ffffff", + highlighted_node_fill_color: "#ffff00", node_label_color: "#000000", node_label_font_size: 10, node_label_font: 'Helvetica, Arial, sans-serif', @@ -71,5 +82,7 @@ tooltip_arrow_width : 40, tooltip_top_color: "#f0f0f0", tooltip_bottom_color: "#d0d0d0", + tooltip_border_color: "#808080", + tooltip_border_width: 1 } diff -r ea11e17e0a35 -r 860340d4c645 client/js/i18n.js --- a/client/js/i18n.js Wed Apr 03 16:17:36 2013 +0200 +++ b/client/js/i18n.js Thu Apr 04 15:41:00 2013 +0200 @@ -22,6 +22,8 @@ "Edit": "Éditer", "Remove": "Supprimer", "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", diff -r ea11e17e0a35 -r 860340d4c645 client/js/ldtjson-bin.js --- a/client/js/ldtjson-bin.js Wed Apr 03 16:17:36 2013 +0200 +++ b/client/js/ldtjson-bin.js Thu Apr 04 15:41:00 2013 +0200 @@ -13,12 +13,12 @@ Rkns.Ldt.ProjectBin = Rkns.Utils.inherit(Rkns._BaseBin); Rkns.Ldt.ProjectBin.prototype.tagTemplate = Rkns._.template( - '
  • ' + '
  • ' + '

    <%=htitle%>

  • ' ); Rkns.Ldt.ProjectBin.prototype.annotationTemplate = Rkns._.template( - '
  • ' + '
  • ' + '

    <%=htitle%>

    <%=hdescription%>

    Start: <%=start%>, End: <%=end%>, Duration: <%=duration%>

  • ' ); @@ -159,7 +159,7 @@ Rkns.Ldt.ResultsBin = Rkns.Utils.inherit(Rkns._BaseBin); Rkns.Ldt.ResultsBin.prototype.segmentTemplate = Rkns._.template( - '
  • ' + '
  • ' + '

    <%=htitle%>

    <%=hdescription%>

    Start: <%=start%>, End: <%=end%>, Duration: <%=duration%>

  • ' ); diff -r ea11e17e0a35 -r 860340d4c645 client/js/list-bin.js --- a/client/js/list-bin.js Wed Apr 03 16:17:36 2013 +0200 +++ b/client/js/list-bin.js Thu Apr 04 15:41:00 2013 +0200 @@ -4,7 +4,7 @@ Rkns.ResourceList.Bin.prototype.resultTemplate = Rkns._.template( '
  • ' + + 'data-title="<%-title%>" data-description="<%-description%>" data-image="<%- Rkns.Utils.getFullURL(image) %>">' + '<% if (image) { %><% } %>

    ' + '<% if (url) { %><% } %><%=htitle%><% if (url) { %><% } %>

    ' + '<% if (description) { %>

    <%=hdescription%>

    <% } %><% if (image) { %>
    <% } %>
  • ' diff -r ea11e17e0a35 -r 860340d4c645 client/js/main.js --- a/client/js/main.js Wed Apr 03 16:17:36 2013 +0200 +++ b/client/js/main.js Thu Apr 04 15:41:00 2013 +0200 @@ -288,6 +288,13 @@ } return _base + this._ID_BASE + '-' + _n; }, + getFullURL : function(url) { + var img = new Image(); + img.src = url; + var res = img.src; + img.src = null; + return res; + }, inherit : function(_baseClass, _callbefore) { var _class = function() { if (typeof _callbefore === "function") { diff -r ea11e17e0a35 -r 860340d4c645 client/js/paper-renderer.js --- a/client/js/paper-renderer.js Wed Apr 03 16:17:36 2013 +0200 +++ b/client/js/paper-renderer.js Thu Apr 04 15:41:00 2013 +0200 @@ -1,7 +1,6 @@ Rkns.Renderer = { _MINIMAP_MARGIN: 20, _MIN_DRAG_DISTANCE: 2, - _NODE_SIZE_BASE: 25, _NODE_BUTTON_WIDTH: 40, _EDGE_BUTTON_INNER: 2, _EDGE_BUTTON_OUTER: 40, @@ -13,12 +12,14 @@ _MIN_SCALE: 1/20, _MAX_SCALE: 20, _AUTOSCALE_MARGIN: 50, - _USER_PLACEHOLDER : { - color: "#000000", - title: "(unknown user)", - get: function(attr) { - return this[attr] || false; - } + _USER_PLACEHOLDER : function(_renkan) { + return { + color: _renkan.options.default_user_color, + title: _renkan.translate("(unknown user)"), + get: function(attr) { + return this[attr] || false; + } + } }, _BOOKMARKLET_CODE: function(_renkan) { 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='" @@ -80,9 +81,6 @@ _endRads = _endAngle * Math.PI / 180, _img = new Image(), _span = _endRads - _startRads, - _k = .0879 * _span, - _kin = _k * _inR, - _kout = _k * _outR, _startdx = - Math.sin(_startRads), _startdy = Math.cos(_startRads), _startXIn = Math.cos(_startRads) * _inR + _padding * _startdx, @@ -104,7 +102,7 @@ _centerYIn = Math.sin(_centerRads) * _inR, _centerYOut = Math.sin(_centerRads) * _outR, _textX = Math.cos(_centerRads) * (_outR + 3), - _textY = Math.sin(_centerRads) * (_outR + 3), + _textY = Math.sin(_centerRads) * (_outR + _options.buttons_label_font_size) + _options.buttons_label_font_size / 2, _segments = []; _repr.renderer.buttons_layer.activate(); var _path = new paper.Path(); @@ -116,11 +114,6 @@ _path.opacity = .5; _path.closed = true; _path.__representation = _repr; - if (_textX >= -2 && _textX <= 2) { - if (_textY > 0) { - _textY += 6; - } - } var _text = new paper.PointText(_textX,_textY); _text.characterStyle = { fontSize: _options.buttons_label_font_size, @@ -186,7 +179,9 @@ Rkns.Renderer._BaseRepresentation = function(_renderer, _model) { if (typeof _renderer !== "undefined") { this.renderer = _renderer; + this.renkan = _renderer.renkan; this.project = _renderer.renkan.project; + this.options = _renderer.renkan.options; this.model = _model; if (this.model) { var _this = this; @@ -234,6 +229,39 @@ } } +/* */ + +Rkns.Renderer._BaseButton = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation); + +Rkns.Renderer._BaseButton.prototype.moveTo = function(_pos) { + this.sector.moveTo(_pos); +} + +Rkns.Renderer._BaseButton.prototype.show = function() { + this.sector.show(); +} + +Rkns.Renderer._BaseButton.prototype.hide = function() { + this.sector.hide(); +} + +Rkns.Renderer._BaseButton.prototype.select = function() { + this.sector.select(); +} + +Rkns.Renderer._BaseButton.prototype.unselect = function(_newTarget) { + this.sector.unselect(); + if (!_newTarget || (_newTarget !== this.source_representation && _newTarget.source_representation !== this.source_representation)) { + this.source_representation.unselect(); + } +} + +Rkns.Renderer._BaseButton.prototype.destroy = function() { + this.sector.destroy(); +} + +/* */ + Rkns.Renderer.Node = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation); Rkns.Renderer.Node.prototype._init = function() { @@ -241,9 +269,9 @@ this.type = "Node"; this.circle = new paper.Path.Circle([0, 0], 1); this.circle.__representation = this; - this.circle.fillColor = '#ffffff'; - if (this.renderer.renkan.options.show_node_circles) { - this.circle.strokeWidth = this.renderer.renkan.options.node_stroke_width; + this.circle.fillColor = this.options.node_fill_color; + if (this.options.show_node_circles) { + this.circle.strokeWidth = this.options.node_stroke_width; this.h_ratio = 1; } else { this.circle.opacity = .01; @@ -251,17 +279,23 @@ } this.title = new paper.PointText([0,0]); this.title.characterStyle = { - font: this.renderer.renkan.options.node_label_font, - fontSize: this.renderer.renkan.options.node_label_font_size, - fillColor: this.renderer.renkan.options.node_label_color + font: this.options.node_label_font, + fontSize: this.options.node_label_font_size, + fillColor: this.options.node_label_color }; - if (this.renderer.renkan.options.editor_mode) { - this.edit_button = new Rkns.Renderer.NodeEditButton(this.renderer, null); - this.edit_button.node_representation = this; - this.remove_button = new Rkns.Renderer.NodeRemoveButton(this.renderer, null); - this.remove_button.node_representation = this; - this.link_button = new Rkns.Renderer.NodeLinkButton(this.renderer, null); - this.link_button.node_representation = this; + if (this.options.editor_mode) { + this.buttons = [ + new Rkns.Renderer.NodeEditButton(this.renderer, null), + new Rkns.Renderer.NodeRemoveButton(this.renderer, null), + new Rkns.Renderer.NodeLinkButton(this.renderer, null), + new Rkns.Renderer.NodeEnlargeButton(this.renderer, null), + new Rkns.Renderer.NodeShrinkButton(this.renderer, null) + ]; + for (var i = 0; i < this.buttons.length; i++) { + this.buttons[i].source_representation = this; + } + } else { + this.buttons = []; } this.last_circle_radius = 1; this.title.paragraphStyle.justification = 'center'; @@ -275,17 +309,15 @@ Rkns.Renderer.Node.prototype.redraw = function(_dontRedrawEdges) { var _model_coords = new paper.Point(this.model.get("position")), - _baseRadius = Rkns.Renderer._NODE_SIZE_BASE * Math.exp((this.model.get("size") || 0) * Rkns.Renderer._NODE_SIZE_STEP); + _baseRadius = this.options.node_size_base * Math.exp((this.model.get("size") || 0) * Rkns.Renderer._NODE_SIZE_STEP); if (!this.is_dragging || !this.paper_coords) { this.paper_coords = this.renderer.toPaperCoords(_model_coords); } this.circle_radius = _baseRadius * this.renderer.scale; if (this.last_circle_radius !== this.circle_radius) { - if (this.renderer.renkan.options.editor_mode) { - this.edit_button.setSectorSize(); - this.remove_button.setSectorSize(); - this.link_button.setSectorSize(); - } + this.buttons.forEach(function(b) { + b.setSectorSize(); + }); var square = new paper.Size(this.circle_radius, this.circle_radius), topleft = this.paper_coords.subtract(square), bounds = new paper.Rectangle(topleft, square.multiply(2)); @@ -301,20 +333,19 @@ } this.last_circle_radius = this.circle_radius; - var _text = this.model.get("title") || this.renderer.renkan.translate("(untitled)"); - this.title.content = Rkns.Renderer.Utils.shortenText(_text, this.renderer.renkan.options.node_label_max_length); + var _text = this.model.get("title") || this.renkan.translate("(untitled)"); + this.title.content = Rkns.Renderer.Utils.shortenText(_text, this.options.node_label_max_length); this.title.position = this.paper_coords.add([ 0, - this.circle_radius * this.h_ratio + this.renderer.renkan.options.node_label_font_size + this.renderer.renkan.options.node_label_distance + this.circle_radius * this.h_ratio + this.options.node_label_font_size + this.options.node_label_distance ]); - var _color = this.model.get("color") || (this.model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER).get("color"); + var _color = this.model.get("color") || (this.model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER(this.renkan)).get("color"); this.circle.strokeColor = _color; - if (this.renderer.renkan.options.editor_mode) { - this.edit_button.moveTo(this.paper_coords); - this.remove_button.moveTo(this.paper_coords); - this.link_button.moveTo(this.paper_coords); - } + var _pc = this.paper_coords; + this.buttons.forEach(function(b) { + b.moveTo(_pc); + }); var _img = this.model.get("image"); if (_img && _img !== this.img) { var _image = new Image(), @@ -325,11 +356,11 @@ } _this.renderer.node_layer.activate(); var _ratio = Math.min(2 / _image.width, 2 / _image.height ); - if (!_this.renderer.renkan.options.show_node_circles) { + if (!_this.options.show_node_circles) { _this.h_ratio = Math.min(1, _image.height / _image.width); } var _raster = new paper.Raster(_image); - if (_this.renderer.renkan.options.clip_node_images) { + if (_this.options.clip_node_images) { var _clip = new paper.Path.Circle([0, 0], 1); _raster.scale(_ratio); _this.node_image = new paper.Group(_clip, _raster); @@ -348,6 +379,7 @@ bounds = new paper.Rectangle(topleft, square.multiply(2)); _this.node_image.fitBounds(bounds); _this.redraw(); + paper.view.draw(); } _image.src = _img; } @@ -377,8 +409,8 @@ } Rkns.Renderer.Node.prototype.paperShift = function(_delta) { - if (this.renderer.renkan.options.editor_mode) { - if (!this.renderer.renkan.read_only) { + if (this.options.editor_mode) { + if (!this.renkan.read_only) { this.is_dragging = true; this.paper_coords = this.paper_coords.add(_delta); this.redraw(); @@ -391,16 +423,16 @@ Rkns.Renderer.Node.prototype.openEditor = function() { this.renderer.removeRepresentationsOfType("editor"); var _editor = this.renderer.addRepresentation("NodeEditor",null); - _editor.node_representation = this; + _editor.source_representation = this; _editor.draw(); } Rkns.Renderer.Node.prototype.select = function() { - this.circle.strokeWidth = this.renderer.renkan.options.selected_node_stroke_width; + this.circle.strokeWidth = this.options.selected_node_stroke_width; if (this.renderer.isEditable()) { - this.edit_button.show(); - this.remove_button.show(); - this.link_button.show(); + this.buttons.forEach(function(b) { + b.show(); + }); } var _uri = this.model.get("uri"); if (_uri) { @@ -411,39 +443,38 @@ } }); } - if (!this.renderer.renkan.options.editor_mode) { + if (!this.options.editor_mode) { this.openEditor(); } if (this.renderer.minimap) { - this.minimap_circle.fillColor = "#ff00fc"; + this.minimap_circle.strokeWidth = this.options.minimap_highlight_weight; + this.minimap_circle.strokeColor = this.options.minimap_highlight_color; } } Rkns.Renderer.Node.prototype.unselect = function(_newTarget) { - if (!_newTarget || _newTarget.node_representation !== this) { - if (this.renderer.renkan.options.editor_mode) { - this.edit_button.hide(); - this.remove_button.hide(); - this.link_button.hide(); - } - this.circle.strokeWidth = this.renderer.renkan.options.node_stroke_width; + if (!_newTarget || _newTarget.source_representation !== this) { + this.buttons.forEach(function(b) { + b.hide(); + }); + this.circle.strokeWidth = this.options.node_stroke_width; Rkns.$('.Rk-Bin-Item').removeClass("selected"); if (this.renderer.minimap) { - this.minimap_circle.fillColor = this.model.get("color") || (this.model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER).get("color"); + this.minimap_circle.strokeColor = undefined; } } } Rkns.Renderer.Node.prototype.highlight = function() { - this.circle.fillColor = "#ffff80"; + this.circle.fillColor = this.options.highlighted_node_fill_color; if (this.node_image) { this.node_image.opacity = .5; } } Rkns.Renderer.Node.prototype.unhighlight = function(_newTarget) { - this.circle.fillColor = "#ffffff"; + this.circle.fillColor = this.options.node_fill_color; if (this.node_image) { this.node_image.opacity = .99; } @@ -476,11 +507,9 @@ Rkns.Renderer.Node.prototype.destroy = function(_event) { this.super("destroy"); - if (this.renderer.renkan.options.editor_mode) { - this.edit_button.destroy(); - this.remove_button.destroy(); - this.link_button.destroy(); - } + this.buttons.forEach(function(b) { + b.destroy(); + }); this.circle.remove(); this.title.remove(); if (this.renderer.minimap) { @@ -504,28 +533,28 @@ this.line = new paper.Path(); this.line.add([0,0],[0,0],[0,0]); this.line.__representation = this; - this.line.strokeWidth = this.renderer.renkan.options.edge_stroke_width; + this.line.strokeWidth = this.options.edge_stroke_width; this.arrow = new paper.Path(); this.arrow.add( [ 0, 0 ], - [ this.renderer.renkan.options.edge_arrow_length, this.renderer.renkan.options.edge_arrow_width / 2 ], - [ 0, this.renderer.renkan.options.edge_arrow_width ] + [ this.options.edge_arrow_length, this.options.edge_arrow_width / 2 ], + [ 0, this.options.edge_arrow_width ] ); this.arrow.__representation = this; this.text = new paper.PointText(); this.text.characterStyle = { - font: this.renderer.renkan.options.edge_label_font, - fontSize: this.renderer.renkan.options.edge_label_font_size, - fillColor: this.renderer.renkan.options.edge_label_color + font: this.options.edge_label_font, + fontSize: this.options.edge_label_font_size, + fillColor: this.options.edge_label_color }; this.text.paragraphStyle.justification = 'center'; this.text_angle = 0; this.arrow_angle = 0; - if (this.renderer.renkan.options.editor_mode) { + if (this.options.editor_mode) { this.edit_button = new Rkns.Renderer.EdgeEditButton(this.renderer, null); - this.edit_button.edge_representation = this; + this.edit_button.source_representation = this; this.remove_button = new Rkns.Renderer.EdgeRemoveButton(this.renderer, null); - this.remove_button.edge_representation = this; + this.remove_button.source_representation = this; } if (this.renderer.minimap) { @@ -549,13 +578,13 @@ _u = _v.divide(_r), _ortho = new paper.Point([- _u.y, _u.x]), _group_pos = this.bundle.getPosition(this), - _delta = _ortho.multiply( this.renderer.renkan.options.edge_gap_in_bundles * _group_pos ), + _delta = _ortho.multiply( this.options.edge_gap_in_bundles * _group_pos ), _p0b = _p0a.add(_delta), /* Adding a 4 px difference */ _p1b = _p1a.add(_delta), /* to differentiate bundled links */ _a = _v.angle, - _textdelta = _ortho.multiply(this.renderer.renkan.options.edge_label_distance), + _textdelta = _ortho.multiply(this.options.edge_label_distance), _handle = _v.divide(3), - _color = this.model.get("color") || this.model.get("color") || (this.model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER).get("color"); + _color = this.model.get("color") || this.model.get("color") || (this.model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER(this.renkan)).get("color"); this.paper_coords = _p0b.add(_p1b).divide(2); this.line.strokeColor = _color; this.line.segments[0].point = _p0a; @@ -577,10 +606,10 @@ } this.text.rotate(_a - this.text_angle); var _text = this.model.get("title"); - this.text.content = Rkns.Renderer.Utils.shortenText(_text, this.renderer.renkan.options.edge_label_max_length); + this.text.content = Rkns.Renderer.Utils.shortenText(_text, this.options.edge_label_max_length); this.text.position = this.paper_coords.add(_textdelta); this.text_angle = _a; - if (this.renderer.renkan.options.editor_mode) { + if (this.options.editor_mode) { this.edit_button.moveTo(this.paper_coords); this.remove_button.moveTo(this.paper_coords); } @@ -595,33 +624,33 @@ Rkns.Renderer.Edge.prototype.openEditor = function() { this.renderer.removeRepresentationsOfType("editor"); var _editor = this.renderer.addRepresentation("EdgeEditor",null); - _editor.edge_representation = this; + _editor.source_representation = this; _editor.draw(); } Rkns.Renderer.Edge.prototype.select = function() { - this.line.strokeWidth = this.renderer.renkan.options.selected_edge_stroke_width; + this.line.strokeWidth = this.options.selected_edge_stroke_width; if (this.renderer.isEditable()) { this.edit_button.show(); this.remove_button.show(); } - if (!this.renderer.renkan.options.editor_mode) { + if (!this.options.editor_mode) { this.openEditor(); } } Rkns.Renderer.Edge.prototype.unselect = function(_newTarget) { - if (!_newTarget || _newTarget.edge_representation !== this) { - if (this.renderer.renkan.options.editor_mode) { + if (!_newTarget || _newTarget.source_representation !== this) { + if (this.options.editor_mode) { this.edit_button.hide(); this.remove_button.hide(); } - this.line.strokeWidth = this.renderer.renkan.options.edge_stroke_width; + this.line.strokeWidth = this.options.edge_stroke_width; } } Rkns.Renderer.Edge.prototype.mouseup = function(_event) { - if (!this.renderer.renkan.read_only) { + if (!this.renkan.read_only) { if (this.renderer.is_dragging) { this.from_representation.saveCoords(); this.to_representation.saveCoords(); @@ -634,8 +663,8 @@ } Rkns.Renderer.Edge.prototype.paperShift = function(_delta) { - if (this.renderer.renkan.options.editor_mode) { - if (!this.renderer.renkan.options.read_only) { + if (this.options.editor_mode) { + if (!this.options.read_only) { this.from_representation.paperShift(_delta); this.to_representation.paperShift(_delta); } @@ -652,7 +681,7 @@ if (this.renderer.minimap) { this.minimap_line.remove(); } - if (this.renderer.renkan.options.editor_mode) { + if (this.options.editor_mode) { this.edit_button.destroy(); this.remove_button.destroy(); } @@ -670,7 +699,7 @@ this.renderer.edge_layer.activate(); this.type = "temp-edge"; - var _color = (this.project.get("users").get(this.renderer.renkan.current_user) || Rkns.Renderer._USER_PLACEHOLDER).get("color"); + var _color = (this.project.get("users").get(this.renkan.current_user) || Rkns.Renderer._USER_PLACEHOLDER(this.renkan)).get("color"); this.line = new paper.Path(); this.line.strokeColor = _color; this.line.add([0,0],[0,0]); @@ -679,8 +708,8 @@ this.arrow.fillColor = _color; this.arrow.add( [ 0, 0 ], - [ this.renderer.renkan.options.edge_arrow_length, this.renderer.renkan.options.edge_arrow_width / 2 ], - [ 0, this.renderer.renkan.options.edge_arrow_width ] + [ 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; @@ -719,7 +748,7 @@ if (_target.type === "Node" && _model !== _target.model) { var _data = { id: Rkns.Utils.getUID('edge'), - created_by: this.renderer.renkan.current_user, + created_by: this.renkan.current_user, from: _model.get("_id"), to: _target.model.get("_id") }; @@ -727,7 +756,7 @@ this.project.addEdge(_data); } } - if (_model === _target.model || (_target.node_representation && _target.node_representation.model === _model)) { + if (_model === _target.model || (_target.source_representation && _target.source_representation.model === _model)) { _endDrag = false; this.renderer.is_dragging = true; } @@ -755,9 +784,8 @@ this.editor_block = new paper.Path(); var _pts = Rkns._(Rkns._.range(8)).map(function() {return [0,0]}); this.editor_block.add.apply(this.editor_block, _pts); - this.editor_block.strokeWidth = 2; - this.editor_block.strokeColor = "#999999"; - this.editor_block.fillColor = "#e0e0e0"; + 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_$ = Rkns.$('
    ') .appendTo(this.renderer.editor_$) @@ -779,7 +807,7 @@ + '' + '

    ' + '

    ' - + '

    <%-translate("Created by:")%> <%- Rkns.Renderer.Utils.shortenText(node.created_by_title, 25) %>

    ' + + '<% if (node.has_creator) { %>

    <%-translate("Created by:")%> <%- Rkns.Renderer.Utils.shortenText(node.created_by_title, 25) %>

    <% } %>' ); Rkns.Renderer.NodeEditor.prototype.readOnlyTemplate = Rkns._.template( @@ -787,18 +815,19 @@ + '<% if (node.uri) { %><% } %><%-node.title%><% if (node.uri) { %><% } %>' + '<% if (node.uri) { %>

    <%-node.short_uri%>

    <% } %>' + '

    <%-node.description%>

    ' - + '

    <%-translate("Created by:")%><%- Rkns.Renderer.Utils.shortenText(node.created_by_title, 25) %>

    ' + + '<% if (node.has_creator) { %>

    <%-translate("Created by:")%><%- Rkns.Renderer.Utils.shortenText(node.created_by_title, 25) %>

    <% } %>' ); Rkns.Renderer.NodeEditor.prototype.draw = function() { - var _model = this.node_representation.model, - _created_by = _model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER, + var _model = this.source_representation.model, + _created_by = _model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER(this.renkan), _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate ), - _image_placeholder = this.renderer.renkan.options.static_url + "img/image-placeholder.png", + _image_placeholder = this.options.static_url + "img/image-placeholder.png", _size = (_model.get("size") || 0); this.editor_$ .html(_template({ node: { + has_creator: !!_model.get("created_by"), title: _model.get("title"), uri: _model.get("uri"), short_uri: Rkns.Renderer.Utils.shortenText((_model.get("uri") || "").replace(/^(https?:\/\/)?(www\.)?/,'').replace(/\/$/,''),40), @@ -810,7 +839,7 @@ created_by_title: _created_by.get("title"), size: (_size > 0 ? "+" : "") + _size }, - translate: this.renderer.renkan.translate + translate: this.renkan.translate })); this.redraw(); var _this = this, @@ -852,11 +881,11 @@ var f = this.files[0], fr = new FileReader(); if (f.type.substr(0,5) !== "image") { - alert(_this.renderer.renkan.translate("This file is not an image")); + alert(_this.renkan.translate("This file is not an image")); return; } if (f.size > (Rkns.Renderer._IMAGE_MAX_KB * 1024)) { - alert(_this.renderer.renkan.translate("Image size must be under ")+Rkns.Renderer._IMAGE_MAX_KB+_this.renderer.renkan.translate("KB")); + alert(_this.renkan.translate("Image size must be under ")+Rkns.Renderer._IMAGE_MAX_KB+_this.renkan.translate("KB")); return; } fr.onload = function(e) { @@ -873,7 +902,7 @@ ); this.editor_$.find(".Rk-Edit-ColorPicker li").hover( function() { _this.editor_$.find(".Rk-Edit-Color").css("background", $(this).attr("data-color")); }, - function() { _this.editor_$.find(".Rk-Edit-Color").css("background", _model.get("color") || (_model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER).get("color")) } + function() { _this.editor_$.find(".Rk-Edit-Color").css("background", _model.get("color") || (_model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER(this.renkan)).get("color")) } ).click(function() { if (_this.renderer.isEditable()) { _model.set("color", $(this).attr("data-color")); @@ -909,8 +938,8 @@ } Rkns.Renderer.NodeEditor.prototype.redraw = function() { - var _coords = this.node_representation.paper_coords; - Rkns.Renderer.Utils.drawEditBox(this.renderer.renkan.options, _coords, this.editor_block, this.node_representation.circle_radius * .75, this.editor_$); + var _coords = this.source_representation.paper_coords; + Rkns.Renderer.Utils.drawEditBox(this.options, _coords, this.editor_block, this.source_representation.circle_radius * .75, this.editor_$); this.editor_$.show(); paper.view.draw(); } @@ -930,9 +959,8 @@ this.editor_block = new paper.Path(); var _pts = Rkns._(Rkns._.range(8)).map(function() {return [0,0]}); this.editor_block.add.apply(this.editor_block, _pts); - this.editor_block.strokeWidth = 2; - this.editor_block.strokeColor = "#999999"; - this.editor_block.fillColor = "#e0e0e0"; + 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_$ = Rkns.$('
    ') .appendTo(this.renderer.editor_$) @@ -957,7 +985,7 @@ + '

    <%- translate("Change edge direction") %>

    ' + '

    <%-translate("From:")%><%- Rkns.Renderer.Utils.shortenText(edge.from_title, 25) %>

    ' + '

    <%-translate("To:")%><%- Rkns.Renderer.Utils.shortenText(edge.to_title, 25) %>

    ' - + '

    <%-translate("Created by:")%><%- Rkns.Renderer.Utils.shortenText(edge.created_by_title, 25) %>

    ' + + '<% if (edge.has_creator) { %>

    <%-translate("Created by:")%><%- Rkns.Renderer.Utils.shortenText(edge.created_by_title, 25) %>

    <% } %>' ); Rkns.Renderer.EdgeEditor.prototype.readOnlyTemplate = Rkns._.template( @@ -967,18 +995,19 @@ + '

    <%-edge.description%>

    ' + '

    <%-translate("From:")%><%- Rkns.Renderer.Utils.shortenText(edge.from_title, 25) %>

    ' + '

    <%-translate("To:")%><%- Rkns.Renderer.Utils.shortenText(edge.to_title, 25) %>

    ' - + '

    <%-translate("Created by:")%><%- Rkns.Renderer.Utils.shortenText(edge.created_by_title, 25) %>

    ' + + '<% if (edge.has_creator) { %>

    <%-translate("Created by:")%><%- Rkns.Renderer.Utils.shortenText(edge.created_by_title, 25) %>

    <% } %>' ); Rkns.Renderer.EdgeEditor.prototype.draw = function() { - var _model = this.edge_representation.model, + var _model = this.source_representation.model, _from_model = _model.get("from"), _to_model = _model.get("to"), - _created_by = _model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER, + _created_by = _model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER(this.renkan), _template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate); this.editor_$ .html(_template({ edge: { + has_creator: !!_model.get("created_by"), title: _model.get("title"), uri: _model.get("uri"), short_uri: Rkns.Renderer.Utils.shortenText((_model.get("uri") || "").replace(/^(https?:\/\/)?(www\.)?/,'').replace(/\/$/,''),40), @@ -986,13 +1015,13 @@ color: _model.get("color") || _created_by.get("color"), from_title: _from_model.get("title"), to_title: _to_model.get("title"), - from_color: _from_model.get("color") || (_from_model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER).get("color"), - to_color: _to_model.get("color") || (_to_model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER).get("color"), + from_color: _from_model.get("color") || (_from_model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER(this.renkan)).get("color"), + to_color: _to_model.get("color") || (_to_model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER(this.renkan)).get("color"), created_by_color: _created_by.get("color"), created_by_title: _created_by.get("title") }, - translate: this.renderer.renkan.translate, - properties: this.renderer.renkan.options.properties + translate: this.renkan.translate, + properties: this.options.properties })); this.redraw(); var _this = this, @@ -1047,7 +1076,7 @@ ); this.editor_$.find(".Rk-Edit-ColorPicker li").hover( function() { _this.editor_$.find(".Rk-Edit-Color").css("background", $(this).attr("data-color")); }, - function() { _this.editor_$.find(".Rk-Edit-Color").css("background", _model.get("color") || (_model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER).get("color")); } + function() { _this.editor_$.find(".Rk-Edit-Color").css("background", _model.get("color") || (_model.get("created_by") || Rkns.Renderer._USER_PLACEHOLDER(this.renkan)).get("color")); } ).click(function() { if (_this.renderer.isEditable()) { _model.set("color", $(this).attr("data-color")); @@ -1060,8 +1089,8 @@ } Rkns.Renderer.EdgeEditor.prototype.redraw = function() { - var _coords = this.edge_representation.paper_coords; - Rkns.Renderer.Utils.drawEditBox(this.renderer.renkan.options, _coords, this.editor_block, 5, this.editor_$); + var _coords = this.source_representation.paper_coords; + Rkns.Renderer.Utils.drawEditBox(this.options, _coords, this.editor_block, 5, this.editor_$); this.editor_$.show(); paper.view.draw(); } @@ -1073,242 +1102,152 @@ /* */ -Rkns.Renderer.NodeEditButton = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation); +Rkns.Renderer._NodeButton = Rkns.Utils.inherit(Rkns.Renderer._BaseButton); -Rkns.Renderer.NodeEditButton.prototype._init = function() { - this.type = "Node-edit-button"; - this.lastSectorInner = 0; -} - -Rkns.Renderer.NodeEditButton.prototype.setSectorSize = function() { - var sectorInner = this.node_representation.circle_radius; +Rkns.Renderer._NodeButton.prototype.setSectorSize = function() { + var sectorInner = this.source_representation.circle_radius; if (sectorInner !== this.lastSectorInner) { if (this.sector) { this.sector.destroy(); } - this.sector = Rkns.Renderer.Utils.sector(this, 1 + sectorInner, Rkns.Renderer._NODE_BUTTON_WIDTH + sectorInner, - 90, 30, 1, this.renderer.renkan.options.static_url+'img/edit.png', this.renderer.renkan.translate("Edit")); + this.sector = Rkns.Renderer.Utils.sector( + this, 1 + sectorInner, + Rkns.Renderer._NODE_BUTTON_WIDTH + sectorInner, + this.startAngle, + this.endAngle, + 1, + this.options.static_url + this.imageFile, + this.renkan.translate(this.text) + ); this.lastSectorInner = sectorInner; } } -Rkns.Renderer.NodeEditButton.prototype.moveTo = function(_pos) { - this.sector.moveTo(_pos); -} - -Rkns.Renderer.NodeEditButton.prototype.show = function() { - this.sector.show(); -} - -Rkns.Renderer.NodeEditButton.prototype.hide = function() { - this.sector.hide(); -} - -Rkns.Renderer.NodeEditButton.prototype.select = function() { - this.sector.select(); -} - -Rkns.Renderer.NodeEditButton.prototype.unselect = function(_newTarget) { - this.sector.unselect(); - if (!_newTarget || (_newTarget !== this.node_representation && _newTarget.node_representation !== this.node_representation)) { - this.node_representation.unselect(); - } -} - -Rkns.Renderer.NodeEditButton.prototype.mouseup = function() { - if (!this.renderer.is_dragging) { - this.node_representation.openEditor(); - } -} - -Rkns.Renderer.NodeEditButton.prototype.destroy = function() { - this.sector.destroy(); -} - /* */ -Rkns.Renderer.NodeRemoveButton = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation); +Rkns.Renderer.NodeEditButton = Rkns.Utils.inherit(Rkns.Renderer._NodeButton); + +Rkns.Renderer.NodeEditButton.prototype._init = function() { + this.type = "Node-edit-button"; + this.lastSectorInner = 0; + this.startAngle = -225; + this.endAngle = -135; + this.imageFile = 'img/edit.png'; + this.text = "Edit"; +} + +Rkns.Renderer.NodeEditButton.prototype.mouseup = function() { + if (!this.renderer.is_dragging) { + this.source_representation.openEditor(); + } +} + +/* */ + +Rkns.Renderer.NodeRemoveButton = Rkns.Utils.inherit(Rkns.Renderer._NodeButton); Rkns.Renderer.NodeRemoveButton.prototype._init = function() { this.type = "Node-remove-button"; this.lastSectorInner = 0; -} - -Rkns.Renderer.NodeRemoveButton.prototype.setSectorSize = function() { - var sectorInner = this.node_representation.circle_radius; - if (sectorInner !== this.lastSectorInner) { - if (this.sector) { - this.sector.destroy(); - } - this.sector = Rkns.Renderer.Utils.sector(this, 1 + sectorInner, Rkns.Renderer._NODE_BUTTON_WIDTH + sectorInner, - 210, - 90, 1, this.renderer.renkan.options.static_url+'img/remove.png', this.renderer.renkan.translate("Remove")); - this.lastSectorInner = sectorInner; - } -} - -Rkns.Renderer.NodeRemoveButton.prototype.moveTo = function(_pos) { - this.sector.moveTo(_pos); -} - -Rkns.Renderer.NodeRemoveButton.prototype.show = function() { - this.sector.show(); -} - -Rkns.Renderer.NodeRemoveButton.prototype.hide = function() { - this.sector.hide(); -} - -Rkns.Renderer.NodeRemoveButton.prototype.select = function() { - this.sector.select(); -} - -Rkns.Renderer.NodeRemoveButton.prototype.unselect = function(_newTarget) { - this.sector.unselect(); - if (!_newTarget || (_newTarget !== this.node_representation && _newTarget.node_representation !== this.node_representation)) { - this.node_representation.unselect(); - } + this.startAngle = -45; + this.endAngle = 45; + this.imageFile = 'img/remove.png'; + this.text = "Remove"; } Rkns.Renderer.NodeRemoveButton.prototype.mouseup = function() { this.renderer.removeRepresentationsOfType("editor"); - if (this.renderer.isEditable() && confirm(this.renderer.renkan.translate('Do you really wish to remove node ') + '"' + this.node_representation.model.get("title") + '"?')) { - this.project.removeNode(this.node_representation.model); + if (this.renderer.isEditable() && confirm(this.renkan.translate('Do you really wish to remove node ') + '"' + this.source_representation.model.get("title") + '"?')) { + this.project.removeNode(this.source_representation.model); } } -Rkns.Renderer.NodeRemoveButton.prototype.destroy = function() { - this.sector.destroy(); -} - /* */ -Rkns.Renderer.NodeLinkButton = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation); +Rkns.Renderer.NodeLinkButton = Rkns.Utils.inherit(Rkns.Renderer._NodeButton); Rkns.Renderer.NodeLinkButton.prototype._init = function() { this.type = "Node-link-button"; this.lastSectorInner = 0; -} - -Rkns.Renderer.NodeLinkButton.prototype.setSectorSize = function() { - var sectorInner = this.node_representation.circle_radius; - if (sectorInner !== this.lastSectorInner) { - if (this.sector) { - this.sector.destroy(); - } - this.sector = Rkns.Renderer.Utils.sector(this, 1 + sectorInner, Rkns.Renderer._NODE_BUTTON_WIDTH + sectorInner, 30, 150, 1, this.renderer.renkan.options.static_url+'img/link.png', this.renderer.renkan.translate("Link to another node")); - this.lastSectorInner = sectorInner; - } -} - -Rkns.Renderer.NodeLinkButton.prototype.moveTo = function(_pos) { - this.sector.moveTo(_pos); + this.startAngle = -135; + this.endAngle = -45; + this.imageFile = 'img/link.png'; + this.text = "Link to another node"; } -Rkns.Renderer.NodeLinkButton.prototype.show = function() { - this.sector.show(); -} +/* */ + +Rkns.Renderer.NodeEnlargeButton = Rkns.Utils.inherit(Rkns.Renderer._NodeButton); -Rkns.Renderer.NodeLinkButton.prototype.hide = function() { - this.sector.hide(); +Rkns.Renderer.NodeEnlargeButton.prototype._init = function() { + this.type = "Node-enlarge-button"; + this.lastSectorInner = 0; + this.startAngle = 45; + this.endAngle = 90; + this.imageFile = 'img/enlarge.png'; + this.text = "Enlarge"; } -Rkns.Renderer.NodeLinkButton.prototype.select = function() { - this.sector.select(); -} - -Rkns.Renderer.NodeLinkButton.prototype.unselect = function(_newTarget) { - this.sector.unselect(); - if (!_newTarget || (_newTarget !== this.node_representation && _newTarget.node_representation !== this.node_representation)) { - this.node_representation.unselect(); - } -} - -Rkns.Renderer.NodeLinkButton.prototype.destroy = function() { - this.sector.destroy(); +Rkns.Renderer.NodeEnlargeButton.prototype.mouseup = function() { + var _newsize = 1 + (this.source_representation.model.get("size") || 0); + this.source_representation.model.set("size", _newsize); + this.source_representation.select(); + this.select(); + paper.view.draw(); } /* */ -Rkns.Renderer.EdgeEditButton = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation); +Rkns.Renderer.NodeShrinkButton = Rkns.Utils.inherit(Rkns.Renderer._NodeButton); + +Rkns.Renderer.NodeShrinkButton.prototype._init = function() { + this.type = "Node-shrink-button"; + this.lastSectorInner = 0; + this.startAngle = 90; + this.endAngle = 135; + this.imageFile = 'img/shrink.png'; + this.text = "Shrink"; +} + +Rkns.Renderer.NodeShrinkButton.prototype.mouseup = function() { + var _newsize = -1 + (this.source_representation.model.get("size") || 0); + this.source_representation.model.set("size", _newsize); + this.source_representation.select(); + this.select(); + paper.view.draw(); +} + +/* */ + +Rkns.Renderer.EdgeEditButton = Rkns.Utils.inherit(Rkns.Renderer._BaseButton); Rkns.Renderer.EdgeEditButton.prototype._init = function() { this.type = "Edge-edit-button"; - this.sector = Rkns.Renderer.Utils.sector(this, Rkns.Renderer._EDGE_BUTTON_INNER, Rkns.Renderer._EDGE_BUTTON_OUTER, - 90, 90, 1, this.renderer.renkan.options.static_url+'img/edit.png', this.renderer.renkan.translate("Edit")); -} - -Rkns.Renderer.EdgeEditButton.prototype.moveTo = function(_pos) { - this.sector.moveTo(_pos); -} - -Rkns.Renderer.EdgeEditButton.prototype.show = function() { - this.sector.show(); -} - -Rkns.Renderer.EdgeEditButton.prototype.hide = function() { - this.sector.hide(); -} - -Rkns.Renderer.EdgeEditButton.prototype.select = function() { - this.sector.select(); -} - -Rkns.Renderer.EdgeEditButton.prototype.unselect = function(_newTarget) { - this.sector.unselect(); - if (!_newTarget || (_newTarget !== this.edge_representation && _newTarget.edge_representation !== this.edge_representation)) { - this.edge_representation.unselect(); - } + this.sector = Rkns.Renderer.Utils.sector(this, Rkns.Renderer._EDGE_BUTTON_INNER, Rkns.Renderer._EDGE_BUTTON_OUTER, - 90, 90, 1, this.options.static_url+'img/edit.png', this.renkan.translate("Edit")); } Rkns.Renderer.EdgeEditButton.prototype.mouseup = function() { if (!this.renderer.is_dragging) { - this.edge_representation.openEditor(); + this.source_representation.openEditor(); } } -Rkns.Renderer.EdgeEditButton.prototype.destroy = function() { - this.sector.destroy(); -} - /* */ -Rkns.Renderer.EdgeRemoveButton = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation); +Rkns.Renderer.EdgeRemoveButton = Rkns.Utils.inherit(Rkns.Renderer._BaseButton); Rkns.Renderer.EdgeRemoveButton.prototype._init = function() { this.type = "Edge-remove-button"; - this.sector = Rkns.Renderer.Utils.sector(this, Rkns.Renderer._EDGE_BUTTON_INNER, Rkns.Renderer._EDGE_BUTTON_OUTER, - 270, -90, 1, this.renderer.renkan.options.static_url+'img/remove.png', this.renderer.renkan.translate("Remove")); -} -Rkns.Renderer.EdgeRemoveButton.prototype.moveTo = function(_pos) { - this.sector.moveTo(_pos); -} - -Rkns.Renderer.EdgeRemoveButton.prototype.show = function() { - this.sector.show(); -} - -Rkns.Renderer.EdgeRemoveButton.prototype.hide = function() { - this.sector.hide(); -} - -Rkns.Renderer.EdgeRemoveButton.prototype.select = function() { - this.sector.select(); -} - -Rkns.Renderer.EdgeRemoveButton.prototype.unselect = function(_newTarget) { - this.sector.unselect(); - if (!_newTarget || (_newTarget !== this.edge_representation && _newTarget.edge_representation !== this.edge_representation)) { - this.edge_representation.unselect(); - } + this.sector = Rkns.Renderer.Utils.sector(this, Rkns.Renderer._EDGE_BUTTON_INNER, Rkns.Renderer._EDGE_BUTTON_OUTER, - 270, -90, 1, this.options.static_url+'img/remove.png', this.renkan.translate("Remove")); } Rkns.Renderer.EdgeRemoveButton.prototype.mouseup = function() { this.renderer.removeRepresentationsOfType("editor"); - if (this.renderer.isEditable() && confirm(this.renderer.renkan.translate('Do you really wish to remove edge ') + '"' + this.edge_representation.model.get("title") + '"?')) { - this.project.removeEdge(this.edge_representation.model); + if (this.renderer.isEditable() && confirm(this.renkan.translate('Do you really wish to remove edge ') + '"' + this.source_representation.model.get("title") + '"?')) { + this.project.removeEdge(this.source_representation.model); } } -Rkns.Renderer.EdgeRemoveButton.prototype.destroy = function() { - this.sector.destroy(); -} - /* */ Rkns.Renderer.MiniFrame = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation); @@ -1356,8 +1295,8 @@ 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 = '#ffffff'; - this.minimap.rectangle.strokeColor = '#cccccc'; + this.minimap.rectangle.fillColor = _renkan.options.minimap_background_color; + this.minimap.rectangle.strokeColor = _renkan.options.minimap_border_color; this.minimap.rectangle.strokeWidth = 4; this.minimap.offset = new paper.Point(this.minimap.size.divide(2)); this.minimap.scale = .1; @@ -1702,7 +1641,7 @@ } Rkns.Renderer.Scene.prototype.template = Rkns._.template( - '
    <% if (!options.editor_mode) { %>

    <%- project.get("title") || translate("Untitled project")%>

    ' + '<% if (options.show_top_bar) { %>
    <% if (!options.editor_mode) { %>

    <%- project.get("title") || translate("Untitled project")%>

    ' + '<% } else { %>" placeholder="<%-translate("Untitled project")%>" /><% } %>' + '
    <unknown user>
      ' + '
      <%-translate("Full Screen")%>
      ' @@ -1713,11 +1652,11 @@ + '
      ' + '<%-translate("Renkan \'Drag-to-Add\' bookmarklet")%>
      ' + '
      ' - + '<% } %>' - + '
      ' + + '<% } } %>' + + '
      ' + '<% if (options.show_bins) { %>
      «
      <% } %>' + '
      ">
      ">
      ' - + '
      ' + + '
      ' ); Rkns.Renderer.Scene.prototype.addToBundles = function(_edgeRepr) { @@ -1969,7 +1908,7 @@ this.click_target = _hitResult.item.__representation; if (this.click_target.type === "Node-link-button") { this.removeRepresentationsOfType("editor"); - this.addTempEdge(this.click_target.node_representation, _event.point); + this.addTempEdge(this.click_target.source_representation, _event.point); } } else { this.click_target = null; diff -r ea11e17e0a35 -r 860340d4c645 client/js/twitter-bin.js --- a/client/js/twitter-bin.js Wed Apr 03 16:17:36 2013 +0200 +++ b/client/js/twitter-bin.js Thu Apr 04 15:41:00 2013 +0200 @@ -26,7 +26,7 @@ Rkns.Twitter.Bin.prototype.tweetTemplate = Rkns._.template( '
    • ' + + 'data-title="Tweet by @<%- tweet.from_user %>" data-description="<%-tweet.text%>" data-image="<%- tweet.profile_image_url %>">' + '' + '

      @<%=tweet.from_user%> (<%=tweet.from_user_name%>)

      ' + '

      <%=date%>

      ' diff -r ea11e17e0a35 -r 860340d4c645 client/js/wikipedia-bin.js --- a/client/js/wikipedia-bin.js Wed Apr 03 16:17:36 2013 +0200 +++ b/client/js/wikipedia-bin.js Thu Apr 04 15:41:00 2013 +0200 @@ -36,7 +36,7 @@ Rkns.Wikipedia.Bin.prototype.resultTemplate = Rkns._.template( '
    • ' + + 'data-title="Wikipedia: <%-title%>" data-description="<%-description%>" data-image="<%- Rkns.Utils.getFullURL( static_url + \'img/wikipedia.png\' ) %>">' + '
    • <%=htitle%>

      ' + '

      <%=hdescription%>

      ' ); diff -r ea11e17e0a35 -r 860340d4c645 client/render-test.html --- a/client/render-test.html Wed Apr 03 16:17:36 2013 +0200 +++ b/client/render-test.html Thu Apr 04 15:41:00 2013 +0200 @@ -64,8 +64,7 @@ property_files: [ "data/properties.json" ], user_id: "u-iri", language: "fr", - //clip_node_images: false, - show_node_circles: false + node_fill_color: false }); Rkns.jsonIO(_renkan, { url: "data/simple-persist.php" @@ -73,8 +72,6 @@ }); -