| |
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8"> |
| <title>Kotlin</title> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <meta name="description" content=""> |
| <meta name="author" content=""> |
| |
| <!-- Le styles --> |
| <link href="css/bootstrap.css" rel="stylesheet"> |
| <style type="text/css"> |
| body { |
| padding-top: 60px; |
| padding-bottom: 40px; |
| } |
| </style> |
| <link href="css/bootstrap-responsive.css" rel="stylesheet"> |
| |
| <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements --> |
| <!--[if lt IE 9]> |
| <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script> |
| <![endif]--> |
| |
| <!-- Le fav and touch icons --> |
| <link rel="shortcut icon" href="images/favicon.ico"> |
| <link rel="apple-touch-icon" href="images/apple-touch-icon.png"> |
| <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> |
| <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> |
| </head> |
| |
| <body> |
| |
| <div class="navbar navbar-fixed-top"> |
| <div class="navbar-inner"> |
| <div class="container"> |
| <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> |
| <span class="icon-bar"></span> |
| <span class="icon-bar"></span> |
| <span class="icon-bar"></span> |
| </a> |
| <a class="brand" href="#">Kotlin</a> |
| <div class="nav-collapse"> |
| <ul class="nav"> |
| <li class="active"><a href="#">Home</a></li> |
| <li><a href="http://confluence.jetbrains.net/display/Kotlin/Welcome" title="All the documentation is in the wiki">Documentation</a></li> |
| <li><a href="versions/snapshot/apidocs/index.html" title="Kotlin API documentation">API</a></li> |
| <li><a href="versions/snapshot/jsdocs/index.html" title="Kotlin JavaScript API documentation">JS</a></li> |
| <li><a href="http://blog.jetbrains.com/kotlin/">Blog</a></li> |
| <li><a href="http://stackoverflow.com/questions/tagged/kotlin" title="Frequently Asked Questions">FAQ</a></li> |
| <li><a href="http://devnet.jetbrains.net/community/kotlin" title="Join us for some kool chat!">Forum</a></li> |
| <li><a href="http://youtrack.jetbrains.com/issues/KT" title="Found an issue or got an idea, please let us know">Issue Tracker</a></li> |
| <li><a href="https://github.com/JetBrains/kotlin" title="We love contributions and we love github!">Source</a></li> |
| <li><a href="http://twitter.com/#!/project_kotlin" href="follow us on twitter!">@project_kotlin</a></li> |
| </ul> |
| </div><!--/.nav-collapse --> |
| </div> |
| </div> |
| </div> |
| |
| <div class="container"> |
| <h1>Developer Notes</h1><h2>Handy links</h2> |
| <ul> |
| <li><a href="http://twitter.com/#!/project_kotlin">follow Kotlin on twitter</a></li> |
| </ul><h2>Editing Kotlin</h2> |
| <ul> |
| <li><a href="http://hadihariri.com/2012/02/17/the-kotlin-journey-part-i-getting-things-set-up/">Kotlin IDEA Plugin</a></li> |
| <li><a href="https://github.com/k33g/kotlin-textmate-bundle#readme">Kotlin TextMate Bundle</a></li> |
| </ul><h2>Kommitter links</h2> |
| <ul> |
| <li><a href="http://teamcity.jetbrains.com/project.html?projectId=project67&tab=projectOverview">TeamCity CI build</a></li> |
| </ul><h2>Regenerating the website</h2><p>To rebuild and generate the API docs, from a local checkout</p> |
| <pre><code>cd libraries |
| mvn install |
| </code></pre><p>Now to be able to update the website you will need to add this to your <strong>~/.m2/settings.xml</strong></p> |
| <pre><code><server> |
| <id>github-project-site</id> |
| <username>git</username> |
| </server> |
| </code></pre><p>Now you can deploy the website via:</p> |
| <pre><code>cd website |
| mvn site:deploy |
| </code></pre> |
| <hr> |
| |
| <footer> |
| <p>© original authors 2012</p> |
| </footer> |
| |
| </div> <!-- /container --> |
| |
| <!-- Le javascript |
| ================================================== --> |
| <!-- Placed at the end of the document so the pages load faster --> |
| <script src="js/jquery.js"></script> |
| <script src="js/bootstrap-transition.js"></script> |
| <script src="js/bootstrap-alert.js"></script> |
| <script src="js/bootstrap-modal.js"></script> |
| <script src="js/bootstrap-dropdown.js"></script> |
| <script src="js/bootstrap-scrollspy.js"></script> |
| <script src="js/bootstrap-tab.js"></script> |
| <script src="js/bootstrap-tooltip.js"></script> |
| <script src="js/bootstrap-popover.js"></script> |
| <script src="js/bootstrap-button.js"></script> |
| <script src="js/bootstrap-collapse.js"></script> |
| <script src="js/bootstrap-carousel.js"></script> |
| <script src="js/bootstrap-typeahead.js"></script> |
| |
| </body> |
| </html> |