1
0

index.html 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Jtalk Smalltalk</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <meta name="author" content="Nicolas Petton" />
  7. <link rel="stylesheet" type="text/css" href='css/style.css' />
  8. <link rel="stylesheet" type="text/css" href='css/syntax.css' />
  9. <script type='text/javascript' src='js/jquery-1.4.4.min.js'></script>
  10. <script type='text/javascript' src='js/jquery-ui-1.8.9.custom.min.js'></script>
  11. <script type='text/javascript' src='js/jquery.textarea.js'></script>
  12. <script type='text/javascript' src='js/boot.js'></script>
  13. <script type='text/javascript' src='js/Kernel.js'></script>
  14. <script type='text/javascript' src='js/JQuery.js'></script>
  15. <script type='text/javascript' src='js/Canvas.js'></script>
  16. <script type='text/javascript' src='js/Parser.js'></script>
  17. <script type='text/javascript' src='js/Compiler.js'></script>
  18. <script type='text/javascript' src='js/IDE.js'></script>
  19. <script type='text/javascript' src='js/init.js'></script>
  20. <link rel="stylesheet" type="text/css" href="css/jtalk.css"/>
  21. <script type="text/javascript">
  22. var _gaq = _gaq || [];
  23. _gaq.push(['_setAccount', 'UA-2246313-6']);
  24. _gaq.push(['_trackPageview']);
  25. (function() {
  26. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  27. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  28. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  29. })();
  30. </script>
  31. </head>
  32. <body>
  33. <script type="text/javascript">
  34. jQuery(window).scroll(function() {
  35. if(jQuery(window).scrollTop() > 210) {
  36. jQuery('#menu')
  37. .css('position', 'fixed')
  38. .css('top', '0px')
  39. } else {
  40. jQuery('#menu')
  41. .css('position', 'absolute')
  42. .css('top', '210px')
  43. }
  44. });
  45. </script>
  46. <a href="http://github.com/NicolasPetton/jtalk"><img style="position: absolute; top: 0; lef
  47. t: 0; border: 0;" src="https://assets.github.com/img/bec6c51521dcc8148146135149fe06a9cc737577?repo=&url=http%3A%2F%2Fs3.amazonaws.com%2Fgithub%2Fribbons%2Fforkme_left_darkblue_121621.png&path=" alt="Fork me on GitHub"></a>
  48. <div id="wrapper">
  49. <div id="header">
  50. <div class="main">
  51. <img alt="Jtalk, the Smalltalk for web developers" src="images/text_header.png"/>
  52. </div>
  53. </div>
  54. <div id="menu">
  55. <div class="main">
  56. <ul>
  57. <li><a href="index.html">Overview</a></li> ·
  58. <li><a href="index.html#download">Download</a></li> ·
  59. <li><a id="doc_link" href="documentation.html">Documentation</a></li> ·
  60. <li><a target="_blank" href="https://github.com/NicolasPetton/jtalk">Source</a></li>
  61. </ul>
  62. </div>
  63. </div>
  64. <div id="content">
  65. <div class="main">
  66. <div class="box first">
  67. <div class="content">
  68. <h1><img alt="Jtalk is an implementation of the Smalltalk language that runs on the JavaScript runtime." src="images/title_container1.png"/></h1>
  69. <div class="left">
  70. <p>Jtalk is an implementation of the <a href="http://en.wikipedia.org/wiki/Smalltalk">Smalltalk</a> language that runs on top of the <a href="http://en.wikipedia.org/wiki/Javascript">JavaScript</a> runtime. It is designed to make client-side development faster and easier.</p>
  71. <p>Jtalk is written in itself, including the parser and compiler. Jtalk compiles into efficient JavaScript, mapping one-to-one with the equivalent JavaScript. There is no interpretation at runtime.</p>
  72. <p>Try a <button onClick="smalltalk.Browser._open()"> Class browser</button> right now!</p>
  73. <script type="text/javascript">
  74. /* <![CDATA[ */
  75. (function() {
  76. var s = document.createElement('script'), t = document.getElementsByTagName('script')[0];
  77. s.type = 'text/javascript';
  78. s.async = true;
  79. s.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto';
  80. t.parentNode.insertBefore(s, t);
  81. })();
  82. /* ]]> */
  83. </script>
  84. <p>You can join the <a href="http://groups.google.com/group/jtalk-project"> Google Group</a>.</p>
  85. <a class="FlattrButton" style="display:none;" rev="flattr;button:compact" href="http://jtalk-project.org"></a>
  86. <a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="NicolasPetton">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
  87. </div>
  88. <div class="right"><img src="images/screen2.png"/></div>
  89. <div class="clear"></div>
  90. </div>
  91. </div>
  92. <div class="box">
  93. <h2>Client-side usage</h2>
  94. <div class="content">
  95. <p>Load the full Jtalk Smalltalk environment with the IDE in your page:</p>
  96. <div class="highlight"><pre><code class="html"><span class="nt">&lt;script </span><span class="na">src=</span><span class="s">&quot;js/jtalk.js&quot;</span> <span class="na">type=</span><span class="s">&quot;text/javascript&quot;</span><span class="nt">&gt;&lt;/script&gt;</span>
  97. <span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">&quot;stylesheet&quot;</span> <span class="na">type=</span><span class="s">&quot;text/css&quot;</span> <span class="na">href=</span><span class="s">&quot;css/jtalk.css&quot;</span><span class="nt">/&gt;</span>
  98. </code></pre>
  99. </div>
  100. <p>Or the deployment JavaScript file only (without the Smalltalk parser or compiler):</p>
  101. <div class="highlight"><pre><code class="html"><span class="nt">&lt;script </span><span class="na">src=</span><span class="s">&quot;js/jtalk.deploy.js&quot;</span> <span class="na">type=</span><span class="s">&quot;text/javascript&quot;</span><span class="nt">&gt;&lt;/script&gt;</span>
  102. </code></pre>
  103. </div>
  104. <p>Read the <a href="#documentation">documentation</a> to learn more about writing applications in Jtalk.</p>
  105. </div>
  106. </div>
  107. <div class="box last">
  108. <h2 id="download">Download</h2>
  109. <div class="content">
  110. <p>You can get a copy of Jtalk from github or clone the <a href="http://github.com/NicolasPetton/jtalk">git repository</a>.</p>
  111. <a href="http://github.com/NicolasPetton/jtalk/zipball/master">
  112. <img border="0" width="90" src="http://github.com/images/modules/download/zip.png"></a>
  113. <a href="http://github.com/NicolasPetton/jtalk/tarball/master">
  114. <img border="0" width="90" src="http://github.com/images/modules/download/tar.png"></a>
  115. </div>
  116. </div>
  117. </div>
  118. </div>
  119. <div id="footer">
  120. <div class="main">
  121. <p>Copyright © 2011 <a href="http://www.nicolas-petton.fr">Nicolas Petton</a>. The content of this website in licensed under <a href="http://creativecommons.org/licenses/by-nc/3.0/">CC-BY-NC 3.0</a>.</p>
  122. <p>Jtalk is an opensource project sponsored by <a href="http://www.objectfusion.fr">objectfusion</a>.</p>
  123. <p>The design of this website was provided by <a href="mailto:neomie.thirion@gmail.com">Noémie Thirion</a>.</p>
  124. </div>
  125. </div>
  126. </body>
  127. </html>