about_tmpl.coffee 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. app.templates.aboutPage = -> """
  2. <div class="_toc">
  3. <h3 class="_toc-title">Table of Contents</h3>
  4. <ul class="_toc-list">
  5. <li><a href="#credits">Credits</a>
  6. <li><a href="#faq">FAQ</a>
  7. <li><a href="#copyright">Copyright</a>
  8. <li><a href="#plugins">Plugins</a>
  9. </ul>
  10. </div>
  11. <h1 class="_lined-heading">API Documentation Browser</h1>
  12. <p>DevDocs combines multiple API documentations in a fast, organized, and searchable interface.
  13. <ul>
  14. <li>Created and maintained by <a href="http://thibaut.me">Thibaut Courouble</a>
  15. <li>Proudly sponsored by <a href="http://www.maxcdn.com">MaxCDN</a>—content delivery that developers love
  16. <li>Free and <a href="https://github.com/Thibaut/devdocs">open source</a>
  17. <iframe class="_github-btn" src="http://ghbtns.com/github-btn.html?user=Thibaut&repo=devdocs&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="20"></iframe>
  18. </ul>
  19. <p>To keep up-to-date with the latest development and community news:
  20. <ul>
  21. <li>Subscribe to the <a href="http://eepurl.com/HnLUz">newsletter</a>
  22. <li>Follow <a href="https://twitter.com/DevDocs">@DevDocs</a> on Twitter
  23. <li>Join the <a href="https://groups.google.com/d/forum/devdocs">mailing list</a>
  24. </ul>
  25. <p class="_note _note-green">If you use and like DevDocs, please consider donating through
  26. <a href="https://www.gittip.com/Thibaut/">Gittip</a> or
  27. <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4PTFAGT7K6QVG">PayPal</a>.<br>
  28. Your support helps sustain the project and is highly appreciated.
  29. <h2 class="_lined-heading" id="credits">Credits</h2>
  30. <table class="_credits">
  31. <tr>
  32. <th>Documentation
  33. <th>Copyright
  34. <th>License
  35. #{("<tr><td>#{c[0]}<td>&copy; #{c[1]}<td><a href=\"#{c[3]}\">#{c[2]}</a>" for c in credits).join('')}
  36. </table>
  37. <p><strong>With special thanks to:</strong>
  38. <ul>
  39. <li><a href="https://www.heroku.com">Heroku</a> and <a href="http://newrelic.com">New Relic</a> for providing awesome free service
  40. <li>Daniel Bruce for the <a href="http://www.entypo.com">Entypo</a> pictograms
  41. </ul>
  42. <h2 class="_lined-heading" id="faq">Questions & Answsers</h2>
  43. <dl>
  44. <dt>Does it work offline?
  45. <dd>Yes! DevDocs is open source. You can run <a href="https://github.com/Thibaut/devdocs">the code</a> locally on your computer.<br>
  46. An offline version that requires no setup is planned for the future.
  47. <dt>Where can I suggest new docs and features?
  48. <dd>You can suggest and vote for new docs on the <a href="https://trello.com/b/6BmTulfx/devdocs-documentation">Trello board</a>.<br>
  49. If you have a specific feature request, add it to the <a href="https://github.com/Thibaut/devdocs/issues">issue tracker</a>.<br>
  50. Otherwise use the <a href="https://groups.google.com/d/forum/devdocs">mailing list</a>.
  51. <dt>Where can I report bugs?
  52. <dd>In the <a href="https://github.com/Thibaut/devdocs/issues">issue tracker</a>. Thanks!
  53. </dl>
  54. <p>For anything else, feel free to email me at <a href="mailto:thibaut@devdocs.io">thibaut@devdocs.io</a>.
  55. <h2 class="_lined-heading" id="copyright">Copyright and License</h2>
  56. <p class="_note">
  57. <strong>Copyright 2013 Thibaut Courouble and <a href="https://github.com/Thibaut/devdocs/graphs/contributors">other contributors</a></strong><br>
  58. This software is licensed under the terms of the Mozilla Public License v2.0.<br>
  59. You may obtain a copy of the source code at <a href="https://github.com/Thibaut/devdocs">github.com/Thibaut/devdocs</a>.<br>
  60. For more information, see the <a href="https://github.com/Thibaut/devdocs/blob/master/COPYRIGHT">COPYRIGHT</a>
  61. and <a href="https://github.com/Thibaut/devdocs/blob/master/LICENSE">LICENSE</a> files.
  62. <h2 class="_lined-heading" id="plugins">Plugins and Extensions</h2>
  63. <ul>
  64. <li><a href="https://chrome.google.com/webstore/detail/devdocs/mnfehgbmkapmjnhcnbodoamcioleeooe">Chrome web app</a>
  65. <li><a href="https://sublime.wbond.net/packages/DevDocs">Sublime Text plugin</a>
  66. <li><a href="https://github.com/gruehle/dev-docs-viewer">Brackets extension</a>
  67. </ul>
  68. """
  69. credits = [
  70. [ 'Angular.js',
  71. '2010-2013 Google, Inc.',
  72. 'CC BY',
  73. 'http://creativecommons.org/licenses/by/3.0/'
  74. ], [
  75. 'Backbone.js',
  76. '2010-2013 Jeremy Ashkenas, DocumentCloud',
  77. 'MIT',
  78. 'https://raw.github.com/jashkenas/backbone/master/LICENSE'
  79. ], [
  80. 'CoffeeScript',
  81. '2009-2013 Jeremy Ashkenas',
  82. 'MIT',
  83. 'https://raw.github.com/jashkenas/coffee-script/master/LICENSE'
  84. ], [
  85. 'CSS<br>DOM<br>HTML<br>JavaScript',
  86. '2005-2013 Mozilla Developer Network and individual contributors',
  87. 'CC BY-SA',
  88. 'http://creativecommons.org/licenses/by-sa/2.5/'
  89. ], [
  90. 'Ember.js',
  91. '2013 Yehuda Katz, Tom Dale and Ember.js contributors',
  92. 'MIT',
  93. 'https://raw.github.com/emberjs/ember.js/master/LICENSE'
  94. ], [
  95. 'Git',
  96. '2005-2013 Linus Torvalds and others',
  97. 'GPLv2',
  98. 'https://raw.github.com/git/git/master/COPYING'
  99. ], [
  100. 'HTTP',
  101. '1999 The Internet Society',
  102. 'Custom',
  103. 'http://www.w3.org/Protocols/rfc2616/rfc2616-sec21.html#sec21'
  104. ], [
  105. 'jQuery',
  106. '2009 Packt Publishing<br>&copy; 2013 jQuery Foundation',
  107. 'MIT',
  108. 'https://raw.github.com/jquery/api.jquery.com/master/LICENSE-MIT.txt'
  109. ], [
  110. 'jQuery Mobile',
  111. '2013 jQuery Foundation',
  112. 'MIT',
  113. 'https://raw.github.com/jquery/api.jquerymobile.com/master/LICENSE-MIT.txt'
  114. ], [
  115. 'jQuery UI',
  116. '2013 jQuery Foundation',
  117. 'MIT',
  118. 'https://raw.github.com/jquery/api.jqueryui.com/master/LICENSE-MIT.txt'
  119. ], [
  120. 'Less',
  121. '2009-2013 Alexis Sellier &amp; The Core Less Team',
  122. 'Apache v2',
  123. 'https://raw.github.com/less/less.js/master/LICENSE'
  124. ], [
  125. 'Lo-Dash',
  126. '2009-2013 The Dojo Foundation',
  127. 'MIT',
  128. 'https://raw.github.com/lodash/lodash/master/LICENSE.txt'
  129. ], [
  130. 'Node.js',
  131. 'Joyent, Inc. and other Node contributors<br>Node.js is a trademark of Joyent, Inc.',
  132. 'MIT',
  133. 'https://raw.github.com/joyent/node/master/LICENSE'
  134. ], [
  135. 'PHP',
  136. '1997-2013 The PHP Documentation Group',
  137. 'CC BY',
  138. 'http://creativecommons.org/licenses/by/3.0/'
  139. ], [
  140. 'Python',
  141. '1990-2013 Python Software Foundation<br>Python is a trademark of the Python Software Foundation.',
  142. 'PSFL',
  143. 'http://docs.python.org/3/license.html'
  144. ], [
  145. 'Redis',
  146. '2006-2013 Salvatore Sanfilippo and others',
  147. 'BSD',
  148. 'https://raw.github.com/antirez/redis/unstable/COPYING'
  149. ], [
  150. 'Ruby',
  151. '1993-2013 Yukihiro Matsumoto',
  152. 'Ruby',
  153. 'https://www.ruby-lang.org/en/about/license.txt'
  154. ], [
  155. 'Ruby on Rails',
  156. '2004-2013 David Heinemeier Hansson<br>Rails, Ruby on Rails, and the Rails logo are trademarks of David Heinemeier Hansson.',
  157. 'MIT',
  158. 'https://raw.github.com/rails/rails/master/activerecord/MIT-LICENSE'
  159. ], [
  160. 'Sass',
  161. '2006-2013 Hampton Catlin, Nathan Weizenbaum, and Chris Eppstein',
  162. 'MIT',
  163. 'https://raw.github.com/nex3/sass/master/MIT-LICENSE'
  164. ], [
  165. 'Underscore.js',
  166. '2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors',
  167. 'MIT',
  168. 'https://raw.github.com/jashkenas/underscore/master/LICENSE'
  169. ]
  170. ]