1
0

Presentation.deploy.js 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. smalltalk.addPackage('Presentation', {});
  2. smalltalk.addClass('Presentation', smalltalk.Widget, ['currentSlide', 'slides'], 'Presentation');
  3. smalltalk.addMethod(
  4. unescape('_title'),
  5. smalltalk.method({
  6. selector: unescape('title'),
  7. fn: function (){
  8. var self=this;
  9. return smalltalk.send(smalltalk.send(self, "_class", []), "_title", []);
  10. return self;}
  11. }),
  12. smalltalk.Presentation);
  13. smalltalk.addMethod(
  14. unescape('_author'),
  15. smalltalk.method({
  16. selector: unescape('author'),
  17. fn: function (){
  18. var self=this;
  19. return "John Smith";
  20. return self;}
  21. }),
  22. smalltalk.Presentation);
  23. smalltalk.addMethod(
  24. unescape('_url'),
  25. smalltalk.method({
  26. selector: unescape('url'),
  27. fn: function (){
  28. var self=this;
  29. return unescape("http%3A//jtalk-project.org");
  30. return self;}
  31. }),
  32. smalltalk.Presentation);
  33. smalltalk.addMethod(
  34. unescape('_description'),
  35. smalltalk.method({
  36. selector: unescape('description'),
  37. fn: function (){
  38. var self=this;
  39. return "A presentation written in Jtalk";
  40. return self;}
  41. }),
  42. smalltalk.Presentation);
  43. smalltalk.addMethod(
  44. unescape('_email'),
  45. smalltalk.method({
  46. selector: unescape('email'),
  47. fn: function (){
  48. var self=this;
  49. return unescape("john@smith.com");
  50. return self;}
  51. }),
  52. smalltalk.Presentation);
  53. smalltalk.addMethod(
  54. unescape('_slides'),
  55. smalltalk.method({
  56. selector: unescape('slides'),
  57. fn: function (){
  58. var self=this;
  59. (($receiver = self['@slides']) == nil || $receiver == undefined) ? (function(){return smalltalk.send(self, "_initSlides", []);})() : $receiver;
  60. return self['@slides'];
  61. return self;}
  62. }),
  63. smalltalk.Presentation);
  64. smalltalk.addMethod(
  65. unescape('_slideClasses'),
  66. smalltalk.method({
  67. selector: unescape('slideClasses'),
  68. fn: function (){
  69. var self=this;
  70. return smalltalk.send(self, "_subclassResponsibility", []);
  71. return self;}
  72. }),
  73. smalltalk.Presentation);
  74. smalltalk.addMethod(
  75. unescape('_currentSlide'),
  76. smalltalk.method({
  77. selector: unescape('currentSlide'),
  78. fn: function (){
  79. var self=this;
  80. return self['@currentSlide'];
  81. return self;}
  82. }),
  83. smalltalk.Presentation);
  84. smalltalk.addMethod(
  85. unescape('_currentSlide_'),
  86. smalltalk.method({
  87. selector: unescape('currentSlide%3A'),
  88. fn: function (aSlide){
  89. var self=this;
  90. (self['@currentSlide']=aSlide);
  91. return self;}
  92. }),
  93. smalltalk.Presentation);
  94. smalltalk.addMethod(
  95. unescape('_slideTransition'),
  96. smalltalk.method({
  97. selector: unescape('slideTransition'),
  98. fn: function (){
  99. var self=this;
  100. return "fade";
  101. return self;}
  102. }),
  103. smalltalk.Presentation);
  104. smalltalk.addMethod(
  105. unescape('_style'),
  106. smalltalk.method({
  107. selector: unescape('style'),
  108. fn: function (){
  109. var self=this;
  110. return "";
  111. return self;}
  112. }),
  113. smalltalk.Presentation);
  114. smalltalk.addMethod(
  115. unescape('_nextSlide'),
  116. smalltalk.method({
  117. selector: unescape('nextSlide'),
  118. fn: function (){
  119. var self=this;
  120. var next=nil;
  121. (($receiver = smalltalk.send(self, "_currentSlide", [])) != nil && $receiver != undefined) ? (function(){(next=smalltalk.send(smalltalk.send(self, "_slides", []), "_at_ifAbsent_", [((($receiver = smalltalk.send(self, "_currentSlideIndex", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)])), (function(){return nil;})]));return (($receiver = next) != nil && $receiver != undefined) ? (function(){(self['@currentSlide']=next);return smalltalk.send(next, "_show", []);})() : nil;})() : nil;
  122. return self;}
  123. }),
  124. smalltalk.Presentation);
  125. smalltalk.addMethod(
  126. unescape('_showCurrentSlide'),
  127. smalltalk.method({
  128. selector: unescape('showCurrentSlide'),
  129. fn: function (){
  130. var self=this;
  131. (($receiver = smalltalk.send(self, "_currentSlide", [])) != nil && $receiver != undefined) ? (function(){smalltalk.send(smalltalk.send(".slide", "_asJQuery", []), "_hide", []);smalltalk.send(smalltalk.send(smalltalk.send(unescape("%23"), "__comma", [smalltalk.send(smalltalk.send(self, "_currentSlide", []), "_id", [])]), "_asJQuery", []), "_show", []);return smalltalk.send(smalltalk.send("title", "_asJQuery", []), "_text_", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_title", []), "__comma", [unescape("%20-%20")]), "__comma", [smalltalk.send(smalltalk.send(self, "_currentSlide", []), "_id", [])])]);})() : nil;
  132. return self;}
  133. }),
  134. smalltalk.Presentation);
  135. smalltalk.addMethod(
  136. unescape('_previousSlide'),
  137. smalltalk.method({
  138. selector: unescape('previousSlide'),
  139. fn: function (){
  140. var self=this;
  141. var next=nil;
  142. (($receiver = smalltalk.send(self, "_currentSlide", [])) != nil && $receiver != undefined) ? (function(){(next=smalltalk.send(smalltalk.send(self, "_slides", []), "_at_ifAbsent_", [((($receiver = smalltalk.send(self, "_currentSlideIndex", [])).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), (function(){return nil;})]));return (($receiver = next) != nil && $receiver != undefined) ? (function(){(self['@currentSlide']=next);return smalltalk.send(next, "_show", []);})() : nil;})() : nil;
  143. return self;}
  144. }),
  145. smalltalk.Presentation);
  146. smalltalk.addMethod(
  147. unescape('_moveAt_'),
  148. smalltalk.method({
  149. selector: unescape('moveAt%3A'),
  150. fn: function (anInteger){
  151. var self=this;
  152. var next=nil;
  153. (next=smalltalk.send(smalltalk.send(self, "_slides", []), "_at_ifAbsent_", [anInteger, (function(){return nil;})]));
  154. (($receiver = next) != nil && $receiver != undefined) ? (function(){(self['@currentSlide']=next);return smalltalk.send(next, "_show", []);})() : nil;
  155. return self;}
  156. }),
  157. smalltalk.Presentation);
  158. smalltalk.addMethod(
  159. unescape('_currentSlideIndex'),
  160. smalltalk.method({
  161. selector: unescape('currentSlideIndex'),
  162. fn: function (){
  163. var self=this;
  164. return smalltalk.send(smalltalk.send(self, "_slides", []), "_indexOf_ifAbsent_", [smalltalk.send(self, "_currentSlide", []), (function(){return (1);})]);
  165. return self;}
  166. }),
  167. smalltalk.Presentation);
  168. smalltalk.addMethod(
  169. unescape('_slidesDo_'),
  170. smalltalk.method({
  171. selector: unescape('slidesDo%3A'),
  172. fn: function (aBlockWithArg){
  173. var self=this;
  174. smalltalk.send(smalltalk.send(self, "_slides", []), "_do_", [(function(aSlide){return smalltalk.send(aBlockWithArg, "_value_", [aSlide]);})]);
  175. return self;}
  176. }),
  177. smalltalk.Presentation);
  178. smalltalk.addMethod(
  179. unescape('_initSlides'),
  180. smalltalk.method({
  181. selector: unescape('initSlides'),
  182. fn: function (){
  183. var self=this;
  184. (self['@slides']=smalltalk.send(smalltalk.send(self, "_slideClasses", []), "_collect_", [(function(each){return smalltalk.send(each, "_on_", [self]);})]));
  185. return self;}
  186. }),
  187. smalltalk.Presentation);
  188. smalltalk.addMethod(
  189. unescape('_renderOn_'),
  190. smalltalk.method({
  191. selector: unescape('renderOn%3A'),
  192. fn: function (html){
  193. var self=this;
  194. (function($rec){smalltalk.send($rec, "_type_", [unescape("text/css")]);return smalltalk.send($rec, "_with_", [smalltalk.send(self, "_style", [])]);})(smalltalk.send(html, "_style", []));
  195. (function($rec){smalltalk.send($rec, "_id_", ["slides"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderSlidesOn_", [html]);})]);})(smalltalk.send(html, "_div", []));
  196. return self;}
  197. }),
  198. smalltalk.Presentation);
  199. smalltalk.addMethod(
  200. unescape('_renderSlidesOn_'),
  201. smalltalk.method({
  202. selector: unescape('renderSlidesOn%3A'),
  203. fn: function (html){
  204. var self=this;
  205. smalltalk.send(smalltalk.send(self, "_slides", []), "_do_", [(function(each){return smalltalk.send(each, "_renderOn_", [html]);})]);
  206. (($receiver = self['@currentSlide']) == nil || $receiver == undefined) ? (function(){return (self['@currentSlide']=smalltalk.send(smalltalk.send(self, "_slides", []), "_first", []));})() : $receiver;
  207. smalltalk.send(self, "_showCurrentSlide", []);
  208. return self;}
  209. }),
  210. smalltalk.Presentation);
  211. smalltalk.Presentation.klass.iVarNames = ['current'];
  212. smalltalk.addMethod(
  213. unescape('_concretePresentations'),
  214. smalltalk.method({
  215. selector: unescape('concretePresentations'),
  216. fn: function (){
  217. var self=this;
  218. return smalltalk.send(smalltalk.send(self, "_allSubclasses", []), "_select_", [(function(aPresentationClass){return smalltalk.send(aPresentationClass, "_isConcrete", []);})]);
  219. return self;}
  220. }),
  221. smalltalk.Presentation.klass);
  222. smalltalk.addMethod(
  223. unescape('_title'),
  224. smalltalk.method({
  225. selector: unescape('title'),
  226. fn: function (){
  227. var self=this;
  228. return "Slides";
  229. return self;}
  230. }),
  231. smalltalk.Presentation.klass);
  232. smalltalk.addMethod(
  233. unescape('_concretePresentationsDo_'),
  234. smalltalk.method({
  235. selector: unescape('concretePresentationsDo%3A'),
  236. fn: function (aBlockWithArg){
  237. var self=this;
  238. smalltalk.send(smalltalk.send(self, "_concretePresentations", []), "_do_", [aBlockWithArg]);
  239. return self;}
  240. }),
  241. smalltalk.Presentation.klass);
  242. smalltalk.addMethod(
  243. unescape('_isConcrete'),
  244. smalltalk.method({
  245. selector: unescape('isConcrete'),
  246. fn: function (){
  247. var self=this;
  248. return false;
  249. return self;}
  250. }),
  251. smalltalk.Presentation.klass);
  252. smalltalk.addClass('PresentationNavigator', smalltalk.Widget, ['presentationBrush', 'currentPresentation', 'slideSelect'], 'Presentation');
  253. smalltalk.addMethod(
  254. unescape('_currentPresentation_'),
  255. smalltalk.method({
  256. selector: unescape('currentPresentation%3A'),
  257. fn: function (aPresentation){
  258. var self=this;
  259. (self['@currentPresentation']=aPresentation);
  260. return self;}
  261. }),
  262. smalltalk.PresentationNavigator);
  263. smalltalk.addMethod(
  264. unescape('_currentPresentation'),
  265. smalltalk.method({
  266. selector: unescape('currentPresentation'),
  267. fn: function (){
  268. var self=this;
  269. return (($receiver = self['@currentPresentation']) == nil || $receiver == undefined) ? (function(){return (self['@currentPresentation']=smalltalk.send(smalltalk.send(smalltalk.send((smalltalk.Presentation || Presentation), "_concretePresentations", []), "_first", []), "_new", []));})() : $receiver;
  270. return self;}
  271. }),
  272. smalltalk.PresentationNavigator);
  273. smalltalk.addMethod(
  274. unescape('_style'),
  275. smalltalk.method({
  276. selector: unescape('style'),
  277. fn: function (){
  278. var self=this;
  279. return unescape("%0A%23navigator%20%7B%0A%20%20%20%20z-index%3A%201%3B%0A%20%20%20%20position%3A%20fixed%3B%0A%20%20%20%20top%3A%200%3B%0A%20%20%20%20left%3A%2050%25%3B%0A%20%20%20%20margin-left%3A%20-150px%3B%0A%20%20%20%20padding%3A%205px%3B%0A%20%20%20%20border-radius%3A%205px%3B%0A%20%20%20%20-moz-border-radius%3A%205px%3B%0A%20%20%20%20-webkit-border-radius%3A%205px%3B%0A%20%20%20%20background%3A%20%23333%3B%0A%20%20%20%20opacity%3A%200.3%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%7D%0A%0A%23navigator%20a%20%7B%0A%20%20%20%20font-weight%3A%20bold%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20cursor%3A%20pointer%3B%0A%20%20%20%20padding%3A%200%202px%3B%0A%20%20%20%20font-size%3A%2014px%3B%0A%7D%0A%0A%23navigator%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A");
  280. return self;}
  281. }),
  282. smalltalk.PresentationNavigator);
  283. smalltalk.addMethod(
  284. unescape('_selectPresentation_'),
  285. smalltalk.method({
  286. selector: unescape('selectPresentation%3A'),
  287. fn: function (aPresentationClass){
  288. var self=this;
  289. smalltalk.send(self, "_currentPresentation_", [smalltalk.send(aPresentationClass, "_new", [])]);
  290. smalltalk.send(self, "_renderCurrentPresentation", []);
  291. return self;}
  292. }),
  293. smalltalk.PresentationNavigator);
  294. smalltalk.addMethod(
  295. unescape('_selectPresentationNamed_'),
  296. smalltalk.method({
  297. selector: unescape('selectPresentationNamed%3A'),
  298. fn: function (aString){
  299. var self=this;
  300. var presentationClass=nil;
  301. (presentationClass=smalltalk.send(smalltalk.send((smalltalk.Smalltalk || Smalltalk), "_current", []), "_at_", [aString]));
  302. (($receiver = presentationClass) != nil && $receiver != undefined) ? (function(){return smalltalk.send(self, "_selectPresentation_", [presentationClass]);})() : nil;
  303. return self;}
  304. }),
  305. smalltalk.PresentationNavigator);
  306. smalltalk.addMethod(
  307. unescape('_previousSlide'),
  308. smalltalk.method({
  309. selector: unescape('previousSlide'),
  310. fn: function (){
  311. var self=this;
  312. smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_previousSlide", []);
  313. smalltalk.send(self, "_updateHash", []);
  314. return self;}
  315. }),
  316. smalltalk.PresentationNavigator);
  317. smalltalk.addMethod(
  318. unescape('_nextSlide'),
  319. smalltalk.method({
  320. selector: unescape('nextSlide'),
  321. fn: function (){
  322. var self=this;
  323. smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_nextSlide", []);
  324. smalltalk.send(self, "_updateHash", []);
  325. return self;}
  326. }),
  327. smalltalk.PresentationNavigator);
  328. smalltalk.addMethod(
  329. unescape('_reload'),
  330. smalltalk.method({
  331. selector: unescape('reload'),
  332. fn: function (){
  333. var self=this;
  334. var slideIndex=nil;
  335. (slideIndex=smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_currentSlideIndex", []));
  336. smalltalk.send(self, "_currentPresentation_", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_class", []), "_new", [])]);
  337. smalltalk.send(self, "_renderCurrentPresentation", []);
  338. smalltalk.send(self, "_selectSlideAt_", [slideIndex]);
  339. return self;}
  340. }),
  341. smalltalk.PresentationNavigator);
  342. smalltalk.addMethod(
  343. unescape('_selectSlideAt_'),
  344. smalltalk.method({
  345. selector: unescape('selectSlideAt%3A'),
  346. fn: function (anInteger){
  347. var self=this;
  348. smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_moveAt_", [anInteger]);
  349. smalltalk.send(self, "_updateHash", []);
  350. return self;}
  351. }),
  352. smalltalk.PresentationNavigator);
  353. smalltalk.addMethod(
  354. unescape('_updateHash'),
  355. smalltalk.method({
  356. selector: unescape('updateHash'),
  357. fn: function (){
  358. var self=this;
  359. smalltalk.send(smalltalk.send((typeof document == 'undefined' ? nil : document), "_location", []), "_hash_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_class", []), "_name", []), "__comma", [unescape("-")]), "__comma", [smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_currentSlideIndex", [])])]);
  360. return self;}
  361. }),
  362. smalltalk.PresentationNavigator);
  363. smalltalk.addMethod(
  364. unescape('_checkHash'),
  365. smalltalk.method({
  366. selector: unescape('checkHash'),
  367. fn: function (){
  368. var self=this;
  369. try{var hash=nil;
  370. var presentation=nil;
  371. (hash=smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send((typeof document == 'undefined' ? nil : document), "_location", []), "_hash", []), "_replace_with_", [unescape("%5E%23"), ""]), "_tokenize_", [unescape("-")]));
  372. (presentation=smalltalk.send(smalltalk.send((smalltalk.Presentation || Presentation), "_concretePresentations", []), "_detect_ifNone_", [(function(aPresentationClass){return smalltalk.send(smalltalk.send(aPresentationClass, "_name", []), "__eq_eq", [smalltalk.send(hash, "_first", [])]);}), (function(){return (function(){throw({name: 'stReturn', selector: '_checkHash', fn: function(){return self}})})();})]));
  373. ((($receiver = smalltalk.send(presentation, "__eq_eq", [smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){smalltalk.send(self, "_selectPresentationNamed_", [presentation]);return smalltalk.send(self, "_selectSlideAt_", [smalltalk.send(hash, "_last", [])]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){smalltalk.send(self, "_selectPresentationNamed_", [presentation]);return smalltalk.send(self, "_selectSlideAt_", [smalltalk.send(hash, "_last", [])]);})]));
  374. return self;
  375. } catch(e) {if(e.name === 'stReturn' && e.selector === '_checkHash'){return e.fn()} throw(e)}}
  376. }),
  377. smalltalk.PresentationNavigator);
  378. smalltalk.addMethod(
  379. unescape('_checkHashChange'),
  380. smalltalk.method({
  381. selector: unescape('checkHashChange'),
  382. fn: function (){
  383. var self=this;
  384. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [(typeof window == 'undefined' ? nil : window)]), "_bind_do_", ["hashchange", (function(){return smalltalk.send(self, "_checkHash", []);})]);
  385. return self;}
  386. }),
  387. smalltalk.PresentationNavigator);
  388. smalltalk.addMethod(
  389. unescape('_setKeybindings'),
  390. smalltalk.method({
  391. selector: unescape('setKeybindings'),
  392. fn: function (){
  393. var self=this;
  394. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [(typeof document == 'undefined' ? nil : document)]), "_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. }),
  398. smalltalk.PresentationNavigator);
  399. smalltalk.addMethod(
  400. unescape('_renderToolsOn_'),
  401. smalltalk.method({
  402. selector: unescape('renderToolsOn%3A'),
  403. fn: function (html){
  404. var self=this;
  405. (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", []));
  406. (function($rec){smalltalk.send($rec, "_with_", ["Reload"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_reload", []);})]);})(smalltalk.send(html, "_a", []));
  407. (function($rec){smalltalk.send($rec, "_with_", [unescape("%u2190")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_previousSlide", []);})]);})(smalltalk.send(html, "_a", []));
  408. (function($rec){smalltalk.send($rec, "_with_", [unescape("%u2192")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_nextSlide", []);})]);})(smalltalk.send(html, "_a", []));
  409. return self;}
  410. }),
  411. smalltalk.PresentationNavigator);
  412. smalltalk.addMethod(
  413. unescape('_renderPresentationSelectOn_'),
  414. smalltalk.method({
  415. selector: unescape('renderPresentationSelectOn%3A'),
  416. fn: function (html){
  417. var self=this;
  418. var presentationSelect=nil;
  419. (presentationSelect=smalltalk.send(html, "_select", []));
  420. (function($rec){smalltalk.send($rec, "_onChange_", [(function(){return smalltalk.send(self, "_selectPresentationNamed_", [smalltalk.send(smalltalk.send(presentationSelect, "_asJQuery", []), "_val", [])]);})]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send((smalltalk.Presentation || Presentation), "_concretePresentationsDo_", [(function(aPresentationClass){return (function($rec){smalltalk.send($rec, "_value_", [smalltalk.send(aPresentationClass, "_name", [])]);return smalltalk.send($rec, "_with_", [smalltalk.send(aPresentationClass, "_title", [])]);})(smalltalk.send(html, "_option", []));})]);})]);})(presentationSelect);
  421. return self;}
  422. }),
  423. smalltalk.PresentationNavigator);
  424. smalltalk.addMethod(
  425. unescape('_open'),
  426. smalltalk.method({
  427. selector: unescape('open'),
  428. fn: function (){
  429. var self=this;
  430. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [(typeof document == 'undefined' ? nil : document)]), "_ready_", [(function(){return (function($rec){smalltalk.send($rec, "_appendToJQuery_", [smalltalk.send("body", "_asJQuery", [])]);smalltalk.send($rec, "_setKeybindings", []);return smalltalk.send($rec, "_checkHashChange", []);})(self);})]);
  431. return self;}
  432. }),
  433. smalltalk.PresentationNavigator);
  434. smalltalk.addMethod(
  435. unescape('_renderOn_'),
  436. smalltalk.method({
  437. selector: unescape('renderOn%3A'),
  438. fn: function (html){
  439. var self=this;
  440. (function($rec){smalltalk.send($rec, "_type_", [unescape("text/css")]);return smalltalk.send($rec, "_with_", [smalltalk.send(self, "_style", [])]);})(smalltalk.send(html, "_style", []));
  441. (function($rec){smalltalk.send($rec, "_id_", ["navigator"]);return smalltalk.send($rec, "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_renderToolsOn_", [html]);smalltalk.send($rec, "_renderPresentationSelectOn_", [html]);return smalltalk.send($rec, "_renderSlideSelectOn_", [html]);})(self);})]);})(smalltalk.send(html, "_div", []));
  442. (self['@presentationBrush']=(function($rec){smalltalk.send($rec, "_id_", ["presentation"]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(html, "_div", [])));
  443. smalltalk.send(self, "_checkHash", []);
  444. smalltalk.send(self, "_renderCurrentPresentation", []);
  445. return self;}
  446. }),
  447. smalltalk.PresentationNavigator);
  448. smalltalk.addMethod(
  449. unescape('_renderCurrentPresentation'),
  450. smalltalk.method({
  451. selector: unescape('renderCurrentPresentation'),
  452. fn: function (){
  453. var self=this;
  454. smalltalk.send(self['@presentationBrush'], "_contents_", [(function(html){return smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_renderOn_", [html]);})]);
  455. smalltalk.send(self, "_updateSlideSelect", []);
  456. return self;}
  457. }),
  458. smalltalk.PresentationNavigator);
  459. smalltalk.addMethod(
  460. unescape('_renderSlideSelectOn_'),
  461. smalltalk.method({
  462. selector: unescape('renderSlideSelectOn%3A'),
  463. fn: function (html){
  464. var self=this;
  465. (self['@slideSelect']=smalltalk.send(html, "_select", []));
  466. smalltalk.send(self['@slideSelect'], "_onChange_", [(function(){return smalltalk.send(self, "_selectSlideAt_", [smalltalk.send(smalltalk.send(self['@slideSelect'], "_asJQuery", []), "_val", [])]);})]);
  467. smalltalk.send(self, "_updateSlideSelect", []);
  468. return self;}
  469. }),
  470. smalltalk.PresentationNavigator);
  471. smalltalk.addMethod(
  472. unescape('_updateSlideSelect'),
  473. smalltalk.method({
  474. selector: unescape('updateSlideSelect'),
  475. fn: function (){
  476. var self=this;
  477. smalltalk.send(self['@slideSelect'], "_contents_", [(function(html){var index=nil;
  478. (index=(0));return smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_slidesDo_", [(function(aSlide){(index=((($receiver = index).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)])));return (function($rec){smalltalk.send($rec, "_value_", [index]);return smalltalk.send($rec, "_with_", [smalltalk.send(aSlide, "_title", [])]);})(smalltalk.send(html, "_option", []));})]);})]);
  479. return self;}
  480. }),
  481. smalltalk.PresentationNavigator);
  482. smalltalk.addMethod(
  483. unescape('_initialize'),
  484. smalltalk.method({
  485. selector: unescape('initialize'),
  486. fn: function (){
  487. var self=this;
  488. return smalltalk.send(self, "_open", []);
  489. return self;}
  490. }),
  491. smalltalk.PresentationNavigator.klass);
  492. smalltalk.addMethod(
  493. unescape('_open'),
  494. smalltalk.method({
  495. selector: unescape('open'),
  496. fn: function (){
  497. var self=this;
  498. return smalltalk.send(smalltalk.send(self, "_new", []), "_open", []);
  499. return self;}
  500. }),
  501. smalltalk.PresentationNavigator.klass);
  502. smalltalk.addClass('Slide', smalltalk.Widget, ['presentation'], 'Presentation');
  503. smalltalk.addMethod(
  504. unescape('_presentation'),
  505. smalltalk.method({
  506. selector: unescape('presentation'),
  507. fn: function (){
  508. var self=this;
  509. return self['@presentation'];
  510. return self;}
  511. }),
  512. smalltalk.Slide);
  513. smalltalk.addMethod(
  514. unescape('_presentation_'),
  515. smalltalk.method({
  516. selector: unescape('presentation%3A'),
  517. fn: function (aPresentation){
  518. var self=this;
  519. (self['@presentation']=aPresentation);
  520. return self;}
  521. }),
  522. smalltalk.Slide);
  523. smalltalk.addMethod(
  524. unescape('_id'),
  525. smalltalk.method({
  526. selector: unescape('id'),
  527. fn: function (){
  528. var self=this;
  529. return smalltalk.send(smalltalk.send(self, "_class", []), "_name", []);
  530. return self;}
  531. }),
  532. smalltalk.Slide);
  533. smalltalk.addMethod(
  534. unescape('_cssClass'),
  535. smalltalk.method({
  536. selector: unescape('cssClass'),
  537. fn: function (){
  538. var self=this;
  539. return "slide";
  540. return self;}
  541. }),
  542. smalltalk.Slide);
  543. smalltalk.addMethod(
  544. unescape('_backgroundColor'),
  545. smalltalk.method({
  546. selector: unescape('backgroundColor'),
  547. fn: function (){
  548. var self=this;
  549. return unescape("%23555");
  550. return self;}
  551. }),
  552. smalltalk.Slide);
  553. smalltalk.addMethod(
  554. unescape('_title'),
  555. smalltalk.method({
  556. selector: unescape('title'),
  557. fn: function (){
  558. var self=this;
  559. return smalltalk.send(self, "_id", []);
  560. return self;}
  561. }),
  562. smalltalk.Slide);
  563. smalltalk.addMethod(
  564. unescape('_show'),
  565. smalltalk.method({
  566. selector: unescape('show'),
  567. fn: function (){
  568. var self=this;
  569. (($receiver = smalltalk.send(self, "_backgroundColor", [])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [unescape("%23slides")]), "_css_color_", ["background", smalltalk.send(self, "_backgroundColor", [])]);})() : nil;
  570. smalltalk.send(smalltalk.send((typeof window == 'undefined' ? nil : window), "_jQuery_", [".slide"]), "_hide_options_duration_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_slideTransition", []), [], (300)]);
  571. 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)]);
  572. return self;}
  573. }),
  574. smalltalk.Slide);
  575. smalltalk.addMethod(
  576. unescape('_renderOn_'),
  577. smalltalk.method({
  578. selector: unescape('renderOn%3A'),
  579. fn: function (html){
  580. var self=this;
  581. (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", []));
  582. return self;}
  583. }),
  584. smalltalk.Slide);
  585. smalltalk.addMethod(
  586. unescape('_renderSlideOn_'),
  587. smalltalk.method({
  588. selector: unescape('renderSlideOn%3A'),
  589. fn: function (html){
  590. var self=this;
  591. return self;}
  592. }),
  593. smalltalk.Slide);
  594. smalltalk.addMethod(
  595. unescape('_renderMetaOn_'),
  596. smalltalk.method({
  597. selector: unescape('renderMetaOn%3A'),
  598. fn: function (html){
  599. var self=this;
  600. (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", []));
  601. return self;}
  602. }),
  603. smalltalk.Slide);
  604. smalltalk.addMethod(
  605. unescape('_on_'),
  606. smalltalk.method({
  607. selector: unescape('on%3A'),
  608. fn: function (aPresentation){
  609. var self=this;
  610. return (function($rec){smalltalk.send($rec, "_presentation_", [aPresentation]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  611. return self;}
  612. }),
  613. smalltalk.Slide.klass);
  614. smalltalk.addClass('FOSDEMSlide', smalltalk.Slide, [], 'Presentation');
  615. smalltalk.addMethod(
  616. unescape('_codeSnippet'),
  617. smalltalk.method({
  618. selector: unescape('codeSnippet'),
  619. fn: function (){
  620. var self=this;
  621. smalltalk.send(self, "_subclassResponsibility", []);
  622. return self;}
  623. }),
  624. smalltalk.FOSDEMSlide);
  625. smalltalk.addMethod(
  626. unescape('_renderSnippet_on_'),
  627. smalltalk.method({
  628. selector: unescape('renderSnippet%3Aon%3A'),
  629. fn: function (aString, html){
  630. var self=this;
  631. smalltalk.send((function($rec){smalltalk.send($rec, "_renderOn_", [html]);return smalltalk.send($rec, "_editor", []);})(smalltalk.send((smalltalk.SourceArea || SourceArea), "_new", [])), "_setValue_", [aString]);
  632. return self;}
  633. }),
  634. smalltalk.FOSDEMSlide);
  635. smalltalk.addMethod(
  636. unescape('_renderCodeSnippetOn_'),
  637. smalltalk.method({
  638. selector: unescape('renderCodeSnippetOn%3A'),
  639. fn: function (html){
  640. var self=this;
  641. smalltalk.send((function($rec){smalltalk.send($rec, "_renderOn_", [html]);return smalltalk.send($rec, "_editor", []);})(smalltalk.send((smalltalk.SourceArea || SourceArea), "_new", [])), "_setValue_", [smalltalk.send(self, "_codeSnippet", [])]);
  642. return self;}
  643. }),
  644. smalltalk.FOSDEMSlide);
  645. smalltalk.addClass('FOSDEMREPLSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  646. smalltalk.addMethod(
  647. unescape('_renderSlideOn_'),
  648. smalltalk.method({
  649. selector: unescape('renderSlideOn%3A'),
  650. fn: function (html){
  651. var self=this;
  652. smalltalk.send(html, "_h1_", ["REPL"]);
  653. smalltalk.send(self, "_renderCodeSnippetOn_", [html]);
  654. return self;}
  655. }),
  656. smalltalk.FOSDEMREPLSlide);
  657. smalltalk.addMethod(
  658. unescape('_codeSnippet'),
  659. smalltalk.method({
  660. selector: unescape('codeSnippet'),
  661. fn: function (){
  662. var self=this;
  663. return unescape("./bin/amber%0Afs%20%3A%3D%20require%20value%3A%20%27fs%27.%0Afs%20readdir%3A%20%27/tmp%27%20do%3A%20%5B%3Aerr%20%3Afile%7C%20console%20log%3A%20file%5D");
  664. return self;}
  665. }),
  666. smalltalk.FOSDEMREPLSlide);
  667. smalltalk.addClass('FOSDEMJSToSmalltalk', smalltalk.FOSDEMSlide, [], 'Presentation');
  668. smalltalk.addMethod(
  669. unescape('_cssClass'),
  670. smalltalk.method({
  671. selector: unescape('cssClass'),
  672. fn: function (){
  673. var self=this;
  674. return "slide blue3d";
  675. return self;}
  676. }),
  677. smalltalk.FOSDEMJSToSmalltalk);
  678. smalltalk.addMethod(
  679. unescape('_codeSnippet'),
  680. smalltalk.method({
  681. selector: unescape('codeSnippet'),
  682. fn: function (){
  683. var self=this;
  684. return unescape("var%20counter%20%3D%20window.smalltalk.Counter._new%28%29%3B%0Acounter._appendToJQuery_%28%24%28%27%23jsToSmalltalk%27%29%29%3B");
  685. return self;}
  686. }),
  687. smalltalk.FOSDEMJSToSmalltalk);
  688. smalltalk.addMethod(
  689. unescape('_renderSlideOn_'),
  690. smalltalk.method({
  691. selector: unescape('renderSlideOn%3A'),
  692. fn: function (html){
  693. var self=this;
  694. smalltalk.send(html, "_h1_", ["Call Smalltalk from Javascript"]);
  695. (function($rec){smalltalk.send($rec, "_id_", ["jsToSmalltalk"]);return smalltalk.send($rec, "_style_", ["float: left"]);})(smalltalk.send(html, "_div", []));
  696. smalltalk.send(self, "_renderCodeSnippetOn_", [html]);
  697. return self;}
  698. }),
  699. smalltalk.FOSDEMJSToSmalltalk);
  700. smalltalk.addClass('FOSDEMCanvasSlide', smalltalk.FOSDEMSlide, ['c2d', 'canvas'], 'Presentation');
  701. smalltalk.addMethod(
  702. unescape('_cssClass'),
  703. smalltalk.method({
  704. selector: unescape('cssClass'),
  705. fn: function (){
  706. var self=this;
  707. return "slide red3d";
  708. return self;}
  709. }),
  710. smalltalk.FOSDEMCanvasSlide);
  711. smalltalk.addMethod(
  712. unescape('_drawOnCanvas'),
  713. smalltalk.method({
  714. selector: unescape('drawOnCanvas'),
  715. fn: function (){
  716. var self=this;
  717. var c2d=nil;
  718. (self['@c2d']=smalltalk.send(smalltalk.send(self['@canvas'], "_element", []), "_getContext_", ["2d"]));
  719. smalltalk.send(self['@c2d'], "_clearRect_y_width_height_", [(0), (0), smalltalk.send(smalltalk.send(self['@canvas'], "_element", []), "_width", []), smalltalk.send(smalltalk.send(self['@canvas'], "_element", []), "_height", [])]);
  720. smalltalk.send(smalltalk.send((40), "_atRandom", []), "_timesRepeat_", [(function(){var rgba=nil;
  721. (rgba=smalltalk.send(unescape("%2C"), "_join_", [[smalltalk.send((255), "_atRandom", []),smalltalk.send((255), "_atRandom", []),smalltalk.send((255), "_atRandom", []),((($receiver = smalltalk.send((10), "_atRandom", [])).klass === smalltalk.Number) ? $receiver /(10) : smalltalk.send($receiver, "__slash", [(10)]))]]));smalltalk.send(self['@c2d'], "_at_put_", ["fillStyle", smalltalk.send(smalltalk.send(unescape("rgba%28"), "__comma", [rgba]), "__comma", [unescape("%29")])]);return smalltalk.send(self['@c2d'], "_fillRect_y_width_height_", [smalltalk.send((600), "_atRandom", []), smalltalk.send((300), "_atRandom", []), smalltalk.send((200), "_atRandom", []), smalltalk.send((200), "_atRandom", [])]);})]);
  722. return self;}
  723. }),
  724. smalltalk.FOSDEMCanvasSlide);
  725. smalltalk.addMethod(
  726. unescape('_renderSlideOn_'),
  727. smalltalk.method({
  728. selector: unescape('renderSlideOn%3A'),
  729. fn: function (html){
  730. var self=this;
  731. smalltalk.send(html, "_h1_", ["Playing with canvas"]);
  732. (self['@canvas']=(function($rec){smalltalk.send($rec, "_width_", [(700)]);return smalltalk.send($rec, "_height_", [(400)]);})(smalltalk.send(html, "_canvas", [])));
  733. smalltalk.send(self, "_updateCanvas", []);
  734. return self;}
  735. }),
  736. smalltalk.FOSDEMCanvasSlide);
  737. smalltalk.addMethod(
  738. unescape('_updateCanvas'),
  739. smalltalk.method({
  740. selector: unescape('updateCanvas'),
  741. fn: function (){
  742. var self=this;
  743. smalltalk.send(self, "_drawOnCanvas", []);
  744. smalltalk.send((typeof window == 'undefined' ? nil : window), "_setTimeout_delay_", [(function(){return smalltalk.send(self, "_updateCanvas", []);}), (500)]);
  745. return self;}
  746. }),
  747. smalltalk.FOSDEMCanvasSlide);
  748. smalltalk.addClass('FOSDEMJSPlayGroundSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  749. smalltalk.addMethod(
  750. unescape('_codeSnippet'),
  751. smalltalk.method({
  752. selector: unescape('codeSnippet'),
  753. fn: function (){
  754. var self=this;
  755. return unescape("%7Clogo%7C%0Alogo%3A%3D%27img%23amberlogo%27%20asJQuery.%0A%0Alogo%0A%20%20css%3A%27-webkit-transition%27%20put%3A%27all%2010s%20ease-in-out%27.%0A%0A%3Clogo.css%28%27-webkit-transform%27%2C%20%27rotateY%28360deg%29%27%29%3B%3E.%0A%0Alogo%20click%3A%20%5Bwindow%20alert%3A%20%27This%20is%20cool%20%21%27%5D.%0A%0Alogo%20inspect");
  756. return self;}
  757. }),
  758. smalltalk.FOSDEMJSPlayGroundSlide);
  759. smalltalk.addMethod(
  760. unescape('_renderSlideOn_'),
  761. smalltalk.method({
  762. selector: unescape('renderSlideOn%3A'),
  763. fn: function (html){
  764. var self=this;
  765. (function($rec){smalltalk.send($rec, "_class_", ["section center"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(self, "_renderCodeSnippetOn_", [html]);return (function($rec){smalltalk.send($rec, "_id_", ["amberlogo"]);return smalltalk.send($rec, "_src_", [unescape("fosdem2012/images/amber.png")]);})(smalltalk.send(html, "_img", []));})]);})(smalltalk.send(html, "_div", []));
  766. return self;}
  767. }),
  768. smalltalk.FOSDEMJSPlayGroundSlide);
  769. smalltalk.addClass('FOSDEMAmberBackend', smalltalk.FOSDEMSlide, [], 'Presentation');
  770. smalltalk.addMethod(
  771. unescape('_cssClass'),
  772. smalltalk.method({
  773. selector: unescape('cssClass'),
  774. fn: function (){
  775. var self=this;
  776. return "slide green3d";
  777. return self;}
  778. }),
  779. smalltalk.FOSDEMAmberBackend);
  780. smalltalk.addMethod(
  781. unescape('_renderSlideOn_'),
  782. smalltalk.method({
  783. selector: unescape('renderSlideOn%3A'),
  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(html, "_h1_", [unescape("Need%20a%20backend%20%3F")]);return smalltalk.send(["nodejs.png","php.gif","rails.png","pharo.png","ambrhino.jpg"], "_do_", [(function(aString){return smalltalk.send(html, "_img_", [smalltalk.send(unescape("fosdem2012/images/"), "__comma", [aString])]);})]);})]);})(smalltalk.send(html, "_div", []));
  787. return self;}
  788. }),
  789. smalltalk.FOSDEMAmberBackend);
  790. smalltalk.addClass('FOSDEMBookletSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  791. smalltalk.addMethod(
  792. unescape('_cssClass'),
  793. smalltalk.method({
  794. selector: unescape('cssClass'),
  795. fn: function (){
  796. var self=this;
  797. return "slide blue3d";
  798. return self;}
  799. }),
  800. smalltalk.FOSDEMBookletSlide);
  801. smalltalk.addMethod(
  802. unescape('_style'),
  803. smalltalk.method({
  804. selector: unescape('style'),
  805. fn: function (){
  806. var self=this;
  807. return unescape("%0A%23book%20%7B%20font-size%3A%201.4em%3B%20%7D%0A%23book%20.b-load%20.b-wrap-right%20%7B%20background-color%3A%20%23DEC3A9%3B%7D%0A%23book%20.b-load%20.b-wrap-left%20%7B%20background-color%3A%20%23DDD%3B%7D%20%0A");
  808. return self;}
  809. }),
  810. smalltalk.FOSDEMBookletSlide);
  811. smalltalk.addMethod(
  812. unescape('_renderSlideOn_'),
  813. smalltalk.method({
  814. selector: unescape('renderSlideOn%3A'),
  815. fn: function (html){
  816. var self=this;
  817. smalltalk.send(self, "_renderBookOn_", [html]);
  818. (function($rec){smalltalk.send($rec, "_rel_", ["stylesheet"]);return smalltalk.send($rec, "_href_", [unescape("fosdem2012/lib/booklet/jquery.booklet.1.2.0.css")]);})(smalltalk.send(html, "_link", []));
  819. smalltalk.send(html, "_style_", [smalltalk.send(self, "_style", [])]);
  820. smalltalk.send((typeof jQuery == 'undefined' ? nil : jQuery), "_getScript_do_", [unescape("fosdem2012/lib/booklet/jquery.booklet.1.2.0.min.js"), (function(){return smalltalk.send(smalltalk.send(unescape("%23book"), "_asJQuery", []), "_booklet_", [smalltalk.send(self, "_bookletOptions", [])]);})]);
  821. return self;}
  822. }),
  823. smalltalk.FOSDEMBookletSlide);
  824. smalltalk.addMethod(
  825. unescape('_renderBookOn_'),
  826. smalltalk.method({
  827. selector: unescape('renderBookOn%3A'),
  828. fn: function (html){
  829. var self=this;
  830. (function($rec){smalltalk.send($rec, "_id_", ["book"]);return smalltalk.send($rec, "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_class_", [unescape("b-load")]);return smalltalk.send($rec, "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_div_", ["Amber makes it easy to plug existing javascript libraires"]);smalltalk.send($rec, "_div_", ["Here is an example with the jQuery Booklet plugin"]);smalltalk.send($rec, "_div_", [unescape("Want%20to%20see%20how%20%3F")]);return smalltalk.send($rec, "_div_", [(function(){return (function($rec){smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send((smalltalk.Browser || Browser), "_openOn_", [(smalltalk.FOSDEMBookletSlide || FOSDEMBookletSlide)]);})]);return smalltalk.send($rec, "_with_", [unescape("Just%20browse%20the%20code%20%3A%29")]);})(smalltalk.send(html, "_button", []));})]);})(html);})]);})(smalltalk.send(html, "_div", []));})]);})(smalltalk.send(html, "_div", []));
  831. return self;}
  832. }),
  833. smalltalk.FOSDEMBookletSlide);
  834. smalltalk.addMethod(
  835. unescape('_bookletOptions'),
  836. smalltalk.method({
  837. selector: unescape('bookletOptions'),
  838. fn: function (){
  839. var self=this;
  840. return smalltalk.HashedCollection._fromPairs_([smalltalk.send("arrows", "__minus_gt", [true]),smalltalk.send("keyboard", "__minus_gt", [false]),smalltalk.send("pageNumbers", "__minus_gt", [false]),smalltalk.send("closed", "__minus_gt", [true])]);
  841. return self;}
  842. }),
  843. smalltalk.FOSDEMBookletSlide);
  844. smalltalk.addClass('FOSDEMIntroSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  845. smalltalk.addMethod(
  846. unescape('_renderSlideOn_'),
  847. smalltalk.method({
  848. selector: unescape('renderSlideOn%3A'),
  849. fn: function (html){
  850. var self=this;
  851. (function($rec){smalltalk.send($rec, "_class_", ["section center animate"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_img", []), "_src_", [unescape("fosdem2012/images/amber.png")]);smalltalk.send(html, "_p_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_author", [])]);smalltalk.send(html, "_p_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_description", [])]);return smalltalk.send(html, "_p_", [(function(){return smalltalk.send(html, "_with_", [smalltalk.send(smalltalk.send(self, "_presentation", []), "_email", [])]);})]);})]);})(smalltalk.send(html, "_div", []));
  852. return self;}
  853. }),
  854. smalltalk.FOSDEMIntroSlide);
  855. smalltalk.addClass('ESUG2011Presentation', smalltalk.Presentation, [], 'Presentation');
  856. smalltalk.addMethod(
  857. unescape('_description'),
  858. smalltalk.method({
  859. selector: unescape('description'),
  860. fn: function (){
  861. var self=this;
  862. return unescape("ESUG%202011%2C%20Edinburgh");
  863. return self;}
  864. }),
  865. smalltalk.ESUG2011Presentation);
  866. smalltalk.addMethod(
  867. unescape('_author'),
  868. smalltalk.method({
  869. selector: unescape('author'),
  870. fn: function (){
  871. var self=this;
  872. return "Nicolas Petton";
  873. return self;}
  874. }),
  875. smalltalk.ESUG2011Presentation);
  876. smalltalk.addMethod(
  877. unescape('_email'),
  878. smalltalk.method({
  879. selector: unescape('email'),
  880. fn: function (){
  881. var self=this;
  882. return unescape("nico@objectfusion.fr");
  883. return self;}
  884. }),
  885. smalltalk.ESUG2011Presentation);
  886. smalltalk.addMethod(
  887. unescape('_url'),
  888. smalltalk.method({
  889. selector: unescape('url'),
  890. fn: function (){
  891. var self=this;
  892. return unescape("http%3A//jtalk-project.org");
  893. return self;}
  894. }),
  895. smalltalk.ESUG2011Presentation);
  896. smalltalk.addMethod(
  897. unescape('_slideClasses'),
  898. smalltalk.method({
  899. selector: unescape('slideClasses'),
  900. fn: function (){
  901. var self=this;
  902. 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", []));
  903. return self;}
  904. }),
  905. smalltalk.ESUG2011Presentation);
  906. smalltalk.addMethod(
  907. unescape('_style'),
  908. smalltalk.method({
  909. selector: unescape('style'),
  910. fn: function (){
  911. var self=this;
  912. return unescape("%0Abody%20%7B%0A%20%20%20%20font-family%3A%20Helvetica%2CArial%2Csans%3B%0A%7D%0A%0A%23slides%20%7B%0A%20%20%20%20width%3A%20100%25%3B%0A%20%20%20%20height%3A%20100%25%3B%0A%20%20%20%20overflow%3A%20hidden%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20top%3A%200%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20left%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20background%3A%20%23fff%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%20%20%20%20font-size%3A%2020px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20height%3A%20500px%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20padding%3A%2060px%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20left%3A%2050%25%3B%0A%20%20%20%20top%3A%2050%25%3B%0A%20%20%20%20margin-left%3A%20-420px%3B%0A%20%20%20%20margin-top%3A%20-320px%3B%0A%20%20%20%20box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%2020px%20%23111%3B%0A%7D%0A%0A.slide.transparent%20%7B%0A%20%20%20%20background%3A%20transparent%3B%0A%20%20%20%20box-shadow%3A%200%200%200%20none%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20%7B%0A%20%20%20%20background%3A%20black%3B%0A%20%20%20%20background-image%3A%20-webkit-gradient%28%0A%09linear%2C%0A%09left%20bottom%2C%0A%09left%20top%2C%0A%09color-stop%280.38%2C%20rgb%2879%2C79%2C79%29%29%2C%0A%09color-stop%280.69%2C%20rgb%2833%2C33%2C33%29%29%2C%0A%09color-stop%280.86%2C%20rgb%284%2C4%2C4%29%29%0A%20%20%20%20%29%3B%0A%20%20%20%20background-image%3A%20-moz-linear-gradient%28%0A%09center%20bottom%2C%0A%09rgb%2879%2C79%2C79%29%2038%25%2C%0A%09rgb%2833%2C33%2C33%29%2069%25%2C%0A%09rgb%284%2C4%2C4%29%2086%25%0A%20%20%20%20%29%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20h1%2C%20.slide.black%20h2%2C%20.slide.black%20h3%2C%0A.slide.transparent%20h1%2C%20.slide.transparent%20h2%2C%20.slide.transparent%20h3%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%7D%0A%0A.slide.black%20a%2C%20.slide.transparent%20a%20%7B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%7D%0A%0A.slide.white%20%7B%0A%20%20%20%20color%3A%20%23333%20%21important%3B%0A%7D%0A%0A.slide.white%20h1%2C%20.slide.white%20h2%2C%20.slide.white%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A.slide.white%20a%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A%0A.slide%20h1%2C%20.slide%20h2%2C%20.slide%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%20%20%20%20/*%20text-align%3A%20center%3B%20*/%0A%7D%0A%0A.slide%20h1%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2036px%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20margin-bottom%3A%2050px%3B%0A%7D%0A%0A/*%20.slide%20ul%2C%20.slide%20li%20%7B%20*/%0A/*%20%20%20%20%20padding%3A%200%3B%20*/%0A/*%20%20%20%20%20margin%3A%200%3B%20*/%0A/*%20%7D%20*/%0A%0A.slide%20button%20%7B%0A%20%20%20%20font-size%3A%2018px%3B%0A%7D%0A%0A.slide%20a%20%7B%0A%20%20%20%20color%3A%20%23555%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20cursor%3A%20pointer%3B%0A%7D%0A%0A.slide%20a%3Ahover%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20.right%20%7B%0A%20%20%20%20text-align%3A%20right%3B%0A%7D%0A%0A.slide%20.section.center%20%7B%0A%20%20%20%20text-align%3A%20center%3B%0A%20%20%20%20display%3A%20table-cell%3B%0A%20%20%20%20vertical-align%3A%20middle%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20height%3A%20500px%3B%0A%7D%0A%0A.slide%20code%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20border%3A%201px%20solid%20%23ddd%3B%0A%20%20%20%20background%3A%20%23eee%3B%0A%20%20%20%20border-radius%3A%204px%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A.slide%20.code2%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20line-height%3A%201.2em%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A%0A.slide%20.CodeMirror%20%7B%0A%20%20%20%20width%3A%20500px%3B%0A%20%20%20%20height%3A%20300px%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.CodeMirror-scroll%20%7B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.fancy%20%7B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20-webkit-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20-moz-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.comment%20%7B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20font-weight%3A%20normal%3B%0A%7D%0A%0A.slide%20.red%20%7B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.blue%20%7B%0A%20%20%20%20color%3A%20blue%3B%0A%7D%0A%0A.slide%23WhatIsJtalk%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/balloon.jpg%22%29%20650px%2050px%20no-repeat%3B%0A%7D%0A%0A.slide%23ide%20%7B%0A%20%20%20%20background%3A%20black%20url%28%22esug2011/images/ide_star_wars.png%22%29%20center%20center%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndCLI%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/terminal.png%22%29%20620px%2020px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndNode%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A.slide%23JtalkAndNode2%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndNode3%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/nodejs.png%22%29%20580px%2040px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndWebOS%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/devices.jpg%22%29%20380px%20280px%20no-repeat%3B%0A%7D%0A%0A.slide%23JtalkAndEnyo%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/enyo.png%22%29%20130px%20150px%20no-repeat%3B%0A%7D%0A%0A.slide%23links%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/asterix.png%22%29%2030px%20130px%20no-repeat%3B%0A%7D%0A%0A.slide%23links%20.section%20%7B%0A%20%20%20%20margin-left%3A%20250px%3B%0A%20%20%20%20margin-top%3A%20200px%3B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2026px%3B%0A%20%20%20%20font-weight%3A%20bold%3B%0A%7D%0A%0A%0A%23meta%20%7B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20font-size%3A%2012px%3B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20z-index%3A%202%3B%0A%20%20%20%20background%3A%20%23333%3B%0A%20%20%20%20text-align%3A%20right%3B%0A%20%20%20%20padding%3A%200%2010px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%20%20%20%20border-top-left-radius%3A%205px%3B%0A%7D%0A%0A%23meta%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A%0A%23meta%20p%20%7B%0A%20%20%20%20display%3A%20inline%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A%23meta%20a%20%7B%0A%20%20%20%20//background%3A%20%23ccc%3B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20%0A%7D%0A");
  913. return self;}
  914. }),
  915. smalltalk.ESUG2011Presentation);
  916. smalltalk.ESUG2011Presentation.klass.iVarNames = ['current'];
  917. smalltalk.addMethod(
  918. unescape('_title'),
  919. smalltalk.method({
  920. selector: unescape('title'),
  921. fn: function (){
  922. var self=this;
  923. return "Jtalk";
  924. return self;}
  925. }),
  926. smalltalk.ESUG2011Presentation.klass);
  927. smalltalk.addMethod(
  928. unescape('_isConcrete'),
  929. smalltalk.method({
  930. selector: unescape('isConcrete'),
  931. fn: function (){
  932. var self=this;
  933. return true;
  934. return self;}
  935. }),
  936. smalltalk.ESUG2011Presentation.klass);
  937. smalltalk.addClass('IntroSlide', smalltalk.Slide, [], 'Presentation');
  938. smalltalk.addMethod(
  939. unescape('_id'),
  940. smalltalk.method({
  941. selector: unescape('id'),
  942. fn: function (){
  943. var self=this;
  944. return "intro";
  945. return self;}
  946. }),
  947. smalltalk.IntroSlide);
  948. smalltalk.addMethod(
  949. unescape('_cssClass'),
  950. smalltalk.method({
  951. selector: unescape('cssClass'),
  952. fn: function (){
  953. var self=this;
  954. return "slide black";
  955. return self;}
  956. }),
  957. smalltalk.IntroSlide);
  958. smalltalk.addMethod(
  959. unescape('_renderSlideOn_'),
  960. smalltalk.method({
  961. selector: unescape('renderSlideOn%3A'),
  962. fn: function (html){
  963. var self=this;
  964. (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", []));
  965. return self;}
  966. }),
  967. smalltalk.IntroSlide);
  968. smalltalk.addClass('WhatIsJtalkSlide', smalltalk.Slide, [], 'Presentation');
  969. smalltalk.addMethod(
  970. unescape('_id'),
  971. smalltalk.method({
  972. selector: unescape('id'),
  973. fn: function (){
  974. var self=this;
  975. return "WhatIsJtalk";
  976. return self;}
  977. }),
  978. smalltalk.WhatIsJtalkSlide);
  979. smalltalk.addMethod(
  980. unescape('_renderSlideOn_'),
  981. smalltalk.method({
  982. selector: unescape('renderSlideOn%3A'),
  983. fn: function (html){
  984. var self=this;
  985. (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", []));
  986. return self;}
  987. }),
  988. smalltalk.WhatIsJtalkSlide);
  989. smalltalk.addClass('JtalkFeaturesSlide', smalltalk.Slide, [], 'Presentation');
  990. smalltalk.addMethod(
  991. unescape('_id'),
  992. smalltalk.method({
  993. selector: unescape('id'),
  994. fn: function (){
  995. var self=this;
  996. return "features";
  997. return self;}
  998. }),
  999. smalltalk.JtalkFeaturesSlide);
  1000. smalltalk.addMethod(
  1001. unescape('_renderSlideOn_'),
  1002. smalltalk.method({
  1003. selector: unescape('renderSlideOn%3A'),
  1004. fn: function (html){
  1005. var self=this;
  1006. smalltalk.send(smalltalk.send(html, "_h1", []), "_with_", ["Jtalk features"]);
  1007. 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"]);})]);})]);
  1008. return self;}
  1009. }),
  1010. smalltalk.JtalkFeaturesSlide);
  1011. smalltalk.addClass('AboutSlide', smalltalk.Slide, [], 'Presentation');
  1012. smalltalk.addMethod(
  1013. unescape('_id'),
  1014. smalltalk.method({
  1015. selector: unescape('id'),
  1016. fn: function (){
  1017. var self=this;
  1018. return "about";
  1019. return self;}
  1020. }),
  1021. smalltalk.AboutSlide);
  1022. smalltalk.addMethod(
  1023. unescape('_cssClass'),
  1024. smalltalk.method({
  1025. selector: unescape('cssClass'),
  1026. fn: function (){
  1027. var self=this;
  1028. return "slide transparent white";
  1029. return self;}
  1030. }),
  1031. smalltalk.AboutSlide);
  1032. smalltalk.addMethod(
  1033. unescape('_backgroundColor'),
  1034. smalltalk.method({
  1035. selector: unescape('backgroundColor'),
  1036. fn: function (){
  1037. var self=this;
  1038. return "white";
  1039. return self;}
  1040. }),
  1041. smalltalk.AboutSlide);
  1042. smalltalk.addMethod(
  1043. unescape('_renderSlideOn_'),
  1044. smalltalk.method({
  1045. selector: unescape('renderSlideOn%3A'),
  1046. fn: function (html){
  1047. var self=this;
  1048. (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", []));
  1049. return self;}
  1050. }),
  1051. smalltalk.AboutSlide);
  1052. smalltalk.addClass('JtalkAndJavascriptSlide3', smalltalk.Slide, [], 'Presentation');
  1053. smalltalk.addMethod(
  1054. unescape('_id'),
  1055. smalltalk.method({
  1056. selector: unescape('id'),
  1057. fn: function (){
  1058. var self=this;
  1059. return "jtalkAndJs3";
  1060. return self;}
  1061. }),
  1062. smalltalk.JtalkAndJavascriptSlide3);
  1063. smalltalk.addMethod(
  1064. unescape('_backgroundColor'),
  1065. smalltalk.method({
  1066. selector: unescape('backgroundColor'),
  1067. fn: function (){
  1068. var self=this;
  1069. return unescape("%2308C");
  1070. return self;}
  1071. }),
  1072. smalltalk.JtalkAndJavascriptSlide3);
  1073. smalltalk.addMethod(
  1074. unescape('_renderSlideOn_'),
  1075. smalltalk.method({
  1076. selector: unescape('renderSlideOn%3A'),
  1077. fn: function (html){
  1078. var self=this;
  1079. 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"]);})]);
  1080. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("Smalltalk%20%u21D2%20JavaScript")]);
  1081. 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", []));})]);
  1082. return self;}
  1083. }),
  1084. smalltalk.JtalkAndJavascriptSlide3);
  1085. smalltalk.addClass('JtalkAndJavascriptSlide2', smalltalk.Slide, [], 'Presentation');
  1086. smalltalk.addMethod(
  1087. unescape('_id'),
  1088. smalltalk.method({
  1089. selector: unescape('id'),
  1090. fn: function (){
  1091. var self=this;
  1092. return "jtalkAndJs2";
  1093. return self;}
  1094. }),
  1095. smalltalk.JtalkAndJavascriptSlide2);
  1096. smalltalk.addMethod(
  1097. unescape('_backgroundColor'),
  1098. smalltalk.method({
  1099. selector: unescape('backgroundColor'),
  1100. fn: function (){
  1101. var self=this;
  1102. return unescape("%2308C");
  1103. return self;}
  1104. }),
  1105. smalltalk.JtalkAndJavascriptSlide2);
  1106. smalltalk.addMethod(
  1107. unescape('_renderSlideOn_'),
  1108. smalltalk.method({
  1109. selector: unescape('renderSlideOn%3A'),
  1110. fn: function (html){
  1111. var self=this;
  1112. 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"]);})]);
  1113. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Jtalk maps one to one with the JavaScript equivalent:"]);
  1114. 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."]);})]);
  1115. return self;}
  1116. }),
  1117. smalltalk.JtalkAndJavascriptSlide2);
  1118. smalltalk.addClass('JtalkAndJavascriptSlide', smalltalk.Slide, [], 'Presentation');
  1119. smalltalk.addMethod(
  1120. unescape('_id'),
  1121. smalltalk.method({
  1122. selector: unescape('id'),
  1123. fn: function (){
  1124. var self=this;
  1125. return "jtalkAndJs";
  1126. return self;}
  1127. }),
  1128. smalltalk.JtalkAndJavascriptSlide);
  1129. smalltalk.addMethod(
  1130. unescape('_cssClass'),
  1131. smalltalk.method({
  1132. selector: unescape('cssClass'),
  1133. fn: function (){
  1134. var self=this;
  1135. return "slide transparent";
  1136. return self;}
  1137. }),
  1138. smalltalk.JtalkAndJavascriptSlide);
  1139. smalltalk.addMethod(
  1140. unescape('_backgroundColor'),
  1141. smalltalk.method({
  1142. selector: unescape('backgroundColor'),
  1143. fn: function (){
  1144. var self=this;
  1145. return unescape("%2308C");
  1146. return self;}
  1147. }),
  1148. smalltalk.JtalkAndJavascriptSlide);
  1149. smalltalk.addMethod(
  1150. unescape('_renderSlideOn_'),
  1151. smalltalk.method({
  1152. selector: unescape('renderSlideOn%3A'),
  1153. fn: function (html){
  1154. var self=this;
  1155. (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", []));
  1156. return self;}
  1157. }),
  1158. smalltalk.JtalkAndJavascriptSlide);
  1159. smalltalk.addClass('WorkspaceSlide', smalltalk.Slide, [], 'Presentation');
  1160. smalltalk.addMethod(
  1161. unescape('_id'),
  1162. smalltalk.method({
  1163. selector: unescape('id'),
  1164. fn: function (){
  1165. var self=this;
  1166. return "workspace";
  1167. return self;}
  1168. }),
  1169. smalltalk.WorkspaceSlide);
  1170. smalltalk.addMethod(
  1171. unescape('_backgroundColor'),
  1172. smalltalk.method({
  1173. selector: unescape('backgroundColor'),
  1174. fn: function (){
  1175. var self=this;
  1176. return unescape("%2318bd7d");
  1177. return self;}
  1178. }),
  1179. smalltalk.WorkspaceSlide);
  1180. smalltalk.addMethod(
  1181. unescape('_renderSlideOn_'),
  1182. smalltalk.method({
  1183. selector: unescape('renderSlideOn%3A'),
  1184. fn: function (html){
  1185. var self=this;
  1186. var workspace=nil;
  1187. (workspace=smalltalk.send((smalltalk.SourceArea || SourceArea), "_new", []));
  1188. (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", []));
  1189. return self;}
  1190. }),
  1191. smalltalk.WorkspaceSlide);
  1192. smalltalk.addClass('CountersSlide', smalltalk.Slide, [], 'Presentation');
  1193. smalltalk.addMethod(
  1194. unescape('_id'),
  1195. smalltalk.method({
  1196. selector: unescape('id'),
  1197. fn: function (){
  1198. var self=this;
  1199. return "counters";
  1200. return self;}
  1201. }),
  1202. smalltalk.CountersSlide);
  1203. smalltalk.addMethod(
  1204. unescape('_backgroundColor'),
  1205. smalltalk.method({
  1206. selector: unescape('backgroundColor'),
  1207. fn: function (){
  1208. var self=this;
  1209. return unescape("%2318bd7d");
  1210. return self;}
  1211. }),
  1212. smalltalk.CountersSlide);
  1213. smalltalk.addMethod(
  1214. unescape('_renderSlideOn_'),
  1215. smalltalk.method({
  1216. selector: unescape('renderSlideOn%3A'),
  1217. fn: function (html){
  1218. var self=this;
  1219. (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", []));
  1220. return self;}
  1221. }),
  1222. smalltalk.CountersSlide);
  1223. smalltalk.addClass('JtalkAndJavascriptSlide4', smalltalk.Slide, [], 'Presentation');
  1224. smalltalk.addMethod(
  1225. unescape('_id'),
  1226. smalltalk.method({
  1227. selector: unescape('id'),
  1228. fn: function (){
  1229. var self=this;
  1230. return "jtalkAndJs4";
  1231. return self;}
  1232. }),
  1233. smalltalk.JtalkAndJavascriptSlide4);
  1234. smalltalk.addMethod(
  1235. unescape('_backgroundColor'),
  1236. smalltalk.method({
  1237. selector: unescape('backgroundColor'),
  1238. fn: function (){
  1239. var self=this;
  1240. return unescape("%2308C");
  1241. return self;}
  1242. }),
  1243. smalltalk.JtalkAndJavascriptSlide4);
  1244. smalltalk.addMethod(
  1245. unescape('_renderSlideOn_'),
  1246. smalltalk.method({
  1247. selector: unescape('renderSlideOn%3A'),
  1248. fn: function (html){
  1249. var self=this;
  1250. 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);})]);
  1251. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("JavaScript%20%u21D2%20Smalltalk")]);
  1252. 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", []));})]);
  1253. return self;}
  1254. }),
  1255. smalltalk.JtalkAndJavascriptSlide4);
  1256. smalltalk.addClass('IDESlide', smalltalk.Slide, [], 'Presentation');
  1257. smalltalk.addMethod(
  1258. unescape('_id'),
  1259. smalltalk.method({
  1260. selector: unescape('id'),
  1261. fn: function (){
  1262. var self=this;
  1263. return "ide";
  1264. return self;}
  1265. }),
  1266. smalltalk.IDESlide);
  1267. smalltalk.addMethod(
  1268. unescape('_backgroundColor'),
  1269. smalltalk.method({
  1270. selector: unescape('backgroundColor'),
  1271. fn: function (){
  1272. var self=this;
  1273. return "black";
  1274. return self;}
  1275. }),
  1276. smalltalk.IDESlide);
  1277. smalltalk.addMethod(
  1278. unescape('_cssClass'),
  1279. smalltalk.method({
  1280. selector: unescape('cssClass'),
  1281. fn: function (){
  1282. var self=this;
  1283. return "slide transparent";
  1284. return self;}
  1285. }),
  1286. smalltalk.IDESlide);
  1287. smalltalk.addMethod(
  1288. unescape('_renderSlideOn_'),
  1289. smalltalk.method({
  1290. selector: unescape('renderSlideOn%3A'),
  1291. fn: function (html){
  1292. var self=this;
  1293. return self;}
  1294. }),
  1295. smalltalk.IDESlide);
  1296. smalltalk.addClass('ContributionsSlide', smalltalk.Slide, [], 'Presentation');
  1297. smalltalk.addMethod(
  1298. unescape('_id'),
  1299. smalltalk.method({
  1300. selector: unescape('id'),
  1301. fn: function (){
  1302. var self=this;
  1303. return "links";
  1304. return self;}
  1305. }),
  1306. smalltalk.ContributionsSlide);
  1307. smalltalk.addMethod(
  1308. unescape('_renderSlideOn_'),
  1309. smalltalk.method({
  1310. selector: unescape('renderSlideOn%3A'),
  1311. fn: function (html){
  1312. var self=this;
  1313. (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", []));
  1314. return self;}
  1315. }),
  1316. smalltalk.ContributionsSlide);
  1317. smalltalk.addClass('JtalkAndCLI', smalltalk.Slide, [], 'Presentation');
  1318. smalltalk.addMethod(
  1319. unescape('_backgroundColor'),
  1320. smalltalk.method({
  1321. selector: unescape('backgroundColor'),
  1322. fn: function (){
  1323. var self=this;
  1324. return unescape("%230A1");
  1325. return self;}
  1326. }),
  1327. smalltalk.JtalkAndCLI);
  1328. smalltalk.addMethod(
  1329. unescape('_id'),
  1330. smalltalk.method({
  1331. selector: unescape('id'),
  1332. fn: function (){
  1333. var self=this;
  1334. return "JtalkAndCLI";
  1335. return self;}
  1336. }),
  1337. smalltalk.JtalkAndCLI);
  1338. smalltalk.addMethod(
  1339. unescape('_renderSlideOn_'),
  1340. smalltalk.method({
  1341. selector: unescape('renderSlideOn%3A'),
  1342. fn: function (html){
  1343. var self=this;
  1344. 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", []));})]);
  1345. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("jtalkc%20-%20a%20fairly%20elaborate%20bash%20script%20that%3A")]);
  1346. 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"]);})]);
  1347. return self;}
  1348. }),
  1349. smalltalk.JtalkAndCLI);
  1350. smalltalk.addClass('JtalkAndNode', smalltalk.Slide, [], 'Presentation');
  1351. smalltalk.addMethod(
  1352. unescape('_backgroundColor'),
  1353. smalltalk.method({
  1354. selector: unescape('backgroundColor'),
  1355. fn: function (){
  1356. var self=this;
  1357. return unescape("%230A1");
  1358. return self;}
  1359. }),
  1360. smalltalk.JtalkAndNode);
  1361. smalltalk.addMethod(
  1362. unescape('_id'),
  1363. smalltalk.method({
  1364. selector: unescape('id'),
  1365. fn: function (){
  1366. var self=this;
  1367. return "JtalkAndNode";
  1368. return self;}
  1369. }),
  1370. smalltalk.JtalkAndNode);
  1371. smalltalk.addMethod(
  1372. unescape('_renderSlideOn_'),
  1373. smalltalk.method({
  1374. selector: unescape('renderSlideOn%3A'),
  1375. fn: function (html){
  1376. var self=this;
  1377. 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", []));})]);
  1378. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Hello.st:"]);
  1379. 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", []));})]);
  1380. return self;}
  1381. }),
  1382. smalltalk.JtalkAndNode);
  1383. smalltalk.addClass('JtalkAndNode2', smalltalk.Slide, [], 'Presentation');
  1384. smalltalk.addMethod(
  1385. unescape('_backgroundColor'),
  1386. smalltalk.method({
  1387. selector: unescape('backgroundColor'),
  1388. fn: function (){
  1389. var self=this;
  1390. return unescape("%230A1");
  1391. return self;}
  1392. }),
  1393. smalltalk.JtalkAndNode2);
  1394. smalltalk.addMethod(
  1395. unescape('_id'),
  1396. smalltalk.method({
  1397. selector: unescape('id'),
  1398. fn: function (){
  1399. var self=this;
  1400. return "JtalkAndNode2";
  1401. return self;}
  1402. }),
  1403. smalltalk.JtalkAndNode2);
  1404. smalltalk.addMethod(
  1405. unescape('_renderSlideOn_'),
  1406. smalltalk.method({
  1407. selector: unescape('renderSlideOn%3A'),
  1408. fn: function (html){
  1409. var self=this;
  1410. 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", []));})]);
  1411. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["Makefile:"]);
  1412. 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", []));})]);
  1413. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["hello:"]);
  1414. 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", []));})]);
  1415. return self;}
  1416. }),
  1417. smalltalk.JtalkAndNode2);
  1418. smalltalk.addClass('JtalkAndNode3', smalltalk.Slide, [], 'Presentation');
  1419. smalltalk.addMethod(
  1420. unescape('_backgroundColor'),
  1421. smalltalk.method({
  1422. selector: unescape('backgroundColor'),
  1423. fn: function (){
  1424. var self=this;
  1425. return unescape("%230A1");
  1426. return self;}
  1427. }),
  1428. smalltalk.JtalkAndNode3);
  1429. smalltalk.addMethod(
  1430. unescape('_id'),
  1431. smalltalk.method({
  1432. selector: unescape('id'),
  1433. fn: function (){
  1434. var self=this;
  1435. return "JtalkAndNode3";
  1436. return self;}
  1437. }),
  1438. smalltalk.JtalkAndNode3);
  1439. smalltalk.addMethod(
  1440. unescape('_renderSlideOn_'),
  1441. smalltalk.method({
  1442. selector: unescape('renderSlideOn%3A'),
  1443. fn: function (html){
  1444. var self=this;
  1445. 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", []));})]);
  1446. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", [unescape("make%20clean%20%26%26%20make%20run%3A")]);
  1447. 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", []));})]);
  1448. return self;}
  1449. }),
  1450. smalltalk.JtalkAndNode3);
  1451. smalltalk.addClass('JtalkAndWebOS', smalltalk.Slide, [], 'Presentation');
  1452. smalltalk.addMethod(
  1453. unescape('_backgroundColor'),
  1454. smalltalk.method({
  1455. selector: unescape('backgroundColor'),
  1456. fn: function (){
  1457. var self=this;
  1458. return unescape("%230A1");
  1459. return self;}
  1460. }),
  1461. smalltalk.JtalkAndWebOS);
  1462. smalltalk.addMethod(
  1463. unescape('_id'),
  1464. smalltalk.method({
  1465. selector: unescape('id'),
  1466. fn: function (){
  1467. var self=this;
  1468. return "JtalkAndWebOS";
  1469. return self;}
  1470. }),
  1471. smalltalk.JtalkAndWebOS);
  1472. smalltalk.addMethod(
  1473. unescape('_renderSlideOn_'),
  1474. smalltalk.method({
  1475. selector: unescape('renderSlideOn%3A'),
  1476. fn: function (html){
  1477. var self=this;
  1478. 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", []));})]);
  1479. smalltalk.send(smalltalk.send(html, "_h2", []), "_with_", ["A really cool mobile OS based on Linux:"]);
  1480. 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"]);})]);
  1481. return self;}
  1482. }),
  1483. smalltalk.JtalkAndWebOS);
  1484. smalltalk.addClass('JtalkAndEnyo', smalltalk.Slide, [], 'Presentation');
  1485. smalltalk.addMethod(
  1486. unescape('_id'),
  1487. smalltalk.method({
  1488. selector: unescape('id'),
  1489. fn: function (){
  1490. var self=this;
  1491. return "JtalkAndEnyo";
  1492. return self;}
  1493. }),
  1494. smalltalk.JtalkAndEnyo);
  1495. smalltalk.addMethod(
  1496. unescape('_backgroundColor'),
  1497. smalltalk.method({
  1498. selector: unescape('backgroundColor'),
  1499. fn: function (){
  1500. var self=this;
  1501. return unescape("%230A1");
  1502. return self;}
  1503. }),
  1504. smalltalk.JtalkAndEnyo);
  1505. smalltalk.addMethod(
  1506. unescape('_renderSlideOn_'),
  1507. smalltalk.method({
  1508. selector: unescape('renderSlideOn%3A'),
  1509. fn: function (html){
  1510. var self=this;
  1511. 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", []));})]);
  1512. return self;}
  1513. }),
  1514. smalltalk.JtalkAndEnyo);
  1515. smalltalk.addClass('FOSDEM2012Presentation', smalltalk.Presentation, [], 'Presentation');
  1516. smalltalk.addMethod(
  1517. unescape('_description'),
  1518. smalltalk.method({
  1519. selector: unescape('description'),
  1520. fn: function (){
  1521. var self=this;
  1522. return unescape("FOSDEM%202012%2C%20Brussels");
  1523. return self;}
  1524. }),
  1525. smalltalk.FOSDEM2012Presentation);
  1526. smalltalk.addMethod(
  1527. unescape('_author'),
  1528. smalltalk.method({
  1529. selector: unescape('author'),
  1530. fn: function (){
  1531. var self=this;
  1532. return unescape("Laurent%20Laffont%2C%20Johnny%20Thornton");
  1533. return self;}
  1534. }),
  1535. smalltalk.FOSDEM2012Presentation);
  1536. smalltalk.addMethod(
  1537. unescape('_email'),
  1538. smalltalk.method({
  1539. selector: unescape('email'),
  1540. fn: function (){
  1541. var self=this;
  1542. return unescape("laurent.laffont@gmail.com%2C%20%20johnnyt@xan.do");
  1543. return self;}
  1544. }),
  1545. smalltalk.FOSDEM2012Presentation);
  1546. smalltalk.addMethod(
  1547. unescape('_url'),
  1548. smalltalk.method({
  1549. selector: unescape('url'),
  1550. fn: function (){
  1551. var self=this;
  1552. return unescape("http%3A//amber-lang.net");
  1553. return self;}
  1554. }),
  1555. smalltalk.FOSDEM2012Presentation);
  1556. smalltalk.addMethod(
  1557. unescape('_style'),
  1558. smalltalk.method({
  1559. selector: unescape('style'),
  1560. fn: function (){
  1561. var self=this;
  1562. return unescape("%0Abody%20%7B%0A%20%20%20%20font-family%3A%20Helvetica%2CArial%2Csans%3B%0A%7D%0A%0A%23slides%20%7B%0A%20%20%20%20width%3A%20100%25%3B%0A%20%20%20%20height%3A%20100%25%3B%0A%20%20%20%20overflow%3A%20hidden%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20top%3A%200%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20left%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20background%3A%20%23fff%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%20%20%20%20font-size%3A%2020px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20height%3A%20500px%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20padding%3A%2060px%3B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20left%3A%2050%25%3B%0A%20%20%20%20top%3A%2050%25%3B%0A%20%20%20%20margin-left%3A%20-420px%3B%0A%20%20%20%20margin-top%3A%20-320px%3B%0A%20%20%20%20box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%2020px%20%23111%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%2020px%20%23111%3B%0A%7D%0A%0A.slide.transparent%20%7B%0A%20%20%20%20background%3A%20transparent%3B%0A%20%20%20%20box-shadow%3A%200%200%200%20none%3B%0A%20%20%20%20-moz-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20-webkit-box-shadow%3A%200%200%200%20transparent%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20%7B%0A%20%20%20%20background%3A%20black%3B%0A%20%20%20%20background-image%3A%20-webkit-gradient%28%0A%09linear%2C%0A%09left%20bottom%2C%0A%09left%20top%2C%0A%09color-stop%280.38%2C%20rgb%2879%2C79%2C79%29%29%2C%0A%09color-stop%280.69%2C%20rgb%2833%2C33%2C33%29%29%2C%0A%09color-stop%280.86%2C%20rgb%284%2C4%2C4%29%29%0A%20%20%20%20%29%3B%0A%20%20%20%20background-image%3A%20-moz-linear-gradient%28%0A%09center%20bottom%2C%0A%09rgb%2879%2C79%2C79%29%2038%25%2C%0A%09rgb%2833%2C33%2C33%29%2069%25%2C%0A%09rgb%284%2C4%2C4%29%2086%25%0A%20%20%20%20%29%3B%0A%20%20%20%20color%3A%20%23fff%20%21important%3B%0A%7D%0A%0A.slide.black%20h1%2C%20.slide.black%20h2%2C%20.slide.black%20h3%2C%0A.slide.transparent%20h1%2C%20.slide.transparent%20h2%2C%20.slide.transparent%20h3%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%7D%0A%0A.slide.black%20a%2C%20.slide.transparent%20a%20%7B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%7D%0A%0A.slide.white%20%7B%0A%20%20%20%20color%3A%20%23333%20%21important%3B%0A%7D%0A%0A.slide.white%20h1%2C%20.slide.white%20h2%2C%20.slide.white%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A.slide.white%20a%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%7D%0A%0A%0A.slide%20h1%2C%20.slide%20h2%2C%20.slide%20h3%20%7B%0A%20%20%20%20color%3A%20%23333%3B%0A%20%20%20%20/*%20text-align%3A%20center%3B%20*/%0A%7D%0A%0A.slide%20h1%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2036px%3B%0A%20%20%20%20text-shadow%3A%200%201px%204px%20%23aaa%3B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20margin-bottom%3A%2050px%3B%0A%7D%0A%0A.slide%20button%20%7B%0A%20%20%20%20font-size%3A%2018px%3B%0A%7D%0A%0A.slide%20a%20%7B%0A%20%20%20%20color%3A%20%23555%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20cursor%3A%20pointer%3B%0A%7D%0A%0A.slide%20a%3Ahover%20%7B%0A%20%20%20%20color%3A%20%23fff%3B%0A%20%20%20%20background%3A%20%23555%3B%0A%7D%0A%0A.slide%20.right%20%7B%0A%20%20%20%20text-align%3A%20right%3B%0A%7D%0A%0A.slide%20.section.center%20%7B%0A%20%20%20%20text-align%3A%20center%3B%0A%20%20%20%20display%3A%20table-cell%3B%0A%20%20%20%20vertical-align%3A%20middle%3B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20height%3A%20500px%3B%0A%7D%0A%0A.slide%20code%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20border%3A%201px%20solid%20%23ddd%3B%0A%20%20%20%20background%3A%20%23eee%3B%0A%20%20%20%20border-radius%3A%204px%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A.slide%20.code2%20%7B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%20Mono%22%3B%0A%20%20%20%20line-height%3A%201.2em%3B%0A%20%20%20%20color%3A%20%23444%3B%0A%20%20%20%20padding%3A%202px%3B%0A%20%20%20%20font-size%3A%2016px%3B%0A%7D%0A%0A%0A.slide%20.CodeMirror%20%7B%0A%20%20%20%20width%3A%20700px%3B%0A%20%20%20%20height%3A%20300px%3B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.CodeMirror-scroll%20%7B%0A%20%20%20%20text-align%3A%20left%3B%0A%7D%0A%0A.slide%20.fancy%20%7B%0A%20%20%20%20margin-top%3A%2030px%3B%0A%20%20%20%20-webkit-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20-moz-transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20transform%3A%20rotate%28-10deg%29%3B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.comment%20%7B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20font-weight%3A%20normal%3B%0A%7D%0A%0A.slide%20.red%20%7B%0A%20%20%20%20color%3A%20red%3B%0A%7D%0A%0A.slide%20.blue%20%7B%0A%20%20%20%20color%3A%20blue%3B%0A%7D%0A%0A%23meta%20%7B%0A%20%20%20%20position%3A%20absolute%3B%0A%20%20%20%20font-size%3A%2012px%3B%0A%20%20%20%20opacity%3A%200.6%3B%0A%20%20%20%20bottom%3A%200%3B%0A%20%20%20%20right%3A%200%3B%0A%20%20%20%20z-index%3A%202%3B%0A%20%20%20%20background%3A%20%23333%3B%0A%20%20%20%20text-align%3A%20right%3B%0A%20%20%20%20padding%3A%200%2010px%3B%0A%20%20%20%20line-height%3A%201.8em%3B%0A%20%20%20%20color%3A%20%23eee%3B%0A%20%20%20%20border-top-left-radius%3A%205px%3B%0A%7D%0A%0A%23meta%3Ahover%20%7B%0A%20%20%20%20opacity%3A%200.8%3B%0A%7D%0A%0A%23meta%20p%20%7B%0A%20%20%20%20display%3A%20inline%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A%23meta%20a%20%7B%0A%20%20%20%20//background%3A%20%23ccc%3B%0A%20%20%20%20color%3A%20%23ccc%3B%0A%20%20%20%20text-decoration%3A%20none%3B%0A%20%20%20%20padding%3A%200%205px%3B%0A%7D%0A%0A.slide%20%7B%0A%20%20%20%20%0A%7D%0A%0A.slide.blue3d%20%7B%0A%20%20background%3A%20%23feffff%3B%0A%20%20background%3A%20-moz-linear-gradient%28top%2C%20%23feffff%200%25%2C%20%23d2ebf9%20100%25%29%3B%0A%20%20background%3A%20-webkit-gradient%28linear%2C%20left%20top%2C%20left%20bottom%2C%20color-stop%280%25%2C%23feffff%29%2C%20color-stop%28100%25%2C%23d2ebf9%29%29%3B%0A%20%20background%3A%20-webkit-linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%20%20background%3A%20-o-linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%20%20background%3A%20-ms-linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%20%20filter%3A%20progid%3ADXImageTransform.Microsoft.gradient%28%20startColorstr%3D%22%23feffff%22%2C%20endColorstr%3D%22%23d2ebf9%22%2CGradientType%3D0%20%29%3B%0A%20%20background%3A%20linear-gradient%28top%2C%20%23feffff%200%25%2C%23d2ebf9%20100%25%29%3B%0A%7D%0A%0A%0A.slide.red3d%20%7B%0A%20%20background%3A%20%23febbbb%3B%0A%20%20background%3A%20-moz-linear-gradient%28top%2C%20%23febbbb%200%25%2C%20%23fe9090%2071%25%2C%20%23ff5c5c%2095%25%29%3B%0A%20%20background%3A%20-webkit-gradient%28linear%2C%20left%20top%2C%20left%20bottom%2C%20color-stop%280%25%2C%23febbbb%29%2C%20color-stop%2871%25%2C%23fe9090%29%2C%20color-stop%2895%25%2C%23ff5c5c%29%29%3B%0A%20%20background%3A%20-webkit-linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%20%20background%3A%20-o-linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%20%20background%3A%20-ms-linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%20%20filter%3A%20progid%3ADXImageTransform.Microsoft.gradient%28%20startColorstr%3D%22%23febbbb%22%2C%20endColorstr%3D%22%23ff5c5c%22%2CGradientType%3D0%20%29%3B%0A%20%20background%3A%20linear-gradient%28top%2C%20%23febbbb%200%25%2C%23fe9090%2071%25%2C%23ff5c5c%2095%25%29%3B%0A%7D%0A%0A%0A.slide.green3d%20%7B%0A%20%20background%3A%20%23cdeb8e%3B%0A%20%20background%3A%20-moz-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%20%23a5c956%20100%25%29%3B%0A%20%20background%3A%20-webkit-gradient%28linear%2C%20left%20top%2C%20left%20bottom%2C%20color-stop%280%25%2C%23cdeb8e%29%2C%20color-stop%28100%25%2C%23a5c956%29%29%3B%0A%20%20background%3A%20-webkit-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%20%20background%3A%20-o-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%20%20background%3A%20-ms-linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%20%20filter%3A%20progid%3ADXImageTransform.Microsoft.gradient%28%20startColorstr%3D%22%23cdeb8e%22%2C%20endColorstr%3D%22%23a5c956%22%2CGradientType%3D0%20%29%3B%0A%20%20background%3A%20linear-gradient%28top%2C%20%23cdeb8e%200%25%2C%23a5c956%20100%25%29%3B%0A%7D%0A%0A@-webkit-keyframes%20rotate-horizontal%20%7B%0A%090%25%20%7B%20-webkit-transform%3A%20perspective%281000px%29%20rotateY%28-10deg%29%3B%7D%0A%09100%25%20%7B%20-webkit-transform%3A%20perspective%281000px%29%20rotateY%2810deg%29%3B%7D%0A%7D%0A%0A.animate%20p%7B%0A-webkit-animation%3A%20rotate-horizontal%202s%20infinite%20alternate%20ease-in-out%3B%0A%7D%0A%0A%23FOSDEMAmberBackend%20img%20%7B%0A%09margin%3A%205px%3B%0A%09-webkit-animation%3A%20rotate-horizontal%202s%20infinite%20alternate%20ease-in-out%3B%0A%7D%0A%0A.slide%23FOSDEMContributionsSlide%20%7B%0A%20%20%20%20background%3A%20white%20url%28%22esug2011/images/asterix.png%22%29%2030px%20130px%20no-repeat%3B%0A%7D%0A%0A.slide%23FOSDEMContributionsSlide%20.section%20%7B%0A%20%20%20%20margin-left%3A%20250px%3B%0A%20%20%20%20margin-top%3A%20200px%3B%0A%20%20%20%20font-family%3A%20%22Droid%20Sans%22%3B%0A%20%20%20%20font-size%3A%2026px%3B%0A%20%20%20%20font-weight%3A%20bold%3B%0A%7D%0A%0A%0A.slide%23ide%20%7B%0A%20%20%20%20background%3A%20black%20url%28%22esug2011/images/ide_star_wars.png%22%29%20center%20center%20no-repeat%3B%0A%7D%0A%0A%0A.tweet%20%7B%0A%09background-color%3A%20%23aaa%3B%0A%09color%3A%20black%3B%0A%09padding%3A%2010px%3B%0A%09border-radius%3A%2010px%3B%0A%09border%3A%205px%20solid%20%23eee%3B%0A%09margin%3A%2010px%3B%0A%7D%0A%0A.tweet%20img%20%7B%0A%09vertical-align%3A%20top%3B%0A%09margin-right%3A%2010px%3B%0A%7D%0A%0A.tweet%20span%3Afirst-child%20%7B%0A%09float%3A%20right%3B%0A%7D%0A");
  1563. return self;}
  1564. }),
  1565. smalltalk.FOSDEM2012Presentation);
  1566. smalltalk.addMethod(
  1567. unescape('_slideClasses'),
  1568. smalltalk.method({
  1569. selector: unescape('slideClasses'),
  1570. fn: function (){
  1571. var self=this;
  1572. return [(smalltalk.FOSDEMIntroSlide || FOSDEMIntroSlide),(smalltalk.CountersSlide || CountersSlide),(smalltalk.IDESlide || IDESlide),(smalltalk.JtalkAndJavascriptSlide || JtalkAndJavascriptSlide),(smalltalk.FOSDEMJSPlayGroundSlide || FOSDEMJSPlayGroundSlide),(smalltalk.FOSDEMJSToSmalltalk || FOSDEMJSToSmalltalk),(smalltalk.FOSDEMBookletSlide || FOSDEMBookletSlide),(smalltalk.FOSDEMTwitter || FOSDEMTwitter),(smalltalk.FOSDEMCanvasSlide || FOSDEMCanvasSlide),(smalltalk.FOSDEMAmberBackend || FOSDEMAmberBackend),(smalltalk.FOSDEMREPLSlide || FOSDEMREPLSlide),(smalltalk.FOSDEMCLISlide || FOSDEMCLISlide),(smalltalk.FOSDEMContributionsSlide || FOSDEMContributionsSlide)];
  1573. return self;}
  1574. }),
  1575. smalltalk.FOSDEM2012Presentation);
  1576. smalltalk.addMethod(
  1577. unescape('_isConcrete'),
  1578. smalltalk.method({
  1579. selector: unescape('isConcrete'),
  1580. fn: function (){
  1581. var self=this;
  1582. return true;
  1583. return self;}
  1584. }),
  1585. smalltalk.FOSDEM2012Presentation.klass);
  1586. smalltalk.addMethod(
  1587. unescape('_title'),
  1588. smalltalk.method({
  1589. selector: unescape('title'),
  1590. fn: function (){
  1591. var self=this;
  1592. return "Amber";
  1593. return self;}
  1594. }),
  1595. smalltalk.FOSDEM2012Presentation.klass);
  1596. smalltalk.addClass('FOSDEMTwitter', smalltalk.FOSDEMSlide, ['twitterDiv'], 'Presentation');
  1597. smalltalk.addMethod(
  1598. unescape('_renderSlideOn_'),
  1599. smalltalk.method({
  1600. selector: unescape('renderSlideOn%3A'),
  1601. fn: function (html){
  1602. var self=this;
  1603. (function($rec){smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_loadTweets", []);})]);return smalltalk.send($rec, "_with_", [unescape("What%20about%20@AmberSmalltalk%20on%20Twitter%20%3F")]);})(smalltalk.send(html, "_button", []));
  1604. (self['@twitterDiv']=smalltalk.send(html, "_div", []));
  1605. return self;}
  1606. }),
  1607. smalltalk.FOSDEMTwitter);
  1608. smalltalk.addMethod(
  1609. unescape('_renderTweets_'),
  1610. smalltalk.method({
  1611. selector: unescape('renderTweets%3A'),
  1612. fn: function (tweets){
  1613. var self=this;
  1614. smalltalk.send(self['@twitterDiv'], "_contents_", [(function(html){return smalltalk.send(tweets, "_do_", [(function(tweet){return smalltalk.send(self, "_renderTweet_on_", [tweet, html]);})]);})]);
  1615. return self;}
  1616. }),
  1617. smalltalk.FOSDEMTwitter);
  1618. smalltalk.addMethod(
  1619. unescape('_renderTweet_on_'),
  1620. smalltalk.method({
  1621. selector: unescape('renderTweet%3Aon%3A'),
  1622. fn: function (tweet, html){
  1623. var self=this;
  1624. (function($rec){smalltalk.send($rec, "_class_", ["tweet"]);return smalltalk.send($rec, "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_span_", [smalltalk.send(tweet, "_at_", ["created_at"])]);smalltalk.send($rec, "_img_", [smalltalk.send(tweet, "_at_", ["profile_image_url"])]);smalltalk.send($rec, "_span_", [smalltalk.send(tweet, "_at_", ["from_user"])]);return smalltalk.send($rec, "_div_", [smalltalk.send(tweet, "_at_", ["text"])]);})(html);})]);})(smalltalk.send(html, "_div", []));
  1625. return self;}
  1626. }),
  1627. smalltalk.FOSDEMTwitter);
  1628. smalltalk.addMethod(
  1629. unescape('_cssClass'),
  1630. smalltalk.method({
  1631. selector: unescape('cssClass'),
  1632. fn: function (){
  1633. var self=this;
  1634. return "slide black";
  1635. return self;}
  1636. }),
  1637. smalltalk.FOSDEMTwitter);
  1638. smalltalk.addMethod(
  1639. unescape('_loadTweets'),
  1640. smalltalk.method({
  1641. selector: unescape('loadTweets'),
  1642. fn: function (){
  1643. var self=this;
  1644. smalltalk.send((typeof jQuery == 'undefined' ? nil : jQuery), "_ajax_options_", [unescape("http%3A//search.twitter.com/search.json%3Frpp%3D3%26q%3D%2540AmberSmalltalk"), smalltalk.HashedCollection._fromPairs_([smalltalk.send("type", "__minus_gt", ["GET"]),smalltalk.send("success", "__minus_gt", [(function(json){return smalltalk.send(self, "_renderTweets_", [smalltalk.send(json, "_results", [])]);})]),smalltalk.send("dataType", "__minus_gt", ["jsonp"])])]);
  1645. return self;}
  1646. }),
  1647. smalltalk.FOSDEMTwitter);
  1648. smalltalk.addClass('FOSDEMCLISlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  1649. smalltalk.addMethod(
  1650. unescape('_renderSlideOn_'),
  1651. smalltalk.method({
  1652. selector: unescape('renderSlideOn%3A'),
  1653. fn: function (html){
  1654. var self=this;
  1655. smalltalk.send(html, "_h1_", ["CLI"]);
  1656. smalltalk.send(html, "_with_", [unescape("amberc%20compiles%20.st%20files%20into%20node%20programs%20%21")]);
  1657. smalltalk.send(self, "_renderCodeSnippetOn_", [html]);
  1658. return self;}
  1659. }),
  1660. smalltalk.FOSDEMCLISlide);
  1661. smalltalk.addMethod(
  1662. unescape('_codeSnippet'),
  1663. smalltalk.method({
  1664. selector: unescape('codeSnippet'),
  1665. fn: function (){
  1666. var self=this;
  1667. return unescape("cd%20examples/nodejs/hello%0A../../../bin/amberc%20-m%20Hello%20Hello.st%20Program%0Anode%20Program.js%0A%0AHello%20world%20from%20Amber%20in%20Node.js");
  1668. return self;}
  1669. }),
  1670. smalltalk.FOSDEMCLISlide);
  1671. smalltalk.addClass('FOSDEMContributionsSlide', smalltalk.FOSDEMSlide, [], 'Presentation');
  1672. smalltalk.addMethod(
  1673. unescape('_renderSlideOn_'),
  1674. smalltalk.method({
  1675. selector: unescape('renderSlideOn%3A'),
  1676. fn: function (html){
  1677. var self=this;
  1678. (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//amber-lang.net")]);return smalltalk.send($rec, "_with_", [unescape("amber-lang.net")]);})(smalltalk.send(html, "_a", []));})]);smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_href_", [unescape("https%3A//github.com/NicolasPetton/amber")]);return smalltalk.send($rec, "_with_", [unescape("github.com/NicolasPetton/amber")]);})(smalltalk.send(html, "_a", []));})]);return smalltalk.send(smalltalk.send(html, "_p", []), "_with_", [(function(){return (function($rec){smalltalk.send($rec, "_href_", [unescape("http%3A//groups.google.com/group/amber-lang")]);return smalltalk.send($rec, "_with_", [unescape("groups.google.com/group/amber-lang")]);})(smalltalk.send(html, "_a", []));})]);})]);})(smalltalk.send(html, "_div", []));
  1679. return self;}
  1680. }),
  1681. smalltalk.FOSDEMContributionsSlide);