Presentation.deploy.js 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232
  1. smalltalk.addPackage('Presentation', {});
  2. smalltalk.addClass('Presentation', smalltalk.Widget, ['currentSlide', 'slides'], 'Presentation');
  3. smalltalk.addMethod(
  4. unescape('_author'),
  5. smalltalk.method({
  6. selector: unescape('author'),
  7. fn: function (){
  8. var self=this;
  9. return "John Smith";
  10. return self;}
  11. }),
  12. smalltalk.Presentation);
  13. smalltalk.addMethod(
  14. unescape('_currentSlide'),
  15. smalltalk.method({
  16. selector: unescape('currentSlide'),
  17. fn: function (){
  18. var self=this;
  19. return self['@currentSlide'];
  20. return self;}
  21. }),
  22. smalltalk.Presentation);
  23. smalltalk.addMethod(
  24. unescape('_currentSlide_'),
  25. smalltalk.method({
  26. selector: unescape('currentSlide%3A'),
  27. fn: function (aSlide){
  28. var self=this;
  29. (self['@currentSlide']=aSlide);
  30. return self;}
  31. }),
  32. smalltalk.Presentation);
  33. smalltalk.addMethod(
  34. unescape('_currentSlideIndex'),
  35. smalltalk.method({
  36. selector: unescape('currentSlideIndex'),
  37. fn: function (){
  38. var self=this;
  39. return smalltalk.send(smalltalk.send(self, "_slides", []), "_indexOf_ifAbsent_", [smalltalk.send(self, "_currentSlide", []), (function(){return (1);})]);
  40. return self;}
  41. }),
  42. smalltalk.Presentation);
  43. smalltalk.addMethod(
  44. unescape('_description'),
  45. smalltalk.method({
  46. selector: unescape('description'),
  47. fn: function (){
  48. var self=this;
  49. return "A presentation written in Jtalk";
  50. return self;}
  51. }),
  52. smalltalk.Presentation);
  53. smalltalk.addMethod(
  54. unescape('_email'),
  55. smalltalk.method({
  56. selector: unescape('email'),
  57. fn: function (){
  58. var self=this;
  59. return unescape("john@smith.com");
  60. return self;}
  61. }),
  62. smalltalk.Presentation);
  63. smalltalk.addMethod(
  64. unescape('_initSlides'),
  65. smalltalk.method({
  66. selector: unescape('initSlides'),
  67. fn: function (){
  68. var self=this;
  69. (self['@slides']=smalltalk.send(smalltalk.send(self, "_slideClasses", []), "_collect_", [(function(each){return smalltalk.send(each, "_on_", [self]);})]));
  70. return self;}
  71. }),
  72. smalltalk.Presentation);
  73. smalltalk.addMethod(
  74. unescape('_moveAt_'),
  75. smalltalk.method({
  76. selector: unescape('moveAt%3A'),
  77. fn: function (anInteger){
  78. var self=this;
  79. var next=nil;
  80. (next=smalltalk.send(smalltalk.send(self, "_slides", []), "_at_ifAbsent_", [anInteger, (function(){return nil;})]));
  81. (($receiver = next) != nil && $receiver != undefined) ? (function(){(self['@currentSlide']=next);return smalltalk.send(next, "_show", []);})() : nil;
  82. return self;}
  83. }),
  84. smalltalk.Presentation);
  85. smalltalk.addMethod(
  86. unescape('_nextSlide'),
  87. smalltalk.method({
  88. selector: unescape('nextSlide'),
  89. fn: function (){
  90. var self=this;
  91. var next=nil;
  92. (($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;
  93. return self;}
  94. }),
  95. smalltalk.Presentation);
  96. smalltalk.addMethod(
  97. unescape('_previousSlide'),
  98. smalltalk.method({
  99. selector: unescape('previousSlide'),
  100. fn: function (){
  101. var self=this;
  102. var next=nil;
  103. (($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;
  104. return self;}
  105. }),
  106. smalltalk.Presentation);
  107. smalltalk.addMethod(
  108. unescape('_renderOn_'),
  109. smalltalk.method({
  110. selector: unescape('renderOn%3A'),
  111. fn: function (html){
  112. var self=this;
  113. (function($rec){smalltalk.send($rec, "_type_", [unescape("text/css")]);return smalltalk.send($rec, "_with_", [smalltalk.send(self, "_style", [])]);})(smalltalk.send(html, "_style", []));
  114. (function($rec){smalltalk.send($rec, "_id_", ["slides"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderSlidesOn_", [html]);})]);})(smalltalk.send(html, "_div", []));
  115. return self;}
  116. }),
  117. smalltalk.Presentation);
  118. smalltalk.addMethod(
  119. unescape('_renderSlidesOn_'),
  120. smalltalk.method({
  121. selector: unescape('renderSlidesOn%3A'),
  122. fn: function (html){
  123. var self=this;
  124. smalltalk.send(smalltalk.send(self, "_slides", []), "_do_", [(function(each){return smalltalk.send(each, "_renderOn_", [html]);})]);
  125. (($receiver = self['@currentSlide']) == nil || $receiver == undefined) ? (function(){return (self['@currentSlide']=smalltalk.send(smalltalk.send(self, "_slides", []), "_first", []));})() : $receiver;
  126. smalltalk.send(self, "_showCurrentSlide", []);
  127. return self;}
  128. }),
  129. smalltalk.Presentation);
  130. smalltalk.addMethod(
  131. unescape('_showCurrentSlide'),
  132. smalltalk.method({
  133. selector: unescape('showCurrentSlide'),
  134. fn: function (){
  135. var self=this;
  136. (($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;
  137. return self;}
  138. }),
  139. smalltalk.Presentation);
  140. smalltalk.addMethod(
  141. unescape('_slideClasses'),
  142. smalltalk.method({
  143. selector: unescape('slideClasses'),
  144. fn: function (){
  145. var self=this;
  146. return smalltalk.send(self, "_subclassResponsibility", []);
  147. return self;}
  148. }),
  149. smalltalk.Presentation);
  150. smalltalk.addMethod(
  151. unescape('_slideTransition'),
  152. smalltalk.method({
  153. selector: unescape('slideTransition'),
  154. fn: function (){
  155. var self=this;
  156. return "fade";
  157. return self;}
  158. }),
  159. smalltalk.Presentation);
  160. smalltalk.addMethod(
  161. unescape('_slides'),
  162. smalltalk.method({
  163. selector: unescape('slides'),
  164. fn: function (){
  165. var self=this;
  166. (($receiver = self['@slides']) == nil || $receiver == undefined) ? (function(){return smalltalk.send(self, "_initSlides", []);})() : $receiver;
  167. return self['@slides'];
  168. return self;}
  169. }),
  170. smalltalk.Presentation);
  171. smalltalk.addMethod(
  172. unescape('_slidesDo_'),
  173. smalltalk.method({
  174. selector: unescape('slidesDo%3A'),
  175. fn: function (aBlockWithArg){
  176. var self=this;
  177. smalltalk.send(smalltalk.send(self, "_slides", []), "_do_", [(function(aSlide){return smalltalk.send(aBlockWithArg, "_value_", [aSlide]);})]);
  178. return self;}
  179. }),
  180. smalltalk.Presentation);
  181. smalltalk.addMethod(
  182. unescape('_style'),
  183. smalltalk.method({
  184. selector: unescape('style'),
  185. fn: function (){
  186. var self=this;
  187. return "";
  188. return self;}
  189. }),
  190. smalltalk.Presentation);
  191. smalltalk.addMethod(
  192. unescape('_title'),
  193. smalltalk.method({
  194. selector: unescape('title'),
  195. fn: function (){
  196. var self=this;
  197. return smalltalk.send(smalltalk.send(self, "_class", []), "_title", []);
  198. return self;}
  199. }),
  200. smalltalk.Presentation);
  201. smalltalk.addMethod(
  202. unescape('_url'),
  203. smalltalk.method({
  204. selector: unescape('url'),
  205. fn: function (){
  206. var self=this;
  207. return unescape("http%3A//jtalk-project.org");
  208. return self;}
  209. }),
  210. smalltalk.Presentation);
  211. smalltalk.Presentation.klass.iVarNames = ['current'];
  212. smalltalk.addMethod(
  213. unescape('_concretePresentations'),
  214. smalltalk.method({
  215. selector: unescape('concretePresentations'),
  216. fn: function (){
  217. var self=this;
  218. return smalltalk.send(smalltalk.send(self, "_allSubclasses", []), "_select_", [(function(aPresentationClass){return smalltalk.send(aPresentationClass, "_isConcrete", []);})]);
  219. return self;}
  220. }),
  221. smalltalk.Presentation.klass);
  222. smalltalk.addMethod(
  223. unescape('_concretePresentationsDo_'),
  224. smalltalk.method({
  225. selector: unescape('concretePresentationsDo%3A'),
  226. fn: function (aBlockWithArg){
  227. var self=this;
  228. smalltalk.send(smalltalk.send(self, "_concretePresentations", []), "_do_", [aBlockWithArg]);
  229. return self;}
  230. }),
  231. smalltalk.Presentation.klass);
  232. smalltalk.addMethod(
  233. unescape('_isConcrete'),
  234. smalltalk.method({
  235. selector: unescape('isConcrete'),
  236. fn: function (){
  237. var self=this;
  238. return false;
  239. return self;}
  240. }),
  241. smalltalk.Presentation.klass);
  242. smalltalk.addMethod(
  243. unescape('_title'),
  244. smalltalk.method({
  245. selector: unescape('title'),
  246. fn: function (){
  247. var self=this;
  248. return "Slides";
  249. return self;}
  250. }),
  251. smalltalk.Presentation.klass);
  252. smalltalk.addClass('ESUG2011Presentation', smalltalk.Presentation, [], 'Presentation');
  253. smalltalk.addMethod(
  254. unescape('_author'),
  255. smalltalk.method({
  256. selector: unescape('author'),
  257. fn: function (){
  258. var self=this;
  259. return "Nicolas Petton";
  260. return self;}
  261. }),
  262. smalltalk.ESUG2011Presentation);
  263. smalltalk.addMethod(
  264. unescape('_description'),
  265. smalltalk.method({
  266. selector: unescape('description'),
  267. fn: function (){
  268. var self=this;
  269. return unescape("ESUG%202011%2C%20Edinburgh");
  270. return self;}
  271. }),
  272. smalltalk.ESUG2011Presentation);
  273. smalltalk.addMethod(
  274. unescape('_email'),
  275. smalltalk.method({
  276. selector: unescape('email'),
  277. fn: function (){
  278. var self=this;
  279. return unescape("nico@objectfusion.fr");
  280. return self;}
  281. }),
  282. smalltalk.ESUG2011Presentation);
  283. smalltalk.addMethod(
  284. unescape('_slideClasses'),
  285. smalltalk.method({
  286. selector: unescape('slideClasses'),
  287. fn: function (){
  288. var self=this;
  289. 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", []));
  290. return self;}
  291. }),
  292. smalltalk.ESUG2011Presentation);
  293. smalltalk.addMethod(
  294. unescape('_style'),
  295. smalltalk.method({
  296. selector: unescape('style'),
  297. fn: function (){
  298. var self=this;
  299. 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");
  300. return self;}
  301. }),
  302. smalltalk.ESUG2011Presentation);
  303. smalltalk.addMethod(
  304. unescape('_url'),
  305. smalltalk.method({
  306. selector: unescape('url'),
  307. fn: function (){
  308. var self=this;
  309. return unescape("http%3A//jtalk-project.org");
  310. return self;}
  311. }),
  312. smalltalk.ESUG2011Presentation);
  313. smalltalk.ESUG2011Presentation.klass.iVarNames = ['current'];
  314. smalltalk.addMethod(
  315. unescape('_isConcrete'),
  316. smalltalk.method({
  317. selector: unescape('isConcrete'),
  318. fn: function (){
  319. var self=this;
  320. return true;
  321. return self;}
  322. }),
  323. smalltalk.ESUG2011Presentation.klass);
  324. smalltalk.addMethod(
  325. unescape('_title'),
  326. smalltalk.method({
  327. selector: unescape('title'),
  328. fn: function (){
  329. var self=this;
  330. return "Jtalk";
  331. return self;}
  332. }),
  333. smalltalk.ESUG2011Presentation.klass);
  334. smalltalk.addClass('FOSDEM2012Presentation', smalltalk.Presentation, [], 'Presentation');
  335. smalltalk.addMethod(
  336. unescape('_author'),
  337. smalltalk.method({
  338. selector: unescape('author'),
  339. fn: function (){
  340. var self=this;
  341. return unescape("Laurent%20Laffont%2C%20Johnny%20Thornton");
  342. return self;}
  343. }),
  344. smalltalk.FOSDEM2012Presentation);
  345. smalltalk.addMethod(
  346. unescape('_description'),
  347. smalltalk.method({
  348. selector: unescape('description'),
  349. fn: function (){
  350. var self=this;
  351. return unescape("FOSDEM%202012%2C%20Brussels");
  352. return self;}
  353. }),
  354. smalltalk.FOSDEM2012Presentation);
  355. smalltalk.addMethod(
  356. unescape('_email'),
  357. smalltalk.method({
  358. selector: unescape('email'),
  359. fn: function (){
  360. var self=this;
  361. return unescape("laurent.laffont@gmail.com%2C%20%20johnnyt@xan.do");
  362. return self;}
  363. }),
  364. smalltalk.FOSDEM2012Presentation);
  365. smalltalk.addMethod(
  366. unescape('_slideClasses'),
  367. smalltalk.method({
  368. selector: unescape('slideClasses'),
  369. fn: function (){
  370. var self=this;
  371. return [(smalltalk.FOSDEMIntroSlide || FOSDEMIntroSlide),(smalltalk.FOSDEMAmberZeroNine || FOSDEMAmberZeroNine),(smalltalk.CountersSlide || CountersSlide),(smalltalk.IDESlide || IDESlide),(smalltalk.JtalkAndJavascriptSlide || JtalkAndJavascriptSlide),(smalltalk.FOSDEMJSPlayGroundSlide || FOSDEMJSPlayGroundSlide),(smalltalk.FOSDEMJSToSmalltalk || FOSDEMJSToSmalltalk),(smalltalk.FOSDEMBookletSlide || FOSDEMBookletSlide),(smalltalk.FOSDEMTwitter || FOSDEMTwitter),(smalltalk.FOSDEMCanvasSlide || FOSDEMCanvasSlide),(smalltalk.FOSDEMAmberBackend || FOSDEMAmberBackend),(smalltalk.FOSDEMREPLSlide || FOSDEMREPLSlide),(smalltalk.FOSDEMCLISlide || FOSDEMCLISlide),(smalltalk.FOSDEMContributionsSlide || FOSDEMContributionsSlide)];
  372. return self;}
  373. }),
  374. smalltalk.FOSDEM2012Presentation);
  375. smalltalk.addMethod(
  376. unescape('_style'),
  377. smalltalk.method({
  378. selector: unescape('style'),
  379. fn: function (){
  380. var self=this;
  381. 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%23FOSDEMContributionsSlide%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%23FOSDEMContributionsSlide%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.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%0A.tweet%20%7B%0A%09background-color%3A%20%23aaa%3B%0A%09color%3A%20black%3B%0A%09padding%3A%2010px%3B%0A%09border-radius%3A%2010px%3B%0A%09border%3A%205px%20solid%20%23eee%3B%0A%09margin%3A%2010px%3B%0A%7D%0A%0A.tweet%20img%20%7B%0A%09vertical-align%3A%20top%3B%0A%09margin-right%3A%2010px%3B%0A%7D%0A%0A.tweet%20span%3Afirst-child%20%7B%0A%09float%3A%20right%3B%0A%7D%0A");
  382. return self;}
  383. }),
  384. smalltalk.FOSDEM2012Presentation);
  385. smalltalk.addMethod(
  386. unescape('_url'),
  387. smalltalk.method({
  388. selector: unescape('url'),
  389. fn: function (){
  390. var self=this;
  391. return unescape("http%3A//amber-lang.net");
  392. return self;}
  393. }),
  394. smalltalk.FOSDEM2012Presentation);
  395. smalltalk.addMethod(
  396. unescape('_isConcrete'),
  397. smalltalk.method({
  398. selector: unescape('isConcrete'),
  399. fn: function (){
  400. var self=this;
  401. return true;
  402. return self;}
  403. }),
  404. smalltalk.FOSDEM2012Presentation.klass);
  405. smalltalk.addMethod(
  406. unescape('_title'),
  407. smalltalk.method({
  408. selector: unescape('title'),
  409. fn: function (){
  410. var self=this;
  411. return "Amber";
  412. return self;}
  413. }),
  414. smalltalk.FOSDEM2012Presentation.klass);
  415. smalltalk.addClass('SweSUG2012Presentation', smalltalk.Presentation, [], 'Presentation');
  416. smalltalk.addMethod(
  417. unescape('_author'),
  418. smalltalk.method({
  419. selector: unescape('author'),
  420. fn: function (){
  421. var self=this;
  422. return unescape("G%F6ran%20Krampe");
  423. return self;}
  424. }),
  425. smalltalk.SweSUG2012Presentation);
  426. smalltalk.addMethod(
  427. unescape('_description'),
  428. smalltalk.method({
  429. selector: unescape('description'),
  430. fn: function (){
  431. var self=this;
  432. return unescape("SweSUG%202012%2C%20Stockholm");
  433. return self;}
  434. }),
  435. smalltalk.SweSUG2012Presentation);
  436. smalltalk.addMethod(
  437. unescape('_email'),
  438. smalltalk.method({
  439. selector: unescape('email'),
  440. fn: function (){
  441. var self=this;
  442. return unescape("goran@krampe.se");
  443. return self;}
  444. }),
  445. smalltalk.SweSUG2012Presentation);
  446. smalltalk.addMethod(
  447. unescape('_slideClasses'),
  448. smalltalk.method({
  449. selector: unescape('slideClasses'),
  450. fn: function (){
  451. var self=this;
  452. return (function($rec){smalltalk.send($rec, "_add_", [(smalltalk.SweSUGIntroSlide || SweSUGIntroSlide)]);smalltalk.send($rec, "_add_", [(smalltalk.SweSUGAboutSlide || SweSUGAboutSlide)]);smalltalk.send($rec, "_add_", [(smalltalk.SweSUGWhatIsAmberSlide || SweSUGWhatIsAmberSlide)]);smalltalk.send($rec, "_add_", [(smalltalk.SweSUGAmberFeaturesSlide || SweSUGAmberFeaturesSlide)]);smalltalk.send($rec, "_add_", [(smalltalk.SweSUGWorkspaceSlide || SweSUGWorkspaceSlide)]);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", []));
  453. return self;}
  454. }),
  455. smalltalk.SweSUG2012Presentation);
  456. smalltalk.addMethod(
  457. unescape('_style'),
  458. smalltalk.method({
  459. selector: unescape('style'),
  460. fn: function (){
  461. var self=this;
  462. 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");
  463. return self;}
  464. }),
  465. smalltalk.SweSUG2012Presentation);
  466. smalltalk.addMethod(
  467. unescape('_url'),
  468. smalltalk.method({
  469. selector: unescape('url'),
  470. fn: function (){
  471. var self=this;
  472. return unescape("http%3A//www.amber-lang.net");
  473. return self;}
  474. }),
  475. smalltalk.SweSUG2012Presentation);
  476. smalltalk.addMethod(
  477. unescape('_isConcrete'),
  478. smalltalk.method({
  479. selector: unescape('isConcrete'),
  480. fn: function (){
  481. var self=this;
  482. return true;
  483. return self;}
  484. }),
  485. smalltalk.SweSUG2012Presentation.klass);
  486. smalltalk.addMethod(
  487. unescape('_title'),
  488. smalltalk.method({
  489. selector: unescape('title'),
  490. fn: function (){
  491. var self=this;
  492. return unescape("Amber%20rocks%21");
  493. return self;}
  494. }),
  495. smalltalk.SweSUG2012Presentation.klass);
  496. smalltalk.addClass('PresentationNavigator', smalltalk.Widget, ['presentationBrush', 'currentPresentation', 'slideSelect'], 'Presentation');
  497. smalltalk.addMethod(
  498. unescape('_checkHash'),
  499. smalltalk.method({
  500. selector: unescape('checkHash'),
  501. fn: function (){
  502. var self=this;
  503. try{var hash=nil;
  504. var presentation=nil;
  505. (hash=smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send((typeof document == 'undefined' ? nil : document), "_location", []), "_hash", []), "_replace_with_", [unescape("%5E%23"), ""]), "_tokenize_", [unescape("-")]));
  506. (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}})})();})]));
  507. ((($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", [])]);})]));
  508. return self;
  509. } catch(e) {if(e.name === 'stReturn' && e.selector === '_checkHash'){return e.fn()} throw(e)}}
  510. }),
  511. smalltalk.PresentationNavigator);
  512. smalltalk.addMethod(
  513. unescape('_checkHashChange'),
  514. smalltalk.method({
  515. selector: unescape('checkHashChange'),
  516. fn: function (){
  517. var self=this;
  518. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [(typeof window == 'undefined' ? nil : window)]), "_bind_do_", ["hashchange", (function(){return smalltalk.send(self, "_checkHash", []);})]);
  519. return self;}
  520. }),
  521. smalltalk.PresentationNavigator);
  522. smalltalk.addMethod(
  523. unescape('_currentPresentation'),
  524. smalltalk.method({
  525. selector: unescape('currentPresentation'),
  526. fn: function (){
  527. var self=this;
  528. return (($receiver = self['@currentPresentation']) == nil || $receiver == undefined) ? (function(){return (self['@currentPresentation']=smalltalk.send(smalltalk.send(smalltalk.send((smalltalk.Presentation || Presentation), "_concretePresentations", []), "_first", []), "_new", []));})() : $receiver;
  529. return self;}
  530. }),
  531. smalltalk.PresentationNavigator);
  532. smalltalk.addMethod(
  533. unescape('_currentPresentation_'),
  534. smalltalk.method({
  535. selector: unescape('currentPresentation%3A'),
  536. fn: function (aPresentation){
  537. var self=this;
  538. (self['@currentPresentation']=aPresentation);
  539. return self;}
  540. }),
  541. smalltalk.PresentationNavigator);
  542. smalltalk.addMethod(
  543. unescape('_nextSlide'),
  544. smalltalk.method({
  545. selector: unescape('nextSlide'),
  546. fn: function (){
  547. var self=this;
  548. smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_nextSlide", []);
  549. smalltalk.send(self, "_updateHash", []);
  550. return self;}
  551. }),
  552. smalltalk.PresentationNavigator);
  553. smalltalk.addMethod(
  554. unescape('_open'),
  555. smalltalk.method({
  556. selector: unescape('open'),
  557. fn: function (){
  558. var self=this;
  559. 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);})]);
  560. return self;}
  561. }),
  562. smalltalk.PresentationNavigator);
  563. smalltalk.addMethod(
  564. unescape('_previousSlide'),
  565. smalltalk.method({
  566. selector: unescape('previousSlide'),
  567. fn: function (){
  568. var self=this;
  569. smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_previousSlide", []);
  570. smalltalk.send(self, "_updateHash", []);
  571. return self;}
  572. }),
  573. smalltalk.PresentationNavigator);
  574. smalltalk.addMethod(
  575. unescape('_reload'),
  576. smalltalk.method({
  577. selector: unescape('reload'),
  578. fn: function (){
  579. var self=this;
  580. var slideIndex=nil;
  581. (slideIndex=smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_currentSlideIndex", []));
  582. smalltalk.send(self, "_currentPresentation_", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_class", []), "_new", [])]);
  583. smalltalk.send(self, "_renderCurrentPresentation", []);
  584. smalltalk.send(self, "_selectSlideAt_", [slideIndex]);
  585. return self;}
  586. }),
  587. smalltalk.PresentationNavigator);
  588. smalltalk.addMethod(
  589. unescape('_renderCurrentPresentation'),
  590. smalltalk.method({
  591. selector: unescape('renderCurrentPresentation'),
  592. fn: function (){
  593. var self=this;
  594. smalltalk.send(self['@presentationBrush'], "_contents_", [(function(html){return smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_renderOn_", [html]);})]);
  595. smalltalk.send(self, "_updateSlideSelect", []);
  596. return self;}
  597. }),
  598. smalltalk.PresentationNavigator);
  599. smalltalk.addMethod(
  600. unescape('_renderOn_'),
  601. smalltalk.method({
  602. selector: unescape('renderOn%3A'),
  603. fn: function (html){
  604. var self=this;
  605. (function($rec){smalltalk.send($rec, "_type_", [unescape("text/css")]);return smalltalk.send($rec, "_with_", [smalltalk.send(self, "_style", [])]);})(smalltalk.send(html, "_style", []));
  606. (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", []));
  607. (self['@presentationBrush']=(function($rec){smalltalk.send($rec, "_id_", ["presentation"]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(html, "_div", [])));
  608. smalltalk.send(self, "_checkHash", []);
  609. smalltalk.send(self, "_renderCurrentPresentation", []);
  610. return self;}
  611. }),
  612. smalltalk.PresentationNavigator);
  613. smalltalk.addMethod(
  614. unescape('_renderPresentationSelectOn_'),
  615. smalltalk.method({
  616. selector: unescape('renderPresentationSelectOn%3A'),
  617. fn: function (html){
  618. var self=this;
  619. var presentationSelect=nil;
  620. (presentationSelect=smalltalk.send(html, "_select", []));
  621. (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);
  622. return self;}
  623. }),
  624. smalltalk.PresentationNavigator);
  625. smalltalk.addMethod(
  626. unescape('_renderSlideSelectOn_'),
  627. smalltalk.method({
  628. selector: unescape('renderSlideSelectOn%3A'),
  629. fn: function (html){
  630. var self=this;
  631. (self['@slideSelect']=smalltalk.send(html, "_select", []));
  632. smalltalk.send(self['@slideSelect'], "_onChange_", [(function(){return smalltalk.send(self, "_selectSlideAt_", [smalltalk.send(smalltalk.send(self['@slideSelect'], "_asJQuery", []), "_val", [])]);})]);
  633. smalltalk.send(self, "_updateSlideSelect", []);
  634. return self;}
  635. }),
  636. smalltalk.PresentationNavigator);
  637. smalltalk.addMethod(
  638. unescape('_renderToolsOn_'),
  639. smalltalk.method({
  640. selector: unescape('renderToolsOn%3A'),
  641. fn: function (html){
  642. var self=this;
  643. (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", []));
  644. (function($rec){smalltalk.send($rec, "_with_", ["Reload"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_reload", []);})]);})(smalltalk.send(html, "_a", []));
  645. (function($rec){smalltalk.send($rec, "_with_", [unescape("%u2190")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_previousSlide", []);})]);})(smalltalk.send(html, "_a", []));
  646. (function($rec){smalltalk.send($rec, "_with_", [unescape("%u2192")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_nextSlide", []);})]);})(smalltalk.send(html, "_a", []));
  647. return self;}
  648. }),
  649. smalltalk.PresentationNavigator);
  650. smalltalk.addMethod(
  651. unescape('_selectPresentation_'),
  652. smalltalk.method({
  653. selector: unescape('selectPresentation%3A'),
  654. fn: function (aPresentationClass){
  655. var self=this;
  656. smalltalk.send(self, "_currentPresentation_", [smalltalk.send(aPresentationClass, "_new", [])]);
  657. smalltalk.send(self, "_renderCurrentPresentation", []);
  658. return self;}
  659. }),
  660. smalltalk.PresentationNavigator);
  661. smalltalk.addMethod(
  662. unescape('_selectPresentationNamed_'),
  663. smalltalk.method({
  664. selector: unescape('selectPresentationNamed%3A'),
  665. fn: function (aString){
  666. var self=this;
  667. var presentationClass=nil;
  668. (presentationClass=smalltalk.send(smalltalk.send((smalltalk.Smalltalk || Smalltalk), "_current", []), "_at_", [aString]));
  669. (($receiver = presentationClass) != nil && $receiver != undefined) ? (function(){return smalltalk.send(self, "_selectPresentation_", [presentationClass]);})() : nil;
  670. return self;}
  671. }),
  672. smalltalk.PresentationNavigator);
  673. smalltalk.addMethod(
  674. unescape('_selectSlideAt_'),
  675. smalltalk.method({
  676. selector: unescape('selectSlideAt%3A'),
  677. fn: function (anInteger){
  678. var self=this;
  679. smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_moveAt_", [anInteger]);
  680. smalltalk.send(self, "_updateHash", []);
  681. return self;}
  682. }),
  683. smalltalk.PresentationNavigator);
  684. smalltalk.addMethod(
  685. unescape('_setKeybindings'),
  686. smalltalk.method({
  687. selector: unescape('setKeybindings'),
  688. fn: function (){
  689. var self=this;
  690. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [(typeof document == 'undefined' ? nil : document)]), "_keyup_", [(function(e){var node=nil;
  691. (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", []);})]));})]));})]);
  692. return self;}
  693. }),
  694. smalltalk.PresentationNavigator);
  695. smalltalk.addMethod(
  696. unescape('_style'),
  697. smalltalk.method({
  698. selector: unescape('style'),
  699. fn: function (){
  700. var self=this;
  701. 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");
  702. return self;}
  703. }),
  704. smalltalk.PresentationNavigator);
  705. smalltalk.addMethod(
  706. unescape('_updateHash'),
  707. smalltalk.method({
  708. selector: unescape('updateHash'),
  709. fn: function (){
  710. var self=this;
  711. 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", [])])]);
  712. return self;}
  713. }),
  714. smalltalk.PresentationNavigator);
  715. smalltalk.addMethod(
  716. unescape('_updateSlideSelect'),
  717. smalltalk.method({
  718. selector: unescape('updateSlideSelect'),
  719. fn: function (){
  720. var self=this;
  721. smalltalk.send(self['@slideSelect'], "_contents_", [(function(html){var index=nil;
  722. (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", []));})]);})]);
  723. return self;}
  724. }),
  725. smalltalk.PresentationNavigator);
  726. smalltalk.addMethod(
  727. unescape('_initialize'),
  728. smalltalk.method({
  729. selector: unescape('initialize'),
  730. fn: function (){
  731. var self=this;
  732. return smalltalk.send(self, "_open", []);
  733. return self;}
  734. }),
  735. smalltalk.PresentationNavigator.klass);
  736. smalltalk.addMethod(
  737. unescape('_open'),
  738. smalltalk.method({
  739. selector: unescape('open'),
  740. fn: function (){
  741. var self=this;
  742. return smalltalk.send(smalltalk.send(self, "_new", []), "_open", []);
  743. return self;}
  744. }),
  745. smalltalk.PresentationNavigator.klass);
  746. smalltalk.addClass('Slide', smalltalk.Widget, ['presentation'], 'Presentation');
  747. smalltalk.addMethod(
  748. unescape('_backgroundColor'),
  749. smalltalk.method({
  750. selector: unescape('backgroundColor'),
  751. fn: function (){
  752. var self=this;
  753. return unescape("%23555");
  754. return self;}
  755. }),
  756. smalltalk.Slide);
  757. smalltalk.addMethod(
  758. unescape('_cssClass'),
  759. smalltalk.method({
  760. selector: unescape('cssClass'),
  761. fn: function (){
  762. var self=this;
  763. return "slide";
  764. return self;}
  765. }),
  766. smalltalk.Slide);
  767. smalltalk.addMethod(
  768. unescape('_id'),
  769. smalltalk.method({
  770. selector: unescape('id'),
  771. fn: function (){
  772. var self=this;
  773. return smalltalk.send(smalltalk.send(self, "_class", []), "_name", []);
  774. return self;}
  775. }),
  776. smalltalk.Slide);
  777. smalltalk.addMethod(
  778. unescape('_presentation'),
  779. smalltalk.method({
  780. selector: unescape('presentation'),
  781. fn: function (){
  782. var self=this;
  783. return self['@presentation'];
  784. return self;}
  785. }),
  786. smalltalk.Slide);
  787. smalltalk.addMethod(
  788. unescape('_presentation_'),
  789. smalltalk.method({
  790. selector: unescape('presentation%3A'),
  791. fn: function (aPresentation){
  792. var self=this;
  793. (self['@presentation']=aPresentation);
  794. return self;}
  795. }),
  796. smalltalk.Slide);
  797. smalltalk.addMethod(
  798. unescape('_renderMetaOn_'),
  799. smalltalk.method({
  800. selector: unescape('renderMetaOn%3A'),
  801. fn: function (html){
  802. var self=this;
  803. (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", []));
  804. return self;}
  805. }),
  806. smalltalk.Slide);
  807. smalltalk.addMethod(
  808. unescape('_renderOn_'),
  809. smalltalk.method({
  810. selector: unescape('renderOn%3A'),
  811. fn: function (html){
  812. var self=this;
  813. (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", []));
  814. return self;}
  815. }),
  816. smalltalk.Slide);
  817. smalltalk.addMethod(
  818. unescape('_renderSlideOn_'),
  819. smalltalk.method({
  820. selector: unescape('renderSlideOn%3A'),
  821. fn: function (html){
  822. var self=this;
  823. return self;}
  824. }),
  825. smalltalk.Slide);
  826. smalltalk.addMethod(
  827. unescape('_show'),
  828. smalltalk.method({
  829. selector: unescape('show'),
  830. fn: function (){
  831. var self=this;
  832. (($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;
  833. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [".slide"]), "_hide_options_duration_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_slideTransition", []), [], (300)]);
  834. 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)]);
  835. return self;}
  836. }),
  837. smalltalk.Slide);
  838. smalltalk.addMethod(
  839. unescape('_title'),
  840. smalltalk.method({
  841. selector: unescape('title'),
  842. fn: function (){
  843. var self=this;
  844. return smalltalk.send(self, "_id", []);
  845. return self;}
  846. }),
  847. smalltalk.Slide);
  848. smalltalk.addMethod(
  849. unescape('_on_'),
  850. smalltalk.method({
  851. selector: unescape('on%3A'),
  852. fn: function (aPresentation){
  853. var self=this;
  854. return (function($rec){smalltalk.send($rec, "_presentation_", [aPresentation]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  855. return self;}
  856. }),
  857. smalltalk.Slide.klass);
  858. smalltalk.addClass('AboutSlide', smalltalk.Slide, [], 'Presentation');
  859. smalltalk.addMethod(
  860. unescape('_backgroundColor'),
  861. smalltalk.method({
  862. selector: unescape('backgroundColor'),
  863. fn: function (){
  864. var self=this;
  865. return "white";
  866. return self;}
  867. }),
  868. smalltalk.AboutSlide);
  869. smalltalk.addMethod(
  870. unescape('_cssClass'),
  871. smalltalk.method({
  872. selector: unescape('cssClass'),
  873. fn: function (){
  874. var self=this;
  875. return "slide transparent white";
  876. return self;}
  877. }),
  878. smalltalk.AboutSlide);
  879. smalltalk.addMethod(
  880. unescape('_id'),
  881. smalltalk.method({
  882. selector: unescape('id'),
  883. fn: function (){
  884. var self=this;
  885. return "about";
  886. return self;}
  887. }),
  888. smalltalk.AboutSlide);
  889. smalltalk.addMethod(
  890. unescape('_renderSlideOn_'),
  891. smalltalk.method({
  892. selector: unescape('renderSlideOn%3A'),
  893. fn: function (html){
  894. var self=this;
  895. (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", []));
  896. return self;}
  897. }),
  898. smalltalk.AboutSlide);
  899. smalltalk.addClass('ContributionsSlide', smalltalk.Slide, [], 'Presentation');
  900. smalltalk.addMethod(
  901. unescape('_id'),
  902. smalltalk.method({
  903. selector: unescape('id'),
  904. fn: function (){
  905. var self=this;
  906. return "links";
  907. return self;}
  908. }),
  909. smalltalk.ContributionsSlide);
  910. smalltalk.addMethod(
  911. unescape('_renderSlideOn_'),
  912. smalltalk.method({
  913. selector: unescape('renderSlideOn%3A'),
  914. fn: function (html){
  915. var self=this;
  916. (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", []));
  917. return self;}
  918. }),
  919. smalltalk.ContributionsSlide);
  920. smalltalk.addClass('CountersSlide', smalltalk.Slide, [], 'Presentation');
  921. smalltalk.addMethod(
  922. unescape('_backgroundColor'),
  923. smalltalk.method({
  924. selector: unescape('backgroundColor'),
  925. fn: function (){
  926. var self=this;
  927. return unescape("%2318bd7d");
  928. return self;}
  929. }),
  930. smalltalk.CountersSlide);
  931. smalltalk.addMethod(
  932. unescape('_id'),
  933. smalltalk.method({
  934. selector: unescape('id'),
  935. fn: function (){
  936. var self=this;
  937. return "counters";
  938. return self;}
  939. }),
  940. smalltalk.CountersSlide);
  941. smalltalk.addMethod(
  942. unescape('_renderSlideOn_'),
  943. smalltalk.method({
  944. selector: unescape('renderSlideOn%3A'),
  945. fn: function (html){
  946. var self=this;
  947. (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", []));
  948. return self;}
  949. }),
  950. smalltalk.CountersSlide);
  951. smalltalk.addClass('FOSDEMSlide', smalltalk.Slide, [], 'Presentation');
  952. smalltalk.addMethod(
  953. unescape('_codeSnippet'),
  954. smalltalk.method({
  955. selector: unescape('codeSnippet'),
  956. fn: function (){
  957. var self=this;
  958. smalltalk.send(self, "_subclassResponsibility", []);
  959. return self;}
  960. }),
  961. smalltalk.FOSDEMSlide);
  962. smalltalk.addMethod(
  963. unescape('_renderCodeSnippetOn_'),
  964. smalltalk.method({
  965. selector: unescape('renderCodeSnippetOn%3A'),
  966. fn: function (html){
  967. var self=this;
  968. 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", [])]);
  969. return self;}
  970. }),
  971. smalltalk.FOSDEMSlide);
  972. smalltalk.addMethod(
  973. unescape('_renderSnippet_on_'),
  974. smalltalk.method({
  975. selector: unescape('renderSnippet%3Aon%3A'),
  976. fn: function (aString, html){
  977. var self=this;
  978. smalltalk.send((function($rec){smalltalk.send($rec, "_renderOn_", [html]);return smalltalk.send($rec, "_editor", []);})(smalltalk.send((smalltalk.SourceArea || SourceArea), "_new", [])), "_setValue_", [aString]);
  979. return self;}
  980. }),
  981. smalltalk.FOSDEMSlide);
  982. smalltalk.addClass('FOSDEMAmberBackend', smalltalk.FOSDEMSlide, [], 'Presentation');
  983. smalltalk.addMethod(
  984. unescape('_cssClass'),
  985. smalltalk.method({
  986. selector: unescape('cssClass'),
  987. fn: function (){
  988. var self=this;
  989. return "slide green3d";
  990. return self;}
  991. }),
  992. smalltalk.FOSDEMAmberBackend);
  993. smalltalk.addMethod(
  994. unescape('_renderSlideOn_'),
  995. smalltalk.method({
  996. selector: unescape('renderSlideOn%3A'),
  997. fn: function (html){
  998. var self=this;
  999. (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", []));
  1000. return self;}
  1001. }),
  1002. smalltalk.FOSDEMAmberBackend);
  1003. smalltalk.addClass('FOSDEMAmberZeroNine', smalltalk.FOSDEMSlide, [], 'Presentation');
  1004. smalltalk.addMethod(
  1005. unescape('_renderSlideOn_'),
  1006. smalltalk.method({
  1007. selector: unescape('renderSlideOn%3A'),
  1008. fn: function (html){
  1009. var self=this;
  1010. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_h1_", [unescape("Amber%200.9.1%20is%20out%20%21")]);smalltalk.send($rec, "_div_", [(function(){return smalltalk.send(smalltalk.send(html, "_cite", []), "_with_", [unescape("Now%20with%20over%2043%20forks%20on%20github%20and%20more%20than%20230%20followers%20the%20project%3A%20%20http%3A//www.amber-lang.net%20%20...is%20live%20and%20kicking%21")]);})]);return smalltalk.send($rec, "_div_", [(function(){return smalltalk.send(smalltalk.send(html, "_cite", []), "_with_", [unescape("--%20Nicolas%20%26%20G%F6ran")]);})]);})(html);})]);})(smalltalk.send(html, "_div", []));
  1011. return self;}
  1012. }),
  1013. smalltalk.FOSDEMAmberZeroNine);
  1014. smalltalk.addClass('FOSDEMBookletSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  1015. smalltalk.addMethod(
  1016. unescape('_bookletOptions'),
  1017. smalltalk.method({
  1018. selector: unescape('bookletOptions'),
  1019. fn: function (){
  1020. var self=this;
  1021. 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])]);
  1022. return self;}
  1023. }),
  1024. smalltalk.FOSDEMBookletSlide);
  1025. smalltalk.addMethod(
  1026. unescape('_cssClass'),
  1027. smalltalk.method({
  1028. selector: unescape('cssClass'),
  1029. fn: function (){
  1030. var self=this;
  1031. return "slide blue3d";
  1032. return self;}
  1033. }),
  1034. smalltalk.FOSDEMBookletSlide);
  1035. smalltalk.addMethod(
  1036. unescape('_renderBookOn_'),
  1037. smalltalk.method({
  1038. selector: unescape('renderBookOn%3A'),
  1039. fn: function (html){
  1040. var self=this;
  1041. (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", []));
  1042. return self;}
  1043. }),
  1044. smalltalk.FOSDEMBookletSlide);
  1045. smalltalk.addMethod(
  1046. unescape('_renderSlideOn_'),
  1047. smalltalk.method({
  1048. selector: unescape('renderSlideOn%3A'),
  1049. fn: function (html){
  1050. var self=this;
  1051. smalltalk.send(self, "_renderBookOn_", [html]);
  1052. (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", []));
  1053. smalltalk.send(html, "_style_", [smalltalk.send(self, "_style", [])]);
  1054. 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", [])]);})]);
  1055. return self;}
  1056. }),
  1057. smalltalk.FOSDEMBookletSlide);
  1058. smalltalk.addMethod(
  1059. unescape('_style'),
  1060. smalltalk.method({
  1061. selector: unescape('style'),
  1062. fn: function (){
  1063. var self=this;
  1064. 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");
  1065. return self;}
  1066. }),
  1067. smalltalk.FOSDEMBookletSlide);
  1068. smalltalk.addClass('FOSDEMCLISlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  1069. smalltalk.addMethod(
  1070. unescape('_codeSnippet'),
  1071. smalltalk.method({
  1072. selector: unescape('codeSnippet'),
  1073. fn: function (){
  1074. var self=this;
  1075. return unescape("cd%20examples/nodejs/hello%0A../../../bin/amberc%20-m%20Hello%20Hello.st%20Program%0Anode%20Program.js%0A%0AHello%20world%20from%20Amber%20in%20Node.js");
  1076. return self;}
  1077. }),
  1078. smalltalk.FOSDEMCLISlide);
  1079. smalltalk.addMethod(
  1080. unescape('_renderSlideOn_'),
  1081. smalltalk.method({
  1082. selector: unescape('renderSlideOn%3A'),
  1083. fn: function (html){
  1084. var self=this;
  1085. smalltalk.send(html, "_h1_", ["CLI"]);
  1086. smalltalk.send(html, "_with_", [unescape("amberc%20compiles%20.st%20files%20into%20node%20programs%20%21")]);
  1087. smalltalk.send(self, "_renderCodeSnippetOn_", [html]);
  1088. return self;}
  1089. }),
  1090. smalltalk.FOSDEMCLISlide);
  1091. smalltalk.addClass('FOSDEMCanvasSlide', smalltalk.FOSDEMSlide, ['c2d', 'canvas'], 'Presentation');
  1092. smalltalk.addMethod(
  1093. unescape('_cssClass'),
  1094. smalltalk.method({
  1095. selector: unescape('cssClass'),
  1096. fn: function (){
  1097. var self=this;
  1098. return "slide red3d";
  1099. return self;}
  1100. }),
  1101. smalltalk.FOSDEMCanvasSlide);
  1102. smalltalk.addMethod(
  1103. unescape('_drawOnCanvas'),
  1104. smalltalk.method({
  1105. selector: unescape('drawOnCanvas'),
  1106. fn: function (){
  1107. var self=this;
  1108. var c2d=nil;
  1109. (self['@c2d']=smalltalk.send(smalltalk.send(self['@canvas'], "_element", []), "_getContext_", ["2d"]));
  1110. 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", [])]);
  1111. smalltalk.send(smalltalk.send((40), "_atRandom", []), "_timesRepeat_", [(function(){var rgba=nil;
  1112. (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", [])]);})]);
  1113. return self;}
  1114. }),
  1115. smalltalk.FOSDEMCanvasSlide);
  1116. smalltalk.addMethod(
  1117. unescape('_renderSlideOn_'),
  1118. smalltalk.method({
  1119. selector: unescape('renderSlideOn%3A'),
  1120. fn: function (html){
  1121. var self=this;
  1122. smalltalk.send(html, "_h1_", ["Playing with canvas"]);
  1123. (self['@canvas']=(function($rec){smalltalk.send($rec, "_width_", [(700)]);return smalltalk.send($rec, "_height_", [(400)]);})(smalltalk.send(html, "_canvas", [])));
  1124. smalltalk.send(self, "_updateCanvas", []);
  1125. return self;}
  1126. }),
  1127. smalltalk.FOSDEMCanvasSlide);
  1128. smalltalk.addMethod(
  1129. unescape('_updateCanvas'),
  1130. smalltalk.method({
  1131. selector: unescape('updateCanvas'),
  1132. fn: function (){
  1133. var self=this;
  1134. smalltalk.send(self, "_drawOnCanvas", []);
  1135. smalltalk.send((typeof window == 'undefined' ? nil : window), "_setTimeout_delay_", [(function(){return smalltalk.send(self, "_updateCanvas", []);}), (500)]);
  1136. return self;}
  1137. }),
  1138. smalltalk.FOSDEMCanvasSlide);
  1139. smalltalk.addClass('FOSDEMContributionsSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  1140. smalltalk.addMethod(
  1141. unescape('_renderSlideOn_'),
  1142. smalltalk.method({
  1143. selector: unescape('renderSlideOn%3A'),
  1144. fn: function (html){
  1145. var self=this;
  1146. (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("/documentation.html")]);return smalltalk.send($rec, "_with_", ["Documentation"]);})(smalltalk.send(html, "_a", []));})]);smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_href_", [unescape("http%3A//amber-lang.net")]);return smalltalk.send($rec, "_with_", [unescape("amber-lang.net")]);})(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/amber")]);return smalltalk.send($rec, "_with_", [unescape("github.com/NicolasPetton/amber")]);})(smalltalk.send(html, "_a", []));})]);return smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_href_", [unescape("http%3A//groups.google.com/group/amber-lang")]);return smalltalk.send($rec, "_with_", [unescape("groups.google.com/group/amber-lang")]);})(smalltalk.send(html, "_a", []));})]);})]);})(smalltalk.send(html, "_div", []));
  1147. return self;}
  1148. }),
  1149. smalltalk.FOSDEMContributionsSlide);
  1150. smalltalk.addClass('FOSDEMIntroSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  1151. smalltalk.addMethod(
  1152. unescape('_renderSlideOn_'),
  1153. smalltalk.method({
  1154. selector: unescape('renderSlideOn%3A'),
  1155. fn: function (html){
  1156. var self=this;
  1157. (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", []));
  1158. return self;}
  1159. }),
  1160. smalltalk.FOSDEMIntroSlide);
  1161. smalltalk.addClass('FOSDEMJSPlayGroundSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  1162. smalltalk.addMethod(
  1163. unescape('_codeSnippet'),
  1164. smalltalk.method({
  1165. selector: unescape('codeSnippet'),
  1166. fn: function (){
  1167. var self=this;
  1168. 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");
  1169. return self;}
  1170. }),
  1171. smalltalk.FOSDEMJSPlayGroundSlide);
  1172. smalltalk.addMethod(
  1173. unescape('_renderSlideOn_'),
  1174. smalltalk.method({
  1175. selector: unescape('renderSlideOn%3A'),
  1176. fn: function (html){
  1177. var self=this;
  1178. (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", []));
  1179. return self;}
  1180. }),
  1181. smalltalk.FOSDEMJSPlayGroundSlide);
  1182. smalltalk.addClass('FOSDEMJSToSmalltalk', smalltalk.FOSDEMSlide, [], 'Presentation');
  1183. smalltalk.addMethod(
  1184. unescape('_codeSnippet'),
  1185. smalltalk.method({
  1186. selector: unescape('codeSnippet'),
  1187. fn: function (){
  1188. var self=this;
  1189. return unescape("var%20counter%20%3D%20window.smalltalk.Counter._new%28%29%3B%0Acounter._appendToJQuery_%28%24%28%27%23jsToSmalltalk%27%29%29%3B");
  1190. return self;}
  1191. }),
  1192. smalltalk.FOSDEMJSToSmalltalk);
  1193. smalltalk.addMethod(
  1194. unescape('_cssClass'),
  1195. smalltalk.method({
  1196. selector: unescape('cssClass'),
  1197. fn: function (){
  1198. var self=this;
  1199. return "slide blue3d";
  1200. return self;}
  1201. }),
  1202. smalltalk.FOSDEMJSToSmalltalk);
  1203. smalltalk.addMethod(
  1204. unescape('_renderSlideOn_'),
  1205. smalltalk.method({
  1206. selector: unescape('renderSlideOn%3A'),
  1207. fn: function (html){
  1208. var self=this;
  1209. smalltalk.send(html, "_h1_", ["Call Smalltalk from Javascript"]);
  1210. (function($rec){smalltalk.send($rec, "_id_", ["jsToSmalltalk"]);return smalltalk.send($rec, "_style_", ["float: left"]);})(smalltalk.send(html, "_div", []));
  1211. smalltalk.send(self, "_renderCodeSnippetOn_", [html]);
  1212. return self;}
  1213. }),
  1214. smalltalk.FOSDEMJSToSmalltalk);
  1215. smalltalk.addClass('FOSDEMREPLSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  1216. smalltalk.addMethod(
  1217. unescape('_codeSnippet'),
  1218. smalltalk.method({
  1219. selector: unescape('codeSnippet'),
  1220. fn: function (){
  1221. var self=this;
  1222. 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");
  1223. return self;}
  1224. }),
  1225. smalltalk.FOSDEMREPLSlide);
  1226. smalltalk.addMethod(
  1227. unescape('_renderSlideOn_'),
  1228. smalltalk.method({
  1229. selector: unescape('renderSlideOn%3A'),
  1230. fn: function (html){
  1231. var self=this;
  1232. smalltalk.send(html, "_h1_", ["REPL"]);
  1233. smalltalk.send(self, "_renderCodeSnippetOn_", [html]);
  1234. return self;}
  1235. }),
  1236. smalltalk.FOSDEMREPLSlide);
  1237. smalltalk.addClass('FOSDEMTwitter', smalltalk.FOSDEMSlide, ['twitterDiv'], 'Presentation');
  1238. smalltalk.addMethod(
  1239. unescape('_cssClass'),
  1240. smalltalk.method({
  1241. selector: unescape('cssClass'),
  1242. fn: function (){
  1243. var self=this;
  1244. return "slide black";
  1245. return self;}
  1246. }),
  1247. smalltalk.FOSDEMTwitter);
  1248. smalltalk.addMethod(
  1249. unescape('_loadTweets'),
  1250. smalltalk.method({
  1251. selector: unescape('loadTweets'),
  1252. fn: function (){
  1253. var self=this;
  1254. smalltalk.send((typeof jQuery == 'undefined' ? nil : jQuery), "_ajax_options_", [unescape("http%3A//search.twitter.com/search.json%3Frpp%3D3%26q%3D%2540AmberSmalltalk"), smalltalk.HashedCollection._fromPairs_([smalltalk.send("type", "__minus_gt", ["GET"]),smalltalk.send("success", "__minus_gt", [(function(json){return smalltalk.send(self, "_renderTweets_", [smalltalk.send(json, "_results", [])]);})]),smalltalk.send("dataType", "__minus_gt", ["jsonp"])])]);
  1255. return self;}
  1256. }),
  1257. smalltalk.FOSDEMTwitter);
  1258. smalltalk.addMethod(
  1259. unescape('_renderSlideOn_'),
  1260. smalltalk.method({
  1261. selector: unescape('renderSlideOn%3A'),
  1262. fn: function (html){
  1263. var self=this;
  1264. (function($rec){smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_loadTweets", []);})]);return smalltalk.send($rec, "_with_", [unescape("What%20about%20@AmberSmalltalk%20on%20Twitter%20%3F")]);})(smalltalk.send(html, "_button", []));
  1265. (self['@twitterDiv']=smalltalk.send(html, "_div", []));
  1266. return self;}
  1267. }),
  1268. smalltalk.FOSDEMTwitter);
  1269. smalltalk.addMethod(
  1270. unescape('_renderTweet_on_'),
  1271. smalltalk.method({
  1272. selector: unescape('renderTweet%3Aon%3A'),
  1273. fn: function (tweet, html){
  1274. var self=this;
  1275. (function($rec){smalltalk.send($rec, "_class_", ["tweet"]);return smalltalk.send($rec, "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_span_", [smalltalk.send(tweet, "_at_", ["created_at"])]);smalltalk.send($rec, "_img_", [smalltalk.send(tweet, "_at_", ["profile_image_url"])]);smalltalk.send($rec, "_span_", [smalltalk.send(tweet, "_at_", ["from_user"])]);return smalltalk.send($rec, "_div_", [smalltalk.send(tweet, "_at_", ["text"])]);})(html);})]);})(smalltalk.send(html, "_div", []));
  1276. return self;}
  1277. }),
  1278. smalltalk.FOSDEMTwitter);
  1279. smalltalk.addMethod(
  1280. unescape('_renderTweets_'),
  1281. smalltalk.method({
  1282. selector: unescape('renderTweets%3A'),
  1283. fn: function (tweets){
  1284. var self=this;
  1285. smalltalk.send(self['@twitterDiv'], "_contents_", [(function(html){return smalltalk.send(tweets, "_do_", [(function(tweet){return smalltalk.send(self, "_renderTweet_on_", [tweet, html]);})]);})]);
  1286. return self;}
  1287. }),
  1288. smalltalk.FOSDEMTwitter);
  1289. smalltalk.addClass('IDESlide', smalltalk.Slide, [], 'Presentation');
  1290. smalltalk.addMethod(
  1291. unescape('_backgroundColor'),
  1292. smalltalk.method({
  1293. selector: unescape('backgroundColor'),
  1294. fn: function (){
  1295. var self=this;
  1296. return "black";
  1297. return self;}
  1298. }),
  1299. smalltalk.IDESlide);
  1300. smalltalk.addMethod(
  1301. unescape('_cssClass'),
  1302. smalltalk.method({
  1303. selector: unescape('cssClass'),
  1304. fn: function (){
  1305. var self=this;
  1306. return "slide transparent";
  1307. return self;}
  1308. }),
  1309. smalltalk.IDESlide);
  1310. smalltalk.addMethod(
  1311. unescape('_id'),
  1312. smalltalk.method({
  1313. selector: unescape('id'),
  1314. fn: function (){
  1315. var self=this;
  1316. return "ide";
  1317. return self;}
  1318. }),
  1319. smalltalk.IDESlide);
  1320. smalltalk.addMethod(
  1321. unescape('_renderSlideOn_'),
  1322. smalltalk.method({
  1323. selector: unescape('renderSlideOn%3A'),
  1324. fn: function (html){
  1325. var self=this;
  1326. return self;}
  1327. }),
  1328. smalltalk.IDESlide);
  1329. smalltalk.addClass('IntroSlide', smalltalk.Slide, [], 'Presentation');
  1330. smalltalk.addMethod(
  1331. unescape('_cssClass'),
  1332. smalltalk.method({
  1333. selector: unescape('cssClass'),
  1334. fn: function (){
  1335. var self=this;
  1336. return "slide black";
  1337. return self;}
  1338. }),
  1339. smalltalk.IntroSlide);
  1340. smalltalk.addMethod(
  1341. unescape('_id'),
  1342. smalltalk.method({
  1343. selector: unescape('id'),
  1344. fn: function (){
  1345. var self=this;
  1346. return "intro";
  1347. return self;}
  1348. }),
  1349. smalltalk.IntroSlide);
  1350. smalltalk.addMethod(
  1351. unescape('_renderSlideOn_'),
  1352. smalltalk.method({
  1353. selector: unescape('renderSlideOn%3A'),
  1354. fn: function (html){
  1355. var self=this;
  1356. (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", []));
  1357. return self;}
  1358. }),
  1359. smalltalk.IntroSlide);
  1360. smalltalk.addClass('JtalkAndCLI', smalltalk.Slide, [], 'Presentation');
  1361. smalltalk.addMethod(
  1362. unescape('_backgroundColor'),
  1363. smalltalk.method({
  1364. selector: unescape('backgroundColor'),
  1365. fn: function (){
  1366. var self=this;
  1367. return unescape("%230A1");
  1368. return self;}
  1369. }),
  1370. smalltalk.JtalkAndCLI);
  1371. smalltalk.addMethod(
  1372. unescape('_id'),
  1373. smalltalk.method({
  1374. selector: unescape('id'),
  1375. fn: function (){
  1376. var self=this;
  1377. return "JtalkAndCLI";
  1378. return self;}
  1379. }),
  1380. smalltalk.JtalkAndCLI);
  1381. smalltalk.addMethod(
  1382. unescape('_renderSlideOn_'),
  1383. smalltalk.method({
  1384. selector: unescape('renderSlideOn%3A'),
  1385. fn: function (html){
  1386. var self=this;
  1387. 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", []));})]);
  1388. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("jtalkc%20-%20a%20fairly%20elaborate%20bash%20script%20that%3A")]);
  1389. 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"]);})]);
  1390. return self;}
  1391. }),
  1392. smalltalk.JtalkAndCLI);
  1393. smalltalk.addClass('JtalkAndEnyo', smalltalk.Slide, [], 'Presentation');
  1394. smalltalk.addMethod(
  1395. unescape('_backgroundColor'),
  1396. smalltalk.method({
  1397. selector: unescape('backgroundColor'),
  1398. fn: function (){
  1399. var self=this;
  1400. return unescape("%230A1");
  1401. return self;}
  1402. }),
  1403. smalltalk.JtalkAndEnyo);
  1404. smalltalk.addMethod(
  1405. unescape('_id'),
  1406. smalltalk.method({
  1407. selector: unescape('id'),
  1408. fn: function (){
  1409. var self=this;
  1410. return "JtalkAndEnyo";
  1411. return self;}
  1412. }),
  1413. smalltalk.JtalkAndEnyo);
  1414. smalltalk.addMethod(
  1415. unescape('_renderSlideOn_'),
  1416. smalltalk.method({
  1417. selector: unescape('renderSlideOn%3A'),
  1418. fn: function (html){
  1419. var self=this;
  1420. 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", []));})]);
  1421. return self;}
  1422. }),
  1423. smalltalk.JtalkAndEnyo);
  1424. smalltalk.addClass('JtalkAndJavascriptSlide', smalltalk.Slide, [], 'Presentation');
  1425. smalltalk.addMethod(
  1426. unescape('_backgroundColor'),
  1427. smalltalk.method({
  1428. selector: unescape('backgroundColor'),
  1429. fn: function (){
  1430. var self=this;
  1431. return unescape("%2308C");
  1432. return self;}
  1433. }),
  1434. smalltalk.JtalkAndJavascriptSlide);
  1435. smalltalk.addMethod(
  1436. unescape('_cssClass'),
  1437. smalltalk.method({
  1438. selector: unescape('cssClass'),
  1439. fn: function (){
  1440. var self=this;
  1441. return "slide transparent";
  1442. return self;}
  1443. }),
  1444. smalltalk.JtalkAndJavascriptSlide);
  1445. smalltalk.addMethod(
  1446. unescape('_id'),
  1447. smalltalk.method({
  1448. selector: unescape('id'),
  1449. fn: function (){
  1450. var self=this;
  1451. return "jtalkAndJs";
  1452. return self;}
  1453. }),
  1454. smalltalk.JtalkAndJavascriptSlide);
  1455. smalltalk.addMethod(
  1456. unescape('_renderSlideOn_'),
  1457. smalltalk.method({
  1458. selector: unescape('renderSlideOn%3A'),
  1459. fn: function (html){
  1460. var self=this;
  1461. (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", []));
  1462. return self;}
  1463. }),
  1464. smalltalk.JtalkAndJavascriptSlide);
  1465. smalltalk.addClass('JtalkAndJavascriptSlide2', smalltalk.Slide, [], 'Presentation');
  1466. smalltalk.addMethod(
  1467. unescape('_backgroundColor'),
  1468. smalltalk.method({
  1469. selector: unescape('backgroundColor'),
  1470. fn: function (){
  1471. var self=this;
  1472. return unescape("%2308C");
  1473. return self;}
  1474. }),
  1475. smalltalk.JtalkAndJavascriptSlide2);
  1476. smalltalk.addMethod(
  1477. unescape('_id'),
  1478. smalltalk.method({
  1479. selector: unescape('id'),
  1480. fn: function (){
  1481. var self=this;
  1482. return "jtalkAndJs2";
  1483. return self;}
  1484. }),
  1485. smalltalk.JtalkAndJavascriptSlide2);
  1486. smalltalk.addMethod(
  1487. unescape('_renderSlideOn_'),
  1488. smalltalk.method({
  1489. selector: unescape('renderSlideOn%3A'),
  1490. fn: function (html){
  1491. var self=this;
  1492. 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"]);})]);
  1493. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Jtalk maps one to one with the JavaScript equivalent:"]);
  1494. 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."]);})]);
  1495. return self;}
  1496. }),
  1497. smalltalk.JtalkAndJavascriptSlide2);
  1498. smalltalk.addClass('JtalkAndJavascriptSlide3', smalltalk.Slide, [], 'Presentation');
  1499. smalltalk.addMethod(
  1500. unescape('_backgroundColor'),
  1501. smalltalk.method({
  1502. selector: unescape('backgroundColor'),
  1503. fn: function (){
  1504. var self=this;
  1505. return unescape("%2308C");
  1506. return self;}
  1507. }),
  1508. smalltalk.JtalkAndJavascriptSlide3);
  1509. smalltalk.addMethod(
  1510. unescape('_id'),
  1511. smalltalk.method({
  1512. selector: unescape('id'),
  1513. fn: function (){
  1514. var self=this;
  1515. return "jtalkAndJs3";
  1516. return self;}
  1517. }),
  1518. smalltalk.JtalkAndJavascriptSlide3);
  1519. smalltalk.addMethod(
  1520. unescape('_renderSlideOn_'),
  1521. smalltalk.method({
  1522. selector: unescape('renderSlideOn%3A'),
  1523. fn: function (html){
  1524. var self=this;
  1525. 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"]);})]);
  1526. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("Smalltalk%20%u21D2%20JavaScript")]);
  1527. 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", []));})]);
  1528. return self;}
  1529. }),
  1530. smalltalk.JtalkAndJavascriptSlide3);
  1531. smalltalk.addClass('JtalkAndJavascriptSlide4', smalltalk.Slide, [], 'Presentation');
  1532. smalltalk.addMethod(
  1533. unescape('_backgroundColor'),
  1534. smalltalk.method({
  1535. selector: unescape('backgroundColor'),
  1536. fn: function (){
  1537. var self=this;
  1538. return unescape("%2308C");
  1539. return self;}
  1540. }),
  1541. smalltalk.JtalkAndJavascriptSlide4);
  1542. smalltalk.addMethod(
  1543. unescape('_id'),
  1544. smalltalk.method({
  1545. selector: unescape('id'),
  1546. fn: function (){
  1547. var self=this;
  1548. return "jtalkAndJs4";
  1549. return self;}
  1550. }),
  1551. smalltalk.JtalkAndJavascriptSlide4);
  1552. smalltalk.addMethod(
  1553. unescape('_renderSlideOn_'),
  1554. smalltalk.method({
  1555. selector: unescape('renderSlideOn%3A'),
  1556. fn: function (html){
  1557. var self=this;
  1558. 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);})]);
  1559. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("JavaScript%20%u21D2%20Smalltalk")]);
  1560. 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", []));})]);
  1561. return self;}
  1562. }),
  1563. smalltalk.JtalkAndJavascriptSlide4);
  1564. smalltalk.addClass('JtalkAndNode', smalltalk.Slide, [], 'Presentation');
  1565. smalltalk.addMethod(
  1566. unescape('_backgroundColor'),
  1567. smalltalk.method({
  1568. selector: unescape('backgroundColor'),
  1569. fn: function (){
  1570. var self=this;
  1571. return unescape("%230A1");
  1572. return self;}
  1573. }),
  1574. smalltalk.JtalkAndNode);
  1575. smalltalk.addMethod(
  1576. unescape('_id'),
  1577. smalltalk.method({
  1578. selector: unescape('id'),
  1579. fn: function (){
  1580. var self=this;
  1581. return "JtalkAndNode";
  1582. return self;}
  1583. }),
  1584. smalltalk.JtalkAndNode);
  1585. smalltalk.addMethod(
  1586. unescape('_renderSlideOn_'),
  1587. smalltalk.method({
  1588. selector: unescape('renderSlideOn%3A'),
  1589. fn: function (html){
  1590. var self=this;
  1591. 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", []));})]);
  1592. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Hello.st:"]);
  1593. 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", []));})]);
  1594. return self;}
  1595. }),
  1596. smalltalk.JtalkAndNode);
  1597. smalltalk.addClass('JtalkAndNode2', smalltalk.Slide, [], 'Presentation');
  1598. smalltalk.addMethod(
  1599. unescape('_backgroundColor'),
  1600. smalltalk.method({
  1601. selector: unescape('backgroundColor'),
  1602. fn: function (){
  1603. var self=this;
  1604. return unescape("%230A1");
  1605. return self;}
  1606. }),
  1607. smalltalk.JtalkAndNode2);
  1608. smalltalk.addMethod(
  1609. unescape('_id'),
  1610. smalltalk.method({
  1611. selector: unescape('id'),
  1612. fn: function (){
  1613. var self=this;
  1614. return "JtalkAndNode2";
  1615. return self;}
  1616. }),
  1617. smalltalk.JtalkAndNode2);
  1618. smalltalk.addMethod(
  1619. unescape('_renderSlideOn_'),
  1620. smalltalk.method({
  1621. selector: unescape('renderSlideOn%3A'),
  1622. fn: function (html){
  1623. var self=this;
  1624. 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", []));})]);
  1625. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Makefile:"]);
  1626. 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", []));})]);
  1627. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["hello:"]);
  1628. 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", []));})]);
  1629. return self;}
  1630. }),
  1631. smalltalk.JtalkAndNode2);
  1632. smalltalk.addClass('JtalkAndNode3', smalltalk.Slide, [], 'Presentation');
  1633. smalltalk.addMethod(
  1634. unescape('_backgroundColor'),
  1635. smalltalk.method({
  1636. selector: unescape('backgroundColor'),
  1637. fn: function (){
  1638. var self=this;
  1639. return unescape("%230A1");
  1640. return self;}
  1641. }),
  1642. smalltalk.JtalkAndNode3);
  1643. smalltalk.addMethod(
  1644. unescape('_id'),
  1645. smalltalk.method({
  1646. selector: unescape('id'),
  1647. fn: function (){
  1648. var self=this;
  1649. return "JtalkAndNode3";
  1650. return self;}
  1651. }),
  1652. smalltalk.JtalkAndNode3);
  1653. smalltalk.addMethod(
  1654. unescape('_renderSlideOn_'),
  1655. smalltalk.method({
  1656. selector: unescape('renderSlideOn%3A'),
  1657. fn: function (html){
  1658. var self=this;
  1659. 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", []));})]);
  1660. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("make%20clean%20%26%26%20make%20run%3A")]);
  1661. 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", []));})]);
  1662. return self;}
  1663. }),
  1664. smalltalk.JtalkAndNode3);
  1665. smalltalk.addClass('JtalkAndWebOS', smalltalk.Slide, [], 'Presentation');
  1666. smalltalk.addMethod(
  1667. unescape('_backgroundColor'),
  1668. smalltalk.method({
  1669. selector: unescape('backgroundColor'),
  1670. fn: function (){
  1671. var self=this;
  1672. return unescape("%230A1");
  1673. return self;}
  1674. }),
  1675. smalltalk.JtalkAndWebOS);
  1676. smalltalk.addMethod(
  1677. unescape('_id'),
  1678. smalltalk.method({
  1679. selector: unescape('id'),
  1680. fn: function (){
  1681. var self=this;
  1682. return "JtalkAndWebOS";
  1683. return self;}
  1684. }),
  1685. smalltalk.JtalkAndWebOS);
  1686. smalltalk.addMethod(
  1687. unescape('_renderSlideOn_'),
  1688. smalltalk.method({
  1689. selector: unescape('renderSlideOn%3A'),
  1690. fn: function (html){
  1691. var self=this;
  1692. 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", []));})]);
  1693. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["A really cool mobile OS based on Linux:"]);
  1694. 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"]);})]);
  1695. return self;}
  1696. }),
  1697. smalltalk.JtalkAndWebOS);
  1698. smalltalk.addClass('JtalkFeaturesSlide', smalltalk.Slide, [], 'Presentation');
  1699. smalltalk.addMethod(
  1700. unescape('_id'),
  1701. smalltalk.method({
  1702. selector: unescape('id'),
  1703. fn: function (){
  1704. var self=this;
  1705. return "features";
  1706. return self;}
  1707. }),
  1708. smalltalk.JtalkFeaturesSlide);
  1709. smalltalk.addMethod(
  1710. unescape('_renderSlideOn_'),
  1711. smalltalk.method({
  1712. selector: unescape('renderSlideOn%3A'),
  1713. fn: function (html){
  1714. var self=this;
  1715. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", ["Jtalk features"]);
  1716. 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"]);})]);})]);
  1717. return self;}
  1718. }),
  1719. smalltalk.JtalkFeaturesSlide);
  1720. smalltalk.addClass('SweSUGSlide', smalltalk.Slide, [], 'Presentation');
  1721. smalltalk.addMethod(
  1722. unescape('_backgroundColor'),
  1723. smalltalk.method({
  1724. selector: unescape('backgroundColor'),
  1725. fn: function (){
  1726. var self=this;
  1727. return unescape("%23555");
  1728. return self;}
  1729. }),
  1730. smalltalk.SweSUGSlide);
  1731. smalltalk.addMethod(
  1732. unescape('_codeSnippet'),
  1733. smalltalk.method({
  1734. selector: unescape('codeSnippet'),
  1735. fn: function (){
  1736. var self=this;
  1737. smalltalk.send(self, "_subclassResponsibility", []);
  1738. return self;}
  1739. }),
  1740. smalltalk.SweSUGSlide);
  1741. smalltalk.addMethod(
  1742. unescape('_cssClass'),
  1743. smalltalk.method({
  1744. selector: unescape('cssClass'),
  1745. fn: function (){
  1746. var self=this;
  1747. return "slide blue3d";
  1748. return self;}
  1749. }),
  1750. smalltalk.SweSUGSlide);
  1751. smalltalk.addMethod(
  1752. unescape('_renderCodeSnippetOn_'),
  1753. smalltalk.method({
  1754. selector: unescape('renderCodeSnippetOn%3A'),
  1755. fn: function (html){
  1756. var self=this;
  1757. 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", [])]);
  1758. return self;}
  1759. }),
  1760. smalltalk.SweSUGSlide);
  1761. smalltalk.addMethod(
  1762. unescape('_renderSnippet_on_'),
  1763. smalltalk.method({
  1764. selector: unescape('renderSnippet%3Aon%3A'),
  1765. fn: function (aString, html){
  1766. var self=this;
  1767. smalltalk.send((function($rec){smalltalk.send($rec, "_renderOn_", [html]);return smalltalk.send($rec, "_editor", []);})(smalltalk.send((smalltalk.SourceArea || SourceArea), "_new", [])), "_setValue_", [aString]);
  1768. return self;}
  1769. }),
  1770. smalltalk.SweSUGSlide);
  1771. smalltalk.addClass('SweSUGAboutSlide', smalltalk.SweSUGSlide, [], 'Presentation');
  1772. smalltalk.addMethod(
  1773. unescape('_backgroundColor'),
  1774. smalltalk.method({
  1775. selector: unescape('backgroundColor'),
  1776. fn: function (){
  1777. var self=this;
  1778. return unescape("%23555");
  1779. return self;}
  1780. }),
  1781. smalltalk.SweSUGAboutSlide);
  1782. smalltalk.addMethod(
  1783. unescape('_cssClass'),
  1784. smalltalk.method({
  1785. selector: unescape('cssClass'),
  1786. fn: function (){
  1787. var self=this;
  1788. return "slide blue3d";
  1789. return self;}
  1790. }),
  1791. smalltalk.SweSUGAboutSlide);
  1792. smalltalk.addMethod(
  1793. unescape('_id'),
  1794. smalltalk.method({
  1795. selector: unescape('id'),
  1796. fn: function (){
  1797. var self=this;
  1798. return "About";
  1799. return self;}
  1800. }),
  1801. smalltalk.SweSUGAboutSlide);
  1802. smalltalk.addMethod(
  1803. unescape('_renderSlideOn_'),
  1804. smalltalk.method({
  1805. selector: unescape('renderSlideOn%3A'),
  1806. fn: function (html){
  1807. var self=this;
  1808. (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_", ["This presentation is entirely written in Amber. Lots of stuff was heavily copied from the two earlier presentations from ESUG and FOSDEM."]);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", []));
  1809. return self;}
  1810. }),
  1811. smalltalk.SweSUGAboutSlide);
  1812. smalltalk.addClass('SweSUGAmberFeaturesSlide', smalltalk.SweSUGSlide, [], 'Presentation');
  1813. smalltalk.addMethod(
  1814. unescape('_id'),
  1815. smalltalk.method({
  1816. selector: unescape('id'),
  1817. fn: function (){
  1818. var self=this;
  1819. return "features";
  1820. return self;}
  1821. }),
  1822. smalltalk.SweSUGAmberFeaturesSlide);
  1823. smalltalk.addMethod(
  1824. unescape('_renderSlideOn_'),
  1825. smalltalk.method({
  1826. selector: unescape('renderSlideOn%3A'),
  1827. fn: function (html){
  1828. var self=this;
  1829. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", ["Amber features"]);
  1830. smalltalk.send(smalltalk.send(html, "_ul", []), "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("Amber%20is%20%28mostly%29%20written%20in%20itself%2C%20including%20the%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_", [unescape("Very%20good%20javascript%20integration%2C%20both%20ways")]);smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [unescape("Full%20featured%20IDE%21")]);return smalltalk.send(smalltalk.send(html, "_li", []), "_with_", [(function(){smalltalk.send(html, "_with_", [unescape("Advanced%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"]);})]);})]);
  1831. return self;}
  1832. }),
  1833. smalltalk.SweSUGAmberFeaturesSlide);
  1834. smalltalk.addClass('SweSUGIntroSlide', smalltalk.SweSUGSlide, [], 'Presentation');
  1835. smalltalk.addMethod(
  1836. unescape('_id'),
  1837. smalltalk.method({
  1838. selector: unescape('id'),
  1839. fn: function (){
  1840. var self=this;
  1841. return "Intro";
  1842. return self;}
  1843. }),
  1844. smalltalk.SweSUGIntroSlide);
  1845. smalltalk.addMethod(
  1846. unescape('_renderSlideOn_'),
  1847. smalltalk.method({
  1848. selector: unescape('renderSlideOn%3A'),
  1849. fn: function (html){
  1850. var self=this;
  1851. (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", []));
  1852. return self;}
  1853. }),
  1854. smalltalk.SweSUGIntroSlide);
  1855. smalltalk.addClass('SweSUGWhatIsAmberSlide', smalltalk.SweSUGSlide, [], 'Presentation');
  1856. smalltalk.addMethod(
  1857. unescape('_id'),
  1858. smalltalk.method({
  1859. selector: unescape('id'),
  1860. fn: function (){
  1861. var self=this;
  1862. return "WhatIsAmber";
  1863. return self;}
  1864. }),
  1865. smalltalk.SweSUGWhatIsAmberSlide);
  1866. smalltalk.addMethod(
  1867. unescape('_renderSlideOn_'),
  1868. smalltalk.method({
  1869. selector: unescape('renderSlideOn%3A'),
  1870. fn: function (html){
  1871. var self=this;
  1872. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(html, "_img_", [unescape("esug2011/images/balloon.jpg")]);smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", ["Amber in a nutshell"]);smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Amber is a true Smalltalk"]);smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("It%20compiles%20to%20and%20runs%20on/in%20JavaScript")]);smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["MIT license"]);return (function($rec){smalltalk.send($rec, "_class_", ["fancy"]);return smalltalk.send($rec, "_with_", [unescape("Amber%20is%20way%20cool%21")]);})(smalltalk.send(html, "_h2", []));})]);})(smalltalk.send(html, "_div", []));
  1873. return self;}
  1874. }),
  1875. smalltalk.SweSUGWhatIsAmberSlide);
  1876. smalltalk.addClass('SweSUGWorkspaceSlide', smalltalk.SweSUGSlide, [], 'Presentation');
  1877. smalltalk.addMethod(
  1878. unescape('_backgroundColor'),
  1879. smalltalk.method({
  1880. selector: unescape('backgroundColor'),
  1881. fn: function (){
  1882. var self=this;
  1883. return unescape("%2318bd7d");
  1884. return self;}
  1885. }),
  1886. smalltalk.SweSUGWorkspaceSlide);
  1887. smalltalk.addMethod(
  1888. unescape('_id'),
  1889. smalltalk.method({
  1890. selector: unescape('id'),
  1891. fn: function (){
  1892. var self=this;
  1893. return "workspace";
  1894. return self;}
  1895. }),
  1896. smalltalk.SweSUGWorkspaceSlide);
  1897. smalltalk.addMethod(
  1898. unescape('_renderSlideOn_'),
  1899. smalltalk.method({
  1900. selector: unescape('renderSlideOn%3A'),
  1901. fn: function (html){
  1902. var self=this;
  1903. var workspace=nil;
  1904. (workspace=smalltalk.send((smalltalk.SourceArea || SourceArea), "_new", []));
  1905. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", [unescape("Give%20Amber%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", []));
  1906. return self;}
  1907. }),
  1908. smalltalk.SweSUGWorkspaceSlide);
  1909. smalltalk.addClass('WhatIsJtalkSlide', smalltalk.Slide, [], 'Presentation');
  1910. smalltalk.addMethod(
  1911. unescape('_id'),
  1912. smalltalk.method({
  1913. selector: unescape('id'),
  1914. fn: function (){
  1915. var self=this;
  1916. return "WhatIsJtalk";
  1917. return self;}
  1918. }),
  1919. smalltalk.WhatIsJtalkSlide);
  1920. smalltalk.addMethod(
  1921. unescape('_renderSlideOn_'),
  1922. smalltalk.method({
  1923. selector: unescape('renderSlideOn%3A'),
  1924. fn: function (html){
  1925. var self=this;
  1926. (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", []));
  1927. return self;}
  1928. }),
  1929. smalltalk.WhatIsJtalkSlide);
  1930. smalltalk.addClass('WorkspaceSlide', smalltalk.Slide, [], 'Presentation');
  1931. smalltalk.addMethod(
  1932. unescape('_backgroundColor'),
  1933. smalltalk.method({
  1934. selector: unescape('backgroundColor'),
  1935. fn: function (){
  1936. var self=this;
  1937. return unescape("%2318bd7d");
  1938. return self;}
  1939. }),
  1940. smalltalk.WorkspaceSlide);
  1941. smalltalk.addMethod(
  1942. unescape('_id'),
  1943. smalltalk.method({
  1944. selector: unescape('id'),
  1945. fn: function (){
  1946. var self=this;
  1947. return "workspace";
  1948. return self;}
  1949. }),
  1950. smalltalk.WorkspaceSlide);
  1951. smalltalk.addMethod(
  1952. unescape('_renderSlideOn_'),
  1953. smalltalk.method({
  1954. selector: unescape('renderSlideOn%3A'),
  1955. fn: function (html){
  1956. var self=this;
  1957. var workspace=nil;
  1958. (workspace=smalltalk.send((smalltalk.SourceArea || SourceArea), "_new", []));
  1959. (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", []));
  1960. return self;}
  1961. }),
  1962. smalltalk.WorkspaceSlide);