about_tmpl.coffee 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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>&mdash;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 like DevDocs, please consider funding the project on
  26. <a href="https://www.gittip.com/Thibaut/">Gittip</a>. Thanks!<br>
  27. <h2 class="_lined-heading" id="credits">Credits</h2>
  28. <table class="_credits">
  29. <tr>
  30. <th>Documentation
  31. <th>Copyright
  32. <th>License
  33. #{("<tr><td>#{c[0]}<td>&copy; #{c[1]}<td><a href=\"#{c[3]}\">#{c[2]}</a>" for c in credits).join('')}
  34. </table>
  35. <p><strong>With special thanks to:</strong>
  36. <ul>
  37. <li><a href="https://www.heroku.com">Heroku</a> and <a href="http://newrelic.com">New Relic</a> for providing awesome free service
  38. <li>Daniel Bruce for the <a href="http://www.entypo.com">Entypo</a> pictograms
  39. <li><a href="http://www.jeremykratz.com/">Jeremy Kratz</a> for the C/C++ logo
  40. </ul>
  41. <h2 class="_lined-heading" id="faq">Questions & Answsers</h2>
  42. <dl>
  43. <dt>Does it work offline?
  44. <dd>Yes! DevDocs is open source. You can run <a href="https://github.com/Thibaut/devdocs">the code</a> locally on your computer.<br>
  45. An offline version that requires no setup is planned for the future.
  46. <dt>Where can I suggest new docs and features?
  47. <dd>You can suggest and vote for new docs on the <a href="https://trello.com/b/6BmTulfx/devdocs-documentation">Trello board</a>.<br>
  48. If you have a specific feature request, add it to the <a href="https://github.com/Thibaut/devdocs/issues">issue tracker</a>.<br>
  49. Otherwise use the <a href="https://groups.google.com/d/forum/devdocs">mailing list</a>.
  50. <dt>Where can I report bugs?
  51. <dd>In the <a href="https://github.com/Thibaut/devdocs/issues">issue tracker</a>. Thanks!
  52. </dl>
  53. <p>For anything else, feel free to email me at <a href="mailto:thibaut@devdocs.io">thibaut@devdocs.io</a>.
  54. <h2 class="_lined-heading" id="copyright">Copyright and License</h2>
  55. <p class="_note">
  56. <strong>Copyright 2013&ndash;2014 Thibaut Courouble and <a href="https://github.com/Thibaut/devdocs/graphs/contributors">other contributors</a></strong><br>
  57. This software is licensed under the terms of the Mozilla Public License v2.0.<br>
  58. You may obtain a copy of the source code at <a href="https://github.com/Thibaut/devdocs">github.com/Thibaut/devdocs</a>.<br>
  59. For more information, see the <a href="https://github.com/Thibaut/devdocs/blob/master/COPYRIGHT">COPYRIGHT</a>
  60. and <a href="https://github.com/Thibaut/devdocs/blob/master/LICENSE">LICENSE</a> files.
  61. <h2 class="_lined-heading" id="plugins">Plugins and Extensions</h2>
  62. <ul>
  63. <li><a href="https://chrome.google.com/webstore/detail/devdocs/mnfehgbmkapmjnhcnbodoamcioleeooe">Chrome web app</a>
  64. <li><a href="https://marketplace.firefox.com/app/devdocs/">Firefox web app</a>
  65. <li><a href="https://sublime.wbond.net/packages/DevDocs">Sublime Text plugin</a>
  66. <li><a href="https://atom.io/packages/devdocs">Atom plugin</a>
  67. <li><a href="https://github.com/gruehle/dev-docs-viewer">Brackets extension</a>
  68. </ul>
  69. <p>You can also use <a href="http://fluidapp.com">Fluid</a> to turn DevDocs into a real OS X app, or <a href="https://apps.ubuntu.com/cat/applications/fogger/">Fogger</a> on Ubuntu.
  70. """
  71. credits = [
  72. [ 'Angular.js',
  73. '2010-2014 Google, Inc.',
  74. 'CC BY',
  75. 'http://creativecommons.org/licenses/by/3.0/'
  76. ], [
  77. 'Backbone.js',
  78. '2010-2014 Jeremy Ashkenas, DocumentCloud',
  79. 'MIT',
  80. 'https://raw.github.com/jashkenas/backbone/master/LICENSE'
  81. ], [
  82. 'C<br>C++',
  83. 'cppreference.com',
  84. 'CC BY-SA',
  85. 'http://en.cppreference.com/w/Cppreference:Copyright/CC-BY-SA'
  86. ], [
  87. 'Chai',
  88. '2011-2014 Jake Luer',
  89. 'MIT',
  90. 'https://github.com/chaijs/chai/blob/master/README.md#license'
  91. ], [
  92. 'CoffeeScript',
  93. '2009-2014 Jeremy Ashkenas',
  94. 'MIT',
  95. 'https://raw.github.com/jashkenas/coffee-script/master/LICENSE'
  96. ], [
  97. 'CSS<br>DOM<br>HTML<br>JavaScript',
  98. '2005-2013 Mozilla Developer Network and individual contributors',
  99. 'CC BY-SA',
  100. 'http://creativecommons.org/licenses/by-sa/2.5/'
  101. ], [
  102. 'D3.js',
  103. '2014 Michael Bostock',
  104. 'BSD',
  105. 'https://raw.github.com/mbostock/d3/master/LICENSE'
  106. ], [
  107. 'Ember.js',
  108. '2014 Yehuda Katz, Tom Dale and Ember.js contributors',
  109. 'MIT',
  110. 'https://raw.github.com/emberjs/ember.js/master/LICENSE'
  111. ], [
  112. 'Express',
  113. '2009-2014 TJ Holowaychuk',
  114. 'MIT',
  115. 'https://raw.githubusercontent.com/visionmedia/express/master/LICENSE'
  116. ], [
  117. 'Git',
  118. '2005-2014 Linus Torvalds and others',
  119. 'GPLv2',
  120. 'https://raw.github.com/git/git/master/COPYING'
  121. ], [
  122. 'Go',
  123. 'Google, Inc.',
  124. 'CC BY',
  125. 'http://creativecommons.org/licenses/by/3.0/'
  126. ], [
  127. 'Grunt',
  128. '2014 Grunt Team',
  129. 'MIT',
  130. 'https://raw.githubusercontent.com/gruntjs/gruntjs.com/master/LICENSE'
  131. ], [
  132. 'Haskell',
  133. 'The University of Glasgow',
  134. 'BSD',
  135. 'http://www.haskell.org/ghc/license'
  136. ], [
  137. 'HTTP',
  138. '1999 The Internet Society',
  139. 'Custom',
  140. 'http://www.w3.org/Protocols/rfc2616/rfc2616-sec21.html#sec21'
  141. ], [
  142. 'jQuery',
  143. '2009 Packt Publishing<br>&copy; 2014 jQuery Foundation',
  144. 'MIT',
  145. 'https://raw.github.com/jquery/api.jquery.com/master/LICENSE-MIT.txt'
  146. ], [
  147. 'jQuery Mobile',
  148. '2014 jQuery Foundation',
  149. 'MIT',
  150. 'https://raw.github.com/jquery/api.jquerymobile.com/master/LICENSE-MIT.txt'
  151. ], [
  152. 'jQuery UI',
  153. '2014 jQuery Foundation',
  154. 'MIT',
  155. 'https://raw.github.com/jquery/api.jqueryui.com/master/LICENSE-MIT.txt'
  156. ], [
  157. 'Knockout.js',
  158. 'Steven Sanderson, the Knockout.js team, and other contributors',
  159. 'MIT',
  160. 'https://raw.github.com/knockout/knockout/master/LICENSE'
  161. ], [
  162. 'Laravel',
  163. 'Taylor Otwell',
  164. 'MIT',
  165. 'https://raw.githubusercontent.com/laravel/framework/master/LICENSE.txt'
  166. ], [
  167. 'Less',
  168. '2009-2014 The Core Less Team',
  169. 'CC BY',
  170. 'http://creativecommons.org/licenses/by/3.0/'
  171. ], [
  172. 'Lo-Dash',
  173. '2009-2013 The Dojo Foundation',
  174. 'MIT',
  175. 'https://raw.github.com/lodash/lodash/master/LICENSE.txt'
  176. ], [
  177. 'MaxCDN',
  178. '2014 MaxCDN',
  179. 'MIT',
  180. 'https://raw.githubusercontent.com/MaxCDN/api-docs/master/LICENSE'
  181. ], [
  182. 'Moment.js',
  183. '2011-2014 Tim Wood, Iskren Chernev, Moment.js contributors',
  184. 'MIT',
  185. 'https://raw.github.com/moment/moment/master/LICENSE'
  186. ], [
  187. 'Node.js',
  188. 'Joyent, Inc. and other Node contributors<br>Node.js is a trademark of Joyent, Inc.',
  189. 'MIT',
  190. 'https://raw.github.com/joyent/node/master/LICENSE'
  191. ], [
  192. 'PHP',
  193. '1997-2014 The PHP Documentation Group',
  194. 'CC BY',
  195. 'http://creativecommons.org/licenses/by/3.0/'
  196. ], [
  197. 'PostgreSQL',
  198. '1996-2013 The PostgreSQL Global Development Group<br>&copy; 1994 The Regents of the University of California',
  199. 'PostgreSQL',
  200. 'http://www.postgresql.org/about/licence/'
  201. ], [
  202. 'Python',
  203. '1990-2014 Python Software Foundation<br>Python is a trademark of the Python Software Foundation.',
  204. 'PSFL',
  205. 'http://docs.python.org/3/license.html'
  206. ], [
  207. 'Redis',
  208. '2009-2014 Salvatore Sanfilippo',
  209. 'CC BY-SA',
  210. 'http://creativecommons.org/licenses/by-sa/4.0/'
  211. ], [
  212. 'RequireJS',
  213. '2010-2014 The Dojo Foundation',
  214. 'MIT',
  215. 'https://raw.githubusercontent.com/jrburke/requirejs/master/LICENSE'
  216. ], [
  217. 'Ruby',
  218. '1993-2014 Yukihiro Matsumoto',
  219. 'Ruby',
  220. 'https://www.ruby-lang.org/en/about/license.txt'
  221. ], [
  222. 'Ruby on Rails',
  223. '2004-2014 David Heinemeier Hansson<br>Rails, Ruby on Rails, and the Rails logo are trademarks of David Heinemeier Hansson.',
  224. 'MIT',
  225. 'https://raw.github.com/rails/rails/master/activerecord/MIT-LICENSE'
  226. ], [
  227. 'Sass',
  228. '2006-2014 Hampton Catlin, Nathan Weizenbaum, and Chris Eppstein',
  229. 'MIT',
  230. 'https://raw.github.com/nex3/sass/master/MIT-LICENSE'
  231. ], [
  232. 'Underscore.js',
  233. '2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors',
  234. 'MIT',
  235. 'https://raw.github.com/jashkenas/underscore/master/LICENSE'
  236. ], [
  237. 'Yii',
  238. '2008-2014 by Yii Software LLC',
  239. 'BSD',
  240. 'https://raw.github.com/yiisoft/yii/master/LICENSE'
  241. ]
  242. ]