allfiles.tmpl 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset={+IO.encoding+}" />
  5. {! Link.base = ""; /* all generated links will be relative to this */ !}
  6. <title>JsDoc Reference - File Index</title>
  7. <meta name="generator" content="JsDoc Toolkit" />
  8. <link href="css/default.css" type="text/css" rel="stylesheet" media="all" />
  9. </head>
  10. <body>
  11. {+include("static/header.html")+}
  12. <div class="index">
  13. <div class="menu">
  14. {+publish.classesIndex+}
  15. </div>
  16. <div class="fineprint" style="clear:both">
  17. <if test="JSDOC.opt.D.copyright">&copy;{+JSDOC.opt.D.copyright+}<br /></if>
  18. Generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> {+JSDOC.VERSION+} on {+new Date()+}<br />
  19. HTML template: <a href="http://www.thebrightlines.com/2010/05/06/new-template-for-jsdoctoolkit-codeview/" target="_blank">Codeview</a>
  20. </div>
  21. </div>
  22. <div class="content">
  23. <div class="innerContent">
  24. <h1 class="classTitle">File Index</h1>
  25. <ul class="fileList">
  26. <for each="item" in="data">
  27. <li>
  28. <h2 class="filename">{+new Link().toSrc(item.alias).withText(item.name)+}</h2>
  29. <if test="item.desc">{+resolveLinks(item.desc)+}</if>
  30. <dl class="detailList">
  31. <if test="item.author">
  32. <dt class="heading">Author:</dt>
  33. <dd>{+item.author+}</dd>
  34. </if>
  35. <if test="item.version">
  36. <dt class="heading">Version:</dt>
  37. <dd>{+item.version+}</dd>
  38. </if>
  39. {! var locations = item.comment.getTag('location').map(function($){return $.toString().replace(/(^\$ ?| ?\$$)/g, '').replace(/^HeadURL: https:/g, 'http:');}) !}
  40. <if test="locations.length">
  41. <dt class="heading">Location:</dt>
  42. <for each="location" in="locations">
  43. <dd><a href="{+location+}">{+location+}</a></dd>
  44. </for>
  45. </if>
  46. </dl>
  47. </li>
  48. </for>
  49. </ul>
  50. </div>
  51. </div>
  52. </body>
  53. </html>