You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
<script type="text/html" id="project-documentation-widget-template"> |
|
<h3><%= name %></h3> |
|
<table> |
|
<thead> |
|
<tr> |
|
<th>Release</th> |
|
<th>Documentation</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<% _.each(releases, function(release) { %> |
|
<tr> |
|
<td> |
|
<%= release.fullName %> |
|
<i class="<%= release.statusIconClass() %>"></i> |
|
</td> |
|
<td> |
|
<a href='<%= release.refDocUrl %>'>Reference</a> |
|
<a href='<%= release.apiDocUrl %>'>API</a> |
|
</td> |
|
</tr> |
|
<% }); %> |
|
</tbody> |
|
</table> |
|
</script> |
|
|
|
<script type="text/html" id="project-quickstart-selector-template"> |
|
<select class='selector'> |
|
<% _.each(releases, function(release, index) { %> |
|
<option value="<%= index %>"><%= release.fullName %> (<%= release.statusIconClass() %>)</option> |
|
<% }); %> |
|
</select> |
|
</script> |
|
|
|
<script type="text/html" id="project-quickstart-maven-widget-template"> |
|
<pre> |
|
<dependency> |
|
<groupId><%= groupId %></groupId> |
|
<artifactId><%= artifactId %></artifactId> |
|
<version><%= fullName %></version> |
|
</dependency> |
|
</pre> |
|
|
|
</script> |