1
0

Presentation.js 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553
  1. smalltalk.addPackage('Presentation', {});
  2. smalltalk.addClass('FOSDEMREPLSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  3. smalltalk.addMethod(
  4. unescape('_renderSlideOn_'),
  5. smalltalk.method({
  6. selector: unescape('renderSlideOn%3A'),
  7. category: 'rendering',
  8. fn: function (html){
  9. var self=this;
  10. smalltalk.send(html, "_h1_", ["REPL"]);
  11. smalltalk.send(self, "_renderCodeSnippetOn_", [html]);
  12. return self;},
  13. args: ["html"],
  14. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%3A%20%27REPL%27.%0A%09self%20renderCodeSnippetOn%3A%20html.'),
  15. messageSends: ["h1:", "renderCodeSnippetOn:"],
  16. referencedClasses: []
  17. }),
  18. smalltalk.FOSDEMREPLSlide);
  19. smalltalk.addMethod(
  20. unescape('_codeSnippet'),
  21. smalltalk.method({
  22. selector: unescape('codeSnippet'),
  23. category: 'rendering',
  24. fn: function (){
  25. var self=this;
  26. return unescape("./bin/amber%0Afs%20%3A%3D%20require%20value%3A%20%27fs%27.%0Afs%20readdir%3A%20%27/tmp%27%20do%3A%20%5B%3Aerr%20%3Afile%7C%20console%20log%3A%20file%5D");
  27. return self;},
  28. args: [],
  29. source: unescape('codeSnippet%0A%09%5E%20%0A%27./bin/amber%0Afs%20%3A%3D%20require%20value%3A%20%27%27fs%27%27.%0Afs%20readdir%3A%20%27%27/tmp%27%27%20do%3A%20%5B%3Aerr%20%3Afile%7C%20console%20log%3A%20file%5D%27.'),
  30. messageSends: [],
  31. referencedClasses: []
  32. }),
  33. smalltalk.FOSDEMREPLSlide);
  34. smalltalk.addClass('FOSDEMJSToSmalltalk', smalltalk.FOSDEMSlide, [], 'Presentation');
  35. smalltalk.addMethod(
  36. unescape('_renderSlideOn_'),
  37. smalltalk.method({
  38. selector: unescape('renderSlideOn%3A'),
  39. category: 'rendering',
  40. fn: function (html){
  41. var self=this;
  42. smalltalk.send(html, "_h1_", ["Call Smalltalk from Javascript"]);
  43. smalltalk.send(self, "_renderCodeSnippetOn_", [html]);
  44. smalltalk.send(smalltalk.send(html, "_div", []), "_id_", ["jsToSmalltalk"]);
  45. return self;},
  46. args: ["html"],
  47. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%3A%20%27Call%20Smalltalk%20from%20Javascript%27.%0A%09self%20renderCodeSnippetOn%3A%20html.%0A%09html%20div%20id%3A%20%27jsToSmalltalk%27'),
  48. messageSends: ["h1:", "renderCodeSnippetOn:", "id:", "div"],
  49. referencedClasses: []
  50. }),
  51. smalltalk.FOSDEMJSToSmalltalk);
  52. smalltalk.addMethod(
  53. unescape('_cssClass'),
  54. smalltalk.method({
  55. selector: unescape('cssClass'),
  56. category: 'accessing',
  57. fn: function (){
  58. var self=this;
  59. return "slide blue3d";
  60. return self;},
  61. args: [],
  62. source: unescape('cssClass%0A%09%5E%20%27slide%20blue3d%27'),
  63. messageSends: [],
  64. referencedClasses: []
  65. }),
  66. smalltalk.FOSDEMJSToSmalltalk);
  67. smalltalk.addMethod(
  68. unescape('_codeSnippet'),
  69. smalltalk.method({
  70. selector: unescape('codeSnippet'),
  71. category: 'accessing',
  72. fn: function (){
  73. var self=this;
  74. return unescape("var%20counter%20%3D%20window.smalltalk.Counter._new%28%29%3B%0Acounter._appendToJQuery_%28%24%28%27%23jsToSmalltalk%27%29%29%3B");
  75. return self;},
  76. args: [],
  77. source: unescape('codeSnippet%0A%09%5E%0A%27var%20counter%20%3D%20window.smalltalk.Counter._new%28%29%3B%0Acounter._appendToJQuery_%28%24%28%27%27%23jsToSmalltalk%27%27%29%29%3B%27.'),
  78. messageSends: [],
  79. referencedClasses: []
  80. }),
  81. smalltalk.FOSDEMJSToSmalltalk);
  82. smalltalk.addClass('FOSDEMCanvasSlide', smalltalk.FOSDEMSlide, ['c2d', 'canvas'], 'Presentation');
  83. smalltalk.addMethod(
  84. unescape('_renderSlideOn_'),
  85. smalltalk.method({
  86. selector: unescape('renderSlideOn%3A'),
  87. category: 'rendering',
  88. fn: function (html){
  89. var self=this;
  90. smalltalk.send(html, "_h1_", ["Playing with canvas"]);
  91. (self['@canvas']=(function($rec){smalltalk.send($rec, "_width_", [(700)]);return smalltalk.send($rec, "_height_", [(400)]);})(smalltalk.send(html, "_canvas", [])));
  92. smalltalk.send(self, "_updateCanvas", []);
  93. return self;},
  94. args: ["html"],
  95. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%3A%20%27Playing%20with%20canvas%27.%0A%09canvas%20%3A%3D%20html%20%20canvas%20%0A%09%09%09%09width%3A%20700%3B%0A%09%09%09%09height%3A%20400.%0A%0A%09self%20updateCanvas.'),
  96. messageSends: ["h1:", "width:", "height:", "canvas", "updateCanvas"],
  97. referencedClasses: []
  98. }),
  99. smalltalk.FOSDEMCanvasSlide);
  100. smalltalk.addMethod(
  101. unescape('_drawOnCanvas'),
  102. smalltalk.method({
  103. selector: unescape('drawOnCanvas'),
  104. category: 'drawing',
  105. fn: function (){
  106. var self=this;
  107. var c2d=nil;
  108. (self['@c2d']=smalltalk.send(smalltalk.send(self['@canvas'], "_element", []), "_getContext_", ["2d"]));
  109. smalltalk.send(self['@c2d'], "_clearRect_y_width_height_", [(0), (0), smalltalk.send(smalltalk.send(self['@canvas'], "_element", []), "_width", []), smalltalk.send(smalltalk.send(self['@canvas'], "_element", []), "_height", [])]);
  110. smalltalk.send(smalltalk.send((40), "_atRandom", []), "_timesRepeat_", [(function(){var rgba=nil;
  111. (rgba=smalltalk.send(unescape("%2C"), "_join_", [[smalltalk.send((255), "_atRandom", []),smalltalk.send((255), "_atRandom", []),smalltalk.send((255), "_atRandom", []),((($receiver = smalltalk.send((10), "_atRandom", [])).klass === smalltalk.Number) ? $receiver /(10) : smalltalk.send($receiver, "__slash", [(10)]))]]));smalltalk.send(self['@c2d'], "_at_put_", ["fillStyle", smalltalk.send(smalltalk.send(unescape("rgba%28"), "__comma", [rgba]), "__comma", [unescape("%29")])]);return smalltalk.send(self['@c2d'], "_fillRect_y_width_height_", [smalltalk.send((600), "_atRandom", []), smalltalk.send((300), "_atRandom", []), smalltalk.send((200), "_atRandom", []), smalltalk.send((200), "_atRandom", [])]);})]);
  112. return self;},
  113. args: [],
  114. source: unescape('drawOnCanvas%0A%09%7Cc2d%7C%0A%09c2d%20%3A%3D%20canvas%20element%20getContext%3A%20%272d%27.%0A%09c2d%20%0A%09%09clearRect%3A%200%20%0A%09%09y%3A%200%20%0A%09%09width%3A%20canvas%20element%20width%20%0A%09%09height%3A%20canvas%20element%20height.%0A%09%0A%0940%20atRandom%20timesRepeat%3A%20%5B%20%7Crgba%7C%0A%09%09%09rgba%20%3A%3D%20%27%2C%27%20join%3A%20%7B255%20atRandom.%20255%20atRandom.%20255%20atRandom.%2010%20atRandom%20/%2010%7D.%0A%09%09%09c2d%09at%3A%20%27fillStyle%27%20put%3A%20%27rgba%28%27%2C%20rgba%2C%20%27%29%27.%0A%09%09%09c2d%0A%09%09%09%09fillRect%3A%20600%20atRandom%20%0A%09%09%09%09y%3A%20300%20atRandom%20%0A%09%09%09%09width%3A%20200%20atRandom%20%0A%09%09%09%09height%3A%20200%20atRandom%20%5D%09%09%09%09%09%09'),
  115. messageSends: ["getContext:", "element", "clearRect:y:width:height:", "width", "height", "timesRepeat:", "atRandom", "join:", unescape("/"), "at:put:", unescape("%2C"), "fillRect:y:width:height:"],
  116. referencedClasses: []
  117. }),
  118. smalltalk.FOSDEMCanvasSlide);
  119. smalltalk.addMethod(
  120. unescape('_cssClass'),
  121. smalltalk.method({
  122. selector: unescape('cssClass'),
  123. category: 'accessing',
  124. fn: function (){
  125. var self=this;
  126. return "slide red3d";
  127. return self;},
  128. args: [],
  129. source: unescape('cssClass%0A%09%5E%20%27slide%20red3d%27'),
  130. messageSends: [],
  131. referencedClasses: []
  132. }),
  133. smalltalk.FOSDEMCanvasSlide);
  134. smalltalk.addMethod(
  135. unescape('_updateCanvas'),
  136. smalltalk.method({
  137. selector: unescape('updateCanvas'),
  138. category: 'updating',
  139. fn: function (){
  140. var self=this;
  141. smalltalk.send(self, "_drawOnCanvas", []);
  142. smalltalk.send((typeof window == 'undefined' ? nil : window), "_setTimeout_delay_", [(function(){return smalltalk.send(self, "_updateCanvas", []);}), (500)]);
  143. return self;},
  144. args: [],
  145. source: unescape('updateCanvas%0A%09self%20drawOnCanvas.%0A%09window%20setTimeout%3A%20%5Bself%20updateCanvas%5D%20delay%3A%20500.'),
  146. messageSends: ["drawOnCanvas", "setTimeout:delay:", "updateCanvas"],
  147. referencedClasses: []
  148. }),
  149. smalltalk.FOSDEMCanvasSlide);
  150. smalltalk.addClass('FOSDEMJSPlayGroundSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  151. smalltalk.addMethod(
  152. unescape('_renderSlideOn_'),
  153. smalltalk.method({
  154. selector: unescape('renderSlideOn%3A'),
  155. category: 'rendering',
  156. fn: function (html){
  157. var self=this;
  158. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(self, "_renderCodeSnippetOn_", [html]);return (function($rec){smalltalk.send($rec, "_id_", ["amberlogo"]);return smalltalk.send($rec, "_src_", [unescape("fosdem2012/images/amber.png")]);})(smalltalk.send(html, "_img", []));})]);})(smalltalk.send(html, "_div", []));
  159. return self;},
  160. args: ["html"],
  161. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%0A%09%09class%3A%20%27section%20center%27%3B%20%0A%09%09with%3A%20%5B%0A%09%09%09self%20renderCodeSnippetOn%3A%20html.%0A%09%09%09html%20img%0A%09%09%09%09id%3A%20%27amberlogo%27%3B%20%0A%09%09%09%09src%3A%20%27fosdem2012/images/amber.png%27%09%5D'),
  162. messageSends: ["class:", "with:", "renderCodeSnippetOn:", "id:", "src:", "img", "div"],
  163. referencedClasses: []
  164. }),
  165. smalltalk.FOSDEMJSPlayGroundSlide);
  166. smalltalk.addMethod(
  167. unescape('_codeSnippet'),
  168. smalltalk.method({
  169. selector: unescape('codeSnippet'),
  170. category: 'accessing',
  171. fn: function (){
  172. var self=this;
  173. return unescape("%7Clogo%7C%0Alogo%3A%3D%27img%23amberlogo%27%20asJQuery.%0A%0Alogo%0A%20%20css%3A%27-webkit-transition%27%20put%3A%27all%2010s%20ease-in-out%27.%0A%0A%3Clogo.css%28%27-webkit-transform%27%2C%20%27rotateY%28360deg%29%27%29%3B%3E.%0A%0Alogo%20click%3A%20%5Bwindow%20alert%3A%20%27This%20is%20cool%20%21%27%5D.%0A%0Alogo%20inspect");
  174. return self;},
  175. args: [],
  176. source: unescape('codeSnippet%0A%5E%27%7Clogo%7C%0Alogo%3A%3D%27%27img%23amberlogo%27%27%20asJQuery.%0A%0Alogo%0A%20%20css%3A%27%27-webkit-transition%27%27%20put%3A%27%27all%2010s%20ease-in-out%27%27.%0A%0A%3Clogo.css%28%27%27-webkit-transform%27%27%2C%20%27%27rotateY%28360deg%29%27%27%29%3B%3E.%0A%0Alogo%20click%3A%20%5Bwindow%20alert%3A%20%27%27This%20is%20cool%20%21%27%27%5D.%0A%0Alogo%20inspect%27.%0A'),
  177. messageSends: [],
  178. referencedClasses: []
  179. }),
  180. smalltalk.FOSDEMJSPlayGroundSlide);
  181. smalltalk.addClass('FOSDEMAmberBackend', smalltalk.FOSDEMSlide, [], 'Presentation');
  182. smalltalk.addMethod(
  183. unescape('_renderSlideOn_'),
  184. smalltalk.method({
  185. selector: unescape('renderSlideOn%3A'),
  186. category: 'rendering',
  187. fn: function (html){
  188. var self=this;
  189. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(html, "_h1_", [unescape("Need%20a%20backend%20%3F")]);return smalltalk.send(["nodejs.png","php.gif","rails.png","pharo.png","ambrhino.jpg"], "_do_", [(function(aString){return smalltalk.send(html, "_img_", [smalltalk.send(unescape("fosdem2012/images/"), "__comma", [aString])]);})]);})]);})(smalltalk.send(html, "_div", []));
  190. return self;},
  191. args: ["html"],
  192. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%0A%09%09class%3A%20%27section%20center%27%3B%0A%09%09with%3A%20%5B%09html%20h1%3A%20%27Need%20a%20backend%20%3F%27.%0A%09%09%09%09%7B%27nodejs.png%27.%20%27php.gif%27.%20%27rails.png%27.%20%20%20%27pharo.png%27.%20%27ambrhino.jpg%27%7D%20do%3A%20%5B%3AaString%20%7C%0A%09%09%09%09%09%09html%20img%3A%20%27fosdem2012/images/%27%2C%20aString.%0A%09%09%09%09%5D%0A%09%09%5D'),
  193. messageSends: ["class:", "with:", "h1:", "do:", "img:", unescape("%2C"), "div"],
  194. referencedClasses: []
  195. }),
  196. smalltalk.FOSDEMAmberBackend);
  197. smalltalk.addMethod(
  198. unescape('_cssClass'),
  199. smalltalk.method({
  200. selector: unescape('cssClass'),
  201. category: 'accessing',
  202. fn: function (){
  203. var self=this;
  204. return "slide green3d";
  205. return self;},
  206. args: [],
  207. source: unescape('cssClass%0A%09%5E%20%27slide%20green3d%27'),
  208. messageSends: [],
  209. referencedClasses: []
  210. }),
  211. smalltalk.FOSDEMAmberBackend);
  212. smalltalk.addClass('FOSDEMBookletSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  213. smalltalk.addMethod(
  214. unescape('_renderSlideOn_'),
  215. smalltalk.method({
  216. selector: unescape('renderSlideOn%3A'),
  217. category: 'rendering',
  218. fn: function (html){
  219. var self=this;
  220. smalltalk.send(self, "_renderBookOn_", [html]);
  221. (function($rec){smalltalk.send($rec, "_rel_", ["stylesheet"]);return smalltalk.send($rec, "_href_", [unescape("fosdem2012/lib/booklet/jquery.booklet.1.2.0.css")]);})(smalltalk.send(html, "_link", []));
  222. smalltalk.send(html, "_style_", [smalltalk.send(self, "_style", [])]);
  223. smalltalk.send((typeof jQuery == 'undefined' ? nil : jQuery), "_getScript_do_", [unescape("fosdem2012/lib/booklet/jquery.booklet.1.2.0.min.js"), (function(){return smalltalk.send(smalltalk.send(unescape("%23book"), "_asJQuery", []), "_booklet_", [smalltalk.send(self, "_bookletOptions", [])]);})]);
  224. return self;},
  225. args: ["html"],
  226. source: unescape('renderSlideOn%3A%20html%0A%09self%20renderBookOn%3A%20html.%0A%09html%20link%20%0A%09%09rel%3A%27stylesheet%27%3B%0A%09%09href%3A%20%27fosdem2012/lib/booklet/jquery.booklet.1.2.0.css%27.%0A%09%0A%09html%20style%3A%20self%20style.%0A%09%0A%09jQuery%20%0A%09%09getScript%3A%20%27fosdem2012/lib/booklet/jquery.booklet.1.2.0.min.js%27%20%09%0A%09%09do%3A%20%5B%27%23book%27%20asJQuery%20booklet%3A%20self%20bookletOptions%5D.%0A%09'),
  227. messageSends: ["renderBookOn:", "rel:", "href:", "link", "style:", "style", "getScript:do:", "booklet:", "asJQuery", "bookletOptions"],
  228. referencedClasses: []
  229. }),
  230. smalltalk.FOSDEMBookletSlide);
  231. smalltalk.addMethod(
  232. unescape('_renderBookOn_'),
  233. smalltalk.method({
  234. selector: unescape('renderBookOn%3A'),
  235. category: 'rendering',
  236. fn: function (html){
  237. var self=this;
  238. (function($rec){smalltalk.send($rec, "_id_", ["book"]);return smalltalk.send($rec, "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_class_", [unescape("b-load")]);return smalltalk.send($rec, "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_div_", ["Amber makes it easy to plug existing javascript libraires"]);smalltalk.send($rec, "_div_", ["Here is an example with the jQuery Booklet plugin"]);smalltalk.send($rec, "_div_", [unescape("Want%20to%20see%20how%20%3F")]);return smalltalk.send($rec, "_div_", [(function(){return (function($rec){smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send((smalltalk.Browser || Browser), "_openOn_", [(smalltalk.FOSDEMBookletSlide || FOSDEMBookletSlide)]);})]);return smalltalk.send($rec, "_with_", [unescape("Just%20browse%20the%20code%20%3A%29")]);})(smalltalk.send(html, "_button", []));})]);})(html);})]);})(smalltalk.send(html, "_div", []));})]);})(smalltalk.send(html, "_div", []));
  239. return self;},
  240. args: ["html"],
  241. source: unescape('renderBookOn%3A%20html%0A%09html%20div%20%0A%09%09id%3A%20%27book%27%3B%0A%09%09with%3A%20%5B%09html%20div%0A%09%09%09%09%09class%3A%20%27b-load%27%3B%0A%09%09%09%09%09with%3A%20%5B%09html%20%0A%09%09%09%09%09%09%09%09div%3A%20%27Amber%20makes%20it%20easy%20to%20plug%20existing%20javascript%20libraires%27%3B%0A%09%09%09%09%09%09%09%09div%3A%20%27Here%20is%20an%20example%20with%20the%20jQuery%20Booklet%20plugin%27%3B%0A%09%09%09%09%09%09%09%09div%3A%20%27Want%20to%20see%20how%20%3F%27%3B%0A%09%09%09%09%09%09%09%09div%3A%20%5B%20html%20button%0A%09%09%09%09%09%09%09%09%09%09onClick%3A%20%5BBrowser%20openOn%3A%20FOSDEMBookletSlide%20%5D%3B%0A%09%09%09%09%09%09%09%09%09%09with%3A%20%27Just%20browse%20the%20code%20%3A%29%27.%09%09%09%09%09%09%5D%20%09%0A%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%0A%09%09%09%09%09%5D%09%0A%09%09%5D.'),
  242. messageSends: ["id:", "with:", "class:", "div:", "onClick:", "openOn:", "button", "div"],
  243. referencedClasses: ["Browser", "FOSDEMBookletSlide"]
  244. }),
  245. smalltalk.FOSDEMBookletSlide);
  246. smalltalk.addMethod(
  247. unescape('_bookletOptions'),
  248. smalltalk.method({
  249. selector: unescape('bookletOptions'),
  250. category: 'rendering',
  251. fn: function (){
  252. var self=this;
  253. return smalltalk.HashedCollection._fromPairs_([smalltalk.send("arrows", "__minus_gt", [true]),smalltalk.send("keyboard", "__minus_gt", [false]),smalltalk.send("pageNumbers", "__minus_gt", [false]),smalltalk.send("closed", "__minus_gt", [true])]);
  254. return self;},
  255. args: [],
  256. source: unescape('bookletOptions%0A%09%5E%20%23%7B%20%0A%09%09%27arrows%27%20-%3E%20true.%0A%09%09%27keyboard%27%20-%3E%20false.%0A%09%09%27pageNumbers%27%20-%3E%20false.%0A%09%09%27closed%27%20-%3E%20true%0A%09%7D%0A%09'),
  257. messageSends: [unescape("-%3E")],
  258. referencedClasses: []
  259. }),
  260. smalltalk.FOSDEMBookletSlide);
  261. smalltalk.addMethod(
  262. unescape('_cssClass'),
  263. smalltalk.method({
  264. selector: unescape('cssClass'),
  265. category: 'accessing',
  266. fn: function (){
  267. var self=this;
  268. return "slide blue3d";
  269. return self;},
  270. args: [],
  271. source: unescape('cssClass%0A%09%5E%20%27slide%20blue3d%27'),
  272. messageSends: [],
  273. referencedClasses: []
  274. }),
  275. smalltalk.FOSDEMBookletSlide);
  276. smalltalk.addMethod(
  277. unescape('_style'),
  278. smalltalk.method({
  279. selector: unescape('style'),
  280. category: 'css',
  281. fn: function (){
  282. var self=this;
  283. return unescape("%0A%23book%20%7B%20font-size%3A%201.4em%3B%20%7D%0A%23book%20.b-load%20.b-wrap-right%20%7B%20background-color%3A%20%23DEC3A9%3B%7D%0A%23book%20.b-load%20.b-wrap-left%20%7B%20background-color%3A%20%23DDD%3B%7D%20%0A");
  284. return self;},
  285. args: [],
  286. source: unescape('style%0A%09%5E%20%27%0A%23book%20%7B%20font-size%3A%201.4em%3B%20%7D%0A%23book%20.b-load%20.b-wrap-right%20%7B%20background-color%3A%20%23DEC3A9%3B%7D%0A%23book%20.b-load%20.b-wrap-left%20%7B%20background-color%3A%20%23DDD%3B%7D%20%0A%27'),
  287. messageSends: [],
  288. referencedClasses: []
  289. }),
  290. smalltalk.FOSDEMBookletSlide);
  291. smalltalk.addClass('FOSDEMIntroSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  292. smalltalk.addMethod(
  293. unescape('_renderSlideOn_'),
  294. smalltalk.method({
  295. selector: unescape('renderSlideOn%3A'),
  296. category: 'not yet classified',
  297. fn: function (html){
  298. var self=this;
  299. (function($rec){smalltalk.send($rec, "_class_", ["section center animate"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_img", []), "_src_", [unescape("fosdem2012/images/amber.png")]);smalltalk.send(html, "_p_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_author", [])]);smalltalk.send(html, "_p_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_description", [])]);return smalltalk.send(html, "_p_", [(function(){return smalltalk.send(html, "_with_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_email", [])]);})]);})]);})(smalltalk.send(html, "_div", []));
  300. return self;},
  301. args: ["html"],
  302. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%20center%20animate%27%3B%20with%3A%20%5B%0A%09%09html%20img%20src%3A%20%27fosdem2012/images/amber.png%27.%0A%09%09html%20p%3A%20self%20presentation%20author.%0A%20%20%20%20%20%20%20%20%20%20%09html%20p%3A%20self%20presentation%20description.%0A%09%09html%20p%3A%20%5B%0A%09%09%09html%20with%3A%20self%20presentation%20email%5D%5D.'),
  303. messageSends: ["class:", "with:", "src:", "img", "p:", "author", "presentation", "description", "email", "div"],
  304. referencedClasses: []
  305. }),
  306. smalltalk.FOSDEMIntroSlide);
  307. smalltalk.addClass('PresentationNavigator', smalltalk.Widget, ['presentationBrush', 'currentPresentation', 'slideSelect'], 'Presentation');
  308. smalltalk.addMethod(
  309. unescape('_currentPresentation_'),
  310. smalltalk.method({
  311. selector: unescape('currentPresentation%3A'),
  312. category: 'accessing',
  313. fn: function (aPresentation){
  314. var self=this;
  315. (self['@currentPresentation']=aPresentation);
  316. return self;},
  317. args: ["aPresentation"],
  318. source: unescape('currentPresentation%3A%20aPresentation%0A%09currentPresentation%20%3A%3D%20aPresentation.'),
  319. messageSends: [],
  320. referencedClasses: []
  321. }),
  322. smalltalk.PresentationNavigator);
  323. smalltalk.addMethod(
  324. unescape('_currentPresentation'),
  325. smalltalk.method({
  326. selector: unescape('currentPresentation'),
  327. category: 'accessing',
  328. fn: function (){
  329. var self=this;
  330. return (($receiver = self['@currentPresentation']) == nil || $receiver == undefined) ? (function(){return (self['@currentPresentation']=smalltalk.send(smalltalk.send(smalltalk.send((smalltalk.Presentation || Presentation), "_concretePresentations", []), "_first", []), "_new", []));})() : $receiver;
  331. return self;},
  332. args: [],
  333. source: unescape('currentPresentation%0A%09%5E%20%20currentPresentation%20ifNil%3A%20%5BcurrentPresentation%20%3A%3D%20Presentation%20concretePresentations%20first%20new%5D.'),
  334. messageSends: ["ifNil:", "new", "first", "concretePresentations"],
  335. referencedClasses: ["Presentation"]
  336. }),
  337. smalltalk.PresentationNavigator);
  338. smalltalk.addMethod(
  339. unescape('_style'),
  340. smalltalk.method({
  341. selector: unescape('style'),
  342. category: 'accessing',
  343. fn: function (){
  344. var self=this;
  345. return unescape("%0A%23navigator%20%7B%0A%20%20%20%20z-index%3A%201%3B%0A%20%20%20%20position%3A%20fixed%3B%0A%20%20%20%20top%3A%200%3B%0A%20%20%20%20left%3A%2050%25%3B%0A%20%20%20%20margin-left%3A%20-150px%3B%0A%20%20%20%20padding%3A%205px%3B%0A%20%20%20%20border-radius%3A%205px%3B%0A%20%20%20%20-moz-border-radius%3A%205px%3B%0A%20%20%20%20-webkit-border-radius%3A%205px%3B%0A%20%20%20%20background%3A%20%23333%3B%0A%20%20%20%20opacity%3A%200.3%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%7D%0A%0A%23navigator%20a%20%7B%0A%20%20%20%20font-weight%3A%20bold%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20cursor%3A%20pointer%3B%0A%20%20%20%20padding%3A%200%202px%3B%0A%20%20%20%20font-size%3A%2014px%3B%0A%7D%0A%0A%23navigator%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A");
  346. return self;},
  347. args: [],
  348. source: unescape('style%0A%09%5E%20%27%0A%23navigator%20%7B%0A%20%20%20%20z-index%3A%201%3B%0A%20%20%20%20position%3A%20fixed%3B%0A%20%20%20%20top%3A%200%3B%0A%20%20%20%20left%3A%2050%25%3B%0A%20%20%20%20margin-left%3A%20-150px%3B%0A%20%20%20%20padding%3A%205px%3B%0A%20%20%20%20border-radius%3A%205px%3B%0A%20%20%20%20-moz-border-radius%3A%205px%3B%0A%20%20%20%20-webkit-border-radius%3A%205px%3B%0A%20%20%20%20background%3A%20%23333%3B%0A%20%20%20%20opacity%3A%200.3%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%7D%0A%0A%23navigator%20a%20%7B%0A%20%20%20%20font-weight%3A%20bold%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20cursor%3A%20pointer%3B%0A%20%20%20%20padding%3A%200%202px%3B%0A%20%20%20%20font-size%3A%2014px%3B%0A%7D%0A%0A%23navigator%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A%27'),
  349. messageSends: [],
  350. referencedClasses: []
  351. }),
  352. smalltalk.PresentationNavigator);
  353. smalltalk.addMethod(
  354. unescape('_selectPresentation_'),
  355. smalltalk.method({
  356. selector: unescape('selectPresentation%3A'),
  357. category: 'callbacks',
  358. fn: function (aPresentationClass){
  359. var self=this;
  360. smalltalk.send(self, "_currentPresentation_", [smalltalk.send(aPresentationClass, "_new", [])]);
  361. smalltalk.send(self, "_renderCurrentPresentation", []);
  362. return self;},
  363. args: ["aPresentationClass"],
  364. source: unescape('selectPresentation%3A%20aPresentationClass%0A%09self%20currentPresentation%3A%20aPresentationClass%20new.%0A%09self%20renderCurrentPresentation.'),
  365. messageSends: ["currentPresentation:", "new", "renderCurrentPresentation"],
  366. referencedClasses: []
  367. }),
  368. smalltalk.PresentationNavigator);
  369. smalltalk.addMethod(
  370. unescape('_selectPresentationNamed_'),
  371. smalltalk.method({
  372. selector: unescape('selectPresentationNamed%3A'),
  373. category: 'callbacks',
  374. fn: function (aString){
  375. var self=this;
  376. var presentationClass=nil;
  377. (presentationClass=smalltalk.send(smalltalk.send((smalltalk.Smalltalk || Smalltalk), "_current", []), "_at_", [aString]));
  378. (($receiver = presentationClass) != nil && $receiver != undefined) ? (function(){return smalltalk.send(self, "_selectPresentation_", [presentationClass]);})() : nil;
  379. return self;},
  380. args: ["aString"],
  381. source: unescape('selectPresentationNamed%3A%20aString%0A%09%7CpresentationClass%7C%0A%09presentationClass%20%3A%3D%20%20%28Smalltalk%20current%20at%3A%20aString%29.%0A%09presentationClass%20ifNotNil%3A%20%5B%20self%20selectPresentation%3A%20presentationClass%20%5D.'),
  382. messageSends: ["at:", "current", "ifNotNil:", "selectPresentation:"],
  383. referencedClasses: ["Smalltalk"]
  384. }),
  385. smalltalk.PresentationNavigator);
  386. smalltalk.addMethod(
  387. unescape('_previousSlide'),
  388. smalltalk.method({
  389. selector: unescape('previousSlide'),
  390. category: 'callbacks',
  391. fn: function (){
  392. var self=this;
  393. smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_previousSlide", []);
  394. smalltalk.send(self, "_updateHash", []);
  395. return self;},
  396. args: [],
  397. source: unescape('previousSlide%0A%09self%20currentPresentation%20previousSlide.%0A%09self%20updateHash.'),
  398. messageSends: ["previousSlide", "currentPresentation", "updateHash"],
  399. referencedClasses: []
  400. }),
  401. smalltalk.PresentationNavigator);
  402. smalltalk.addMethod(
  403. unescape('_nextSlide'),
  404. smalltalk.method({
  405. selector: unescape('nextSlide'),
  406. category: 'callbacks',
  407. fn: function (){
  408. var self=this;
  409. smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_nextSlide", []);
  410. smalltalk.send(self, "_updateHash", []);
  411. return self;},
  412. args: [],
  413. source: unescape('nextSlide%0A%09self%20currentPresentation%20nextSlide.%0A%09self%20updateHash.'),
  414. messageSends: ["nextSlide", "currentPresentation", "updateHash"],
  415. referencedClasses: []
  416. }),
  417. smalltalk.PresentationNavigator);
  418. smalltalk.addMethod(
  419. unescape('_reload'),
  420. smalltalk.method({
  421. selector: unescape('reload'),
  422. category: 'callbacks',
  423. fn: function (){
  424. var self=this;
  425. var slideIndex=nil;
  426. (slideIndex=smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_currentSlideIndex", []));
  427. smalltalk.send(self, "_currentPresentation_", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_class", []), "_new", [])]);
  428. smalltalk.send(self, "_renderCurrentPresentation", []);
  429. smalltalk.send(self, "_selectSlideAt_", [slideIndex]);
  430. return self;},
  431. args: [],
  432. source: unescape('reload%0A%09%7CslideIndex%7C%0A%09slideIndex%20%3A%3D%20self%20currentPresentation%20currentSlideIndex.%0A%09self%20currentPresentation%3A%20self%20currentPresentation%20class%20new.%0A%09self%20renderCurrentPresentation.%0A%09self%20selectSlideAt%3A%20slideIndex.'),
  433. messageSends: ["currentSlideIndex", "currentPresentation", "currentPresentation:", "new", "class", "renderCurrentPresentation", "selectSlideAt:"],
  434. referencedClasses: []
  435. }),
  436. smalltalk.PresentationNavigator);
  437. smalltalk.addMethod(
  438. unescape('_selectSlideAt_'),
  439. smalltalk.method({
  440. selector: unescape('selectSlideAt%3A'),
  441. category: 'callbacks',
  442. fn: function (anInteger){
  443. var self=this;
  444. smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_moveAt_", [anInteger]);
  445. smalltalk.send(self, "_updateHash", []);
  446. return self;},
  447. args: ["anInteger"],
  448. source: unescape('selectSlideAt%3A%20anInteger%0A%09self%20currentPresentation%20moveAt%3A%20anInteger.%0A%09self%20updateHash.'),
  449. messageSends: ["moveAt:", "currentPresentation", "updateHash"],
  450. referencedClasses: []
  451. }),
  452. smalltalk.PresentationNavigator);
  453. smalltalk.addMethod(
  454. unescape('_updateHash'),
  455. smalltalk.method({
  456. selector: unescape('updateHash'),
  457. category: 'callbacks',
  458. fn: function (){
  459. var self=this;
  460. smalltalk.send(smalltalk.send((typeof document == 'undefined' ? nil : document), "_location", []), "_hash_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_class", []), "_name", []), "__comma", [unescape("-")]), "__comma", [smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_currentSlideIndex", [])])]);
  461. return self;},
  462. args: [],
  463. source: unescape('updateHash%0A%09document%20location%20hash%3A%20self%20currentPresentation%20class%20name%2C%20%27-%27%2C%20self%20currentPresentation%20currentSlideIndex.'),
  464. messageSends: ["hash:", "location", unescape("%2C"), "name", "class", "currentPresentation", "currentSlideIndex"],
  465. referencedClasses: []
  466. }),
  467. smalltalk.PresentationNavigator);
  468. smalltalk.addMethod(
  469. unescape('_checkHash'),
  470. smalltalk.method({
  471. selector: unescape('checkHash'),
  472. category: 'hash',
  473. fn: function (){
  474. var self=this;
  475. try{var hash=nil;
  476. var presentation=nil;
  477. (hash=smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send((typeof document == 'undefined' ? nil : document), "_location", []), "_hash", []), "_replace_with_", [unescape("%5E%23"), ""]), "_tokenize_", [unescape("-")]));
  478. (presentation=smalltalk.send(smalltalk.send((smalltalk.Presentation || Presentation), "_concretePresentations", []), "_detect_ifNone_", [(function(aPresentationClass){return smalltalk.send(smalltalk.send(aPresentationClass, "_name", []), "__eq_eq", [smalltalk.send(hash, "_first", [])]);}), (function(){return (function(){throw({name: 'stReturn', selector: '_checkHash', fn: function(){return self}})})();})]));
  479. ((($receiver = smalltalk.send(presentation, "__eq_eq", [smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){smalltalk.send(self, "_selectPresentationNamed_", [presentation]);return smalltalk.send(self, "_selectSlideAt_", [smalltalk.send(hash, "_last", [])]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){smalltalk.send(self, "_selectPresentationNamed_", [presentation]);return smalltalk.send(self, "_selectSlideAt_", [smalltalk.send(hash, "_last", [])]);})]));
  480. return self;
  481. } catch(e) {if(e.name === 'stReturn' && e.selector === '_checkHash'){return e.fn()} throw(e)}},
  482. args: [],
  483. source: unescape('checkHash%0A%09%7C%20hash%20presentation%20%7C%0A%09hash%20%3A%3D%20%28document%20location%20hash%20%20replace%3A%20%27%5E%23%27%20with%3A%20%27%27%29%20tokenize%3A%20%27-%27.%20%0A%09presentation%20%3A%3D%20Presentation%20concretePresentations%20%0A%09%09%09%09detect%3A%20%5B%3AaPresentationClass%20%7C%20aPresentationClass%20name%20%3D%3D%20hash%20first%5D%0A%09%09%09%09ifNone%3A%20%5B%5E%20self%5D.%0A%09presentation%20%3D%3D%20self%20currentPresentation%20class%20ifFalse%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%09self%20selectPresentationNamed%3A%20presentation.%0A%20%20%20%20%20%20%20%20%20%20%09self%20selectSlideAt%3A%20hash%20last%0A%20%20%20%20%20%20%20%20%5D.'),
  484. messageSends: ["tokenize:", "replace:with:", "hash", "location", "detect:ifNone:", "concretePresentations", unescape("%3D%3D"), "name", "first", "ifFalse:", "class", "currentPresentation", "selectPresentationNamed:", "selectSlideAt:", "last"],
  485. referencedClasses: ["Presentation"]
  486. }),
  487. smalltalk.PresentationNavigator);
  488. smalltalk.addMethod(
  489. unescape('_checkHashChange'),
  490. smalltalk.method({
  491. selector: unescape('checkHashChange'),
  492. category: 'hash',
  493. fn: function (){
  494. var self=this;
  495. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [(typeof window == 'undefined' ? nil : window)]), "_bind_do_", ["hashchange", (function(){return smalltalk.send(self, "_checkHash", []);})]);
  496. return self;},
  497. args: [],
  498. source: unescape('checkHashChange%0A%09%28window%20jQuery%3A%20window%29%20bind%3A%20%27hashchange%27%20do%3A%20%5Bself%20checkHash%5D'),
  499. messageSends: ["bind:do:", "jQuery:", "checkHash"],
  500. referencedClasses: []
  501. }),
  502. smalltalk.PresentationNavigator);
  503. smalltalk.addMethod(
  504. unescape('_setKeybindings'),
  505. smalltalk.method({
  506. selector: unescape('setKeybindings'),
  507. category: 'keybindings',
  508. fn: function (){
  509. var self=this;
  510. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [(typeof document == 'undefined' ? nil : document)]), "_keyup_", [(function(e){var node=nil;
  511. (node=smalltalk.send(smalltalk.send(smalltalk.send(e, "_target", []), "_nodeName", []), "_asLowercase", []));return ((($receiver = smalltalk.send(smalltalk.send(node, "__eq", ["textarea"]), "_or_", [(function(){return smalltalk.send(node, "__eq", ["input"]);})])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){((($receiver = smalltalk.send(smalltalk.send(e, "_keyCode", []), "__eq", [(39)])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(self, "_nextSlide", []);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(self, "_nextSlide", []);})]));return ((($receiver = smalltalk.send(smalltalk.send(e, "_keyCode", []), "__eq", [(37)])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(self, "_previousSlide", []);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(self, "_previousSlide", []);})]));})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){((($receiver = smalltalk.send(smalltalk.send(e, "_keyCode", []), "__eq", [(39)])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(self, "_nextSlide", []);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(self, "_nextSlide", []);})]));return ((($receiver = smalltalk.send(smalltalk.send(e, "_keyCode", []), "__eq", [(37)])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(self, "_previousSlide", []);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(self, "_previousSlide", []);})]));})]));})]);
  512. return self;},
  513. args: [],
  514. source: unescape('setKeybindings%0A%09%28window%20jQuery%3A%20document%29%20keyup%3A%20%5B%3Ae%20%7C%7C%20node%20%7C%0A%09%09node%20%3A%3D%20e%20target%20nodeName%20asLowercase.%0A%09%09%28node%20%3D%20%27textarea%27%20or%3A%20%5Bnode%20%3D%20%27input%27%5D%29%20ifFalse%3A%20%5B%0A%09%09%09e%20keyCode%20%3D%2039%20ifTrue%3A%20%5Bself%20nextSlide%5D.%0A%09%09%09e%20keyCode%20%3D%2037%20ifTrue%3A%20%5Bself%20previousSlide%5D%5D%5D'),
  515. messageSends: ["keyup:", "jQuery:", "asLowercase", "nodeName", "target", "ifFalse:", "or:", unescape("%3D"), "ifTrue:", "keyCode", "nextSlide", "previousSlide"],
  516. referencedClasses: []
  517. }),
  518. smalltalk.PresentationNavigator);
  519. smalltalk.addMethod(
  520. unescape('_renderToolsOn_'),
  521. smalltalk.method({
  522. selector: unescape('renderToolsOn%3A'),
  523. category: 'rendering',
  524. fn: function (html){
  525. var self=this;
  526. (function($rec){smalltalk.send($rec, "_with_", ["IDE"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(smalltalk.send((smalltalk.TabManager || TabManager), "_current", []), "_open", []);})]);})(smalltalk.send(html, "_a", []));
  527. (function($rec){smalltalk.send($rec, "_with_", ["Reload"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_reload", []);})]);})(smalltalk.send(html, "_a", []));
  528. (function($rec){smalltalk.send($rec, "_with_", [unescape("%u2190")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_previousSlide", []);})]);})(smalltalk.send(html, "_a", []));
  529. (function($rec){smalltalk.send($rec, "_with_", [unescape("%u2192")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_nextSlide", []);})]);})(smalltalk.send(html, "_a", []));
  530. return self;},
  531. args: ["html"],
  532. source: unescape('renderToolsOn%3A%20html%0A%09html%20a%20%0A%09%09with%3A%20%27IDE%27%3B%0A%09%09onClick%3A%20%5BTabManager%20current%20open%5D.%0A%09html%20a%0A%09%09with%3A%20%27Reload%27%3B%0A%09%09onClick%3A%20%5Bself%20reload%5D.%0A%09html%20a%0A%09%09with%3A%20%27%u2190%27%3B%0A%09%09onClick%3A%20%5Bself%20previousSlide%5D.%0A%09html%20a%0A%09%09with%3A%20%27%u2192%27%3B%0A%09%09onClick%3A%20%5Bself%20nextSlide%5D.'),
  533. messageSends: ["with:", "onClick:", "open", "current", "a", "reload", "previousSlide", "nextSlide"],
  534. referencedClasses: ["TabManager"]
  535. }),
  536. smalltalk.PresentationNavigator);
  537. smalltalk.addMethod(
  538. unescape('_renderPresentationSelectOn_'),
  539. smalltalk.method({
  540. selector: unescape('renderPresentationSelectOn%3A'),
  541. category: 'rendering',
  542. fn: function (html){
  543. var self=this;
  544. var presentationSelect=nil;
  545. (presentationSelect=smalltalk.send(html, "_select", []));
  546. (function($rec){smalltalk.send($rec, "_onChange_", [(function(){return smalltalk.send(self, "_selectPresentationNamed_", [smalltalk.send(smalltalk.send(presentationSelect, "_asJQuery", []), "_val", [])]);})]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send((smalltalk.Presentation || Presentation), "_concretePresentationsDo_", [(function(aPresentationClass){return (function($rec){smalltalk.send($rec, "_value_", [smalltalk.send(aPresentationClass, "_name", [])]);return smalltalk.send($rec, "_with_", [smalltalk.send(aPresentationClass, "_title", [])]);})(smalltalk.send(html, "_option", []));})]);})]);})(presentationSelect);
  547. return self;},
  548. args: ["html"],
  549. source: unescape('renderPresentationSelectOn%3A%20html%0A%09%7CpresentationSelect%7C%0A%09presentationSelect%20%3A%3D%20html%20select.%0A%09presentationSelect%0A%09%09onChange%3A%20%5Bself%20%20selectPresentationNamed%3A%20%20presentationSelect%20asJQuery%20val%5D%3B%0A%09%09with%3A%20%5B%09Presentation%20concretePresentationsDo%3A%20%5B%3AaPresentationClass%20%7C%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09%09%09%09%09%09html%20option%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09%09%09%09%09%09%09value%3A%20aPresentationClass%20name%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09%09%09%09%09%09%09with%3A%20aPresentationClass%20title%20%5D%20%5D.'),
  550. messageSends: ["select", "onChange:", "selectPresentationNamed:", "val", "asJQuery", "with:", "concretePresentationsDo:", "value:", "name", "title", "option"],
  551. referencedClasses: ["Presentation"]
  552. }),
  553. smalltalk.PresentationNavigator);
  554. smalltalk.addMethod(
  555. unescape('_open'),
  556. smalltalk.method({
  557. selector: unescape('open'),
  558. category: 'rendering',
  559. fn: function (){
  560. var self=this;
  561. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [(typeof document == 'undefined' ? nil : document)]), "_ready_", [(function(){return (function($rec){smalltalk.send($rec, "_appendToJQuery_", [smalltalk.send("body", "_asJQuery", [])]);smalltalk.send($rec, "_setKeybindings", []);return smalltalk.send($rec, "_checkHashChange", []);})(self);})]);
  562. return self;},
  563. args: [],
  564. source: unescape('open%0A%09%28window%20jQuery%3A%20document%29%20%20ready%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%09self%20%0A%20%20%20%20%20%20%20%20%20%20%09%09appendToJQuery%3A%20%27body%27%20asJQuery%3B%0A%20%20%20%20%20%20%20%20%20%20%09%09setKeybindings%3B%0A%20%20%20%20%20%20%20%20%20%20%09%09checkHashChange.%0A%20%20%20%20%20%20%20%20%5D.'),
  565. messageSends: ["ready:", "jQuery:", "appendToJQuery:", "asJQuery", "setKeybindings", "checkHashChange"],
  566. referencedClasses: []
  567. }),
  568. smalltalk.PresentationNavigator);
  569. smalltalk.addMethod(
  570. unescape('_renderOn_'),
  571. smalltalk.method({
  572. selector: unescape('renderOn%3A'),
  573. category: 'rendering',
  574. fn: function (html){
  575. var self=this;
  576. (function($rec){smalltalk.send($rec, "_type_", [unescape("text/css")]);return smalltalk.send($rec, "_with_", [smalltalk.send(self, "_style", [])]);})(smalltalk.send(html, "_style", []));
  577. (function($rec){smalltalk.send($rec, "_id_", ["navigator"]);return smalltalk.send($rec, "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_renderToolsOn_", [html]);smalltalk.send($rec, "_renderPresentationSelectOn_", [html]);return smalltalk.send($rec, "_renderSlideSelectOn_", [html]);})(self);})]);})(smalltalk.send(html, "_div", []));
  578. (self['@presentationBrush']=(function($rec){smalltalk.send($rec, "_id_", ["presentation"]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(html, "_div", [])));
  579. smalltalk.send(self, "_checkHash", []);
  580. smalltalk.send(self, "_renderCurrentPresentation", []);
  581. return self;},
  582. args: ["html"],
  583. source: unescape('renderOn%3A%20html%0A%09html%20style%0A%09%09type%3A%20%27text/css%27%3B%0A%09%09with%3A%20self%20style.%0A%09html%20div%0A%09%09id%3A%20%27navigator%27%3B%0A%09%09with%3A%20%5B%09self%0A%09%09%09%09%09renderToolsOn%3A%20html%3B%0A%09%09%09%09%09renderPresentationSelectOn%3A%20html%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09%09renderSlideSelectOn%3A%20html%5D.%0A%0A%09presentationBrush%20%3A%3D%20html%20div%20%0A%09%09%09%09%09%09%09id%3A%20%27presentation%27%3B%0A%09%09%09%09%09%09%09yourself.%0A%0A%09self%20checkHash.%0A%09self%20renderCurrentPresentation.'),
  584. messageSends: ["type:", "with:", "style", "id:", "renderToolsOn:", "renderPresentationSelectOn:", "renderSlideSelectOn:", "div", "yourself", "checkHash", "renderCurrentPresentation"],
  585. referencedClasses: []
  586. }),
  587. smalltalk.PresentationNavigator);
  588. smalltalk.addMethod(
  589. unescape('_renderCurrentPresentation'),
  590. smalltalk.method({
  591. selector: unescape('renderCurrentPresentation'),
  592. category: 'rendering',
  593. fn: function (){
  594. var self=this;
  595. smalltalk.send(self['@presentationBrush'], "_contents_", [(function(html){return smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_renderOn_", [html]);})]);
  596. smalltalk.send(self, "_updateSlideSelect", []);
  597. return self;},
  598. args: [],
  599. source: unescape('renderCurrentPresentation%0A%09presentationBrush%20contents%3A%20%5B%3Ahtml%20%7C%0A%20%20%20%20%20%20%20%20%09self%20currentPresentation%20renderOn%3A%20html.%0A%20%20%20%20%20%20%20%20%5D.%0A%09self%20updateSlideSelect.'),
  600. messageSends: ["contents:", "renderOn:", "currentPresentation", "updateSlideSelect"],
  601. referencedClasses: []
  602. }),
  603. smalltalk.PresentationNavigator);
  604. smalltalk.addMethod(
  605. unescape('_renderSlideSelectOn_'),
  606. smalltalk.method({
  607. selector: unescape('renderSlideSelectOn%3A'),
  608. category: 'rendering',
  609. fn: function (html){
  610. var self=this;
  611. (self['@slideSelect']=smalltalk.send(html, "_select", []));
  612. smalltalk.send(self['@slideSelect'], "_onChange_", [(function(){return smalltalk.send(self, "_selectSlideAt_", [smalltalk.send(smalltalk.send(self['@slideSelect'], "_asJQuery", []), "_val", [])]);})]);
  613. smalltalk.send(self, "_updateSlideSelect", []);
  614. return self;},
  615. args: ["html"],
  616. source: unescape('renderSlideSelectOn%3A%20html%0A%09slideSelect%20%3A%3D%20html%20select.%0A%09slideSelect%20onChange%3A%20%5B%20self%20%20selectSlideAt%3A%20%20slideSelect%20asJQuery%20val%20%5D.%0A%09self%20updateSlideSelect.'),
  617. messageSends: ["select", "onChange:", "selectSlideAt:", "val", "asJQuery", "updateSlideSelect"],
  618. referencedClasses: []
  619. }),
  620. smalltalk.PresentationNavigator);
  621. smalltalk.addMethod(
  622. unescape('_updateSlideSelect'),
  623. smalltalk.method({
  624. selector: unescape('updateSlideSelect'),
  625. category: 'rendering',
  626. fn: function (){
  627. var self=this;
  628. smalltalk.send(self['@slideSelect'], "_contents_", [(function(html){var index=nil;
  629. (index=(0));return smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_slidesDo_", [(function(aSlide){(index=((($receiver = index).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)])));return (function($rec){smalltalk.send($rec, "_value_", [index]);return smalltalk.send($rec, "_with_", [smalltalk.send(aSlide, "_title", [])]);})(smalltalk.send(html, "_option", []));})]);})]);
  630. return self;},
  631. args: [],
  632. source: unescape('updateSlideSelect%0A%09slideSelect%20contents%3A%20%5B%3Ahtml%7C%20%7Cindex%7C%0A%09%09%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09index%20%3A%3D%200.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09%20%20%20%20%20%20%20%09%09self%20currentPresentation%20slidesDo%3A%20%5B%20%3AaSlide%7C%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09%09%09index%20%3A%3D%20index%20+%201.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09%09%09html%20option%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09%20%20%20%20%09%09%09%09%09value%3A%20index%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%09%09%09%09%09%09%09%09with%3A%20aSlide%20title%20%5D%20%5D.'),
  633. messageSends: ["contents:", "slidesDo:", "currentPresentation", unescape("+"), "value:", "with:", "title", "option"],
  634. referencedClasses: []
  635. }),
  636. smalltalk.PresentationNavigator);
  637. smalltalk.addMethod(
  638. unescape('_initialize'),
  639. smalltalk.method({
  640. selector: unescape('initialize'),
  641. category: 'initialize',
  642. fn: function (){
  643. var self=this;
  644. return smalltalk.send(self, "_open", []);
  645. return self;},
  646. args: [],
  647. source: unescape('initialize%0A%09%5E%20self%20open'),
  648. messageSends: ["open"],
  649. referencedClasses: []
  650. }),
  651. smalltalk.PresentationNavigator.klass);
  652. smalltalk.addMethod(
  653. unescape('_open'),
  654. smalltalk.method({
  655. selector: unescape('open'),
  656. category: 'initialize',
  657. fn: function (){
  658. var self=this;
  659. return smalltalk.send(smalltalk.send(self, "_new", []), "_open", []);
  660. return self;},
  661. args: [],
  662. source: unescape('open%0A%09%5E%20self%20new%20open'),
  663. messageSends: ["open", "new"],
  664. referencedClasses: []
  665. }),
  666. smalltalk.PresentationNavigator.klass);
  667. smalltalk.addClass('Presentation', smalltalk.Widget, ['currentSlide', 'slides'], 'Presentation');
  668. smalltalk.addMethod(
  669. unescape('_title'),
  670. smalltalk.method({
  671. selector: unescape('title'),
  672. category: 'accessing',
  673. fn: function (){
  674. var self=this;
  675. return smalltalk.send(smalltalk.send(self, "_class", []), "_title", []);
  676. return self;},
  677. args: [],
  678. source: unescape('title%0A%09%5E%20self%20class%20title.'),
  679. messageSends: ["title", "class"],
  680. referencedClasses: []
  681. }),
  682. smalltalk.Presentation);
  683. smalltalk.addMethod(
  684. unescape('_author'),
  685. smalltalk.method({
  686. selector: unescape('author'),
  687. category: 'accessing',
  688. fn: function (){
  689. var self=this;
  690. return "John Smith";
  691. return self;},
  692. args: [],
  693. source: unescape('author%0A%09%5E%27John%20Smith%27'),
  694. messageSends: [],
  695. referencedClasses: []
  696. }),
  697. smalltalk.Presentation);
  698. smalltalk.addMethod(
  699. unescape('_url'),
  700. smalltalk.method({
  701. selector: unescape('url'),
  702. category: 'accessing',
  703. fn: function (){
  704. var self=this;
  705. return unescape("http%3A//jtalk-project.org");
  706. return self;},
  707. args: [],
  708. source: unescape('url%0A%09%5E%27http%3A//jtalk-project.org%27'),
  709. messageSends: [],
  710. referencedClasses: []
  711. }),
  712. smalltalk.Presentation);
  713. smalltalk.addMethod(
  714. unescape('_description'),
  715. smalltalk.method({
  716. selector: unescape('description'),
  717. category: 'accessing',
  718. fn: function (){
  719. var self=this;
  720. return "A presentation written in Jtalk";
  721. return self;},
  722. args: [],
  723. source: unescape('description%0A%09%5E%27A%20presentation%20written%20in%20Jtalk%27'),
  724. messageSends: [],
  725. referencedClasses: []
  726. }),
  727. smalltalk.Presentation);
  728. smalltalk.addMethod(
  729. unescape('_email'),
  730. smalltalk.method({
  731. selector: unescape('email'),
  732. category: 'accessing',
  733. fn: function (){
  734. var self=this;
  735. return unescape("john@smith.com");
  736. return self;},
  737. args: [],
  738. source: unescape('email%0A%09%5E%27john@smith.com%27'),
  739. messageSends: [],
  740. referencedClasses: []
  741. }),
  742. smalltalk.Presentation);
  743. smalltalk.addMethod(
  744. unescape('_slides'),
  745. smalltalk.method({
  746. selector: unescape('slides'),
  747. category: 'accessing',
  748. fn: function (){
  749. var self=this;
  750. (($receiver = self['@slides']) == nil || $receiver == undefined) ? (function(){return smalltalk.send(self, "_initSlides", []);})() : $receiver;
  751. return self['@slides'];
  752. return self;},
  753. args: [],
  754. source: unescape('slides%0A%09slides%20ifNil%3A%20%5Bself%20initSlides%5D.%0A%09%5Eslides'),
  755. messageSends: ["ifNil:", "initSlides"],
  756. referencedClasses: []
  757. }),
  758. smalltalk.Presentation);
  759. smalltalk.addMethod(
  760. unescape('_slideClasses'),
  761. smalltalk.method({
  762. selector: unescape('slideClasses'),
  763. category: 'accessing',
  764. fn: function (){
  765. var self=this;
  766. return smalltalk.send(self, "_subclassResponsibility", []);
  767. return self;},
  768. args: [],
  769. source: unescape('slideClasses%0A%09%5Eself%20subclassResponsibility'),
  770. messageSends: ["subclassResponsibility"],
  771. referencedClasses: []
  772. }),
  773. smalltalk.Presentation);
  774. smalltalk.addMethod(
  775. unescape('_currentSlide'),
  776. smalltalk.method({
  777. selector: unescape('currentSlide'),
  778. category: 'accessing',
  779. fn: function (){
  780. var self=this;
  781. return self['@currentSlide'];
  782. return self;},
  783. args: [],
  784. source: unescape('currentSlide%0A%09%5EcurrentSlide'),
  785. messageSends: [],
  786. referencedClasses: []
  787. }),
  788. smalltalk.Presentation);
  789. smalltalk.addMethod(
  790. unescape('_currentSlide_'),
  791. smalltalk.method({
  792. selector: unescape('currentSlide%3A'),
  793. category: 'accessing',
  794. fn: function (aSlide){
  795. var self=this;
  796. (self['@currentSlide']=aSlide);
  797. return self;},
  798. args: ["aSlide"],
  799. source: unescape('currentSlide%3A%20aSlide%0A%09currentSlide%20%3A%3D%20aSlide'),
  800. messageSends: [],
  801. referencedClasses: []
  802. }),
  803. smalltalk.Presentation);
  804. smalltalk.addMethod(
  805. unescape('_slideTransition'),
  806. smalltalk.method({
  807. selector: unescape('slideTransition'),
  808. category: 'accessing',
  809. fn: function (){
  810. var self=this;
  811. return "fade";
  812. return self;},
  813. args: [],
  814. source: unescape('slideTransition%0A%09%5E%27fade%27'),
  815. messageSends: [],
  816. referencedClasses: []
  817. }),
  818. smalltalk.Presentation);
  819. smalltalk.addMethod(
  820. unescape('_style'),
  821. smalltalk.method({
  822. selector: unescape('style'),
  823. category: 'accessing',
  824. fn: function (){
  825. var self=this;
  826. return "";
  827. return self;},
  828. args: [],
  829. source: unescape('style%0A%09%22Should%20return%20a%20CSS%20style%22%0A%09%5E%20%27%27'),
  830. messageSends: [],
  831. referencedClasses: []
  832. }),
  833. smalltalk.Presentation);
  834. smalltalk.addMethod(
  835. unescape('_nextSlide'),
  836. smalltalk.method({
  837. selector: unescape('nextSlide'),
  838. category: 'actions',
  839. fn: function (){
  840. var self=this;
  841. var next=nil;
  842. (($receiver = smalltalk.send(self, "_currentSlide", [])) != nil && $receiver != undefined) ? (function(){(next=smalltalk.send(smalltalk.send(self, "_slides", []), "_at_ifAbsent_", [((($receiver = smalltalk.send(self, "_currentSlideIndex", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)])), (function(){return nil;})]));return (($receiver = next) != nil && $receiver != undefined) ? (function(){(self['@currentSlide']=next);return smalltalk.send(next, "_show", []);})() : nil;})() : nil;
  843. return self;},
  844. args: [],
  845. source: unescape('nextSlide%0A%09%7C%20next%20%7C%0A%09self%20currentSlide%20ifNotNil%3A%20%5B%0A%09%09next%20%3A%3D%20self%20slides%20%0A%09%09%09at%3A%20%28self%20currentSlideIndex%29%20+%201%0A%09%09%09ifAbsent%3A%20%5Bnil%5D.%0A%09%09next%20ifNotNil%3A%20%5BcurrentSlide%20%3A%3D%20next.%20next%20show%5D%5D'),
  846. messageSends: ["ifNotNil:", "currentSlide", "at:ifAbsent:", "slides", unescape("+"), "currentSlideIndex", "show"],
  847. referencedClasses: []
  848. }),
  849. smalltalk.Presentation);
  850. smalltalk.addMethod(
  851. unescape('_showCurrentSlide'),
  852. smalltalk.method({
  853. selector: unescape('showCurrentSlide'),
  854. category: 'actions',
  855. fn: function (){
  856. var self=this;
  857. (($receiver = smalltalk.send(self, "_currentSlide", [])) != nil && $receiver != undefined) ? (function(){smalltalk.send(smalltalk.send(".slide", "_asJQuery", []), "_hide", []);smalltalk.send(smalltalk.send(smalltalk.send(unescape("%23"), "__comma", [smalltalk.send(smalltalk.send(self, "_currentSlide", []), "_id", [])]), "_asJQuery", []), "_show", []);return smalltalk.send(smalltalk.send("title", "_asJQuery", []), "_text_", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_title", []), "__comma", [unescape("%20-%20")]), "__comma", [smalltalk.send(smalltalk.send(self, "_currentSlide", []), "_id", [])])]);})() : nil;
  858. return self;},
  859. args: [],
  860. source: unescape('showCurrentSlide%0A%09self%20currentSlide%20ifNotNil%3A%20%5B%0A%09%09%27.slide%27%20asJQuery%20hide.%0A%09%09%28%27%23%27%2C%20self%20currentSlide%20id%29%20asJQuery%20show.%0A%20%20%20%20%20%20%20%20%20%20%09%27title%27%20asJQuery%20text%3A%20self%20title%2C%20%27%20-%20%27%2C%20self%20currentSlide%20id.%0A%20%20%20%20%20%20%20%20%5D'),
  861. messageSends: ["ifNotNil:", "currentSlide", "hide", "asJQuery", "show", unescape("%2C"), "id", "text:", "title"],
  862. referencedClasses: []
  863. }),
  864. smalltalk.Presentation);
  865. smalltalk.addMethod(
  866. unescape('_previousSlide'),
  867. smalltalk.method({
  868. selector: unescape('previousSlide'),
  869. category: 'actions',
  870. fn: function (){
  871. var self=this;
  872. var next=nil;
  873. (($receiver = smalltalk.send(self, "_currentSlide", [])) != nil && $receiver != undefined) ? (function(){(next=smalltalk.send(smalltalk.send(self, "_slides", []), "_at_ifAbsent_", [((($receiver = smalltalk.send(self, "_currentSlideIndex", [])).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), (function(){return nil;})]));return (($receiver = next) != nil && $receiver != undefined) ? (function(){(self['@currentSlide']=next);return smalltalk.send(next, "_show", []);})() : nil;})() : nil;
  874. return self;},
  875. args: [],
  876. source: unescape('previousSlide%0A%09%7C%20next%20%7C%0A%09self%20currentSlide%20ifNotNil%3A%20%5B%0A%09%09next%20%3A%3D%20self%20slides%20%0A%09%09%09at%3A%20%28self%20currentSlideIndex%29%20-%201%0A%09%09%09ifAbsent%3A%20%5Bnil%5D.%0A%09%09next%20ifNotNil%3A%20%5BcurrentSlide%20%3A%3D%20next.%20next%20show%5D%5D'),
  877. messageSends: ["ifNotNil:", "currentSlide", "at:ifAbsent:", "slides", unescape("-"), "currentSlideIndex", "show"],
  878. referencedClasses: []
  879. }),
  880. smalltalk.Presentation);
  881. smalltalk.addMethod(
  882. unescape('_moveAt_'),
  883. smalltalk.method({
  884. selector: unescape('moveAt%3A'),
  885. category: 'actions',
  886. fn: function (anInteger){
  887. var self=this;
  888. var next=nil;
  889. (next=smalltalk.send(smalltalk.send(self, "_slides", []), "_at_ifAbsent_", [anInteger, (function(){return nil;})]));
  890. (($receiver = next) != nil && $receiver != undefined) ? (function(){(self['@currentSlide']=next);return smalltalk.send(next, "_show", []);})() : nil;
  891. return self;},
  892. args: ["anInteger"],
  893. source: unescape('moveAt%3A%20anInteger%0A%09%7C%20next%20%7C%0A%09next%20%3A%3D%20self%20slides%20%0A%09%09%09at%3A%20anInteger%0A%09%09%09ifAbsent%3A%20%5Bnil%5D.%0A%09next%20ifNotNil%3A%20%5BcurrentSlide%20%3A%3D%20next.%20next%20show%5D'),
  894. messageSends: ["at:ifAbsent:", "slides", "ifNotNil:", "show"],
  895. referencedClasses: []
  896. }),
  897. smalltalk.Presentation);
  898. smalltalk.addMethod(
  899. unescape('_currentSlideIndex'),
  900. smalltalk.method({
  901. selector: unescape('currentSlideIndex'),
  902. category: 'actions',
  903. fn: function (){
  904. var self=this;
  905. return smalltalk.send(smalltalk.send(self, "_slides", []), "_indexOf_ifAbsent_", [smalltalk.send(self, "_currentSlide", []), (function(){return (1);})]);
  906. return self;},
  907. args: [],
  908. source: unescape('currentSlideIndex%0A%09%5E%20self%20slides%20indexOf%3A%20self%20currentSlide%20ifAbsent%3A%20%5B1%5D'),
  909. messageSends: ["indexOf:ifAbsent:", "slides", "currentSlide"],
  910. referencedClasses: []
  911. }),
  912. smalltalk.Presentation);
  913. smalltalk.addMethod(
  914. unescape('_slidesDo_'),
  915. smalltalk.method({
  916. selector: unescape('slidesDo%3A'),
  917. category: 'enumerating',
  918. fn: function (aBlockWithArg){
  919. var self=this;
  920. smalltalk.send(smalltalk.send(self, "_slides", []), "_do_", [(function(aSlide){return smalltalk.send(aBlockWithArg, "_value_", [aSlide]);})]);
  921. return self;},
  922. args: ["aBlockWithArg"],
  923. source: unescape('slidesDo%3A%20aBlockWithArg%0A%09self%20slides%20do%3A%20%5B%3AaSlide%7C%20aBlockWithArg%20value%3A%20aSlide%5D.'),
  924. messageSends: ["do:", "slides", "value:"],
  925. referencedClasses: []
  926. }),
  927. smalltalk.Presentation);
  928. smalltalk.addMethod(
  929. unescape('_initSlides'),
  930. smalltalk.method({
  931. selector: unescape('initSlides'),
  932. category: 'initialization',
  933. fn: function (){
  934. var self=this;
  935. (self['@slides']=smalltalk.send(smalltalk.send(self, "_slideClasses", []), "_collect_", [(function(each){return smalltalk.send(each, "_on_", [self]);})]));
  936. return self;},
  937. args: [],
  938. source: unescape('initSlides%0A%09slides%20%3A%3D%20self%20slideClasses%20collect%3A%20%5B%3Aeach%20%7C%20each%20on%3A%20self%5D'),
  939. messageSends: ["collect:", "slideClasses", "on:"],
  940. referencedClasses: []
  941. }),
  942. smalltalk.Presentation);
  943. smalltalk.addMethod(
  944. unescape('_renderOn_'),
  945. smalltalk.method({
  946. selector: unescape('renderOn%3A'),
  947. category: 'rendering',
  948. fn: function (html){
  949. var self=this;
  950. (function($rec){smalltalk.send($rec, "_type_", [unescape("text/css")]);return smalltalk.send($rec, "_with_", [smalltalk.send(self, "_style", [])]);})(smalltalk.send(html, "_style", []));
  951. (function($rec){smalltalk.send($rec, "_id_", ["slides"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderSlidesOn_", [html]);})]);})(smalltalk.send(html, "_div", []));
  952. return self;},
  953. args: ["html"],
  954. source: unescape('renderOn%3A%20html%0A%09html%20style%0A%09%09type%3A%20%27text/css%27%3B%0A%09%09with%3A%20self%20style.%0A%09html%20div%20%0A%09%09id%3A%20%27slides%27%3B%0A%09%09with%3A%20%5Bself%20renderSlidesOn%3A%20html%5D'),
  955. messageSends: ["type:", "with:", "style", "id:", "renderSlidesOn:", "div"],
  956. referencedClasses: []
  957. }),
  958. smalltalk.Presentation);
  959. smalltalk.addMethod(
  960. unescape('_renderSlidesOn_'),
  961. smalltalk.method({
  962. selector: unescape('renderSlidesOn%3A'),
  963. category: 'rendering',
  964. fn: function (html){
  965. var self=this;
  966. smalltalk.send(smalltalk.send(self, "_slides", []), "_do_", [(function(each){return smalltalk.send(each, "_renderOn_", [html]);})]);
  967. (($receiver = self['@currentSlide']) == nil || $receiver == undefined) ? (function(){return (self['@currentSlide']=smalltalk.send(smalltalk.send(self, "_slides", []), "_first", []));})() : $receiver;
  968. smalltalk.send(self, "_showCurrentSlide", []);
  969. return self;},
  970. args: ["html"],
  971. source: unescape('renderSlidesOn%3A%20html%0A%09self%20slides%20do%3A%20%5B%3Aeach%20%7C%20%0A%09%09each%20renderOn%3A%20html%5D.%0A%09currentSlide%20ifNil%3A%20%5BcurrentSlide%20%3A%3D%20self%20slides%20first%5D.%0A%09self%20showCurrentSlide'),
  972. messageSends: ["do:", "slides", "renderOn:", "ifNil:", "first", "showCurrentSlide"],
  973. referencedClasses: []
  974. }),
  975. smalltalk.Presentation);
  976. smalltalk.Presentation.klass.iVarNames = ['current'];
  977. smalltalk.addMethod(
  978. unescape('_concretePresentations'),
  979. smalltalk.method({
  980. selector: unescape('concretePresentations'),
  981. category: 'accessing',
  982. fn: function (){
  983. var self=this;
  984. return smalltalk.send(smalltalk.send(self, "_allSubclasses", []), "_select_", [(function(aPresentationClass){return smalltalk.send(aPresentationClass, "_isConcrete", []);})]);
  985. return self;},
  986. args: [],
  987. source: unescape('concretePresentations%0A%09%5E%20self%20allSubclasses%20select%3A%20%5B%3AaPresentationClass%7C%20aPresentationClass%20isConcrete%5D'),
  988. messageSends: ["select:", "allSubclasses", "isConcrete"],
  989. referencedClasses: []
  990. }),
  991. smalltalk.Presentation.klass);
  992. smalltalk.addMethod(
  993. unescape('_title'),
  994. smalltalk.method({
  995. selector: unescape('title'),
  996. category: 'accessing',
  997. fn: function (){
  998. var self=this;
  999. return "Slides";
  1000. return self;},
  1001. args: [],
  1002. source: unescape('title%0A%09%5E%20%27Slides%27'),
  1003. messageSends: [],
  1004. referencedClasses: []
  1005. }),
  1006. smalltalk.Presentation.klass);
  1007. smalltalk.addMethod(
  1008. unescape('_concretePresentationsDo_'),
  1009. smalltalk.method({
  1010. selector: unescape('concretePresentationsDo%3A'),
  1011. category: 'enumerating',
  1012. fn: function (aBlockWithArg){
  1013. var self=this;
  1014. smalltalk.send(smalltalk.send(self, "_concretePresentations", []), "_do_", [aBlockWithArg]);
  1015. return self;},
  1016. args: ["aBlockWithArg"],
  1017. source: unescape('concretePresentationsDo%3A%20aBlockWithArg%0A%09self%20concretePresentations%20do%3A%20aBlockWithArg.'),
  1018. messageSends: ["do:", "concretePresentations"],
  1019. referencedClasses: []
  1020. }),
  1021. smalltalk.Presentation.klass);
  1022. smalltalk.addMethod(
  1023. unescape('_isConcrete'),
  1024. smalltalk.method({
  1025. selector: unescape('isConcrete'),
  1026. category: 'testing',
  1027. fn: function (){
  1028. var self=this;
  1029. return false;
  1030. return self;},
  1031. args: [],
  1032. source: unescape('isConcrete%0A%09%5Efalse'),
  1033. messageSends: [],
  1034. referencedClasses: []
  1035. }),
  1036. smalltalk.Presentation.klass);
  1037. smalltalk.addClass('Slide', smalltalk.Widget, ['presentation'], 'Presentation');
  1038. smalltalk.addMethod(
  1039. unescape('_presentation'),
  1040. smalltalk.method({
  1041. selector: unescape('presentation'),
  1042. category: 'accessing',
  1043. fn: function (){
  1044. var self=this;
  1045. return self['@presentation'];
  1046. return self;},
  1047. args: [],
  1048. source: unescape('presentation%0A%09%5Epresentation'),
  1049. messageSends: [],
  1050. referencedClasses: []
  1051. }),
  1052. smalltalk.Slide);
  1053. smalltalk.addMethod(
  1054. unescape('_presentation_'),
  1055. smalltalk.method({
  1056. selector: unescape('presentation%3A'),
  1057. category: 'accessing',
  1058. fn: function (aPresentation){
  1059. var self=this;
  1060. (self['@presentation']=aPresentation);
  1061. return self;},
  1062. args: ["aPresentation"],
  1063. source: unescape('presentation%3A%20aPresentation%0A%09presentation%20%3A%3D%20aPresentation'),
  1064. messageSends: [],
  1065. referencedClasses: []
  1066. }),
  1067. smalltalk.Slide);
  1068. smalltalk.addMethod(
  1069. unescape('_id'),
  1070. smalltalk.method({
  1071. selector: unescape('id'),
  1072. category: 'accessing',
  1073. fn: function (){
  1074. var self=this;
  1075. return smalltalk.send(smalltalk.send(self, "_class", []), "_name", []);
  1076. return self;},
  1077. args: [],
  1078. source: unescape('id%0A%09%5E%20self%20class%20name'),
  1079. messageSends: ["name", "class"],
  1080. referencedClasses: []
  1081. }),
  1082. smalltalk.Slide);
  1083. smalltalk.addMethod(
  1084. unescape('_cssClass'),
  1085. smalltalk.method({
  1086. selector: unescape('cssClass'),
  1087. category: 'accessing',
  1088. fn: function (){
  1089. var self=this;
  1090. return "slide";
  1091. return self;},
  1092. args: [],
  1093. source: unescape('cssClass%0A%09%5E%27slide%27'),
  1094. messageSends: [],
  1095. referencedClasses: []
  1096. }),
  1097. smalltalk.Slide);
  1098. smalltalk.addMethod(
  1099. unescape('_backgroundColor'),
  1100. smalltalk.method({
  1101. selector: unescape('backgroundColor'),
  1102. category: 'accessing',
  1103. fn: function (){
  1104. var self=this;
  1105. return unescape("%23555");
  1106. return self;},
  1107. args: [],
  1108. source: unescape('backgroundColor%0A%09%5E%27%23555%27'),
  1109. messageSends: [],
  1110. referencedClasses: []
  1111. }),
  1112. smalltalk.Slide);
  1113. smalltalk.addMethod(
  1114. unescape('_title'),
  1115. smalltalk.method({
  1116. selector: unescape('title'),
  1117. category: 'accessing',
  1118. fn: function (){
  1119. var self=this;
  1120. return smalltalk.send(self, "_id", []);
  1121. return self;},
  1122. args: [],
  1123. source: unescape('title%0A%09%5E%20self%20id'),
  1124. messageSends: ["id"],
  1125. referencedClasses: []
  1126. }),
  1127. smalltalk.Slide);
  1128. smalltalk.addMethod(
  1129. unescape('_show'),
  1130. smalltalk.method({
  1131. selector: unescape('show'),
  1132. category: 'actions',
  1133. fn: function (){
  1134. var self=this;
  1135. (($receiver = smalltalk.send(self, "_backgroundColor", [])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [unescape("%23slides")]), "_css_color_", ["background", smalltalk.send(self, "_backgroundColor", [])]);})() : nil;
  1136. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [".slide"]), "_hide_options_duration_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_slideTransition", []), [], (300)]);
  1137. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [smalltalk.send(unescape("%23"), "__comma", [smalltalk.send(self, "_id", [])])]), "_show_options_duration_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_slideTransition", []), [], (300)]);
  1138. return self;},
  1139. args: [],
  1140. source: unescape('show%0A%09self%20backgroundColor%20ifNotNil%3A%20%5B%0A%09%09%28window%20jQuery%3A%20%27%23slides%27%29%20css%3A%20%27background%27%20color%3A%20self%20backgroundColor%5D.%0A%09%28window%20jQuery%3A%20%27.slide%27%29%20hide%3A%20self%20presentation%20slideTransition%20options%3A%20%23%28%29%20duration%3A%20300.%0A%09%28window%20jQuery%3A%20%27%23%27%2C%20self%20id%29%20show%3A%20self%20presentation%20slideTransition%20options%3A%20%23%28%29%20duration%3A%20300.'),
  1141. messageSends: ["ifNotNil:", "backgroundColor", "css:color:", "jQuery:", "hide:options:duration:", "slideTransition", "presentation", "show:options:duration:", unescape("%2C"), "id"],
  1142. referencedClasses: []
  1143. }),
  1144. smalltalk.Slide);
  1145. smalltalk.addMethod(
  1146. unescape('_renderOn_'),
  1147. smalltalk.method({
  1148. selector: unescape('renderOn%3A'),
  1149. category: 'rendering',
  1150. fn: function (html){
  1151. var self=this;
  1152. (function($rec){smalltalk.send($rec, "_class_", [smalltalk.send(self, "_cssClass", [])]);smalltalk.send($rec, "_id_", [smalltalk.send(self, "_id", [])]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(self, "_renderSlideOn_", [html]);return smalltalk.send(self, "_renderMetaOn_", [html]);})]);})(smalltalk.send(html, "_div", []));
  1153. return self;},
  1154. args: ["html"],
  1155. source: unescape('renderOn%3A%20html%0A%09html%20div%20class%3A%20self%20cssClass%3B%20id%3A%20self%20id%3B%20with%3A%20%5B%0A%09%09self%20renderSlideOn%3A%20html.%0A%09%09self%20renderMetaOn%3A%20html%5D'),
  1156. messageSends: ["class:", "cssClass", "id:", "id", "with:", "renderSlideOn:", "renderMetaOn:", "div"],
  1157. referencedClasses: []
  1158. }),
  1159. smalltalk.Slide);
  1160. smalltalk.addMethod(
  1161. unescape('_renderSlideOn_'),
  1162. smalltalk.method({
  1163. selector: unescape('renderSlideOn%3A'),
  1164. category: 'rendering',
  1165. fn: function (html){
  1166. var self=this;
  1167. return self;},
  1168. args: ["html"],
  1169. source: unescape('renderSlideOn%3A%20html'),
  1170. messageSends: [],
  1171. referencedClasses: []
  1172. }),
  1173. smalltalk.Slide);
  1174. smalltalk.addMethod(
  1175. unescape('_renderMetaOn_'),
  1176. smalltalk.method({
  1177. selector: unescape('renderMetaOn%3A'),
  1178. category: 'rendering',
  1179. fn: function (html){
  1180. var self=this;
  1181. (function($rec){smalltalk.send($rec, "_id_", ["meta"]);return smalltalk.send($rec, "_with_", [(function(){(function($rec){smalltalk.send($rec, "_class_", ["title"]);return smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_title", [])]);})(smalltalk.send(html, "_p", []));(function($rec){smalltalk.send($rec, "_class_", ["description"]);return smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_description", [])]);})(smalltalk.send(html, "_p", []));(function($rec){smalltalk.send($rec, "_class_", ["author"]);smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_author", [])]);return smalltalk.send($rec, "_href_", [smalltalk.send("mailto:", "__comma", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_email", [])])]);})(smalltalk.send(html, "_a", []));return (function($rec){smalltalk.send($rec, "_class_", ["url"]);smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_url", [])]);return smalltalk.send($rec, "_href_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_url", [])]);})(smalltalk.send(html, "_a", []));})]);})(smalltalk.send(html, "_div", []));
  1182. return self;},
  1183. args: ["html"],
  1184. source: unescape('renderMetaOn%3A%20html%0A%09html%20div%20%0A%09%09id%3A%20%27meta%27%3B%0A%09%09with%3A%20%5B%0A%09%09%09html%20p%20class%3A%20%27title%27%3B%20with%3A%20self%20presentation%20title.%0A%09%09%09html%20p%20class%3A%20%27description%27%3B%20with%3A%20self%20presentation%20description.%0A%09%09%09html%20a%20class%3A%20%27author%27%3B%20with%3A%20self%20presentation%20author%3B%20href%3A%20%27mailto%3A%27%2C%20self%20presentation%20email.%0A%09%09%09html%20a%20class%3A%20%27url%27%3B%20with%3A%20self%20presentation%20url%3B%20href%3A%20self%20presentation%20url%5D'),
  1185. messageSends: ["id:", "with:", "class:", "title", "presentation", "p", "description", "author", "href:", unescape("%2C"), "email", "a", "url", "div"],
  1186. referencedClasses: []
  1187. }),
  1188. smalltalk.Slide);
  1189. smalltalk.addMethod(
  1190. unescape('_on_'),
  1191. smalltalk.method({
  1192. selector: unescape('on%3A'),
  1193. category: 'instance creation',
  1194. fn: function (aPresentation){
  1195. var self=this;
  1196. return (function($rec){smalltalk.send($rec, "_presentation_", [aPresentation]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  1197. return self;},
  1198. args: ["aPresentation"],
  1199. source: unescape('on%3A%20aPresentation%0A%09%5Eself%20new%0A%09%09presentation%3A%20aPresentation%3B%0A%09%09yourself'),
  1200. messageSends: ["presentation:", "yourself", "new"],
  1201. referencedClasses: []
  1202. }),
  1203. smalltalk.Slide.klass);
  1204. smalltalk.addClass('ESUG2011Presentation', smalltalk.Presentation, [], 'Presentation');
  1205. smalltalk.addMethod(
  1206. unescape('_description'),
  1207. smalltalk.method({
  1208. selector: unescape('description'),
  1209. category: 'accessing',
  1210. fn: function (){
  1211. var self=this;
  1212. return unescape("ESUG%202011%2C%20Edinburgh");
  1213. return self;},
  1214. args: [],
  1215. source: unescape('description%0A%09%5E%27ESUG%202011%2C%20Edinburgh%27'),
  1216. messageSends: [],
  1217. referencedClasses: []
  1218. }),
  1219. smalltalk.ESUG2011Presentation);
  1220. smalltalk.addMethod(
  1221. unescape('_author'),
  1222. smalltalk.method({
  1223. selector: unescape('author'),
  1224. category: 'accessing',
  1225. fn: function (){
  1226. var self=this;
  1227. return "Nicolas Petton";
  1228. return self;},
  1229. args: [],
  1230. source: unescape('author%0A%09%5E%27Nicolas%20Petton%27'),
  1231. messageSends: [],
  1232. referencedClasses: []
  1233. }),
  1234. smalltalk.ESUG2011Presentation);
  1235. smalltalk.addMethod(
  1236. unescape('_email'),
  1237. smalltalk.method({
  1238. selector: unescape('email'),
  1239. category: 'accessing',
  1240. fn: function (){
  1241. var self=this;
  1242. return unescape("nico@objectfusion.fr");
  1243. return self;},
  1244. args: [],
  1245. source: unescape('email%0A%09%5E%27nico@objectfusion.fr%27'),
  1246. messageSends: [],
  1247. referencedClasses: []
  1248. }),
  1249. smalltalk.ESUG2011Presentation);
  1250. smalltalk.addMethod(
  1251. unescape('_url'),
  1252. smalltalk.method({
  1253. selector: unescape('url'),
  1254. category: 'accessing',
  1255. fn: function (){
  1256. var self=this;
  1257. return unescape("http%3A//jtalk-project.org");
  1258. return self;},
  1259. args: [],
  1260. source: unescape('url%0A%09%5E%27http%3A//jtalk-project.org%27'),
  1261. messageSends: [],
  1262. referencedClasses: []
  1263. }),
  1264. smalltalk.ESUG2011Presentation);
  1265. smalltalk.addMethod(
  1266. unescape('_slideClasses'),
  1267. smalltalk.method({
  1268. selector: unescape('slideClasses'),
  1269. category: 'accessing',
  1270. fn: function (){
  1271. var self=this;
  1272. return (function($rec){smalltalk.send($rec, "_add_", [(smalltalk.IntroSlide || IntroSlide)]);smalltalk.send($rec, "_add_", [(smalltalk.AboutSlide || AboutSlide)]);smalltalk.send($rec, "_add_", [(smalltalk.WhatIsJtalkSlide || WhatIsJtalkSlide)]);smalltalk.send($rec, "_add_", [(smalltalk.JtalkFeaturesSlide || JtalkFeaturesSlide)]);smalltalk.send($rec, "_add_", [(smalltalk.WorkspaceSlide || WorkspaceSlide)]);smalltalk.send($rec, "_add_", [(smalltalk.IDESlide || IDESlide)]);smalltalk.send($rec, "_add_", [(smalltalk.CountersSlide || CountersSlide)]);smalltalk.send($rec, "_add_", [(smalltalk.JtalkAndJavascriptSlide || JtalkAndJavascriptSlide)]);smalltalk.send($rec, "_add_", [(smalltalk.JtalkAndJavascriptSlide2 || JtalkAndJavascriptSlide2)]);smalltalk.send($rec, "_add_", [(smalltalk.JtalkAndJavascriptSlide3 || JtalkAndJavascriptSlide3)]);smalltalk.send($rec, "_add_", [(smalltalk.JtalkAndJavascriptSlide4 || JtalkAndJavascriptSlide4)]);smalltalk.send($rec, "_add_", [(smalltalk.JtalkAndCLI || JtalkAndCLI)]);smalltalk.send($rec, "_add_", [(smalltalk.JtalkAndNode || JtalkAndNode)]);smalltalk.send($rec, "_add_", [(smalltalk.JtalkAndNode2 || JtalkAndNode2)]);smalltalk.send($rec, "_add_", [(smalltalk.JtalkAndNode3 || JtalkAndNode3)]);smalltalk.send($rec, "_add_", [(smalltalk.JtalkAndWebOS || JtalkAndWebOS)]);smalltalk.send($rec, "_add_", [(smalltalk.JtalkAndEnyo || JtalkAndEnyo)]);smalltalk.send($rec, "_add_", [(smalltalk.ContributionsSlide || ContributionsSlide)]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send((smalltalk.Array || Array), "_new", []));
  1273. return self;},
  1274. args: [],
  1275. source: unescape('slideClasses%0A%09%5EArray%20new%0A%09%09add%3A%20IntroSlide%3B%0A%09%09add%3A%20AboutSlide%3B%0A%09%09add%3A%20WhatIsJtalkSlide%3B%0A%09%09add%3A%20JtalkFeaturesSlide%3B%0A%09%09add%3A%20WorkspaceSlide%3B%0A%09%09add%3A%20IDESlide%3B%0A%09%09add%3A%20CountersSlide%3B%0A%09%09add%3A%20JtalkAndJavascriptSlide%3B%0A%09%09add%3A%20JtalkAndJavascriptSlide2%3B%0A%09%09add%3A%20JtalkAndJavascriptSlide3%3B%0A%09%09add%3A%20JtalkAndJavascriptSlide4%3B%0A%09%09add%3A%20JtalkAndCLI%3B%0A%09%09add%3A%20JtalkAndNode%3B%0A%09%09add%3A%20JtalkAndNode2%3B%0A%09%09add%3A%20JtalkAndNode3%3B%0A%09%09add%3A%20JtalkAndWebOS%3B%0A%09%09add%3A%20JtalkAndEnyo%3B%0A%09%09add%3A%20ContributionsSlide%3B%0A%09%09yourself'),
  1276. messageSends: ["add:", "yourself", "new"],
  1277. referencedClasses: ["IntroSlide", "AboutSlide", "WhatIsJtalkSlide", "JtalkFeaturesSlide", "WorkspaceSlide", "IDESlide", "CountersSlide", "JtalkAndJavascriptSlide", "JtalkAndJavascriptSlide2", "JtalkAndJavascriptSlide3", "JtalkAndJavascriptSlide4", "JtalkAndCLI", "JtalkAndNode", "JtalkAndNode2", "JtalkAndNode3", "JtalkAndWebOS", "JtalkAndEnyo", "ContributionsSlide", "Array"]
  1278. }),
  1279. smalltalk.ESUG2011Presentation);
  1280. smalltalk.addMethod(
  1281. unescape('_style'),
  1282. smalltalk.method({
  1283. selector: unescape('style'),
  1284. category: 'accessing',
  1285. fn: function (){
  1286. var self=this;
  1287. return unescape("%0Abody%20%7B%0A%20%20%20%20font-family%3A%20Helvetica%2CArial%2Csans%3B%0A%7D%0A%0A%23slides%20%7B%0A%20%20%20%20width%3A%20100%25%3B%0A%20%20%20%20height%3A%20100%25%3B%0A%20%20%20%20overflow%3A%20hidden%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20top%3A%200%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20left%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20background%3A%20%23fff%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%20%20%20%20font-size%3A%2020px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20height%3A%20500px%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20padding%3A%2060px%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20left%3A%2050%25%3B%0A%20%20%20%20top%3A%2050%25%3B%0A%20%20%20%20margin-left%3A%20-420px%3B%0A%20%20%20%20margin-top%3A%20-320px%3B%0A%20%20%20%20box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%2020px%20%23111%3B%0A%7D%0A%0A.slide.transparent%20%7B%0A%20%20%20%20background%3A%20transparent%3B%0A%20%20%20%20box-shadow%3A%200%200%200%20none%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20%7B%0A%20%20%20%20background%3A%20black%3B%0A%20%20%20%20background-image%3A%20-webkit-gradient%28%0A%09linear%2C%0A%09left%20bottom%2C%0A%09left%20top%2C%0A%09color-stop%280.38%2C%20rgb%2879%2C79%2C79%29%29%2C%0A%09color-stop%280.69%2C%20rgb%2833%2C33%2C33%29%29%2C%0A%09color-stop%280.86%2C%20rgb%284%2C4%2C4%29%29%0A%20%20%20%20%29%3B%0A%20%20%20%20background-image%3A%20-moz-linear-gradient%28%0A%09center%20bottom%2C%0A%09rgb%2879%2C79%2C79%29%2038%25%2C%0A%09rgb%2833%2C33%2C33%29%2069%25%2C%0A%09rgb%284%2C4%2C4%29%2086%25%0A%20%20%20%20%29%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20h1%2C%20.slide.black%20h2%2C%20.slide.black%20h3%2C%0A.slide.transparent%20h1%2C%20.slide.transparent%20h2%2C%20.slide.transparent%20h3%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%7D%0A%0A.slide.black%20a%2C%20.slide.transparent%20a%20%7B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%7D%0A%0A.slide.white%20%7B%0A%20%20%20%20color%3A%20%23333%20%21important%3B%0A%7D%0A%0A.slide.white%20h1%2C%20.slide.white%20h2%2C%20.slide.white%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A.slide.white%20a%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A%0A.slide%20h1%2C%20.slide%20h2%2C%20.slide%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%20%20%20%20/*%20text-align%3A%20center%3B%20*/%0A%7D%0A%0A.slide%20h1%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2036px%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20margin-bottom%3A%2050px%3B%0A%7D%0A%0A/*%20.slide%20ul%2C%20.slide%20li%20%7B%20*/%0A/*%20%20%20%20%20padding%3A%200%3B%20*/%0A/*%20%20%20%20%20margin%3A%200%3B%20*/%0A/*%20%7D%20*/%0A%0A.slide%20button%20%7B%0A%20%20%20%20font-size%3A%2018px%3B%0A%7D%0A%0A.slide%20a%20%7B%0A%20%20%20%20color%3A%20%23555%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20cursor%3A%20pointer%3B%0A%7D%0A%0A.slide%20a%3Ahover%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20.right%20%7B%0A%20%20%20%20text-align%3A%20right%3B%0A%7D%0A%0A.slide%20.section.center%20%7B%0A%20%20%20%20text-align%3A%20center%3B%0A%20%20%20%20display%3A%20table-cell%3B%0A%20%20%20%20vertical-align%3A%20middle%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20height%3A%20500px%3B%0A%7D%0A%0A.slide%20code%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20border%3A%201px%20solid%20%23ddd%3B%0A%20%20%20%20background%3A%20%23eee%3B%0A%20%20%20%20border-radius%3A%204px%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A.slide%20.code2%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20line-height%3A%201.2em%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A%0A.slide%20.CodeMirror%20%7B%0A%20%20%20%20width%3A%20500px%3B%0A%20%20%20%20height%3A%20300px%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.CodeMirror-scroll%20%7B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.fancy%20%7B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20-webkit-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20-moz-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.comment%20%7B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20font-weight%3A%20normal%3B%0A%7D%0A%0A.slide%20.red%20%7B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.blue%20%7B%0A%20%20%20%20color%3A%20blue%3B%0A%7D%0A%0A.slide%23WhatIsJtalk%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/balloon.jpg%22%29%20650px%2050px%20no-repeat%3B%0A%7D%0A%0A.slide%23ide%20%7B%0A%20%20%20%20background%3A%20black%20url%28%22esug2011/images/ide_star_wars.png%22%29%20center%20center%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndCLI%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/terminal.png%22%29%20620px%2020px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndNode%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A.slide%23JtalkAndNode2%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndNode3%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndWebOS%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/devices.jpg%22%29%20380px%20280px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndEnyo%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/enyo.png%22%29%20130px%20150px%20no-repeat%3B%0A%7D%0A%0A.slide%23links%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/asterix.png%22%29%2030px%20130px%20no-repeat%3B%0A%7D%0A%0A.slide%23links%20.section%20%7B%0A%20%20%20%20margin-left%3A%20250px%3B%0A%20%20%20%20margin-top%3A%20200px%3B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2026px%3B%0A%20%20%20%20font-weight%3A%20bold%3B%0A%7D%0A%0A%0A%23meta%20%7B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20font-size%3A%2012px%3B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20z-index%3A%202%3B%0A%20%20%20%20background%3A%20%23333%3B%0A%20%20%20%20text-align%3A%20right%3B%0A%20%20%20%20padding%3A%200%2010px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%20%20%20%20border-top-left-radius%3A%205px%3B%0A%7D%0A%0A%23meta%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A%0A%23meta%20p%20%7B%0A%20%20%20%20display%3A%20inline%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A%23meta%20a%20%7B%0A%20%20%20%20//background%3A%20%23ccc%3B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20%0A%7D%0A");
  1288. return self;},
  1289. args: [],
  1290. source: unescape('style%0A%09%5E%27%0Abody%20%7B%0A%20%20%20%20font-family%3A%20Helvetica%2CArial%2Csans%3B%0A%7D%0A%0A%23slides%20%7B%0A%20%20%20%20width%3A%20100%25%3B%0A%20%20%20%20height%3A%20100%25%3B%0A%20%20%20%20overflow%3A%20hidden%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20top%3A%200%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20left%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20background%3A%20%23fff%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%20%20%20%20font-size%3A%2020px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20height%3A%20500px%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20padding%3A%2060px%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20left%3A%2050%25%3B%0A%20%20%20%20top%3A%2050%25%3B%0A%20%20%20%20margin-left%3A%20-420px%3B%0A%20%20%20%20margin-top%3A%20-320px%3B%0A%20%20%20%20box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%2020px%20%23111%3B%0A%7D%0A%0A.slide.transparent%20%7B%0A%20%20%20%20background%3A%20transparent%3B%0A%20%20%20%20box-shadow%3A%200%200%200%20none%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20%7B%0A%20%20%20%20background%3A%20black%3B%0A%20%20%20%20background-image%3A%20-webkit-gradient%28%0A%09linear%2C%0A%09left%20bottom%2C%0A%09left%20top%2C%0A%09color-stop%280.38%2C%20rgb%2879%2C79%2C79%29%29%2C%0A%09color-stop%280.69%2C%20rgb%2833%2C33%2C33%29%29%2C%0A%09color-stop%280.86%2C%20rgb%284%2C4%2C4%29%29%0A%20%20%20%20%29%3B%0A%20%20%20%20background-image%3A%20-moz-linear-gradient%28%0A%09center%20bottom%2C%0A%09rgb%2879%2C79%2C79%29%2038%25%2C%0A%09rgb%2833%2C33%2C33%29%2069%25%2C%0A%09rgb%284%2C4%2C4%29%2086%25%0A%20%20%20%20%29%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20h1%2C%20.slide.black%20h2%2C%20.slide.black%20h3%2C%0A.slide.transparent%20h1%2C%20.slide.transparent%20h2%2C%20.slide.transparent%20h3%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%7D%0A%0A.slide.black%20a%2C%20.slide.transparent%20a%20%7B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%7D%0A%0A.slide.white%20%7B%0A%20%20%20%20color%3A%20%23333%20%21important%3B%0A%7D%0A%0A.slide.white%20h1%2C%20.slide.white%20h2%2C%20.slide.white%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A.slide.white%20a%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A%0A.slide%20h1%2C%20.slide%20h2%2C%20.slide%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%20%20%20%20/*%20text-align%3A%20center%3B%20*/%0A%7D%0A%0A.slide%20h1%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2036px%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20margin-bottom%3A%2050px%3B%0A%7D%0A%0A/*%20.slide%20ul%2C%20.slide%20li%20%7B%20*/%0A/*%20%20%20%20%20padding%3A%200%3B%20*/%0A/*%20%20%20%20%20margin%3A%200%3B%20*/%0A/*%20%7D%20*/%0A%0A.slide%20button%20%7B%0A%20%20%20%20font-size%3A%2018px%3B%0A%7D%0A%0A.slide%20a%20%7B%0A%20%20%20%20color%3A%20%23555%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20cursor%3A%20pointer%3B%0A%7D%0A%0A.slide%20a%3Ahover%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20.right%20%7B%0A%20%20%20%20text-align%3A%20right%3B%0A%7D%0A%0A.slide%20.section.center%20%7B%0A%20%20%20%20text-align%3A%20center%3B%0A%20%20%20%20display%3A%20table-cell%3B%0A%20%20%20%20vertical-align%3A%20middle%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20height%3A%20500px%3B%0A%7D%0A%0A.slide%20code%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20border%3A%201px%20solid%20%23ddd%3B%0A%20%20%20%20background%3A%20%23eee%3B%0A%20%20%20%20border-radius%3A%204px%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A.slide%20.code2%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20line-height%3A%201.2em%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A%0A.slide%20.CodeMirror%20%7B%0A%20%20%20%20width%3A%20500px%3B%0A%20%20%20%20height%3A%20300px%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.CodeMirror-scroll%20%7B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.fancy%20%7B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20-webkit-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20-moz-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.comment%20%7B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20font-weight%3A%20normal%3B%0A%7D%0A%0A.slide%20.red%20%7B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.blue%20%7B%0A%20%20%20%20color%3A%20blue%3B%0A%7D%0A%0A.slide%23WhatIsJtalk%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/balloon.jpg%22%29%20650px%2050px%20no-repeat%3B%0A%7D%0A%0A.slide%23ide%20%7B%0A%20%20%20%20background%3A%20black%20url%28%22esug2011/images/ide_star_wars.png%22%29%20center%20center%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndCLI%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/terminal.png%22%29%20620px%2020px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndNode%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A.slide%23JtalkAndNode2%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndNode3%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndWebOS%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/devices.jpg%22%29%20380px%20280px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndEnyo%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/enyo.png%22%29%20130px%20150px%20no-repeat%3B%0A%7D%0A%0A.slide%23links%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/asterix.png%22%29%2030px%20130px%20no-repeat%3B%0A%7D%0A%0A.slide%23links%20.section%20%7B%0A%20%20%20%20margin-left%3A%20250px%3B%0A%20%20%20%20margin-top%3A%20200px%3B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2026px%3B%0A%20%20%20%20font-weight%3A%20bold%3B%0A%7D%0A%0A%0A%23meta%20%7B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20font-size%3A%2012px%3B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20z-index%3A%202%3B%0A%20%20%20%20background%3A%20%23333%3B%0A%20%20%20%20text-align%3A%20right%3B%0A%20%20%20%20padding%3A%200%2010px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%20%20%20%20border-top-left-radius%3A%205px%3B%0A%7D%0A%0A%23meta%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A%0A%23meta%20p%20%7B%0A%20%20%20%20display%3A%20inline%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A%23meta%20a%20%7B%0A%20%20%20%20//background%3A%20%23ccc%3B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20%0A%7D%0A%27'),
  1291. messageSends: [],
  1292. referencedClasses: []
  1293. }),
  1294. smalltalk.ESUG2011Presentation);
  1295. smalltalk.ESUG2011Presentation.klass.iVarNames = ['current'];
  1296. smalltalk.addMethod(
  1297. unescape('_title'),
  1298. smalltalk.method({
  1299. selector: unescape('title'),
  1300. category: 'accessing',
  1301. fn: function (){
  1302. var self=this;
  1303. return "Jtalk";
  1304. return self;},
  1305. args: [],
  1306. source: unescape('title%0A%09%5E%27Jtalk%27'),
  1307. messageSends: [],
  1308. referencedClasses: []
  1309. }),
  1310. smalltalk.ESUG2011Presentation.klass);
  1311. smalltalk.addMethod(
  1312. unescape('_isConcrete'),
  1313. smalltalk.method({
  1314. selector: unescape('isConcrete'),
  1315. category: 'testing',
  1316. fn: function (){
  1317. var self=this;
  1318. return true;
  1319. return self;},
  1320. args: [],
  1321. source: unescape('isConcrete%0A%09%5Etrue'),
  1322. messageSends: [],
  1323. referencedClasses: []
  1324. }),
  1325. smalltalk.ESUG2011Presentation.klass);
  1326. smalltalk.addClass('IntroSlide', smalltalk.Slide, [], 'Presentation');
  1327. smalltalk.addMethod(
  1328. unescape('_id'),
  1329. smalltalk.method({
  1330. selector: unescape('id'),
  1331. category: 'accessing',
  1332. fn: function (){
  1333. var self=this;
  1334. return "intro";
  1335. return self;},
  1336. args: [],
  1337. source: unescape('id%0A%09%5E%27intro%27'),
  1338. messageSends: [],
  1339. referencedClasses: []
  1340. }),
  1341. smalltalk.IntroSlide);
  1342. smalltalk.addMethod(
  1343. unescape('_cssClass'),
  1344. smalltalk.method({
  1345. selector: unescape('cssClass'),
  1346. category: 'accessing',
  1347. fn: function (){
  1348. var self=this;
  1349. return "slide black";
  1350. return self;},
  1351. args: [],
  1352. source: unescape('cssClass%0A%09%5E%27slide%20black%27'),
  1353. messageSends: [],
  1354. referencedClasses: []
  1355. }),
  1356. smalltalk.IntroSlide);
  1357. smalltalk.addMethod(
  1358. unescape('_renderSlideOn_'),
  1359. smalltalk.method({
  1360. selector: unescape('renderSlideOn%3A'),
  1361. category: 'rendering',
  1362. fn: function (html){
  1363. var self=this;
  1364. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [unescape("Jtalk%2C%20the%20Smalltalk%20for%20Web%20developers")]);smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_presentation", []), "_author", []), "__comma", [unescape("%20%26%20G%F6ran%20Krampe%20-%20")]), "__comma", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_description", [])])]);smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_email", [])]);return smalltalk.send($rec, "_href_", [smalltalk.send("mailto:", "__comma", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_email", [])])]);})(smalltalk.send(html, "_a", []));})]);smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_with_", [unescape("goran@krampe.se")]);return smalltalk.send($rec, "_href_", [unescape("mailto%3Agoran@krampe.se")]);})(smalltalk.send(html, "_a", []));})]);return smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_with_", ["objectfusion.fr"]);return smalltalk.send($rec, "_href_", [unescape("http%3A//www.objectfusion.fr")]);})(smalltalk.send(html, "_a", []));})]);})]);})(smalltalk.send(html, "_div", []));
  1365. return self;},
  1366. args: ["html"],
  1367. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%27Jtalk%2C%20the%20Smalltalk%20for%20Web%20developers%27.%0A%09%09html%20p%20with%3A%20self%20presentation%20author%2C%20%27%20%26%20G%F6ran%20Krampe%20-%20%27%2C%20self%20presentation%20description.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%0A%09%09%09%09with%3A%20self%20presentation%20email%3B%0A%09%09%09%09href%3A%20%27mailto%3A%27%2C%20self%20presentation%20email%5D.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%0A%09%09%09%09with%3A%20%27goran@krampe.se%27%3B%0A%09%09%09%09href%3A%20%27mailto%3Agoran@krampe.se%27%5D.%0A%09%09%0A%20%20%20%20%20%20%20%20%20%20%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%0A%09%09%09%09with%3A%20%27objectfusion.fr%27%3B%0A%09%09%09%09href%3A%20%27http%3A//www.objectfusion.fr%27%5D%5D'),
  1368. messageSends: ["class:", "with:", "h1", "p", unescape("%2C"), "author", "presentation", "description", "email", "href:", "a", "div"],
  1369. referencedClasses: []
  1370. }),
  1371. smalltalk.IntroSlide);
  1372. smalltalk.addClass('WhatIsJtalkSlide', smalltalk.Slide, [], 'Presentation');
  1373. smalltalk.addMethod(
  1374. unescape('_id'),
  1375. smalltalk.method({
  1376. selector: unescape('id'),
  1377. category: 'accessing',
  1378. fn: function (){
  1379. var self=this;
  1380. return "WhatIsJtalk";
  1381. return self;},
  1382. args: [],
  1383. source: unescape('id%0A%09%5E%27WhatIsJtalk%27'),
  1384. messageSends: [],
  1385. referencedClasses: []
  1386. }),
  1387. smalltalk.WhatIsJtalkSlide);
  1388. smalltalk.addMethod(
  1389. unescape('_renderSlideOn_'),
  1390. smalltalk.method({
  1391. selector: unescape('renderSlideOn%3A'),
  1392. category: 'rendering',
  1393. fn: function (html){
  1394. var self=this;
  1395. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", ["Jtalk in a nutshell"]);smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Jtalk is an implementation of Smalltalk"]);smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Jtalk runs on top of the JavaScript runtime"]);smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("Jtalk%20is%20an%20opensource%20project%20%28MIT%29")]);return (function($rec){smalltalk.send($rec, "_class_", ["fancy"]);return smalltalk.send($rec, "_with_", [unescape("Jtalk%20is%20cool%21")]);})(smalltalk.send(html, "_h2", []));})]);})(smalltalk.send(html, "_div", []));
  1396. return self;},
  1397. args: ["html"],
  1398. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%27Jtalk%20in%20a%20nutshell%27.%0A%09%09html%20h2%20with%3A%20%27Jtalk%20is%20an%20implementation%20of%20Smalltalk%27.%0A%09%09html%20h2%20with%3A%20%27Jtalk%20runs%20on%20top%20of%20the%20JavaScript%20runtime%27.%0A%09%09html%20h2%20with%3A%20%27Jtalk%20is%20an%20opensource%20project%20%28MIT%29%27.%0A%09%09html%20h2%20class%3A%20%27fancy%27%3B%20with%3A%20%27Jtalk%20is%20cool%21%27%5D'),
  1399. messageSends: ["class:", "with:", "h1", "h2", "div"],
  1400. referencedClasses: []
  1401. }),
  1402. smalltalk.WhatIsJtalkSlide);
  1403. smalltalk.addClass('JtalkFeaturesSlide', smalltalk.Slide, [], 'Presentation');
  1404. smalltalk.addMethod(
  1405. unescape('_id'),
  1406. smalltalk.method({
  1407. selector: unescape('id'),
  1408. category: 'accessing',
  1409. fn: function (){
  1410. var self=this;
  1411. return "features";
  1412. return self;},
  1413. args: [],
  1414. source: unescape('id%0A%09%5E%27features%27'),
  1415. messageSends: [],
  1416. referencedClasses: []
  1417. }),
  1418. smalltalk.JtalkFeaturesSlide);
  1419. smalltalk.addMethod(
  1420. unescape('_renderSlideOn_'),
  1421. smalltalk.method({
  1422. selector: unescape('renderSlideOn%3A'),
  1423. category: 'rendering',
  1424. fn: function (html){
  1425. var self=this;
  1426. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", ["Jtalk features"]);
  1427. smalltalk.send(smalltalk.send(html, "_ul", []), "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("Jtalk%20is%20%28mostly%29%20written%20in%20itself%2C%20including%20the%20parser%20%26%20compiler")]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("Full%20Smalltalk%20object%20system%2C%20including%20classes%20%26%20metaclasses%2C%20etc")]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("Core%20libraries%20%28streams%2C%20collections%2C%20RegExp%2C%20etc%29")]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("Web%20related%20libraries%3A%20HTML%20Canvas%2C%20DOM%20manipulation")]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", ["Full featured IDE"]);return smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [(function(){smalltalk.send(html, "_with_", [unescape("Advanced%20Smalltalk%20features%2C%20including%20")]);smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("%23doesNotUnderstand%3A")]);smalltalk.send(html, "_with_", [" support and "]);return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", ["thisContext"]);})]);})]);
  1428. return self;},
  1429. args: ["html"],
  1430. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%27Jtalk%20features%27.%0A%09html%20ul%20with%3A%20%5B%0A%09%09html%20li%20with%3A%20%27Jtalk%20is%20%28mostly%29%20written%20in%20itself%2C%20including%20the%20parser%20%26%20compiler%27.%0A%09%09html%20li%20with%3A%20%27Full%20Smalltalk%20object%20system%2C%20including%20classes%20%26%20metaclasses%2C%20etc%27.%0A%09%09html%20li%20with%3A%20%27Core%20libraries%20%28streams%2C%20collections%2C%20RegExp%2C%20etc%29%27.%0A%09%09html%20li%20with%3A%20%27Web%20related%20libraries%3A%20HTML%20Canvas%2C%20DOM%20manipulation%27.%0A%09%09html%20li%20with%3A%20%27Full%20featured%20IDE%27.%0A%09%09html%20li%20with%3A%20%5B%0A%09%09%09html%20with%3A%27Advanced%20Smalltalk%20features%2C%20including%20%27.%0A%09%09%09html%20code%20with%3A%20%27%23doesNotUnderstand%3A%27.%0A%09%09%09html%20with%3A%20%27%20support%20and%20%27.%0A%09%09%09html%20code%20with%3A%20%27thisContext%27%5D%5D'),
  1431. messageSends: ["with:", "h1", "ul", "li", "code"],
  1432. referencedClasses: []
  1433. }),
  1434. smalltalk.JtalkFeaturesSlide);
  1435. smalltalk.addClass('AboutSlide', smalltalk.Slide, [], 'Presentation');
  1436. smalltalk.addMethod(
  1437. unescape('_id'),
  1438. smalltalk.method({
  1439. selector: unescape('id'),
  1440. category: 'accessing',
  1441. fn: function (){
  1442. var self=this;
  1443. return "about";
  1444. return self;},
  1445. args: [],
  1446. source: unescape('id%0A%09%5E%27about%27'),
  1447. messageSends: [],
  1448. referencedClasses: []
  1449. }),
  1450. smalltalk.AboutSlide);
  1451. smalltalk.addMethod(
  1452. unescape('_cssClass'),
  1453. smalltalk.method({
  1454. selector: unescape('cssClass'),
  1455. category: 'accessing',
  1456. fn: function (){
  1457. var self=this;
  1458. return "slide transparent white";
  1459. return self;},
  1460. args: [],
  1461. source: unescape('cssClass%0A%09%5E%27slide%20transparent%20white%27'),
  1462. messageSends: [],
  1463. referencedClasses: []
  1464. }),
  1465. smalltalk.AboutSlide);
  1466. smalltalk.addMethod(
  1467. unescape('_backgroundColor'),
  1468. smalltalk.method({
  1469. selector: unescape('backgroundColor'),
  1470. category: 'accessing',
  1471. fn: function (){
  1472. var self=this;
  1473. return "white";
  1474. return self;},
  1475. args: [],
  1476. source: unescape('backgroundColor%0A%09%5E%27white%27'),
  1477. messageSends: [],
  1478. referencedClasses: []
  1479. }),
  1480. smalltalk.AboutSlide);
  1481. smalltalk.addMethod(
  1482. unescape('_renderSlideOn_'),
  1483. smalltalk.method({
  1484. selector: unescape('renderSlideOn%3A'),
  1485. category: 'rendering',
  1486. fn: function (html){
  1487. var self=this;
  1488. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", ["About this presentation"]);smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [unescape("This%20presentation%20is%20entirely%20written%20in%20Jtalk%20and%20is%20licensed%20under%20CC%20BY-SA.")]);smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["Press "]);smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("%u2190")]);smalltalk.send(html, "_with_", [" to move backward and "]);smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("%20%u2192")]);return smalltalk.send(html, "_with_", [" to move forward."]);})]);return smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["Open a "]);(function($rec){smalltalk.send($rec, "_with_", ["browser"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send((smalltalk.Browser || Browser), "_openOn_", [(smalltalk.Presentation || Presentation)]);})]);})(smalltalk.send(html, "_button", []));return smalltalk.send(html, "_with_", [" to edit the source code."]);})]);})]);})(smalltalk.send(html, "_div", []));
  1489. return self;},
  1490. args: ["html"],
  1491. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%27About%20this%20presentation%27.%0A%09%09html%20p%20with%3A%20%27This%20presentation%20is%20entirely%20written%20in%20Jtalk%20and%20is%20licensed%20under%20CC%20BY-SA.%27.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20with%3A%20%27Press%20%27.%0A%09%09%09html%20code%20with%3A%20%27%u2190%27.%0A%09%09%09html%20with%3A%20%27%20to%20move%20backward%20and%20%27.%0A%09%09%09html%20code%20with%3A%20%27%20%u2192%27.%0A%09%09%09html%20with%3A%20%27%20to%20move%20forward.%27%5D.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20with%3A%20%27Open%20a%20%27.%0A%09%09%09html%20button%20%0A%09%09%09%09with%3A%20%27browser%27%3B%0A%09%09%09%09onClick%3A%20%5BBrowser%20openOn%3A%20Presentation%5D.%0A%09%09%09html%20with%3A%20%27%20to%20edit%20the%20source%20code.%27%5D%5D'),
  1492. messageSends: ["class:", "with:", "h1", "p", "code", "onClick:", "openOn:", "button", "div"],
  1493. referencedClasses: ["Browser", "Presentation"]
  1494. }),
  1495. smalltalk.AboutSlide);
  1496. smalltalk.addClass('JtalkAndJavascriptSlide3', smalltalk.Slide, [], 'Presentation');
  1497. smalltalk.addMethod(
  1498. unescape('_id'),
  1499. smalltalk.method({
  1500. selector: unescape('id'),
  1501. category: 'accessing',
  1502. fn: function (){
  1503. var self=this;
  1504. return "jtalkAndJs3";
  1505. return self;},
  1506. args: [],
  1507. source: unescape('id%0A%09%5E%27jtalkAndJs3%27'),
  1508. messageSends: [],
  1509. referencedClasses: []
  1510. }),
  1511. smalltalk.JtalkAndJavascriptSlide3);
  1512. smalltalk.addMethod(
  1513. unescape('_backgroundColor'),
  1514. smalltalk.method({
  1515. selector: unescape('backgroundColor'),
  1516. category: 'accessing',
  1517. fn: function (){
  1518. var self=this;
  1519. return unescape("%2308C");
  1520. return self;},
  1521. args: [],
  1522. source: unescape('backgroundColor%0A%09%5E%27%2308C%27'),
  1523. messageSends: [],
  1524. referencedClasses: []
  1525. }),
  1526. smalltalk.JtalkAndJavascriptSlide3);
  1527. smalltalk.addMethod(
  1528. unescape('_renderSlideOn_'),
  1529. smalltalk.method({
  1530. selector: unescape('renderSlideOn%3A'),
  1531. category: 'rendering',
  1532. fn: function (html){
  1533. var self=this;
  1534. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["Smalltalk "]);(function($rec){smalltalk.send($rec, "_class_", ["red"]);return smalltalk.send($rec, "_with_", [unescape("%u2665")]);})(smalltalk.send(html, "_span", []));return smalltalk.send(html, "_with_", [" JavaScript"]);})]);
  1535. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("Smalltalk%20%u21D2%20JavaScript")]);
  1536. smalltalk.send(smalltalk.send(html, "_ol", []), "_with_", [(function(){(function($rec){smalltalk.send($rec, "_with_", ["Unary messages begin with an underscore: "]);smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", ["yourself"]);})]);smalltalk.send($rec, "_with_", [" becomes "]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("_yourself%28%29")]);})]);})(smalltalk.send(html, "_li", []));(function($rec){smalltalk.send($rec, "_with_", ["Binary messages are prefixed with 2 underscores: "]);smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("3@4")]);})]);smalltalk.send($rec, "_with_", [" becomes "]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("%283%29.__at%284%29")]);})]);})(smalltalk.send(html, "_li", []));return (function($rec){smalltalk.send($rec, "_with_", [unescape("Keyword%20message%20follow%20the%20same%20rules%20as%20unary%20messages%2C%20with%20a%20final%20underscore%3A%20")]);smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", ["aDictionary at: 3 put: 4"]);})]);smalltalk.send($rec, "_with_", [" becomes "]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("aDictionary._at_put_%283%2C%204%29")]);})]);})(smalltalk.send(html, "_li", []));})]);
  1537. return self;},
  1538. args: ["html"],
  1539. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Smalltalk%20%27.%0A%09%09html%20span%20class%3A%20%27red%27%3B%20with%3A%20%27%u2665%27.%0A%09%09html%20with%3A%20%27%20JavaScript%27%5D.%0A%09html%20h2%20with%3A%20%27Smalltalk%20%u21D2%20JavaScript%27.%0A%09html%20ol%20with%3A%20%5B%0A%09%09html%20li%20%0A%09%09%09with%3A%20%27Unary%20messages%20begin%20with%20an%20underscore%3A%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27yourself%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27_yourself%28%29%27%5D.%0A%09%09html%20li%20%0A%09%09%09with%3A%20%27Binary%20messages%20are%20prefixed%20with%202%20underscores%3A%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%273@4%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27%283%29.__at%284%29%27%5D.%0A%09%09html%20li%20%0A%09%09%09with%3A%20%27Keyword%20message%20follow%20the%20same%20rules%20as%20unary%20messages%2C%20with%20a%20final%20underscore%3A%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27aDictionary%20at%3A%203%20put%3A%204%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27aDictionary._at_put_%283%2C%204%29%27%5D%5D'),
  1540. messageSends: ["with:", "h1", "class:", "span", "h2", "ol", "code", "li"],
  1541. referencedClasses: []
  1542. }),
  1543. smalltalk.JtalkAndJavascriptSlide3);
  1544. smalltalk.addClass('JtalkAndJavascriptSlide2', smalltalk.Slide, [], 'Presentation');
  1545. smalltalk.addMethod(
  1546. unescape('_id'),
  1547. smalltalk.method({
  1548. selector: unescape('id'),
  1549. category: 'accessing',
  1550. fn: function (){
  1551. var self=this;
  1552. return "jtalkAndJs2";
  1553. return self;},
  1554. args: [],
  1555. source: unescape('id%0A%09%5E%27jtalkAndJs2%27'),
  1556. messageSends: [],
  1557. referencedClasses: []
  1558. }),
  1559. smalltalk.JtalkAndJavascriptSlide2);
  1560. smalltalk.addMethod(
  1561. unescape('_backgroundColor'),
  1562. smalltalk.method({
  1563. selector: unescape('backgroundColor'),
  1564. category: 'accessing',
  1565. fn: function (){
  1566. var self=this;
  1567. return unescape("%2308C");
  1568. return self;},
  1569. args: [],
  1570. source: unescape('backgroundColor%0A%09%5E%27%2308C%27'),
  1571. messageSends: [],
  1572. referencedClasses: []
  1573. }),
  1574. smalltalk.JtalkAndJavascriptSlide2);
  1575. smalltalk.addMethod(
  1576. unescape('_renderSlideOn_'),
  1577. smalltalk.method({
  1578. selector: unescape('renderSlideOn%3A'),
  1579. category: 'rendering',
  1580. fn: function (html){
  1581. var self=this;
  1582. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["Smalltalk "]);(function($rec){smalltalk.send($rec, "_class_", ["red"]);return smalltalk.send($rec, "_with_", [unescape("%u2665")]);})(smalltalk.send(html, "_span", []));return smalltalk.send(html, "_with_", [" JavaScript"]);})]);
  1583. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Jtalk maps one to one with the JavaScript equivalent:"]);
  1584. smalltalk.send(smalltalk.send(html, "_ul", []), "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("String%20%u21D4%20String")]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("Number%20%u21D4%20Number")]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("BlockClosure%20%u21D4%20function")]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("Dictionary%20%u21D4%20Object")]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("Error%20%u21D4%20Error")]);return smalltalk.send(smalltalk.send(html, "_li", []), "_with_", ["etc."]);})]);
  1585. return self;},
  1586. args: ["html"],
  1587. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Smalltalk%20%27.%0A%09%09html%20span%20class%3A%20%27red%27%3B%20with%3A%20%27%u2665%27.%0A%09%09html%20with%3A%20%27%20JavaScript%27%5D.%0A%09html%20h2%20with%3A%20%27Jtalk%20maps%20one%20to%20one%20with%20the%20JavaScript%20equivalent%3A%27.%0A%09html%20ul%20with%3A%20%5B%0A%09%09html%20li%20with%3A%20%27String%20%u21D4%20String%27.%0A%09%09html%20li%20with%3A%20%27Number%20%u21D4%20Number%27.%0A%09%09html%20li%20with%3A%20%27BlockClosure%20%u21D4%20function%27.%0A%09%09html%20li%20with%3A%20%27Dictionary%20%u21D4%20Object%27.%0A%09%09html%20li%20with%3A%20%27Error%20%u21D4%20Error%27.%0A%09%09html%20li%20with%3A%20%27etc.%27%5D'),
  1588. messageSends: ["with:", "h1", "class:", "span", "h2", "ul", "li"],
  1589. referencedClasses: []
  1590. }),
  1591. smalltalk.JtalkAndJavascriptSlide2);
  1592. smalltalk.addClass('JtalkAndJavascriptSlide', smalltalk.Slide, [], 'Presentation');
  1593. smalltalk.addMethod(
  1594. unescape('_id'),
  1595. smalltalk.method({
  1596. selector: unescape('id'),
  1597. category: 'accessing',
  1598. fn: function (){
  1599. var self=this;
  1600. return "jtalkAndJs";
  1601. return self;},
  1602. args: [],
  1603. source: unescape('id%0A%09%5E%27jtalkAndJs%27'),
  1604. messageSends: [],
  1605. referencedClasses: []
  1606. }),
  1607. smalltalk.JtalkAndJavascriptSlide);
  1608. smalltalk.addMethod(
  1609. unescape('_cssClass'),
  1610. smalltalk.method({
  1611. selector: unescape('cssClass'),
  1612. category: 'accessing',
  1613. fn: function (){
  1614. var self=this;
  1615. return "slide transparent";
  1616. return self;},
  1617. args: [],
  1618. source: unescape('cssClass%0A%09%5E%27slide%20transparent%27'),
  1619. messageSends: [],
  1620. referencedClasses: []
  1621. }),
  1622. smalltalk.JtalkAndJavascriptSlide);
  1623. smalltalk.addMethod(
  1624. unescape('_backgroundColor'),
  1625. smalltalk.method({
  1626. selector: unescape('backgroundColor'),
  1627. category: 'accessing',
  1628. fn: function (){
  1629. var self=this;
  1630. return unescape("%2308C");
  1631. return self;},
  1632. args: [],
  1633. source: unescape('backgroundColor%0A%09%5E%27%2308C%27'),
  1634. messageSends: [],
  1635. referencedClasses: []
  1636. }),
  1637. smalltalk.JtalkAndJavascriptSlide);
  1638. smalltalk.addMethod(
  1639. unescape('_renderSlideOn_'),
  1640. smalltalk.method({
  1641. selector: unescape('renderSlideOn%3A'),
  1642. category: 'rendering',
  1643. fn: function (html){
  1644. var self=this;
  1645. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["Smalltalk "]);(function($rec){smalltalk.send($rec, "_class_", ["red"]);return smalltalk.send($rec, "_with_", [unescape("%u2665")]);})(smalltalk.send(html, "_span", []));return smalltalk.send(html, "_with_", [" JavaScript"]);})]);})]);})(smalltalk.send(html, "_div", []));
  1646. return self;},
  1647. args: ["html"],
  1648. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%5B%0A%09%09%09html%20with%3A%20%27Smalltalk%20%27.%0A%09%09%09html%20span%20class%3A%20%27red%27%3B%20with%3A%20%27%u2665%27.%0A%09%09%09html%20with%3A%20%27%20JavaScript%27%5D%5D'),
  1649. messageSends: ["class:", "with:", "h1", "span", "div"],
  1650. referencedClasses: []
  1651. }),
  1652. smalltalk.JtalkAndJavascriptSlide);
  1653. smalltalk.addClass('WorkspaceSlide', smalltalk.Slide, [], 'Presentation');
  1654. smalltalk.addMethod(
  1655. unescape('_id'),
  1656. smalltalk.method({
  1657. selector: unescape('id'),
  1658. category: 'accessing',
  1659. fn: function (){
  1660. var self=this;
  1661. return "workspace";
  1662. return self;},
  1663. args: [],
  1664. source: unescape('id%0A%09%5E%27workspace%27'),
  1665. messageSends: [],
  1666. referencedClasses: []
  1667. }),
  1668. smalltalk.WorkspaceSlide);
  1669. smalltalk.addMethod(
  1670. unescape('_backgroundColor'),
  1671. smalltalk.method({
  1672. selector: unescape('backgroundColor'),
  1673. category: 'accessing',
  1674. fn: function (){
  1675. var self=this;
  1676. return unescape("%2318bd7d");
  1677. return self;},
  1678. args: [],
  1679. source: unescape('backgroundColor%0A%09%5E%27%2318bd7d%27'),
  1680. messageSends: [],
  1681. referencedClasses: []
  1682. }),
  1683. smalltalk.WorkspaceSlide);
  1684. smalltalk.addMethod(
  1685. unescape('_renderSlideOn_'),
  1686. smalltalk.method({
  1687. selector: unescape('renderSlideOn%3A'),
  1688. category: 'accessing',
  1689. fn: function (html){
  1690. var self=this;
  1691. var workspace=nil;
  1692. (workspace=smalltalk.send((smalltalk.SourceArea || SourceArea), "_new", []));
  1693. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [unescape("Give%20Jtalk%20a%20try%21")]);smalltalk.send(workspace, "_renderOn_", [html]);return smalltalk.send(smalltalk.send(html, "_div", []), "_with_", [(function(){(function($rec){smalltalk.send($rec, "_with_", ["DoIt"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(workspace, "_doIt", []);})]);})(smalltalk.send(html, "_button", []));(function($rec){smalltalk.send($rec, "_with_", ["PrintIt"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(workspace, "_printIt", []);})]);})(smalltalk.send(html, "_button", []));return (function($rec){smalltalk.send($rec, "_with_", ["InspectIt"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(workspace, "_inspectIt", []);})]);})(smalltalk.send(html, "_button", []));})]);})]);})(smalltalk.send(html, "_div", []));
  1694. return self;},
  1695. args: ["html"],
  1696. source: unescape('renderSlideOn%3A%20html%0A%09%7C%20workspace%20%7C%0A%09workspace%20%3A%3D%20SourceArea%20new.%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%27Give%20Jtalk%20a%20try%21%27.%0A%09%09workspace%20renderOn%3A%20html.%0A%09%09html%20div%20with%3A%20%5B%0A%09%09%09html%20button%0A%09%09%09%09with%3A%20%27DoIt%27%3B%0A%09%09%09%09onClick%3A%20%5Bworkspace%20doIt%5D.%0A%09%09%09html%20button%0A%09%09%09%09with%3A%20%27PrintIt%27%3B%0A%09%09%09%09onClick%3A%20%5Bworkspace%20printIt%5D.%0A%09%09%09html%20button%0A%09%09%09%09with%3A%20%27InspectIt%27%3B%0A%09%09%09%09onClick%3A%20%5Bworkspace%20inspectIt%5D%5D%5D'),
  1697. messageSends: ["new", "class:", "with:", "h1", "renderOn:", "div", "onClick:", "doIt", "button", "printIt", "inspectIt"],
  1698. referencedClasses: ["SourceArea"]
  1699. }),
  1700. smalltalk.WorkspaceSlide);
  1701. smalltalk.addClass('CountersSlide', smalltalk.Slide, [], 'Presentation');
  1702. smalltalk.addMethod(
  1703. unescape('_id'),
  1704. smalltalk.method({
  1705. selector: unescape('id'),
  1706. category: 'accessing',
  1707. fn: function (){
  1708. var self=this;
  1709. return "counters";
  1710. return self;},
  1711. args: [],
  1712. source: unescape('id%0A%09%5E%27counters%27'),
  1713. messageSends: [],
  1714. referencedClasses: []
  1715. }),
  1716. smalltalk.CountersSlide);
  1717. smalltalk.addMethod(
  1718. unescape('_backgroundColor'),
  1719. smalltalk.method({
  1720. selector: unescape('backgroundColor'),
  1721. category: 'accessing',
  1722. fn: function (){
  1723. var self=this;
  1724. return unescape("%2318bd7d");
  1725. return self;},
  1726. args: [],
  1727. source: unescape('backgroundColor%0A%09%5E%27%2318bd7d%27'),
  1728. messageSends: [],
  1729. referencedClasses: []
  1730. }),
  1731. smalltalk.CountersSlide);
  1732. smalltalk.addMethod(
  1733. unescape('_renderSlideOn_'),
  1734. smalltalk.method({
  1735. selector: unescape('renderSlideOn%3A'),
  1736. category: 'rendering',
  1737. fn: function (html){
  1738. var self=this;
  1739. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", ["The counter example"]);return smalltalk.send(smalltalk.send(html, "_div", []), "_with_", [(function(){return smalltalk.send((2), "_timesRepeat_", [(function(){return smalltalk.send(smalltalk.send((smalltalk.Counter || Counter), "_new", []), "_renderOn_", [html]);})]);})]);})]);})(smalltalk.send(html, "_div", []));
  1740. return self;},
  1741. args: ["html"],
  1742. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%27The%20counter%20example%27.%0A%09%09html%20div%20with%3A%20%5B%0A%09%09%092%20timesRepeat%3A%20%5BCounter%20new%20renderOn%3A%20html%5D%5D%5D'),
  1743. messageSends: ["class:", "with:", "h1", "div", "timesRepeat:", "renderOn:", "new"],
  1744. referencedClasses: ["Counter"]
  1745. }),
  1746. smalltalk.CountersSlide);
  1747. smalltalk.addClass('JtalkAndJavascriptSlide4', smalltalk.Slide, [], 'Presentation');
  1748. smalltalk.addMethod(
  1749. unescape('_id'),
  1750. smalltalk.method({
  1751. selector: unescape('id'),
  1752. category: 'accessing',
  1753. fn: function (){
  1754. var self=this;
  1755. return "jtalkAndJs4";
  1756. return self;},
  1757. args: [],
  1758. source: unescape('id%0A%09%5E%27jtalkAndJs4%27'),
  1759. messageSends: [],
  1760. referencedClasses: []
  1761. }),
  1762. smalltalk.JtalkAndJavascriptSlide4);
  1763. smalltalk.addMethod(
  1764. unescape('_backgroundColor'),
  1765. smalltalk.method({
  1766. selector: unescape('backgroundColor'),
  1767. category: 'accessing',
  1768. fn: function (){
  1769. var self=this;
  1770. return unescape("%2308C");
  1771. return self;},
  1772. args: [],
  1773. source: unescape('backgroundColor%0A%09%5E%27%2308C%27'),
  1774. messageSends: [],
  1775. referencedClasses: []
  1776. }),
  1777. smalltalk.JtalkAndJavascriptSlide4);
  1778. smalltalk.addMethod(
  1779. unescape('_renderSlideOn_'),
  1780. smalltalk.method({
  1781. selector: unescape('renderSlideOn%3A'),
  1782. category: 'rendering',
  1783. fn: function (html){
  1784. var self=this;
  1785. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["JavaScript "]);(function($rec){smalltalk.send($rec, "_class_", ["red"]);return smalltalk.send($rec, "_with_", [unescape("%u2665")]);})(smalltalk.send(html, "_span", []));return (function($rec){smalltalk.send($rec, "_with_", [unescape("%20Smalltalk%20too%21%20")]);return smalltalk.send($rec, "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_class_", ["comment"]);return smalltalk.send($rec, "_with_", [unescape("%28how%20cute%29")]);})(smalltalk.send(html, "_span", []));})]);})(html);})]);
  1786. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("JavaScript%20%u21D2%20Smalltalk")]);
  1787. smalltalk.send(smalltalk.send(html, "_ol", []), "_with_", [(function(){(function($rec){smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", ["someUser.name"]);})]);smalltalk.send($rec, "_with_", [" becomes "]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", ["someUser name"]);})]);})(smalltalk.send(html, "_li", []));(function($rec){smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("someUser%20name%20%3D%20%22John%22")]);})]);smalltalk.send($rec, "_with_", [" becomes "]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("someUser%20name%3A%20%27John%27")]);})]);})(smalltalk.send(html, "_li", []));(function($rec){smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("console.log%28%27hello%20world%27%29")]);})]);smalltalk.send($rec, "_with_", [" becomes "]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("console%20log%3A%20%27hello%20world%27")]);})]);})(smalltalk.send(html, "_li", []));return (function($rec){smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("window.jQuery%28%27foo%27%29.css%28%27background%27%2C%20%27red%27%29")]);})]);smalltalk.send($rec, "_with_", [" becomes "]);smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(html, "_br", []);})]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(smalltalk.send(html, "_code", []), "_with_", [unescape("%28window%20jQuery%3A%20%27foo%27%29%20css%3A%20%27background%27%20color%3A%20%27red%27")]);})]);})(smalltalk.send(html, "_li", []));})]);
  1788. return self;},
  1789. args: ["html"],
  1790. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27JavaScript%20%27.%0A%09%09html%20span%20class%3A%20%27red%27%3B%20with%3A%20%27%u2665%27.%0A%09%09html%20with%3A%20%27%20Smalltalk%20too%21%20%27%3B%0A%09%09with%3A%20%5Bhtml%20span%20class%3A%20%27comment%27%3B%20with%3A%20%27%28how%20cute%29%27%5D%5D.%0A%09html%20h2%20with%3A%20%27JavaScript%20%u21D2%20Smalltalk%27.%0A%09html%20ol%20with%3A%20%5B%0A%09%09html%20li%20%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27someUser.name%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27someUser%20name%27%5D.%0A%09%09html%20li%20%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27someUser%20name%20%3D%20%22John%22%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27someUser%20name%3A%20%27%27John%27%27%27%5D.%0A%09%09html%20li%20%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27console.log%28%27%27hello%20world%27%27%29%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27console%20log%3A%20%27%27hello%20world%27%27%27%5D.%0A%09%09html%20li%20%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27window.jQuery%28%27%27foo%27%27%29.css%28%27%27background%27%27%2C%20%27%27red%27%27%29%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20br%5D%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27%28window%20jQuery%3A%20%27%27foo%27%27%29%20css%3A%20%27%27background%27%27%20color%3A%20%27%27red%27%27%27%5D%5D'),
  1791. messageSends: ["with:", "h1", "class:", "span", "h2", "ol", "code", "li", "br"],
  1792. referencedClasses: []
  1793. }),
  1794. smalltalk.JtalkAndJavascriptSlide4);
  1795. smalltalk.addClass('IDESlide', smalltalk.Slide, [], 'Presentation');
  1796. smalltalk.addMethod(
  1797. unescape('_id'),
  1798. smalltalk.method({
  1799. selector: unescape('id'),
  1800. category: 'accessing',
  1801. fn: function (){
  1802. var self=this;
  1803. return "ide";
  1804. return self;},
  1805. args: [],
  1806. source: unescape('id%0A%09%5E%27ide%27'),
  1807. messageSends: [],
  1808. referencedClasses: []
  1809. }),
  1810. smalltalk.IDESlide);
  1811. smalltalk.addMethod(
  1812. unescape('_backgroundColor'),
  1813. smalltalk.method({
  1814. selector: unescape('backgroundColor'),
  1815. category: 'accessing',
  1816. fn: function (){
  1817. var self=this;
  1818. return "black";
  1819. return self;},
  1820. args: [],
  1821. source: unescape('backgroundColor%0A%09%5E%27black%27'),
  1822. messageSends: [],
  1823. referencedClasses: []
  1824. }),
  1825. smalltalk.IDESlide);
  1826. smalltalk.addMethod(
  1827. unescape('_cssClass'),
  1828. smalltalk.method({
  1829. selector: unescape('cssClass'),
  1830. category: 'accessing',
  1831. fn: function (){
  1832. var self=this;
  1833. return "slide transparent";
  1834. return self;},
  1835. args: [],
  1836. source: unescape('cssClass%0A%09%5E%27slide%20transparent%27'),
  1837. messageSends: [],
  1838. referencedClasses: []
  1839. }),
  1840. smalltalk.IDESlide);
  1841. smalltalk.addMethod(
  1842. unescape('_renderSlideOn_'),
  1843. smalltalk.method({
  1844. selector: unescape('renderSlideOn%3A'),
  1845. category: 'rendering',
  1846. fn: function (html){
  1847. var self=this;
  1848. return self;},
  1849. args: ["html"],
  1850. source: unescape('renderSlideOn%3A%20html%0A%22%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20%0A%09%09%09with%3A%20%27The%20wonderful%20Jtalk%20%27%3B%0A%09%09%09with%3A%20%5B%0A%09%09%09%09html%20a%20%0A%09%09%09%09%09with%3A%20%27development%20tools%27%3B%0A%09%09%09%09%09onClick%3A%20%5BTabManager%20current%20open%5D%5D%3B%0A%09%09%09with%3A%20%27.%27%5D%0A%22'),
  1851. messageSends: [],
  1852. referencedClasses: []
  1853. }),
  1854. smalltalk.IDESlide);
  1855. smalltalk.addClass('ContributionsSlide', smalltalk.Slide, [], 'Presentation');
  1856. smalltalk.addMethod(
  1857. unescape('_id'),
  1858. smalltalk.method({
  1859. selector: unescape('id'),
  1860. category: 'accessing',
  1861. fn: function (){
  1862. var self=this;
  1863. return "links";
  1864. return self;},
  1865. args: [],
  1866. source: unescape('id%0A%09%5E%27links%27'),
  1867. messageSends: [],
  1868. referencedClasses: []
  1869. }),
  1870. smalltalk.ContributionsSlide);
  1871. smalltalk.addMethod(
  1872. unescape('_renderSlideOn_'),
  1873. smalltalk.method({
  1874. selector: unescape('renderSlideOn%3A'),
  1875. category: 'rendering',
  1876. fn: function (html){
  1877. var self=this;
  1878. (function($rec){smalltalk.send($rec, "_class_", ["section"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_href_", [unescape("http%3A//jtalk-project.org")]);return smalltalk.send($rec, "_with_", [unescape("jtalk-project.org")]);})(smalltalk.send(html, "_a", []));})]);smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_href_", [unescape("https%3A//github.com/NicolasPetton/jtalk")]);return smalltalk.send($rec, "_with_", [unescape("github.com/NicolasPetton/jtalk")]);})(smalltalk.send(html, "_a", []));})]);return smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_href_", [unescape("http%3A//http%3A//groups.google.com/group/jtalk-project")]);return smalltalk.send($rec, "_with_", [unescape("groups.google.com/group/jtalk-project")]);})(smalltalk.send(html, "_a", []));})]);})]);})(smalltalk.send(html, "_div", []));
  1879. return self;},
  1880. args: ["html"],
  1881. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%27%3B%20with%3A%20%5B%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%20href%3A%20%27http%3A//jtalk-project.org%27%3B%20with%3A%20%27jtalk-project.org%27%5D.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%20href%3A%20%27https%3A//github.com/NicolasPetton/jtalk%27%3B%20with%3A%20%27github.com/NicolasPetton/jtalk%27%5D.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%20href%3A%20%27http%3A//http%3A//groups.google.com/group/jtalk-project%27%3B%20with%3A%20%27groups.google.com/group/jtalk-project%27%5D%5D'),
  1882. messageSends: ["class:", "with:", "p", "href:", "a", "div"],
  1883. referencedClasses: []
  1884. }),
  1885. smalltalk.ContributionsSlide);
  1886. smalltalk.addClass('JtalkAndCLI', smalltalk.Slide, [], 'Presentation');
  1887. smalltalk.addMethod(
  1888. unescape('_backgroundColor'),
  1889. smalltalk.method({
  1890. selector: unescape('backgroundColor'),
  1891. category: 'not yet classified',
  1892. fn: function (){
  1893. var self=this;
  1894. return unescape("%230A1");
  1895. return self;},
  1896. args: [],
  1897. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  1898. messageSends: [],
  1899. referencedClasses: []
  1900. }),
  1901. smalltalk.JtalkAndCLI);
  1902. smalltalk.addMethod(
  1903. unescape('_id'),
  1904. smalltalk.method({
  1905. selector: unescape('id'),
  1906. category: 'not yet classified',
  1907. fn: function (){
  1908. var self=this;
  1909. return "JtalkAndCLI";
  1910. return self;},
  1911. args: [],
  1912. source: unescape('id%0A%09%5E%27JtalkAndCLI%27'),
  1913. messageSends: [],
  1914. referencedClasses: []
  1915. }),
  1916. smalltalk.JtalkAndCLI);
  1917. smalltalk.addMethod(
  1918. unescape('_renderSlideOn_'),
  1919. smalltalk.method({
  1920. selector: unescape('renderSlideOn%3A'),
  1921. category: 'not yet classified',
  1922. fn: function (html){
  1923. var self=this;
  1924. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["Jtalk and "]);return (function($rec){smalltalk.send($rec, "_class_", ["blue"]);return smalltalk.send($rec, "_with_", ["the command line"]);})(smalltalk.send(html, "_span", []));})]);
  1925. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("jtalkc%20-%20a%20fairly%20elaborate%20bash%20script%20that%3A")]);
  1926. smalltalk.send(smalltalk.send(html, "_ul", []), "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_li", []), "_with_", ["Uses Node.js to run the Jtalk Compiler"]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", ["Compiles .st files to .js"]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", ["Links .js files into a single one"]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("Adds%20class%20initilization%20and/or%20call%20to%20main")]);return smalltalk.send(smalltalk.send(html, "_li", []), "_with_", ["Optionally runs Google Closure compiler"]);})]);
  1927. return self;},
  1928. args: ["html"],
  1929. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27the%20command%20line%27%5D.%0A%0A%09html%20h2%20with%3A%20%27jtalkc%20-%20a%20fairly%20elaborate%20bash%20script%20that%3A%27.%0A%0A%09html%20ul%20with%3A%20%5B%0A%09%09html%20li%20with%3A%20%27Uses%20Node.js%20to%20run%20the%20Jtalk%20Compiler%27.%0A%09%09html%20li%20with%3A%20%27Compiles%20.st%20files%20to%20.js%27.%0A%09%09html%20li%20with%3A%20%27Links%20.js%20files%20into%20a%20single%20one%27.%0A%09%09html%20li%20with%3A%20%27Adds%20class%20initilization%20and/or%20call%20to%20main%27.%0A%09%09html%20li%20with%3A%20%27Optionally%20runs%20Google%20Closure%20compiler%27%5D'),
  1930. messageSends: ["with:", "h1", "class:", "span", "h2", "ul", "li"],
  1931. referencedClasses: []
  1932. }),
  1933. smalltalk.JtalkAndCLI);
  1934. smalltalk.addClass('JtalkAndNode', smalltalk.Slide, [], 'Presentation');
  1935. smalltalk.addMethod(
  1936. unescape('_backgroundColor'),
  1937. smalltalk.method({
  1938. selector: unescape('backgroundColor'),
  1939. category: 'not yet classified',
  1940. fn: function (){
  1941. var self=this;
  1942. return unescape("%230A1");
  1943. return self;},
  1944. args: [],
  1945. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  1946. messageSends: [],
  1947. referencedClasses: []
  1948. }),
  1949. smalltalk.JtalkAndNode);
  1950. smalltalk.addMethod(
  1951. unescape('_id'),
  1952. smalltalk.method({
  1953. selector: unescape('id'),
  1954. category: 'not yet classified',
  1955. fn: function (){
  1956. var self=this;
  1957. return "JtalkAndNode";
  1958. return self;},
  1959. args: [],
  1960. source: unescape('id%0A%09%5E%27JtalkAndNode%27'),
  1961. messageSends: [],
  1962. referencedClasses: []
  1963. }),
  1964. smalltalk.JtalkAndNode);
  1965. smalltalk.addMethod(
  1966. unescape('_renderSlideOn_'),
  1967. smalltalk.method({
  1968. selector: unescape('renderSlideOn%3A'),
  1969. category: 'not yet classified',
  1970. fn: function (html){
  1971. var self=this;
  1972. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["Jtalk and "]);return (function($rec){smalltalk.send($rec, "_class_", ["blue"]);return smalltalk.send($rec, "_with_", ["Node.js"]);})(smalltalk.send(html, "_span", []));})]);
  1973. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Hello.st:"]);
  1974. smalltalk.send(smalltalk.send(html, "_pre", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_class_", ["code2"]);return smalltalk.send($rec, "_with_", [unescape("Object%20subclass%3A%20%23Hello%0A%20%20%20%20%20%20%20%20instanceVariableNames%3A%20%27%27%0A%20%20%20%20%20%20%20%20category%3A%20%27Hello%27%21%0A%0A%21Hello%20class%20methodsFor%3A%20%27main%27%21%0Amain%0A%09console%20log%3A%20%27Hello%20world%20from%20JTalk%20in%20Node.js%27%0A%21%20%21")]);})(smalltalk.send(html, "_div", []));})]);
  1975. return self;},
  1976. args: ["html"],
  1977. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27Node.js%27%5D.%0A%0A%09html%20h2%20with%3A%20%27Hello.st%3A%27.%0A%09html%20pre%20with%3A%20%5B%0A%09%09html%20div%20class%3A%20%27code2%27%3B%20with%3A%20%20%27Object%20subclass%3A%20%23Hello%0A%20%20%20%20%20%20%20%20instanceVariableNames%3A%20%27%27%27%27%0A%20%20%20%20%20%20%20%20category%3A%20%27%27Hello%27%27%21%0A%0A%21Hello%20class%20methodsFor%3A%20%27%27main%27%27%21%0Amain%0A%09console%20log%3A%20%27%27Hello%20world%20from%20JTalk%20in%20Node.js%27%27%0A%21%20%21%27%5D'),
  1978. messageSends: ["with:", "h1", "class:", "span", "h2", "pre", "div"],
  1979. referencedClasses: []
  1980. }),
  1981. smalltalk.JtalkAndNode);
  1982. smalltalk.addClass('JtalkAndNode2', smalltalk.Slide, [], 'Presentation');
  1983. smalltalk.addMethod(
  1984. unescape('_backgroundColor'),
  1985. smalltalk.method({
  1986. selector: unescape('backgroundColor'),
  1987. category: 'not yet classified',
  1988. fn: function (){
  1989. var self=this;
  1990. return unescape("%230A1");
  1991. return self;},
  1992. args: [],
  1993. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  1994. messageSends: [],
  1995. referencedClasses: []
  1996. }),
  1997. smalltalk.JtalkAndNode2);
  1998. smalltalk.addMethod(
  1999. unescape('_id'),
  2000. smalltalk.method({
  2001. selector: unescape('id'),
  2002. category: 'not yet classified',
  2003. fn: function (){
  2004. var self=this;
  2005. return "JtalkAndNode2";
  2006. return self;},
  2007. args: [],
  2008. source: unescape('id%0A%09%5E%27JtalkAndNode2%27'),
  2009. messageSends: [],
  2010. referencedClasses: []
  2011. }),
  2012. smalltalk.JtalkAndNode2);
  2013. smalltalk.addMethod(
  2014. unescape('_renderSlideOn_'),
  2015. smalltalk.method({
  2016. selector: unescape('renderSlideOn%3A'),
  2017. category: 'not yet classified',
  2018. fn: function (html){
  2019. var self=this;
  2020. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["Jtalk and "]);return (function($rec){smalltalk.send($rec, "_class_", ["blue"]);return smalltalk.send($rec, "_with_", ["Node.js"]);})(smalltalk.send(html, "_span", []));})]);
  2021. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Makefile:"]);
  2022. smalltalk.send(smalltalk.send(html, "_pre", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_class_", ["code2"]);return smalltalk.send($rec, "_with_", [unescape("Program.js%3A%20Hello.st%0A%09../../bin/jtalkc%20-N%20-m%20Hello%20Hello.st%20Program%0A%0Arun%3A%20Program.js%0A%09./hello%0A%0Aclean%3A%0A%09rm%20-f%20Program.js%20Hello.js%0A")]);})(smalltalk.send(html, "_div", []));})]);
  2023. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["hello:"]);
  2024. smalltalk.send(smalltalk.send(html, "_pre", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_class_", ["code2"]);return smalltalk.send($rec, "_with_", [unescape("node%20Program.js%20%24@")]);})(smalltalk.send(html, "_div", []));})]);
  2025. return self;},
  2026. args: ["html"],
  2027. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27Node.js%27%5D.%0A%0A%09html%20h2%20with%3A%20%27Makefile%3A%27.%0A%09html%20pre%20with%3A%20%5B%0A%09%09html%20div%20class%3A%20%27code2%27%3B%20with%3A%20%20%27Program.js%3A%20Hello.st%0A%09../../bin/jtalkc%20-N%20-m%20Hello%20Hello.st%20Program%0A%0Arun%3A%20Program.js%0A%09./hello%0A%0Aclean%3A%0A%09rm%20-f%20Program.js%20Hello.js%0A%27%5D.%0Ahtml%20h2%20with%3A%20%27hello%3A%27.%0A%09html%20pre%20with%3A%20%5B%0A%09%09html%20div%20class%3A%20%27code2%27%3B%20with%3A%20%20%27node%20Program.js%20%24@%27%5D'),
  2028. messageSends: ["with:", "h1", "class:", "span", "h2", "pre", "div"],
  2029. referencedClasses: []
  2030. }),
  2031. smalltalk.JtalkAndNode2);
  2032. smalltalk.addClass('JtalkAndNode3', smalltalk.Slide, [], 'Presentation');
  2033. smalltalk.addMethod(
  2034. unescape('_backgroundColor'),
  2035. smalltalk.method({
  2036. selector: unescape('backgroundColor'),
  2037. category: 'not yet classified',
  2038. fn: function (){
  2039. var self=this;
  2040. return unescape("%230A1");
  2041. return self;},
  2042. args: [],
  2043. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  2044. messageSends: [],
  2045. referencedClasses: []
  2046. }),
  2047. smalltalk.JtalkAndNode3);
  2048. smalltalk.addMethod(
  2049. unescape('_id'),
  2050. smalltalk.method({
  2051. selector: unescape('id'),
  2052. category: 'not yet classified',
  2053. fn: function (){
  2054. var self=this;
  2055. return "JtalkAndNode3";
  2056. return self;},
  2057. args: [],
  2058. source: unescape('id%0A%09%5E%27JtalkAndNode3%27'),
  2059. messageSends: [],
  2060. referencedClasses: []
  2061. }),
  2062. smalltalk.JtalkAndNode3);
  2063. smalltalk.addMethod(
  2064. unescape('_renderSlideOn_'),
  2065. smalltalk.method({
  2066. selector: unescape('renderSlideOn%3A'),
  2067. category: 'not yet classified',
  2068. fn: function (html){
  2069. var self=this;
  2070. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["Jtalk and "]);return (function($rec){smalltalk.send($rec, "_class_", ["blue"]);return smalltalk.send($rec, "_with_", ["Node.js"]);})(smalltalk.send(html, "_span", []));})]);
  2071. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("make%20clean%20%26%26%20make%20run%3A")]);
  2072. smalltalk.send(smalltalk.send(html, "_pre", []), "_with_", [(function(){(function($rec){smalltalk.send($rec, "_class_", ["code2"]);return smalltalk.send($rec, "_with_", [unescape("rm%20-f%20Program.js%20Hello.js%0A../../bin/jtalkc%20-N%20-m%20Hello%20Hello.st%20Program%0ALoading%20libraries%20%20/home/gokr/jtalk/js/boot.js%20/home/gokr/jtalk/js/Kernel.js%0A/home/gokr/jtalk/js/Parser.js%20/home/gokr/jtalk/js/Compiler.js%0A/home/gokr/jtalk/js/init.js%20/home/gokr/jtalk/nodejs/nodecompile.js%0Aand%20compiling%20...%0ACompiling%20in%20debugMode%3A%20false%0AReading%20file%20Hello.st%0AExporting%20category%20Hello%20as%20Hello.js%0AAdding%20libraries%20%20/home/gokr/jtalk/js/boot.js%20/home/gokr/jtalk/js/Kernel.js%20%20...%0AAdding%20Jtalk%20code%20Hello.js%20...%0AAdding%20initializer%20/home/gokr/jtalk/js/init.js%20...%0AAdding%20call%20to%20Hello%20class%20%3E%3E%20main%20...%0AWriting%20Program.js%20...%0ADone.%0A./hello")]);})(smalltalk.send(html, "_div", []));return (function($rec){smalltalk.send($rec, "_class_", ["blue"]);return smalltalk.send($rec, "_with_", ["Hello world from JTalk in Node.js"]);})(smalltalk.send(html, "_span", []));})]);
  2073. return self;},
  2074. args: ["html"],
  2075. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27Node.js%27%5D.%0A%0A%09html%20h2%20with%3A%20%27make%20clean%20%26%26%20make%20run%3A%27.%0A%0A%09html%20pre%20with%3A%20%5B%0A%09%09html%20div%20class%3A%20%27code2%27%3B%20with%3A%20%20%27rm%20-f%20Program.js%20Hello.js%0A../../bin/jtalkc%20-N%20-m%20Hello%20Hello.st%20Program%0ALoading%20libraries%20%20/home/gokr/jtalk/js/boot.js%20/home/gokr/jtalk/js/Kernel.js%0A/home/gokr/jtalk/js/Parser.js%20/home/gokr/jtalk/js/Compiler.js%0A/home/gokr/jtalk/js/init.js%20/home/gokr/jtalk/nodejs/nodecompile.js%0Aand%20compiling%20...%0ACompiling%20in%20debugMode%3A%20false%0AReading%20file%20Hello.st%0AExporting%20category%20Hello%20as%20Hello.js%0AAdding%20libraries%20%20/home/gokr/jtalk/js/boot.js%20/home/gokr/jtalk/js/Kernel.js%20%20...%0AAdding%20Jtalk%20code%20Hello.js%20...%0AAdding%20initializer%20/home/gokr/jtalk/js/init.js%20...%0AAdding%20call%20to%20Hello%20class%20%3E%3E%20main%20...%0AWriting%20Program.js%20...%0ADone.%0A./hello%27.%0Ahtml%20span%20class%3A%20%27blue%27%3B%20with%3A%27Hello%20world%20from%20JTalk%20in%20Node.js%27%5D'),
  2076. messageSends: ["with:", "h1", "class:", "span", "h2", "pre", "div"],
  2077. referencedClasses: []
  2078. }),
  2079. smalltalk.JtalkAndNode3);
  2080. smalltalk.addClass('JtalkAndWebOS', smalltalk.Slide, [], 'Presentation');
  2081. smalltalk.addMethod(
  2082. unescape('_backgroundColor'),
  2083. smalltalk.method({
  2084. selector: unescape('backgroundColor'),
  2085. category: 'not yet classified',
  2086. fn: function (){
  2087. var self=this;
  2088. return unescape("%230A1");
  2089. return self;},
  2090. args: [],
  2091. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  2092. messageSends: [],
  2093. referencedClasses: []
  2094. }),
  2095. smalltalk.JtalkAndWebOS);
  2096. smalltalk.addMethod(
  2097. unescape('_id'),
  2098. smalltalk.method({
  2099. selector: unescape('id'),
  2100. category: 'not yet classified',
  2101. fn: function (){
  2102. var self=this;
  2103. return "JtalkAndWebOS";
  2104. return self;},
  2105. args: [],
  2106. source: unescape('id%0A%09%5E%27JtalkAndWebOS%27'),
  2107. messageSends: [],
  2108. referencedClasses: []
  2109. }),
  2110. smalltalk.JtalkAndWebOS);
  2111. smalltalk.addMethod(
  2112. unescape('_renderSlideOn_'),
  2113. smalltalk.method({
  2114. selector: unescape('renderSlideOn%3A'),
  2115. category: 'not yet classified',
  2116. fn: function (html){
  2117. var self=this;
  2118. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["Jtalk and "]);return (function($rec){smalltalk.send($rec, "_class_", ["blue"]);return smalltalk.send($rec, "_with_", ["webOS"]);})(smalltalk.send(html, "_span", []));})]);
  2119. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["A really cool mobile OS based on Linux:"]);
  2120. smalltalk.send(smalltalk.send(html, "_ul", []), "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_li", []), "_with_", ["The primary language in webOS is Javascript"]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", ["The new UI framework for webOS 3.0 is called Enyo"]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("Regular%20apps%20run%20in%20V8%20+%20Webkit")]);return smalltalk.send(smalltalk.send(html, "_li", []), "_with_", ["Background services run in Node.js"]);})]);
  2121. return self;},
  2122. args: ["html"],
  2123. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27webOS%27%5D.%0A%0A%09html%20h2%20with%3A%20%27A%20really%20cool%20mobile%20OS%20based%20on%20Linux%3A%27.%0A%0A%09html%20ul%20with%3A%20%5B%0A%09%09html%20li%20with%3A%20%27The%20primary%20language%20in%20webOS%20is%20Javascript%27.%0A%09%09html%20li%20with%3A%20%27The%20new%20UI%20framework%20for%20webOS%203.0%20is%20called%20Enyo%27.%0A%09%09html%20li%20with%3A%20%27Regular%20apps%20run%20in%20V8%20+%20Webkit%27.%0A%09%09html%20li%20with%3A%20%27Background%20services%20run%20in%20Node.js%27%5D'),
  2124. messageSends: ["with:", "h1", "class:", "span", "h2", "ul", "li"],
  2125. referencedClasses: []
  2126. }),
  2127. smalltalk.JtalkAndWebOS);
  2128. smalltalk.addClass('JtalkAndEnyo', smalltalk.Slide, [], 'Presentation');
  2129. smalltalk.addMethod(
  2130. unescape('_id'),
  2131. smalltalk.method({
  2132. selector: unescape('id'),
  2133. category: 'not yet classified',
  2134. fn: function (){
  2135. var self=this;
  2136. return "JtalkAndEnyo";
  2137. return self;},
  2138. args: [],
  2139. source: unescape('id%0A%09%5E%27JtalkAndEnyo%27'),
  2140. messageSends: [],
  2141. referencedClasses: []
  2142. }),
  2143. smalltalk.JtalkAndEnyo);
  2144. smalltalk.addMethod(
  2145. unescape('_backgroundColor'),
  2146. smalltalk.method({
  2147. selector: unescape('backgroundColor'),
  2148. category: 'not yet classified',
  2149. fn: function (){
  2150. var self=this;
  2151. return unescape("%230A1");
  2152. return self;},
  2153. args: [],
  2154. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  2155. messageSends: [],
  2156. referencedClasses: []
  2157. }),
  2158. smalltalk.JtalkAndEnyo);
  2159. smalltalk.addMethod(
  2160. unescape('_renderSlideOn_'),
  2161. smalltalk.method({
  2162. selector: unescape('renderSlideOn%3A'),
  2163. category: 'not yet classified',
  2164. fn: function (html){
  2165. var self=this;
  2166. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [(function(){smalltalk.send(html, "_with_", ["Jtalk and "]);return (function($rec){smalltalk.send($rec, "_class_", ["blue"]);return smalltalk.send($rec, "_with_", ["Enyo"]);})(smalltalk.send(html, "_span", []));})]);
  2167. return self;},
  2168. args: ["html"],
  2169. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27Enyo%27%5D.'),
  2170. messageSends: ["with:", "h1", "class:", "span"],
  2171. referencedClasses: []
  2172. }),
  2173. smalltalk.JtalkAndEnyo);
  2174. smalltalk.addClass('FOSDEM2012Presentation', smalltalk.Presentation, [], 'Presentation');
  2175. smalltalk.addMethod(
  2176. unescape('_description'),
  2177. smalltalk.method({
  2178. selector: unescape('description'),
  2179. category: 'accessing',
  2180. fn: function (){
  2181. var self=this;
  2182. return unescape("FOSDEM%202012%2C%20Brussels");
  2183. return self;},
  2184. args: [],
  2185. source: unescape('description%0A%09%5E%27FOSDEM%202012%2C%20Brussels%27'),
  2186. messageSends: [],
  2187. referencedClasses: []
  2188. }),
  2189. smalltalk.FOSDEM2012Presentation);
  2190. smalltalk.addMethod(
  2191. unescape('_author'),
  2192. smalltalk.method({
  2193. selector: unescape('author'),
  2194. category: 'accessing',
  2195. fn: function (){
  2196. var self=this;
  2197. return unescape("Laurent%20Laffont%2C%20Johnny%20Thornton");
  2198. return self;},
  2199. args: [],
  2200. source: unescape('author%0A%09%5E%27Laurent%20Laffont%2C%20Johnny%20Thornton%27'),
  2201. messageSends: [],
  2202. referencedClasses: []
  2203. }),
  2204. smalltalk.FOSDEM2012Presentation);
  2205. smalltalk.addMethod(
  2206. unescape('_email'),
  2207. smalltalk.method({
  2208. selector: unescape('email'),
  2209. category: 'accessing',
  2210. fn: function (){
  2211. var self=this;
  2212. return unescape("laurent.laffont@gmail.com%2C%20%20johnnyt@xan.do");
  2213. return self;},
  2214. args: [],
  2215. source: unescape('email%0A%09%5E%27laurent.laffont@gmail.com%2C%20%20johnnyt@xan.do%27'),
  2216. messageSends: [],
  2217. referencedClasses: []
  2218. }),
  2219. smalltalk.FOSDEM2012Presentation);
  2220. smalltalk.addMethod(
  2221. unescape('_url'),
  2222. smalltalk.method({
  2223. selector: unescape('url'),
  2224. category: 'accessing',
  2225. fn: function (){
  2226. var self=this;
  2227. return unescape("http%3A//amber-lang.net");
  2228. return self;},
  2229. args: [],
  2230. source: unescape('url%0A%09%5E%27http%3A//amber-lang.net%27'),
  2231. messageSends: [],
  2232. referencedClasses: []
  2233. }),
  2234. smalltalk.FOSDEM2012Presentation);
  2235. smalltalk.addMethod(
  2236. unescape('_style'),
  2237. smalltalk.method({
  2238. selector: unescape('style'),
  2239. category: 'accessing',
  2240. fn: function (){
  2241. var self=this;
  2242. return unescape("%0Abody%20%7B%0A%20%20%20%20font-family%3A%20Helvetica%2CArial%2Csans%3B%0A%7D%0A%0A%23slides%20%7B%0A%20%20%20%20width%3A%20100%25%3B%0A%20%20%20%20height%3A%20100%25%3B%0A%20%20%20%20overflow%3A%20hidden%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20top%3A%200%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20left%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20background%3A%20%23fff%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%20%20%20%20font-size%3A%2020px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20height%3A%20500px%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20padding%3A%2060px%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20left%3A%2050%25%3B%0A%20%20%20%20top%3A%2050%25%3B%0A%20%20%20%20margin-left%3A%20-420px%3B%0A%20%20%20%20margin-top%3A%20-320px%3B%0A%20%20%20%20box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%2020px%20%23111%3B%0A%7D%0A%0A.slide.transparent%20%7B%0A%20%20%20%20background%3A%20transparent%3B%0A%20%20%20%20box-shadow%3A%200%200%200%20none%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20%7B%0A%20%20%20%20background%3A%20black%3B%0A%20%20%20%20background-image%3A%20-webkit-gradient%28%0A%09linear%2C%0A%09left%20bottom%2C%0A%09left%20top%2C%0A%09color-stop%280.38%2C%20rgb%2879%2C79%2C79%29%29%2C%0A%09color-stop%280.69%2C%20rgb%2833%2C33%2C33%29%29%2C%0A%09color-stop%280.86%2C%20rgb%284%2C4%2C4%29%29%0A%20%20%20%20%29%3B%0A%20%20%20%20background-image%3A%20-moz-linear-gradient%28%0A%09center%20bottom%2C%0A%09rgb%2879%2C79%2C79%29%2038%25%2C%0A%09rgb%2833%2C33%2C33%29%2069%25%2C%0A%09rgb%284%2C4%2C4%29%2086%25%0A%20%20%20%20%29%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20h1%2C%20.slide.black%20h2%2C%20.slide.black%20h3%2C%0A.slide.transparent%20h1%2C%20.slide.transparent%20h2%2C%20.slide.transparent%20h3%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%7D%0A%0A.slide.black%20a%2C%20.slide.transparent%20a%20%7B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%7D%0A%0A.slide.white%20%7B%0A%20%20%20%20color%3A%20%23333%20%21important%3B%0A%7D%0A%0A.slide.white%20h1%2C%20.slide.white%20h2%2C%20.slide.white%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A.slide.white%20a%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A%0A.slide%20h1%2C%20.slide%20h2%2C%20.slide%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%20%20%20%20/*%20text-align%3A%20center%3B%20*/%0A%7D%0A%0A.slide%20h1%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2036px%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20margin-bottom%3A%2050px%3B%0A%7D%0A%0A.slide%20button%20%7B%0A%20%20%20%20font-size%3A%2018px%3B%0A%7D%0A%0A.slide%20a%20%7B%0A%20%20%20%20color%3A%20%23555%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20cursor%3A%20pointer%3B%0A%7D%0A%0A.slide%20a%3Ahover%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20.right%20%7B%0A%20%20%20%20text-align%3A%20right%3B%0A%7D%0A%0A.slide%20.section.center%20%7B%0A%20%20%20%20text-align%3A%20center%3B%0A%20%20%20%20display%3A%20table-cell%3B%0A%20%20%20%20vertical-align%3A%20middle%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20height%3A%20500px%3B%0A%7D%0A%0A.slide%20code%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20border%3A%201px%20solid%20%23ddd%3B%0A%20%20%20%20background%3A%20%23eee%3B%0A%20%20%20%20border-radius%3A%204px%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A.slide%20.code2%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20line-height%3A%201.2em%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A%0A.slide%20.CodeMirror%20%7B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20height%3A%20300px%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.CodeMirror-scroll%20%7B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.fancy%20%7B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20-webkit-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20-moz-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.comment%20%7B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20font-weight%3A%20normal%3B%0A%7D%0A%0A.slide%20.red%20%7B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.blue%20%7B%0A%20%20%20%20color%3A%20blue%3B%0A%7D%0A%0A%23meta%20%7B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20font-size%3A%2012px%3B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20z-index%3A%202%3B%0A%20%20%20%20background%3A%20%23333%3B%0A%20%20%20%20text-align%3A%20right%3B%0A%20%20%20%20padding%3A%200%2010px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%20%20%20%20border-top-left-radius%3A%205px%3B%0A%7D%0A%0A%23meta%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A%0A%23meta%20p%20%7B%0A%20%20%20%20display%3A%20inline%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A%23meta%20a%20%7B%0A%20%20%20%20//background%3A%20%23ccc%3B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20%0A%7D%0A%0A.slide.blue3d%20%7B%0A%20%20background%3A%20%23feffff%3B%0A%20%20background%3A%20-moz-linear-gradient%28top%2C%20%23feffff%200%25%2C%20%23d2ebf9%20100%25%29%3B%0A%20%20background%3A%20-webkit-gradient%28linear%2C%20left%20top%2C%20left%20bottom%2C%20color-stop%280%25%2C%23feffff%29%2C%20color-stop%28100%25%2C%23d2ebf9%29%29%3B%0A%20%20background%3A%20-webkit-linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%20%20background%3A%20-o-linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%20%20background%3A%20-ms-linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%20%20filter%3A%20progid%3ADXImageTransform.Microsoft.gradient%28%20startColorstr%3D%22%23feffff%22%2C%20endColorstr%3D%22%23d2ebf9%22%2CGradientType%3D0%20%29%3B%0A%20%20background%3A%20linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%7D%0A%0A%0A.slide.red3d%20%7B%0A%20%20background%3A%20%23febbbb%3B%0A%20%20background%3A%20-moz-linear-gradient%28top%2C%20%23febbbb%200%25%2C%20%23fe9090%2071%25%2C%20%23ff5c5c%2095%25%29%3B%0A%20%20background%3A%20-webkit-gradient%28linear%2C%20left%20top%2C%20left%20bottom%2C%20color-stop%280%25%2C%23febbbb%29%2C%20color-stop%2871%25%2C%23fe9090%29%2C%20color-stop%2895%25%2C%23ff5c5c%29%29%3B%0A%20%20background%3A%20-webkit-linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%20%20background%3A%20-o-linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%20%20background%3A%20-ms-linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%20%20filter%3A%20progid%3ADXImageTransform.Microsoft.gradient%28%20startColorstr%3D%22%23febbbb%22%2C%20endColorstr%3D%22%23ff5c5c%22%2CGradientType%3D0%20%29%3B%0A%20%20background%3A%20linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%7D%0A%0A%0A.slide.green3d%20%7B%0A%20%20background%3A%20%23cdeb8e%3B%0A%20%20background%3A%20-moz-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%20%23a5c956%20100%25%29%3B%0A%20%20background%3A%20-webkit-gradient%28linear%2C%20left%20top%2C%20left%20bottom%2C%20color-stop%280%25%2C%23cdeb8e%29%2C%20color-stop%28100%25%2C%23a5c956%29%29%3B%0A%20%20background%3A%20-webkit-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%20%20background%3A%20-o-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%20%20background%3A%20-ms-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%20%20filter%3A%20progid%3ADXImageTransform.Microsoft.gradient%28%20startColorstr%3D%22%23cdeb8e%22%2C%20endColorstr%3D%22%23a5c956%22%2CGradientType%3D0%20%29%3B%0A%20%20background%3A%20linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%7D%0A%0A@-webkit-keyframes%20rotate-horizontal%20%7B%0A%090%25%20%7B%20-webkit-transform%3A%20perspective%281000px%29%20rotateY%28-10deg%29%3B%7D%0A%09100%25%20%7B%20-webkit-transform%3A%20perspective%281000px%29%20rotateY%2810deg%29%3B%7D%0A%7D%0A%0A.animate%20p%7B%0A-webkit-animation%3A%20rotate-horizontal%202s%20infinite%20alternate%20ease-in-out%3B%0A%7D%0A%0A%23FOSDEMAmberBackend%20img%20%7B%0A%09margin%3A%205px%3B%0A%09-webkit-animation%3A%20rotate-horizontal%202s%20infinite%20alternate%20ease-in-out%3B%0A%7D%0A%0A.slide%23ide%20%7B%0A%20%20%20%20background%3A%20black%20url%28%22esug2011/images/ide_star_wars.png%22%29%20center%20center%20no-repeat%3B%0A%7D%0A");
  2243. return self;},
  2244. args: [],
  2245. source: unescape('style%0A%09%5E%27%0Abody%20%7B%0A%20%20%20%20font-family%3A%20Helvetica%2CArial%2Csans%3B%0A%7D%0A%0A%23slides%20%7B%0A%20%20%20%20width%3A%20100%25%3B%0A%20%20%20%20height%3A%20100%25%3B%0A%20%20%20%20overflow%3A%20hidden%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20top%3A%200%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20left%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20background%3A%20%23fff%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%20%20%20%20font-size%3A%2020px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20height%3A%20500px%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20padding%3A%2060px%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20left%3A%2050%25%3B%0A%20%20%20%20top%3A%2050%25%3B%0A%20%20%20%20margin-left%3A%20-420px%3B%0A%20%20%20%20margin-top%3A%20-320px%3B%0A%20%20%20%20box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%2020px%20%23111%3B%0A%7D%0A%0A.slide.transparent%20%7B%0A%20%20%20%20background%3A%20transparent%3B%0A%20%20%20%20box-shadow%3A%200%200%200%20none%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20%7B%0A%20%20%20%20background%3A%20black%3B%0A%20%20%20%20background-image%3A%20-webkit-gradient%28%0A%09linear%2C%0A%09left%20bottom%2C%0A%09left%20top%2C%0A%09color-stop%280.38%2C%20rgb%2879%2C79%2C79%29%29%2C%0A%09color-stop%280.69%2C%20rgb%2833%2C33%2C33%29%29%2C%0A%09color-stop%280.86%2C%20rgb%284%2C4%2C4%29%29%0A%20%20%20%20%29%3B%0A%20%20%20%20background-image%3A%20-moz-linear-gradient%28%0A%09center%20bottom%2C%0A%09rgb%2879%2C79%2C79%29%2038%25%2C%0A%09rgb%2833%2C33%2C33%29%2069%25%2C%0A%09rgb%284%2C4%2C4%29%2086%25%0A%20%20%20%20%29%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20h1%2C%20.slide.black%20h2%2C%20.slide.black%20h3%2C%0A.slide.transparent%20h1%2C%20.slide.transparent%20h2%2C%20.slide.transparent%20h3%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%7D%0A%0A.slide.black%20a%2C%20.slide.transparent%20a%20%7B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%7D%0A%0A.slide.white%20%7B%0A%20%20%20%20color%3A%20%23333%20%21important%3B%0A%7D%0A%0A.slide.white%20h1%2C%20.slide.white%20h2%2C%20.slide.white%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A.slide.white%20a%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A%0A.slide%20h1%2C%20.slide%20h2%2C%20.slide%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%20%20%20%20/*%20text-align%3A%20center%3B%20*/%0A%7D%0A%0A.slide%20h1%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2036px%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20margin-bottom%3A%2050px%3B%0A%7D%0A%0A.slide%20button%20%7B%0A%20%20%20%20font-size%3A%2018px%3B%0A%7D%0A%0A.slide%20a%20%7B%0A%20%20%20%20color%3A%20%23555%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20cursor%3A%20pointer%3B%0A%7D%0A%0A.slide%20a%3Ahover%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20.right%20%7B%0A%20%20%20%20text-align%3A%20right%3B%0A%7D%0A%0A.slide%20.section.center%20%7B%0A%20%20%20%20text-align%3A%20center%3B%0A%20%20%20%20display%3A%20table-cell%3B%0A%20%20%20%20vertical-align%3A%20middle%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20height%3A%20500px%3B%0A%7D%0A%0A.slide%20code%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20border%3A%201px%20solid%20%23ddd%3B%0A%20%20%20%20background%3A%20%23eee%3B%0A%20%20%20%20border-radius%3A%204px%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A.slide%20.code2%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20line-height%3A%201.2em%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A%0A.slide%20.CodeMirror%20%7B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20height%3A%20300px%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.CodeMirror-scroll%20%7B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.fancy%20%7B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20-webkit-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20-moz-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.comment%20%7B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20font-weight%3A%20normal%3B%0A%7D%0A%0A.slide%20.red%20%7B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.blue%20%7B%0A%20%20%20%20color%3A%20blue%3B%0A%7D%0A%0A%23meta%20%7B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20font-size%3A%2012px%3B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20z-index%3A%202%3B%0A%20%20%20%20background%3A%20%23333%3B%0A%20%20%20%20text-align%3A%20right%3B%0A%20%20%20%20padding%3A%200%2010px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%20%20%20%20border-top-left-radius%3A%205px%3B%0A%7D%0A%0A%23meta%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A%0A%23meta%20p%20%7B%0A%20%20%20%20display%3A%20inline%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A%23meta%20a%20%7B%0A%20%20%20%20//background%3A%20%23ccc%3B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20%0A%7D%0A%0A.slide.blue3d%20%7B%0A%20%20background%3A%20%23feffff%3B%0A%20%20background%3A%20-moz-linear-gradient%28top%2C%20%23feffff%200%25%2C%20%23d2ebf9%20100%25%29%3B%0A%20%20background%3A%20-webkit-gradient%28linear%2C%20left%20top%2C%20left%20bottom%2C%20color-stop%280%25%2C%23feffff%29%2C%20color-stop%28100%25%2C%23d2ebf9%29%29%3B%0A%20%20background%3A%20-webkit-linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%20%20background%3A%20-o-linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%20%20background%3A%20-ms-linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%20%20filter%3A%20progid%3ADXImageTransform.Microsoft.gradient%28%20startColorstr%3D%22%23feffff%22%2C%20endColorstr%3D%22%23d2ebf9%22%2CGradientType%3D0%20%29%3B%0A%20%20background%3A%20linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%7D%0A%0A%0A.slide.red3d%20%7B%0A%20%20background%3A%20%23febbbb%3B%0A%20%20background%3A%20-moz-linear-gradient%28top%2C%20%23febbbb%200%25%2C%20%23fe9090%2071%25%2C%20%23ff5c5c%2095%25%29%3B%0A%20%20background%3A%20-webkit-gradient%28linear%2C%20left%20top%2C%20left%20bottom%2C%20color-stop%280%25%2C%23febbbb%29%2C%20color-stop%2871%25%2C%23fe9090%29%2C%20color-stop%2895%25%2C%23ff5c5c%29%29%3B%0A%20%20background%3A%20-webkit-linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%20%20background%3A%20-o-linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%20%20background%3A%20-ms-linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%20%20filter%3A%20progid%3ADXImageTransform.Microsoft.gradient%28%20startColorstr%3D%22%23febbbb%22%2C%20endColorstr%3D%22%23ff5c5c%22%2CGradientType%3D0%20%29%3B%0A%20%20background%3A%20linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%7D%0A%0A%0A.slide.green3d%20%7B%0A%20%20background%3A%20%23cdeb8e%3B%0A%20%20background%3A%20-moz-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%20%23a5c956%20100%25%29%3B%0A%20%20background%3A%20-webkit-gradient%28linear%2C%20left%20top%2C%20left%20bottom%2C%20color-stop%280%25%2C%23cdeb8e%29%2C%20color-stop%28100%25%2C%23a5c956%29%29%3B%0A%20%20background%3A%20-webkit-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%20%20background%3A%20-o-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%20%20background%3A%20-ms-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%20%20filter%3A%20progid%3ADXImageTransform.Microsoft.gradient%28%20startColorstr%3D%22%23cdeb8e%22%2C%20endColorstr%3D%22%23a5c956%22%2CGradientType%3D0%20%29%3B%0A%20%20background%3A%20linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%7D%0A%0A@-webkit-keyframes%20rotate-horizontal%20%7B%0A%090%25%20%7B%20-webkit-transform%3A%20perspective%281000px%29%20rotateY%28-10deg%29%3B%7D%0A%09100%25%20%7B%20-webkit-transform%3A%20perspective%281000px%29%20rotateY%2810deg%29%3B%7D%0A%7D%0A%0A.animate%20p%7B%0A-webkit-animation%3A%20rotate-horizontal%202s%20infinite%20alternate%20ease-in-out%3B%0A%7D%0A%0A%23FOSDEMAmberBackend%20img%20%7B%0A%09margin%3A%205px%3B%0A%09-webkit-animation%3A%20rotate-horizontal%202s%20infinite%20alternate%20ease-in-out%3B%0A%7D%0A%0A.slide%23ide%20%7B%0A%20%20%20%20background%3A%20black%20url%28%22esug2011/images/ide_star_wars.png%22%29%20center%20center%20no-repeat%3B%0A%7D%0A%27'),
  2246. messageSends: [],
  2247. referencedClasses: []
  2248. }),
  2249. smalltalk.FOSDEM2012Presentation);
  2250. smalltalk.addMethod(
  2251. unescape('_slideClasses'),
  2252. smalltalk.method({
  2253. selector: unescape('slideClasses'),
  2254. category: 'accessing',
  2255. fn: function (){
  2256. var self=this;
  2257. return [(smalltalk.FOSDEMIntroSlide || FOSDEMIntroSlide),(smalltalk.CountersSlide || CountersSlide),(smalltalk.IDESlide || IDESlide),(smalltalk.JtalkAndJavascriptSlide || JtalkAndJavascriptSlide),(smalltalk.FOSDEMJSPlayGroundSlide || FOSDEMJSPlayGroundSlide),(smalltalk.FOSDEMJSToSmalltalk || FOSDEMJSToSmalltalk),(smalltalk.FOSDEMBookletSlide || FOSDEMBookletSlide),(smalltalk.FOSDEMCanvasSlide || FOSDEMCanvasSlide),(smalltalk.FOSDEMAmberBackend || FOSDEMAmberBackend),(smalltalk.FOSDEMREPLSlide || FOSDEMREPLSlide)];
  2258. return self;},
  2259. args: [],
  2260. source: unescape('slideClasses%0A%5E%20%7B%0A%09FOSDEMIntroSlide.%0A%09CountersSlide.%0A%09IDESlide.%0A%09JtalkAndJavascriptSlide.%0A%09FOSDEMJSPlayGroundSlide.%0A%09FOSDEMJSToSmalltalk.%0A%09FOSDEMBookletSlide.%0A%09FOSDEMCanvasSlide.%0A%09FOSDEMAmberBackend.%0A%09FOSDEMREPLSlide%0A%7D'),
  2261. messageSends: [],
  2262. referencedClasses: ["FOSDEMIntroSlide", "CountersSlide", "IDESlide", "JtalkAndJavascriptSlide", "FOSDEMJSPlayGroundSlide", "FOSDEMJSToSmalltalk", "FOSDEMBookletSlide", "FOSDEMCanvasSlide", "FOSDEMAmberBackend", "FOSDEMREPLSlide"]
  2263. }),
  2264. smalltalk.FOSDEM2012Presentation);
  2265. smalltalk.addMethod(
  2266. unescape('_isConcrete'),
  2267. smalltalk.method({
  2268. selector: unescape('isConcrete'),
  2269. category: 'testing',
  2270. fn: function (){
  2271. var self=this;
  2272. return true;
  2273. return self;},
  2274. args: [],
  2275. source: unescape('isConcrete%0A%09%5Etrue'),
  2276. messageSends: [],
  2277. referencedClasses: []
  2278. }),
  2279. smalltalk.FOSDEM2012Presentation.klass);
  2280. smalltalk.addMethod(
  2281. unescape('_title'),
  2282. smalltalk.method({
  2283. selector: unescape('title'),
  2284. category: 'testing',
  2285. fn: function (){
  2286. var self=this;
  2287. return "Amber";
  2288. return self;},
  2289. args: [],
  2290. source: unescape('title%0A%09%5E%27Amber%27'),
  2291. messageSends: [],
  2292. referencedClasses: []
  2293. }),
  2294. smalltalk.FOSDEM2012Presentation.klass);
  2295. smalltalk.addClass('FOSDEMSlide', smalltalk.Slide, [], 'Presentation');
  2296. smalltalk.addMethod(
  2297. unescape('_renderSnippet_on_'),
  2298. smalltalk.method({
  2299. selector: unescape('renderSnippet%3Aon%3A'),
  2300. category: 'rendering',
  2301. fn: function (aString, html){
  2302. var self=this;
  2303. smalltalk.send((function($rec){smalltalk.send($rec, "_renderOn_", [html]);return smalltalk.send($rec, "_editor", []);})(smalltalk.send((smalltalk.SourceArea || SourceArea), "_new", [])), "_setValue_", [aString]);
  2304. return self;},
  2305. args: ["aString", "html"],
  2306. source: unescape('renderSnippet%3A%20aString%20on%3A%20html%0A%09%28SourceArea%20new%20%0A%09%09%09renderOn%3A%20html%3B%0A%09%09%09editor%29%20%20setValue%3A%20aString.'),
  2307. messageSends: ["setValue:", "renderOn:", "editor", "new"],
  2308. referencedClasses: ["SourceArea"]
  2309. }),
  2310. smalltalk.FOSDEMSlide);
  2311. smalltalk.addMethod(
  2312. unescape('_renderCodeSnippetOn_'),
  2313. smalltalk.method({
  2314. selector: unescape('renderCodeSnippetOn%3A'),
  2315. category: 'rendering',
  2316. fn: function (html){
  2317. var self=this;
  2318. smalltalk.send((function($rec){smalltalk.send($rec, "_renderOn_", [html]);return smalltalk.send($rec, "_editor", []);})(smalltalk.send((smalltalk.SourceArea || SourceArea), "_new", [])), "_setValue_", [smalltalk.send(self, "_codeSnippet", [])]);
  2319. return self;},
  2320. args: ["html"],
  2321. source: unescape('renderCodeSnippetOn%3A%20html%0A%09%28SourceArea%20new%20%0A%09%09%09renderOn%3A%20html%3B%0A%09%09%09editor%29%20%20setValue%3A%20self%20codeSnippet.'),
  2322. messageSends: ["setValue:", "renderOn:", "editor", "new", "codeSnippet"],
  2323. referencedClasses: ["SourceArea"]
  2324. }),
  2325. smalltalk.FOSDEMSlide);
  2326. smalltalk.addMethod(
  2327. unescape('_codeSnippet'),
  2328. smalltalk.method({
  2329. selector: unescape('codeSnippet'),
  2330. category: 'accessing',
  2331. fn: function (){
  2332. var self=this;
  2333. smalltalk.send(self, "_subclassResponsibility", []);
  2334. return self;},
  2335. args: [],
  2336. source: unescape('codeSnippet%0A%09self%20subclassResponsibility'),
  2337. messageSends: ["subclassResponsibility"],
  2338. referencedClasses: []
  2339. }),
  2340. smalltalk.FOSDEMSlide);