method.tmpl 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?js
  2. var data = obj;
  3. var self = this;
  4. ?>
  5. <dt>
  6. <?js if (data.kind !== 'module') { ?>
  7. <h4 class="name" id="<?js= id ?>">
  8. <?js if (data.hideconstructor) { ?>
  9. <?js= name ?>
  10. <?js } else { ?>
  11. <?js= (data.kind === 'class' ? 'new ' : '') + data.attribs + name + (data.signature ? data.signature : '') ?>
  12. <?js } ?>
  13. <?js if (data.meta && self.outputSourceFiles) {?>
  14. <div class="container-source members">
  15. <code><?js= self.linkto(meta.shortpath) ?></code>,
  16. <code><?js= self.linkto(meta.shortpath, 'line ' + meta.lineno, null, 'line' + meta.lineno) ?></code>
  17. </div>
  18. <?js } ?>
  19. </h4>
  20. <?js if (data.summary) { ?>
  21. <p class="summary"><?js= summary ?></p>
  22. <?js } ?>
  23. <?js } ?>
  24. </dt>
  25. <dd>
  26. <?js if (data.kind !== 'module' && data.description && !data.hideconstructor) { ?>
  27. <div class="description">
  28. <?js= data.description ?>
  29. </div>
  30. <?js } ?>
  31. <?js if (data.augments && data.alias && data.alias.indexOf('module:') === 0) { ?>
  32. <h5>Extends:</h5>
  33. <?js= self.partial('augments.tmpl', data) ?>
  34. <?js } ?>
  35. <?js if (kind === 'event' && data.type && data.type.names) {?>
  36. <h5>Type:</h5>
  37. <ul>
  38. <li>
  39. <?js= self.partial('type.tmpl', data.type.names) ?>
  40. </li>
  41. </ul>
  42. <?js } ?>
  43. <?js if (data['this']) { ?>
  44. <h5>This:</h5>
  45. <ul><li><?js= this.linkto(data['this'], data['this']) ?></li></ul>
  46. <?js } ?>
  47. <?js if (data.params && params.length && !data.hideconstructor) { ?>
  48. <div class="container-params">
  49. <h5>Parameters:</h5>
  50. <?js= this.partial('params.tmpl', params) ?>
  51. </div>
  52. <?js } ?>
  53. <?js if (data.kind !== 'module' && data.requires && data.requires.length) { ?>
  54. <h5>Requires:</h5>
  55. <ul><?js data.requires.forEach(function(r) { ?>
  56. <li><?js= self.linkto(r) ?></li>
  57. <?js }); ?></ul>
  58. <?js } ?>
  59. <?js if (data.fires && fires.length) { ?>
  60. <h5>Fires:</h5>
  61. <ul><?js fires.forEach(function(f) { ?>
  62. <li><?js= self.linkto(f) ?></li>
  63. <?js }); ?></ul>
  64. <?js } ?>
  65. <?js if (data.listens && listens.length) { ?>
  66. <h5>Listens to Events:</h5>
  67. <ul><?js listens.forEach(function(f) { ?>
  68. <li><?js= self.linkto(f) ?></li>
  69. <?js }); ?></ul>
  70. <?js } ?>
  71. <?js if (data.listeners && listeners.length) { ?>
  72. <h5>Listeners of This Event:</h5>
  73. <ul><?js listeners.forEach(function(f) { ?>
  74. <li><?js= self.linkto(f) ?></li>
  75. <?js }); ?></ul>
  76. <?js } ?>
  77. <?js if (data.exceptions && exceptions.length) { ?>
  78. <h5>Throws:</h5>
  79. <?js if (exceptions.length > 1) { ?><ul><?js
  80. exceptions.forEach(function(r) { ?>
  81. <li><?js= self.partial('exceptions.tmpl', r) ?></li>
  82. <?js });
  83. ?></ul><?js } else {
  84. exceptions.forEach(function(r) { ?>
  85. <?js= self.partial('exceptions.tmpl', r) ?>
  86. <?js });
  87. } } ?>
  88. <?js if (data.returns && returns.length) { ?>
  89. <div class="container-returns">
  90. <h5>Returns:</h5>
  91. <?js if (returns.length > 1) { ?><ul><?js
  92. returns.forEach(function(r) { ?>
  93. <li><?js= self.partial('returns.tmpl', r) ?></li>
  94. <?js });
  95. ?></ul><?js } else {
  96. returns.forEach(function(r) { ?>
  97. <?js= self.partial('returns.tmpl', r) ?>
  98. <?js });
  99. } ?>
  100. </div>
  101. <?js } ?>
  102. <?js= this.partial('details.tmpl', data) ?>
  103. <?js if (data.examples && examples.length) { ?>
  104. <h5>Example<?js= examples.length > 1? 's':'' ?></h5>
  105. <?js= this.partial('examples.tmpl', examples) ?>
  106. <?js } ?>
  107. </dd>