Presentation.js 99 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708
  1. smalltalk.addClass('Slide', smalltalk.Widget, ['presentation'], 'Presentation');
  2. smalltalk.addMethod(
  3. '_presentation',
  4. smalltalk.method({
  5. selector: 'presentation',
  6. category: 'accessing',
  7. fn: function (){
  8. var self=this;
  9. return self['@presentation'];
  10. return self;},
  11. args: [],
  12. source: unescape('presentation%0A%09%5Epresentation'),
  13. messageSends: [],
  14. referencedClasses: []
  15. }),
  16. smalltalk.Slide);
  17. smalltalk.addMethod(
  18. '_presentation_',
  19. smalltalk.method({
  20. selector: 'presentation:',
  21. category: 'accessing',
  22. fn: function (aPresentation){
  23. var self=this;
  24. self['@presentation']=aPresentation;
  25. return self;},
  26. args: ["aPresentation"],
  27. source: unescape('presentation%3A%20aPresentation%0A%09presentation%20%3A%3D%20aPresentation'),
  28. messageSends: [],
  29. referencedClasses: []
  30. }),
  31. smalltalk.Slide);
  32. smalltalk.addMethod(
  33. '_id',
  34. smalltalk.method({
  35. selector: 'id',
  36. category: 'accessing',
  37. fn: function (){
  38. var self=this;
  39. smalltalk.send(self, "_subclassResponsibility", []);
  40. return self;},
  41. args: [],
  42. source: unescape('id%0A%09self%20subclassResponsibility'),
  43. messageSends: ["subclassResponsibility"],
  44. referencedClasses: []
  45. }),
  46. smalltalk.Slide);
  47. smalltalk.addMethod(
  48. '_cssClass',
  49. smalltalk.method({
  50. selector: 'cssClass',
  51. category: 'accessing',
  52. fn: function (){
  53. var self=this;
  54. return "slide";
  55. return self;},
  56. args: [],
  57. source: unescape('cssClass%0A%09%5E%27slide%27'),
  58. messageSends: [],
  59. referencedClasses: []
  60. }),
  61. smalltalk.Slide);
  62. smalltalk.addMethod(
  63. '_backgroundColor',
  64. smalltalk.method({
  65. selector: 'backgroundColor',
  66. category: 'accessing',
  67. fn: function (){
  68. var self=this;
  69. return unescape("%23555");
  70. return self;},
  71. args: [],
  72. source: unescape('backgroundColor%0A%09%5E%27%23555%27'),
  73. messageSends: [],
  74. referencedClasses: []
  75. }),
  76. smalltalk.Slide);
  77. smalltalk.addMethod(
  78. '_show',
  79. smalltalk.method({
  80. selector: 'show',
  81. category: 'actions',
  82. fn: function (){
  83. var self=this;
  84. smalltalk.send(smalltalk.send((typeof document == 'undefined' ? nil : document), "_location", []), "_hash_", [smalltalk.send(self, "_id", [])]);
  85. (($receiver = smalltalk.send(self, "_backgroundColor", [])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [unescape("%23slides")]), "_animate_duration_", [smalltalk.send((smalltalk.Dictionary || Dictionary), "_with_", [smalltalk.send("backgroundColor", "__minus_gt", [smalltalk.send(self, "_backgroundColor", [])])]), (500)]);})() : nil;
  86. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [".slide"]), "_hide_options_duration_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_slideTransition", []), [], (300)]);
  87. 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)]);
  88. return self;},
  89. args: [],
  90. source: unescape('show%0A%09document%20location%20hash%3A%20self%20id.%0A%09self%20backgroundColor%20ifNotNil%3A%20%5B%0A%09%09%28window%20jQuery%3A%20%27%23slides%27%29%20animate%3A%20%28Dictionary%20with%3A%20%27backgroundColor%27%20-%3E%20self%20backgroundColor%29%20duration%3A%20500%5D.%0A%09%28window%20jQuery%3A%20%27.slide%27%29%20hide%3A%20self%20presentation%20slideTransition%20options%3A%20%23%28%29%20duration%3A%20300.%0A%09%28window%20jQuery%3A%20%27%23%27%2C%20self%20id%29%20show%3A%20self%20presentation%20slideTransition%20options%3A%20%23%28%29%20duration%3A%20300.'),
  91. messageSends: ["hash:", "location", "id", "ifNotNil:", "backgroundColor", "animate:duration:", "jQuery:", "with:", unescape("-%3E"), "hide:options:duration:", "slideTransition", "presentation", "show:options:duration:", unescape("%2C")],
  92. referencedClasses: [smalltalk.Dictionary]
  93. }),
  94. smalltalk.Slide);
  95. smalltalk.addMethod(
  96. '_renderOn_',
  97. smalltalk.method({
  98. selector: 'renderOn:',
  99. category: 'rendering',
  100. fn: function (html){
  101. var self=this;
  102. (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", []));
  103. return self;},
  104. args: ["html"],
  105. source: unescape('renderOn%3A%20html%0A%09html%20div%20class%3A%20self%20cssClass%3B%20id%3A%20self%20id%3B%20with%3A%20%5B%0A%09%09self%20renderSlideOn%3A%20html.%0A%09%09self%20renderMetaOn%3A%20html%5D'),
  106. messageSends: ["class:", "cssClass", "id:", "id", "with:", "renderSlideOn:", "renderMetaOn:", "div"],
  107. referencedClasses: []
  108. }),
  109. smalltalk.Slide);
  110. smalltalk.addMethod(
  111. '_renderSlideOn_',
  112. smalltalk.method({
  113. selector: 'renderSlideOn:',
  114. category: 'rendering',
  115. fn: function (html){
  116. var self=this;
  117. return self;},
  118. args: ["html"],
  119. source: unescape('renderSlideOn%3A%20html'),
  120. messageSends: [],
  121. referencedClasses: []
  122. }),
  123. smalltalk.Slide);
  124. smalltalk.addMethod(
  125. '_renderMetaOn_',
  126. smalltalk.method({
  127. selector: 'renderMetaOn:',
  128. category: 'rendering',
  129. fn: function (html){
  130. var self=this;
  131. (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", []));
  132. return self;},
  133. args: ["html"],
  134. source: unescape('renderMetaOn%3A%20html%0A%09html%20div%20%0A%09%09id%3A%20%27meta%27%3B%0A%09%09with%3A%20%5B%0A%09%09%09html%20p%20class%3A%20%27title%27%3B%20with%3A%20self%20presentation%20title.%0A%09%09%09html%20p%20class%3A%20%27description%27%3B%20with%3A%20self%20presentation%20description.%0A%09%09%09html%20a%20class%3A%20%27author%27%3B%20with%3A%20self%20presentation%20author%3B%20href%3A%20%27mailto%3A%27%2C%20self%20presentation%20email.%0A%09%09%09html%20a%20class%3A%20%27url%27%3B%20with%3A%20self%20presentation%20url%3B%20href%3A%20self%20presentation%20url%5D'),
  135. messageSends: ["id:", "with:", "class:", "title", "presentation", "p", "description", "author", "href:", unescape("%2C"), "email", "a", "url", "div"],
  136. referencedClasses: []
  137. }),
  138. smalltalk.Slide);
  139. smalltalk.addMethod(
  140. '_on_',
  141. smalltalk.method({
  142. selector: 'on:',
  143. category: 'instance creation',
  144. fn: function (aPresentation){
  145. var self=this;
  146. return (function($rec){smalltalk.send($rec, "_presentation_", [aPresentation]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  147. return self;},
  148. args: ["aPresentation"],
  149. source: unescape('on%3A%20aPresentation%0A%09%5Eself%20new%0A%09%09presentation%3A%20aPresentation%3B%0A%09%09yourself'),
  150. messageSends: ["presentation:", "yourself", "new"],
  151. referencedClasses: []
  152. }),
  153. smalltalk.Slide.klass);
  154. smalltalk.addClass('Presentation', smalltalk.Widget, ['currentSlide', 'slides'], 'Presentation');
  155. smalltalk.addMethod(
  156. '_title',
  157. smalltalk.method({
  158. selector: 'title',
  159. category: 'accessing',
  160. fn: function (){
  161. var self=this;
  162. return "Slides";
  163. return self;},
  164. args: [],
  165. source: unescape('title%0A%09%5E%27Slides%27'),
  166. messageSends: [],
  167. referencedClasses: []
  168. }),
  169. smalltalk.Presentation);
  170. smalltalk.addMethod(
  171. '_author',
  172. smalltalk.method({
  173. selector: 'author',
  174. category: 'accessing',
  175. fn: function (){
  176. var self=this;
  177. return "John Smith";
  178. return self;},
  179. args: [],
  180. source: unescape('author%0A%09%5E%27John%20Smith%27'),
  181. messageSends: [],
  182. referencedClasses: []
  183. }),
  184. smalltalk.Presentation);
  185. smalltalk.addMethod(
  186. '_url',
  187. smalltalk.method({
  188. selector: 'url',
  189. category: 'accessing',
  190. fn: function (){
  191. var self=this;
  192. return unescape("http%3A//jtalk-project.org");
  193. return self;},
  194. args: [],
  195. source: unescape('url%0A%09%5E%27http%3A//jtalk-project.org%27'),
  196. messageSends: [],
  197. referencedClasses: []
  198. }),
  199. smalltalk.Presentation);
  200. smalltalk.addMethod(
  201. '_description',
  202. smalltalk.method({
  203. selector: 'description',
  204. category: 'accessing',
  205. fn: function (){
  206. var self=this;
  207. return "A presentation written in Jtalk";
  208. return self;},
  209. args: [],
  210. source: unescape('description%0A%09%5E%27A%20presentation%20written%20in%20Jtalk%27'),
  211. messageSends: [],
  212. referencedClasses: []
  213. }),
  214. smalltalk.Presentation);
  215. smalltalk.addMethod(
  216. '_email',
  217. smalltalk.method({
  218. selector: 'email',
  219. category: 'accessing',
  220. fn: function (){
  221. var self=this;
  222. return unescape("john@smith.com");
  223. return self;},
  224. args: [],
  225. source: unescape('email%0A%09%5E%27john@smith.com%27'),
  226. messageSends: [],
  227. referencedClasses: []
  228. }),
  229. smalltalk.Presentation);
  230. smalltalk.addMethod(
  231. '_slides',
  232. smalltalk.method({
  233. selector: 'slides',
  234. category: 'accessing',
  235. fn: function (){
  236. var self=this;
  237. (($receiver = self['@slides']) == nil || $receiver == undefined) ? (function(){return smalltalk.send(self, "_initSlides", []);})() : $receiver;
  238. return self['@slides'];
  239. return self;},
  240. args: [],
  241. source: unescape('slides%0A%09slides%20ifNil%3A%20%5Bself%20initSlides%5D.%0A%09%5Eslides'),
  242. messageSends: ["ifNil:", "initSlides"],
  243. referencedClasses: []
  244. }),
  245. smalltalk.Presentation);
  246. smalltalk.addMethod(
  247. '_slideClasses',
  248. smalltalk.method({
  249. selector: 'slideClasses',
  250. category: 'accessing',
  251. fn: function (){
  252. var self=this;
  253. return smalltalk.send(self, "_subclassResponsibility", []);
  254. return self;},
  255. args: [],
  256. source: unescape('slideClasses%0A%09%5Eself%20subclassResponsibility'),
  257. messageSends: ["subclassResponsibility"],
  258. referencedClasses: []
  259. }),
  260. smalltalk.Presentation);
  261. smalltalk.addMethod(
  262. '_currentSlide',
  263. smalltalk.method({
  264. selector: 'currentSlide',
  265. category: 'accessing',
  266. fn: function (){
  267. var self=this;
  268. return self['@currentSlide'];
  269. return self;},
  270. args: [],
  271. source: unescape('currentSlide%0A%09%5EcurrentSlide'),
  272. messageSends: [],
  273. referencedClasses: []
  274. }),
  275. smalltalk.Presentation);
  276. smalltalk.addMethod(
  277. '_currentSlide_',
  278. smalltalk.method({
  279. selector: 'currentSlide:',
  280. category: 'accessing',
  281. fn: function (aSlide){
  282. var self=this;
  283. self['@currentSlide']=aSlide;
  284. return self;},
  285. args: ["aSlide"],
  286. source: unescape('currentSlide%3A%20aSlide%0A%09currentSlide%20%3A%3D%20aSlide'),
  287. messageSends: [],
  288. referencedClasses: []
  289. }),
  290. smalltalk.Presentation);
  291. smalltalk.addMethod(
  292. '_slideTransition',
  293. smalltalk.method({
  294. selector: 'slideTransition',
  295. category: 'accessing',
  296. fn: function (){
  297. var self=this;
  298. return "fade";
  299. return self;},
  300. args: [],
  301. source: unescape('slideTransition%0A%09%5E%27fade%27'),
  302. messageSends: [],
  303. referencedClasses: []
  304. }),
  305. smalltalk.Presentation);
  306. smalltalk.addMethod(
  307. '_reload',
  308. smalltalk.method({
  309. selector: 'reload',
  310. category: 'actions',
  311. fn: function (){
  312. var self=this;
  313. smalltalk.send(smalltalk.send(unescape("%23slides"), "_asJQuery", []), "_remove", []);
  314. smalltalk.send(smalltalk.send(unescape("%23tools"), "_asJQuery", []), "_remove", []);
  315. smalltalk.send(smalltalk.send("body", "_asJQuery", []), "_append_", [self]);
  316. smalltalk.send(self, "_checkHash", []);
  317. return self;},
  318. args: [],
  319. source: unescape('reload%0A%09%27%23slides%27%20asJQuery%20remove.%0A%09%27%23tools%27%20asJQuery%20remove.%0A%09%27body%27%20asJQuery%20append%3A%20self.%0A%09self%20checkHash'),
  320. messageSends: ["remove", "asJQuery", "append:", "checkHash"],
  321. referencedClasses: []
  322. }),
  323. smalltalk.Presentation);
  324. smalltalk.addMethod(
  325. '_setup',
  326. smalltalk.method({
  327. selector: 'setup',
  328. category: 'actions',
  329. fn: function (){
  330. var self=this;
  331. smalltalk.send((smalltalk.Presentation || Presentation), "_setCurrent_", [self]);
  332. smalltalk.send((smalltalk.JQuery || JQuery), "_documentReady_", [(function(){smalltalk.send(smalltalk.send("body", "_asJQuery", []), "_append_", [self]);return (function($rec){smalltalk.send($rec, "_setKeybindings", []);smalltalk.send($rec, "_checkHashChange", []);return smalltalk.send($rec, "_checkHash", []);})(self);})]);
  333. return self;},
  334. args: [],
  335. source: unescape('setup%0A%09Presentation%20setCurrent%3A%20self.%0A%09JQuery%20documentReady%3A%20%5B%0A%09%09%27body%27%20asJQuery%20append%3A%20self.%0A%09%09self%20%0A%09%09%09setKeybindings%3B%0A%09%09%09checkHashChange%3B%0A%09%09%09checkHash%5D.'),
  336. messageSends: ["setCurrent:", "documentReady:", "append:", "asJQuery", "setKeybindings", "checkHashChange", "checkHash"],
  337. referencedClasses: [smalltalk.Presentation]
  338. }),
  339. smalltalk.Presentation);
  340. smalltalk.addMethod(
  341. '_nextSlide',
  342. smalltalk.method({
  343. selector: 'nextSlide',
  344. category: 'actions',
  345. fn: function (){
  346. var self=this;
  347. var next=nil;
  348. (($receiver = smalltalk.send(self, "_currentSlide", [])) != nil && $receiver != undefined) ? (function(){next=smalltalk.send(smalltalk.send(self, "_slides", []), "_at_ifAbsent_", [(($receiver = smalltalk.send(smalltalk.send(self, "_slides", []), "_indexOf_", [smalltalk.send(self, "_currentSlide", [])])).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;
  349. return self;},
  350. args: [],
  351. source: unescape('nextSlide%0A%09%7C%20next%20%7C%0A%09self%20currentSlide%20ifNotNil%3A%20%5B%0A%09%09next%20%3A%3D%20self%20slides%20%0A%09%09%09at%3A%20%28self%20slides%20indexOf%3A%20self%20currentSlide%29%20+%201%0A%09%09%09ifAbsent%3A%20%5Bnil%5D.%0A%09%09next%20ifNotNil%3A%20%5BcurrentSlide%20%3A%3D%20next.%20next%20show%5D%5D'),
  352. messageSends: ["ifNotNil:", "currentSlide", "at:ifAbsent:", "slides", unescape("+"), "indexOf:", "show"],
  353. referencedClasses: []
  354. }),
  355. smalltalk.Presentation);
  356. smalltalk.addMethod(
  357. '_showCurrentSlide',
  358. smalltalk.method({
  359. selector: 'showCurrentSlide',
  360. category: 'actions',
  361. fn: function (){
  362. var self=this;
  363. (($receiver = smalltalk.send(self, "_currentSlide", [])) != nil && $receiver != undefined) ? (function(){smalltalk.send(smalltalk.send(".slide", "_asJQuery", []), "_hide", []);return smalltalk.send(smalltalk.send(smalltalk.send(unescape("%23"), "__comma", [smalltalk.send(smalltalk.send(self, "_currentSlide", []), "_id", [])]), "_asJQuery", []), "_show", []);})() : nil;
  364. return self;},
  365. args: [],
  366. source: unescape('showCurrentSlide%0A%09self%20currentSlide%20ifNotNil%3A%20%5B%0A%09%09%27.slide%27%20asJQuery%20hide.%0A%09%09%28%27%23%27%2C%20self%20currentSlide%20id%29%20asJQuery%20show%5D'),
  367. messageSends: ["ifNotNil:", "currentSlide", "hide", "asJQuery", "show", unescape("%2C"), "id"],
  368. referencedClasses: []
  369. }),
  370. smalltalk.Presentation);
  371. smalltalk.addMethod(
  372. '_previousSlide',
  373. smalltalk.method({
  374. selector: 'previousSlide',
  375. category: 'actions',
  376. fn: function (){
  377. var self=this;
  378. var next=nil;
  379. (($receiver = smalltalk.send(self, "_currentSlide", [])) != nil && $receiver != undefined) ? (function(){next=smalltalk.send(smalltalk.send(self, "_slides", []), "_at_ifAbsent_", [(($receiver = smalltalk.send(smalltalk.send(self, "_slides", []), "_indexOf_", [smalltalk.send(self, "_currentSlide", [])])).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;
  380. return self;},
  381. args: [],
  382. source: unescape('previousSlide%0A%09%7C%20next%20%7C%0A%09self%20currentSlide%20ifNotNil%3A%20%5B%0A%09%09next%20%3A%3D%20self%20slides%20%0A%09%09%09at%3A%20%28self%20slides%20indexOf%3A%20self%20currentSlide%29%20-%201%0A%09%09%09ifAbsent%3A%20%5Bnil%5D.%0A%09%09next%20ifNotNil%3A%20%5BcurrentSlide%20%3A%3D%20next.%20next%20show%5D%5D'),
  383. messageSends: ["ifNotNil:", "currentSlide", "at:ifAbsent:", "slides", unescape("-"), "indexOf:", "show"],
  384. referencedClasses: []
  385. }),
  386. smalltalk.Presentation);
  387. smalltalk.addMethod(
  388. '_setKeybindings',
  389. smalltalk.method({
  390. selector: 'setKeybindings',
  391. category: 'actions',
  392. fn: function (){
  393. var self=this;
  394. smalltalk.send(smalltalk.send((smalltalk.JQuery || JQuery), "_document", []), "_on_do_", ["keyup", (function(e){var node=nil;
  395. 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", []);})]);})]);})]);
  396. return self;},
  397. args: [],
  398. source: unescape('setKeybindings%0A%09JQuery%20document%20on%3A%20%27keyup%27%20do%3A%20%5B%3Ae%20%7C%7C%20node%20%7C%0A%09%09node%20%3A%3D%20e%20target%20nodeName%20asLowercase.%0A%09%09%28node%20%3D%20%27textarea%27%20or%3A%20%5Bnode%20%3D%20%27input%27%5D%29%20ifFalse%3A%20%5B%0A%09%09%09e%20keyCode%20%3D%2039%20ifTrue%3A%20%5Bself%20nextSlide%5D.%0A%09%09%09e%20keyCode%20%3D%2037%20ifTrue%3A%20%5Bself%20previousSlide%5D%5D%5D'),
  399. messageSends: ["on:do:", "document", "asLowercase", "nodeName", "target", "ifFalse:", "or:", unescape("%3D"), "ifTrue:", "keyCode", "nextSlide", "previousSlide"],
  400. referencedClasses: []
  401. }),
  402. smalltalk.Presentation);
  403. smalltalk.addMethod(
  404. '_checkHashChange',
  405. smalltalk.method({
  406. selector: 'checkHashChange',
  407. category: 'actions',
  408. fn: function (){
  409. var self=this;
  410. smalltalk.send(smalltalk.send((smalltalk.JQuery || JQuery), "_window", []), "_on_do_", ["hashchange", (function(){return smalltalk.send(self, "_checkHash", []);})]);
  411. return self;},
  412. args: [],
  413. source: unescape('checkHashChange%0A%09JQuery%20window%20on%3A%20%27hashchange%27%20do%3A%20%5Bself%20checkHash%5D'),
  414. messageSends: ["on:do:", "window", "checkHash"],
  415. referencedClasses: []
  416. }),
  417. smalltalk.Presentation);
  418. smalltalk.addMethod(
  419. '_checkHash',
  420. smalltalk.method({
  421. selector: 'checkHash',
  422. category: 'actions',
  423. fn: function (){
  424. var self=this;
  425. var hash=nil;
  426. var slide=nil;
  427. hash=smalltalk.send(smalltalk.send(smalltalk.send((typeof document == 'undefined' ? nil : document), "_location", []), "_hash", []), "_replace_with_", [unescape("%5E%23"), ""]);
  428. slide=smalltalk.send(smalltalk.send(self, "_slides", []), "_detect_ifNone_", [(function(each){return smalltalk.send(smalltalk.send(each, "_id", []), "__eq", [hash]);}), (function(){return nil;})]);
  429. (($receiver = slide) != nil && $receiver != undefined) ? (function(){return (($receiver = smalltalk.send(smalltalk.send(self, "_currentSlide", []), "__eq", [slide])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){smalltalk.send(self, "_currentSlide_", [slide]);return smalltalk.send(slide, "_show", []);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){smalltalk.send(self, "_currentSlide_", [slide]);return smalltalk.send(slide, "_show", []);})]);})() : nil;
  430. return self;},
  431. args: [],
  432. source: unescape('checkHash%0A%09%7C%20hash%20slide%20%7C%0A%09hash%20%3A%3D%20document%20location%20hash%20%20replace%3A%20%27%5E%23%27%20with%3A%20%27%27.%0A%09slide%20%3A%3D%20self%20slides%20detect%3A%20%20%5B%3Aeach%20%7C%20each%20id%20%3D%20hash%5D%20ifNone%3A%20%5Bnil%5D.%0A%09slide%20ifNotNil%3A%20%5B%0A%09%09self%20currentSlide%20%3D%20slide%20ifFalse%3A%20%5B%0A%09%09%09self%20currentSlide%3A%20slide.%0A%09%09%09slide%20show%5D%5D'),
  433. messageSends: ["replace:with:", "hash", "location", "detect:ifNone:", "slides", unescape("%3D"), "id", "ifNotNil:", "ifFalse:", "currentSlide", "currentSlide:", "show"],
  434. referencedClasses: []
  435. }),
  436. smalltalk.Presentation);
  437. smalltalk.addMethod(
  438. '_initSlides',
  439. smalltalk.method({
  440. selector: 'initSlides',
  441. category: 'initialization',
  442. fn: function (){
  443. var self=this;
  444. self['@slides']=smalltalk.send(smalltalk.send(self, "_slideClasses", []), "_collect_", [(function(each){return smalltalk.send(each, "_on_", [self]);})]);
  445. return self;},
  446. args: [],
  447. source: unescape('initSlides%0A%09slides%20%3A%3D%20self%20slideClasses%20collect%3A%20%5B%3Aeach%20%7C%20each%20on%3A%20self%5D'),
  448. messageSends: ["collect:", "slideClasses", "on:"],
  449. referencedClasses: []
  450. }),
  451. smalltalk.Presentation);
  452. smalltalk.addMethod(
  453. '_renderOn_',
  454. smalltalk.method({
  455. selector: 'renderOn:',
  456. category: 'rendering',
  457. fn: function (html){
  458. var self=this;
  459. (function($rec){smalltalk.send($rec, "_type_", [unescape("text/css")]);return smalltalk.send($rec, "_with_", [smalltalk.send(self, "_style", [])]);})(smalltalk.send(html, "_style", []));
  460. (function($rec){smalltalk.send($rec, "_id_", ["tools"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderToolsOn_", [html]);})]);})(smalltalk.send(html, "_div", []));
  461. (function($rec){smalltalk.send($rec, "_id_", ["slides"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderSlidesOn_", [html]);})]);})(smalltalk.send(html, "_div", []));
  462. return self;},
  463. args: ["html"],
  464. source: unescape('renderOn%3A%20html%0A%09html%20style%0A%09%09type%3A%20%27text/css%27%3B%0A%09%09with%3A%20self%20style.%0A%09html%20div%20%0A%09%09id%3A%20%27tools%27%3B%0A%09%09with%3A%20%5Bself%20renderToolsOn%3A%20html%5D.%0A%09html%20div%20%0A%09%09id%3A%20%27slides%27%3B%0A%09%09with%3A%20%5Bself%20renderSlidesOn%3A%20html%5D'),
  465. messageSends: ["type:", "with:", "style", "id:", "renderToolsOn:", "div", "renderSlidesOn:"],
  466. referencedClasses: []
  467. }),
  468. smalltalk.Presentation);
  469. smalltalk.addMethod(
  470. '_renderSlidesOn_',
  471. smalltalk.method({
  472. selector: 'renderSlidesOn:',
  473. category: 'rendering',
  474. fn: function (html){
  475. var self=this;
  476. smalltalk.send(smalltalk.send(self, "_slides", []), "_do_", [(function(each){return smalltalk.send(each, "_renderOn_", [html]);})]);
  477. (($receiver = self['@currentSlide']) == nil || $receiver == undefined) ? (function(){return self['@currentSlide']=smalltalk.send(smalltalk.send(self, "_slides", []), "_first", []);})() : $receiver;
  478. smalltalk.send(self, "_showCurrentSlide", []);
  479. return self;},
  480. args: ["html"],
  481. source: unescape('renderSlidesOn%3A%20html%0A%09self%20slides%20do%3A%20%5B%3Aeach%20%7C%20%0A%09%09each%20renderOn%3A%20html%5D.%0A%09currentSlide%20ifNil%3A%20%5BcurrentSlide%20%3A%3D%20self%20slides%20first%5D.%0A%09self%20showCurrentSlide'),
  482. messageSends: ["do:", "slides", "renderOn:", "ifNil:", "first", "showCurrentSlide"],
  483. referencedClasses: []
  484. }),
  485. smalltalk.Presentation);
  486. smalltalk.addMethod(
  487. '_renderToolsOn_',
  488. smalltalk.method({
  489. selector: 'renderToolsOn:',
  490. category: 'rendering',
  491. fn: function (html){
  492. var self=this;
  493. (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", []));
  494. (function($rec){smalltalk.send($rec, "_with_", ["Reload"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_reload", []);})]);})(smalltalk.send(html, "_a", []));
  495. (function($rec){smalltalk.send($rec, "_with_", [unescape("%u2190")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_previousSlide", []);})]);})(smalltalk.send(html, "_a", []));
  496. (function($rec){smalltalk.send($rec, "_with_", [unescape("%u2192")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_nextSlide", []);})]);})(smalltalk.send(html, "_a", []));
  497. return self;},
  498. args: ["html"],
  499. source: unescape('renderToolsOn%3A%20html%0A%09html%20a%20%0A%09%09with%3A%20%27IDE%27%3B%0A%09%09onClick%3A%20%5BTabManager%20current%20open%5D.%0A%09html%20a%0A%09%09with%3A%20%27Reload%27%3B%0A%09%09onClick%3A%20%5Bself%20reload%5D.%0A%09html%20a%0A%09%09with%3A%20%27%u2190%27%3B%0A%09%09onClick%3A%20%5Bself%20previousSlide%5D.%0A%09html%20a%0A%09%09with%3A%20%27%u2192%27%3B%0A%09%09onClick%3A%20%5Bself%20nextSlide%5D'),
  500. messageSends: ["with:", "onClick:", "open", "current", "a", "reload", "previousSlide", "nextSlide"],
  501. referencedClasses: []
  502. }),
  503. smalltalk.Presentation);
  504. smalltalk.addMethod(
  505. '_style',
  506. smalltalk.method({
  507. selector: 'style',
  508. category: 'accessing',
  509. fn: function (){
  510. var self=this;
  511. return "";
  512. return self;},
  513. args: [],
  514. source: unescape('style%0A%09%22Should%20return%20a%20CSS%20style%22%0A%09%5E%20%27%27'),
  515. messageSends: [],
  516. referencedClasses: []
  517. }),
  518. smalltalk.Presentation);
  519. smalltalk.Presentation.klass.iVarNames = ['current'];
  520. smalltalk.addMethod(
  521. '_initialize',
  522. smalltalk.method({
  523. selector: 'initialize',
  524. category: 'initialization',
  525. fn: function (){
  526. var self=this;
  527. (($receiver = smalltalk.send(self, "_isConcrete", [])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(self, "_setup", []);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(self, "_setup", []);})]);
  528. return self;},
  529. args: [],
  530. source: unescape('initialize%0A%09self%20isConcrete%20ifTrue%3A%20%5Bself%20setup%5D'),
  531. messageSends: ["ifTrue:", "isConcrete", "setup"],
  532. referencedClasses: []
  533. }),
  534. smalltalk.Presentation.klass);
  535. smalltalk.addMethod(
  536. '_setup',
  537. smalltalk.method({
  538. selector: 'setup',
  539. category: 'initialization',
  540. fn: function (){
  541. var self=this;
  542. smalltalk.send(smalltalk.send(self, "_new", []), "_setup", []);
  543. return self;},
  544. args: [],
  545. source: unescape('setup%0A%09self%20new%20setup'),
  546. messageSends: ["setup", "new"],
  547. referencedClasses: []
  548. }),
  549. smalltalk.Presentation.klass);
  550. smalltalk.addMethod(
  551. '_setCurrent_',
  552. smalltalk.method({
  553. selector: 'setCurrent:',
  554. category: 'initialization',
  555. fn: function (aSlides){
  556. var self=this;
  557. self['@current']=aSlides;
  558. return self;},
  559. args: ["aSlides"],
  560. source: unescape('setCurrent%3A%20aSlides%0A%09current%20%3A%3D%20aSlides'),
  561. messageSends: [],
  562. referencedClasses: []
  563. }),
  564. smalltalk.Presentation.klass);
  565. smalltalk.addMethod(
  566. '_current',
  567. smalltalk.method({
  568. selector: 'current',
  569. category: 'initialization',
  570. fn: function (){
  571. var self=this;
  572. return self['@current'];
  573. return self;},
  574. args: [],
  575. source: unescape('current%0A%09%5Ecurrent'),
  576. messageSends: [],
  577. referencedClasses: []
  578. }),
  579. smalltalk.Presentation.klass);
  580. smalltalk.addMethod(
  581. '_isConcrete',
  582. smalltalk.method({
  583. selector: 'isConcrete',
  584. category: 'testing',
  585. fn: function (){
  586. var self=this;
  587. return false;
  588. return self;},
  589. args: [],
  590. source: unescape('isConcrete%0A%09%5Efalse'),
  591. messageSends: [],
  592. referencedClasses: []
  593. }),
  594. smalltalk.Presentation.klass);
  595. smalltalk.addClass('ESUG2011Presentation', smalltalk.Presentation, [], 'Presentation');
  596. smalltalk.addMethod(
  597. '_title',
  598. smalltalk.method({
  599. selector: 'title',
  600. category: 'accessing',
  601. fn: function (){
  602. var self=this;
  603. return "Jtalk";
  604. return self;},
  605. args: [],
  606. source: unescape('title%0A%09%5E%27Jtalk%27'),
  607. messageSends: [],
  608. referencedClasses: []
  609. }),
  610. smalltalk.ESUG2011Presentation);
  611. smalltalk.addMethod(
  612. '_description',
  613. smalltalk.method({
  614. selector: 'description',
  615. category: 'accessing',
  616. fn: function (){
  617. var self=this;
  618. return unescape("ESUG%202011%2C%20Edinburgh");
  619. return self;},
  620. args: [],
  621. source: unescape('description%0A%09%5E%27ESUG%202011%2C%20Edinburgh%27'),
  622. messageSends: [],
  623. referencedClasses: []
  624. }),
  625. smalltalk.ESUG2011Presentation);
  626. smalltalk.addMethod(
  627. '_author',
  628. smalltalk.method({
  629. selector: 'author',
  630. category: 'accessing',
  631. fn: function (){
  632. var self=this;
  633. return "Nicolas Petton";
  634. return self;},
  635. args: [],
  636. source: unescape('author%0A%09%5E%27Nicolas%20Petton%27'),
  637. messageSends: [],
  638. referencedClasses: []
  639. }),
  640. smalltalk.ESUG2011Presentation);
  641. smalltalk.addMethod(
  642. '_email',
  643. smalltalk.method({
  644. selector: 'email',
  645. category: 'accessing',
  646. fn: function (){
  647. var self=this;
  648. return unescape("nico@objectfusion.fr");
  649. return self;},
  650. args: [],
  651. source: unescape('email%0A%09%5E%27nico@objectfusion.fr%27'),
  652. messageSends: [],
  653. referencedClasses: []
  654. }),
  655. smalltalk.ESUG2011Presentation);
  656. smalltalk.addMethod(
  657. '_url',
  658. smalltalk.method({
  659. selector: 'url',
  660. category: 'accessing',
  661. fn: function (){
  662. var self=this;
  663. return unescape("http%3A//jtalk-project.org");
  664. return self;},
  665. args: [],
  666. source: unescape('url%0A%09%5E%27http%3A//jtalk-project.org%27'),
  667. messageSends: [],
  668. referencedClasses: []
  669. }),
  670. smalltalk.ESUG2011Presentation);
  671. smalltalk.addMethod(
  672. '_slideClasses',
  673. smalltalk.method({
  674. selector: 'slideClasses',
  675. category: 'accessing',
  676. fn: function (){
  677. var self=this;
  678. 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", []));
  679. return self;},
  680. args: [],
  681. source: unescape('slideClasses%0A%09%5EArray%20new%0A%09%09add%3A%20IntroSlide%3B%0A%09%09add%3A%20AboutSlide%3B%0A%09%09add%3A%20WhatIsJtalkSlide%3B%0A%09%09add%3A%20JtalkFeaturesSlide%3B%0A%09%09add%3A%20WorkspaceSlide%3B%0A%09%09add%3A%20IDESlide%3B%0A%09%09add%3A%20CountersSlide%3B%0A%09%09add%3A%20JtalkAndJavascriptSlide%3B%0A%09%09add%3A%20JtalkAndJavascriptSlide2%3B%0A%09%09add%3A%20JtalkAndJavascriptSlide3%3B%0A%09%09add%3A%20JtalkAndJavascriptSlide4%3B%0A%09%09add%3A%20JtalkAndCLI%3B%0A%09%09add%3A%20JtalkAndNode%3B%0A%09%09add%3A%20JtalkAndNode2%3B%0A%09%09add%3A%20JtalkAndNode3%3B%0A%09%09add%3A%20JtalkAndWebOS%3B%0A%09%09add%3A%20JtalkAndEnyo%3B%0A%09%09add%3A%20ContributionsSlide%3B%0A%09%09yourself'),
  682. messageSends: ["add:", "yourself", "new"],
  683. referencedClasses: [smalltalk.Array]
  684. }),
  685. smalltalk.ESUG2011Presentation);
  686. smalltalk.addMethod(
  687. '_style',
  688. smalltalk.method({
  689. selector: 'style',
  690. category: 'accessing',
  691. fn: function (){
  692. var self=this;
  693. 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%23tools%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%20width%3A%20300px%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%23tools%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%23tools%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20%0A%7D%0A");
  694. return self;},
  695. args: [],
  696. source: unescape('style%0A%09%5E%27%0Abody%20%7B%0A%20%20%20%20font-family%3A%20Helvetica%2CArial%2Csans%3B%0A%7D%0A%0A%23slides%20%7B%0A%20%20%20%20width%3A%20100%25%3B%0A%20%20%20%20height%3A%20100%25%3B%0A%20%20%20%20overflow%3A%20hidden%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20top%3A%200%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20left%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20background%3A%20%23fff%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%20%20%20%20font-size%3A%2020px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20height%3A%20500px%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20padding%3A%2060px%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20left%3A%2050%25%3B%0A%20%20%20%20top%3A%2050%25%3B%0A%20%20%20%20margin-left%3A%20-420px%3B%0A%20%20%20%20margin-top%3A%20-320px%3B%0A%20%20%20%20box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%2020px%20%23111%3B%0A%7D%0A%0A.slide.transparent%20%7B%0A%20%20%20%20background%3A%20transparent%3B%0A%20%20%20%20box-shadow%3A%200%200%200%20none%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20%7B%0A%20%20%20%20background%3A%20black%3B%0A%20%20%20%20background-image%3A%20-webkit-gradient%28%0A%09linear%2C%0A%09left%20bottom%2C%0A%09left%20top%2C%0A%09color-stop%280.38%2C%20rgb%2879%2C79%2C79%29%29%2C%0A%09color-stop%280.69%2C%20rgb%2833%2C33%2C33%29%29%2C%0A%09color-stop%280.86%2C%20rgb%284%2C4%2C4%29%29%0A%20%20%20%20%29%3B%0A%20%20%20%20background-image%3A%20-moz-linear-gradient%28%0A%09center%20bottom%2C%0A%09rgb%2879%2C79%2C79%29%2038%25%2C%0A%09rgb%2833%2C33%2C33%29%2069%25%2C%0A%09rgb%284%2C4%2C4%29%2086%25%0A%20%20%20%20%29%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20h1%2C%20.slide.black%20h2%2C%20.slide.black%20h3%2C%0A.slide.transparent%20h1%2C%20.slide.transparent%20h2%2C%20.slide.transparent%20h3%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%7D%0A%0A.slide.black%20a%2C%20.slide.transparent%20a%20%7B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%7D%0A%0A.slide.white%20%7B%0A%20%20%20%20color%3A%20%23333%20%21important%3B%0A%7D%0A%0A.slide.white%20h1%2C%20.slide.white%20h2%2C%20.slide.white%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A.slide.white%20a%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A%0A.slide%20h1%2C%20.slide%20h2%2C%20.slide%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%20%20%20%20/*%20text-align%3A%20center%3B%20*/%0A%7D%0A%0A.slide%20h1%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2036px%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20margin-bottom%3A%2050px%3B%0A%7D%0A%0A/*%20.slide%20ul%2C%20.slide%20li%20%7B%20*/%0A/*%20%20%20%20%20padding%3A%200%3B%20*/%0A/*%20%20%20%20%20margin%3A%200%3B%20*/%0A/*%20%7D%20*/%0A%0A.slide%20button%20%7B%0A%20%20%20%20font-size%3A%2018px%3B%0A%7D%0A%0A.slide%20a%20%7B%0A%20%20%20%20color%3A%20%23555%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20cursor%3A%20pointer%3B%0A%7D%0A%0A.slide%20a%3Ahover%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20.right%20%7B%0A%20%20%20%20text-align%3A%20right%3B%0A%7D%0A%0A.slide%20.section.center%20%7B%0A%20%20%20%20text-align%3A%20center%3B%0A%20%20%20%20display%3A%20table-cell%3B%0A%20%20%20%20vertical-align%3A%20middle%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20height%3A%20500px%3B%0A%7D%0A%0A.slide%20code%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20border%3A%201px%20solid%20%23ddd%3B%0A%20%20%20%20background%3A%20%23eee%3B%0A%20%20%20%20border-radius%3A%204px%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A.slide%20.code2%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20line-height%3A%201.2em%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A%0A.slide%20.CodeMirror%20%7B%0A%20%20%20%20width%3A%20500px%3B%0A%20%20%20%20height%3A%20300px%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.CodeMirror-scroll%20%7B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.fancy%20%7B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20-webkit-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20-moz-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.comment%20%7B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20font-weight%3A%20normal%3B%0A%7D%0A%0A.slide%20.red%20%7B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.blue%20%7B%0A%20%20%20%20color%3A%20blue%3B%0A%7D%0A%0A.slide%23WhatIsJtalk%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/balloon.jpg%22%29%20650px%2050px%20no-repeat%3B%0A%7D%0A%0A.slide%23ide%20%7B%0A%20%20%20%20background%3A%20black%20url%28%22esug2011/images/ide_star_wars.png%22%29%20center%20center%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndCLI%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/terminal.png%22%29%20620px%2020px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndNode%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A.slide%23JtalkAndNode2%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndNode3%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndWebOS%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/devices.jpg%22%29%20380px%20280px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndEnyo%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/enyo.png%22%29%20130px%20150px%20no-repeat%3B%0A%7D%0A%0A.slide%23links%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/asterix.png%22%29%2030px%20130px%20no-repeat%3B%0A%7D%0A%0A.slide%23links%20.section%20%7B%0A%20%20%20%20margin-left%3A%20250px%3B%0A%20%20%20%20margin-top%3A%20200px%3B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2026px%3B%0A%20%20%20%20font-weight%3A%20bold%3B%0A%7D%0A%0A%0A%23meta%20%7B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20font-size%3A%2012px%3B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20z-index%3A%202%3B%0A%20%20%20%20background%3A%20%23333%3B%0A%20%20%20%20text-align%3A%20right%3B%0A%20%20%20%20padding%3A%200%2010px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%20%20%20%20border-top-left-radius%3A%205px%3B%0A%7D%0A%0A%23meta%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A%0A%23meta%20p%20%7B%0A%20%20%20%20display%3A%20inline%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A%23meta%20a%20%7B%0A%20%20%20%20//background%3A%20%23ccc%3B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A%23tools%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%20width%3A%20300px%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%23tools%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%23tools%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20%0A%7D%0A%27'),
  697. messageSends: [],
  698. referencedClasses: []
  699. }),
  700. smalltalk.ESUG2011Presentation);
  701. smalltalk.ESUG2011Presentation.klass.iVarNames = ['current'];
  702. smalltalk.addMethod(
  703. '_isConcrete',
  704. smalltalk.method({
  705. selector: 'isConcrete',
  706. category: 'testing',
  707. fn: function (){
  708. var self=this;
  709. return true;
  710. return self;},
  711. args: [],
  712. source: unescape('isConcrete%0A%09%5Etrue'),
  713. messageSends: [],
  714. referencedClasses: []
  715. }),
  716. smalltalk.ESUG2011Presentation.klass);
  717. smalltalk.addClass('IntroSlide', smalltalk.Slide, [], 'Presentation');
  718. smalltalk.addMethod(
  719. '_id',
  720. smalltalk.method({
  721. selector: 'id',
  722. category: 'accessing',
  723. fn: function (){
  724. var self=this;
  725. return "intro";
  726. return self;},
  727. args: [],
  728. source: unescape('id%0A%09%5E%27intro%27'),
  729. messageSends: [],
  730. referencedClasses: []
  731. }),
  732. smalltalk.IntroSlide);
  733. smalltalk.addMethod(
  734. '_cssClass',
  735. smalltalk.method({
  736. selector: 'cssClass',
  737. category: 'accessing',
  738. fn: function (){
  739. var self=this;
  740. return "slide black";
  741. return self;},
  742. args: [],
  743. source: unescape('cssClass%0A%09%5E%27slide%20black%27'),
  744. messageSends: [],
  745. referencedClasses: []
  746. }),
  747. smalltalk.IntroSlide);
  748. smalltalk.addMethod(
  749. '_renderSlideOn_',
  750. smalltalk.method({
  751. selector: 'renderSlideOn:',
  752. category: 'rendering',
  753. fn: function (html){
  754. var self=this;
  755. (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", []));
  756. return self;},
  757. args: ["html"],
  758. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%27Jtalk%2C%20the%20Smalltalk%20for%20Web%20developers%27.%0A%09%09html%20p%20with%3A%20self%20presentation%20author%2C%20%27%20%26%20G%F6ran%20Krampe%20-%20%27%2C%20self%20presentation%20description.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%0A%09%09%09%09with%3A%20self%20presentation%20email%3B%0A%09%09%09%09href%3A%20%27mailto%3A%27%2C%20self%20presentation%20email%5D.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%0A%09%09%09%09with%3A%20%27goran@krampe.se%27%3B%0A%09%09%09%09href%3A%20%27mailto%3Agoran@krampe.se%27%5D.%0A%09%09%0A%20%20%20%20%20%20%20%20%20%20%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%0A%09%09%09%09with%3A%20%27objectfusion.fr%27%3B%0A%09%09%09%09href%3A%20%27http%3A//www.objectfusion.fr%27%5D%5D'),
  759. messageSends: ["class:", "with:", "h1", "p", unescape("%2C"), "author", "presentation", "description", "email", "href:", "a", "div"],
  760. referencedClasses: []
  761. }),
  762. smalltalk.IntroSlide);
  763. smalltalk.addClass('WhatIsJtalkSlide', smalltalk.Slide, [], 'Presentation');
  764. smalltalk.addMethod(
  765. '_id',
  766. smalltalk.method({
  767. selector: 'id',
  768. category: 'accessing',
  769. fn: function (){
  770. var self=this;
  771. return "WhatIsJtalk";
  772. return self;},
  773. args: [],
  774. source: unescape('id%0A%09%5E%27WhatIsJtalk%27'),
  775. messageSends: [],
  776. referencedClasses: []
  777. }),
  778. smalltalk.WhatIsJtalkSlide);
  779. smalltalk.addMethod(
  780. '_renderSlideOn_',
  781. smalltalk.method({
  782. selector: 'renderSlideOn:',
  783. category: 'rendering',
  784. fn: function (html){
  785. var self=this;
  786. (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", []));
  787. return self;},
  788. args: ["html"],
  789. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%27Jtalk%20in%20a%20nutshell%27.%0A%09%09html%20h2%20with%3A%20%27Jtalk%20is%20an%20implementation%20of%20Smalltalk%27.%0A%09%09html%20h2%20with%3A%20%27Jtalk%20runs%20on%20top%20of%20the%20JavaScript%20runtime%27.%0A%09%09html%20h2%20with%3A%20%27Jtalk%20is%20an%20opensource%20project%20%28MIT%29%27.%0A%09%09html%20h2%20class%3A%20%27fancy%27%3B%20with%3A%20%27Jtalk%20is%20cool%21%27%5D'),
  790. messageSends: ["class:", "with:", "h1", "h2", "div"],
  791. referencedClasses: []
  792. }),
  793. smalltalk.WhatIsJtalkSlide);
  794. smalltalk.addClass('JtalkFeaturesSlide', smalltalk.Slide, [], 'Presentation');
  795. smalltalk.addMethod(
  796. '_id',
  797. smalltalk.method({
  798. selector: 'id',
  799. category: 'accessing',
  800. fn: function (){
  801. var self=this;
  802. return "features";
  803. return self;},
  804. args: [],
  805. source: unescape('id%0A%09%5E%27features%27'),
  806. messageSends: [],
  807. referencedClasses: []
  808. }),
  809. smalltalk.JtalkFeaturesSlide);
  810. smalltalk.addMethod(
  811. '_renderSlideOn_',
  812. smalltalk.method({
  813. selector: 'renderSlideOn:',
  814. category: 'rendering',
  815. fn: function (html){
  816. var self=this;
  817. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", ["Jtalk features"]);
  818. 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"]);})]);})]);
  819. return self;},
  820. args: ["html"],
  821. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%27Jtalk%20features%27.%0A%09html%20ul%20with%3A%20%5B%0A%09%09html%20li%20with%3A%20%27Jtalk%20is%20%28mostly%29%20written%20in%20itself%2C%20including%20the%20parser%20%26%20compiler%27.%0A%09%09html%20li%20with%3A%20%27Full%20Smalltalk%20object%20system%2C%20including%20classes%20%26%20metaclasses%2C%20etc%27.%0A%09%09html%20li%20with%3A%20%27Core%20libraries%20%28streams%2C%20collections%2C%20RegExp%2C%20etc%29%27.%0A%09%09html%20li%20with%3A%20%27Web%20related%20libraries%3A%20HTML%20Canvas%2C%20DOM%20manipulation%27.%0A%09%09html%20li%20with%3A%20%27Full%20featured%20IDE%27.%0A%09%09html%20li%20with%3A%20%5B%0A%09%09%09html%20with%3A%27Advanced%20Smalltalk%20features%2C%20including%20%27.%0A%09%09%09html%20code%20with%3A%20%27%23doesNotUnderstand%3A%27.%0A%09%09%09html%20with%3A%20%27%20support%20and%20%27.%0A%09%09%09html%20code%20with%3A%20%27thisContext%27%5D%5D'),
  822. messageSends: ["with:", "h1", "ul", "li", "code"],
  823. referencedClasses: []
  824. }),
  825. smalltalk.JtalkFeaturesSlide);
  826. smalltalk.addClass('AboutSlide', smalltalk.Slide, [], 'Presentation');
  827. smalltalk.addMethod(
  828. '_id',
  829. smalltalk.method({
  830. selector: 'id',
  831. category: 'accessing',
  832. fn: function (){
  833. var self=this;
  834. return "about";
  835. return self;},
  836. args: [],
  837. source: unescape('id%0A%09%5E%27about%27'),
  838. messageSends: [],
  839. referencedClasses: []
  840. }),
  841. smalltalk.AboutSlide);
  842. smalltalk.addMethod(
  843. '_cssClass',
  844. smalltalk.method({
  845. selector: 'cssClass',
  846. category: 'accessing',
  847. fn: function (){
  848. var self=this;
  849. return "slide transparent white";
  850. return self;},
  851. args: [],
  852. source: unescape('cssClass%0A%09%5E%27slide%20transparent%20white%27'),
  853. messageSends: [],
  854. referencedClasses: []
  855. }),
  856. smalltalk.AboutSlide);
  857. smalltalk.addMethod(
  858. '_backgroundColor',
  859. smalltalk.method({
  860. selector: 'backgroundColor',
  861. category: 'accessing',
  862. fn: function (){
  863. var self=this;
  864. return "white";
  865. return self;},
  866. args: [],
  867. source: unescape('backgroundColor%0A%09%5E%27white%27'),
  868. messageSends: [],
  869. referencedClasses: []
  870. }),
  871. smalltalk.AboutSlide);
  872. smalltalk.addMethod(
  873. '_renderSlideOn_',
  874. smalltalk.method({
  875. selector: 'renderSlideOn:',
  876. category: 'rendering',
  877. fn: function (html){
  878. var self=this;
  879. (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", []));
  880. return self;},
  881. args: ["html"],
  882. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%27About%20this%20presentation%27.%0A%09%09html%20p%20with%3A%20%27This%20presentation%20is%20entirely%20written%20in%20Jtalk%20and%20is%20licensed%20under%20CC%20BY-SA.%27.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20with%3A%20%27Press%20%27.%0A%09%09%09html%20code%20with%3A%20%27%u2190%27.%0A%09%09%09html%20with%3A%20%27%20to%20move%20backward%20and%20%27.%0A%09%09%09html%20code%20with%3A%20%27%20%u2192%27.%0A%09%09%09html%20with%3A%20%27%20to%20move%20forward.%27%5D.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20with%3A%20%27Open%20a%20%27.%0A%09%09%09html%20button%20%0A%09%09%09%09with%3A%20%27browser%27%3B%0A%09%09%09%09onClick%3A%20%5BBrowser%20openOn%3A%20Presentation%5D.%0A%09%09%09html%20with%3A%20%27%20to%20edit%20the%20source%20code.%27%5D%5D'),
  883. messageSends: ["class:", "with:", "h1", "p", "code", "onClick:", "openOn:", "button", "div"],
  884. referencedClasses: [smalltalk.Presentation]
  885. }),
  886. smalltalk.AboutSlide);
  887. smalltalk.addClass('JtalkAndJavascriptSlide3', smalltalk.Slide, [], 'Presentation');
  888. smalltalk.addMethod(
  889. '_id',
  890. smalltalk.method({
  891. selector: 'id',
  892. category: 'accessing',
  893. fn: function (){
  894. var self=this;
  895. return "jtalkAndJs3";
  896. return self;},
  897. args: [],
  898. source: unescape('id%0A%09%5E%27jtalkAndJs3%27'),
  899. messageSends: [],
  900. referencedClasses: []
  901. }),
  902. smalltalk.JtalkAndJavascriptSlide3);
  903. smalltalk.addMethod(
  904. '_backgroundColor',
  905. smalltalk.method({
  906. selector: 'backgroundColor',
  907. category: 'accessing',
  908. fn: function (){
  909. var self=this;
  910. return unescape("%2308C");
  911. return self;},
  912. args: [],
  913. source: unescape('backgroundColor%0A%09%5E%27%2308C%27'),
  914. messageSends: [],
  915. referencedClasses: []
  916. }),
  917. smalltalk.JtalkAndJavascriptSlide3);
  918. smalltalk.addMethod(
  919. '_renderSlideOn_',
  920. smalltalk.method({
  921. selector: 'renderSlideOn:',
  922. category: 'rendering',
  923. fn: function (html){
  924. var self=this;
  925. 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"]);})]);
  926. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("Smalltalk%20%u21D2%20JavaScript")]);
  927. 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", []));})]);
  928. return self;},
  929. args: ["html"],
  930. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Smalltalk%20%27.%0A%09%09html%20span%20class%3A%20%27red%27%3B%20with%3A%20%27%u2665%27.%0A%09%09html%20with%3A%20%27%20JavaScript%27%5D.%0A%09html%20h2%20with%3A%20%27Smalltalk%20%u21D2%20JavaScript%27.%0A%09html%20ol%20with%3A%20%5B%0A%09%09html%20li%20%0A%09%09%09with%3A%20%27Unary%20messages%20begin%20with%20an%20underscore%3A%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27yourself%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27_yourself%28%29%27%5D.%0A%09%09html%20li%20%0A%09%09%09with%3A%20%27Binary%20messages%20are%20prefixed%20with%202%20underscores%3A%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%273@4%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27%283%29.__at%284%29%27%5D.%0A%09%09html%20li%20%0A%09%09%09with%3A%20%27Keyword%20message%20follow%20the%20same%20rules%20as%20unary%20messages%2C%20with%20a%20final%20underscore%3A%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27aDictionary%20at%3A%203%20put%3A%204%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27aDictionary._at_put_%283%2C%204%29%27%5D%5D'),
  931. messageSends: ["with:", "h1", "class:", "span", "h2", "ol", "code", "li"],
  932. referencedClasses: []
  933. }),
  934. smalltalk.JtalkAndJavascriptSlide3);
  935. smalltalk.addClass('JtalkAndJavascriptSlide2', smalltalk.Slide, [], 'Presentation');
  936. smalltalk.addMethod(
  937. '_id',
  938. smalltalk.method({
  939. selector: 'id',
  940. category: 'accessing',
  941. fn: function (){
  942. var self=this;
  943. return "jtalkAndJs2";
  944. return self;},
  945. args: [],
  946. source: unescape('id%0A%09%5E%27jtalkAndJs2%27'),
  947. messageSends: [],
  948. referencedClasses: []
  949. }),
  950. smalltalk.JtalkAndJavascriptSlide2);
  951. smalltalk.addMethod(
  952. '_backgroundColor',
  953. smalltalk.method({
  954. selector: 'backgroundColor',
  955. category: 'accessing',
  956. fn: function (){
  957. var self=this;
  958. return unescape("%2308C");
  959. return self;},
  960. args: [],
  961. source: unescape('backgroundColor%0A%09%5E%27%2308C%27'),
  962. messageSends: [],
  963. referencedClasses: []
  964. }),
  965. smalltalk.JtalkAndJavascriptSlide2);
  966. smalltalk.addMethod(
  967. '_renderSlideOn_',
  968. smalltalk.method({
  969. selector: 'renderSlideOn:',
  970. category: 'rendering',
  971. fn: function (html){
  972. var self=this;
  973. 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"]);})]);
  974. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Jtalk maps one to one with the JavaScript equivalent:"]);
  975. 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."]);})]);
  976. return self;},
  977. args: ["html"],
  978. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Smalltalk%20%27.%0A%09%09html%20span%20class%3A%20%27red%27%3B%20with%3A%20%27%u2665%27.%0A%09%09html%20with%3A%20%27%20JavaScript%27%5D.%0A%09html%20h2%20with%3A%20%27Jtalk%20maps%20one%20to%20one%20with%20the%20JavaScript%20equivalent%3A%27.%0A%09html%20ul%20with%3A%20%5B%0A%09%09html%20li%20with%3A%20%27String%20%u21D4%20String%27.%0A%09%09html%20li%20with%3A%20%27Number%20%u21D4%20Number%27.%0A%09%09html%20li%20with%3A%20%27BlockClosure%20%u21D4%20function%27.%0A%09%09html%20li%20with%3A%20%27Dictionary%20%u21D4%20Object%27.%0A%09%09html%20li%20with%3A%20%27Error%20%u21D4%20Error%27.%0A%09%09html%20li%20with%3A%20%27etc.%27%5D'),
  979. messageSends: ["with:", "h1", "class:", "span", "h2", "ul", "li"],
  980. referencedClasses: []
  981. }),
  982. smalltalk.JtalkAndJavascriptSlide2);
  983. smalltalk.addClass('JtalkAndJavascriptSlide', smalltalk.Slide, [], 'Presentation');
  984. smalltalk.addMethod(
  985. '_id',
  986. smalltalk.method({
  987. selector: 'id',
  988. category: 'accessing',
  989. fn: function (){
  990. var self=this;
  991. return "jtalkAndJs";
  992. return self;},
  993. args: [],
  994. source: unescape('id%0A%09%5E%27jtalkAndJs%27'),
  995. messageSends: [],
  996. referencedClasses: []
  997. }),
  998. smalltalk.JtalkAndJavascriptSlide);
  999. smalltalk.addMethod(
  1000. '_cssClass',
  1001. smalltalk.method({
  1002. selector: 'cssClass',
  1003. category: 'accessing',
  1004. fn: function (){
  1005. var self=this;
  1006. return "slide transparent";
  1007. return self;},
  1008. args: [],
  1009. source: unescape('cssClass%0A%09%5E%27slide%20transparent%27'),
  1010. messageSends: [],
  1011. referencedClasses: []
  1012. }),
  1013. smalltalk.JtalkAndJavascriptSlide);
  1014. smalltalk.addMethod(
  1015. '_backgroundColor',
  1016. smalltalk.method({
  1017. selector: 'backgroundColor',
  1018. category: 'accessing',
  1019. fn: function (){
  1020. var self=this;
  1021. return unescape("%2308C");
  1022. return self;},
  1023. args: [],
  1024. source: unescape('backgroundColor%0A%09%5E%27%2308C%27'),
  1025. messageSends: [],
  1026. referencedClasses: []
  1027. }),
  1028. smalltalk.JtalkAndJavascriptSlide);
  1029. smalltalk.addMethod(
  1030. '_renderSlideOn_',
  1031. smalltalk.method({
  1032. selector: 'renderSlideOn:',
  1033. category: 'rendering',
  1034. fn: function (html){
  1035. var self=this;
  1036. (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", []));
  1037. return self;},
  1038. args: ["html"],
  1039. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%5B%0A%09%09%09html%20with%3A%20%27Smalltalk%20%27.%0A%09%09%09html%20span%20class%3A%20%27red%27%3B%20with%3A%20%27%u2665%27.%0A%09%09%09html%20with%3A%20%27%20JavaScript%27%5D%5D'),
  1040. messageSends: ["class:", "with:", "h1", "span", "div"],
  1041. referencedClasses: []
  1042. }),
  1043. smalltalk.JtalkAndJavascriptSlide);
  1044. smalltalk.addClass('WorkspaceSlide', smalltalk.Slide, [], 'Presentation');
  1045. smalltalk.addMethod(
  1046. '_id',
  1047. smalltalk.method({
  1048. selector: 'id',
  1049. category: 'accessing',
  1050. fn: function (){
  1051. var self=this;
  1052. return "workspace";
  1053. return self;},
  1054. args: [],
  1055. source: unescape('id%0A%09%5E%27workspace%27'),
  1056. messageSends: [],
  1057. referencedClasses: []
  1058. }),
  1059. smalltalk.WorkspaceSlide);
  1060. smalltalk.addMethod(
  1061. '_backgroundColor',
  1062. smalltalk.method({
  1063. selector: 'backgroundColor',
  1064. category: 'accessing',
  1065. fn: function (){
  1066. var self=this;
  1067. return unescape("%2318bd7d");
  1068. return self;},
  1069. args: [],
  1070. source: unescape('backgroundColor%0A%09%5E%27%2318bd7d%27'),
  1071. messageSends: [],
  1072. referencedClasses: []
  1073. }),
  1074. smalltalk.WorkspaceSlide);
  1075. smalltalk.addMethod(
  1076. '_renderSlideOn_',
  1077. smalltalk.method({
  1078. selector: 'renderSlideOn:',
  1079. category: 'accessing',
  1080. fn: function (html){
  1081. var self=this;
  1082. var workspace=nil;
  1083. workspace=smalltalk.send((smalltalk.SourceArea || SourceArea), "_new", []);
  1084. (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", []));
  1085. return self;},
  1086. args: ["html"],
  1087. source: unescape('renderSlideOn%3A%20html%0A%09%7C%20workspace%20%7C%0A%09workspace%20%3A%3D%20SourceArea%20new.%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%27Give%20Jtalk%20a%20try%21%27.%0A%09%09workspace%20renderOn%3A%20html.%0A%09%09html%20div%20with%3A%20%5B%0A%09%09%09html%20button%0A%09%09%09%09with%3A%20%27DoIt%27%3B%0A%09%09%09%09onClick%3A%20%5Bworkspace%20doIt%5D.%0A%09%09%09html%20button%0A%09%09%09%09with%3A%20%27PrintIt%27%3B%0A%09%09%09%09onClick%3A%20%5Bworkspace%20printIt%5D.%0A%09%09%09html%20button%0A%09%09%09%09with%3A%20%27InspectIt%27%3B%0A%09%09%09%09onClick%3A%20%5Bworkspace%20inspectIt%5D%5D%5D'),
  1088. messageSends: ["new", "class:", "with:", "h1", "renderOn:", "div", "onClick:", "doIt", "button", "printIt", "inspectIt"],
  1089. referencedClasses: []
  1090. }),
  1091. smalltalk.WorkspaceSlide);
  1092. smalltalk.addClass('CountersSlide', smalltalk.Slide, [], 'Presentation');
  1093. smalltalk.addMethod(
  1094. '_id',
  1095. smalltalk.method({
  1096. selector: 'id',
  1097. category: 'accessing',
  1098. fn: function (){
  1099. var self=this;
  1100. return "counters";
  1101. return self;},
  1102. args: [],
  1103. source: unescape('id%0A%09%5E%27counters%27'),
  1104. messageSends: [],
  1105. referencedClasses: []
  1106. }),
  1107. smalltalk.CountersSlide);
  1108. smalltalk.addMethod(
  1109. '_backgroundColor',
  1110. smalltalk.method({
  1111. selector: 'backgroundColor',
  1112. category: 'accessing',
  1113. fn: function (){
  1114. var self=this;
  1115. return unescape("%2318bd7d");
  1116. return self;},
  1117. args: [],
  1118. source: unescape('backgroundColor%0A%09%5E%27%2318bd7d%27'),
  1119. messageSends: [],
  1120. referencedClasses: []
  1121. }),
  1122. smalltalk.CountersSlide);
  1123. smalltalk.addMethod(
  1124. '_renderSlideOn_',
  1125. smalltalk.method({
  1126. selector: 'renderSlideOn:',
  1127. category: 'rendering',
  1128. fn: function (html){
  1129. var self=this;
  1130. (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", []));
  1131. return self;},
  1132. args: ["html"],
  1133. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20with%3A%20%27The%20counter%20example%27.%0A%09%09html%20div%20with%3A%20%5B%0A%09%09%092%20timesRepeat%3A%20%5BCounter%20new%20renderOn%3A%20html%5D%5D%5D'),
  1134. messageSends: ["class:", "with:", "h1", "div", "timesRepeat:", "renderOn:", "new"],
  1135. referencedClasses: []
  1136. }),
  1137. smalltalk.CountersSlide);
  1138. smalltalk.addClass('JtalkAndJavascriptSlide4', smalltalk.Slide, [], 'Presentation');
  1139. smalltalk.addMethod(
  1140. '_id',
  1141. smalltalk.method({
  1142. selector: 'id',
  1143. category: 'accessing',
  1144. fn: function (){
  1145. var self=this;
  1146. return "jtalkAndJs4";
  1147. return self;},
  1148. args: [],
  1149. source: unescape('id%0A%09%5E%27jtalkAndJs4%27'),
  1150. messageSends: [],
  1151. referencedClasses: []
  1152. }),
  1153. smalltalk.JtalkAndJavascriptSlide4);
  1154. smalltalk.addMethod(
  1155. '_backgroundColor',
  1156. smalltalk.method({
  1157. selector: 'backgroundColor',
  1158. category: 'accessing',
  1159. fn: function (){
  1160. var self=this;
  1161. return unescape("%2308C");
  1162. return self;},
  1163. args: [],
  1164. source: unescape('backgroundColor%0A%09%5E%27%2308C%27'),
  1165. messageSends: [],
  1166. referencedClasses: []
  1167. }),
  1168. smalltalk.JtalkAndJavascriptSlide4);
  1169. smalltalk.addMethod(
  1170. '_renderSlideOn_',
  1171. smalltalk.method({
  1172. selector: 'renderSlideOn:',
  1173. category: 'rendering',
  1174. fn: function (html){
  1175. var self=this;
  1176. 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);})]);
  1177. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("JavaScript%20%u21D2%20Smalltalk")]);
  1178. 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", []));})]);
  1179. return self;},
  1180. args: ["html"],
  1181. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27JavaScript%20%27.%0A%09%09html%20span%20class%3A%20%27red%27%3B%20with%3A%20%27%u2665%27.%0A%09%09html%20with%3A%20%27%20Smalltalk%20too%21%20%27%3B%0A%09%09with%3A%20%5Bhtml%20span%20class%3A%20%27comment%27%3B%20with%3A%20%27%28how%20cute%29%27%5D%5D.%0A%09html%20h2%20with%3A%20%27JavaScript%20%u21D2%20Smalltalk%27.%0A%09html%20ol%20with%3A%20%5B%0A%09%09html%20li%20%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27someUser.name%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27someUser%20name%27%5D.%0A%09%09html%20li%20%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27someUser%20name%20%3D%20%22John%22%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27someUser%20name%3A%20%27%27John%27%27%27%5D.%0A%09%09html%20li%20%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27console.log%28%27%27hello%20world%27%27%29%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27console%20log%3A%20%27%27hello%20world%27%27%27%5D.%0A%09%09html%20li%20%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27window.jQuery%28%27%27foo%27%27%29.css%28%27%27background%27%27%2C%20%27%27red%27%27%29%27%5D%3B%0A%09%09%09with%3A%20%27%20becomes%20%27%3B%0A%09%09%09with%3A%20%5Bhtml%20br%5D%3B%0A%09%09%09with%3A%20%5Bhtml%20code%20with%3A%20%27%28window%20jQuery%3A%20%27%27foo%27%27%29%20css%3A%20%27%27background%27%27%20color%3A%20%27%27red%27%27%27%5D%5D'),
  1182. messageSends: ["with:", "h1", "class:", "span", "h2", "ol", "code", "li", "br"],
  1183. referencedClasses: []
  1184. }),
  1185. smalltalk.JtalkAndJavascriptSlide4);
  1186. smalltalk.addClass('IDESlide', smalltalk.Slide, [], 'Presentation');
  1187. smalltalk.addMethod(
  1188. '_id',
  1189. smalltalk.method({
  1190. selector: 'id',
  1191. category: 'accessing',
  1192. fn: function (){
  1193. var self=this;
  1194. return "ide";
  1195. return self;},
  1196. args: [],
  1197. source: unescape('id%0A%09%5E%27ide%27'),
  1198. messageSends: [],
  1199. referencedClasses: []
  1200. }),
  1201. smalltalk.IDESlide);
  1202. smalltalk.addMethod(
  1203. '_backgroundColor',
  1204. smalltalk.method({
  1205. selector: 'backgroundColor',
  1206. category: 'accessing',
  1207. fn: function (){
  1208. var self=this;
  1209. return "black";
  1210. return self;},
  1211. args: [],
  1212. source: unescape('backgroundColor%0A%09%5E%27black%27'),
  1213. messageSends: [],
  1214. referencedClasses: []
  1215. }),
  1216. smalltalk.IDESlide);
  1217. smalltalk.addMethod(
  1218. '_cssClass',
  1219. smalltalk.method({
  1220. selector: 'cssClass',
  1221. category: 'accessing',
  1222. fn: function (){
  1223. var self=this;
  1224. return "slide transparent";
  1225. return self;},
  1226. args: [],
  1227. source: unescape('cssClass%0A%09%5E%27slide%20transparent%27'),
  1228. messageSends: [],
  1229. referencedClasses: []
  1230. }),
  1231. smalltalk.IDESlide);
  1232. smalltalk.addMethod(
  1233. '_renderSlideOn_',
  1234. smalltalk.method({
  1235. selector: 'renderSlideOn:',
  1236. category: 'rendering',
  1237. fn: function (html){
  1238. var self=this;
  1239. return self;},
  1240. args: ["html"],
  1241. source: unescape('renderSlideOn%3A%20html%0A%22%09html%20div%20class%3A%20%27section%20center%27%3B%20with%3A%20%5B%0A%09%09html%20h1%20%0A%09%09%09with%3A%20%27The%20wonderful%20Jtalk%20%27%3B%0A%09%09%09with%3A%20%5B%0A%09%09%09%09html%20a%20%0A%09%09%09%09%09with%3A%20%27development%20tools%27%3B%0A%09%09%09%09%09onClick%3A%20%5BTabManager%20current%20open%5D%5D%3B%0A%09%09%09with%3A%20%27.%27%5D%0A%22'),
  1242. messageSends: [],
  1243. referencedClasses: []
  1244. }),
  1245. smalltalk.IDESlide);
  1246. smalltalk.addClass('ContributionsSlide', smalltalk.Slide, [], 'Presentation');
  1247. smalltalk.addMethod(
  1248. '_id',
  1249. smalltalk.method({
  1250. selector: 'id',
  1251. category: 'accessing',
  1252. fn: function (){
  1253. var self=this;
  1254. return "links";
  1255. return self;},
  1256. args: [],
  1257. source: unescape('id%0A%09%5E%27links%27'),
  1258. messageSends: [],
  1259. referencedClasses: []
  1260. }),
  1261. smalltalk.ContributionsSlide);
  1262. smalltalk.addMethod(
  1263. '_renderSlideOn_',
  1264. smalltalk.method({
  1265. selector: 'renderSlideOn:',
  1266. category: 'rendering',
  1267. fn: function (html){
  1268. var self=this;
  1269. (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", []));
  1270. return self;},
  1271. args: ["html"],
  1272. source: unescape('renderSlideOn%3A%20html%0A%09html%20div%20class%3A%20%27section%27%3B%20with%3A%20%5B%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%20href%3A%20%27http%3A//jtalk-project.org%27%3B%20with%3A%20%27jtalk-project.org%27%5D.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%20href%3A%20%27https%3A//github.com/NicolasPetton/jtalk%27%3B%20with%3A%20%27github.com/NicolasPetton/jtalk%27%5D.%0A%09%09html%20p%20with%3A%20%5B%0A%09%09%09html%20a%20href%3A%20%27http%3A//http%3A//groups.google.com/group/jtalk-project%27%3B%20with%3A%20%27groups.google.com/group/jtalk-project%27%5D%5D'),
  1273. messageSends: ["class:", "with:", "p", "href:", "a", "div"],
  1274. referencedClasses: []
  1275. }),
  1276. smalltalk.ContributionsSlide);
  1277. smalltalk.addClass('JtalkAndCLI', smalltalk.Slide, [], 'Presentation');
  1278. smalltalk.addMethod(
  1279. '_backgroundColor',
  1280. smalltalk.method({
  1281. selector: 'backgroundColor',
  1282. category: 'not yet classified',
  1283. fn: function (){
  1284. var self=this;
  1285. return unescape("%230A1");
  1286. return self;},
  1287. args: [],
  1288. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  1289. messageSends: [],
  1290. referencedClasses: []
  1291. }),
  1292. smalltalk.JtalkAndCLI);
  1293. smalltalk.addMethod(
  1294. '_id',
  1295. smalltalk.method({
  1296. selector: 'id',
  1297. category: 'not yet classified',
  1298. fn: function (){
  1299. var self=this;
  1300. return "JtalkAndCLI";
  1301. return self;},
  1302. args: [],
  1303. source: unescape('id%0A%09%5E%27JtalkAndCLI%27'),
  1304. messageSends: [],
  1305. referencedClasses: []
  1306. }),
  1307. smalltalk.JtalkAndCLI);
  1308. smalltalk.addMethod(
  1309. '_renderSlideOn_',
  1310. smalltalk.method({
  1311. selector: 'renderSlideOn:',
  1312. category: 'not yet classified',
  1313. fn: function (html){
  1314. var self=this;
  1315. 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", []));})]);
  1316. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("jtalkc%20-%20a%20fairly%20elaborate%20bash%20script%20that%3A")]);
  1317. 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"]);})]);
  1318. return self;},
  1319. args: ["html"],
  1320. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27the%20command%20line%27%5D.%0A%0A%09html%20h2%20with%3A%20%27jtalkc%20-%20a%20fairly%20elaborate%20bash%20script%20that%3A%27.%0A%0A%09html%20ul%20with%3A%20%5B%0A%09%09html%20li%20with%3A%20%27Uses%20Node.js%20to%20run%20the%20Jtalk%20Compiler%27.%0A%09%09html%20li%20with%3A%20%27Compiles%20.st%20files%20to%20.js%27.%0A%09%09html%20li%20with%3A%20%27Links%20.js%20files%20into%20a%20single%20one%27.%0A%09%09html%20li%20with%3A%20%27Adds%20class%20initilization%20and/or%20call%20to%20main%27.%0A%09%09html%20li%20with%3A%20%27Optionally%20runs%20Google%20Closure%20compiler%27%5D'),
  1321. messageSends: ["with:", "h1", "class:", "span", "h2", "ul", "li"],
  1322. referencedClasses: []
  1323. }),
  1324. smalltalk.JtalkAndCLI);
  1325. smalltalk.addClass('JtalkAndNode', smalltalk.Slide, [], 'Presentation');
  1326. smalltalk.addMethod(
  1327. '_backgroundColor',
  1328. smalltalk.method({
  1329. selector: 'backgroundColor',
  1330. category: 'not yet classified',
  1331. fn: function (){
  1332. var self=this;
  1333. return unescape("%230A1");
  1334. return self;},
  1335. args: [],
  1336. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  1337. messageSends: [],
  1338. referencedClasses: []
  1339. }),
  1340. smalltalk.JtalkAndNode);
  1341. smalltalk.addMethod(
  1342. '_id',
  1343. smalltalk.method({
  1344. selector: 'id',
  1345. category: 'not yet classified',
  1346. fn: function (){
  1347. var self=this;
  1348. return "JtalkAndNode";
  1349. return self;},
  1350. args: [],
  1351. source: unescape('id%0A%09%5E%27JtalkAndNode%27'),
  1352. messageSends: [],
  1353. referencedClasses: []
  1354. }),
  1355. smalltalk.JtalkAndNode);
  1356. smalltalk.addMethod(
  1357. '_renderSlideOn_',
  1358. smalltalk.method({
  1359. selector: 'renderSlideOn:',
  1360. category: 'not yet classified',
  1361. fn: function (html){
  1362. var self=this;
  1363. 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", []));})]);
  1364. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Hello.st:"]);
  1365. 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", []));})]);
  1366. return self;},
  1367. args: ["html"],
  1368. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27Node.js%27%5D.%0A%0A%09html%20h2%20with%3A%20%27Hello.st%3A%27.%0A%09html%20pre%20with%3A%20%5B%0A%09%09html%20div%20class%3A%20%27code2%27%3B%20with%3A%20%20%27Object%20subclass%3A%20%23Hello%0A%20%20%20%20%20%20%20%20instanceVariableNames%3A%20%27%27%27%27%0A%20%20%20%20%20%20%20%20category%3A%20%27%27Hello%27%27%21%0A%0A%21Hello%20class%20methodsFor%3A%20%27%27main%27%27%21%0Amain%0A%09console%20log%3A%20%27%27Hello%20world%20from%20JTalk%20in%20Node.js%27%27%0A%21%20%21%27%5D'),
  1369. messageSends: ["with:", "h1", "class:", "span", "h2", "pre", "div"],
  1370. referencedClasses: []
  1371. }),
  1372. smalltalk.JtalkAndNode);
  1373. smalltalk.addClass('JtalkAndNode2', smalltalk.Slide, [], 'Presentation');
  1374. smalltalk.addMethod(
  1375. '_backgroundColor',
  1376. smalltalk.method({
  1377. selector: 'backgroundColor',
  1378. category: 'not yet classified',
  1379. fn: function (){
  1380. var self=this;
  1381. return unescape("%230A1");
  1382. return self;},
  1383. args: [],
  1384. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  1385. messageSends: [],
  1386. referencedClasses: []
  1387. }),
  1388. smalltalk.JtalkAndNode2);
  1389. smalltalk.addMethod(
  1390. '_id',
  1391. smalltalk.method({
  1392. selector: 'id',
  1393. category: 'not yet classified',
  1394. fn: function (){
  1395. var self=this;
  1396. return "JtalkAndNode2";
  1397. return self;},
  1398. args: [],
  1399. source: unescape('id%0A%09%5E%27JtalkAndNode2%27'),
  1400. messageSends: [],
  1401. referencedClasses: []
  1402. }),
  1403. smalltalk.JtalkAndNode2);
  1404. smalltalk.addMethod(
  1405. '_renderSlideOn_',
  1406. smalltalk.method({
  1407. selector: 'renderSlideOn:',
  1408. category: 'not yet classified',
  1409. fn: function (html){
  1410. var self=this;
  1411. 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", []));})]);
  1412. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Makefile:"]);
  1413. 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", []));})]);
  1414. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["hello:"]);
  1415. 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", []));})]);
  1416. return self;},
  1417. args: ["html"],
  1418. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27Node.js%27%5D.%0A%0A%09html%20h2%20with%3A%20%27Makefile%3A%27.%0A%09html%20pre%20with%3A%20%5B%0A%09%09html%20div%20class%3A%20%27code2%27%3B%20with%3A%20%20%27Program.js%3A%20Hello.st%0A%09../../bin/jtalkc%20-N%20-m%20Hello%20Hello.st%20Program%0A%0Arun%3A%20Program.js%0A%09./hello%0A%0Aclean%3A%0A%09rm%20-f%20Program.js%20Hello.js%0A%27%5D.%0Ahtml%20h2%20with%3A%20%27hello%3A%27.%0A%09html%20pre%20with%3A%20%5B%0A%09%09html%20div%20class%3A%20%27code2%27%3B%20with%3A%20%20%27node%20Program.js%20%24@%27%5D'),
  1419. messageSends: ["with:", "h1", "class:", "span", "h2", "pre", "div"],
  1420. referencedClasses: []
  1421. }),
  1422. smalltalk.JtalkAndNode2);
  1423. smalltalk.addClass('JtalkAndNode3', smalltalk.Slide, [], 'Presentation');
  1424. smalltalk.addMethod(
  1425. '_backgroundColor',
  1426. smalltalk.method({
  1427. selector: 'backgroundColor',
  1428. category: 'not yet classified',
  1429. fn: function (){
  1430. var self=this;
  1431. return unescape("%230A1");
  1432. return self;},
  1433. args: [],
  1434. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  1435. messageSends: [],
  1436. referencedClasses: []
  1437. }),
  1438. smalltalk.JtalkAndNode3);
  1439. smalltalk.addMethod(
  1440. '_id',
  1441. smalltalk.method({
  1442. selector: 'id',
  1443. category: 'not yet classified',
  1444. fn: function (){
  1445. var self=this;
  1446. return "JtalkAndNode3";
  1447. return self;},
  1448. args: [],
  1449. source: unescape('id%0A%09%5E%27JtalkAndNode3%27'),
  1450. messageSends: [],
  1451. referencedClasses: []
  1452. }),
  1453. smalltalk.JtalkAndNode3);
  1454. smalltalk.addMethod(
  1455. '_renderSlideOn_',
  1456. smalltalk.method({
  1457. selector: 'renderSlideOn:',
  1458. category: 'not yet classified',
  1459. fn: function (html){
  1460. var self=this;
  1461. 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", []));})]);
  1462. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("make%20clean%20%26%26%20make%20run%3A")]);
  1463. 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", []));})]);
  1464. return self;},
  1465. args: ["html"],
  1466. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27Node.js%27%5D.%0A%0A%09html%20h2%20with%3A%20%27make%20clean%20%26%26%20make%20run%3A%27.%0A%0A%09html%20pre%20with%3A%20%5B%0A%09%09html%20div%20class%3A%20%27code2%27%3B%20with%3A%20%20%27rm%20-f%20Program.js%20Hello.js%0A../../bin/jtalkc%20-N%20-m%20Hello%20Hello.st%20Program%0ALoading%20libraries%20%20/home/gokr/jtalk/js/boot.js%20/home/gokr/jtalk/js/Kernel.js%0A/home/gokr/jtalk/js/Parser.js%20/home/gokr/jtalk/js/Compiler.js%0A/home/gokr/jtalk/js/init.js%20/home/gokr/jtalk/nodejs/nodecompile.js%0Aand%20compiling%20...%0ACompiling%20in%20debugMode%3A%20false%0AReading%20file%20Hello.st%0AExporting%20category%20Hello%20as%20Hello.js%0AAdding%20libraries%20%20/home/gokr/jtalk/js/boot.js%20/home/gokr/jtalk/js/Kernel.js%20%20...%0AAdding%20Jtalk%20code%20Hello.js%20...%0AAdding%20initializer%20/home/gokr/jtalk/js/init.js%20...%0AAdding%20call%20to%20Hello%20class%20%3E%3E%20main%20...%0AWriting%20Program.js%20...%0ADone.%0A./hello%27.%0Ahtml%20span%20class%3A%20%27blue%27%3B%20with%3A%27Hello%20world%20from%20JTalk%20in%20Node.js%27%5D'),
  1467. messageSends: ["with:", "h1", "class:", "span", "h2", "pre", "div"],
  1468. referencedClasses: []
  1469. }),
  1470. smalltalk.JtalkAndNode3);
  1471. smalltalk.addClass('JtalkAndWebOS', smalltalk.Slide, [], 'Presentation');
  1472. smalltalk.addMethod(
  1473. '_backgroundColor',
  1474. smalltalk.method({
  1475. selector: 'backgroundColor',
  1476. category: 'not yet classified',
  1477. fn: function (){
  1478. var self=this;
  1479. return unescape("%230A1");
  1480. return self;},
  1481. args: [],
  1482. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  1483. messageSends: [],
  1484. referencedClasses: []
  1485. }),
  1486. smalltalk.JtalkAndWebOS);
  1487. smalltalk.addMethod(
  1488. '_id',
  1489. smalltalk.method({
  1490. selector: 'id',
  1491. category: 'not yet classified',
  1492. fn: function (){
  1493. var self=this;
  1494. return "JtalkAndWebOS";
  1495. return self;},
  1496. args: [],
  1497. source: unescape('id%0A%09%5E%27JtalkAndWebOS%27'),
  1498. messageSends: [],
  1499. referencedClasses: []
  1500. }),
  1501. smalltalk.JtalkAndWebOS);
  1502. smalltalk.addMethod(
  1503. '_renderSlideOn_',
  1504. smalltalk.method({
  1505. selector: 'renderSlideOn:',
  1506. category: 'not yet classified',
  1507. fn: function (html){
  1508. var self=this;
  1509. 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", []));})]);
  1510. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["A really cool mobile OS based on Linux:"]);
  1511. 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"]);})]);
  1512. return self;},
  1513. args: ["html"],
  1514. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27webOS%27%5D.%0A%0A%09html%20h2%20with%3A%20%27A%20really%20cool%20mobile%20OS%20based%20on%20Linux%3A%27.%0A%0A%09html%20ul%20with%3A%20%5B%0A%09%09html%20li%20with%3A%20%27The%20primary%20language%20in%20webOS%20is%20Javascript%27.%0A%09%09html%20li%20with%3A%20%27The%20new%20UI%20framework%20for%20webOS%203.0%20is%20called%20Enyo%27.%0A%09%09html%20li%20with%3A%20%27Regular%20apps%20run%20in%20V8%20+%20Webkit%27.%0A%09%09html%20li%20with%3A%20%27Background%20services%20run%20in%20Node.js%27%5D'),
  1515. messageSends: ["with:", "h1", "class:", "span", "h2", "ul", "li"],
  1516. referencedClasses: []
  1517. }),
  1518. smalltalk.JtalkAndWebOS);
  1519. smalltalk.addClass('JtalkAndEnyo', smalltalk.Slide, [], 'Presentation');
  1520. smalltalk.addMethod(
  1521. '_id',
  1522. smalltalk.method({
  1523. selector: 'id',
  1524. category: 'not yet classified',
  1525. fn: function (){
  1526. var self=this;
  1527. return "JtalkAndEnyo";
  1528. return self;},
  1529. args: [],
  1530. source: unescape('id%0A%09%5E%27JtalkAndEnyo%27'),
  1531. messageSends: [],
  1532. referencedClasses: []
  1533. }),
  1534. smalltalk.JtalkAndEnyo);
  1535. smalltalk.addMethod(
  1536. '_backgroundColor',
  1537. smalltalk.method({
  1538. selector: 'backgroundColor',
  1539. category: 'not yet classified',
  1540. fn: function (){
  1541. var self=this;
  1542. return unescape("%230A1");
  1543. return self;},
  1544. args: [],
  1545. source: unescape('backgroundColor%0A%09%5E%27%230A1%27'),
  1546. messageSends: [],
  1547. referencedClasses: []
  1548. }),
  1549. smalltalk.JtalkAndEnyo);
  1550. smalltalk.addMethod(
  1551. '_renderSlideOn_',
  1552. smalltalk.method({
  1553. selector: 'renderSlideOn:',
  1554. category: 'not yet classified',
  1555. fn: function (html){
  1556. var self=this;
  1557. 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", []));})]);
  1558. return self;},
  1559. args: ["html"],
  1560. source: unescape('renderSlideOn%3A%20html%0A%09html%20h1%20with%3A%20%5B%0A%09%09html%20with%3A%20%27Jtalk%20and%20%27.%0A%09%09html%20span%20class%3A%20%27blue%27%3B%20with%3A%20%27Enyo%27%5D.'),
  1561. messageSends: ["with:", "h1", "class:", "span"],
  1562. referencedClasses: []
  1563. }),
  1564. smalltalk.JtalkAndEnyo);