// this script is evaluated on world lo // TODO refactor into a class JournalEntryMorph.sortEntries = function(entries) { return entries.sort(function(a,b) { var s1 = a.sortString(); var s2 = b.sortString(); if( s1 == s2) return 0 ; else if (s1 < s2) return -1; else return +1; }) } JournalEntryMorph.globalInstances = function() { return WorldMorph.current().submorphs.select(function(ea) { return ea.constructor.name == "JournalEntryMorph"}) } moveAllJournalEntriesBy = function(offset) { JournalEntryMorph.globalInstances().each(function(ea) { ea.moveBy(offset)}) } JournalEntryMorph.layoutEntries = function(entries) { var pos = pt(50,120); entries.each(function(ea) { // console.log("pos " + pos) ea.setPosition(pos); pos = pos.addPt(pt(0, 30 + ea.shape.bounds().height)) }) }; JournalEntryMorph.sortAllGlobalEntries = function() { this.layoutEntries(this.sortEntries(this.globalInstances())) }; JournalEntryMorph.sortReverseAllGlobalEntries = function() { this.layoutEntries(this.sortEntries(this.globalInstances()).reverse()) }; JournalEntryMorph.makeNew = function() { var entry = new JournalEntryMorph(); var text = new TextMorph(new Rectangle(20,20,700,300)); text.applyStyle({fillOpacity: 0, borderWidth: 0, fontSize: 18}); text.setTextString(new Date().format("yyyy-mm-dd, ddd")); entry.addMorph(text) entry.openInWorld(); this.sortReverseAllGlobalEntries() }; createJournalButtons = function() { var pane = Morph.makeRectangle() var b = new ScriptButtonMorph(new Rectangle(100,90,100,20)); b.openInWorld() b.setLabel("sort") b.scriptSource = "JournalEntryMorph.sortAllGlobalEntries()" var b2 = new ScriptButtonMorph(new Rectangle(250,90,100,20)); b2.openInWorld() b2.setLabel("reverse sort") b2.scriptSource = "JournalEntryMorph.sortReverseAllGlobalEntries()" var b3 = new ScriptButtonMorph(new Rectangle(375,90,100,20)); b3.openInWorld() b3.setLabel("new entry") b3.scriptSource = "JournalEntryMorph.makeNew()" var b4 = new ScriptButtonMorph(new Rectangle(475,90,100,20)); b4.openInWorld() b4.setLabel("save") b4.scriptSource = "Exporter.saveDocumentToFile(Exporter.shrinkWrapMorph(this), URL.source.filename());" } //createJournalButtons() // empty doit Config.modulesOnWorldLoad.push("lively.WikiWidget")function($super) { $super(new lively.scene.Rectangle(new Rectangle(0,0, 900, 400))); this.setupStyle(); }function() { this.applyStyle({ borderWidth: 3, borderColor: Color.rgb(200,200,220), fill: Color.rgb(245,245,250), fillOpacity: 1, borderRadius: 10}) }function() { return this.submorphs.detect(function(ea) { return /20[0-9][0-9]-[0-9][0-9]-[0-9][0-9].*/.match(ea.textString) }) }function(evt) { return null; }function(value) { if (value && this.scriptSource) { try { // console.log("eval : " + this.scriptSource) eval(this.scriptSource) } catch(e) { console.log("error in script button: " + e + " script: " + this.scriptSource) } } } /* * Date Format 1.2.3 * (c) 2007-2009 Steven Levithan <stevenlevithan.com> * MIT license * * Includes enhancements by Scott Trenda <scott.trenda.net> * and Kris Kowal <cixar.com/~kris.kowal/> * * Accepts a date, a mask, or a date and a mask. * Returns a formatted version of the given date. * The date defaults to the current date/time. * The mask defaults to dateFormat.masks.default. */ // http://blog.stevenlevithan.com/archives/date-time-format var dateFormat = function () { var token = /d{1,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|[LloSZ]|"[^"]*"|'[^']*'/g, timezone = /\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g, timezoneClip = /[^-+\dA-Z]/g, pad = function (val, len) { val = String(val); len = len || 2; while (val.length < len) val = "0" + val; return val; }; // Regexes and supporting functions are cached through closure return function (date, mask, utc) { var dF = dateFormat; // You can't provide utc if you skip other args (use the "UTC:" mask prefix) if (arguments.length == 1 && Object.prototype.toString.call(date) == "[object String]" && !/\d/.test(date)) { mask = date; date = undefined; } // Passing date through Date applies Date.parse, if necessary date = date ? new Date(date) : new Date; if (isNaN(date)) throw SyntaxError("invalid date"); mask = String(dF.masks[mask] || mask || dF.masks["default"]); // Allow setting the utc argument via the mask if (mask.slice(0, 4) == "UTC:") { mask = mask.slice(4); utc = true; } var _ = utc ? "getUTC" : "get", d = date[_ + "Date"](), D = date[_ + "Day"](), m = date[_ + "Month"](), y = date[_ + "FullYear"](), H = date[_ + "Hours"](), M = date[_ + "Minutes"](), s = date[_ + "Seconds"](), L = date[_ + "Milliseconds"](), o = utc ? 0 : date.getTimezoneOffset(), flags = { d: d, dd: pad(d), ddd: dF.i18n.dayNames[D], dddd: dF.i18n.dayNames[D + 7], m: m + 1, mm: pad(m + 1), mmm: dF.i18n.monthNames[m], mmmm: dF.i18n.monthNames[m + 12], yy: String(y).slice(2), yyyy: y, h: H % 12 || 12, hh: pad(H % 12 || 12), H: H, HH: pad(H), M: M, MM: pad(M), s: s, ss: pad(s), l: pad(L, 3), L: pad(L > 99 ? Math.round(L / 10) : L), t: H < 12 ? "a" : "p", tt: H < 12 ? "am" : "pm", T: H < 12 ? "A" : "P", TT: H < 12 ? "AM" : "PM", Z: utc ? "UTC" : (String(date).match(timezone) || [""]).pop().replace(timezoneClip, ""), o: (o > 0 ? "-" : "+") + pad(Math.floor(Math.abs(o) / 60) * 100 + Math.abs(o) % 60, 4), S: ["th", "st", "nd", "rd"][d % 10 > 3 ? 0 : (d % 100 - d % 10 != 10) * d % 10] }; return mask.replace(token, function ($0) { return $0 in flags ? flags[$0] : $0.slice(1, $0.length - 1); }); }; }(); // Some common format strings dateFormat.masks = { "default": "ddd mmm dd yyyy HH:MM:ss", shortDate: "m/d/yy", mediumDate: "mmm d, yyyy", longDate: "mmmm d, yyyy", fullDate: "dddd, mmmm d, yyyy", shortTime: "h:MM TT", mediumTime: "h:MM:ss TT", longTime: "h:MM:ss TT Z", isoDate: "yyyy-mm-dd", isoTime: "HH:MM:ss", isoDateTime: "yyyy-mm-dd'T'HH:MM:ss", isoUtcDateTime: "UTC:yyyy-mm-dd'T'HH:MM:ss'Z'" }; // Internationalization strings dateFormat.i18n = { dayNames: [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ], monthNames: [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ] }; // For convenience... Date.prototype.format = function (mask, utc) { return dateFormat(this, mask, utc); }; node\n- prepareArrayPropertyForSerialization only \tConverter.encodeProperty for items\n\n\n* I will stay polite here ;-)","padding":{"__isSmartRef__":true,"id":624},"textStyle":{"__isSmartRef__":true,"id":625},"undoTextStyle":{"__isSmartRef__":true,"id":641},"lineNumberHint":36,"priorExtent":{"__isSmartRef__":true,"id":657},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"260925:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(19,100)","namespaceURI":null}]}},"616":{"a":1,"b":0,"c":0,"d":1,"e":19,"f":100,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"617":{"x":19,"y":100,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"618":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"619":{"_fill":{"__isSmartRef__":true,"id":620},"_stroke":{"__isSmartRef__":true,"id":621},"_x":0,"_y":0,"_width":860,"_height":629.5333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"860","namespaceURI":null},{"key":"height","value":"629.5333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"620":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"621":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"622":{"_fill":{"__isSmartRef__":true,"id":623},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"623":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"624":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"625":{"runs":[661,20,479,6,78,6,337,13,322,36,187,33,137,6,462],"values":[{"__isSmartRef__":true,"id":626},{"__isSmartRef__":true,"id":627},{"__isSmartRef__":true,"id":628},{"__isSmartRef__":true,"id":629},{"__isSmartRef__":true,"id":630},{"__isSmartRef__":true,"id":631},{"__isSmartRef__":true,"id":632},{"__isSmartRef__":true,"id":633},{"__isSmartRef__":true,"id":634},{"__isSmartRef__":true,"id":635},{"__isSmartRef__":true,"id":636},{"__isSmartRef__":true,"id":637},{"__isSmartRef__":true,"id":638},{"__isSmartRef__":true,"id":639},{"__isSmartRef__":true,"id":640}],"lastIndex":2321,"lastRunIndex":14,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"626":{},"627":{"style":"bold"},"628":{},"629":{"style":"bold"},"630":{},"631":{"style":"bold"},"632":{},"633":{"style":"bold"},"634":{},"635":{"style":"bold"},"636":{},"637":{"style":"bold"},"638":{},"639":{"style":"bold"},"640":{},"641":{"runs":[661,20,479,6,78,6,337,13,322,36,187,33,137,6,462],"values":[{"__isSmartRef__":true,"id":642},{"__isSmartRef__":true,"id":643},{"__isSmartRef__":true,"id":644},{"__isSmartRef__":true,"id":645},{"__isSmartRef__":true,"id":646},{"__isSmartRef__":true,"id":647},{"__isSmartRef__":true,"id":648},{"__isSmartRef__":true,"id":649},{"__isSmartRef__":true,"id":650},{"__isSmartRef__":true,"id":651},{"__isSmartRef__":true,"id":652},{"__isSmartRef__":true,"id":653},{"__isSmartRef__":true,"id":654},{"__isSmartRef__":true,"id":655},{"__isSmartRef__":true,"id":656}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"642":{},"643":{"style":"bold"},"644":{},"645":{"style":"bold"},"646":{},"647":{"style":"bold"},"648":{},"649":{"style":"bold"},"650":{},"651":{"style":"bold"},"652":{},"653":{"style":"bold"},"654":{},"655":{"style":"bold"},"656":{},"657":{"x":842,"y":620.1999918619791,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"658":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":603},"pvtCachedTransform":{"__isSmartRef__":true,"id":659},"origin":{"__isSmartRef__":true,"id":660},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":661},"shape":{"__isSmartRef__":true,"id":662},"textContent":{"__isSmartRef__":true,"id":665},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":666},"textString":"Persistency in Lively","padding":{"__isSmartRef__":true,"id":667},"textStyle":{"__isSmartRef__":true,"id":668},"undoTextStyle":{"__isSmartRef__":true,"id":670},"priorExtent":{"__isSmartRef__":true,"id":672},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"271572:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(19,57)","namespaceURI":null}]}},"659":{"a":1,"b":0,"c":0,"d":1,"e":19,"f":57,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"660":{"x":19,"y":57,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"661":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"662":{"_fill":{"__isSmartRef__":true,"id":663},"_stroke":{"__isSmartRef__":true,"id":664},"_x":0,"_y":0,"_width":348,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"348","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"663":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"664":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"665":{"_fill":{"__isSmartRef__":true,"id":666},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"666":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"667":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"668":{"runs":[21],"values":[{"__isSmartRef__":true,"id":669}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"669":{"style":"bold"},"670":{"runs":[1],"values":[{"__isSmartRef__":true,"id":671}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"671":{"style":"bold"},"672":{"x":324,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"673":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":603},"pvtCachedTransform":{"__isSmartRef__":true,"id":674},"origin":{"__isSmartRef__":true,"id":675},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":676},"shape":{"__isSmartRef__":true,"id":677},"textContent":{"__isSmartRef__":true,"id":680},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":681},"textString":"The Attribute Connection Thing II","padding":{"__isSmartRef__":true,"id":682},"textStyle":{"__isSmartRef__":true,"id":683},"undoTextStyle":{"__isSmartRef__":true,"id":685},"priorExtent":{"__isSmartRef__":true,"id":687},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"271674:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(6,749)","namespaceURI":null}]}},"674":{"a":1,"b":0,"c":0,"d":1,"e":6,"f":749,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"675":{"x":6,"y":749,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"676":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"677":{"_fill":{"__isSmartRef__":true,"id":678},"_stroke":{"__isSmartRef__":true,"id":679},"_x":0,"_y":0,"_width":348,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"348","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"678":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"679":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"680":{"_fill":{"__isSmartRef__":true,"id":681},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"681":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"682":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"683":{"runs":[33],"values":[{"__isSmartRef__":true,"id":684}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"684":{"style":"bold"},"685":{"runs":[31],"values":[{"__isSmartRef__":true,"id":686}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"686":{"style":"bold"},"687":{"x":324,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"688":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":603},"pvtCachedTransform":{"__isSmartRef__":true,"id":689},"origin":{"__isSmartRef__":true,"id":690},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":691},"shape":{"__isSmartRef__":true,"id":692},"textContent":{"__isSmartRef__":true,"id":695},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":696},"lineNumberHint":4,"textString":"I will write more about this but the essential information is that we have a new module AttributeConnection.\nTests and development: ModelRevised.xhtml\nExamples: ConnectExamples.xhtml\nIt can be loaded on demand, so no extensions of the base system were necessary. Serialization works well. (By the way, the serialization uses AttributeConnections to restore AttributeConnections...)","padding":{"__isSmartRef__":true,"id":697},"textStyle":{"__isSmartRef__":true,"id":698},"undoTextStyle":{"__isSmartRef__":true,"id":704},"priorExtent":{"__isSmartRef__":true,"id":710},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"271719:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(15,790)","namespaceURI":null}]}},"689":{"a":1,"b":0,"c":0,"d":1,"e":15,"f":790,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"690":{"x":15,"y":790,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"691":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"692":{"_fill":{"__isSmartRef__":true,"id":693},"_stroke":{"__isSmartRef__":true,"id":694},"_x":0,"_y":0,"_width":860,"_height":91.93333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"860","namespaceURI":null},{"key":"height","value":"91.93333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"693":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"694":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"695":{"_fill":{"__isSmartRef__":true,"id":696},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"696":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"697":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"698":{"runs":[132,18,11,21,199],"values":[{"__isSmartRef__":true,"id":699},{"__isSmartRef__":true,"id":700},{"__isSmartRef__":true,"id":701},{"__isSmartRef__":true,"id":702},{"__isSmartRef__":true,"id":703}],"lastIndex":182,"lastRunIndex":4,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"699":{},"700":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/draft/ModelRevised.xhtml"},"701":{},"702":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/draft/ConnectExamples.xhtml"},"703":{},"704":{"runs":[132,18,11,21,199],"values":[{"__isSmartRef__":true,"id":705},{"__isSmartRef__":true,"id":706},{"__isSmartRef__":true,"id":707},{"__isSmartRef__":true,"id":708},{"__isSmartRef__":true,"id":709}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"705":{},"706":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/draft/ModelRevised.xhtml"},"707":{},"708":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/draft/ConnectExamples.xhtml"},"709":{},"710":{"x":842,"y":82.60000101725261,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"711":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":10728,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"712":{"x":50,"y":10728,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"713":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"714":{"_fill":{"__isSmartRef__":true,"id":715},"_stroke":{"__isSmartRef__":true,"id":716},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"876","namespaceURI":null},{"key":"height","value":"926","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"715":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"716":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"717":{"x":876,"y":926,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"718":{"submorphs":[{"__isSmartRef__":true,"id":719},{"__isSmartRef__":true,"id":730},{"__isSmartRef__":true,"id":745}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":768},"origin":{"__isSmartRef__":true,"id":769},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":770},"shape":{"__isSmartRef__":true,"id":771},"priorExtent":{"__isSmartRef__":true,"id":774},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"273115:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,10301)","namespaceURI":null}]}},"719":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":718},"pvtCachedTransform":{"__isSmartRef__":true,"id":720},"origin":{"__isSmartRef__":true,"id":721},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":722},"shape":{"__isSmartRef__":true,"id":723},"textContent":{"__isSmartRef__":true,"id":726},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":727},"textString":"2010-03-23, Tue","padding":{"__isSmartRef__":true,"id":728},"priorExtent":{"__isSmartRef__":true,"id":729},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"273116:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"720":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"721":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"722":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"723":{"_fill":{"__isSmartRef__":true,"id":724},"_stroke":{"__isSmartRef__":true,"id":725},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"724":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"725":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"726":{"_fill":{"__isSmartRef__":true,"id":727},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"727":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"728":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"729":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"730":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":718},"pvtCachedTransform":{"__isSmartRef__":true,"id":731},"origin":{"__isSmartRef__":true,"id":732},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":733},"shape":{"__isSmartRef__":true,"id":734},"textContent":{"__isSmartRef__":true,"id":737},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":738},"textString":"Bindings","padding":{"__isSmartRef__":true,"id":739},"textStyle":{"__isSmartRef__":true,"id":740},"undoTextStyle":{"__isSmartRef__":true,"id":742},"priorExtent":{"__isSmartRef__":true,"id":744},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"273186:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(16,50)","namespaceURI":null}]}},"731":{"a":1,"b":0,"c":0,"d":1,"e":16,"f":50,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"732":{"x":16,"y":50,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"733":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"734":{"_fill":{"__isSmartRef__":true,"id":735},"_stroke":{"__isSmartRef__":true,"id":736},"_x":0,"_y":0,"_width":136,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"136","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"735":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"736":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"737":{"_fill":{"__isSmartRef__":true,"id":738},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"738":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"739":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"740":{"runs":[8],"values":[{"__isSmartRef__":true,"id":741}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"741":{"style":"bold"},"742":{"runs":[1],"values":[{"__isSmartRef__":true,"id":743}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"743":{"style":"bold"},"744":{"x":112,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"745":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":718},"pvtCachedTransform":{"__isSmartRef__":true,"id":746},"origin":{"__isSmartRef__":true,"id":747},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":748},"shape":{"__isSmartRef__":true,"id":749},"textContent":{"__isSmartRef__":true,"id":752},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":753},"lineNumberHint":16,"textString":"OK, it is done. Examples.\n\nIt works similar to the former addObserver/Model system but without any models and their magic. It is loadable on demand by including the module lively.bindings (no extensions of the base system) and it is persistent.\n\nYou can connect any attribute of an object to an attribute or a method of another object. Object means really any JavaScript object, not just Wrappers/Morphs.\n\nAssume that we have an object 'obj1' with a 'value' attribute and another object 'obj2' with another attribute 'anotherValue'. To connect those two attributes all one has to do is to evaluate connect(obj1, 'value', obj2, 'anotherValue'). 'anotherValue' could also be a method which would then be activated every time 'value' changes.\n\nSomething connections currently don't support is recursive changes. Assume you have an attribute X that is connected to a function Y that directly or indirectly changes X. When you now change X, Y is called and X is changed again -- but Y now won't be updated to avoid an endless recursion. I think this is the best standard behavior. However, I also added support for recursive activations but it is not completely implemented yet (but it would be easy to finish that). You could then either define a limit of recursive activations as a parameter in the connect() function or allow unlimited recursion.\n","padding":{"__isSmartRef__":true,"id":754},"textStyle":{"__isSmartRef__":true,"id":755},"undoTextStyle":{"__isSmartRef__":true,"id":761},"priorExtent":{"__isSmartRef__":true,"id":767},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"273269:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(18,85)","namespaceURI":null}]}},"746":{"a":1,"b":0,"c":0,"d":1,"e":18,"f":85,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"747":{"x":18,"y":85,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"748":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"749":{"_fill":{"__isSmartRef__":true,"id":750},"_stroke":{"__isSmartRef__":true,"id":751},"_x":0,"_y":0,"_width":860,"_height":293.5333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"860","namespaceURI":null},{"key":"height","value":"293.5333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"750":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"751":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"752":{"_fill":{"__isSmartRef__":true,"id":753},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"753":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"754":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"755":{"runs":[16,9,573,44,704],"values":[{"__isSmartRef__":true,"id":756},{"__isSmartRef__":true,"id":757},{"__isSmartRef__":true,"id":758},{"__isSmartRef__":true,"id":759},{"__isSmartRef__":true,"id":760}],"lastIndex":642,"lastRunIndex":4,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"756":{},"757":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/draft/ConnectExamples.xhtml"},"758":{},"759":{"style":"italic"},"760":{},"761":{"runs":[16,9,573,44,704],"values":[{"__isSmartRef__":true,"id":762},{"__isSmartRef__":true,"id":763},{"__isSmartRef__":true,"id":764},{"__isSmartRef__":true,"id":765},{"__isSmartRef__":true,"id":766}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"762":{},"763":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/draft/ConnectExamples.xhtml"},"764":{},"765":{"style":"italic"},"766":{},"767":{"x":842,"y":284.1999918619792,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"768":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":10301,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"769":{"x":50,"y":10301,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"770":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"771":{"_fill":{"__isSmartRef__":true,"id":772},"_stroke":{"__isSmartRef__":true,"id":773},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"887","namespaceURI":null},{"key":"height","value":"397","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"772":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"773":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"774":{"x":887,"y":397,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"775":{"submorphs":[{"__isSmartRef__":true,"id":776},{"__isSmartRef__":true,"id":787}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":814},"origin":{"__isSmartRef__":true,"id":815},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":816},"shape":{"__isSmartRef__":true,"id":817},"priorExtent":{"__isSmartRef__":true,"id":820},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"273949:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,9626)","namespaceURI":null}]}},"776":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":775},"pvtCachedTransform":{"__isSmartRef__":true,"id":777},"origin":{"__isSmartRef__":true,"id":778},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":779},"shape":{"__isSmartRef__":true,"id":780},"textContent":{"__isSmartRef__":true,"id":783},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":784},"textString":"2010-03-25, Thu","padding":{"__isSmartRef__":true,"id":785},"priorExtent":{"__isSmartRef__":true,"id":786},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"273950:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"777":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"778":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"779":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"780":{"_fill":{"__isSmartRef__":true,"id":781},"_stroke":{"__isSmartRef__":true,"id":782},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"781":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"782":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"783":{"_fill":{"__isSmartRef__":true,"id":784},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"784":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"785":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"786":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"787":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":775},"pvtCachedTransform":{"__isSmartRef__":true,"id":788},"origin":{"__isSmartRef__":true,"id":789},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":790},"shape":{"__isSmartRef__":true,"id":791},"textContent":{"__isSmartRef__":true,"id":794},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":795},"textString":"Things done in the last two days:\n\n- Weather project page. Next monday I will guide a workshop for pupils. They are taking part in a programming competition and already reached the last round. So they already know something about programming. In the workshop they should learn something new and have fun. Basically its advertising the HPI. For us it's a great way to see if Lively already is suited for this kind of activity and where problems may arise. Anyway, I plan to let the pupils choose three projects: the weather thingy, drive a car (thanks Jens!), or a Web radio (Felix, thanks for the idea!). Unfortunately we only have 90 minutes... not much time. So everything has to be well prepared and seperated into clearly defined steps. I also have to prepare some kind of introduction... argh, a lot to do :-)\n\n- wiki scripts include now a script for rewriting the URLs of xhtml documents when they in subdirectories. It will fix the links given a relative path to the code base. The script will also add links to config.js files on all levels. Jens uses config.js to store directory/project specific settings.\n\nWe will have to integrate this feature in the page serialization process. Working on this issue also got me thinking about modules again.\n\nThe Best Thingâ„¢, of course, would be to load as much of these files using modules. The module logic can then dynamically resolve the URLs. This means preparing the Lively core. This will be done in the future but it's not yet clear when we/I will finally have time for this.\n\nIt will also increase the flexibility and simplicity of the module system when we finally bind directories and namespaces together. This means that a module('lively.Widgets') lives in the directory {CodeBase}/lively/Widgets.js. module('draft.bindings.Connectors') has the relative path {CodeBase}/draft/bindings/Connectors.js. This will also allow the students to separately use their own JavaScript files and their objects can then automatically be placed in namespaces. E.g. module('projects.group01.ourStuff') will be resolved to {CodeBase}/projects/group01/ourStuff.js. The only problem I see here is that object names still have to include the namespace identifier. If group01 wants to create a new class in their namespace they have to something like this: \nObject.subclass('projects.group01.ourStuff.OurNewClass', {}). Quite verbose. If anybody who reads this has an oppinion/solution for this issue, please let me know :-)\n\nYou might have wondered about the {CodeBase} thingy above. this is the part that is still open and a important TODO item: Introduce a system wide notion of the code base. Currently there is the Config.codeBase setting but that points to the source code directory directly.\n\nThis improvement should just take a day or even less. Stay tuned.","padding":{"__isSmartRef__":true,"id":796},"textStyle":{"__isSmartRef__":true,"id":797},"undoTextStyle":{"__isSmartRef__":true,"id":805},"lineNumberHint":33,"priorExtent":{"__isSmartRef__":true,"id":813},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"273997:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(18,52)","namespaceURI":null}]}},"788":{"a":1,"b":0,"c":0,"d":1,"e":18,"f":52,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"789":{"x":18,"y":52,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"790":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"791":{"_fill":{"__isSmartRef__":true,"id":792},"_stroke":{"__isSmartRef__":true,"id":793},"_x":0,"_y":0,"_width":860,"_height":579.1333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"860","namespaceURI":null},{"key":"height","value":"579.1333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"792":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"793":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"794":{"_fill":{"__isSmartRef__":true,"id":795},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"795":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"796":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"797":{"runs":[37,20,474,11,276,12,1975],"values":[{"__isSmartRef__":true,"id":798},{"__isSmartRef__":true,"id":799},{"__isSmartRef__":true,"id":800},{"__isSmartRef__":true,"id":801},{"__isSmartRef__":true,"id":802},{"__isSmartRef__":true,"id":803},{"__isSmartRef__":true,"id":804}],"lastIndex":830,"lastRunIndex":6,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"798":{},"799":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/BWINF/GruppeXX/wetter.xhtml"},"800":{},"801":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/BWINF/GruppeXX/joe.xhtml"},"802":{},"803":{"color":"blue","link":"http://www.lively-kernel.org/repository/lively-wiki/wikiScripts3.xhtml"},"804":{},"805":{"runs":[37,20,474,11,276,12,1965],"values":[{"__isSmartRef__":true,"id":806},{"__isSmartRef__":true,"id":807},{"__isSmartRef__":true,"id":808},{"__isSmartRef__":true,"id":809},{"__isSmartRef__":true,"id":810},{"__isSmartRef__":true,"id":811},{"__isSmartRef__":true,"id":812}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"806":{},"807":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/BWINF/GruppeXX/wetter.xhtml"},"808":{},"809":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/BWINF/GruppeXX/joe.xhtml"},"810":{},"811":{"color":"blue","link":"http://www.lively-kernel.org/repository/lively-wiki/wikiScripts3.xhtml"},"812":{},"813":{"x":842,"y":569.8000284830729,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"814":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":9626,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"815":{"x":50,"y":9626,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"816":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"817":{"_fill":{"__isSmartRef__":true,"id":818},"_stroke":{"__isSmartRef__":true,"id":819},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"886","namespaceURI":null},{"key":"height","value":"645","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"818":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"819":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"820":{"x":886,"y":645,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"821":{"submorphs":[{"__isSmartRef__":true,"id":822},{"__isSmartRef__":true,"id":833},{"__isSmartRef__":true,"id":856},{"__isSmartRef__":true,"id":871},{"__isSmartRef__":true,"id":890}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":905},"origin":{"__isSmartRef__":true,"id":906},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":907},"shape":{"__isSmartRef__":true,"id":908},"priorExtent":{"__isSmartRef__":true,"id":911},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"283711:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,8804)","namespaceURI":null}]}},"822":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":821},"pvtCachedTransform":{"__isSmartRef__":true,"id":823},"origin":{"__isSmartRef__":true,"id":824},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":825},"shape":{"__isSmartRef__":true,"id":826},"textContent":{"__isSmartRef__":true,"id":829},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":830},"textString":"2010-03-27, Sat","padding":{"__isSmartRef__":true,"id":831},"priorExtent":{"__isSmartRef__":true,"id":832},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"283712:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"823":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"824":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"825":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"826":{"_fill":{"__isSmartRef__":true,"id":827},"_stroke":{"__isSmartRef__":true,"id":828},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"827":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"828":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"829":{"_fill":{"__isSmartRef__":true,"id":830},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"830":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"831":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"832":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"833":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":821},"pvtCachedTransform":{"__isSmartRef__":true,"id":834},"origin":{"__isSmartRef__":true,"id":835},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":836},"shape":{"__isSmartRef__":true,"id":837},"textContent":{"__isSmartRef__":true,"id":840},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":841},"textString":"Interesting workshop idea: build a web chat\n\nThat's why I started to port webcollab. Steps:\n\n1. Get the tests running\n- integrate AsyncTest\n- Have a TestRunner that is capable of displaying async Tests (currently TestRunner2)\n- TestRunner2 is persistent, needed to adapt list morphs (TextListMorph/ListMorph/...) for that.\n\nTODO: cleanup new test logic!\n\n2. Ported lively.Tests.WebCollabAgentTest\n- delay is different but it was easy\n\n3. port lively.webcollab.agent\n- porting was straightforward\n- tests are working :-)\n- TODO cleanup makeRequest --> Use LK logic!","padding":{"__isSmartRef__":true,"id":842},"textStyle":{"__isSmartRef__":true,"id":843},"undoTextStyle":{"__isSmartRef__":true,"id":849},"lineNumberHint":17,"priorExtent":{"__isSmartRef__":true,"id":855},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"283729:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(18,55)","namespaceURI":null}]}},"834":{"a":1,"b":0,"c":0,"d":1,"e":18,"f":55,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"835":{"x":18,"y":55,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"836":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"837":{"_fill":{"__isSmartRef__":true,"id":838},"_stroke":{"__isSmartRef__":true,"id":839},"_x":0,"_y":0,"_width":860,"_height":310.3333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"860","namespaceURI":null},{"key":"height","value":"310.3333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"838":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"839":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"840":{"_fill":{"__isSmartRef__":true,"id":841},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"841":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"842":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"843":{"runs":[324,29,169,24,18],"values":[{"__isSmartRef__":true,"id":844},{"__isSmartRef__":true,"id":845},{"__isSmartRef__":true,"id":846},{"__isSmartRef__":true,"id":847},{"__isSmartRef__":true,"id":848}],"lastIndex":546,"lastRunIndex":4,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"844":{},"845":{"style":"bold"},"846":{},"847":{"style":"bold"},"848":{},"849":{"runs":[316,29,169,24,18],"values":[{"__isSmartRef__":true,"id":850},{"__isSmartRef__":true,"id":851},{"__isSmartRef__":true,"id":852},{"__isSmartRef__":true,"id":853},{"__isSmartRef__":true,"id":854}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"850":{},"851":{"style":"bold"},"852":{},"853":{"style":"bold"},"854":{},"855":{"x":842,"y":301.00001017252606,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"856":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":821},"pvtCachedTransform":{"__isSmartRef__":true,"id":857},"origin":{"__isSmartRef__":true,"id":858},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":859},"shape":{"__isSmartRef__":true,"id":860},"textContent":{"__isSmartRef__":true,"id":863},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":864},"textString":"AsyncTestCase","padding":{"__isSmartRef__":true,"id":865},"textStyle":{"__isSmartRef__":true,"id":866},"undoTextStyle":{"__isSmartRef__":true,"id":868},"priorExtent":{"__isSmartRef__":true,"id":870},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"285455:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(16,373)","namespaceURI":null}]}},"857":{"a":1,"b":0,"c":0,"d":1,"e":16,"f":373,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"858":{"x":16,"y":373,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"859":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"860":{"_fill":{"__isSmartRef__":true,"id":861},"_stroke":{"__isSmartRef__":true,"id":862},"_x":0,"_y":0,"_width":184,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"184","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"861":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"862":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"863":{"_fill":{"__isSmartRef__":true,"id":864},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"864":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"865":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"866":{"runs":[13],"values":[{"__isSmartRef__":true,"id":867}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"867":{"style":"bold"},"868":{"runs":[1],"values":[{"__isSmartRef__":true,"id":869}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"869":{"style":"bold"},"870":{"x":160,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"871":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":821},"pvtCachedTransform":{"__isSmartRef__":true,"id":872},"origin":{"__isSmartRef__":true,"id":873},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":874},"shape":{"__isSmartRef__":true,"id":875},"textContent":{"__isSmartRef__":true,"id":878},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":879},"lineNumberHint":14,"textString":"In one of the steps above I introduced support for asynchronous tests and also extended the normal TestCase. so that tests can give better feedback about their current state.\n\nIt works as follows: Each TestCase has a TestResult object, a currentSelector (test method name), and a statusUpdateFunc. A test can be run with #runTest if it has a currentTestSelector. It will then call #running, run the test and the #success or #failure. In these methods statusUpdateFunc is called. At the end the testResult object is also updated accordingly. If the method #runAll is triggered, new test instances are created for each test selector and #runTest is invoked on each test.\n\nIn an AsyncTestCase things work similar, however, it is ensured that only one test is run at a time. For that each test can signal if it's done. It is required that each tests calls #done in the end or a timeout failure will be thrown and the test will fail. The _maxWaitDelay can be set in the test with #setMaxWaitDelay and is 1000ms by default. Tests that signal #done earlier will shorten the wait delay. In a test this.delay(func, waitMs) can be used to trigger assertions after a period of time. Often, in a delay callback #done will be called.\n\nAsyncTestCase>>runAll is implemented by nesting closures: Assume that a test class has #test1, test2, and test3. The closure that is created will trigger test1, wait until it is done or timed out, then test2 is triggered and so on.\n","padding":{"__isSmartRef__":true,"id":880},"textStyle":{"__isSmartRef__":true,"id":881},"undoTextStyle":{"__isSmartRef__":true,"id":885},"priorExtent":{"__isSmartRef__":true,"id":889},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"285614:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,414)","namespaceURI":null}]}},"872":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":414,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"873":{"x":20,"y":414,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"874":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"875":{"_fill":{"__isSmartRef__":true,"id":876},"_stroke":{"__isSmartRef__":true,"id":877},"_x":0,"_y":0,"_width":860,"_height":259.9333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"860","namespaceURI":null},{"key":"height","value":"259.9333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"876":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"877":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"878":{"_fill":{"__isSmartRef__":true,"id":879},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"879":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"880":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"881":{"runs":[809,4,641],"values":[{"__isSmartRef__":true,"id":882},{"__isSmartRef__":true,"id":883},{"__isSmartRef__":true,"id":884}],"lastIndex":813,"lastRunIndex":2,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"882":{},"883":{"style":"italic"},"884":{},"885":{"runs":[809,4,597],"values":[{"__isSmartRef__":true,"id":886},{"__isSmartRef__":true,"id":887},{"__isSmartRef__":true,"id":888}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"886":{},"887":{"style":"italic"},"888":{},"889":{"x":842,"y":250.59998575846353,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"890":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":821},"pvtCachedTransform":{"__isSmartRef__":true,"id":891},"origin":{"__isSmartRef__":true,"id":892},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":893},"shape":{"__isSmartRef__":true,"id":894},"textContent":{"__isSmartRef__":true,"id":897},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":898},"lineNumberHint":2,"textString":"Other stuff:\nWARNING: TextListItem selection includes a string if item is a string or item.value if item responses true to isListItem. FIXME\n+ duplication of selectLineAt","padding":{"__isSmartRef__":true,"id":899},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":900},"priorExtent":{"__isSmartRef__":true,"id":904},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"289333:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(23,701)","namespaceURI":null}]}},"891":{"a":1,"b":0,"c":0,"d":1,"e":23,"f":701,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"892":{"x":23,"y":701,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"893":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"894":{"_fill":{"__isSmartRef__":true,"id":895},"_stroke":{"__isSmartRef__":true,"id":896},"_x":0,"_y":0,"_width":860,"_height":58.333333333333336,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"860","namespaceURI":null},{"key":"height","value":"58.333333333333336","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"895":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"896":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"897":{"_fill":{"__isSmartRef__":true,"id":898},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"898":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"899":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"900":{"runs":[809,4,597],"values":[{"__isSmartRef__":true,"id":901},{"__isSmartRef__":true,"id":902},{"__isSmartRef__":true,"id":903}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"901":{},"902":{"style":"italic"},"903":{},"904":{"x":842,"y":48.99999872843424,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"905":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":8804,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"906":{"x":50,"y":8804,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"907":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"908":{"_fill":{"__isSmartRef__":true,"id":909},"_stroke":{"__isSmartRef__":true,"id":910},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"889","namespaceURI":null},{"key":"height","value":"792","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"909":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"910":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"911":{"x":889,"y":792,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"912":{"submorphs":[{"__isSmartRef__":true,"id":913},{"__isSmartRef__":true,"id":924},{"__isSmartRef__":true,"id":941},{"__isSmartRef__":true,"id":958}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":973},"origin":{"__isSmartRef__":true,"id":974},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":975},"shape":{"__isSmartRef__":true,"id":976},"priorExtent":{"__isSmartRef__":true,"id":979},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"290059:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,8336)","namespaceURI":null}]}},"913":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":912},"pvtCachedTransform":{"__isSmartRef__":true,"id":914},"origin":{"__isSmartRef__":true,"id":915},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":916},"shape":{"__isSmartRef__":true,"id":917},"textContent":{"__isSmartRef__":true,"id":920},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":921},"textString":"2010-03-28, Sun","padding":{"__isSmartRef__":true,"id":922},"priorExtent":{"__isSmartRef__":true,"id":923},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"290060:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"914":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"915":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"916":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"917":{"_fill":{"__isSmartRef__":true,"id":918},"_stroke":{"__isSmartRef__":true,"id":919},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"918":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"919":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"920":{"_fill":{"__isSmartRef__":true,"id":921},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"921":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"922":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"923":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"924":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":912},"pvtCachedTransform":{"__isSmartRef__":true,"id":925},"origin":{"__isSmartRef__":true,"id":926},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":927},"shape":{"__isSmartRef__":true,"id":928},"textContent":{"__isSmartRef__":true,"id":931},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":932},"textString":"Basics\nMorphic, manipulating, nameing, using morphs in text\nObjects, Object.extend\nfunctions\nClasses","padding":{"__isSmartRef__":true,"id":933},"textStyle":{"__isSmartRef__":true,"id":934},"undoTextStyle":{"__isSmartRef__":true,"id":937},"lineNumberHint":4,"priorExtent":{"__isSmartRef__":true,"id":940},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"290129:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(512,102)","namespaceURI":null}]}},"925":{"a":1,"b":0,"c":0,"d":1,"e":512,"f":102,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"926":{"x":512,"y":102,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"927":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"928":{"_fill":{"__isSmartRef__":true,"id":929},"_stroke":{"__isSmartRef__":true,"id":930},"_x":0,"_y":0,"_width":358,"_height":91.93333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"358","namespaceURI":null},{"key":"height","value":"91.93333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"929":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"930":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"931":{"_fill":{"__isSmartRef__":true,"id":932},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"932":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"933":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"934":{"runs":[6,94],"values":[{"__isSmartRef__":true,"id":935},{"__isSmartRef__":true,"id":936}],"lastIndex":6,"lastRunIndex":1,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"935":{"style":"bold"},"936":{},"937":{"runs":[7,94],"values":[{"__isSmartRef__":true,"id":938},{"__isSmartRef__":true,"id":939}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"938":{"style":"bold"},"939":{},"940":{"x":340,"y":82.60000101725261,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"941":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":912},"pvtCachedTransform":{"__isSmartRef__":true,"id":942},"origin":{"__isSmartRef__":true,"id":943},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":944},"shape":{"__isSmartRef__":true,"id":945},"textContent":{"__isSmartRef__":true,"id":948},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":949},"textString":"Steps\n1 Create and name login Morphs (label user name login btn)\n2 Login logic\n2.1 browse WebCoIlabAgent and show methods\n2.2 create config object with user onLogin\n2.3 Create status text morph\n2.5 onStreamClose > status then re-login\n3 Logout\n3.1 show agent logout\n3.2 agent shouldBeLoggedIn in onLogout onLogin onStreamClose\n3.3 onLogin sets text in status morph\n4 Broadcast\n4.0 explain JSON\n4.1 agent.broadcast({text: 'Ein Test'}) --> no channel\n4.2 add channel to config\n4.3 chatText morph + agent onReceive --> json\n4.4 ClipMorph for text\n5. Task - Create User List (explain list morph for this or use text morph)\n","padding":{"__isSmartRef__":true,"id":950},"textStyle":{"__isSmartRef__":true,"id":951},"undoTextStyle":{"__isSmartRef__":true,"id":954},"lineNumberHint":17,"priorExtent":{"__isSmartRef__":true,"id":957},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"290075:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(29,100)","namespaceURI":null}]}},"942":{"a":1,"b":0,"c":0,"d":1,"e":29,"f":100,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"943":{"x":29,"y":100,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"944":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"945":{"_fill":{"__isSmartRef__":true,"id":946},"_stroke":{"__isSmartRef__":true,"id":947},"_x":0,"_y":0,"_width":483,"_height":310.3333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"483","namespaceURI":null},{"key":"height","value":"310.3333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"946":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"947":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"948":{"_fill":{"__isSmartRef__":true,"id":949},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"949":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"950":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"951":{"runs":[5,614],"values":[{"__isSmartRef__":true,"id":952},{"__isSmartRef__":true,"id":953}],"lastIndex":5,"lastRunIndex":1,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"952":{"style":"bold"},"953":{},"954":{"runs":[5,541],"values":[{"__isSmartRef__":true,"id":955},{"__isSmartRef__":true,"id":956}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"955":{"style":"bold"},"956":{},"957":{"x":465,"y":301.00001017252606,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"958":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":912},"pvtCachedTransform":{"__isSmartRef__":true,"id":959},"origin":{"__isSmartRef__":true,"id":960},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":961},"shape":{"__isSmartRef__":true,"id":962},"textContent":{"__isSmartRef__":true,"id":965},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":966},"textString":"Workshop Preparation","padding":{"__isSmartRef__":true,"id":967},"textStyle":{"__isSmartRef__":true,"id":968},"undoTextStyle":{"__isSmartRef__":true,"id":970},"priorExtent":{"__isSmartRef__":true,"id":972},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"292380:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(22,59)","namespaceURI":null}]}},"959":{"a":1,"b":0,"c":0,"d":1,"e":22,"f":59,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"960":{"x":22,"y":59,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"961":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"962":{"_fill":{"__isSmartRef__":true,"id":963},"_stroke":{"__isSmartRef__":true,"id":964},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"963":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"964":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"965":{"_fill":{"__isSmartRef__":true,"id":966},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"966":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"967":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"968":{"runs":[20],"values":[{"__isSmartRef__":true,"id":969}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"969":{"style":"bold"},"970":{"runs":[19],"values":[{"__isSmartRef__":true,"id":971}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"971":{"style":"bold"},"972":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"973":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":8336,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"974":{"x":50,"y":8336,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"975":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"976":{"_fill":{"__isSmartRef__":true,"id":977},"_stroke":{"__isSmartRef__":true,"id":978},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"889","namespaceURI":null},{"key":"height","value":"438","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"977":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"978":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"979":{"x":889,"y":438,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"980":{"submorphs":[{"__isSmartRef__":true,"id":981},{"__isSmartRef__":true,"id":992},{"__isSmartRef__":true,"id":1011}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1026},"origin":{"__isSmartRef__":true,"id":1027},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1028},"shape":{"__isSmartRef__":true,"id":1029},"priorExtent":{"__isSmartRef__":true,"id":1032},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"292625:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,7897)","namespaceURI":null}]}},"981":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":980},"pvtCachedTransform":{"__isSmartRef__":true,"id":982},"origin":{"__isSmartRef__":true,"id":983},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":984},"shape":{"__isSmartRef__":true,"id":985},"textContent":{"__isSmartRef__":true,"id":988},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":989},"textString":"2010-03-29, Mon","padding":{"__isSmartRef__":true,"id":990},"priorExtent":{"__isSmartRef__":true,"id":991},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"292626:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"982":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"983":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"984":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"985":{"_fill":{"__isSmartRef__":true,"id":986},"_stroke":{"__isSmartRef__":true,"id":987},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"986":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"987":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"988":{"_fill":{"__isSmartRef__":true,"id":989},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"989":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"990":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"991":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"992":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":980},"pvtCachedTransform":{"__isSmartRef__":true,"id":993},"origin":{"__isSmartRef__":true,"id":994},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":995},"shape":{"__isSmartRef__":true,"id":996},"textContent":{"__isSmartRef__":true,"id":999},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1000},"textString":"Today the workshop took place. We had 13 participants (pupils that are currently taking part in in a programming competition) who had already some programming experience and almost half of them had already seen or used JavaScript. In the workshop we developed a chat client together. We were really short of time (90 minutes) but almost all participants managed to have a working chat application in the end :-).\n\nThe application itself was divided in three parts: 1. Login 2. Send messages 3. Receive messages. For each part we first developed the user interface (text and button morphs) and the integrated the logic by extending the WebChatClient in the Local code Browser and adding scripts to the buttons. The integration of graphical UI creation and programmatic UI manipulation feels already really well. Just create your morphs, name them, add some scripts, and you are ready to go :-)\n\nI observed a few problems when errors occured and a world was not recoverable (because the user hadn't saved). Maybe we should add an autosave feature.\n\nThe feedback I got from the participants was quite positive. I had the feeling (and they confirmed that in the end) that they enjoyed the programming session. Some of them criticized instablilities - oh they are very right... \nUnfortunately I hadn't the time to take photos.\n","padding":{"__isSmartRef__":true,"id":1001},"textStyle":{"__isSmartRef__":true,"id":1002},"undoTextStyle":{"__isSmartRef__":true,"id":1006},"lineNumberHint":15,"priorExtent":{"__isSmartRef__":true,"id":1010},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"292648:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(25,105)","namespaceURI":null}]}},"993":{"a":1,"b":0,"c":0,"d":1,"e":25,"f":105,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"994":{"x":25,"y":105,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"995":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"996":{"_fill":{"__isSmartRef__":true,"id":997},"_stroke":{"__isSmartRef__":true,"id":998},"_x":0,"_y":0,"_width":829,"_height":276.7333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"276.7333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"997":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"998":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"999":{"_fill":{"__isSmartRef__":true,"id":1000},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1000":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1001":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1002":{"runs":[262,11,1049],"values":[{"__isSmartRef__":true,"id":1003},{"__isSmartRef__":true,"id":1004},{"__isSmartRef__":true,"id":1005}],"lastIndex":273,"lastRunIndex":2,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1003":{},"1004":{"color":"blue","link":"www.lively-kernel.org/repository/webwerkstatt/BWINF/chat-prototype.xhtml"},"1005":{},"1006":{"runs":[262,11,1047],"values":[{"__isSmartRef__":true,"id":1007},{"__isSmartRef__":true,"id":1008},{"__isSmartRef__":true,"id":1009}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1007":{},"1008":{"color":"blue","link":"www.lively-kernel.org/repository/webwerkstatt/BWINF/chat-prototype.xhtml"},"1009":{},"1010":{"x":811,"y":267.40000406901044,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1011":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":980},"pvtCachedTransform":{"__isSmartRef__":true,"id":1012},"origin":{"__isSmartRef__":true,"id":1013},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1014},"shape":{"__isSmartRef__":true,"id":1015},"textContent":{"__isSmartRef__":true,"id":1018},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1019},"textString":"Workshop Review","padding":{"__isSmartRef__":true,"id":1020},"textStyle":{"__isSmartRef__":true,"id":1021},"undoTextStyle":{"__isSmartRef__":true,"id":1023},"priorExtent":{"__isSmartRef__":true,"id":1025},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"299460:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(21,62)","namespaceURI":null}]}},"1012":{"a":1,"b":0,"c":0,"d":1,"e":21,"f":62,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1013":{"x":21,"y":62,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1014":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1015":{"_fill":{"__isSmartRef__":true,"id":1016},"_stroke":{"__isSmartRef__":true,"id":1017},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1016":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1017":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1018":{"_fill":{"__isSmartRef__":true,"id":1019},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1019":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1020":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1021":{"runs":[15],"values":[{"__isSmartRef__":true,"id":1022}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1022":{"style":"bold"},"1023":{"runs":[10],"values":[{"__isSmartRef__":true,"id":1024}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1024":{"style":"bold"},"1025":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1026":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":7897,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1027":{"x":50,"y":7897,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1028":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1029":{"_fill":{"__isSmartRef__":true,"id":1030},"_stroke":{"__isSmartRef__":true,"id":1031},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"890","namespaceURI":null},{"key":"height","value":"409","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1030":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1031":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1032":{"x":890,"y":409,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1033":{"submorphs":[{"__isSmartRef__":true,"id":1034},{"__isSmartRef__":true,"id":1045},{"__isSmartRef__":true,"id":1060}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1075},"origin":{"__isSmartRef__":true,"id":1076},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1077},"shape":{"__isSmartRef__":true,"id":1078},"priorExtent":{"__isSmartRef__":true,"id":1081},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"299854:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,7639)","namespaceURI":null}]}},"1034":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1033},"pvtCachedTransform":{"__isSmartRef__":true,"id":1035},"origin":{"__isSmartRef__":true,"id":1036},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1037},"shape":{"__isSmartRef__":true,"id":1038},"textContent":{"__isSmartRef__":true,"id":1041},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1042},"textString":"2010-03-30, Tue","padding":{"__isSmartRef__":true,"id":1043},"priorExtent":{"__isSmartRef__":true,"id":1044},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"299855:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1035":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1036":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1037":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1038":{"_fill":{"__isSmartRef__":true,"id":1039},"_stroke":{"__isSmartRef__":true,"id":1040},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1039":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1040":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1041":{"_fill":{"__isSmartRef__":true,"id":1042},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1042":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1043":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1044":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1045":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1033},"pvtCachedTransform":{"__isSmartRef__":true,"id":1046},"origin":{"__isSmartRef__":true,"id":1047},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1048},"shape":{"__isSmartRef__":true,"id":1049},"textContent":{"__isSmartRef__":true,"id":1052},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1053},"textString":"Extending the Module System","padding":{"__isSmartRef__":true,"id":1054},"textStyle":{"__isSmartRef__":true,"id":1055},"undoTextStyle":{"__isSmartRef__":true,"id":1057},"priorExtent":{"__isSmartRef__":true,"id":1059},"lineNumberHint":1,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"300642:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(17,56)","namespaceURI":null}]}},"1046":{"a":1,"b":0,"c":0,"d":1,"e":17,"f":56,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1047":{"x":17,"y":56,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1048":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1049":{"_fill":{"__isSmartRef__":true,"id":1050},"_stroke":{"__isSmartRef__":true,"id":1051},"_x":0,"_y":0,"_width":312,"_height":59.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"59.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1050":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1051":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1052":{"_fill":{"__isSmartRef__":true,"id":1053},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1053":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1054":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1055":{"runs":[27],"values":[{"__isSmartRef__":true,"id":1056}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1056":{"style":"bold"},"1057":{"runs":[22],"values":[{"__isSmartRef__":true,"id":1058}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1058":{"style":"bold"},"1059":{"x":288,"y":45.99999872843424,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1060":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1033},"pvtCachedTransform":{"__isSmartRef__":true,"id":1061},"origin":{"__isSmartRef__":true,"id":1062},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1063},"shape":{"__isSmartRef__":true,"id":1064},"textContent":{"__isSmartRef__":true,"id":1067},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1068},"lineNumberHint":5,"textString":"Bringing namespace and directories together... finally.\nThis is something I had planned since October 2008 and now I can finally get it done :-) I described the idea already in the post a week ago (2010-03-25). Something like module('lively.Tests.LKWikiTest') should be resolved to {CodeBase}/lively/Tests/LKWikiTest.js. This makes individual code extensions much easier because new source code files can be easily introduced.\n\nThe change seems to work nicely. Tomorrow I will have to push it to Webwerkstatt.","padding":{"__isSmartRef__":true,"id":1069},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1070},"priorExtent":{"__isSmartRef__":true,"id":1074},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"300663:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(22,99)","namespaceURI":null}]}},"1061":{"a":1,"b":0,"c":0,"d":1,"e":22,"f":99,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1062":{"x":22,"y":99,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1063":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1064":{"_fill":{"__isSmartRef__":true,"id":1065},"_stroke":{"__isSmartRef__":true,"id":1066},"_x":0,"_y":0,"_width":869,"_height":108.73333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"869","namespaceURI":null},{"key":"height","value":"108.73333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1065":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1066":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1067":{"_fill":{"__isSmartRef__":true,"id":1068},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1068":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1069":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1070":{"runs":[262,11,1047],"values":[{"__isSmartRef__":true,"id":1071},{"__isSmartRef__":true,"id":1072},{"__isSmartRef__":true,"id":1073}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1071":{},"1072":{"color":"blue","link":"www.lively-kernel.org/repository/webwerkstatt/BWINF/chat-prototype.xhtml"},"1073":{},"1074":{"x":851,"y":99.39999643961589,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1075":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":7639,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1076":{"x":50,"y":7639,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1077":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1078":{"_fill":{"__isSmartRef__":true,"id":1079},"_stroke":{"__isSmartRef__":true,"id":1080},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"899","namespaceURI":null},{"key":"height","value":"228","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1079":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1080":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1081":{"x":899,"y":228,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1082":{"submorphs":[{"__isSmartRef__":true,"id":1083},{"__isSmartRef__":true,"id":1094},{"__isSmartRef__":true,"id":1109},{"__isSmartRef__":true,"id":1128},{"__isSmartRef__":true,"id":1143},{"__isSmartRef__":true,"id":1158}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1173},"origin":{"__isSmartRef__":true,"id":1174},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1175},"shape":{"__isSmartRef__":true,"id":1176},"priorExtent":{"__isSmartRef__":true,"id":1179},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"300554:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,6802)","namespaceURI":null}]}},"1083":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1082},"pvtCachedTransform":{"__isSmartRef__":true,"id":1084},"origin":{"__isSmartRef__":true,"id":1085},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1086},"shape":{"__isSmartRef__":true,"id":1087},"textContent":{"__isSmartRef__":true,"id":1090},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1091},"textString":"2010-03-31, Wed","padding":{"__isSmartRef__":true,"id":1092},"priorExtent":{"__isSmartRef__":true,"id":1093},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"300555:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1084":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1085":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1086":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1087":{"_fill":{"__isSmartRef__":true,"id":1088},"_stroke":{"__isSmartRef__":true,"id":1089},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1088":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1089":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1090":{"_fill":{"__isSmartRef__":true,"id":1091},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1091":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1092":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1093":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1094":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1082},"pvtCachedTransform":{"__isSmartRef__":true,"id":1095},"origin":{"__isSmartRef__":true,"id":1096},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1097},"shape":{"__isSmartRef__":true,"id":1098},"textContent":{"__isSmartRef__":true,"id":1101},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1102},"lineNumberHint":19,"textString":"OK, I added the changes to the module system to webwerkstatt. Things seem to run fine again. I did the following steps:\n- remove Scratch.js from XHTMLs\n- remove Examples.js from XHTMLs\n- added Config.codeBase=Config.getDocumentDirectory()+.... to XHTMLs before localconfig.js. \n- removed all config.js files\n- removed lib/ dir, the code now sits in lively/\n- [NOT DONE YET] extended saving mechanism to ensure correct codebase/js paths\n\nAlong the the way I also encountered and fixed a couple of bugs. Something I didn't fix:\n- Fabrik in a subworld in index.xhtml throws some error with this.world().firstHand()\n- phone os broken (but already way back, from rev 2242->2243, November 2008!)\n\nI also removed a lot of cruft. In the lib/ dir there were files duplicated from somewhere else or just garbage. I removed:\nLkCompat.js, CopBenchmark.js, Layers.js, jquery.js, fx.js, FabrikExtensions.js, FabrikExtensionsTest.js, ClamatoParser.js, ClamatoParser.txt, ClamatoTest.js, LayersTest.js, ParserSupport.js, lk-js-parser.txt, testaudio.js, localconfig_wiki.js, localconfignew.js, wiki_localconfig.js, MathUuid.js (do we need that?), test.js (hmmm calender stuff... still required?), FabrikTestNew.js, LayersTest2.js, sampleDOM.xml\n\n@Jens check if cop html stuff works\n@me integrate div challenge and Kernel stuff (phone, svg files, etc)\n","padding":{"__isSmartRef__":true,"id":1103},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1104},"priorExtent":{"__isSmartRef__":true,"id":1108},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"299891:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,98)","namespaceURI":null}]}},"1095":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":98,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1096":{"x":20,"y":98,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1097":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1098":{"_fill":{"__isSmartRef__":true,"id":1099},"_stroke":{"__isSmartRef__":true,"id":1100},"_x":0,"_y":0,"_width":829,"_height":343.93333333333345,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"343.93333333333345","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1099":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1100":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1101":{"_fill":{"__isSmartRef__":true,"id":1102},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1102":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1103":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1104":{"runs":[262,11,1047],"values":[{"__isSmartRef__":true,"id":1105},{"__isSmartRef__":true,"id":1106},{"__isSmartRef__":true,"id":1107}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1105":{},"1106":{"color":"blue","link":"www.lively-kernel.org/repository/webwerkstatt/BWINF/chat-prototype.xhtml"},"1107":{},"1108":{"x":811,"y":334.59998575846356,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1109":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1082},"pvtCachedTransform":{"__isSmartRef__":true,"id":1110},"origin":{"__isSmartRef__":true,"id":1111},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1112},"shape":{"__isSmartRef__":true,"id":1113},"textContent":{"__isSmartRef__":true,"id":1116},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1117},"textString":"Maybe the best thing would really be to abandon the other repositories and hav just one... It's quite complicated to keep all sources in sync.\n\nAh, another thing. Array now has a method #forEachShowingPorgress. First parameter> an object that understands #setValue (e.g. a ProgressbarMorph), second parameter: iterator function. This way it's easy to iterate over collections and show the progress :-)\n\nrelativePath\n\nconverted webwerkstatt ... remove lib/","padding":{"__isSmartRef__":true,"id":1118},"textStyle":{"__isSmartRef__":true,"id":1119},"undoTextStyle":{"__isSmartRef__":true,"id":1123},"lineNumberHint":8,"priorExtent":{"__isSmartRef__":true,"id":1127},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"303419:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,570)","namespaceURI":null}]}},"1110":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":570,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1111":{"x":20,"y":570,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1112":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1113":{"_fill":{"__isSmartRef__":true,"id":1114},"_stroke":{"__isSmartRef__":true,"id":1115},"_x":0,"_y":0,"_width":869,"_height":159.13333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"869","namespaceURI":null},{"key":"height","value":"159.13333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1114":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1115":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1116":{"_fill":{"__isSmartRef__":true,"id":1117},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1117":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1118":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1119":{"runs":[262,11,182],"values":[{"__isSmartRef__":true,"id":1120},{"__isSmartRef__":true,"id":1121},{"__isSmartRef__":true,"id":1122}],"lastIndex":273,"lastRunIndex":2,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1120":{},"1121":{"color":"blue","link":"www.lively-kernel.org/repository/webwerkstatt/BWINF/chat-prototype.xhtml"},"1122":{},"1123":{"runs":[262,11,182],"values":[{"__isSmartRef__":true,"id":1124},{"__isSmartRef__":true,"id":1125},{"__isSmartRef__":true,"id":1126}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1124":{},"1125":{"color":"blue","link":"www.lively-kernel.org/repository/webwerkstatt/BWINF/chat-prototype.xhtml"},"1126":{},"1127":{"x":851,"y":149.79999796549478,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1128":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1082},"pvtCachedTransform":{"__isSmartRef__":true,"id":1129},"origin":{"__isSmartRef__":true,"id":1130},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1131},"shape":{"__isSmartRef__":true,"id":1132},"textContent":{"__isSmartRef__":true,"id":1135},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1136},"textString":"Cleaning Up Webwerkstatt","padding":{"__isSmartRef__":true,"id":1137},"textStyle":{"__isSmartRef__":true,"id":1138},"undoTextStyle":{"__isSmartRef__":true,"id":1140},"priorExtent":{"__isSmartRef__":true,"id":1142},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"305252:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(15,53)","namespaceURI":null}]}},"1129":{"a":1,"b":0,"c":0,"d":1,"e":15,"f":53,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1130":{"x":15,"y":53,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1131":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1132":{"_fill":{"__isSmartRef__":true,"id":1133},"_stroke":{"__isSmartRef__":true,"id":1134},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1133":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1134":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1135":{"_fill":{"__isSmartRef__":true,"id":1136},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1136":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1137":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1138":{"runs":[24],"values":[{"__isSmartRef__":true,"id":1139}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1139":{"style":"bold"},"1140":{"runs":[23],"values":[{"__isSmartRef__":true,"id":1141}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1141":{"style":"bold"},"1142":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1143":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1082},"pvtCachedTransform":{"__isSmartRef__":true,"id":1144},"origin":{"__isSmartRef__":true,"id":1145},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1146},"shape":{"__isSmartRef__":true,"id":1147},"textContent":{"__isSmartRef__":true,"id":1150},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1151},"lineNumberHint":4,"textString":"=== div ===\ndivChallenge.html\ndivChallengeWorld.svg\ndivtest.html\nsimpleMain.js\n","padding":{"__isSmartRef__":true,"id":1152},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1153},"priorExtent":{"__isSmartRef__":true,"id":1157},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"308319:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(26,440)","namespaceURI":null}]}},"1144":{"a":1,"b":0,"c":0,"d":1,"e":26,"f":440,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1145":{"x":26,"y":440,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1146":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1147":{"_fill":{"__isSmartRef__":true,"id":1148},"_stroke":{"__isSmartRef__":true,"id":1149},"_x":0,"_y":0,"_width":204,"_height":91.93333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"204","namespaceURI":null},{"key":"height","value":"91.93333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1148":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1149":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1150":{"_fill":{"__isSmartRef__":true,"id":1151},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1151":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1152":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1153":{"runs":[262,11,1047],"values":[{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1155},{"__isSmartRef__":true,"id":1156}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1154":{},"1155":{"color":"blue","link":"www.lively-kernel.org/repository/webwerkstatt/BWINF/chat-prototype.xhtml"},"1156":{},"1157":{"x":186,"y":82.60000101725261,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1158":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1082},"pvtCachedTransform":{"__isSmartRef__":true,"id":1159},"origin":{"__isSmartRef__":true,"id":1160},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1161},"shape":{"__isSmartRef__":true,"id":1162},"textContent":{"__isSmartRef__":true,"id":1165},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1166},"lineNumberHint":4,"textString":"=== kernel stuff ===\nDefinitions.svg\nLively.svg\nPen.lkml\nphone.bsl","padding":{"__isSmartRef__":true,"id":1167},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1168},"priorExtent":{"__isSmartRef__":true,"id":1172},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"308546:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(189,443)","namespaceURI":null}]}},"1159":{"a":1,"b":0,"c":0,"d":1,"e":189,"f":443,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1160":{"x":189,"y":443,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1161":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1162":{"_fill":{"__isSmartRef__":true,"id":1163},"_stroke":{"__isSmartRef__":true,"id":1164},"_x":0,"_y":0,"_width":204,"_height":91.93333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"204","namespaceURI":null},{"key":"height","value":"91.93333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1163":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1164":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1165":{"_fill":{"__isSmartRef__":true,"id":1166},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1166":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1167":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1168":{"runs":[262,11,1047],"values":[{"__isSmartRef__":true,"id":1169},{"__isSmartRef__":true,"id":1170},{"__isSmartRef__":true,"id":1171}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1169":{},"1170":{"color":"blue","link":"www.lively-kernel.org/repository/webwerkstatt/BWINF/chat-prototype.xhtml"},"1171":{},"1172":{"x":186,"y":82.60000101725261,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1173":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":6802,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1174":{"x":50,"y":6802,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1175":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1176":{"_fill":{"__isSmartRef__":true,"id":1177},"_stroke":{"__isSmartRef__":true,"id":1178},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"891","namespaceURI":null},{"key":"height","value":"807","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1177":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1178":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1179":{"x":891,"y":807,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1180":{"submorphs":[{"__isSmartRef__":true,"id":1181},{"__isSmartRef__":true,"id":1192},{"__isSmartRef__":true,"id":1207}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1222},"origin":{"__isSmartRef__":true,"id":1223},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1224},"shape":{"__isSmartRef__":true,"id":1225},"priorExtent":{"__isSmartRef__":true,"id":1228},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"305226:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,6560)","namespaceURI":null}]}},"1181":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1180},"pvtCachedTransform":{"__isSmartRef__":true,"id":1182},"origin":{"__isSmartRef__":true,"id":1183},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1184},"shape":{"__isSmartRef__":true,"id":1185},"textContent":{"__isSmartRef__":true,"id":1188},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1189},"textString":"2010-04-01, Thu","padding":{"__isSmartRef__":true,"id":1190},"priorExtent":{"__isSmartRef__":true,"id":1191},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"305227:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1182":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1183":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1184":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1185":{"_fill":{"__isSmartRef__":true,"id":1186},"_stroke":{"__isSmartRef__":true,"id":1187},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1186":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1187":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1188":{"_fill":{"__isSmartRef__":true,"id":1189},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1189":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1190":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1191":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1192":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1180},"pvtCachedTransform":{"__isSmartRef__":true,"id":1193},"origin":{"__isSmartRef__":true,"id":1194},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1195},"shape":{"__isSmartRef__":true,"id":1196},"textContent":{"__isSmartRef__":true,"id":1199},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1200},"textString":"Documentation Creation","padding":{"__isSmartRef__":true,"id":1201},"textStyle":{"__isSmartRef__":true,"id":1202},"undoTextStyle":{"__isSmartRef__":true,"id":1204},"priorExtent":{"__isSmartRef__":true,"id":1206},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"299912:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(19,55)","namespaceURI":null}]}},"1193":{"a":1,"b":0,"c":0,"d":1,"e":19,"f":55,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1194":{"x":19,"y":55,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1195":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1196":{"_fill":{"__isSmartRef__":true,"id":1197},"_stroke":{"__isSmartRef__":true,"id":1198},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1197":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1198":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1199":{"_fill":{"__isSmartRef__":true,"id":1200},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1200":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1201":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1202":{"runs":[22],"values":[{"__isSmartRef__":true,"id":1203}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1203":{"style":"bold"},"1204":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1205}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1205":{"style":"bold"},"1206":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1207":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1180},"pvtCachedTransform":{"__isSmartRef__":true,"id":1208},"origin":{"__isSmartRef__":true,"id":1209},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1210},"shape":{"__isSmartRef__":true,"id":1211},"textContent":{"__isSmartRef__":true,"id":1214},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1215},"lineNumberHint":5,"textString":"Let's create some documentation...\n\n1. Examine parsing result\nProblems I see: some functions/objects/namespaces and most important comments are not parsed correctly (and are recognized as 'unknown'). Let's see if I can improve that...\n\n","padding":{"__isSmartRef__":true,"id":1216},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1217},"priorExtent":{"__isSmartRef__":true,"id":1221},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"305267:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(23,98)","namespaceURI":null}]}},"1208":{"a":1,"b":0,"c":0,"d":1,"e":23,"f":98,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1209":{"x":23,"y":98,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1210":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1211":{"_fill":{"__isSmartRef__":true,"id":1212},"_stroke":{"__isSmartRef__":true,"id":1213},"_x":0,"_y":0,"_width":829,"_height":108.73333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"108.73333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1212":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1213":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1214":{"_fill":{"__isSmartRef__":true,"id":1215},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1215":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1216":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1217":{"runs":[262,11,1047],"values":[{"__isSmartRef__":true,"id":1218},{"__isSmartRef__":true,"id":1219},{"__isSmartRef__":true,"id":1220}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1218":{},"1219":{"color":"blue","link":"www.lively-kernel.org/repository/webwerkstatt/BWINF/chat-prototype.xhtml"},"1220":{},"1221":{"x":811,"y":99.39999643961589,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1222":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":6560,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1223":{"x":50,"y":6560,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1224":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1225":{"_fill":{"__isSmartRef__":true,"id":1226},"_stroke":{"__isSmartRef__":true,"id":1227},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"896","namespaceURI":null},{"key":"height","value":"212","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1226":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1227":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1228":{"x":896,"y":212,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1229":{"submorphs":[{"__isSmartRef__":true,"id":1230},{"__isSmartRef__":true,"id":1241},{"__isSmartRef__":true,"id":1256}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1269},"origin":{"__isSmartRef__":true,"id":1270},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1271},"shape":{"__isSmartRef__":true,"id":1272},"priorExtent":{"__isSmartRef__":true,"id":1275},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"309782:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,4634)","namespaceURI":null}]}},"1230":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1229},"pvtCachedTransform":{"__isSmartRef__":true,"id":1231},"origin":{"__isSmartRef__":true,"id":1232},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1233},"shape":{"__isSmartRef__":true,"id":1234},"textContent":{"__isSmartRef__":true,"id":1237},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1238},"textString":"2010-04-02, Fri","padding":{"__isSmartRef__":true,"id":1239},"priorExtent":{"__isSmartRef__":true,"id":1240},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"309783:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1231":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1232":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1233":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1234":{"_fill":{"__isSmartRef__":true,"id":1235},"_stroke":{"__isSmartRef__":true,"id":1236},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1235":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1236":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1237":{"_fill":{"__isSmartRef__":true,"id":1238},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1238":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1239":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1240":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1241":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1229},"pvtCachedTransform":{"__isSmartRef__":true,"id":1242},"origin":{"__isSmartRef__":true,"id":1243},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1244},"shape":{"__isSmartRef__":true,"id":1245},"textContent":{"__isSmartRef__":true,"id":1248},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1249},"lineNumberHint":105,"textString":"It's really hard to find things. At least for me without a guide. We need a \"Hacker's guide to LK\". It would document...\n\nQ. How are the namespaces/modules set up.\nA. The basic idea is that the namespaces and the directory structure where the code/data is stored in should be the same. There exists a code base URL, it is defined by Config.codeBase. This is the root directory. The namespace equivalent is Global. Then there are subdirectories, e.g. lively/ and JavaScript files in there are interpreted as modules with the namespace lively.Example.\n\nThis scheme allows us to:\n1. Factor our code base nicely. If you want to try out something without changing the core, you cn just create a new subdirectory and define and extend what you need in there.\n2. Allows asynchronous file loading.\n3. Something that's not implemented yet but that would be extremely useful is the following. Assume that you have a world, open a system browser, then save the world (and afterwards the cheerleader... a joke for Jens ;-). The browser is defined in the module lively.ide. The moment you clicked on 'System code browser' in the world menu this file was loaded on demand, it wasn't loaded by default. What happens now when you reload the world? An error will occur saying something like it cannot find lively.ide.BrowserPanel. The world is broken because the browser definitions were not loaded. You have to manually add the lively.ide requirement in a Wiki code browser from another world to fix it. We could implement a scheme that loads those requirements automatically. We just need to look at the class name lively.ide.BrowserPanel and notice that lively.ide isn't loaded yet, so let's do that before trying to deserialize that thing.\n\nThe follwing issues exist:\n1. Each file as to declare it's module manually. For Examples.js it is 'module(\"lively.Examples\").requires().toRun(function() { ...definitions of lively.Examples...})'. I think this isn't a problem because when you create a new file with Lively we can ensure a correct header (is on my TODO list).\n2. In a file you can are not forced to use the namespace of the module. For example, ClockMorph is defined in lively/Examples.js (the module has the namspace lively.Examples). However, ClockMorph will still live in the Global namespace since its definition is 'Morph.subclass(\"ClockMorph\", {...' and not 'Morph.subclass(\"lively.Examples.ClockMorph\", {...'. The fact that you are able to extend other namspaces is, I think, not a problem. You can, e.g., also extend the class Morph anywhere you want just by doing Morph.addMethods(...). The problem is more that you explicitly have to use the namespace in the definition.\nAnd, to come back to point 3 above: When you open a page that doesn't load lively.Examples by default, create a ClockMorph and save the world then the deserialization mechanism described above won't work because we cannot determine from the ClockMorph's name in which module it's living.\nIf you have any thoughts about that I'm very interested to hear those.\n3. In some places in lively namespaces are used that do not correspond to a module. E.g. there exists this lively.lang.Execution namespace. This is old code and should be refactored.\n\n====================================================================\n\nQ. How to navigate/use namespaces/modules.\nA.\n- To interactively load a module do: module('lively.ide').load() or require('lively.ide').toRun(function() { /*code in here depends on lively.ide*/ }).\n- Get all the classes: module('lively.ide').classes() or lively.ide.classes()\n- Inner namspaces: lively.subNamespaces()\n- All functions: lively.ide.functions()\nAll of the three methods above can be called with the parameter true to recursively gather the objects.\n- To persistently add a module to a world (because the world requires it): Open a Local code browser, click on 'local requirements' and add module names to the array.\n\nThis doesn't answer how to search in the source code. Currently you can search for a selected world in by hitting alt+w. The problem: only the currently loaded sources are searched. Parsing all the sources takes 30 secs or more. We should find a solution for that problem. I have some ideas but let's talk about that later.\n\n====================================================================\n\nQ. How to drill down from the world to an object of some type (this would have allowed me to inspect my SystemBrowser instance without having to start with its window frame)\n- Click inspect in the morph menu.\n- if a morph has a name (either choose Properties...->edit name... from the morph menu or call the #setName method on a morph) you can get access the morph with $morph('nameOfTheMorph')\n- To access a model of something like the System code browser:\n'Widget' subclasses are our currently used as 'models' (actually the Widget has the role of a Presenter as in the Model-View-Presenter pattern). A Widget is responsible for creating it's view (the morphs) in a #buildView method that normally returns a Panel morph. The Panel morph, in turn, is than wrapped in a WindowMorph.\nHow to access the model/Widget if you just have the WindowMorph? windowMorph.targetMorph.ownerWidget. #targetMorph gives you the morph that was returned from #buildView (the panel). #ownerWidget is automatically set and is a reference to the Widget.\n\nExample. Access the 'model' of the System code browser: Right click on the WindowMorph of the browser and choose inspect. In the Inspector evaluate 'this.targetMorph.ownerWidget'. You will get an instance of lively.ide.SystemBrowser.\n\n====================================================================\n\nQ. How to inspect the value of any doit. I see now it is Simplelnspector.inspectObj(expr), but that's a lot to type especially having to put parens around it. Should at least be .inspectMe. In Squeak it's so easy because you can use cmd-i to inspect, just like cmd-d to doit\nA. Jens and I defined a handy inspect function in Fabrik.js. I just moved it to Core.js. now you can evaluate inspect(someObj) and an inspector morph will open in the world. Adding a shortcut for it shouldn't be a problem.\n\nTwo other things I find very convenient when inspecting objects: Evaluating Properties.all() and Functions.all() to just get a list of what attributes/methods an object has.\n\n====================================================================\n\nQ. inspect-selection is nice in the inspector, but faster would be second click goes down a level, and there's an item at the top for \nA. I think Jens has this on his TODO list but I don't know when he will implement it.\n\n====================================================================\n\nQ. Our current windows are a mess! It is much simpler in Squeak, where there is a model accessible from both the panel in the window and from the window itself. That would allow the blue button to offer 'inspect model'. My original SimpleBrowser was, I think, much simpler to understand as code and much simpler to snoop around with an inspector. We need to fix this fairly soon for at least a couple of simple windows so that students have a couple of models that show decent style.\nA. I think most of the complex applications in LK are using Widget classes as described above. My oppinion is that this works quite well, view and logic are separated, the widget still has control over the view generation. If we abandon the old model system and just use connect() to bind the widget and the morph together than this is quite understandable way of doing it.\n\n====================================================================\n\nQ. We need a help window for command characters that shows both what is available and how they may work differently in different browsers or different platforms. I realize it is not simple to do the right thing in all cases, but if the help window tells the truth, it's a huge help.\nA. I'm not sure if I understand what you mean. Do you mean copy/paste and such commands?\n","padding":{"__isSmartRef__":true,"id":1250},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1251},"priorExtent":{"__isSmartRef__":true,"id":1255},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"309812:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(26,84)","namespaceURI":null}]}},"1242":{"a":1,"b":0,"c":0,"d":1,"e":26,"f":84,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1243":{"x":26,"y":84,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1244":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1245":{"_fill":{"__isSmartRef__":true,"id":1246},"_stroke":{"__isSmartRef__":true,"id":1247},"_x":0,"_y":0,"_width":829,"_height":1788.7333333333304,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"1788.7333333333304","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1246":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1247":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1248":{"_fill":{"__isSmartRef__":true,"id":1249},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1249":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1250":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1251":{"runs":[262,11,1047],"values":[{"__isSmartRef__":true,"id":1252},{"__isSmartRef__":true,"id":1253},{"__isSmartRef__":true,"id":1254}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1252":{},"1253":{"color":"blue","link":"www.lively-kernel.org/repository/webwerkstatt/BWINF/chat-prototype.xhtml"},"1254":{},"1255":{"x":811,"y":1779.3999430338542,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1256":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1229},"pvtCachedTransform":{"__isSmartRef__":true,"id":1257},"origin":{"__isSmartRef__":true,"id":1258},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1259},"shape":{"__isSmartRef__":true,"id":1260},"textContent":{"__isSmartRef__":true,"id":1263},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1264},"textString":"FAQ from Dan","padding":{"__isSmartRef__":true,"id":1265},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1266},"priorExtent":{"__isSmartRef__":true,"id":1268},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"309856:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,50)","namespaceURI":null}]}},"1257":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":50,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1258":{"x":20,"y":50,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1259":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1260":{"_fill":{"__isSmartRef__":true,"id":1261},"_stroke":{"__isSmartRef__":true,"id":1262},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1261":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1262":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1263":{"_fill":{"__isSmartRef__":true,"id":1264},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1264":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1265":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1266":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1267}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1267":{"style":"bold"},"1268":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1269":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":4634,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1270":{"x":50,"y":4634,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1271":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1272":{"_fill":{"__isSmartRef__":true,"id":1273},"_stroke":{"__isSmartRef__":true,"id":1274},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"900","namespaceURI":null},{"key":"height","value":"1896","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1273":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1274":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1275":{"x":900,"y":1896,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1276":{"submorphs":[{"__isSmartRef__":true,"id":1277},{"__isSmartRef__":true,"id":1288},{"__isSmartRef__":true,"id":1301}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1316},"origin":{"__isSmartRef__":true,"id":1317},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1318},"shape":{"__isSmartRef__":true,"id":1319},"priorExtent":{"__isSmartRef__":true,"id":1322},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"331528:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,4368)","namespaceURI":null}]}},"1277":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1276},"pvtCachedTransform":{"__isSmartRef__":true,"id":1278},"origin":{"__isSmartRef__":true,"id":1279},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1280},"shape":{"__isSmartRef__":true,"id":1281},"textContent":{"__isSmartRef__":true,"id":1284},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1285},"textString":"2010-04-06, Tue","padding":{"__isSmartRef__":true,"id":1286},"priorExtent":{"__isSmartRef__":true,"id":1287},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"331529:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1278":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1279":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1280":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1281":{"_fill":{"__isSmartRef__":true,"id":1282},"_stroke":{"__isSmartRef__":true,"id":1283},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1282":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1283":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1284":{"_fill":{"__isSmartRef__":true,"id":1285},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1285":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1286":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1287":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1288":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1276},"pvtCachedTransform":{"__isSmartRef__":true,"id":1289},"origin":{"__isSmartRef__":true,"id":1290},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1291},"shape":{"__isSmartRef__":true,"id":1292},"textContent":{"__isSmartRef__":true,"id":1295},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1296},"textString":"Things done","padding":{"__isSmartRef__":true,"id":1297},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1298},"priorExtent":{"__isSmartRef__":true,"id":1300},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"331554:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(29,51)","namespaceURI":null}]}},"1289":{"a":1,"b":0,"c":0,"d":1,"e":29,"f":51,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1290":{"x":29,"y":51,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1291":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1292":{"_fill":{"__isSmartRef__":true,"id":1293},"_stroke":{"__isSmartRef__":true,"id":1294},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1293":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1294":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1295":{"_fill":{"__isSmartRef__":true,"id":1296},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1296":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1297":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1298":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1299}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1299":{"style":"bold"},"1300":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1301":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1276},"pvtCachedTransform":{"__isSmartRef__":true,"id":1302},"origin":{"__isSmartRef__":true,"id":1303},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1304},"shape":{"__isSmartRef__":true,"id":1305},"textContent":{"__isSmartRef__":true,"id":1308},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1309},"lineNumberHint":6,"textString":"- Click on a link and hold meta down: open link in new window\n- Extended #forEachShowingProgress. Parameters now:\n\t1. progressBar\n\t2. iterator function\n\t3. label function (gets current item and should return a string that is then used as a label for the progress bar\n\t4. Function that is called when forEach is done\n- TextMorph>>emphasizeAll and TextMorph>>emphasizeFromTo","padding":{"__isSmartRef__":true,"id":1310},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1311},"priorExtent":{"__isSmartRef__":true,"id":1315},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"331615:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(35,84)","namespaceURI":null}]}},"1302":{"a":1,"b":0,"c":0,"d":1,"e":35,"f":84,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1303":{"x":35,"y":84,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1304":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1305":{"_fill":{"__isSmartRef__":true,"id":1306},"_stroke":{"__isSmartRef__":true,"id":1307},"_x":0,"_y":0,"_width":829,"_height":125.53333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"125.53333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1306":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1307":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1308":{"_fill":{"__isSmartRef__":true,"id":1309},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1309":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1310":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1311":{"runs":[262,11,1047],"values":[{"__isSmartRef__":true,"id":1312},{"__isSmartRef__":true,"id":1313},{"__isSmartRef__":true,"id":1314}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1312":{},"1313":{"color":"blue","link":"www.lively-kernel.org/repository/webwerkstatt/BWINF/chat-prototype.xhtml"},"1314":{},"1315":{"x":811,"y":116.1999994913737,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1316":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":4368,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1317":{"x":50,"y":4368,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1318":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1319":{"_fill":{"__isSmartRef__":true,"id":1320},"_stroke":{"__isSmartRef__":true,"id":1321},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"902","namespaceURI":null},{"key":"height","value":"236","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1320":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1321":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1322":{"x":902,"y":236,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1323":{"submorphs":[{"__isSmartRef__":true,"id":1324},{"__isSmartRef__":true,"id":1335},{"__isSmartRef__":true,"id":1358}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1371},"origin":{"__isSmartRef__":true,"id":1372},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1373},"shape":{"__isSmartRef__":true,"id":1374},"priorExtent":{"__isSmartRef__":true,"id":1377},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"333018:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,4133)","namespaceURI":null}]}},"1324":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1323},"pvtCachedTransform":{"__isSmartRef__":true,"id":1325},"origin":{"__isSmartRef__":true,"id":1326},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1327},"shape":{"__isSmartRef__":true,"id":1328},"textContent":{"__isSmartRef__":true,"id":1331},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1332},"textString":"2010-04-07, Wed","padding":{"__isSmartRef__":true,"id":1333},"priorExtent":{"__isSmartRef__":true,"id":1334},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"333019:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1325":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1326":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1327":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1328":{"_fill":{"__isSmartRef__":true,"id":1329},"_stroke":{"__isSmartRef__":true,"id":1330},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1329":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1330":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1331":{"_fill":{"__isSmartRef__":true,"id":1332},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1332":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1333":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1334":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1335":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1323},"pvtCachedTransform":{"__isSmartRef__":true,"id":1336},"origin":{"__isSmartRef__":true,"id":1337},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1338},"shape":{"__isSmartRef__":true,"id":1339},"textContent":{"__isSmartRef__":true,"id":1342},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1343},"textString":"- Fixed load all browser command (jslint.js did break it in Safari and there was a bug labeling the progress bar)\n- added two benchmark pages (1 2)\n- migrated Lively Wiki to the new sources, Phil Weaver's worlds are still not running... OK, they are running a bit now...\n- there is a really annoying bug in the ChunkParser: how to decide if 'x / 3 + 4 / 5' is not a regular expression when you don't have an AST?","padding":{"__isSmartRef__":true,"id":1344},"textStyle":{"__isSmartRef__":true,"id":1345},"undoTextStyle":{"__isSmartRef__":true,"id":1351},"lineNumberHint":4,"priorExtent":{"__isSmartRef__":true,"id":1357},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"333260:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(29,82)","namespaceURI":null}]}},"1336":{"a":1,"b":0,"c":0,"d":1,"e":29,"f":82,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1337":{"x":29,"y":82,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1338":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1339":{"_fill":{"__isSmartRef__":true,"id":1340},"_stroke":{"__isSmartRef__":true,"id":1341},"_x":0,"_y":0,"_width":829,"_height":91.93333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"91.93333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1340":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1341":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1342":{"_fill":{"__isSmartRef__":true,"id":1343},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1343":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1344":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1345":{"runs":[143,1,1,1,267],"values":[{"__isSmartRef__":true,"id":1346},{"__isSmartRef__":true,"id":1347},{"__isSmartRef__":true,"id":1348},{"__isSmartRef__":true,"id":1349},{"__isSmartRef__":true,"id":1350}],"lastIndex":146,"lastRunIndex":4,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1346":{},"1347":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/benchmarks/benchmark1.xhtml"},"1348":{},"1349":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/benchmarks/benchmark2.xhtml"},"1350":{},"1351":{"runs":[143,1,1,1,234],"values":[{"__isSmartRef__":true,"id":1352},{"__isSmartRef__":true,"id":1353},{"__isSmartRef__":true,"id":1354},{"__isSmartRef__":true,"id":1355},{"__isSmartRef__":true,"id":1356}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1352":{},"1353":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/benchmarks/benchmark1.xhtml"},"1354":{},"1355":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/benchmarks/benchmark2.xhtml"},"1356":{},"1357":{"x":811,"y":82.60000101725261,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1358":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1323},"pvtCachedTransform":{"__isSmartRef__":true,"id":1359},"origin":{"__isSmartRef__":true,"id":1360},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1361},"shape":{"__isSmartRef__":true,"id":1362},"textContent":{"__isSmartRef__":true,"id":1365},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1366},"textString":"Things done","padding":{"__isSmartRef__":true,"id":1367},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1368},"priorExtent":{"__isSmartRef__":true,"id":1370},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"333243:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(18,48)","namespaceURI":null}]}},"1359":{"a":1,"b":0,"c":0,"d":1,"e":18,"f":48,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1360":{"x":18,"y":48,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1361":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1362":{"_fill":{"__isSmartRef__":true,"id":1363},"_stroke":{"__isSmartRef__":true,"id":1364},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1363":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1364":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1365":{"_fill":{"__isSmartRef__":true,"id":1366},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1366":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1367":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1368":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1369}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1369":{"style":"bold"},"1370":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1371":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":4133,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1372":{"x":50,"y":4133,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1373":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1374":{"_fill":{"__isSmartRef__":true,"id":1375},"_stroke":{"__isSmartRef__":true,"id":1376},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"897","namespaceURI":null},{"key":"height","value":"205","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1375":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1376":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1377":{"x":897,"y":205,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1378":{"submorphs":[{"__isSmartRef__":true,"id":1379},{"__isSmartRef__":true,"id":1390},{"__isSmartRef__":true,"id":1403}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1418},"origin":{"__isSmartRef__":true,"id":1419},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1420},"shape":{"__isSmartRef__":true,"id":1421},"priorExtent":{"__isSmartRef__":true,"id":1424},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"336116:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,3891)","namespaceURI":null}]}},"1379":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1378},"pvtCachedTransform":{"__isSmartRef__":true,"id":1380},"origin":{"__isSmartRef__":true,"id":1381},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1382},"shape":{"__isSmartRef__":true,"id":1383},"textContent":{"__isSmartRef__":true,"id":1386},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1387},"textString":"2010-04-09, Fri","padding":{"__isSmartRef__":true,"id":1388},"priorExtent":{"__isSmartRef__":true,"id":1389},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"336117:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1380":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1381":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1382":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1383":{"_fill":{"__isSmartRef__":true,"id":1384},"_stroke":{"__isSmartRef__":true,"id":1385},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1384":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1385":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1386":{"_fill":{"__isSmartRef__":true,"id":1387},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1387":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1388":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1389":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1390":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1378},"pvtCachedTransform":{"__isSmartRef__":true,"id":1391},"origin":{"__isSmartRef__":true,"id":1392},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1393},"shape":{"__isSmartRef__":true,"id":1394},"textContent":{"__isSmartRef__":true,"id":1397},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1398},"textString":"Things done","padding":{"__isSmartRef__":true,"id":1399},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1400},"priorExtent":{"__isSmartRef__":true,"id":1402},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"336136:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(14,47)","namespaceURI":null}]}},"1391":{"a":1,"b":0,"c":0,"d":1,"e":14,"f":47,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1392":{"x":14,"y":47,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1393":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1394":{"_fill":{"__isSmartRef__":true,"id":1395},"_stroke":{"__isSmartRef__":true,"id":1396},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1395":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1396":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1397":{"_fill":{"__isSmartRef__":true,"id":1398},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1398":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1399":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1400":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1401}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1401":{"style":"bold"},"1402":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1403":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1378},"pvtCachedTransform":{"__isSmartRef__":true,"id":1404},"origin":{"__isSmartRef__":true,"id":1405},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1406},"shape":{"__isSmartRef__":true,"id":1407},"textContent":{"__isSmartRef__":true,"id":1410},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1411},"lineNumberHint":5,"textString":"- indent/outdent selection with cmd+[ and cmd+]\n- comment/uncomment selection with cmd+/\n- fix for bug when editing old local code changes (source couldn't be changed, modification was just appended)\n- fixed annoying Text bug: when you started typing and then selected something with the keyboad (using shift) the selection start was not at the cursor position but at the position of the last mouse click or where the cursor was when it was moved with arrow keys","padding":{"__isSmartRef__":true,"id":1412},"textStyle":{"__isSmartRef__":true,"id":1413},"undoTextStyle":{"__isSmartRef__":true,"id":1415},"priorExtent":{"__isSmartRef__":true,"id":1417},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"336155:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(24,77)","namespaceURI":null}]}},"1404":{"a":1,"b":0,"c":0,"d":1,"e":24,"f":77,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1405":{"x":24,"y":77,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1406":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1407":{"_fill":{"__isSmartRef__":true,"id":1408},"_stroke":{"__isSmartRef__":true,"id":1409},"_x":0,"_y":0,"_width":829,"_height":108.73333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"108.73333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1408":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1409":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1410":{"_fill":{"__isSmartRef__":true,"id":1411},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1411":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1412":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1413":{"runs":[462],"values":[{"__isSmartRef__":true,"id":1414}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1414":{},"1415":{"runs":[462],"values":[{"__isSmartRef__":true,"id":1416}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1416":{},"1417":{"x":811,"y":99.39999643961589,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1418":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":3891,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1419":{"x":50,"y":3891,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1420":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1421":{"_fill":{"__isSmartRef__":true,"id":1422},"_stroke":{"__isSmartRef__":true,"id":1423},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"893","namespaceURI":null},{"key":"height","value":"212","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1422":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1423":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1424":{"x":893,"y":212,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1425":{"submorphs":[{"__isSmartRef__":true,"id":1426},{"__isSmartRef__":true,"id":1437},{"__isSmartRef__":true,"id":1450},{"__isSmartRef__":true,"id":1463},{"__isSmartRef__":true,"id":1480}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1495},"origin":{"__isSmartRef__":true,"id":1496},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1497},"shape":{"__isSmartRef__":true,"id":1498},"priorExtent":{"__isSmartRef__":true,"id":1501},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"337965:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,3576)","namespaceURI":null}]}},"1426":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1425},"pvtCachedTransform":{"__isSmartRef__":true,"id":1427},"origin":{"__isSmartRef__":true,"id":1428},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1429},"shape":{"__isSmartRef__":true,"id":1430},"textContent":{"__isSmartRef__":true,"id":1433},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1434},"textString":"2010-04-11, Sun","padding":{"__isSmartRef__":true,"id":1435},"priorExtent":{"__isSmartRef__":true,"id":1436},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"337966:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1427":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1428":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1429":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1430":{"_fill":{"__isSmartRef__":true,"id":1431},"_stroke":{"__isSmartRef__":true,"id":1432},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1431":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1432":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1433":{"_fill":{"__isSmartRef__":true,"id":1434},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1434":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1435":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1436":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1437":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1425},"pvtCachedTransform":{"__isSmartRef__":true,"id":1438},"origin":{"__isSmartRef__":true,"id":1439},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1440},"shape":{"__isSmartRef__":true,"id":1441},"textContent":{"__isSmartRef__":true,"id":1444},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1445},"textString":"WTF?","padding":{"__isSmartRef__":true,"id":1446},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1447},"priorExtent":{"__isSmartRef__":true,"id":1449},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"338012:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(17,52)","namespaceURI":null}]}},"1438":{"a":1,"b":0,"c":0,"d":1,"e":17,"f":52,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1439":{"x":17,"y":52,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1440":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1441":{"_fill":{"__isSmartRef__":true,"id":1442},"_stroke":{"__isSmartRef__":true,"id":1443},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1442":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1443":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1444":{"_fill":{"__isSmartRef__":true,"id":1445},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1445":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1446":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1447":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1448}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1448":{"style":"bold"},"1449":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1450":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1425},"pvtCachedTransform":{"__isSmartRef__":true,"id":1451},"origin":{"__isSmartRef__":true,"id":1452},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1453},"shape":{"__isSmartRef__":true,"id":1454},"textContent":{"__isSmartRef__":true,"id":1457},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1458},"textString":"Things done","padding":{"__isSmartRef__":true,"id":1459},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1460},"priorExtent":{"__isSmartRef__":true,"id":1462},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"338606:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(15,165)","namespaceURI":null}]}},"1451":{"a":1,"b":0,"c":0,"d":1,"e":15,"f":165,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1452":{"x":15,"y":165,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1453":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1454":{"_fill":{"__isSmartRef__":true,"id":1455},"_stroke":{"__isSmartRef__":true,"id":1456},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1455":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1456":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1457":{"_fill":{"__isSmartRef__":true,"id":1458},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1458":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1459":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1460":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1461}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1461":{"style":"bold"},"1462":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1463":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1425},"pvtCachedTransform":{"__isSmartRef__":true,"id":1464},"origin":{"__isSmartRef__":true,"id":1465},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1466},"shape":{"__isSmartRef__":true,"id":1467},"textContent":{"__isSmartRef__":true,"id":1470},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1471},"textString":"- refactored PromptDialogMorph\n- wrote XMLConverter that can convert XML->JSON and JSON->XML\n- wrote HTML generator\n- started documentation creation","padding":{"__isSmartRef__":true,"id":1472},"textStyle":{"__isSmartRef__":true,"id":1473},"undoTextStyle":{"__isSmartRef__":true,"id":1477},"lineNumberHint":3,"priorExtent":{"__isSmartRef__":true,"id":1479},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"338623:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(19,198)","namespaceURI":null}]}},"1464":{"a":1,"b":0,"c":0,"d":1,"e":19,"f":198,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1465":{"x":19,"y":198,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1466":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1467":{"_fill":{"__isSmartRef__":true,"id":1468},"_stroke":{"__isSmartRef__":true,"id":1469},"_x":0,"_y":0,"_width":829,"_height":75.13333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"75.13333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1468":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1469":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1470":{"_fill":{"__isSmartRef__":true,"id":1471},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1471":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1472":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1473":{"runs":[126,13,9],"values":[{"__isSmartRef__":true,"id":1474},{"__isSmartRef__":true,"id":1475},{"__isSmartRef__":true,"id":1476}],"lastIndex":139,"lastRunIndex":2,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1474":{},"1475":{"color":"blue","link":"doc/index.html"},"1476":{},"1477":{"runs":[126],"values":[{"__isSmartRef__":true,"id":1478}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1478":{},"1479":{"x":811,"y":65.7999979654948,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1480":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1425},"pvtCachedTransform":{"__isSmartRef__":true,"id":1481},"origin":{"__isSmartRef__":true,"id":1482},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1483},"shape":{"__isSmartRef__":true,"id":1484},"textContent":{"__isSmartRef__":true,"id":1487},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1488},"textString":"xml = stringToXML('')\nxml.childElementCount // returns 0\nxml.childNodes.length // returns 1","padding":{"__isSmartRef__":true,"id":1489},"textStyle":{"__isSmartRef__":true,"id":1490},"undoTextStyle":{"__isSmartRef__":true,"id":1492},"lineNumberHint":2,"priorExtent":{"__isSmartRef__":true,"id":1494},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"337980:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,90)","namespaceURI":null}]}},"1481":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":90,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1482":{"x":20,"y":90,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1483":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1484":{"_fill":{"__isSmartRef__":true,"id":1485},"_stroke":{"__isSmartRef__":true,"id":1486},"_x":0,"_y":0,"_width":829,"_height":58.333333333333336,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"58.333333333333336","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1485":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1486":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1487":{"_fill":{"__isSmartRef__":true,"id":1488},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1488":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1489":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1490":{"runs":[122],"values":[{"__isSmartRef__":true,"id":1491}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1491":{},"1492":{"runs":[122],"values":[{"__isSmartRef__":true,"id":1493}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1493":{},"1494":{"x":811,"y":48.99999872843424,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1495":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":3576,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1496":{"x":50,"y":3576,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1497":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1498":{"_fill":{"__isSmartRef__":true,"id":1499},"_stroke":{"__isSmartRef__":true,"id":1500},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"894","namespaceURI":null},{"key":"height","value":"285","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1499":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1500":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1501":{"x":894,"y":285,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1502":{"submorphs":[{"__isSmartRef__":true,"id":1503},{"__isSmartRef__":true,"id":1514}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1529},"origin":{"__isSmartRef__":true,"id":1530},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1531},"shape":{"__isSmartRef__":true,"id":1532},"priorExtent":{"__isSmartRef__":true,"id":1535},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"341565:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,3399)","namespaceURI":null}]}},"1503":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1502},"pvtCachedTransform":{"__isSmartRef__":true,"id":1504},"origin":{"__isSmartRef__":true,"id":1505},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1506},"shape":{"__isSmartRef__":true,"id":1507},"textContent":{"__isSmartRef__":true,"id":1510},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1511},"textString":"2010-04-13, Tue","padding":{"__isSmartRef__":true,"id":1512},"priorExtent":{"__isSmartRef__":true,"id":1513},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"341566:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1504":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1505":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1506":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1507":{"_fill":{"__isSmartRef__":true,"id":1508},"_stroke":{"__isSmartRef__":true,"id":1509},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1508":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1509":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1510":{"_fill":{"__isSmartRef__":true,"id":1511},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1511":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1512":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1513":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1514":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1502},"pvtCachedTransform":{"__isSmartRef__":true,"id":1515},"origin":{"__isSmartRef__":true,"id":1516},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1517},"shape":{"__isSmartRef__":true,"id":1518},"textContent":{"__isSmartRef__":true,"id":1521},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1522},"textString":"Operation logging in Lively:\n- Gather operations of pages (like a change log) and send them regularly to the server per user\n- Server stores them in CouchDB","padding":{"__isSmartRef__":true,"id":1523},"textStyle":{"__isSmartRef__":true,"id":1524},"undoTextStyle":{"__isSmartRef__":true,"id":1526},"lineNumberHint":2,"priorExtent":{"__isSmartRef__":true,"id":1528},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"341585:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,61)","namespaceURI":null}]}},"1515":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":61,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1516":{"x":20,"y":61,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1517":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1518":{"_fill":{"__isSmartRef__":true,"id":1519},"_stroke":{"__isSmartRef__":true,"id":1520},"_x":0,"_y":0,"_width":829,"_height":58.333333333333336,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"58.333333333333336","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1519":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1520":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1521":{"_fill":{"__isSmartRef__":true,"id":1522},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1522":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1523":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1524":{"runs":[156],"values":[{"__isSmartRef__":true,"id":1525}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1525":{},"1526":{"runs":[125],"values":[{"__isSmartRef__":true,"id":1527}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1527":{},"1528":{"x":811,"y":48.99999872843424,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1529":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":3399,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1530":{"x":50,"y":3399,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1531":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1532":{"_fill":{"__isSmartRef__":true,"id":1533},"_stroke":{"__isSmartRef__":true,"id":1534},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"897","namespaceURI":null},{"key":"height","value":"147","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1533":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1534":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1535":{"x":897,"y":147,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1536":{"submorphs":[{"__isSmartRef__":true,"id":1537},{"__isSmartRef__":true,"id":1548},{"__isSmartRef__":true,"id":1561},{"__isSmartRef__":true,"id":1576},{"__isSmartRef__":true,"id":1589}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1604},"origin":{"__isSmartRef__":true,"id":1605},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1606},"shape":{"__isSmartRef__":true,"id":1607},"priorExtent":{"__isSmartRef__":true,"id":1610},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"343165:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,3155)","namespaceURI":null}]}},"1537":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1536},"pvtCachedTransform":{"__isSmartRef__":true,"id":1538},"origin":{"__isSmartRef__":true,"id":1539},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1540},"shape":{"__isSmartRef__":true,"id":1541},"textContent":{"__isSmartRef__":true,"id":1544},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1545},"textString":"2010-04-19, Mon","padding":{"__isSmartRef__":true,"id":1546},"priorExtent":{"__isSmartRef__":true,"id":1547},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"343166:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1538":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1539":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1540":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1541":{"_fill":{"__isSmartRef__":true,"id":1542},"_stroke":{"__isSmartRef__":true,"id":1543},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1542":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1543":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1544":{"_fill":{"__isSmartRef__":true,"id":1545},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1545":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1546":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1547":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1548":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1536},"pvtCachedTransform":{"__isSmartRef__":true,"id":1549},"origin":{"__isSmartRef__":true,"id":1550},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1551},"shape":{"__isSmartRef__":true,"id":1552},"textContent":{"__isSmartRef__":true,"id":1555},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1556},"textString":"Things done","padding":{"__isSmartRef__":true,"id":1557},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1558},"priorExtent":{"__isSmartRef__":true,"id":1560},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"343197:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,52)","namespaceURI":null}]}},"1549":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":52,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1550":{"x":20,"y":52,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1551":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1552":{"_fill":{"__isSmartRef__":true,"id":1553},"_stroke":{"__isSmartRef__":true,"id":1554},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1553":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1554":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1555":{"_fill":{"__isSmartRef__":true,"id":1556},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1556":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1557":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1558":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1559}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1559":{"style":"bold"},"1560":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1561":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1536},"pvtCachedTransform":{"__isSmartRef__":true,"id":1562},"origin":{"__isSmartRef__":true,"id":1563},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1564},"shape":{"__isSmartRef__":true,"id":1565},"textContent":{"__isSmartRef__":true,"id":1568},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1569},"lineNumberHint":1,"textString":"- fix Loader.scriptElementLinksTo. Currently it uses just file name t compare. When two modules with the same base name are required then this fails!!!","padding":{"__isSmartRef__":true,"id":1570},"textStyle":{"__isSmartRef__":true,"id":1571},"undoTextStyle":{"__isSmartRef__":true,"id":1573},"priorExtent":{"__isSmartRef__":true,"id":1575},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"343854:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(30,162)","namespaceURI":null}]}},"1562":{"a":1,"b":0,"c":0,"d":1,"e":30,"f":162,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1563":{"x":30,"y":162,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1564":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1565":{"_fill":{"__isSmartRef__":true,"id":1566},"_stroke":{"__isSmartRef__":true,"id":1567},"_x":0,"_y":0,"_width":829,"_height":41.53333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"41.53333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1566":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1567":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1568":{"_fill":{"__isSmartRef__":true,"id":1569},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(239,0,60)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1569":{"r":0.9372549019607843,"g":0,"b":0.23529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1570":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1571":{"runs":[151],"values":[{"__isSmartRef__":true,"id":1572}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1572":{},"1573":{"runs":[34],"values":[{"__isSmartRef__":true,"id":1574}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1574":{},"1575":{"x":811,"y":32.199999491373696,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1576":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1536},"pvtCachedTransform":{"__isSmartRef__":true,"id":1577},"origin":{"__isSmartRef__":true,"id":1578},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1579},"shape":{"__isSmartRef__":true,"id":1580},"textContent":{"__isSmartRef__":true,"id":1583},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1584},"textString":"Things not done (but very important)","padding":{"__isSmartRef__":true,"id":1585},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1586},"priorExtent":{"__isSmartRef__":true,"id":1588},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"343863:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(17,123)","namespaceURI":null}]}},"1577":{"a":1,"b":0,"c":0,"d":1,"e":17,"f":123,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1578":{"x":17,"y":123,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1579":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1580":{"_fill":{"__isSmartRef__":true,"id":1581},"_stroke":{"__isSmartRef__":true,"id":1582},"_x":0,"_y":0,"_width":367,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"367","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1581":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1582":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1583":{"_fill":{"__isSmartRef__":true,"id":1584},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1584":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1585":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1586":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1587}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1587":{"style":"bold"},"1588":{"x":343,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1589":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1536},"pvtCachedTransform":{"__isSmartRef__":true,"id":1590},"origin":{"__isSmartRef__":true,"id":1591},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1592},"shape":{"__isSmartRef__":true,"id":1593},"textContent":{"__isSmartRef__":true,"id":1596},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1597},"textString":"- addModule in SystemBrowser fixed","padding":{"__isSmartRef__":true,"id":1598},"textStyle":{"__isSmartRef__":true,"id":1599},"undoTextStyle":{"__isSmartRef__":true,"id":1601},"priorExtent":{"__isSmartRef__":true,"id":1603},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"343287:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(21,85)","namespaceURI":null}]}},"1590":{"a":1,"b":0,"c":0,"d":1,"e":21,"f":85,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1591":{"x":21,"y":85,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1592":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1593":{"_fill":{"__isSmartRef__":true,"id":1594},"_stroke":{"__isSmartRef__":true,"id":1595},"_x":0,"_y":0,"_width":829,"_height":24.733333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"24.733333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1594":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1595":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1596":{"_fill":{"__isSmartRef__":true,"id":1597},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1597":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1598":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1599":{"runs":[34],"values":[{"__isSmartRef__":true,"id":1600}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1600":{},"1601":{"runs":[3],"values":[{"__isSmartRef__":true,"id":1602}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1602":{},"1603":{"x":811,"y":15.40000025431315,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1604":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":3155,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1605":{"x":50,"y":3155,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1606":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1607":{"_fill":{"__isSmartRef__":true,"id":1608},"_stroke":{"__isSmartRef__":true,"id":1609},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"891","namespaceURI":null},{"key":"height","value":"214","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1608":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1609":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1610":{"x":891,"y":214,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1611":{"submorphs":[{"__isSmartRef__":true,"id":1612},{"__isSmartRef__":true,"id":1623},{"__isSmartRef__":true,"id":1636},{"__isSmartRef__":true,"id":1652},{"__isSmartRef__":true,"id":1665}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1680},"origin":{"__isSmartRef__":true,"id":1681},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1682},"shape":{"__isSmartRef__":true,"id":1683},"priorExtent":{"__isSmartRef__":true,"id":1686},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"344789:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,2896)","namespaceURI":null}]}},"1612":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1611},"pvtCachedTransform":{"__isSmartRef__":true,"id":1613},"origin":{"__isSmartRef__":true,"id":1614},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1615},"shape":{"__isSmartRef__":true,"id":1616},"textContent":{"__isSmartRef__":true,"id":1619},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1620},"textString":"2010-04-20, Tue","padding":{"__isSmartRef__":true,"id":1621},"priorExtent":{"__isSmartRef__":true,"id":1622},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"344790:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1613":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1614":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1615":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1616":{"_fill":{"__isSmartRef__":true,"id":1617},"_stroke":{"__isSmartRef__":true,"id":1618},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1617":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1618":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1619":{"_fill":{"__isSmartRef__":true,"id":1620},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1620":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1621":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1622":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1623":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1611},"pvtCachedTransform":{"__isSmartRef__":true,"id":1624},"origin":{"__isSmartRef__":true,"id":1625},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1626},"shape":{"__isSmartRef__":true,"id":1627},"textContent":{"__isSmartRef__":true,"id":1630},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1631},"textString":"Documentation","padding":{"__isSmartRef__":true,"id":1632},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1633},"priorExtent":{"__isSmartRef__":true,"id":1635},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"344837:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(19,52)","namespaceURI":null}]}},"1624":{"a":1,"b":0,"c":0,"d":1,"e":19,"f":52,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1625":{"x":19,"y":52,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1626":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1627":{"_fill":{"__isSmartRef__":true,"id":1628},"_stroke":{"__isSmartRef__":true,"id":1629},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1628":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1629":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1630":{"_fill":{"__isSmartRef__":true,"id":1631},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1631":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1632":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1633":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1634}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1634":{"style":"bold"},"1635":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1636":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1611},"pvtCachedTransform":{"__isSmartRef__":true,"id":1637},"origin":{"__isSmartRef__":true,"id":1638},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1639},"shape":{"__isSmartRef__":true,"id":1640},"textContent":{"__isSmartRef__":true,"id":1643},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1644},"textString":"- automatically generated: http://lively-kernel.org/doc/","padding":{"__isSmartRef__":true,"id":1645},"textStyle":{"__isSmartRef__":true,"id":1646},"undoTextStyle":{"__isSmartRef__":true,"id":1649},"priorExtent":{"__isSmartRef__":true,"id":1651},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"344902:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(24,86)","namespaceURI":null}]}},"1637":{"a":1,"b":0,"c":0,"d":1,"e":24,"f":86,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1638":{"x":24,"y":86,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1639":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1640":{"_fill":{"__isSmartRef__":true,"id":1641},"_stroke":{"__isSmartRef__":true,"id":1642},"_x":0,"_y":0,"_width":829,"_height":24.733333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"24.733333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1641":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1642":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1643":{"_fill":{"__isSmartRef__":true,"id":1644},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1644":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1645":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1646":{"runs":[27,29],"values":[{"__isSmartRef__":true,"id":1647},{"__isSmartRef__":true,"id":1648}],"lastIndex":27,"lastRunIndex":1,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1647":{},"1648":{"color":"blue","link":"http://lively-kernel.org/doc/"},"1649":{"runs":[3],"values":[{"__isSmartRef__":true,"id":1650}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1650":{},"1651":{"x":811,"y":15.40000025431315,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1652":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1611},"pvtCachedTransform":{"__isSmartRef__":true,"id":1653},"origin":{"__isSmartRef__":true,"id":1654},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1655},"shape":{"__isSmartRef__":true,"id":1656},"textContent":{"__isSmartRef__":true,"id":1659},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1660},"textString":"Things done","padding":{"__isSmartRef__":true,"id":1661},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1662},"priorExtent":{"__isSmartRef__":true,"id":1664},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"346375:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(19,115)","namespaceURI":null}]}},"1653":{"a":1,"b":0,"c":0,"d":1,"e":19,"f":115,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1654":{"x":19,"y":115,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1655":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1656":{"_fill":{"__isSmartRef__":true,"id":1657},"_stroke":{"__isSmartRef__":true,"id":1658},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1657":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1658":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1659":{"_fill":{"__isSmartRef__":true,"id":1660},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1660":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1661":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1662":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1663}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1663":{"style":"bold"},"1664":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1665":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1611},"pvtCachedTransform":{"__isSmartRef__":true,"id":1666},"origin":{"__isSmartRef__":true,"id":1667},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1668},"shape":{"__isSmartRef__":true,"id":1669},"textContent":{"__isSmartRef__":true,"id":1672},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1673},"lineNumberHint":2,"textString":"- added optional converter to connect, it's persistent, usage:\nconnect(obj1, 'value', obj2, 'value', function(value) { return value + 42 })\n- SystemBrowser now has a location panel to choose URL to browse (coool!)","padding":{"__isSmartRef__":true,"id":1674},"textStyle":{"__isSmartRef__":true,"id":1675},"undoTextStyle":{"__isSmartRef__":true,"id":1677},"priorExtent":{"__isSmartRef__":true,"id":1679},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"346395:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(22,148)","namespaceURI":null}]}},"1666":{"a":1,"b":0,"c":0,"d":1,"e":22,"f":148,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1667":{"x":22,"y":148,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1668":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1669":{"_fill":{"__isSmartRef__":true,"id":1670},"_stroke":{"__isSmartRef__":true,"id":1671},"_x":0,"_y":0,"_width":829,"_height":58.333333333333336,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"58.333333333333336","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1670":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1671":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1672":{"_fill":{"__isSmartRef__":true,"id":1673},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1673":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1674":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1675":{"runs":[213],"values":[{"__isSmartRef__":true,"id":1676}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1676":{},"1677":{"runs":[207],"values":[{"__isSmartRef__":true,"id":1678}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1678":{},"1679":{"x":811,"y":48.99999872843424,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1680":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":2896,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1681":{"x":50,"y":2896,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1682":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1683":{"_fill":{"__isSmartRef__":true,"id":1684},"_stroke":{"__isSmartRef__":true,"id":1685},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"894","namespaceURI":null},{"key":"height","value":"229","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1684":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1685":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1686":{"x":894,"y":229,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1687":{"submorphs":[{"__isSmartRef__":true,"id":1688},{"__isSmartRef__":true,"id":1699}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1722},"origin":{"__isSmartRef__":true,"id":1723},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1724},"shape":{"__isSmartRef__":true,"id":1725},"priorExtent":{"__isSmartRef__":true,"id":1728},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"347597:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,2523)","namespaceURI":null}]}},"1688":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1687},"pvtCachedTransform":{"__isSmartRef__":true,"id":1689},"origin":{"__isSmartRef__":true,"id":1690},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1691},"shape":{"__isSmartRef__":true,"id":1692},"textContent":{"__isSmartRef__":true,"id":1695},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1696},"textString":"2010-04-21, Wed","padding":{"__isSmartRef__":true,"id":1697},"priorExtent":{"__isSmartRef__":true,"id":1698},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"347598:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1689":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1690":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1691":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1692":{"_fill":{"__isSmartRef__":true,"id":1693},"_stroke":{"__isSmartRef__":true,"id":1694},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1693":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1694":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1695":{"_fill":{"__isSmartRef__":true,"id":1696},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1696":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1697":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1698":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1699":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1687},"pvtCachedTransform":{"__isSmartRef__":true,"id":1700},"origin":{"__isSmartRef__":true,"id":1701},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1702},"shape":{"__isSmartRef__":true,"id":1703},"textContent":{"__isSmartRef__":true,"id":1706},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1707},"textString":"We need to annotate the source code for automatically displaying it in the generated documentation. JavaDoc comments are possible but a less formal approach will probably work as well. We just use the comment directly before parsed entity (class/method/object/function). Extracting the comment is implemented already but we need browser support to add comments from Lively.\n\nInteresting: adding comments to lkml code. Actually, it's easier than with parsed source\n\nMaybe we should have a comment pane in the browser? Jens?\n\n[http://localhost/lively/FileFragmentExtension.xhtml] // jens: How did you put this file on my computer ;-) // rk just a reminder\n\n\nRelated Work\nhttp://wubhub.com:4110/\nhttp://kodingen.com/\nhttp://java.sun.com/javaone/2009/articles/gen_zembly.jsp","padding":{"__isSmartRef__":true,"id":1708},"textStyle":{"__isSmartRef__":true,"id":1709},"undoTextStyle":{"__isSmartRef__":true,"id":1715},"lineNumberHint":15,"priorExtent":{"__isSmartRef__":true,"id":1721},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"347615:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(19,51)","namespaceURI":null}]}},"1700":{"a":1,"b":0,"c":0,"d":1,"e":19,"f":51,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1701":{"x":19,"y":51,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1702":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1703":{"_fill":{"__isSmartRef__":true,"id":1704},"_stroke":{"__isSmartRef__":true,"id":1705},"_x":0,"_y":0,"_width":829,"_height":276.7333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"276.7333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1704":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1705":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1706":{"_fill":{"__isSmartRef__":true,"id":1707},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1707":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1708":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1709":{"runs":[581,6,50,3,132],"values":[{"__isSmartRef__":true,"id":1710},{"__isSmartRef__":true,"id":1711},{"__isSmartRef__":true,"id":1712},{"__isSmartRef__":true,"id":1713},{"__isSmartRef__":true,"id":1714}],"lastIndex":640,"lastRunIndex":4,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1710":{},"1711":{"style":"bold"},"1712":{},"1713":{"style":"bold"},"1714":{},"1715":{"runs":[581,6,50,3,132],"values":[{"__isSmartRef__":true,"id":1716},{"__isSmartRef__":true,"id":1717},{"__isSmartRef__":true,"id":1718},{"__isSmartRef__":true,"id":1719},{"__isSmartRef__":true,"id":1720}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1716":{},"1717":{"style":"bold"},"1718":{},"1719":{"style":"bold"},"1720":{},"1721":{"x":811,"y":267.40000406901044,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1722":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":2523,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1723":{"x":50,"y":2523,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1724":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1725":{"_fill":{"__isSmartRef__":true,"id":1726},"_stroke":{"__isSmartRef__":true,"id":1727},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"894","namespaceURI":null},{"key":"height","value":"343","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1726":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1727":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1728":{"x":894,"y":343,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1729":{"submorphs":[{"__isSmartRef__":true,"id":1730},{"__isSmartRef__":true,"id":1741},{"__isSmartRef__":true,"id":1754}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1771},"origin":{"__isSmartRef__":true,"id":1772},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1773},"shape":{"__isSmartRef__":true,"id":1774},"priorExtent":{"__isSmartRef__":true,"id":1777},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"351022:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,2372)","namespaceURI":null}]}},"1730":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1729},"pvtCachedTransform":{"__isSmartRef__":true,"id":1731},"origin":{"__isSmartRef__":true,"id":1732},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1733},"shape":{"__isSmartRef__":true,"id":1734},"textContent":{"__isSmartRef__":true,"id":1737},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1738},"textString":"2010-04-24, Sat","padding":{"__isSmartRef__":true,"id":1739},"priorExtent":{"__isSmartRef__":true,"id":1740},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"351023:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1731":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1732":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1733":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1734":{"_fill":{"__isSmartRef__":true,"id":1735},"_stroke":{"__isSmartRef__":true,"id":1736},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1735":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1736":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1737":{"_fill":{"__isSmartRef__":true,"id":1738},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1738":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1739":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1740":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1741":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1729},"pvtCachedTransform":{"__isSmartRef__":true,"id":1742},"origin":{"__isSmartRef__":true,"id":1743},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1744},"shape":{"__isSmartRef__":true,"id":1745},"textContent":{"__isSmartRef__":true,"id":1748},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1749},"textString":"Things done","padding":{"__isSmartRef__":true,"id":1750},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1751},"priorExtent":{"__isSmartRef__":true,"id":1753},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"351127:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(19,48)","namespaceURI":null}]}},"1742":{"a":1,"b":0,"c":0,"d":1,"e":19,"f":48,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1743":{"x":19,"y":48,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1744":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1745":{"_fill":{"__isSmartRef__":true,"id":1746},"_stroke":{"__isSmartRef__":true,"id":1747},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1746":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1747":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1748":{"_fill":{"__isSmartRef__":true,"id":1749},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1749":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1750":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1751":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1752}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1752":{"style":"bold"},"1753":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1754":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1729},"pvtCachedTransform":{"__isSmartRef__":true,"id":1755},"origin":{"__isSmartRef__":true,"id":1756},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1757},"shape":{"__isSmartRef__":true,"id":1758},"textContent":{"__isSmartRef__":true,"id":1761},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1762},"textString":"- implemented a divider and added it to the browsers","padding":{"__isSmartRef__":true,"id":1763},"textStyle":{"__isSmartRef__":true,"id":1764},"undoTextStyle":{"__isSmartRef__":true,"id":1768},"priorExtent":{"__isSmartRef__":true,"id":1770},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"351156:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(23,83)","namespaceURI":null}]}},"1755":{"a":1,"b":0,"c":0,"d":1,"e":23,"f":83,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1756":{"x":23,"y":83,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1757":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1758":{"_fill":{"__isSmartRef__":true,"id":1759},"_stroke":{"__isSmartRef__":true,"id":1760},"_x":0,"_y":0,"_width":829,"_height":24.733333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"24.733333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1759":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1760":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1761":{"_fill":{"__isSmartRef__":true,"id":1762},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1762":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1763":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1764":{"runs":[14,9,29],"values":[{"__isSmartRef__":true,"id":1765},{"__isSmartRef__":true,"id":1766},{"__isSmartRef__":true,"id":1767}],"lastIndex":23,"lastRunIndex":2,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1765":{},"1766":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/draft/DraftResizer.xhtml"},"1767":{},"1768":{"runs":[3],"values":[{"__isSmartRef__":true,"id":1769}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1769":{},"1770":{"x":811,"y":15.40000025431315,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1771":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":2372,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1772":{"x":50,"y":2372,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1773":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1774":{"_fill":{"__isSmartRef__":true,"id":1775},"_stroke":{"__isSmartRef__":true,"id":1776},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"892","namespaceURI":null},{"key":"height","value":"121","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1775":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1776":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1777":{"x":892,"y":121,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1778":{"submorphs":[{"__isSmartRef__":true,"id":1779},{"__isSmartRef__":true,"id":1790}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1805},"origin":{"__isSmartRef__":true,"id":1806},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1807},"shape":{"__isSmartRef__":true,"id":1808},"priorExtent":{"__isSmartRef__":true,"id":1811},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"351946:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,2248)","namespaceURI":null}]}},"1779":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1778},"pvtCachedTransform":{"__isSmartRef__":true,"id":1780},"origin":{"__isSmartRef__":true,"id":1781},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1782},"shape":{"__isSmartRef__":true,"id":1783},"textContent":{"__isSmartRef__":true,"id":1786},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1787},"textString":"2010-04-25, Sun","padding":{"__isSmartRef__":true,"id":1788},"priorExtent":{"__isSmartRef__":true,"id":1789},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"351947:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1780":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1781":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1782":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1783":{"_fill":{"__isSmartRef__":true,"id":1784},"_stroke":{"__isSmartRef__":true,"id":1785},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1784":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1785":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1786":{"_fill":{"__isSmartRef__":true,"id":1787},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1787":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1788":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1789":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1790":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1778},"pvtCachedTransform":{"__isSmartRef__":true,"id":1791},"origin":{"__isSmartRef__":true,"id":1792},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1793},"shape":{"__isSmartRef__":true,"id":1794},"textContent":{"__isSmartRef__":true,"id":1797},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1798},"textString":"- some fixes for Opera (and I got a reminder from Robert...)","padding":{"__isSmartRef__":true,"id":1799},"textStyle":{"__isSmartRef__":true,"id":1800},"undoTextStyle":{"__isSmartRef__":true,"id":1802},"priorExtent":{"__isSmartRef__":true,"id":1804},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"351970:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(28,56)","namespaceURI":null}]}},"1791":{"a":1,"b":0,"c":0,"d":1,"e":28,"f":56,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1792":{"x":28,"y":56,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1793":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1794":{"_fill":{"__isSmartRef__":true,"id":1795},"_stroke":{"__isSmartRef__":true,"id":1796},"_x":0,"_y":0,"_width":829,"_height":24.733333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"24.733333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1795":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1796":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1797":{"_fill":{"__isSmartRef__":true,"id":1798},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1798":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1799":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1800":{"runs":[60],"values":[{"__isSmartRef__":true,"id":1801}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1801":{},"1802":{"runs":[61],"values":[{"__isSmartRef__":true,"id":1803}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1803":{},"1804":{"x":811,"y":15.40000025431315,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1805":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":2248,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1806":{"x":50,"y":2248,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1807":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1808":{"_fill":{"__isSmartRef__":true,"id":1809},"_stroke":{"__isSmartRef__":true,"id":1810},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"893","namespaceURI":null},{"key":"height","value":"94","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1809":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1810":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1811":{"x":893,"y":94,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1812":{"submorphs":[{"__isSmartRef__":true,"id":1813},{"__isSmartRef__":true,"id":1824},{"__isSmartRef__":true,"id":1847},{"__isSmartRef__":true,"id":1862},{"__isSmartRef__":true,"id":1878},{"__isSmartRef__":true,"id":1891},{"__isSmartRef__":true,"id":1904},{"__isSmartRef__":true,"id":1917},{"__isSmartRef__":true,"id":1932}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1949},"origin":{"__isSmartRef__":true,"id":1950},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1951},"shape":{"__isSmartRef__":true,"id":1952},"priorExtent":{"__isSmartRef__":true,"id":1955},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"356983:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,1405)","namespaceURI":null}]}},"1813":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1812},"pvtCachedTransform":{"__isSmartRef__":true,"id":1814},"origin":{"__isSmartRef__":true,"id":1815},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1816},"shape":{"__isSmartRef__":true,"id":1817},"textContent":{"__isSmartRef__":true,"id":1820},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1821},"textString":"2010-05-09, Sun","padding":{"__isSmartRef__":true,"id":1822},"priorExtent":{"__isSmartRef__":true,"id":1823},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"356984:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1814":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1815":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1816":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1817":{"_fill":{"__isSmartRef__":true,"id":1818},"_stroke":{"__isSmartRef__":true,"id":1819},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1818":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1819":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1820":{"_fill":{"__isSmartRef__":true,"id":1821},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1821":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1822":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1823":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1824":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1812},"pvtCachedTransform":{"__isSmartRef__":true,"id":1825},"origin":{"__isSmartRef__":true,"id":1826},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1827},"shape":{"__isSmartRef__":true,"id":1828},"textContent":{"__isSmartRef__":true,"id":1831},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1832},"textString":"- bindings can now have an attribute removeAfterUpdate. If this is set the binding is automatically disconnected after an update is made.\n- The interface for creating bindings changed a bit:\nconnect(source, sourceProp, target, targetProp, spec)\nspec is an optional object that can hold configuration settings. Currently spec.converter and spec.removeAfterUpdate are supported.\nImportant: the old syntax (converter as fifth parameter) is deprecated! Please use new scheme!","padding":{"__isSmartRef__":true,"id":1833},"textStyle":{"__isSmartRef__":true,"id":1834},"undoTextStyle":{"__isSmartRef__":true,"id":1840},"lineNumberHint":6,"priorExtent":{"__isSmartRef__":true,"id":1846},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"357100:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(32,583)","namespaceURI":null}]}},"1825":{"a":1,"b":0,"c":0,"d":1,"e":32,"f":583,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1826":{"x":32,"y":583,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1827":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1828":{"_fill":{"__isSmartRef__":true,"id":1829},"_stroke":{"__isSmartRef__":true,"id":1830},"_x":0,"_y":0,"_width":829,"_height":125.53333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"125.53333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1829":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1830":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1831":{"_fill":{"__isSmartRef__":true,"id":1832},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1832":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1833":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1834":{"runs":[378,9,51,10,24],"values":[{"__isSmartRef__":true,"id":1835},{"__isSmartRef__":true,"id":1836},{"__isSmartRef__":true,"id":1837},{"__isSmartRef__":true,"id":1838},{"__isSmartRef__":true,"id":1839}],"lastIndex":448,"lastRunIndex":4,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1835":{},"1836":{"style":"bold"},"1837":{},"1838":{"style":"bold"},"1839":{},"1840":{"runs":[379,9,51,10,24],"values":[{"__isSmartRef__":true,"id":1841},{"__isSmartRef__":true,"id":1842},{"__isSmartRef__":true,"id":1843},{"__isSmartRef__":true,"id":1844},{"__isSmartRef__":true,"id":1845}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1841":{},"1842":{"style":"bold"},"1843":{},"1844":{"style":"bold"},"1845":{},"1846":{"x":811,"y":116.1999994913737,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1847":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1812},"pvtCachedTransform":{"__isSmartRef__":true,"id":1848},"origin":{"__isSmartRef__":true,"id":1849},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1850},"shape":{"__isSmartRef__":true,"id":1851},"textContent":{"__isSmartRef__":true,"id":1854},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1855},"lineNumberHint":2,"textString":"I implemented a new interface for WebResource objects. They can be used synchronously and asynchronously.\n\nExamples:","padding":{"__isSmartRef__":true,"id":1856},"textStyle":{"__isSmartRef__":true,"id":1857},"undoTextStyle":{"__isSmartRef__":true,"id":1859},"priorExtent":{"__isSmartRef__":true,"id":1861},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"357946:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(22,91)","namespaceURI":null}]}},"1848":{"a":1,"b":0,"c":0,"d":1,"e":22,"f":91,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1849":{"x":22,"y":91,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1850":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1851":{"_fill":{"__isSmartRef__":true,"id":1852},"_stroke":{"__isSmartRef__":true,"id":1853},"_x":0,"_y":0,"_width":832,"_height":58.333333333333336,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"832","namespaceURI":null},{"key":"height","value":"58.333333333333336","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1852":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1853":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1854":{"_fill":{"__isSmartRef__":true,"id":1855},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1855":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1856":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1857":{"runs":[116],"values":[{"__isSmartRef__":true,"id":1858}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1858":{},"1859":{"runs":[115],"values":[{"__isSmartRef__":true,"id":1860}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1860":{},"1861":{"x":814,"y":48.99999872843424,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1862":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1812},"pvtCachedTransform":{"__isSmartRef__":true,"id":1863},"origin":{"__isSmartRef__":true,"id":1864},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1865},"shape":{"__isSmartRef__":true,"id":1866},"textContent":{"__isSmartRef__":true,"id":1869},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1870},"lineNumberHint":1,"textString":"I made a little ipad input fix:\nhttp://lively-kernel.org/other/iPadInput01.mov","padding":{"__isSmartRef__":true,"id":1871},"textStyle":{"__isSmartRef__":true,"id":1872},"undoTextStyle":{"__isSmartRef__":true,"id":1875},"priorExtent":{"__isSmartRef__":true,"id":1877},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"360945:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(34,752)","namespaceURI":null}]}},"1863":{"a":1,"b":0,"c":0,"d":1,"e":34,"f":752,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1864":{"x":34,"y":752,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1865":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1866":{"_fill":{"__isSmartRef__":true,"id":1867},"_stroke":{"__isSmartRef__":true,"id":1868},"_x":0,"_y":0,"_width":829,"_height":41.53333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"829","namespaceURI":null},{"key":"height","value":"41.53333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1867":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1868":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1869":{"_fill":{"__isSmartRef__":true,"id":1870},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1870":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1871":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1872":{"runs":[32,46],"values":[{"__isSmartRef__":true,"id":1873},{"__isSmartRef__":true,"id":1874}],"lastIndex":32,"lastRunIndex":1,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1873":{},"1874":{"color":"blue","link":"http://lively-kernel.org/other/iPadInput01.mov"},"1875":{"runs":[79],"values":[{"__isSmartRef__":true,"id":1876}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1876":{},"1877":{"x":811,"y":32.199999491373696,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1878":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1812},"pvtCachedTransform":{"__isSmartRef__":true,"id":1879},"origin":{"__isSmartRef__":true,"id":1880},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1881},"shape":{"__isSmartRef__":true,"id":1882},"textContent":{"__isSmartRef__":true,"id":1885},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1886},"textString":"Made WebResource async","padding":{"__isSmartRef__":true,"id":1887},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1888},"priorExtent":{"__isSmartRef__":true,"id":1890},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"361080:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(18,61)","namespaceURI":null}]}},"1879":{"a":1,"b":0,"c":0,"d":1,"e":18,"f":61,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1880":{"x":18,"y":61,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1881":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1882":{"_fill":{"__isSmartRef__":true,"id":1883},"_stroke":{"__isSmartRef__":true,"id":1884},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"6.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1883":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1884":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1885":{"_fill":{"__isSmartRef__":true,"id":1886},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1886":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1887":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1888":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1889}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1889":{"style":"bold"},"1890":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1891":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1812},"pvtCachedTransform":{"__isSmartRef__":true,"id":1892},"origin":{"__isSmartRef__":true,"id":1893},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1894},"shape":{"__isSmartRef__":true,"id":1895},"textContent":{"__isSmartRef__":true,"id":1898},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1899},"textString":"Extended bindings","padding":{"__isSmartRef__":true,"id":1900},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1901},"priorExtent":{"__isSmartRef__":true,"id":1903},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"361174:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(31,553)","namespaceURI":null}]}},"1892":{"a":1,"b":0,"c":0,"d":1,"e":31,"f":553,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1893":{"x":31,"y":553,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1894":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1895":{"_fill":{"__isSmartRef__":true,"id":1896},"_stroke":{"__isSmartRef__":true,"id":1897},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1896":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1897":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1898":{"_fill":{"__isSmartRef__":true,"id":1899},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1899":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1900":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1901":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1902}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1902":{"style":"bold"},"1903":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1904":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1812},"pvtCachedTransform":{"__isSmartRef__":true,"id":1905},"origin":{"__isSmartRef__":true,"id":1906},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1907},"shape":{"__isSmartRef__":true,"id":1908},"textContent":{"__isSmartRef__":true,"id":1911},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":1912},"textString":"iPad Input","padding":{"__isSmartRef__":true,"id":1913},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":1914},"priorExtent":{"__isSmartRef__":true,"id":1916},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"361234:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(31,721)","namespaceURI":null}]}},"1905":{"a":1,"b":0,"c":0,"d":1,"e":31,"f":721,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1906":{"x":31,"y":721,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1907":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1908":{"_fill":{"__isSmartRef__":true,"id":1909},"_stroke":{"__isSmartRef__":true,"id":1910},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1909":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1910":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1911":{"_fill":{"__isSmartRef__":true,"id":1912},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1912":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1913":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1914":{"runs":[1],"values":[{"__isSmartRef__":true,"id":1915}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1915":{"style":"bold"},"1916":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1917":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1812},"pvtCachedTransform":{"__isSmartRef__":true,"id":1918},"origin":{"__isSmartRef__":true,"id":1919},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1920},"shape":{"__isSmartRef__":true,"id":1921},"textContent":{"__isSmartRef__":true,"id":1924},"fontFamily":"Courier","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1925},"textString":"// synchronously write file\nnew WebResource('http://localhost/lively/test.txt').put('this is a test')\n\n// asynchronously write file and notify user\nwebR = new WebResource('http://localhost/lively/test.txt')\nconnect(webR, 'status', WorldMorph.current(), 'alert', {converter: function(stat) { return stat.isSuccess() ? 'OK' : 'Error' }})\nwebR.beAsync().put('this is a test')\n\n// get all subDocuments synchronusly\nnew WebResource(URL.source.getDirectory()).getSubElements('infinity').subDocuments\n\n// get all subDocuments and list them in a morph asynchronusly\nwebR = new WebResource(URL.source.getDirectory())\nconnect(webR, 'subDocuments', $morph('text'), 'setTextString', {\n\tconverter: function(docs) { return docs.collect(function(ea) { return ea.getName() }).join('\\n') }})\nwebR.beAsync().getSubElements('infinity')","padding":{"__isSmartRef__":true,"id":1926},"textStyle":{"__isSmartRef__":true,"id":1927},"undoTextStyle":{"__isSmartRef__":true,"id":1929},"lineNumberHint":17,"priorExtent":{"__isSmartRef__":true,"id":1931},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"361417:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(28,144)","namespaceURI":null}]}},"1918":{"a":1,"b":0,"c":0,"d":1,"e":28,"f":144,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1919":{"x":28,"y":144,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1920":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1921":{"_fill":{"__isSmartRef__":true,"id":1922},"_stroke":{"__isSmartRef__":true,"id":1923},"_x":0,"_y":0,"_width":832,"_height":310.3333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"832","namespaceURI":null},{"key":"height","value":"310.3333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1922":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1923":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1924":{"_fill":{"__isSmartRef__":true,"id":1925},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Courier","namespaceURI":null}]}},"1925":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1926":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1927":{"runs":[816],"values":[{"__isSmartRef__":true,"id":1928}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1928":{},"1929":{"runs":[816],"values":[{"__isSmartRef__":true,"id":1930}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1930":{},"1931":{"x":814,"y":301.00001017252606,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1932":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1812},"pvtCachedTransform":{"__isSmartRef__":true,"id":1933},"origin":{"__isSmartRef__":true,"id":1934},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1935},"shape":{"__isSmartRef__":true,"id":1936},"textContent":{"__isSmartRef__":true,"id":1939},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1940},"textString":"Attributes for connection: status, content, contentDocument, isExisting, subCollections, subDocuments\nMain methods: get, put, del, exists, copyTo, getSubElements, beAsync\n\nImportant: The old methods like getContent(), subDocuments(), etc. are DEPRECATED!","padding":{"__isSmartRef__":true,"id":1941},"textStyle":{"__isSmartRef__":true,"id":1942},"undoTextStyle":{"__isSmartRef__":true,"id":1945},"lineNumberHint":3,"priorExtent":{"__isSmartRef__":true,"id":1948},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"361713:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(31,465)","namespaceURI":null}]}},"1933":{"a":1,"b":0,"c":0,"d":1,"e":31,"f":465,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1934":{"x":31,"y":465,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1935":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1936":{"_fill":{"__isSmartRef__":true,"id":1937},"_stroke":{"__isSmartRef__":true,"id":1938},"_x":0,"_y":0,"_width":832,"_height":75.13333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"832","namespaceURI":null},{"key":"height","value":"75.13333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1937":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1938":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1939":{"_fill":{"__isSmartRef__":true,"id":1940},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1940":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1941":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1942":{"runs":[172,82],"values":[{"__isSmartRef__":true,"id":1943},{"__isSmartRef__":true,"id":1944}],"lastIndex":172,"lastRunIndex":1,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1943":{},"1944":{"style":"bold"},"1945":{"runs":[172,82],"values":[{"__isSmartRef__":true,"id":1946},{"__isSmartRef__":true,"id":1947}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1946":{},"1947":{"style":"bold"},"1948":{"x":814,"y":65.7999979654948,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1949":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":1405,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1950":{"x":50,"y":1405,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1951":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1952":{"_fill":{"__isSmartRef__":true,"id":1953},"_stroke":{"__isSmartRef__":true,"id":1954},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"892","namespaceURI":null},{"key":"height","value":"813","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1953":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1954":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1955":{"x":892,"y":813,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1956":{"submorphs":[{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1972}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":1983},"origin":{"__isSmartRef__":true,"id":1984},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1985},"shape":{"__isSmartRef__":true,"id":1986},"priorExtent":{"__isSmartRef__":true,"id":1989},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"362772:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,955)","namespaceURI":null}]}},"1957":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1956},"pvtCachedTransform":{"__isSmartRef__":true,"id":1958},"origin":{"__isSmartRef__":true,"id":1959},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1960},"shape":{"__isSmartRef__":true,"id":1961},"textContent":{"__isSmartRef__":true,"id":1964},"fontFamily":"Courier","fontSize":14,"textColor":{"__isSmartRef__":true,"id":1965},"textString":"url = URL.source.withFilename('test2.txt')\nreq = new XMLHttpRequest();\nreq.upload.onprogress = function(rpe) { console.log('onprogress called' + rpe.loaded) }\nreq.onreadystatechange = function() {\n\t\tWorldMorph.current().alert('written' + req.readyState)\n}\nreq.open('PUT', url, true);\nreq.send(range(0, Math.round(Math.random() * 1000) + 1000000).join(''));\n\n\nurl = URL.source.withFilename('test2.txt')\nreq = new XMLHttpRequest();\nreq.onprogress = function(rpe) { console.log('onprogress called' + rpe.loaded) }\nreq.onreadystatechange = function() {\n\t\tWorldMorph.current().alert('written' + req.readyState)\n}\nreq.open('GET', url, true);\nreq.send()","padding":{"__isSmartRef__":true,"id":1966},"textStyle":{"__isSmartRef__":true,"id":1967},"undoTextStyle":{"__isSmartRef__":true,"id":1969},"lineNumberHint":17,"priorExtent":{"__isSmartRef__":true,"id":1971},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"362962:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(44,71)","namespaceURI":null}]}},"1958":{"a":1,"b":0,"c":0,"d":1,"e":44,"f":71,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1959":{"x":44,"y":71,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1960":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1961":{"_fill":{"__isSmartRef__":true,"id":1962},"_stroke":{"__isSmartRef__":true,"id":1963},"_x":0,"_y":0,"_width":832,"_height":310.3333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"832","namespaceURI":null},{"key":"height","value":"310.3333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1962":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1963":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1964":{"_fill":{"__isSmartRef__":true,"id":1965},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Courier","namespaceURI":null}]}},"1965":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1966":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1967":{"runs":[647],"values":[{"__isSmartRef__":true,"id":1968}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1968":{},"1969":{"runs":[647],"values":[{"__isSmartRef__":true,"id":1970}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"1970":{},"1971":{"x":814,"y":301.00001017252606,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1972":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1956},"pvtCachedTransform":{"__isSmartRef__":true,"id":1973},"origin":{"__isSmartRef__":true,"id":1974},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1975},"shape":{"__isSmartRef__":true,"id":1976},"textContent":{"__isSmartRef__":true,"id":1979},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1980},"textString":"2010-05-10, Mon","padding":{"__isSmartRef__":true,"id":1981},"priorExtent":{"__isSmartRef__":true,"id":1982},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"362773:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(46,26)","namespaceURI":null}]}},"1973":{"a":1,"b":0,"c":0,"d":1,"e":46,"f":26,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1974":{"x":46,"y":26,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1975":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1976":{"_fill":{"__isSmartRef__":true,"id":1977},"_stroke":{"__isSmartRef__":true,"id":1978},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1977":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1978":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1979":{"_fill":{"__isSmartRef__":true,"id":1980},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1980":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1981":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1982":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1983":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":955,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1984":{"x":50,"y":955,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1985":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1986":{"_fill":{"__isSmartRef__":true,"id":1987},"_stroke":{"__isSmartRef__":true,"id":1988},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"891","namespaceURI":null},{"key":"height","value":"420","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"1987":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1988":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1989":{"x":891,"y":420,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1990":{"submorphs":[{"__isSmartRef__":true,"id":1991},{"__isSmartRef__":true,"id":2002},{"__isSmartRef__":true,"id":2015}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":2030},"origin":{"__isSmartRef__":true,"id":2031},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":2032},"shape":{"__isSmartRef__":true,"id":2033},"priorExtent":{"__isSmartRef__":true,"id":2036},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"364190:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,639)","namespaceURI":null}]}},"1991":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1990},"pvtCachedTransform":{"__isSmartRef__":true,"id":1992},"origin":{"__isSmartRef__":true,"id":1993},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":1994},"shape":{"__isSmartRef__":true,"id":1995},"textContent":{"__isSmartRef__":true,"id":1998},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":1999},"textString":"2010-05-12, Wed","padding":{"__isSmartRef__":true,"id":2000},"priorExtent":{"__isSmartRef__":true,"id":2001},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"364191:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"1992":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"1993":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1994":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1995":{"_fill":{"__isSmartRef__":true,"id":1996},"_stroke":{"__isSmartRef__":true,"id":1997},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"1996":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1997":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1998":{"_fill":{"__isSmartRef__":true,"id":1999},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1999":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2000":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2001":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2002":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1990},"pvtCachedTransform":{"__isSmartRef__":true,"id":2003},"origin":{"__isSmartRef__":true,"id":2004},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":2005},"shape":{"__isSmartRef__":true,"id":2006},"textContent":{"__isSmartRef__":true,"id":2009},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":2010},"textString":"Things done","padding":{"__isSmartRef__":true,"id":2011},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":2012},"priorExtent":{"__isSmartRef__":true,"id":2014},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"364239:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(15,53)","namespaceURI":null}]}},"2003":{"a":1,"b":0,"c":0,"d":1,"e":15,"f":53,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2004":{"x":15,"y":53,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2005":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2006":{"_fill":{"__isSmartRef__":true,"id":2007},"_stroke":{"__isSmartRef__":true,"id":2008},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"6.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"2007":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2008":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2009":{"_fill":{"__isSmartRef__":true,"id":2010},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"2010":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2011":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2012":{"runs":[1],"values":[{"__isSmartRef__":true,"id":2013}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"2013":{"style":"bold"},"2014":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2015":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1990},"pvtCachedTransform":{"__isSmartRef__":true,"id":2016},"origin":{"__isSmartRef__":true,"id":2017},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":2018},"shape":{"__isSmartRef__":true,"id":2019},"textContent":{"__isSmartRef__":true,"id":2022},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":2023},"lineNumberHint":8,"textString":"I spent some time to improve mouse and keyboard input on the iPad/iPhone. I don't have either but the simulator works OK. The touch event API is mostly convenient to use.\n\nSome links I found useful:\nhttp://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariWebContent/HandlingEvents/HandlingEvents.html\nhttp://www.sitepen.com/blog/2008/07/10/touching-and-gesturing-on-the-iphone/\nhttp://developer.apple.com/safari/library/documentation/UserExperience/Reference/TouchEventClassReference/TouchEvent/TouchEvent.html\n","padding":{"__isSmartRef__":true,"id":2024},"textStyle":{"__isSmartRef__":true,"id":2025},"undoTextStyle":{"__isSmartRef__":true,"id":2027},"priorExtent":{"__isSmartRef__":true,"id":2029},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"364344:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(25,93)","namespaceURI":null}]}},"2016":{"a":1,"b":0,"c":0,"d":1,"e":25,"f":93,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2017":{"x":25,"y":93,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2018":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2019":{"_fill":{"__isSmartRef__":true,"id":2020},"_stroke":{"__isSmartRef__":true,"id":2021},"_x":0,"_y":0,"_width":832,"_height":159.13333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"832","namespaceURI":null},{"key":"height","value":"159.13333333333333","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"2020":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2021":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2022":{"_fill":{"__isSmartRef__":true,"id":2023},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"2023":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2024":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2025":{"runs":[545],"values":[{"__isSmartRef__":true,"id":2026}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"2026":{},"2027":{"runs":[546],"values":[{"__isSmartRef__":true,"id":2028}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"2028":{},"2029":{"x":814,"y":149.79999796549478,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2030":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":639,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2031":{"x":50,"y":639,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2032":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2033":{"_fill":{"__isSmartRef__":true,"id":2034},"_stroke":{"__isSmartRef__":true,"id":2035},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"892","namespaceURI":null},{"key":"height","value":"286","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"2034":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2035":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2036":{"x":892,"y":286,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2037":{"submorphs":[{"__isSmartRef__":true,"id":2038},{"__isSmartRef__":true,"id":2049},{"__isSmartRef__":true,"id":2062}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":2075},"origin":{"__isSmartRef__":true,"id":2076},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":2077},"shape":{"__isSmartRef__":true,"id":2078},"priorExtent":{"__isSmartRef__":true,"id":2081},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"364899:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,456)","namespaceURI":null}]}},"2038":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2037},"pvtCachedTransform":{"__isSmartRef__":true,"id":2039},"origin":{"__isSmartRef__":true,"id":2040},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":2041},"shape":{"__isSmartRef__":true,"id":2042},"textContent":{"__isSmartRef__":true,"id":2045},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":2046},"textString":"2010-05-14, Fri","padding":{"__isSmartRef__":true,"id":2047},"priorExtent":{"__isSmartRef__":true,"id":2048},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"364900:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"2039":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2040":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2041":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2042":{"_fill":{"__isSmartRef__":true,"id":2043},"_stroke":{"__isSmartRef__":true,"id":2044},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"2043":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2044":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2045":{"_fill":{"__isSmartRef__":true,"id":2046},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"2046":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2047":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2048":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2049":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2037},"pvtCachedTransform":{"__isSmartRef__":true,"id":2050},"origin":{"__isSmartRef__":true,"id":2051},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":2052},"shape":{"__isSmartRef__":true,"id":2053},"textContent":{"__isSmartRef__":true,"id":2056},"fontFamily":"Helvetica","fontSize":20,"textColor":{"__isSmartRef__":true,"id":2057},"textString":"Things done","padding":{"__isSmartRef__":true,"id":2058},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":2059},"priorExtent":{"__isSmartRef__":true,"id":2061},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"365043:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(21,59)","namespaceURI":null}]}},"2050":{"a":1,"b":0,"c":0,"d":1,"e":21,"f":59,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2051":{"x":21,"y":59,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2052":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2053":{"_fill":{"__isSmartRef__":true,"id":2054},"_stroke":{"__isSmartRef__":true,"id":2055},"_x":0,"_y":0,"_width":312,"_height":35.33333333333333,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"312","namespaceURI":null},{"key":"height","value":"35.33333333333333","namespaceURI":null},{"key":"stroke-width","value":"6.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"2054":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2055":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2056":{"_fill":{"__isSmartRef__":true,"id":2057},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"20","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"2057":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2058":{"x":12,"y":6.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2059":{"runs":[1],"values":[{"__isSmartRef__":true,"id":2060}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"2060":{"style":"bold"},"2061":{"x":288,"y":21.999998728434242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2062":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2037},"pvtCachedTransform":{"__isSmartRef__":true,"id":2063},"origin":{"__isSmartRef__":true,"id":2064},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":2065},"shape":{"__isSmartRef__":true,"id":2066},"textContent":{"__isSmartRef__":true,"id":2069},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":2070},"textString":"- doc creation improvement. Multiple code directories are now supported.","padding":{"__isSmartRef__":true,"id":2071},"textStyle":null,"undoTextStyle":{"__isSmartRef__":true,"id":2072},"priorExtent":{"__isSmartRef__":true,"id":2074},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"365067:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(24,93)","namespaceURI":null}]}},"2063":{"a":1,"b":0,"c":0,"d":1,"e":24,"f":93,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2064":{"x":24,"y":93,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2065":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2066":{"_fill":{"__isSmartRef__":true,"id":2067},"_stroke":{"__isSmartRef__":true,"id":2068},"_x":0,"_y":0,"_width":832,"_height":24.733333333333334,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"832","namespaceURI":null},{"key":"height","value":"24.733333333333334","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"2067":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2068":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2069":{"_fill":{"__isSmartRef__":true,"id":2070},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"2070":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2071":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2072":{"runs":[1],"values":[{"__isSmartRef__":true,"id":2073}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"2073":{},"2074":{"x":814,"y":15.40000025431315,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2075":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":456,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2076":{"x":50,"y":456,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2077":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2078":{"_fill":{"__isSmartRef__":true,"id":2079},"_stroke":{"__isSmartRef__":true,"id":2080},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"889","namespaceURI":null},{"key":"height","value":"153","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"2079":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2080":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2081":{"x":889,"y":153,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2082":{"submorphs":[{"__isSmartRef__":true,"id":2083},{"__isSmartRef__":true,"id":2094}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":2110},"origin":{"__isSmartRef__":true,"id":2111},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":2112},"shape":{"__isSmartRef__":true,"id":2113},"priorExtent":{"__isSmartRef__":true,"id":2116},"__SourceModuleName__":"Global.anonymous_module_3","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"366969:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,120)","namespaceURI":null}]}},"2083":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2082},"pvtCachedTransform":{"__isSmartRef__":true,"id":2084},"origin":{"__isSmartRef__":true,"id":2085},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":2086},"shape":{"__isSmartRef__":true,"id":2087},"textContent":{"__isSmartRef__":true,"id":2090},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":2091},"textString":"2010-05-22, Sat","padding":{"__isSmartRef__":true,"id":2092},"priorExtent":{"__isSmartRef__":true,"id":2093},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"366970:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"2084":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2085":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2086":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2087":{"_fill":{"__isSmartRef__":true,"id":2088},"_stroke":{"__isSmartRef__":true,"id":2089},"_x":0,"_y":0,"_width":700,"_height":31.8,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"700","namespaceURI":null},{"key":"height","value":"31.8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"2088":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2089":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2090":{"_fill":{"__isSmartRef__":true,"id":2091},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"18","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"2091":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2092":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2093":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2094":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2082},"pvtCachedTransform":{"__isSmartRef__":true,"id":2095},"origin":{"__isSmartRef__":true,"id":2096},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":2097},"shape":{"__isSmartRef__":true,"id":2098},"textContent":{"__isSmartRef__":true,"id":2101},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":2102},"lineNumberHint":0,"textString":"Added scaling of worlds: Press the command key and use the mouse wheel to zoom in and out. The world menu has an option to reset the scale.\nSteps:\n- Removed resizeCanvasToFitWorld from Importer and added it wot WorldMorph\n- implemented onMouseWheel handler inn Morph and WorldMorph\n- the bounds() of the world will NOT be transformed since the transformation will apply the scaling (and other transformations) but we are interested in its absolute coordinates. An alternative would be to transform Example: If the world has a width of 1000 and is scaled by 0.5 it will only have a width of 500. When we want to pick up a morph formerly placed at 1000 it will answer getPosition of the scale still with a width of 1000 and we wouldn't be able to pick it up.\n- the mousePosition of each mouse event that goes through the hand of a world will be transformed with the world transform\n- the node of the hand now is a child of the world node but NOT one of its submorphs. the hand is removed and added when the world is saved","padding":{"__isSmartRef__":true,"id":2103},"textStyle":{"__isSmartRef__":true,"id":2104},"undoTextStyle":{"__isSmartRef__":true,"id":2107},"priorExtent":{"__isSmartRef__":true,"id":2109},"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"366986:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(26,58)","namespaceURI":null}]}},"2095":{"a":1,"b":0,"c":0,"d":1,"e":26,"f":58,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2096":{"x":26,"y":58,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2097":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2098":{"_fill":{"__isSmartRef__":true,"id":2099},"_stroke":{"__isSmartRef__":true,"id":2100},"_x":0,"_y":0,"_width":832,"_height":209.53333333333336,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"832","namespaceURI":null},{"key":"height","value":"209.53333333333336","namespaceURI":null},{"key":"stroke-width","value":"0.5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"2099":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2100":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2101":{"_fill":{"__isSmartRef__":true,"id":2102},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"14","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"2102":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2103":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2104":{"runs":[23,996],"values":[{"__isSmartRef__":true,"id":2105},{"__isSmartRef__":true,"id":2106}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"2105":{"style":"bold"},"2106":{},"2107":{"runs":[1],"values":[{"__isSmartRef__":true,"id":2108}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"2108":{},"2109":{"x":814,"y":200.20000712076822,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2110":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":120,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2111":{"x":50,"y":120,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2112":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2113":{"_fill":{"__isSmartRef__":true,"id":2114},"_stroke":{"__isSmartRef__":true,"id":2115},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"889","namespaceURI":null},{"key":"height","value":"306","namespaceURI":null},{"key":"stroke-width","value":"3","namespaceURI":null},{"key":"stroke","value":"rgb(200,200,220)","namespaceURI":null},{"key":"fill","value":"rgb(245,245,250)","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"2114":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2115":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2116":{"x":889,"y":306,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2117":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":2118},"origin":{"__isSmartRef__":true,"id":2119},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":2120},"shape":{"__isSmartRef__":true,"id":2121},"name":"statusMorphContainer","priorExtent":{"__isSmartRef__":true,"id":2122},"ignoreWhenCopying":true,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"StatusMessageContainer","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"StatusMessageContainer","namespaceURI":null},{"key":"id","value":"357403:StatusMessageContainer","namespaceURI":null},{"key":"transform","value":"translate(986.5,0.5)","namespaceURI":null}]}},"2118":{"a":1,"b":0,"c":0,"d":1,"e":986.5,"f":0.5,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"2119":{"x":986.5,"y":0.5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2120":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2121":{"_fill":null,"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"400","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"2122":{"x":400,"y":30,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2123":{"submorphs":[{"__isSmartRef__":true,"id":2124}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":2129},"origin":{"__isSmartRef__":true,"id":2130},"rotation":0.002571242724698608,"scalePoint":{"__isSmartRef__":true,"id":2131},"shape":{"__isSmartRef__":true,"id":2132},"textContent":{"__isSmartRef__":true,"id":2135},"fontFamily":"Helvetica","fontSize":22,"textColor":{"__isSmartRef__":true,"id":2136},"textString":"March, April, and May 2010","padding":{"__isSmartRef__":true,"id":2137},"suppressGrabbing":true,"textStyle":{"__isSmartRef__":true,"id":2138},"undoTextStyle":{"__isSmartRef__":true,"id":2140},"priorExtent":{"__isSmartRef__":true,"id":2142},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","isSelecting":false,"hasKeyboardFocus":false,"textSelection":{"__isSmartRef__":true,"id":2124},"__LivelyClassName__":"TextMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"375848:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(70,0) rotate(0.14732135622894846)","namespaceURI":null}]}},"2124":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2123},"_livelyDataWrapperId_":"59:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2125},"shape":{"__isSmartRef__":true,"id":2126},"priorExtent":{"__isSmartRef__":true,"id":2127},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":2128},"isCursor":true,"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"59:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"2125":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2126":{"_livelyDataWrapperId_":"58:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"58:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"2127":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2128":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"2129":{"a":0.9999966943572466,"b":0.00257123989149469,"c":-0.00257123989149469,"d":0.9999966943572466,"e":70,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"2130":{"x":70,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2131":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2132":{"_fill":{"__isSmartRef__":true,"id":2133},"_stroke":{"__isSmartRef__":true,"id":2134},"_x":5,"_y":3,"_width":431.147705078125,"_height":38.86666666666667,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"5","namespaceURI":null},{"key":"y","value":"3","namespaceURI":null},{"key":"width","value":"431.147705078125","namespaceURI":null},{"key":"height","value":"38.86666666666667","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"2133":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2134":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2135":{"_fill":{"__isSmartRef__":true,"id":2136},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,82,159)","namespaceURI":null},{"key":"font-size","value":"22","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"2136":{"r":0,"g":0.3215686274509804,"b":0.6235294117647059,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2137":{"x":13,"y":7.333333333333333,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2138":{"runs":[26],"values":[{"__isSmartRef__":true,"id":2139}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"2139":{"color":"orange"},"2140":{"runs":[22],"values":[{"__isSmartRef__":true,"id":2141}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"2141":{"color":"orange"},"2142":{"x":269.84600830078125,"y":50.60000356038412,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2143":{"textString":"Wiki control","savedTextString":"Wiki control","submorphs":[{"__isSmartRef__":true,"id":2144}],"owner":{"__isSmartRef__":true,"id":0},"_livelyDataWrapperId_":"33:TextMorph","origin":{"__isSmartRef__":true,"id":2149},"shape":{"__isSmartRef__":true,"id":2150},"textContent":{"__isSmartRef__":true,"id":2152},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":2153},"textSelection":{"__isSmartRef__":true,"id":2144},"priorExtent":{"__isSmartRef__":true,"id":2154},"useChangeClue":false,"suppressHandles":true,"suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"33:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"2144":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":2143},"_livelyDataWrapperId_":"35:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":2145},"shape":{"__isSmartRef__":true,"id":2146},"priorExtent":{"__isSmartRef__":true,"id":2147},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":2148},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"35:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"2145":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2146":{"_livelyDataWrapperId_":"34:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"34:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"2147":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2148":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"2149":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2150":{"_x":0,"_y":0,"_width":80,"_height":21.2,"_stroke":{"__isSmartRef__":true,"id":2151},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"80","namespaceURI":null},{"key":"height","value":"21.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"2151":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"2152":{"_fill":{"__isSmartRef__":true,"id":2151},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"2153":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"2154":{"x":68,"y":42,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2155":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"2156":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2157":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2158":{"_fill":{"__isSmartRef__":true,"id":2159},"_stroke":{"__isSmartRef__":true,"id":2160},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"1409.5","namespaceURI":null},{"key":"height","value":"15588.1","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke","value":"rgb(0,175,141)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null}]}},"2159":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2160":{"r":0,"g":0.6862745098039216,"b":0.5529411764705883,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2161":{"x":1409.5,"y":15588.099609375,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2162":{"styleName":"hpi","raisedBorder":{"__isSmartRef__":true,"id":2163},"button":{"__isSmartRef__":true,"id":2168},"widgetPanel":{"__isSmartRef__":true,"id":2174},"focusHalo":{"__isSmartRef__":true,"id":2177},"panel":{"__isSmartRef__":true,"id":2179},"link":{"__isSmartRef__":true,"id":2182},"helpText":{"__isSmartRef__":true,"id":2185},"menu_items":{"__isSmartRef__":true,"id":2187},"menu_list":{"__isSmartRef__":true,"id":2189},"slider":{"__isSmartRef__":true,"id":2191},"slider_background":{"__isSmartRef__":true,"id":2198},"slider_horizontal":{"__isSmartRef__":true,"id":2203},"slider_background_horizontal":{"__isSmartRef__":true,"id":2210},"titleBar":{"__isSmartRef__":true,"id":2215},"titleBar_label":{"__isSmartRef__":true,"id":2220},"titleBar_label_highlight":{"__isSmartRef__":true,"id":2221},"titleBar_button_label":{"__isSmartRef__":true,"id":2223},"titleBar_closeButton":{"__isSmartRef__":true,"id":2225},"titleBar_menuButton":{"__isSmartRef__":true,"id":2231},"titleBar_collapseButton":{"__isSmartRef__":true,"id":2237},"titleBar_closeButton_highlight":{"__isSmartRef__":true,"id":2243},"titleBar_menuButton_highlight":{"__isSmartRef__":true,"id":2249},"titleBar_collapseButton_highlight":{"__isSmartRef__":true,"id":2255},"clock":{"__isSmartRef__":true,"id":2261},"fabrik":{"__isSmartRef__":true,"id":2266},"world":{"__isSmartRef__":true,"id":2268}},"2163":{"borderColor":{"__isSmartRef__":true,"id":2164}},"2164":{"vector":{"__isSmartRef__":true,"id":2165},"stops":[{"__isSmartRef__":true,"id":2166},{"__isSmartRef__":true,"id":2167}],"refcount":0,"_livelyDataWrapperId_":"16:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"1","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"16:lively.paint.LinearGradient","namespaceURI":null}]}},"2165":{"x":0,"y":0,"width":1,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2166":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"2167":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(12,12,12)","namespaceURI":null}]}},"2168":{"borderColor":{"__isSmartRef__":true,"id":2169},"borderWidth":0.6,"borderRadius":5,"fill":{"__isSmartRef__":true,"id":2170}},"2169":{"r":0.5019607843137255,"g":0.4470588235294118,"b":0.4666666666666667,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2170":{"vector":{"__isSmartRef__":true,"id":17},"stops":[{"__isSmartRef__":true,"id":2171},{"__isSmartRef__":true,"id":2172},{"__isSmartRef__":true,"id":2173}],"refcount":0,"_livelyDataWrapperId_":"17:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"17:lively.paint.LinearGradient","namespaceURI":null}]}},"2171":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"2172":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"2173":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"2174":{"borderColor":{"__isSmartRef__":true,"id":2175},"borderWidth":4,"borderRadius":16,"fill":{"__isSmartRef__":true,"id":2176},"opacity":0.4},"2175":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2176":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2177":{"fill":null,"borderColor":{"__isSmartRef__":true,"id":2178},"strokeOpacity":0.5},"2178":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2179":{"fill":{"__isSmartRef__":true,"id":2180},"borderWidth":2,"borderColor":{"__isSmartRef__":true,"id":2181}},"2180":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2181":{"r":0.2,"g":0.2,"b":0.2,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2182":{"borderColor":{"__isSmartRef__":true,"id":2183},"borderWidth":1,"fill":{"__isSmartRef__":true,"id":2184}},"2183":{"r":0,"g":0.8,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2184":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2185":{"borderRadius":15,"fill":{"__isSmartRef__":true,"id":2186},"fillOpacity":0.8},"2186":{"r":1,"g":0.9725490196078431,"b":0.8936274509803921,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2187":{"fontSize":14,"textColor":{"__isSmartRef__":true,"id":2188}},"2188":{"r":0.129,"g":0.129,"b":0.129,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2189":{"fill":{"__isSmartRef__":true,"id":2190}},"2190":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2191":{"borderColor":{"__isSmartRef__":true,"id":2192},"borderOpacity":1,"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":2193}},"2192":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2193":{"vector":{"__isSmartRef__":true,"id":2194},"stops":[{"__isSmartRef__":true,"id":2195},{"__isSmartRef__":true,"id":2196},{"__isSmartRef__":true,"id":2197}],"refcount":0,"_livelyDataWrapperId_":"18:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"1","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"18:lively.paint.LinearGradient","namespaceURI":null}]}},"2194":{"x":0,"y":0,"width":1,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2195":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(196,211,221)","namespaceURI":null}]}},"2196":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(137,167,187)","namespaceURI":null}]}},"2197":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(96,130,153)","namespaceURI":null}]}},"2198":{"borderColor":{"__isSmartRef__":true,"id":2184},"borderWidth":1,"strokeOpacity":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":2199}},"2199":{"vector":{"__isSmartRef__":true,"id":2194},"stops":[{"__isSmartRef__":true,"id":2200},{"__isSmartRef__":true,"id":2201},{"__isSmartRef__":true,"id":2202}],"refcount":0,"_livelyDataWrapperId_":"19:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"1","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"19:lively.paint.LinearGradient","namespaceURI":null}]}},"2200":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"2201":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.4","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"2202":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(245,245,245)","namespaceURI":null}]}},"2203":{"borderColor":{"__isSmartRef__":true,"id":2204},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":2205}},"2204":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2205":{"vector":{"__isSmartRef__":true,"id":2206},"stops":[{"__isSmartRef__":true,"id":2207},{"__isSmartRef__":true,"id":2208},{"__isSmartRef__":true,"id":2209}],"refcount":0,"_livelyDataWrapperId_":"20:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"20:lively.paint.LinearGradient","namespaceURI":null}]}},"2206":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"2207":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(196,211,221)","namespaceURI":null}]}},"2208":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(137,167,187)","namespaceURI":null}]}},"2209":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(96,130,153)","namespaceURI":null}]}},"2210":{"borderColor":{"__isSmartRef__":true,"id":2204},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":2211}},"2211":{"vector":{"__isSmartRef__":true,"id":2206},"stops":[{"__isSmartRef__":true,"id":2212},{"__isSmartRef__":true,"id":2213},{"__isSmartRef__":true,"id":2214}],"refcount":0,"_livelyDataWrapperId_":"21:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"21:lively.paint.LinearGradient","namespaceURI":null}]}},"2212":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"2213":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.4","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"2214":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(245,245,245)","namespaceURI":null}]}},"2215":{"borderRadius":8,"borderWidth":2,"bordercolor":{"__isSmartRef__":true,"id":2204},"fill":{"__isSmartRef__":true,"id":2216}},"2216":{"vector":{"__isSmartRef__":true,"id":17},"stops":[{"__isSmartRef__":true,"id":2217},{"__isSmartRef__":true,"id":2218},{"__isSmartRef__":true,"id":2219}],"refcount":2,"_livelyDataWrapperId_":"22:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"22:lively.paint.LinearGradient","namespaceURI":null}]}},"2217":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(184,184,184)","namespaceURI":null}]}},"2218":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.6","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"2219":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(184,184,184)","namespaceURI":null}]}},"2220":{"fill":null},"2221":{"fill":{"__isSmartRef__":true,"id":2222},"fillOpacity":0.5},"2222":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2223":{"textColor":{"__isSmartRef__":true,"id":2224},"fontStyle":"bold"},"2224":{"r":0.5,"g":0.5,"b":0.5,"a":0.5,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2225":{"fill":{"__isSmartRef__":true,"id":2226}},"2226":{"stops":[{"__isSmartRef__":true,"id":2227},{"__isSmartRef__":true,"id":2228},{"__isSmartRef__":true,"id":2229}],"f":{"__isSmartRef__":true,"id":2230},"refcount":0,"_livelyDataWrapperId_":"23:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"23:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"2227":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"2228":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"2229":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(122,122,122)","namespaceURI":null}]}},"2230":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2231":{"fill":{"__isSmartRef__":true,"id":2232}},"2232":{"stops":[{"__isSmartRef__":true,"id":2233},{"__isSmartRef__":true,"id":2234},{"__isSmartRef__":true,"id":2235}],"f":{"__isSmartRef__":true,"id":2236},"refcount":0,"_livelyDataWrapperId_":"24:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"24:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"2233":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"2234":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"2235":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(122,122,122)","namespaceURI":null}]}},"2236":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2237":{"fill":{"__isSmartRef__":true,"id":2238}},"2238":{"stops":[{"__isSmartRef__":true,"id":2239},{"__isSmartRef__":true,"id":2240},{"__isSmartRef__":true,"id":2241}],"f":{"__isSmartRef__":true,"id":2242},"refcount":0,"_livelyDataWrapperId_":"25:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"25:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"2239":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"2240":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"2241":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(122,122,122)","namespaceURI":null}]}},"2242":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2243":{"fill":{"__isSmartRef__":true,"id":2244}},"2244":{"stops":[{"__isSmartRef__":true,"id":2245},{"__isSmartRef__":true,"id":2246},{"__isSmartRef__":true,"id":2247}],"f":{"__isSmartRef__":true,"id":2248},"refcount":0,"_livelyDataWrapperId_":"26:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"26:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"2245":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(226,179,179)","namespaceURI":null}]}},"2246":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(158,0,0)","namespaceURI":null}]}},"2247":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(95,0,0)","namespaceURI":null}]}},"2248":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2249":{"fill":{"__isSmartRef__":true,"id":2250}},"2250":{"stops":[{"__isSmartRef__":true,"id":2251},{"__isSmartRef__":true,"id":2252},{"__isSmartRef__":true,"id":2253}],"f":{"__isSmartRef__":true,"id":2254},"refcount":0,"_livelyDataWrapperId_":"27:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"27:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"2251":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(179,219,179)","namespaceURI":null}]}},"2252":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(0,133,0)","namespaceURI":null}]}},"2253":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(0,79,0)","namespaceURI":null}]}},"2254":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2255":{"fill":{"__isSmartRef__":true,"id":2256}},"2256":{"stops":[{"__isSmartRef__":true,"id":2257},{"__isSmartRef__":true,"id":2258},{"__isSmartRef__":true,"id":2259}],"f":{"__isSmartRef__":true,"id":2260},"refcount":0,"_livelyDataWrapperId_":"28:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"28:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"2257":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(255,243,209)","namespaceURI":null}]}},"2258":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(255,215,102)","namespaceURI":null}]}},"2259":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(153,129,61)","namespaceURI":null}]}},"2260":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2261":{"borderColor":{"__isSmartRef__":true,"id":2262},"borderWidth":4,"fill":{"__isSmartRef__":true,"id":2263}},"2262":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2263":{"stops":[{"__isSmartRef__":true,"id":2264},{"__isSmartRef__":true,"id":2265}],"refcount":0,"_livelyDataWrapperId_":"29:lively.paint.RadialGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"29:lively.paint.RadialGradient","namespaceURI":null}]}},"2264":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(243,243,243)","namespaceURI":null}]}},"2265":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"2266":{"borderColor":{"__isSmartRef__":true,"id":2267},"borderWidth":1,"borderRadius":2,"fill":{"__isSmartRef__":true,"id":2184},"opacity":1},"2267":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2268":{"fill":{"__isSmartRef__":true,"id":2222}},"isSimplifiedRegistry":true}}]]> Lively Kernel canvas