public
Description: A Social backchannel application
Homepage: http://onelinr.com
Clone URL: git://github.com/ericw/onelinr.git
onelinr / index.html
100644 34 lines (34 sloc) 2.515 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% include "header.html" %}
<body>
<div id="welcome">
  <h1>Onelinr <span>by <a href="http://eric.wahlforss.com/2007/04/06/onelinr/">Eric Wahlforss</a> &amp; <a href="http://hinkeb.com/">Henrik Berggren</a></span></h1>
  <p>At <span class="highlight">Onelinr</span> you can start <em>your own oneliner channel</em> by simply typing <a href="/yours">onelinr.com/yours</a> in the address bar of your browser. Or type here:</p>
  <form id="new_channel" method="post" onsubmit="location.href = '/' + $('#channel_name').val();return false;">
    <div>
      <input id="channel_name" name="channel[name]" maxlength="30" type="text" value="Your Oneliner Channel" onclick="this.select()">
    <!--<%= submit_tag 'Go to channel' %> -->
    </div>
  </form>
  <script type="text/javascript">
  $('channel_name').focus();
  $('channel_name').select();
  </script>
  <h2>Active Onelinr Channels</h2>
  <ul id="channel-cloud">
    {{channelCloud}}
  </ul>
  <div id="changelog">
    <h3>Changelog</h3>
    <ul>
      <li><em class="date">August 9th, 2008</em> Onelinr is now running on Google App Engine &amp; jQuery! Thanks to <a href="http://hinkeb.com">Henrik</a> for helping me port it. It's also open-sourced on <a href="http://github.com/ericw/onelinr">GitHub</a> and <a href="http://ericw.lighthouseapp.com/projects/15402">Lighthouse</a>, so feel free to reports bugs and fork away!</li>
      <li><em class="date">April 18th, 2007</em> Simplified the posting API and improved sorting order of channels on first page.</li>
      <li><em class="date">April 14th, 2007</em> HTML is now escaped in oneliners.</li>
      <li><em class="date">April 13th, 2007</em> Fixed a small bug in name validation of channels (caused the front page to break earlier).</li>
      <li><em class="date">April 12th, 2007</em> With the help of <a href="http://joeljunstrom.jaiku.com/">Joel Junström</a> of <a href="http://winstondesign.se">Winston Design</a> the entire service is now <a href="http://en.wikipedia.org/wiki/Representational_State_Transfer">RESTFul</a> and has better session management. Basic permalinks for oneliners added (will be improved). RSS feeds are available for each channel. Mail me if you want <a href="http://dev.onelinr.com/">svn and trac</a> access.</li>
      <li><em class="date">April 6th, 2007</em> Added Textile support. Bugfixes.</li>
      <li><em class="date">April 5th, 2007</em> <a href="http://eric.wahlforss.com/2007/04/06/onelinr/">First release</a>.</li>
    </ul>
  </div>
</div>
</body>
</html>