Skip to content

Commit 2b63cac

Browse files
committed
Add git builds for all project listings.
1 parent fef912f commit 2b63cac

File tree

8 files changed

+73
-2
lines changed

8 files changed

+73
-2
lines changed

templates/color-git.hbs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<h2>jQuery Color - Git Builds</h2>
2+
<p>UNSTABLE, NOT FOR PRODUCTION</p>
3+
4+
<ul>
5+
<li>
6+
jQuery Color git build -
7+
<a href="/color/jquery.color-git.js">uncompressed</a>
8+
</li>
9+
<li>
10+
jQuery Color SVG Color Names git build -
11+
<a href="/color/jquery.color.svg-names-git.js">uncompressed</a>
12+
</li>
13+
<li>
14+
jQuery Color With Names (last two together) git build -
15+
<a href="/color/jquery.color.plus-names-git.js">uncompressed</a>
16+
</li>
17+
</ul>

templates/color.hbs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
"title": "jQuery Color - All Versions"
33
}</script>
44

5+
{{include "color-git"}}
6+
7+
<h2>jQuery Color - All Versions</h2>
58
{{#each color.all}}
6-
<h2>{{version}}</h2>
9+
<h3>{{version}}</h3>
710
{{include "color-release"}}
811
{{/each}}

templates/mobile-git.hbs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h2>jQuery Mobile - Git Builds</h2>
2+
<p>UNSTABLE, NOT FOR PRODUCTION</p>
3+
4+
<ul>
5+
<li>
6+
jQuery Mobile git build -
7+
<a href="/mobile/git/jquery.mobile-git.js">uncompressed</a>,
8+
<a href="/mobile/git/jquery.moblie-git.min.js">minfied</a>,
9+
<a href="/mobile/git/jquery.mobilt-git.css">theme</a>
10+
(<a href="/mobile/git/jquery.mobile-git.min.css">minified</a>)
11+
</li>
12+
</ul>

templates/mobile.hbs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"title": "jQuery Mobile - All Versions"
33
}</script>
44

5+
{{include "mobile-git"}}
6+
7+
<h2>jQuery Mobile - All Vesions</h2>
8+
<ul>
59
{{#each mobile.all}}
610
{{include "mobile-release"}}
711
{{/each}}
12+
</ul>

templates/qunit-git.hbs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<h2>QUnit - Git Builds</h2>
2+
<p>UNSTABLE, NOT FOR PRODUCTION</p>
3+
4+
<ul>
5+
<li>
6+
QUnit git build -
7+
<a href="/qunit/qunit-git.js">uncompressed</a>,
8+
<a href="/qunit/qunit-git.css">theme</a>
9+
</li>
10+
</ul>

templates/qunit.hbs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"title": "QUnit - All Versions"
33
}</script>
44

5+
{{include "qunit-git"}}
6+
7+
<h2>QUnit - All Versions</h2>
8+
<ul>
59
{{#each qunit.all}}
610
{{include "qunit-release"}}
711
{{/each}}
12+
</ul>

templates/ui-git.hbs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<h2>jQuery UI - Git Builds</h2>
2+
<p>UNSTABLE, NOT FOR PRODUCTION</p>
3+
4+
<ul>
5+
<li>
6+
jQuery UI git build</a> -
7+
<a href="/ui/jquery-ui-git.js">uncompressed</a>,
8+
<a href="/ui/jquery-ui-git.csss">theme</a>
9+
</li>
10+
<li>
11+
jQuery UI 1.9 git build</a> -
12+
<a href="/ui/jquery-ui-1-9-git.js">uncompressed</a>,
13+
<a href="/ui/jquery-ui-1-9-git.css">theme</a>
14+
</li>
15+
</ul>

templates/ui.hbs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"title": "jQuery UI - All Versions"
33
}</script>
44

5+
{{include "ui-git"}}
6+
57
{{#each ui}}
68
<h2>jQuery UI {{major}}</h2>
79
{{release "jQuery UI" latestStable}}
@@ -11,10 +13,12 @@
1113
{{/each}}
1214
{{#if all.length}}
1315
<h3>Previous Releases</h3>
16+
<ul>
1417
{{#each all}}
1518
<li>
1619
{{release "jQuery UI" this}}, {{uiTheme this}}
1720
</li>
1821
{{/each}}
22+
</ul>
1923
{{/if}}
20-
{{/each}}
24+
{{/each}}

0 commit comments

Comments
 (0)