// 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); };>initialize (14%, getElementById?, Event>>prepareMousePoint)\n- Morph>>getPosition (uses bounds(), really necessary?)\n- Similitude>>createInverse (14%)\n- Morph>>setBorderWidth (Records, ihhh, 5%)\n- Morph>>position ()","padding":{"__isSmartRef__":true,"id":360},"undoTextStyle":{"__isSmartRef__":true,"id":361},"textStyle":{"__isSmartRef__":true,"id":366},"priorExtent":{"__isSmartRef__":true,"id":371},"__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":"369309:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(35,68)","namespaceURI":null}]}},"352":{"a":1,"b":0,"c":0,"d":1,"e":35,"f":68,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"353":{"x":35,"y":68,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"354":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"355":{"_fill":{"__isSmartRef__":true,"id":356},"_stroke":{"__isSmartRef__":true,"id":357},"_x":0,"_y":0,"_width":832,"_height":175.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":"832","namespaceURI":null},{"key":"height","value":"175.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}]}},"356":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"357":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"358":{"_fill":{"__isSmartRef__":true,"id":359},"_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}]}},"359":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"360":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"361":{"runs":[15,2,4,226],"values":[{"__isSmartRef__":true,"id":362},{"__isSmartRef__":true,"id":363},{"__isSmartRef__":true,"id":364},{"__isSmartRef__":true,"id":365}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"362":{"style":"bold"},"363":{},"364":{"color":"blue","link":"../benchmarks/benchmarkMouseEvents.xhtml"},"365":{},"366":{"runs":[15,2,4,246],"values":[{"__isSmartRef__":true,"id":367},{"__isSmartRef__":true,"id":368},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":370}],"lastIndex":21,"lastRunIndex":3,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"367":{"style":"bold"},"368":{},"369":{"color":"blue","link":"../benchmarks/benchmarkMouseEvents.xhtml"},"370":{},"371":{"x":814,"y":166.6000010172526,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"372":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":339},"pvtCachedTransform":{"__isSmartRef__":true,"id":373},"origin":{"__isSmartRef__":true,"id":374},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":375},"shape":{"__isSmartRef__":true,"id":376},"image":{"__isSmartRef__":true,"id":378},"originalExtent":{"__isSmartRef__":true,"id":379},"priorExtent":{"__isSmartRef__":true,"id":380},"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ImageMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"ImageMorph","namespaceURI":null},{"key":"id","value":"372189:ImageMorph","namespaceURI":null},{"key":"transform","value":"translate(105,1126)","namespaceURI":null}]}},"373":{"a":1,"b":0,"c":0,"d":1,"e":105,"f":1126,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"374":{"x":105,"y":1126,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"375":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"376":{"_fill":{"__isSmartRef__":true,"id":377},"_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":"629","namespaceURI":null},{"key":"height","value":"714","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"rgb(127,127,230)","namespaceURI":null}]}},"377":{"r":0.4980392156862745,"g":0.4980392156862745,"b":0.9019607843137255,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"378":{"_fill":null,"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Image","__rawNodeInfo__":{"tagName":"image","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"xmlns","value":"http://www.w3.org/2000/svg","namespaceURI":"http://www.w3.org/2000/xmlns/"},{"key":"xmlns:xlink","value":"http://www.w3.org/1999/xlink","namespaceURI":"http://www.w3.org/2000/xmlns/"},{"key":"width","value":"629","namespaceURI":null},{"key":"height","value":"714","namespaceURI":null},{"key":"xlink:href","value":"media/profileMouseMove.png","namespaceURI":"http://www.w3.org/1999/xlink"}]}},"379":{"x":629,"y":714,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"380":{"x":629,"y":714,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"381":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":339},"pvtCachedTransform":{"__isSmartRef__":true,"id":382},"origin":{"__isSmartRef__":true,"id":383},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":384},"shape":{"__isSmartRef__":true,"id":385},"textContent":{"__isSmartRef__":true,"id":388},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":389},"textString":"Mouse move:","padding":{"__isSmartRef__":true,"id":390},"textStyle":{"__isSmartRef__":true,"id":391},"undoTextStyle":{"__isSmartRef__":true,"id":393},"priorExtent":{"__isSmartRef__":true,"id":395},"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":"373971:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(34,268)","namespaceURI":null}]}},"382":{"a":1,"b":0,"c":0,"d":1,"e":34,"f":268,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"383":{"x":34,"y":268,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"384":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"385":{"_fill":{"__isSmartRef__":true,"id":386},"_stroke":{"__isSmartRef__":true,"id":387},"_x":0,"_y":0,"_width":129,"_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":"129","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}]}},"386":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"387":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"388":{"_fill":{"__isSmartRef__":true,"id":389},"_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}]}},"389":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"390":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"391":{"runs":[11],"values":[{"__isSmartRef__":true,"id":392}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"392":{},"393":{"runs":[11],"values":[{"__isSmartRef__":true,"id":394}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"394":{},"395":{"x":111,"y":15.40000025431315,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"396":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":339},"pvtCachedTransform":{"__isSmartRef__":true,"id":397},"origin":{"__isSmartRef__":true,"id":398},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":399},"shape":{"__isSmartRef__":true,"id":400},"textContent":{"__isSmartRef__":true,"id":403},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":404},"textString":"Mouse click:","padding":{"__isSmartRef__":true,"id":405},"textStyle":{"__isSmartRef__":true,"id":406},"undoTextStyle":{"__isSmartRef__":true,"id":408},"priorExtent":{"__isSmartRef__":true,"id":410},"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":"374139:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(36,1084)","namespaceURI":null}]}},"397":{"a":1,"b":0,"c":0,"d":1,"e":36,"f":1084,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"398":{"x":36,"y":1084,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"399":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"400":{"_fill":{"__isSmartRef__":true,"id":401},"_stroke":{"__isSmartRef__":true,"id":402},"_x":0,"_y":0,"_width":129,"_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":"129","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}]}},"401":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"402":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"403":{"_fill":{"__isSmartRef__":true,"id":404},"_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}]}},"404":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"405":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"406":{"runs":[12],"values":[{"__isSmartRef__":true,"id":407}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"407":{},"408":{"runs":[8],"values":[{"__isSmartRef__":true,"id":409}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"409":{},"410":{"x":111,"y":15.40000025431315,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"411":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":339},"pvtCachedTransform":{"__isSmartRef__":true,"id":412},"origin":{"__isSmartRef__":true,"id":413},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":414},"shape":{"__isSmartRef__":true,"id":415},"image":{"__isSmartRef__":true,"id":417},"originalExtent":{"__isSmartRef__":true,"id":418},"priorExtent":{"__isSmartRef__":true,"id":419},"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ImageMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"ImageMorph","namespaceURI":null},{"key":"id","value":"373635:ImageMorph","namespaceURI":null},{"key":"transform","value":"translate(80,292)","namespaceURI":null}]}},"412":{"a":1,"b":0,"c":0,"d":1,"e":80,"f":292,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"413":{"x":80,"y":292,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"414":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"415":{"_fill":{"__isSmartRef__":true,"id":416},"_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":"707","namespaceURI":null},{"key":"height","value":"763","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"rgb(127,127,230)","namespaceURI":null}]}},"416":{"r":0.4980392156862745,"g":0.4980392156862745,"b":0.9019607843137255,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"417":{"_fill":null,"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Image","__rawNodeInfo__":{"tagName":"image","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"xmlns","value":"http://www.w3.org/2000/svg","namespaceURI":"http://www.w3.org/2000/xmlns/"},{"key":"xmlns:xlink","value":"http://www.w3.org/1999/xlink","namespaceURI":"http://www.w3.org/2000/xmlns/"},{"key":"width","value":"707","namespaceURI":null},{"key":"height","value":"763","namespaceURI":null},{"key":"xlink:href","value":"media/profileMouseMove2.png","namespaceURI":"http://www.w3.org/1999/xlink"}]}},"418":{"x":707,"y":763,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"419":{"x":707,"y":763,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"420":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":1794,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"421":{"x":50,"y":1794,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"422":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"423":{"_fill":{"__isSmartRef__":true,"id":424},"_stroke":{"__isSmartRef__":true,"id":425},"__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":"1880","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}]}},"424":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"425":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"426":{"x":891,"y":1880,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"427":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":428},"origin":{"__isSmartRef__":true,"id":429},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":430},"shape":{"__isSmartRef__":true,"id":431},"textContent":{"__isSmartRef__":true,"id":434},"fontFamily":"Helvetica","fontSize":12,"textColor":{"__isSmartRef__":true,"id":435},"lineNumberHint":2,"textString":"Links:\nJournal:\n\tMarch, April, and May ","textStyle":{"__isSmartRef__":true,"id":436},"undoTextStyle":{"__isSmartRef__":true,"id":441},"priorExtent":{"__isSmartRef__":true,"id":444},"__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":"375772:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(1253,86)","namespaceURI":null}]}},"428":{"a":1,"b":0,"c":0,"d":1,"e":1253,"f":86,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"429":{"x":1253,"y":86,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"430":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"431":{"_fill":{"__isSmartRef__":true,"id":432},"_stroke":{"__isSmartRef__":true,"id":433},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"-130","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"259","namespaceURI":null},{"key":"height","value":"50","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}]}},"432":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"433":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"434":{"_fill":{"__isSmartRef__":true,"id":435},"_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":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"435":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"436":{"runs":[6,11,21,1],"values":[{"__isSmartRef__":true,"id":437},{"__isSmartRef__":true,"id":438},{"__isSmartRef__":true,"id":439},{"__isSmartRef__":true,"id":440}],"lastIndex":38,"lastRunIndex":3,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"437":{"style":"bold"},"438":{},"439":{"color":"blue","link":"rk-journal-MarchAprilMay2010.xhtml"},"440":{},"441":{"runs":[6,2],"values":[{"__isSmartRef__":true,"id":442},{"__isSmartRef__":true,"id":443}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"442":{"style":"bold"},"443":{},"444":{"x":247,"y":42,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"445":{"submorphs":[{"__isSmartRef__":true,"id":446},{"__isSmartRef__":true,"id":457}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":474},"origin":{"__isSmartRef__":true,"id":475},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":476},"shape":{"__isSmartRef__":true,"id":477},"priorExtent":{"__isSmartRef__":true,"id":480},"__SourceModuleName__":"Global.anonymous_module_2","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"376305:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,1590)","namespaceURI":null}]}},"446":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":445},"pvtCachedTransform":{"__isSmartRef__":true,"id":447},"origin":{"__isSmartRef__":true,"id":448},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":449},"shape":{"__isSmartRef__":true,"id":450},"textContent":{"__isSmartRef__":true,"id":453},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":454},"textString":"2010-06-30, Wed","padding":{"__isSmartRef__":true,"id":455},"priorExtent":{"__isSmartRef__":true,"id":456},"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":"376306:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"447":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"448":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"449":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"450":{"_fill":{"__isSmartRef__":true,"id":451},"_stroke":{"__isSmartRef__":true,"id":452},"_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","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"451":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"452":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"453":{"_fill":{"__isSmartRef__":true,"id":454},"_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}]}},"454":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"455":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"456":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"457":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":445},"pvtCachedTransform":{"__isSmartRef__":true,"id":458},"origin":{"__isSmartRef__":true,"id":459},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":460},"shape":{"__isSmartRef__":true,"id":461},"textContent":{"__isSmartRef__":true,"id":464},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":465},"lineNumberHint":4,"textString":"ContextJS tool support\n\nToday Jens and I spent some time to extend the system browser. We managed to support ContextJS' new syntax directly in the browser. We decided to add a fourth pane to the browser to show the refined methods inside the layered class/object definition. The fourth pane will also be of value when implementing method categories.","padding":{"__isSmartRef__":true,"id":466},"undoTextStyle":{"__isSmartRef__":true,"id":467},"textStyle":{"__isSmartRef__":true,"id":470},"priorExtent":{"__isSmartRef__":true,"id":473},"__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":"376385:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(37,55)","namespaceURI":null}]}},"458":{"a":1,"b":0,"c":0,"d":1,"e":37,"f":55,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"459":{"x":37,"y":55,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"460":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"461":{"_fill":{"__isSmartRef__":true,"id":462},"_stroke":{"__isSmartRef__":true,"id":463},"_x":0,"_y":0,"_width":832,"_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":"832","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}]}},"462":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"463":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"464":{"_fill":{"__isSmartRef__":true,"id":465},"_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}]}},"465":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"466":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"467":{"runs":[22,185],"values":[{"__isSmartRef__":true,"id":468},{"__isSmartRef__":true,"id":469}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"468":{"style":"bold"},"469":{},"470":{"runs":[22,327],"values":[{"__isSmartRef__":true,"id":471},{"__isSmartRef__":true,"id":472}],"lastIndex":22,"lastRunIndex":1,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"471":{"style":"bold"},"472":{},"473":{"x":814,"y":82.60000101725261,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"474":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":1590,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"475":{"x":50,"y":1590,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"476":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"477":{"_fill":{"__isSmartRef__":true,"id":478},"_stroke":{"__isSmartRef__":true,"id":479},"__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":"880","namespaceURI":null},{"key":"height","value":"174","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}]}},"478":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"479":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"480":{"x":880,"y":174,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"481":{"submorphs":[{"__isSmartRef__":true,"id":482},{"__isSmartRef__":true,"id":493},{"__isSmartRef__":true,"id":502},{"__isSmartRef__":true,"id":511},{"__isSmartRef__":true,"id":528}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":557},"origin":{"__isSmartRef__":true,"id":558},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":559},"shape":{"__isSmartRef__":true,"id":560},"priorExtent":{"__isSmartRef__":true,"id":563},"__SourceModuleName__":"Global.anonymous_module_2","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"JournalEntryMorph","namespaceURI":null},{"key":"id","value":"376459:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,745)","namespaceURI":null}]}},"482":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":481},"pvtCachedTransform":{"__isSmartRef__":true,"id":483},"origin":{"__isSmartRef__":true,"id":484},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":485},"shape":{"__isSmartRef__":true,"id":486},"textContent":{"__isSmartRef__":true,"id":489},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":490},"textString":"2010-07-04, Sun","padding":{"__isSmartRef__":true,"id":491},"priorExtent":{"__isSmartRef__":true,"id":492},"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":"376460:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"483":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"484":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"485":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"486":{"_fill":{"__isSmartRef__":true,"id":487},"_stroke":{"__isSmartRef__":true,"id":488},"_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","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"487":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"488":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"489":{"_fill":{"__isSmartRef__":true,"id":490},"_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}]}},"490":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"491":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"492":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"493":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":481},"pvtCachedTransform":{"__isSmartRef__":true,"id":494},"origin":{"__isSmartRef__":true,"id":495},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":496},"shape":{"__isSmartRef__":true,"id":497},"image":{"__isSmartRef__":true,"id":499},"originalExtent":{"__isSmartRef__":true,"id":500},"priorExtent":{"__isSmartRef__":true,"id":501},"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ImageMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"ImageMorph","namespaceURI":null},{"key":"id","value":"377968:ImageMorph","namespaceURI":null},{"key":"transform","value":"translate(186,656)","namespaceURI":null}]}},"494":{"a":1,"b":0,"c":0,"d":1,"e":186,"f":656,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"495":{"x":186,"y":656,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"496":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"497":{"_fill":{"__isSmartRef__":true,"id":498},"_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":"516","namespaceURI":null},{"key":"height","value":"135.941","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"rgb(127,127,230)","namespaceURI":null}]}},"498":{"r":0.4980392156862745,"g":0.4980392156862745,"b":0.9019607843137255,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"499":{"_fill":null,"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Image","__rawNodeInfo__":{"tagName":"image","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"xmlns","value":"http://www.w3.org/2000/svg","namespaceURI":"http://www.w3.org/2000/xmlns/"},{"key":"xmlns:xlink","value":"http://www.w3.org/1999/xlink","namespaceURI":"http://www.w3.org/2000/xmlns/"},{"key":"width","value":"516","namespaceURI":null},{"key":"height","value":"135.94063079777365","namespaceURI":null},{"key":"xlink:href","value":"media/pdfgeneratorclient.png","namespaceURI":"http://www.w3.org/1999/xlink"}]}},"500":{"x":539,"y":142,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"501":{"x":516,"y":135.9409942626953,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"502":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":481},"pvtCachedTransform":{"__isSmartRef__":true,"id":503},"origin":{"__isSmartRef__":true,"id":504},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":505},"shape":{"__isSmartRef__":true,"id":506},"image":{"__isSmartRef__":true,"id":508},"originalExtent":{"__isSmartRef__":true,"id":509},"priorExtent":{"__isSmartRef__":true,"id":510},"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ImageMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"ImageMorph","namespaceURI":null},{"key":"id","value":"379440:ImageMorph","namespaceURI":null},{"key":"transform","value":"translate(107,211)","namespaceURI":null}]}},"503":{"a":1,"b":0,"c":0,"d":1,"e":107,"f":211,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"504":{"x":107,"y":211,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"505":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"506":{"_fill":{"__isSmartRef__":true,"id":507},"_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":"663","namespaceURI":null},{"key":"height","value":"226.545","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill","value":"rgb(127,127,230)","namespaceURI":null}]}},"507":{"r":0.4980392156862745,"g":0.4980392156862745,"b":0.9019607843137255,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"508":{"_fill":null,"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Image","__rawNodeInfo__":{"tagName":"image","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"xmlns","value":"http://www.w3.org/2000/svg","namespaceURI":"http://www.w3.org/2000/xmlns/"},{"key":"xmlns:xlink","value":"http://www.w3.org/1999/xlink","namespaceURI":"http://www.w3.org/2000/xmlns/"},{"key":"width","value":"663","namespaceURI":null},{"key":"height","value":"226.5448028673835","namespaceURI":null},{"key":"xlink:href","value":"media/papermorph.png","namespaceURI":"http://www.w3.org/1999/xlink"}]}},"509":{"x":837,"y":286,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"510":{"x":663,"y":226.5449981689453,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"511":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":481},"pvtCachedTransform":{"__isSmartRef__":true,"id":512},"origin":{"__isSmartRef__":true,"id":513},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":514},"shape":{"__isSmartRef__":true,"id":515},"textContent":{"__isSmartRef__":true,"id":518},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":519},"lineNumberHint":7,"textString":"PaperMorph\n\nWe created a journal-like Morph that allows writing documents. It lays out its contents vertically. The contents can be any kind of morph. PaperMorph implements a method #asText that normally just concatenates the textual contents of it's submorphs. This text can be stored into a file.\n\nThe PaperMorph can be used, for instance, to create LaTeX source. When extended with the \"TeXLayer\", the PaperMorph's submorphs are interpreted as LaTeX title, paragraphs, listings, etc. #asText will return a TeX source string.","padding":{"__isSmartRef__":true,"id":520},"undoTextStyle":{"__isSmartRef__":true,"id":521},"textStyle":{"__isSmartRef__":true,"id":524},"priorExtent":{"__isSmartRef__":true,"id":527},"__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":"376532:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(25,64)","namespaceURI":null}]}},"512":{"a":1,"b":0,"c":0,"d":1,"e":25,"f":64,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"513":{"x":25,"y":64,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"514":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"515":{"_fill":{"__isSmartRef__":true,"id":516},"_stroke":{"__isSmartRef__":true,"id":517},"_x":0,"_y":0,"_width":832,"_height":142.33333333333331,"__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":"142.33333333333331","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}]}},"516":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"517":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"518":{"_fill":{"__isSmartRef__":true,"id":519},"_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}]}},"519":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"520":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"521":{"runs":[11,516],"values":[{"__isSmartRef__":true,"id":522},{"__isSmartRef__":true,"id":523}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"522":{"style":"bold"},"523":{},"524":{"runs":[11,517],"values":[{"__isSmartRef__":true,"id":525},{"__isSmartRef__":true,"id":526}],"lastIndex":11,"lastRunIndex":1,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"525":{"style":"bold"},"526":{},"527":{"x":814,"y":132.99999491373697,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"528":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":481},"pvtCachedTransform":{"__isSmartRef__":true,"id":529},"origin":{"__isSmartRef__":true,"id":530},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":531},"shape":{"__isSmartRef__":true,"id":532},"textContent":{"__isSmartRef__":true,"id":535},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":536},"lineNumberHint":8,"textString":"PDF generator\n\nTo generate a PDF from the TeX string created by the PaperMorph we implemented a simple server in nodejs (http://www.lively-kernel.org/repository/lively-kernel/trunk/source/server/nodejs/). The server downloads TeX source code and compiles it using pdflatex. The result is uploaded to a URL. The PDF generation can be invoked using the PDFGeneratorClient (shown below). If you are interested in the pdflatex output (for LaTeX debugging see http://lively-kernel.org/nodejsLaTeX/LaTeXServerLog)\n\nSee the LaTeX/PDF generation in action: projects/HTML5/seminarReport.xhtml.\n","padding":{"__isSmartRef__":true,"id":537},"undoTextStyle":{"__isSmartRef__":true,"id":538},"textStyle":{"__isSmartRef__":true,"id":547},"priorExtent":{"__isSmartRef__":true,"id":556},"__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":"379723:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(25,472)","namespaceURI":null}]}},"529":{"a":1,"b":0,"c":0,"d":1,"e":25,"f":472,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"530":{"x":25,"y":472,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"531":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"532":{"_fill":{"__isSmartRef__":true,"id":533},"_stroke":{"__isSmartRef__":true,"id":534},"_x":0,"_y":0,"_width":833,"_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":"833","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}]}},"533":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"534":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"535":{"_fill":{"__isSmartRef__":true,"id":536},"_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}]}},"536":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"537":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"538":{"runs":[14,107,81,253,52,42,34,3],"values":[{"__isSmartRef__":true,"id":539},{"__isSmartRef__":true,"id":540},{"__isSmartRef__":true,"id":541},{"__isSmartRef__":true,"id":542},{"__isSmartRef__":true,"id":543},{"__isSmartRef__":true,"id":544},{"__isSmartRef__":true,"id":545},{"__isSmartRef__":true,"id":546}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"539":{"style":"bold"},"540":{},"541":{"color":"blue","link":"http://www.lively-kernel.org/repository/lively-kernel/trunk/source/server/nodejs/"},"542":{},"543":{"color":"blue","link":"http://lively-kernel.org/nodejsLaTeX/LaTeXServerLog"},"544":{},"545":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/projects/HTML5/seminarReport.xhtml"},"546":{},"547":{"runs":[14,107,81,253,52,42,34,2],"values":[{"__isSmartRef__":true,"id":548},{"__isSmartRef__":true,"id":549},{"__isSmartRef__":true,"id":550},{"__isSmartRef__":true,"id":551},{"__isSmartRef__":true,"id":552},{"__isSmartRef__":true,"id":553},{"__isSmartRef__":true,"id":554},{"__isSmartRef__":true,"id":555}],"lastIndex":583,"lastRunIndex":7,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"548":{"style":"bold"},"549":{},"550":{"color":"blue","link":"http://www.lively-kernel.org/repository/lively-kernel/trunk/source/server/nodejs/"},"551":{},"552":{"color":"blue","link":"http://lively-kernel.org/nodejsLaTeX/LaTeXServerLog"},"553":{},"554":{"color":"blue","link":"http://www.lively-kernel.org/repository/webwerkstatt/projects/HTML5/seminarReport.xhtml"},"555":{},"556":{"x":815,"y":149.79999796549478,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"557":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":745,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"558":{"x":50,"y":745,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"559":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"560":{"_fill":{"__isSmartRef__":true,"id":561},"_stroke":{"__isSmartRef__":true,"id":562},"__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":"815","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}]}},"561":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"562":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"563":{"x":876,"y":815,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"564":{"submorphs":[{"__isSmartRef__":true,"id":565},{"__isSmartRef__":true,"id":576},{"__isSmartRef__":true,"id":593}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":616},"origin":{"__isSmartRef__":true,"id":617},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":618},"shape":{"__isSmartRef__":true,"id":619},"priorExtent":{"__isSmartRef__":true,"id":622},"__SourceModuleName__":"Global.anonymous_module_2","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"JournalEntryMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"382589:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,309)","namespaceURI":null}]}},"565":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":564},"pvtCachedTransform":{"__isSmartRef__":true,"id":566},"origin":{"__isSmartRef__":true,"id":567},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":568},"shape":{"__isSmartRef__":true,"id":569},"textContent":{"__isSmartRef__":true,"id":572},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":573},"textString":"2010-07-17, Sat","padding":{"__isSmartRef__":true,"id":574},"priorExtent":{"__isSmartRef__":true,"id":575},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__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":"382590:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"566":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"567":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"568":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"569":{"_fill":{"__isSmartRef__":true,"id":570},"_stroke":{"__isSmartRef__":true,"id":571},"_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","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"570":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"571":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"572":{"_fill":{"__isSmartRef__":true,"id":573},"_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}]}},"573":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"574":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"575":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"576":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":564},"pvtCachedTransform":{"__isSmartRef__":true,"id":577},"origin":{"__isSmartRef__":true,"id":578},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":579},"shape":{"__isSmartRef__":true,"id":580},"textContent":{"__isSmartRef__":true,"id":583},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":584},"lineNumberHint":10,"textString":"ContextJS Layer flattening\n\nLayers can now b converted in into a static definition. This is very useful for development: try it out in a layer, when it's done make it static to not have the performance overhead and better debugability.\n\nSomeLayer.flattened(); // returns static definitions\nSomeLayer.writeFlattened('some.moduleName') // persist definitions as module\n\ntry it out:\nmodule('cop.Flatten').load();\nUndoLayer.flattened()","padding":{"__isSmartRef__":true,"id":585},"undoTextStyle":{"__isSmartRef__":true,"id":586},"textStyle":{"__isSmartRef__":true,"id":589},"priorExtent":{"__isSmartRef__":true,"id":592},"__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":"382627:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(21,56)","namespaceURI":null},{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"}]}},"577":{"a":1,"b":0,"c":0,"d":1,"e":21,"f":56,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"578":{"x":21,"y":56,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"579":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"580":{"_fill":{"__isSmartRef__":true,"id":581},"_stroke":{"__isSmartRef__":true,"id":582},"_x":0,"_y":0,"_width":832,"_height":192.73333333333335,"__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":"192.73333333333335","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}]}},"581":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"582":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"583":{"_fill":{"__isSmartRef__":true,"id":584},"_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}]}},"584":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"585":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"586":{"runs":[27,340],"values":[{"__isSmartRef__":true,"id":587},{"__isSmartRef__":true,"id":588}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"587":{"style":"bold"},"588":{},"589":{"runs":[27,404],"values":[{"__isSmartRef__":true,"id":590},{"__isSmartRef__":true,"id":591}],"lastIndex":27,"lastRunIndex":1,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"590":{"style":"bold"},"591":{},"592":{"x":814,"y":183.4000040690104,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"593":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":564},"pvtCachedTransform":{"__isSmartRef__":true,"id":594},"origin":{"__isSmartRef__":true,"id":595},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":596},"shape":{"__isSmartRef__":true,"id":597},"textContent":{"__isSmartRef__":true,"id":600},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":601},"textString":"Comments from Jens:\n\nVery very cool! Or how our american friends would say: Awesome! :-) You even handle inlining of the proceed statement :-)\n\nMeta Comments from Jens:\n\nWe should uptate your journal to use the Journaling app ;-)\n","padding":{"__isSmartRef__":true,"id":602},"undoTextStyle":{"__isSmartRef__":true,"id":603},"textStyle":{"__isSmartRef__":true,"id":609},"lineNumberHint":2,"priorExtent":{"__isSmartRef__":true,"id":615},"__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":"383778:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(25,263)","namespaceURI":null},{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"}]}},"594":{"a":1,"b":0,"c":0,"d":1,"e":25,"f":263,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"595":{"x":25,"y":263,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"596":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"597":{"_fill":{"__isSmartRef__":true,"id":598},"_stroke":{"__isSmartRef__":true,"id":599},"_x":0,"_y":0,"_width":832,"_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":"832","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}]}},"598":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"599":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"600":{"_fill":{"__isSmartRef__":true,"id":601},"_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}]}},"601":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"602":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"603":{"runs":[20,124,24,2,1],"values":[{"__isSmartRef__":true,"id":604},{"__isSmartRef__":true,"id":605},{"__isSmartRef__":true,"id":606},{"__isSmartRef__":true,"id":607},{"__isSmartRef__":true,"id":608}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"604":{"style":"bold"},"605":{},"606":{"style":"bold"},"607":{},"608":{"style":"bold"},"609":{"runs":[20,124,24,61,1],"values":[{"__isSmartRef__":true,"id":610},{"__isSmartRef__":true,"id":611},{"__isSmartRef__":true,"id":612},{"__isSmartRef__":true,"id":613},{"__isSmartRef__":true,"id":614}],"lastIndex":20,"lastRunIndex":1,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"610":{"style":"bold"},"611":{},"612":{"style":"bold"},"613":{},"614":{"style":"bold"},"615":{"x":814,"y":116.1999994913737,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"616":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":309,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"617":{"x":50,"y":309,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"618":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"619":{"_fill":{"__isSmartRef__":true,"id":620},"_stroke":{"__isSmartRef__":true,"id":621},"__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":"875","namespaceURI":null},{"key":"height","value":"406","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}]}},"620":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"621":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"622":{"x":875,"y":406,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"623":{"submorphs":[{"__isSmartRef__":true,"id":624},{"__isSmartRef__":true,"id":635}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":652},"origin":{"__isSmartRef__":true,"id":653},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":654},"shape":{"__isSmartRef__":true,"id":655},"priorExtent":{"__isSmartRef__":true,"id":658},"__SourceModuleName__":"Global.anonymous_module_2","__LivelyClassName__":"JournalEntryMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"JournalEntryMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"385227:JournalEntryMorph","namespaceURI":null},{"key":"transform","value":"translate(50,120)","namespaceURI":null}]}},"624":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":623},"pvtCachedTransform":{"__isSmartRef__":true,"id":625},"origin":{"__isSmartRef__":true,"id":626},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":627},"shape":{"__isSmartRef__":true,"id":628},"textContent":{"__isSmartRef__":true,"id":631},"fontFamily":"Helvetica","fontSize":18,"textColor":{"__isSmartRef__":true,"id":632},"textString":"2010-08-08, Sun","padding":{"__isSmartRef__":true,"id":633},"priorExtent":{"__isSmartRef__":true,"id":634},"lineNumberHint":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__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":"385228:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(20,20)","namespaceURI":null}]}},"625":{"a":1,"b":0,"c":0,"d":1,"e":20,"f":20,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"626":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"627":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"628":{"_fill":{"__isSmartRef__":true,"id":629},"_stroke":{"__isSmartRef__":true,"id":630},"_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","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0.00001","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null}]}},"629":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"630":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"631":{"_fill":{"__isSmartRef__":true,"id":632},"_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}]}},"632":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"633":{"x":11,"y":6,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"634":{"x":678,"y":19.799999237060547,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"635":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":623},"pvtCachedTransform":{"__isSmartRef__":true,"id":636},"origin":{"__isSmartRef__":true,"id":637},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":638},"shape":{"__isSmartRef__":true,"id":639},"textContent":{"__isSmartRef__":true,"id":642},"fontFamily":"Helvetica","fontSize":14,"textColor":{"__isSmartRef__":true,"id":643},"textString":"View hierarchy\n\nI added a new menu command in the browser.\nnew lively.ide.ClassHierarchyViewCommand().viewHierarchy('Morph')","padding":{"__isSmartRef__":true,"id":644},"undoTextStyle":{"__isSmartRef__":true,"id":645},"textStyle":{"__isSmartRef__":true,"id":648},"priorExtent":{"__isSmartRef__":true,"id":651},"lineNumberHint":3,"__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":"385249:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(28,60)","namespaceURI":null},{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"}]}},"636":{"a":1,"b":0,"c":0,"d":1,"e":28,"f":60,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"637":{"x":28,"y":60,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"638":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"639":{"_fill":{"__isSmartRef__":true,"id":640},"_stroke":{"__isSmartRef__":true,"id":641},"_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}]}},"640":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"641":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"642":{"_fill":{"__isSmartRef__":true,"id":643},"_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}]}},"643":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"644":{"x":9,"y":4.666666666666667,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"645":{"runs":[16,104],"values":[{"__isSmartRef__":true,"id":646},{"__isSmartRef__":true,"id":647}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"646":{"style":"bold"},"647":{},"648":{"runs":[16,108],"values":[{"__isSmartRef__":true,"id":649},{"__isSmartRef__":true,"id":650}],"lastIndex":16,"lastRunIndex":1,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"649":{"style":"bold"},"650":{},"651":{"x":814,"y":65.7999979654948,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"652":{"a":1,"b":0,"c":0,"d":1,"e":50,"f":120,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"653":{"x":50,"y":120,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"654":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"655":{"_fill":{"__isSmartRef__":true,"id":656},"_stroke":{"__isSmartRef__":true,"id":657},"__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":"874","namespaceURI":null},{"key":"height","value":"159","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}]}},"656":{"r":0.9607843137254902,"g":0.9607843137254902,"b":0.9803921568627451,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"657":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.8627450980392157,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"658":{"x":874,"y":159,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"659":{"submorphs":[{"__isSmartRef__":true,"id":660},{"__isSmartRef__":true,"id":731}],"owner":{"__isSmartRef__":true,"id":0},"pvtCachedTransform":{"__isSmartRef__":true,"id":807},"origin":{"__isSmartRef__":true,"id":808},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":809},"shape":{"__isSmartRef__":true,"id":810},"contentOffset":{"__isSmartRef__":true,"id":811},"__layered_openForDragAndDrop__":false,"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"priorExtent":{"__isSmartRef__":true,"id":812},"targetMorph":{"__isSmartRef__":true,"id":660},"titleBar":{"__isSmartRef__":true,"id":731},"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"WindowMorph","namespaceURI":null},{"key":"id","value":"342627:WindowMorph","namespaceURI":null},{"key":"transform","value":"translate(954,250)","namespaceURI":null}]}},"660":{"submorphs":[{"__isSmartRef__":true,"id":661},{"__isSmartRef__":true,"id":699}],"owner":{"__isSmartRef__":true,"id":659},"pvtCachedTransform":{"__isSmartRef__":true,"id":724},"origin":{"__isSmartRef__":true,"id":725},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":726},"shape":{"__isSmartRef__":true,"id":727},"showScrollBar":true,"__layered_suppressHandles__":true,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":729},"clipMorph":{"__isSmartRef__":true,"id":661},"verticalScrollBar":{"__isSmartRef__":true,"id":699},"attributeConnections":[{"__isSmartRef__":true,"id":730}],"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ScrollPane","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"ScrollPane","namespaceURI":null},{"key":"id","value":"342619:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,22)","namespaceURI":null}]}},"661":{"submorphs":[{"__isSmartRef__":true,"id":662}],"owner":{"__isSmartRef__":true,"id":660},"pvtCachedTransform":{"__isSmartRef__":true,"id":691},"origin":{"__isSmartRef__":true,"id":692},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":693},"shape":{"__isSmartRef__":true,"id":694},"clip":{"__isSmartRef__":true,"id":696},"_clip-path":"url(#31:lively.scene.Clip)","isClipMorph":true,"__layered_suppressHandles__":true,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":698},"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ClipMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"ClipMorph","namespaceURI":null},{"key":"id","value":"342620:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#31:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"662":{"submorphs":[{"__isSmartRef__":true,"id":663}],"owner":{"__isSmartRef__":true,"id":661},"pvtCachedTransform":{"__isSmartRef__":true,"id":668},"origin":{"__isSmartRef__":true,"id":669},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":670},"shape":{"__isSmartRef__":true,"id":671},"textContent":{"__isSmartRef__":true,"id":674},"fontFamily":"Helvetica","fontSize":12,"textColor":{"__isSmartRef__":true,"id":675},"textString":"[X] module header when file created\n[X] progress bar and step-by-step parsing\nrefine local change items\nshortcut for creating a function (tab completion?)\n[X] fix arrow move + text selection\n[X] bindings -- manually change attribute\n[X] indent/outdent selection comment/remove comment selection\nfix tooldock\nalt click --> list menu\nremove buttons from browser\nCMD+S in browser on Error --> save menu pops up --> show error message\n[X] small and big promp dialog\nWebDAV commiting\nadding subelements in local code browser inbetween\nfix dragndrop\nsimply create new page\nchrome page caching\n[X] LocalCode Browser: Push Changes back is broken (or so)\n[X] subclass does not reuse exosting class?\nfirst paste scrolls page?\n[X] edit url line in system browser\n[X] edit url line in local browser\nupdate page copies tests back and forth\nintegrate new testrunner\n[X] add converter function to bindings\n[X] sort modules in systembrowser\n[X] disconnect before connect in bindings\nintegration of trac bugfix api\nWebResource -- make it async!\n'webcollab-integration.TestRunner2 seems to be broken\n[X] system browser is broken for alternative roots\n[X] Load requirements when edit\ndoc generation: bookmarkable links to classes and methods\nLKWikiTests broken|\nonprogress fix\nmenu for text pane\nlists Global symbols, methods and so on\nSystem Browser does not work in svn revision pages (for example http://lively-kernel.org/repository/webwerkstatt/!svn/bc/10374/draft/DraftScaleWidget.xhtml)\nErrors in binding code e.g. updater should be thrown or better displayed\n","lineNumberHint":40,"useChangeClue":true,"__layered_suppressHandles__":true,"__layered_openForDragAndDrop__":false,"textStyle":{"__isSmartRef__":true,"id":676},"undoTextStyle":{"__isSmartRef__":true,"id":680},"priorExtent":{"__isSmartRef__":true,"id":684},"changeClue":{"__isSmartRef__":true,"id":685},"isSelecting":false,"hasKeyboardFocus":false,"textSelection":{"__isSmartRef__":true,"id":663},"__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":"342616:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,-390.21002197265625)","namespaceURI":null}]}},"663":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":662},"_livelyDataWrapperId_":"385765:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":664},"shape":{"__isSmartRef__":true,"id":665},"priorExtent":{"__isSmartRef__":true,"id":666},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":667},"isCursor":true,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__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":"385765:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"664":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"665":{"_livelyDataWrapperId_":"385764:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"385764: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}]}},"666":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"667":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"668":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":-390.21002197265625,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"669":{"x":0,"y":-390.21002197265625,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"670":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"671":{"_fill":{"__isSmartRef__":true,"id":672},"_stroke":{"__isSmartRef__":true,"id":673},"_x":0,"_y":0,"_width":439,"_height":597.1999999999996,"__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":"439","namespaceURI":null},{"key":"height","value":"597.1999999999996","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}]}},"672":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"673":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"674":{"_fill":{"__isSmartRef__":true,"id":675},"_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":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"675":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"676":{"runs":[1115,17,415],"values":[{"__isSmartRef__":true,"id":677},{"__isSmartRef__":true,"id":678},{"__isSmartRef__":true,"id":679}],"lastIndex":1132,"lastRunIndex":2,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"677":{},"678":{"color":"blue","link":"http://lively-kernel.org/repository/webwerkstatt/ProjectSeminar2010"},"679":{},"680":{"runs":[1115,17,417],"values":[{"__isSmartRef__":true,"id":681},{"__isSmartRef__":true,"id":682},{"__isSmartRef__":true,"id":683}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"681":{},"682":{"color":"blue","link":"http://lively-kernel.org/repository/webwerkstatt/ProjectSeminar2010"},"683":{},"684":{"x":427,"y":589.2000122070312,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"685":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"385707:Morph","origin":{"__isSmartRef__":true,"id":686},"shape":{"__isSmartRef__":true,"id":687},"priorExtent":{"__isSmartRef__":true,"id":690},"mouseHandler":null,"_pointer-events":"none","ignoreWhenCopying":true,"__SourceModuleName__":"Global.lively.Core","__LivelyClassName__":"Morph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"385707:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"686":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"687":{"_x":0,"_y":0,"_width":5,"_height":5,"_stroke":{"__isSmartRef__":true,"id":688},"_fill":{"__isSmartRef__":true,"id":689},"__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":"5","namespaceURI":null},{"key":"height","value":"5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(204,0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"688":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"689":{"r":0.8,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"690":{"x":5,"y":5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"691":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"692":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"693":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"694":{"_fill":{"__isSmartRef__":true,"id":695},"_stroke":null,"_x":0,"_y":0,"_width":439,"_height":216,"__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":"439","namespaceURI":null},{"key":"height","value":"216","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"695":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"696":{"_livelyDataWrapperId_":"31:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":697},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"31:lively.scene.Clip","namespaceURI":null}]}},"697":{"_fill":{"__isSmartRef__":true,"id":695},"_stroke":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":"439","namespaceURI":null},{"key":"height","value":"216","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"698":{"x":436,"y":214,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"699":{"submorphs":[{"__isSmartRef__":true,"id":700}],"owner":{"__isSmartRef__":true,"id":660},"_livelyDataWrapperId_":"385705:SliderMorph","origin":{"__isSmartRef__":true,"id":713},"shape":{"__isSmartRef__":true,"id":714},"priorExtent":{"__isSmartRef__":true,"id":720},"value":1,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":721},"slider":{"__isSmartRef__":true,"id":700},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":722},{"__isSmartRef__":true,"id":723}],"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"SliderMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"SliderMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"385705:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(438,0)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"700":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":699},"_livelyDataWrapperId_":"385706:Morph","origin":{"__isSmartRef__":true,"id":701},"shape":{"__isSmartRef__":true,"id":702},"priorExtent":{"__isSmartRef__":true,"id":709},"pvtCachedTransform":{"__isSmartRef__":true,"id":710},"mouseHandler":{"__isSmartRef__":true,"id":711},"styleClass":["slider"],"__SourceModuleName__":"Global.lively.Core","__LivelyClassName__":"Morph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"385706:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,137.6779523310381)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"701":{"x":0,"y":137.6779523310381,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"702":{"_x":0,"_y":0,"_width":13,"_height":78.32204766896189,"_stroke":{"__isSmartRef__":true,"id":703},"_fill":{"__isSmartRef__":true,"id":704},"_rx":6,"_ry":6,"__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":"13","namespaceURI":null},{"key":"height","value":"78.32204766896189","namespaceURI":null},{"key":"stroke","value":"rgb(102,102,102)","namespaceURI":null},{"key":"fill","value":"url(#18:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"703":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"704":{"vector":{"__isSmartRef__":true,"id":705},"stops":[{"__isSmartRef__":true,"id":706},{"__isSmartRef__":true,"id":707},{"__isSmartRef__":true,"id":708}],"refcount":10,"_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}]}},"705":{"x":0,"y":0,"width":1,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"706":{"__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}]}},"707":{"__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}]}},"708":{"__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}]}},"709":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"710":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":137.6779523310381,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"711":{"target":{"__isSmartRef__":true,"id":699},"eventSpec":{"__isSmartRef__":true,"id":712},"__SourceModuleName__":"Global.lively.Core","__LivelyClassName__":"MouseHandlerForRelay"},"712":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"713":{"x":438,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"714":{"_x":0,"_y":0,"_width":13,"_height":216,"_stroke":{"__isSmartRef__":true,"id":715},"_fill":{"__isSmartRef__":true,"id":716},"_rx":6,"_ry":6,"__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":"13","namespaceURI":null},{"key":"height","value":"216","namespaceURI":null},{"key":"stroke","value":"rgb(204,204,204)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"715":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"716":{"vector":{"__isSmartRef__":true,"id":705},"stops":[{"__isSmartRef__":true,"id":717},{"__isSmartRef__":true,"id":718},{"__isSmartRef__":true,"id":719}],"refcount":14,"_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}]}},"717":{"__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}]}},"718":{"__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}]}},"719":{"__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}]}},"720":{"x":5,"y":10,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"721":{"a":1,"b":0,"c":0,"d":1,"e":438,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"722":{"sourceObj":{"__isSmartRef__":true,"id":699},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":660},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"723":{"sourceObj":{"__isSmartRef__":true,"id":699},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":660},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"724":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":22,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"725":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"726":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"727":{"_fill":null,"_stroke":{"__isSmartRef__":true,"id":728},"__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":"451","namespaceURI":null},{"key":"height","value":"216","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null}]}},"728":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"729":{"x":451,"y":216,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"730":{"sourceObj":{"__isSmartRef__":true,"id":660},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":699},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"731":{"submorphs":[{"__isSmartRef__":true,"id":732},{"__isSmartRef__":true,"id":750},{"__isSmartRef__":true,"id":760},{"__isSmartRef__":true,"id":774},{"__isSmartRef__":true,"id":788}],"owner":{"__isSmartRef__":true,"id":659},"pvtCachedTransform":{"__isSmartRef__":true,"id":802},"origin":{"__isSmartRef__":true,"id":803},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":804},"shape":{"__isSmartRef__":true,"id":805},"mouseHandler":null,"__layered_openForDragAndDrop__":false,"_pointer-events":"none","priorExtent":{"__isSmartRef__":true,"id":806},"contentMorph":{"__isSmartRef__":true,"id":733},"windowMorph":{"__isSmartRef__":true,"id":659},"label":{"__isSmartRef__":true,"id":750},"closeButton":{"__isSmartRef__":true,"id":760},"menuButton":{"__isSmartRef__":true,"id":774},"collapseButton":{"__isSmartRef__":true,"id":788},"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"TitleBarMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TitleBarMorph","namespaceURI":null},{"key":"id","value":"342628:TitleBarMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"732":{"submorphs":[{"__isSmartRef__":true,"id":733}],"owner":{"__isSmartRef__":true,"id":731},"pvtCachedTransform":{"__isSmartRef__":true,"id":743},"origin":{"__isSmartRef__":true,"id":744},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":745},"shape":{"__isSmartRef__":true,"id":746},"clip":{"__isSmartRef__":true,"id":747},"_clip-path":"url(#32:lively.scene.Clip)","isClipMorph":true,"mouseHandler":null,"__layered_openForDragAndDrop__":false,"_pointer-events":"none","priorExtent":{"__isSmartRef__":true,"id":749},"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ClipMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"ClipMorph","namespaceURI":null},{"key":"id","value":"342630:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#32:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(-1,-1)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"733":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":732},"pvtCachedTransform":{"__isSmartRef__":true,"id":734},"origin":{"__isSmartRef__":true,"id":735},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":736},"shape":{"__isSmartRef__":true,"id":737},"styleClass":["titleBar","titleBar"],"mouseHandler":null,"__layered_openForDragAndDrop__":false,"_pointer-events":"none","priorExtent":{"__isSmartRef__":true,"id":742},"__SourceModuleName__":"Global.lively.Core","__LivelyClassName__":"Morph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"Morph","namespaceURI":null},{"key":"id","value":"342629:Morph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"titleBar","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"734":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"735":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"736":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"737":{"_fill":{"__isSmartRef__":true,"id":738},"_stroke":{"__isSmartRef__":true,"id":741},"__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":"451","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#342632:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null}]}},"738":{"stops":[{"__isSmartRef__":true,"id":739},{"__isSmartRef__":true,"id":740}],"refcount":0,"__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":"342632:lively.paint.LinearGradient","namespaceURI":null}]}},"739":{"__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(163,163,163)","namespaceURI":null}]}},"740":{"__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}]}},"741":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"742":{"x":451,"y":30,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"743":{"a":1,"b":0,"c":0,"d":1,"e":-1,"f":-1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"744":{"x":-1,"y":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"745":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"746":{"_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":"453","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"747":{"_livelyDataWrapperId_":"32:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":748},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"32:lively.scene.Clip","namespaceURI":null}]}},"748":{"_fill":null,"_stroke":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":"453","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"749":{"x":453,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"750":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":731},"pvtCachedTransform":{"__isSmartRef__":true,"id":751},"origin":{"__isSmartRef__":true,"id":752},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":753},"shape":{"__isSmartRef__":true,"id":754},"textContent":{"__isSmartRef__":true,"id":756},"fontFamily":"Helvetica","fontSize":12,"textColor":{"__isSmartRef__":true,"id":757},"textString":"TODO list","shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":758},"wrap":"Shrink","mouseHandler":null,"__layered_openForDragAndDrop__":false,"_pointer-events":"none","priorExtent":{"__isSmartRef__":true,"id":759},"lineNumberHint":0,"styleClass":["titleBar_label"],"__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":"342633:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(195,3.005)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_label","namespaceURI":null}]}},"751":{"a":1,"b":0,"c":0,"d":1,"e":195,"f":3.005,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"752":{"x":195,"y":3.005,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"753":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"754":{"_fill":null,"_stroke":{"__isSmartRef__":true,"id":755},"_x":0,"_y":0,"_width":64,"_height":17.2,"__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":"64","namespaceURI":null},{"key":"height","value":"17.2","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"fill-opacity","value":"0.5","namespaceURI":null}]}},"755":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"756":{"_fill":{"__isSmartRef__":true,"id":757},"_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":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"757":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"758":{"x":6,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"759":{"x":52,"y":13.200000762939453,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"760":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":731},"pvtCachedTransform":{"__isSmartRef__":true,"id":761},"origin":{"__isSmartRef__":true,"id":762},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":763},"shape":{"__isSmartRef__":true,"id":764},"formalModel":{"__isSmartRef__":true,"id":770},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":771},"attributeConnections":[{"__isSmartRef__":true,"id":772},{"__isSmartRef__":true,"id":773}],"styleClass":["titleBar_closeButton"],"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"WindowControlMorph","namespaceURI":null},{"key":"id","value":"342635:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(440,11)","namespaceURI":null},{"key":"class","value":"titleBar_closeButton","namespaceURI":null}]}},"761":{"a":1,"b":0,"c":0,"d":1,"e":440,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"762":{"x":440,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"763":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"764":{"_fill":{"__isSmartRef__":true,"id":765},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"url(#23:lively.paint.RadialGradient)","namespaceURI":null}]}},"765":{"stops":[{"__isSmartRef__":true,"id":766},{"__isSmartRef__":true,"id":767},{"__isSmartRef__":true,"id":768}],"f":{"__isSmartRef__":true,"id":769},"refcount":9,"_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}]}},"766":{"__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}]}},"767":{"__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}]}},"768":{"__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}]}},"769":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"770":{"delegate":{"__isSmartRef__":true,"id":659},"__SourceModuleName__":"Global.anonymous_module_3","definition":"{\"HelpText\":\"-CloseHelp\",\"Trigger\":\"=initiateShutdown\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"771":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"772":{"sourceObj":{"__isSmartRef__":true,"id":760},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":659},"targetMethodName":"getCloseHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"773":{"sourceObj":{"__isSmartRef__":true,"id":760},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":659},"targetMethodName":"initiateShutdown","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"774":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":731},"pvtCachedTransform":{"__isSmartRef__":true,"id":775},"origin":{"__isSmartRef__":true,"id":776},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":777},"shape":{"__isSmartRef__":true,"id":778},"formalModel":{"__isSmartRef__":true,"id":784},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":785},"attributeConnections":[{"__isSmartRef__":true,"id":786},{"__isSmartRef__":true,"id":787}],"styleClass":["titleBar_menuButton"],"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"WindowControlMorph","namespaceURI":null},{"key":"id","value":"342637:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(11,11)","namespaceURI":null},{"key":"class","value":"titleBar_menuButton","namespaceURI":null}]}},"775":{"a":1,"b":0,"c":0,"d":1,"e":11,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"776":{"x":11,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"777":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"778":{"_fill":{"__isSmartRef__":true,"id":779},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"url(#24:lively.paint.RadialGradient)","namespaceURI":null}]}},"779":{"stops":[{"__isSmartRef__":true,"id":780},{"__isSmartRef__":true,"id":781},{"__isSmartRef__":true,"id":782}],"f":{"__isSmartRef__":true,"id":783},"refcount":9,"_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}]}},"780":{"__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}]}},"781":{"__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}]}},"782":{"__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}]}},"783":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"784":{"delegate":{"__isSmartRef__":true,"id":659},"__SourceModuleName__":"Global.anonymous_module_3","definition":"{\"HelpText\":\"-MenuHelp\",\"Trigger\":\"=showTargetMorphMenu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"785":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"786":{"sourceObj":{"__isSmartRef__":true,"id":774},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":659},"targetMethodName":"getMenuHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"787":{"sourceObj":{"__isSmartRef__":true,"id":774},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":659},"targetMethodName":"showTargetMorphMenu","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"788":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":731},"pvtCachedTransform":{"__isSmartRef__":true,"id":789},"origin":{"__isSmartRef__":true,"id":790},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":791},"shape":{"__isSmartRef__":true,"id":792},"formalModel":{"__isSmartRef__":true,"id":798},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":799},"attributeConnections":[{"__isSmartRef__":true,"id":800},{"__isSmartRef__":true,"id":801}],"styleClass":["titleBar_collapseButton"],"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"WindowControlMorph","namespaceURI":null},{"key":"id","value":"342639:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(421,11)","namespaceURI":null},{"key":"class","value":"titleBar_collapseButton","namespaceURI":null}]}},"789":{"a":1,"b":0,"c":0,"d":1,"e":421,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"790":{"x":421,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"791":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"792":{"_fill":{"__isSmartRef__":true,"id":793},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"url(#25:lively.paint.RadialGradient)","namespaceURI":null}]}},"793":{"stops":[{"__isSmartRef__":true,"id":794},{"__isSmartRef__":true,"id":795},{"__isSmartRef__":true,"id":796}],"f":{"__isSmartRef__":true,"id":797},"refcount":9,"_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}]}},"794":{"__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}]}},"795":{"__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}]}},"796":{"__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}]}},"797":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"798":{"delegate":{"__isSmartRef__":true,"id":659},"__SourceModuleName__":"Global.anonymous_module_3","definition":"{\"HelpText\":\"-CollapseHelp\",\"Trigger\":\"=toggleCollapse\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"799":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"800":{"sourceObj":{"__isSmartRef__":true,"id":788},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":659},"targetMethodName":"getCollapseHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"801":{"sourceObj":{"__isSmartRef__":true,"id":788},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":659},"targetMethodName":"toggleCollapse","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"802":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"803":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"804":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"805":{"_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":"451","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"806":{"x":451,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"807":{"a":1,"b":0,"c":0,"d":1,"e":954,"f":250,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"808":{"x":954,"y":250,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"809":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"810":{"_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":"451","namespaceURI":null},{"key":"height","value":"238","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"811":{"x":0,"y":23.000000000000004,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"812":{"x":451,"y":238,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"813":{"textString":"Wiki control","savedTextString":"Wiki control","submorphs":[{"__isSmartRef__":true,"id":814}],"owner":{"__isSmartRef__":true,"id":0},"_livelyDataWrapperId_":"35:TextMorph","origin":{"__isSmartRef__":true,"id":819},"shape":{"__isSmartRef__":true,"id":820},"textContent":{"__isSmartRef__":true,"id":822},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":823},"textSelection":{"__isSmartRef__":true,"id":814},"priorExtent":{"__isSmartRef__":true,"id":824},"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":"35:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"814":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":813},"_livelyDataWrapperId_":"37:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":815},"shape":{"__isSmartRef__":true,"id":816},"priorExtent":{"__isSmartRef__":true,"id":817},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":818},"__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":"37:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"815":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"816":{"_livelyDataWrapperId_":"36: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":"36: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}]}},"817":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"818":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"819":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"820":{"_x":0,"_y":0,"_width":80,"_height":21.2,"_stroke":{"__isSmartRef__":true,"id":821},"_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}]}},"821":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"822":{"_fill":{"__isSmartRef__":true,"id":821},"__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}]}},"823":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"824":{"x":68,"y":42,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"825":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"826":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"827":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"828":{"_fill":{"__isSmartRef__":true,"id":829},"_stroke":{"__isSmartRef__":true,"id":830},"__SourceModuleName__":"Global.lively.scene","_x":0,"_y":0,"_width":1408.8,"_height":8435.5,"__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":"1408.8","namespaceURI":null},{"key":"height","value":"8435.5","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}]}},"829":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"830":{"r":0,"g":0.6862745098039216,"b":0.5529411764705883,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"831":{"x":1408.800048828125,"y":5000,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"832":{"styleName":"hpi","raisedBorder":{"__isSmartRef__":true,"id":833},"button":{"__isSmartRef__":true,"id":838},"widgetPanel":{"__isSmartRef__":true,"id":844},"focusHalo":{"__isSmartRef__":true,"id":847},"panel":{"__isSmartRef__":true,"id":849},"link":{"__isSmartRef__":true,"id":852},"helpText":{"__isSmartRef__":true,"id":854},"menu_items":{"__isSmartRef__":true,"id":856},"menu_list":{"__isSmartRef__":true,"id":858},"slider":{"__isSmartRef__":true,"id":860},"slider_background":{"__isSmartRef__":true,"id":861},"slider_horizontal":{"__isSmartRef__":true,"id":862},"slider_background_horizontal":{"__isSmartRef__":true,"id":869},"titleBar":{"__isSmartRef__":true,"id":874},"titleBar_label":{"__isSmartRef__":true,"id":879},"titleBar_label_highlight":{"__isSmartRef__":true,"id":880},"titleBar_button_label":{"__isSmartRef__":true,"id":882},"titleBar_closeButton":{"__isSmartRef__":true,"id":884},"titleBar_menuButton":{"__isSmartRef__":true,"id":885},"titleBar_collapseButton":{"__isSmartRef__":true,"id":886},"titleBar_closeButton_highlight":{"__isSmartRef__":true,"id":887},"titleBar_menuButton_highlight":{"__isSmartRef__":true,"id":893},"titleBar_collapseButton_highlight":{"__isSmartRef__":true,"id":899},"clock":{"__isSmartRef__":true,"id":905},"fabrik":{"__isSmartRef__":true,"id":909},"world":{"__isSmartRef__":true,"id":911}},"833":{"borderColor":{"__isSmartRef__":true,"id":834}},"834":{"vector":{"__isSmartRef__":true,"id":835},"stops":[{"__isSmartRef__":true,"id":836},{"__isSmartRef__":true,"id":837}],"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}]}},"835":{"x":0,"y":0,"width":1,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"836":{"__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}]}},"837":{"__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}]}},"838":{"borderColor":{"__isSmartRef__":true,"id":839},"borderWidth":0.6,"borderRadius":5,"fill":{"__isSmartRef__":true,"id":840}},"839":{"r":0.5019607843137255,"g":0.4470588235294118,"b":0.4666666666666667,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"840":{"vector":{"__isSmartRef__":true,"id":17},"stops":[{"__isSmartRef__":true,"id":841},{"__isSmartRef__":true,"id":842},{"__isSmartRef__":true,"id":843}],"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}]}},"841":{"__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}]}},"842":{"__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}]}},"843":{"__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}]}},"844":{"borderColor":{"__isSmartRef__":true,"id":845},"borderWidth":4,"borderRadius":16,"fill":{"__isSmartRef__":true,"id":846},"opacity":0.4},"845":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"846":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"847":{"fill":null,"borderColor":{"__isSmartRef__":true,"id":848},"strokeOpacity":0.5},"848":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"849":{"fill":{"__isSmartRef__":true,"id":850},"borderWidth":2,"borderColor":{"__isSmartRef__":true,"id":851}},"850":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"851":{"r":0.2,"g":0.2,"b":0.2,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"852":{"borderColor":{"__isSmartRef__":true,"id":853},"borderWidth":1,"fill":{"__isSmartRef__":true,"id":715}},"853":{"r":0,"g":0.8,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"854":{"borderRadius":15,"fill":{"__isSmartRef__":true,"id":855},"fillOpacity":0.8},"855":{"r":1,"g":0.9725490196078431,"b":0.8936274509803921,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"856":{"fontSize":14,"textColor":{"__isSmartRef__":true,"id":857}},"857":{"r":0.129,"g":0.129,"b":0.129,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"858":{"fill":{"__isSmartRef__":true,"id":859}},"859":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"860":{"borderColor":{"__isSmartRef__":true,"id":703},"borderOpacity":1,"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":704}},"861":{"borderColor":{"__isSmartRef__":true,"id":715},"borderWidth":1,"strokeOpacity":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":716}},"862":{"borderColor":{"__isSmartRef__":true,"id":863},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":864}},"863":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"864":{"vector":{"__isSmartRef__":true,"id":865},"stops":[{"__isSmartRef__":true,"id":866},{"__isSmartRef__":true,"id":867},{"__isSmartRef__":true,"id":868}],"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}]}},"865":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"866":{"__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}]}},"867":{"__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}]}},"868":{"__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}]}},"869":{"borderColor":{"__isSmartRef__":true,"id":863},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":870}},"870":{"vector":{"__isSmartRef__":true,"id":865},"stops":[{"__isSmartRef__":true,"id":871},{"__isSmartRef__":true,"id":872},{"__isSmartRef__":true,"id":873}],"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}]}},"871":{"__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}]}},"872":{"__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}]}},"873":{"__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}]}},"874":{"borderRadius":8,"borderWidth":2,"bordercolor":{"__isSmartRef__":true,"id":863},"fill":{"__isSmartRef__":true,"id":875}},"875":{"vector":{"__isSmartRef__":true,"id":17},"stops":[{"__isSmartRef__":true,"id":876},{"__isSmartRef__":true,"id":877},{"__isSmartRef__":true,"id":878}],"refcount":7,"_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}]}},"876":{"__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}]}},"877":{"__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}]}},"878":{"__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}]}},"879":{"fill":null},"880":{"fill":{"__isSmartRef__":true,"id":881},"fillOpacity":0.5},"881":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"882":{"textColor":{"__isSmartRef__":true,"id":883},"fontStyle":"bold"},"883":{"r":0.5,"g":0.5,"b":0.5,"a":0.5,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"884":{"fill":{"__isSmartRef__":true,"id":765}},"885":{"fill":{"__isSmartRef__":true,"id":779}},"886":{"fill":{"__isSmartRef__":true,"id":793}},"887":{"fill":{"__isSmartRef__":true,"id":888}},"888":{"stops":[{"__isSmartRef__":true,"id":889},{"__isSmartRef__":true,"id":890},{"__isSmartRef__":true,"id":891}],"f":{"__isSmartRef__":true,"id":892},"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}]}},"889":{"__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}]}},"890":{"__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}]}},"891":{"__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}]}},"892":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"893":{"fill":{"__isSmartRef__":true,"id":894}},"894":{"stops":[{"__isSmartRef__":true,"id":895},{"__isSmartRef__":true,"id":896},{"__isSmartRef__":true,"id":897}],"f":{"__isSmartRef__":true,"id":898},"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}]}},"895":{"__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}]}},"896":{"__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}]}},"897":{"__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}]}},"898":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"899":{"fill":{"__isSmartRef__":true,"id":900}},"900":{"stops":[{"__isSmartRef__":true,"id":901},{"__isSmartRef__":true,"id":902},{"__isSmartRef__":true,"id":903}],"f":{"__isSmartRef__":true,"id":904},"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}]}},"901":{"__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}]}},"902":{"__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}]}},"903":{"__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}]}},"904":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"905":{"borderColor":{"__isSmartRef__":true,"id":688},"borderWidth":4,"fill":{"__isSmartRef__":true,"id":906}},"906":{"stops":[{"__isSmartRef__":true,"id":907},{"__isSmartRef__":true,"id":908}],"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}]}},"907":{"__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}]}},"908":{"__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}]}},"909":{"borderColor":{"__isSmartRef__":true,"id":910},"borderWidth":1,"borderRadius":2,"fill":{"__isSmartRef__":true,"id":715},"opacity":1},"910":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"911":{"fill":{"__isSmartRef__":true,"id":881}},"isSimplifiedRegistry":true}}]]> Lively Kernel canvas