feat(SublimeText2.WebPackages): cache packages

This commit is contained in:
Iristyle
2013-04-04 08:54:25 -04:00
parent 590d7a44f9
commit 1e6f643a1b
1026 changed files with 79077 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<snippet>
<content><![CDATA[
<div class="alert alert-error">
<a class="close" data-dismiss="alert">&times;</a>
<strong>${1:Error!}</strong> ${2:Change a few things up and try submitting again.}.
</div>
]]></content>
<tabTrigger>tbalert:e</tabTrigger>
<description>Bootstrap error alert</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,11 @@
<snippet>
<content><![CDATA[
<div class="alert alert-info">
<a class="close" data-dismiss="alert">&times;</a>
<strong>${1:Information!}</strong> ${2:This alert needs your attention, but it's not super important.}
</div>
]]></content>
<tabTrigger>tbalert:i</tabTrigger>
<description>Bootstrap information alert</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,11 @@
<snippet>
<content><![CDATA[
<div class="alert alert-success">
<a class="close" data-dismiss="alert">&times;</a>
<strong>${1:Success!}</strong> ${2:You successfully read this important alert message.}
</div>
]]></content>
<tabTrigger>tbalert:s</tabTrigger>
<description>Bootstrap success alert</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,11 @@
<snippet>
<content><![CDATA[
<div class="alert">
<a class="close" data-dismiss="alert">&times;</a>
<strong>${1:Warning!}</strong> ${2:Best check yo self, you're not looking too good}.
</div>
]]></content>
<tabTrigger>tbalert</tabTrigger>
<description>Bootstrap default alert</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<span class="badge badge-error">${1:6}</span>
]]></content>
<tabTrigger>tbbadge:e</tabTrigger>
<description>Bootstrap error badge</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<span class="badge badge-info">${1:8}</span>
]]></content>
<tabTrigger>tbbadge:if</tabTrigger>
<description>Bootstrap info badge</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<span class="badge badge-inverse">${1:10}</span>
]]></content>
<tabTrigger>tbbadge:iv</tabTrigger>
<description>Bootstrap inverse badge</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<span class="badge badge-success">${1:2}</span>
]]></content>
<tabTrigger>tbbadge:s</tabTrigger>
<description>Bootstrap success badge</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<span class="badge badge-warning">${1:4}</span>
]]></content>
<tabTrigger>tbbadge:w</tabTrigger>
<description>Bootstrap warning badge</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<span class="badge">${1:1}</span>
]]></content>
<tabTrigger>tbbadge</tabTrigger>
<description>Bootstrap default badge</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,18 @@
<snippet>
<content><![CDATA[
<ul class="breadcrumb">
<li>
<a href="#">${1:Home}</a> <span class="divider">/</span>
</li>
<li>
<a href="#">${2:Library}</a> <span class="divider">/</span>
</li>
<li class="active">
<a href="#">${3:Data}</a>
</li>
</ul>
]]></content>
<tabTrigger>tbbreadcrumb</tabTrigger>
<description>Bootstrap breadcrumb</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,17 @@
<snippet>
<content><![CDATA[
<div class="btn-group">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">Action <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">${1:Action}</a></li>
<li><a href="#">${2:Another action}</a></li>
<li><a href="#">${3:Something else here}</a></li>
<li class="divider"></li>
<li><a href="#">${4:Separated link}</a></li>
</ul>
</div>
]]></content>
<tabTrigger>tbbuttons:d</tabTrigger>
<description>Bootstrap button dropdowns</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,12 @@
<snippet>
<content><![CDATA[
<div class="btn-group">
<a class="btn" href="#">${1:Button1}</a>
<a class="btn" href="#">${2:Button2}</a>
<a class="btn" href="#">${3:Button3}</a>
</div>
]]></content>
<tabTrigger>tbbuttons:g</tabTrigger>
<description>Bootstrap grouped buttons</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<span class="label label-important">${1:Important}</span>
]]></content>
<tabTrigger>tblabel:it</tabTrigger>
<description>Bootstrap important inline label</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<span class="label label-info">${1:Info}</span>
]]></content>
<tabTrigger>tblabel:io</tabTrigger>
<description>Bootstrap info inline label</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<span class="label label-success">${1:Success}</span>
]]></content>
<tabTrigger>tblabel:s</tabTrigger>
<description>Bootstrap success inline label</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<span class="label label-warning">${1:Warning}</span>
]]></content>
<tabTrigger>tblabel:w</tabTrigger>
<description>Bootstrap warning inline label</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<span class="label">${1:Default}</span>
]]></content>
<tabTrigger>tblabel</tabTrigger>
<description>Bootstrap basic inline label</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,56 @@
<snippet>
<content><![CDATA[
<div class="navbar">
<div class="navbar-inner">
<div class="container" style="width: auto;">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">Project name</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li class="nav-header">Nav header</li>
<li><a href="#">Separated link</a></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
</ul>
<form class="navbar-search pull-left" action="">
<input type="text" class="search-query span2" placeholder="Search">
</form>
<ul class="nav pull-right">
<li><a href="#">Link</a></li>
<li class="divider-vertical"></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</li>
</ul>
</div><!-- /.nav-collapse -->
</div>
</div><!-- /navbar-inner -->
</div>
]]></content>
<tabTrigger>tbnavbar</tabTrigger>
<description>Bootstrap navigation bar</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,15 @@
<snippet>
<content><![CDATA[
<ul class="pager">
<li class="previous">
<a href="#">&larr; Older</a>
</li>
<li class="next">
<a href="#">Newer &rarr;</a>
</li>
</ul>
]]></content>
<tabTrigger>tbpager:a</tabTrigger>
<description>Bootstrap pager with aligned links</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,15 @@
<snippet>
<content><![CDATA[
<ul class="pager">
<li>
<a href="#">Previous</a>
</li>
<li>
<a href="#">Next</a>
</li>
</ul>
]]></content>
<tabTrigger>tbpager</tabTrigger>
<description>Bootstrap default pager</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,19 @@
<snippet>
<content><![CDATA[
<div class="pagination">
<ul>
<li><a href="#">Prev</a></li>
<li class="active">
<a href="#">1</a>
</li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">Next</a></li>
</ul>
</div>
]]></content>
<tabTrigger>tbpagination</tabTrigger>
<description>Bootstrap pagination</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,21 @@
<snippet>
<content><![CDATA[
<ul class="nav nav-pills">
<li class="active"><a href="#">${1:Home}</a></li>
<li><a href="#">${2:Profile}</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">${3:Dropdown} <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">${4:Action}</a></li>
<li><a href="#">${5:Another action}</a></li>
<li><a href="#">${6:Something else here}</a></li>
<li class="divider"></li>
<li><a href="#">${7:Separated link}</a></li>
</ul>
</li>
</ul>
]]></content>
<tabTrigger>tbpills:d</tabTrigger>
<description>Bootstrap pills with dropdowns</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,14 @@
<snippet>
<content><![CDATA[
<ul class="nav nav-pills nav-stacked">
<li class="active">
<a href="#">${1:Home}</a>
</li>
<li><a href="#">${2:Profile}</a></li>
<li><a href="#">${3:Messages}</a></li>
</ul>
]]></content>
<tabTrigger>tbpills</tabTrigger>
<description>Bootstrap basic pills</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,14 @@
<snippet>
<content><![CDATA[
<ul class="nav nav-pills">
<li class="active">
<a href="#">${1:Home}</a>
</li>
<li><a href="#">${2:Profile}</a></li>
<li><a href="#">${3:Messages}</a></li>
</ul>
]]></content>
<tabTrigger>tbpills</tabTrigger>
<description>Bootstrap basic pills</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,10 @@
<snippet>
<content><![CDATA[
<div class="progress progress-striped">
<div class="bar" style="width: 60%;"></div>
</div>
]]></content>
<tabTrigger>tbprogress:s</tabTrigger>
<description>Bootstrap stripped progress bar</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,10 @@
<snippet>
<content><![CDATA[
<div class="progress">
<div class="bar" style="width: 60%;"></div>
</div>
]]></content>
<tabTrigger>tbprogress</tabTrigger>
<description>Bootstrap basic progress bar</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,21 @@
<snippet>
<content><![CDATA[
<div class="tabbable tabs-below">
<ul class="nav nav-tabs">
<li class="active"><a href="#1" data-toggle="tab">Section 1</a></li>
<li><a href="#2" data-toggle="tab">Section 2</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="1">
<p>I'm in Section 1.</p>
</div>
<div class="tab-pane" id="2">
<p>Howdy, I'm in Section 2.</p>
</div>
</div>
</div>
]]></content>
<tabTrigger>tbtabbable:b</tabTrigger>
<description>Bootstrap tabbable navigation tabs on the bottom</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,21 @@
<snippet>
<content><![CDATA[
<div class="tabbable tabs-left">
<ul class="nav nav-tabs">
<li class="active"><a href="#1" data-toggle="tab">Section 1</a></li>
<li><a href="#2" data-toggle="tab">Section 2</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="1">
<p>I'm in Section 1.</p>
</div>
<div class="tab-pane" id="2">
<p>Howdy, I'm in Section 2.</p>
</div>
</div>
</div>
]]></content>
<tabTrigger>tbtabbable:l</tabTrigger>
<description>Bootstrap tabbable navigation tabs on the left</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,21 @@
<snippet>
<content><![CDATA[
<div class="tabbable tabs-right">
<ul class="nav nav-tabs">
<li class="active"><a href="#1" data-toggle="tab">Section 1</a></li>
<li><a href="#2" data-toggle="tab">Section 2</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="1">
<p>I'm in Section 1.</p>
</div>
<div class="tab-pane" id="2">
<p>Howdy, I'm in Section 2.</p>
</div>
</div>
</div>
]]></content>
<tabTrigger>tbtabbable:r</tabTrigger>
<description>Bootstrap tabbable navigation tabs on the right</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,21 @@
<snippet>
<content><![CDATA[
<div class="tabbable">
<ul class="nav nav-tabs">
<li class="active"><a href="#1" data-toggle="tab">Section 1</a></li>
<li><a href="#2" data-toggle="tab">Section 2</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="1">
<p>I'm in Section 1.</p>
</div>
<div class="tab-pane" id="2">
<p>Howdy, I'm in Section 2.</p>
</div>
</div>
</div>
]]></content>
<tabTrigger>tbtabbable</tabTrigger>
<description>Bootstrap tabbable navigation tabs</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,14 @@
<snippet>
<content><![CDATA[
<ul class="nav nav-tabs">
<li class="active">
<a href="#">${1:Home}</a>
</li>
<li><a href="#">${2:Profile}</a></li>
<li><a href="#">${3:Messages}</a></li>
</ul>
]]></content>
<tabTrigger>tbtabs</tabTrigger>
<description>Bootstrap basic tabs</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,21 @@
<snippet>
<content><![CDATA[
<ul class="nav nav-tabs">
<li class="active"><a href="#">${1:Home}</a></li>
<li><a href="#">${2:Profile}</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">${3:Dropdown} <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">${4:Action}</a></li>
<li><a href="#">${5:Another action}</a></li>
<li><a href="#">${6:Something else here}</a></li>
<li class="divider"></li>
<li><a href="#">${7:Separated link}</a></li>
</ul>
</li>
</ul>
]]></content>
<tabTrigger>tbtabs:d</tabTrigger>
<description>Bootstrap tabs with dropdowns</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,12 @@
<snippet>
<content><![CDATA[
<ul class="nav nav-tabs nav-stacked">
<li class="active"><a href="#">${1:Home}</a></li>
<li><a href="#">${2:Profile}</a></li>
<li><a href="#">${3:Messages}</a></li>
</ul>
]]></content>
<tabTrigger>tbtabs:s</tabTrigger>
<description>Bootstrap basic tabs</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,30 @@
<snippet>
<content><![CDATA[
<ul class="thumbnails">
<li class="span4">
<a class="thumbnail" href="#">
<img src="http://placehold.it/360x240" alt="">
</a>
<h3>Basic marketing site</h3>
<p>Featuring a hero unit for a primary message and three supporting elements.</p>
</li>
<li class="span4">
<a class="thumbnail" href="#">
<img src="http://placehold.it/360x240" alt="">
</a>
<h3>Fluid layout</h3>
<p>Uses our new responsive, fluid grid system to create seamless liquid layout.</p>
</li>
<li class="span4">
<a class="thumbnail" href="#">
<img src="http://placehold.it/360x240" alt="">
</a>
<h3>Starter template</h3>
<p>A barebones HTML document with all the Bootstrap CSS and javascript included.</p>
</li>
</ul>
]]></content>
<tabTrigger>tbthumbnails</tabTrigger>
<description>Bootstrap thumbnails</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,23 @@
<snippet>
<content><![CDATA[
<div class="btn-toolbar">
<div class="btn-group">
<a class="btn" href="#">1</a>
<a class="btn" href="#">2</a>
<a class="btn" href="#">3</a>
<a class="btn" href="#">4</a>
</div>
<div class="btn-group">
<a class="btn" href="#">5</a>
<a class="btn" href="#">6</a>
<a class="btn" href="#">7</a>
</div>
<div class="btn-group">
<a class="btn" href="#">8</a>
</div>
</div>
]]></content>
<tabTrigger>tbtoolbar</tabTrigger>
<description>Bootstrap toolbar</description>
<scope>text.html</scope>
</snippet>