Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/js/tooltips.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/js/tooltips.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/js/tooltips.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/js/tooltips.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,223 @@
+<div class="bs-docs-section">
+  <h1 id="tooltips" class="page-header">Tooltips <small>tooltip.js</small></h1>
+
+  <h2 id="tooltips-examples">Examples</h2>
+  <p>Inspired by the excellent jQuery.tipsy plugin written by Jason Frame; 
Tooltips are an updated version, which don't rely on images, use CSS3 for 
animations, and data-attributes for local title storage.</p>
+  <p>Hover over the links below to see tooltips:</p>
+  <div class="bs-example tooltip-demo">
+    <p class="muted" style="margin-bottom: 0;">Tight pants next level keffiyeh 
<a href="#" data-toggle="tooltip" title="Default tooltip">you probably</a> 
haven't heard of them. Photo booth beard raw denim letterpress vegan messenger 
bag stumptown. Farm-to-table seitan, mcsweeney's fixie sustainable quinoa 8-bit 
american apparel <a href="#" data-toggle="tooltip" title="Another tooltip">have 
a</a> terry richardson vinyl chambray. Beard stumptown, cardigans banh mi lomo 
thundercats. Tofu biodiesel williamsburg marfa, four loko mcsweeney's cleanse 
vegan chambray. A really ironic artisan <a href="#" data-toggle="tooltip" 
title="Another one here too">whatever keytar</a>, scenester farm-to-table 
banksy Austin <a href="#" data-toggle="tooltip" title="The last tip!">twitter 
handle</a> freegan cred raw denim single-origin coffee viral.
+    </p>
+  </div><!-- /example -->
+
+  <h3>Four directions</h3>
+  <div class="bs-example tooltip-demo">
+    <div class="bs-example-tooltips">
+      <button type="button" class="btn btn-default" data-toggle="tooltip" 
data-placement="left" title="Tooltip on left">Tooltip on left</button>
+      <button type="button" class="btn btn-default" data-toggle="tooltip" 
data-placement="top" title="Tooltip on top">Tooltip on top</button>
+      <button type="button" class="btn btn-default" data-toggle="tooltip" 
data-placement="bottom" title="Tooltip on bottom">Tooltip on bottom</button>
+      <button type="button" class="btn btn-default" data-toggle="tooltip" 
data-placement="right" title="Tooltip on right">Tooltip on right</button>
+    </div>
+  </div><!-- /example -->
+{% highlight html %}
+<button type="button" class="btn btn-default" data-toggle="tooltip" 
data-placement="left" title="Tooltip on left">Tooltip on left</button>
+
+<button type="button" class="btn btn-default" data-toggle="tooltip" 
data-placement="top" title="Tooltip on top">Tooltip on top</button>
+
+<button type="button" class="btn btn-default" data-toggle="tooltip" 
data-placement="bottom" title="Tooltip on bottom">Tooltip on bottom</button>
+
+<button type="button" class="btn btn-default" data-toggle="tooltip" 
data-placement="right" title="Tooltip on right">Tooltip on right</button>
+{% endhighlight %}
+
+  <div class="bs-callout bs-callout-danger">
+    <h4>Opt-in functionality</h4>
+    <p>For performance reasons, the Tooltip and Popover data-apis are opt-in, 
meaning <strong>you must initialize them yourself</strong>.</p>
+  </div>
+  <div class="bs-callout bs-callout-warning">
+    <h4>Tooltips in button groups and input groups require special setting</h4>
+    <p>When using tooltips on elements within a <code>.btn-group</code> or an 
<code>.input-group</code>, you'll have to specify the option <code>container: 
'body'</code> (documented below) to avoid unwanted side effects (such as the 
element growing wider and/or losing its rounded corners when the tooltip is 
triggered).</p>
+  </div>
+  <div class="bs-callout bs-callout-warning">
+    <h4>Don't try to show tooltips on hidden elements</h4>
+    <p>Invoking <code>$(...).tooltip('show')</code> when the target element is 
<code>display: none;</code> will cause the tooltip to be incorrectly 
positioned.</p>
+  </div>
+  <div class="bs-callout bs-callout-info">
+    <h4>Tooltips on disabled elements require wrapper elements</h4>
+    <p>To add a tooltip to a <code>disabled</code> or <code>.disabled</code> 
element, put the element inside of a <code>&lt;div&gt;</code> and apply the 
tooltip to that <code>&lt;div&gt;</code> instead.</p>
+  </div>
+
+  <h2 id="tooltips-usage">Usage</h2>
+  <p>The tooltip plugin generates content and markup on demand, and by default 
places tooltips after their trigger element.</p>
+  <p>Trigger the tooltip via JavaScript:</p>
+{% highlight js %}
+$('#example').tooltip(options)
+{% endhighlight %}
+
+  <h3>Markup</h3>
+  <p>The required markup for a tooltip is only a <code>data</code> attribute 
and <code>title</code> on the HTML element you wish to have a tooltip. The 
generated markup of a tooltip is rather simple, though it does require a 
position (by default, set to <code>top</code> by the plugin).</p>
+  <div class="bs-callout bs-callout-warning">
+    <h4>Multiple-line links</h4>
+    <p>Sometimes you want to add a tooltip to a hyperlink that wraps multiple 
lines. The default behavior of the tooltip plugin is to center it horizontally 
and vertically. Add <code>white-space: nowrap;</code> to your anchors to avoid 
this.</p>
+  </div>
+{% highlight html linenos %}
+<!-- HTML to write -->
+<a href="#" data-toggle="tooltip" title="Some tooltip text!">Hover over me</a>
+
+<!-- Generated markup by the plugin -->
+<div class="tooltip top" role="tooltip">
+  <div class="tooltip-arrow"></div>
+  <div class="tooltip-inner">
+    Some tooltip text!
+  </div>
+</div>
+{% endhighlight %}
+
+  <h3>Options</h3>
+  <p>Options can be passed via data attributes or JavaScript. For data 
attributes, append the option name to <code>data-</code>, as in 
<code>data-animation=""</code>.</p>
+  <div class="table-responsive">
+    <table class="table table-bordered table-striped">
+      <thead>
+       <tr>
+         <th style="width: 100px;">Name</th>
+         <th style="width: 100px;">Type</th>
+         <th style="width: 50px;">Default</th>
+         <th>Description</th>
+       </tr>
+      </thead>
+      <tbody>
+       <tr>
+         <td>animation</td>
+         <td>boolean</td>
+         <td>true</td>
+         <td>Apply a CSS fade transition to the tooltip</td>
+       </tr>
+       <tr>
+         <td>container</td>
+         <td>string | false</td>
+         <td>false</td>
+         <td>
+          <p>Appends the tooltip to a specific element. Example: 
<code>container: 'body'</code>. This option is particularly useful in that it 
allows you to position the tooltip in the flow of the document near the 
triggering element - which will prevent the tooltip from floating away from 
the triggering element during a window resize.</p>
+         </td>
+       </tr>
+       <tr>
+         <td>delay</td>
+         <td>number | object</td>
+         <td>0</td>
+         <td>
+          <p>Delay showing and hiding the tooltip (ms) - does not apply to 
manual trigger type</p>
+          <p>If a number is supplied, delay is applied to both hide/show</p>
+          <p>Object structure is: <code>delay: { show: 500, hide: 100 
}</code></p>
+         </td>
+       </tr>
+       <tr>
+         <td>html</td>
+         <td>boolean</td>
+         <td>false</td>
+         <td>Insert HTML into the tooltip. If false, jQuery's 
<code>text</code> method will be used to insert content into the DOM. Use text 
if you're worried about XSS attacks.</td>
+       </tr>
+       <tr>
+         <td>placement</td>
+         <td>string | function</td>
+         <td>'top'</td>
+         <td>How to position the tooltip - top | bottom | left | right | auto. 
<br> When "auto" is specified, it will dynamically reorient the tooltip. For 
example, if placement is "auto left", the tooltip will display to the left when 
possible, otherwise it will display right.</td>
+       </tr>
+       <tr>
+         <td>selector</td>
+         <td>string</td>
+         <td>false</td>
+         <td>If a selector is provided, tooltip objects will be delegated to 
the specified targets. In practice, this is used to enable dynamic HTML content 
to have tooltips added. See <a 
href="https://github.com/twbs/bootstrap/issues/4215";>this</a> and <a 
href="http://jsfiddle.net/fScua/";>an informative example</a>.</td>
+       </tr>
+       <tr>
+         <td>template</td>
+         <td>string</td>
+         <td><code>'&lt;div class="tooltip" role="tooltip"&gt;&lt;div 
class="tooltip-arrow"&gt;&lt;/div&gt;&lt;div 
class="tooltip-inner"&gt;&lt;/div&gt;&lt;/div&gt;'</code></td>
+         <td>
+          <p>Base HTML to use when creating the tooltip.</p>
+          <p>The tooltip's <code>title</code> will be injected into the 
<code>.tooltip-inner</code>.</p>
+          <p><code>.tooltip-arrow</code> will become the tooltip's arrow.</p>
+          <p>The outermost wrapper element should have the 
<code>.tooltip</code> class.</p>
+        </td>
+       </tr>
+       <tr>
+         <td>title</td>
+         <td>string | function</td>
+         <td>''</td>
+         <td>Default title value if <code>title</code> attribute isn't 
present</td>
+       </tr>
+       <tr>
+         <td>trigger</td>
+         <td>string</td>
+         <td>'hover focus'</td>
+         <td>How tooltip is triggered - click | hover | focus | manual. You 
may pass multiple triggers; separate them with a space.</td>
+       </tr>
+       <tr>
+         <td>viewport</td>
+         <td>string | object</td>
+         <td>{ selector: 'body', padding: 0 }</td>
+         <td>
+          <p>Keeps the tooltip within the bounds of this element. Example: 
<code>viewport: '#viewport'</code> or <code>{ selector: '#viewport', padding: 0 
}</code></p>
+         </td>
+       </tr>
+      </tbody>
+    </table>
+  </div><!-- /.table-responsive -->
+  <div class="bs-callout bs-callout-info">
+    <h4>Data attributes for individual tooltips</h4>
+    <p>Options for individual tooltips can alternatively be specified through 
the use of data attributes, as explained above.</p>
+  </div>
+
+  <h3>Methods</h3>
+
+  <h4>$().tooltip(options)</h4>
+  <p>Attaches a tooltip handler to an element collection.</p>
+
+  <h4>.tooltip('show')</h4>
+  <p>Reveals an element's tooltip.</p>
+  {% highlight js %}$('#element').tooltip('show'){% endhighlight %}
+
+  <h4>.tooltip('hide')</h4>
+  <p>Hides an element's tooltip.</p>
+  {% highlight js %}$('#element').tooltip('hide'){% endhighlight %}
+
+  <h4>.tooltip('toggle')</h4>
+  <p>Toggles an element's tooltip.</p>
+  {% highlight js %}$('#element').tooltip('toggle'){% endhighlight %}
+
+  <h4>.tooltip('destroy')</h4>
+  <p>Hides and destroys an element's tooltip.</p>
+  {% highlight js %}$('#element').tooltip('destroy'){% endhighlight %}
+
+  <h3>Events</h3>
+  <div class="table-responsive">
+    <table class="table table-bordered table-striped">
+      <thead>
+       <tr>
+         <th style="width: 150px;">Event Type</th>
+         <th>Description</th>
+       </tr>
+      </thead>
+      <tbody>
+       <tr>
+         <td>show.bs.tooltip</td>
+         <td>This event fires immediately when the <code>show</code> instance 
method is called.</td>
+       </tr>
+       <tr>
+         <td>shown.bs.tooltip</td>
+         <td>This event is fired when the tooltip has been made visible to the 
user (will wait for CSS transitions to complete).</td>
+       </tr>
+       <tr>
+         <td>hide.bs.tooltip</td>
+         <td>This event is fired immediately when the <code>hide</code> 
instance method has been called.</td>
+       </tr>
+       <tr>
+         <td>hidden.bs.tooltip</td>
+         <td>This event is fired when the tooltip has finished being hidden 
from the user (will wait for CSS transitions to complete).</td>
+       </tr>
+      </tbody>
+    </table>
+  </div><!-- /.table-responsive -->
+{% highlight js %}
+$('#myTooltip').on('hidden.bs.tooltip', function () {
+  // do something…
+})
+{% endhighlight %}
+</div>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/js/transitions.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/js/transitions.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/js/transitions.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/js/transitions.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,8 @@
+<div class="bs-docs-section">
+  <h1 id="transitions" class="page-header">Transitions 
<small>transition.js</small></h1>
+
+  <h3>About transitions</h3>
+  <p>For simple transition effects, include <code>transition.js</code> once 
alongside the other JS files. If you're using the compiled (or minified) 
<code>bootstrap.js</code>, there is no need to include this&mdash;it's already 
there.</p>
+  <h3>What's inside</h3>
+  <p>Transition.js is a basic helper for <code>transitionEnd</code> events as 
well as a CSS transition emulator. It's used by the other plugins to check for 
CSS transition support and to catch hanging transitions.</p>
+</div>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/about.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/about.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/about.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/about.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,9 @@
+<li>
+  <a href="#history">History</a>
+</li>
+<li>
+  <a href="#team">Team</a>
+</li>
+<li>
+  <a href="#brand">Brand guidelines</a>
+</li>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/components.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/components.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/components.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/components.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,142 @@
+<li>
+  <a href="#glyphicons">Glyphicons</a>
+  <ul class="nav">
+    <li><a href="#glyphicons-glyphs">Available glyphs</a></li>
+    <li><a href="#glyphicons-how-to-use">How to use</a></li>
+    <li><a href="#glyphicons-examples">Examples</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#dropdowns">Dropdowns</a>
+  <ul class="nav">
+    <li><a href="#dropdowns-example">Example</a></li>
+    <li><a href="#dropdowns-alignment">Alignment options</a></li>
+    <li><a href="#dropdowns-headers">Headers</a></li>
+    <li><a href="#dropdowns-disabled">Disabled menu items</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#btn-groups">Button groups</a>
+  <ul class="nav">
+    <li><a href="#btn-groups-single">Basic example</a></li>
+    <li><a href="#btn-groups-toolbar">Button toolbar</a></li>
+    <li><a href="#btn-groups-sizing">Sizing</a></li>
+    <li><a href="#btn-groups-nested">Nesting</a></li>
+    <li><a href="#btn-groups-vertical">Vertical variation</a></li>
+    <li><a href="#btn-groups-justified">Justified link variation</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#btn-dropdowns">Button dropdowns</a>
+  <ul class="nav">
+    <li><a href="#btn-dropdowns-single">Single button dropdowns</a></li>
+    <li><a href="#btn-dropdowns-split">Split button dropdowns</a></li>
+    <li><a href="#btn-dropdowns-sizing">Sizing</a></li>
+    <li><a href="#btn-dropdowns-dropup">Dropup variation</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#input-groups">Input groups</a>
+  <ul class="nav">
+    <li><a href="#input-groups-basic">Basic example</a></li>
+    <li><a href="#input-groups-sizing">Sizing</a></li>
+    <li><a href="#input-groups-checkboxes-radios">Checkbox and radios 
addons</a></li>
+    <li><a href="#input-groups-buttons">Button addons</a></li>
+    <li><a href="#input-groups-buttons-dropdowns">Buttons with 
dropdowns</a></li>
+    <li><a href="#input-groups-buttons-segmented">Segmented buttons</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#nav">Navs</a>
+  <ul class="nav">
+    <li><a href="#nav-tabs">Tabs</a></li>
+    <li><a href="#nav-pills">Pills</a></li>
+    <li><a href="#nav-justified">Justified nav</a></li>
+    <li><a href="#nav-disabled-links">Disabled links</a></li>
+    <li><a href="#nav-dropdowns">Using dropdowns</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#navbar">Navbar</a>
+  <ul class="nav">
+    <li><a href="#navbar-default">Default navbar</a></li>
+    <li><a href="#navbar-forms">Forms</a></li>
+    <li><a href="#navbar-buttons">Buttons</a></li>
+    <li><a href="#navbar-text">Text</a></li>
+    <li><a href="#navbar-links">Non-nav links</a></li>
+    <li><a href="#navbar-component-alignment">Component alignment</a></li>
+    <li><a href="#navbar-fixed-top">Fixed to top</a></li>
+    <li><a href="#navbar-fixed-bottom">Fixed to bottom</a></li>
+    <li><a href="#navbar-static-top">Static top</a></li>
+    <li><a href="#navbar-inverted">Inverted navbar</a></li>
+  </ul>
+</li>
+<li><a href="#breadcrumbs">Breadcrumbs</a></li>
+<li>
+  <a href="#pagination">Pagination</a>
+  <ul class="nav">
+    <li><a href="#pagination-default">Default pagination</a></li>
+    <li><a href="#pagination-pager">Pager</a></li>
+  </ul>
+</li>
+<li><a href="#labels">Labels</a></li>
+<li><a href="#badges">Badges</a></li>
+<li><a href="#jumbotron">Jumbotron</a></li>
+<li><a href="#page-header">Page header</a></li>
+<li>
+  <a href="#thumbnails">Thumbnails</a>
+  <ul class="nav">
+    <li><a href="#thumbnails-default">Default example</a></li>
+    <li><a href="#thumbnails-custom-content">Custom content</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#alerts">Alerts</a>
+  <ul class="nav">
+    <li><a href="#alerts-examples">Examples</a></li>
+    <li><a href="#alerts-dismissible">Dismissible alerts</a></li>
+    <li><a href="#alerts-links">Links in alerts</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#progress">Progress bars</a>
+  <ul class="nav">
+    <li><a href="#progress-basic">Basic example</a></li>
+    <li><a href="#progress-label">With label</a></li>
+    <li><a href="#progress-low-percentages">Low percentages</a></li>
+    <li><a href="#progress-alternatives">Contextual alternatives</a></li>
+    <li><a href="#progress-striped">Striped</a></li>
+    <li><a href="#progress-animated">Animated</a></li>
+    <li><a href="#progress-stacked">Stacked</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#media">Media object</a>
+  <ul class="nav">
+    <li><a href="#media-default">Default media</a></li>
+    <li><a href="#media-list">Media list</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#list-group">List group</a>
+  <ul class="nav">
+    <li><a href="#list-group-basic">Basic example</a></li>
+    <li><a href="#list-group-badges">Badges</a></li>
+    <li><a href="#list-group-linked">Linked items</a></li>
+    <li><a href="#list-group-disabled">Disabled items</a></li>
+    <li><a href="#list-group-contextual-classes">Contextual classes</a></li>
+    <li><a href="#list-group-custom-content">Custom content</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#panels">Panels</a>
+  <ul class="nav">
+    <li><a href="#panels-basic">Basic example</a></li>
+    <li><a href="#panels-heading">Panel with heading</a></li>
+    <li><a href="#panels-alternatives">Contextual alternatives</a></li>
+    <li><a href="#panels-tables">With tables</a>
+    <li><a href="#panels-list-group">With list groups</a>
+  </ul>
+</li>
+<li><a href="#responsive-embed">Responsive embed</a></li>
+<li><a href="#wells">Wells</a></li>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/css.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/css.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/css.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/css.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,136 @@
+<li>
+  <a href="#overview">Overview</a>
+  <ul class="nav">
+    <li><a href="#overview-doctype">HTML5 doctype</a></li>
+    <li><a href="#overview-mobile">Mobile first</a></li>
+    <li><a href="#overview-type-links">Typography and links</a></li>
+    <li><a href="#overview-normalize">Normalize.css</a></li>
+    <li><a href="#overview-container">Containers</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#grid">Grid system</a>
+  <ul class="nav">
+    <li><a href="#grid-intro">Introduction</a></li>
+    <li><a href="#grid-media-queries">Media queries</a></li>
+    <li><a href="#grid-options">Grid options</a></li>
+    <li><a href="#grid-example-basic">Ex: Stacked-to-horizontal</a></li>
+    <li><a href="#grid-example-fluid">Ex: Fluid container</a></li>
+    <li><a href="#grid-example-mixed">Ex: Mobile and desktops</a></li>
+    <li><a href="#grid-example-mixed-complete">Ex: Mobile, tablet, 
desktops</a></li>
+    <li><a href="#grid-example-wrapping">Ex: Column wrapping</a></li>
+    <li><a href="#grid-responsive-resets">Responsive column resets</a></li>
+    <li><a href="#grid-offsetting">Offsetting columns</a></li>
+    <li><a href="#grid-nesting">Nesting columns</a></li>
+    <li><a href="#grid-column-ordering">Column ordering</a></li>
+    <li><a href="#grid-less">Less mixins and variables</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#type">Typography</a>
+  <ul class="nav">
+    <li><a href="#type-headings">Headings</a></li>
+    <li><a href="#type-body-copy">Body copy</a></li>
+    <li><a href="#type-inline-text">Inline text elements</a></li>
+    <li><a href="#type-alignment">Alignment classes</a></li>
+    <li><a href="#type-transformation">Transformation classes</a></li>
+    <li><a href="#type-abbreviations">Abbreviations</a></li>
+    <li><a href="#type-addresses">Addresses</a></li>
+    <li><a href="#type-blockquotes">Blockquotes</a></li>
+    <li><a href="#type-lists">Lists</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#code">Code</a>
+  <ul class="nav">
+    <li><a href="#code-inline">Inline code</a></li>
+    <li><a href="#code-user-input">User input</a></li>
+    <li><a href="#code-block">Blocks of code</a></li>
+    <li><a href="#code-variables">Variables</a></li>
+    <li><a href="#code-sample-output">Sample output</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#tables">Tables</a>
+  <ul class="nav">
+    <li><a href="#tables-example">Basic example</a></li>
+    <li><a href="#tables-striped">Striped rows</a></li>
+    <li><a href="#tables-bordered">Bordered table</a></li>
+    <li><a href="#tables-hover-rows">Hover rows</a></li>
+    <li><a href="#tables-condensed">Condensed table</a></li>
+    <li><a href="#tables-contextual-classes">Contextual classes</a></li>
+    <li><a href="#tables-responsive">Responsive tables</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#forms">Forms</a>
+  <ul class="nav">
+    <li><a href="#forms-example">Basic example</a></li>
+    <li><a href="#forms-inline">Inline form</a></li>
+    <li><a href="#forms-horizontal">Horizontal form</a></li>
+    <li><a href="#forms-controls">Supported controls</a></li>
+    <li><a href="#forms-controls-static">Static control</a></li>
+    <li><a href="#forms-control-focus">Focus state</a></li>
+    <li><a href="#forms-control-disabled">Disabled state</a></li>
+    <li><a href="#forms-control-readonly">Readonly state</a></li>
+    <li><a href="#forms-control-validation">Validation states</a></li>
+    <li><a href="#forms-control-sizes">Control sizing</a></li>
+    <li><a href="#forms-help-text">Help text</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#buttons">Buttons</a>
+  <ul class="nav">
+    <li><a href="#buttons-options">Options</a></li>
+    <li><a href="#buttons-sizes">Sizes</a></li>
+    <li><a href="#buttons-active">Active state</a></li>
+    <li><a href="#buttons-disabled">Disabled state</a></li>
+    <li><a href="#buttons-tags">Button tags</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#images">Images</a>
+  <ul class="nav">
+    <li><a href="#images-responsive">Responsive images</a></li>
+    <li><a href="#images-shapes">Image shapes</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#helper-classes">Helper classes</a>
+  <ul class="nav">
+    <li><a href="#helper-classes-colors">Contextual colors</a></li>
+    <li><a href="#helper-classes-backgrounds">Contextual backgrounds</a></li>
+    <li><a href="#helper-classes-close">Close icon</a></li>
+    <li><a href="#helper-classes-carets">Carets</a></li>
+    <li><a href="#helper-classes-floats">Quick floats</a></li>
+    <li><a href="#helper-classes-center">Center content blocks</a></li>
+    <li><a href="#helper-classes-clearfix">Clearfix</a></li>
+    <li><a href="#helper-classes-show-hide">Showing and hiding content</a></li>
+    <li><a href="#helper-classes-screen-readers">Screen reader content</a></li>
+    <li><a href="#helper-classes-image-replacement">Image replacement</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#responsive-utilities">Responsive utilities</a>
+  <ul class="nav">
+    <li><a href="#responsive-utilities-classes">Available classes</a></li>
+    <li><a href="#responsive-utilities-print">Print classes</a></li>
+    <li><a href="#responsive-utilities-tests">Test cases</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#less">Using Less</a>
+  <ul class="nav">
+    <li><a href="#less-bootstrap">Compiling Bootstrap</a></li>
+    <li><a href="#less-variables">Variables</a></li>
+    <li><a href="#less-mixins-vendor">Vendor mixins</a></li>
+    <li><a href="#less-mixins-utility">Utility mixins</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#sass">Using Sass</a>
+  <ul class="nav">
+    <li><a href="#sass-contents">What's included</a></li>
+    <li><a href="#sass-installation">Rails install</a></li>
+  </ul>
+</li>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/customize.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/customize.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/customize.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/customize.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,46 @@
+
+<!-- NOTE: DO NOT EDIT THE FOLLOWING SECTION DIRECTLY! It is autogenerated via 
the `build-customizer-html` Grunt task using the customizer-nav.jade 
template.-->
+<li><a href="#less">Less components</a></li>
+<li><a href="#plugins">jQuery plugins</a></li>
+<li><a href="#less-variables">Less variables</a>
+  <ul class="nav">
+    <li><a href="#colors">Colors</a></li>
+    <li><a href="#scaffolding">Scaffolding</a></li>
+    <li><a href="#typography">Typography</a></li>
+    <li><a href="#iconography">Iconography</a></li>
+    <li><a href="#components">Components</a></li>
+    <li><a href="#tables">Tables</a></li>
+    <li><a href="#buttons">Buttons</a></li>
+    <li><a href="#forms">Forms</a></li>
+    <li><a href="#dropdowns">Dropdowns</a></li>
+    <li><a href="#media-queries-breakpoints">Media queries breakpoints</a></li>
+    <li><a href="#grid-system">Grid system</a></li>
+    <li><a href="#container-sizes">Container sizes</a></li>
+    <li><a href="#navbar">Navbar</a></li>
+    <li><a href="#navs">Navs</a></li>
+    <li><a href="#tabs">Tabs</a></li>
+    <li><a href="#pills">Pills</a></li>
+    <li><a href="#pagination">Pagination</a></li>
+    <li><a href="#pager">Pager</a></li>
+    <li><a href="#jumbotron">Jumbotron</a></li>
+    <li><a href="#form-states-and-alerts">Form states and alerts</a></li>
+    <li><a href="#tooltips">Tooltips</a></li>
+    <li><a href="#popovers">Popovers</a></li>
+    <li><a href="#labels">Labels</a></li>
+    <li><a href="#modals">Modals</a></li>
+    <li><a href="#alerts">Alerts</a></li>
+    <li><a href="#progress-bars">Progress bars</a></li>
+    <li><a href="#list-group">List group</a></li>
+    <li><a href="#panels">Panels</a></li>
+    <li><a href="#thumbnails">Thumbnails</a></li>
+    <li><a href="#wells">Wells</a></li>
+    <li><a href="#badges">Badges</a></li>
+    <li><a href="#breadcrumbs">Breadcrumbs</a></li>
+    <li><a href="#carousel">Carousel</a></li>
+    <li><a href="#close">Close</a></li>
+    <li><a href="#code">Code</a></li>
+    <li><a href="#type">Type</a></li>
+  </ul>
+</li>
+<li><a href="#download">Download</a></li>
+<!-- NOTE: DO NOT EDIT THE PRECEDING SECTION DIRECTLY! It is autogenerated via 
the `build-customizer-html` Grunt task using the customizer-nav.jade 
template.-->
\ No newline at end of file

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/getting-started.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/getting-started.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/getting-started.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/getting-started.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,68 @@
+<li>
+  <a href="#download">Download</a>
+</li>
+<li>
+  <a href="#whats-included">What's included</a>
+  <ul class="nav">
+    <li><a href="#whats-included-precompiled">Precompiled</a></li>
+    <li><a href="#whats-included-source">Source code</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#grunt">Compiling CSS and JavaScript</a>
+  <ul class="nav">
+    <li><a href="#grunt-installing">Installing Grunt</a></li>
+    <li><a href="#grunt-commands">Available Grunt commands</a></li>
+    <li><a href="#grunt-troubleshooting">Troubleshooting</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#template">Basic template</a>
+</li>
+<li>
+  <a href="#examples">Examples</a>
+  <ul class="nav">
+    <li><a href="#examples-framework">Using the framework</a></li>
+    <li><a href="#examples-navbars">Navbars in action</a></li>
+    <li><a href="#examples-custom">Custom components</a></li>
+    <li><a href="#examples-experiments">Experiments</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#community">Community</a>
+</li>
+<li>
+  <a href="#disable-responsive">Disabling responsiveness</a>
+</li>
+<li>
+  <a href="#migration">Migrating from 2.x to 3.0</a>
+</li>
+<li>
+  <a href="#support">Browser and device support</a>
+  <ul class="nav">
+    <li><a href="#support-browsers">Supported browsers</a></li>
+    <li><a href="#support-ie8-ie9">Internet Explorer 8-9</a></li>
+    <li><a href="#support-ie8-respondjs">IE8 and Respond.js</a></li>
+    <li><a href="#support-ie8-box-sizing">IE8 and box-sizing</a></li>
+    <li><a href="#support-ie8-font-face">IE8 and @font-face</a></li>
+    <li><a href="#support-ie-compatibility-modes">IE Compatibility 
modes</a></li>
+    <li><a href="#support-ie10-width">IE10 and Windows (Phone) 8</a></li>
+    <li><a href="#support-safari-percentages">Safari percent rounding</a></li>
+    <li><a href="#support-fixed-position-keyboards">Modals, navbars, and 
virtual keyboards</a></li>
+    <li><a href="#support-browser-zooming">Browser zooming</a></li>
+    <li><a href="#support-printing">Printer viewports</a></li>
+    <li><a href="#support-android-stock-browser">Android stock browser</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#third-parties">Third party support</a>
+</li>
+<li>
+  <a href="#accessibility">Accessibility</a>
+</li>
+<li>
+  <a href="#license-faqs">License FAQs</a>
+</li>
+<li>
+  <a href="#translations">Translations</a>
+</li>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/javascript.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/javascript.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/javascript.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/javascript.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,91 @@
+<li>
+  <a href="#js-overview">Overview</a>
+  <ul class="nav">
+    <li><a href="#js-individual-compiled">Individual or compiled</a></li>
+    <li><a href="#js-data-attrs">Data attributes</a></li>
+    <li><a href="#js-programmatic-api">Programmatic API</a></li>
+    <li><a href="#js-noconflict">No conflict</a></li>
+    <li><a href="#js-events">Events</a></li>
+    <li><a href="#callout-third-party-libs">Third-party libraries</a></li>
+  </ul>
+</li>
+<li><a href="#transitions">Transitions</a></li>
+<li>
+  <a href="#modals">Modal</a>
+  <ul class="nav">
+    <li><a href="#modals-examples">Examples</a></li>
+    <li><a href="#modals-sizes">Sizes</a></li>
+    <li><a href="#modals-remove-animation">Remove animation</a></li>
+    <li><a href="#modals-usage">Usage</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#dropdowns">Dropdown</a>
+  <ul class="nav">
+    <li><a href="#dropdowns-examples">Examples</a></li>
+    <li><a href="#dropdowns-usage">Usage</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#scrollspy">Scrollspy</a>
+  <ul class="nav">
+    <li><a href="#scrollspy-examples">Examples</a></li>
+    <li><a href="#scrollspy-usage">Usage</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#tabs">Tab</a>
+  <ul class="nav">
+    <li><a href="#tabs-examples">Examples</a></li>
+    <li><a href="#tabs-usage">Usage</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#tooltips">Tooltip</a>
+  <ul class="nav">
+    <li><a href="#tooltips-examples">Examples</a></li>
+    <li><a href="#tooltips-usage">Usage</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#popovers">Popover</a>
+  <ul class="nav">
+    <li><a href="#popovers-examples">Examples</a></li>
+    <li><a href="#popovers-usage">Usage</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#alerts">Alert</a>
+  <ul class="nav">
+    <li><a href="#alerts-examples">Examples</a></li>
+    <li><a href="#alerts-usage">Usage</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#buttons">Button</a>
+  <ul class="nav">
+    <li><a href="#buttons-examples">Examples</a></li>
+    <li><a href="#buttons-usage">Usage</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#collapse">Collapse</a>
+  <ul class="nav">
+    <li><a href="#collapse-examples">Examples</a></li>
+    <li><a href="#collapse-usage">Usage</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#carousel">Carousel</a>
+  <ul class="nav">
+    <li><a href="#carousel-examples">Examples</a></li>
+    <li><a href="#carousel-usage">Usage</a></li>
+  </ul>
+</li>
+<li>
+  <a href="#affix">Affix</a>
+  <ul class="nav">
+    <li><a href="#affix-examples">Examples</a></li>
+    <li><a href="#affix-usage">Usage</a></li>
+  </ul>
+</li>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/main.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/main.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/main.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/main.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,36 @@
+<header class="navbar navbar-static-top bs-docs-nav" id="top" role="banner">
+  <div class="container">
+    <div class="navbar-header">
+      <button class="navbar-toggle" type="button" data-toggle="collapse" 
data-target=".bs-navbar-collapse">
+        <span class="sr-only">Toggle navigation</span>
+        <span class="icon-bar"></span>
+        <span class="icon-bar"></span>
+        <span class="icon-bar"></span>
+      </button>
+      <a href="../" class="navbar-brand">Bootstrap</a>
+    </div>
+    <nav class="collapse navbar-collapse bs-navbar-collapse" role="navigation">
+      <ul class="nav navbar-nav">
+        <li{% if page.slug == "getting-started" %} class="active"{% endif %}>
+          <a href="../getting-started">Getting started</a>
+        </li>
+        <li{% if page.slug == "css" %} class="active"{% endif %}>
+          <a href="../css">CSS</a>
+        </li>
+        <li{% if page.slug == "components" %} class="active"{% endif %}>
+          <a href="../components">Components</a>
+        </li>
+        <li{% if page.slug == "js" %} class="active"{% endif %}>
+          <a href="../javascript">JavaScript</a>
+        </li>
+        <li{% if page.slug == "customize" %} class="active"{% endif %}>
+          <a href="../customize">Customize</a>
+        </li>
+      </ul>
+      <ul class="nav navbar-nav navbar-right">
+        <li><a href="{{ site.expo }}" onclick="ga('send', 'event', 'Navbar', 
'Community links', 'Expo');">Expo</a></li>
+        <li><a href="{{ site.blog }}" onclick="ga('send', 'event', 'Navbar', 
'Community links', 'Blog');">Blog</a></li>
+      </ul>
+    </nav>
+  </div>
+</header>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/migration.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/migration.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/migration.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/nav/migration.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,12 @@
+<li>
+  <a href="#classes">Major class changes</a>
+</li>
+<li>
+  <a href="#new">What's new</a>
+</li>
+<li>
+  <a href="#dropped">What's removed</a>
+</li>
+<li>
+  <a href="#notes">Additional notes</a>
+</li>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/social-buttons.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/social-buttons.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/social-buttons.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_includes/social-buttons.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,16 @@
+<div class="bs-docs-social">
+  <ul class="bs-docs-social-buttons">
+    <li>
+      <iframe class="github-btn" 
src="http://ghbtns.com/github-btn.html?user=twbs&amp;repo=bootstrap&amp;type=watch&amp;count=true";
 width="100" height="20" title="Star on GitHub"></iframe>
+    </li>
+    <li>
+      <iframe class="github-btn" 
src="http://ghbtns.com/github-btn.html?user=twbs&amp;repo=bootstrap&amp;type=fork&amp;count=true";
 width="102" height="20" title="Fork on GitHub"></iframe>
+    </li>
+    <li class="follow-btn">
+      <a href="https://twitter.com/twbootstrap"; class="twitter-follow-button" 
data-link-color="#0069D6" data-show-count="true">Follow @twbootstrap</a>
+    </li>
+    <li class="tweet-btn">
+      <a href="https://twitter.com/share"; class="twitter-share-button" 
data-url="http://getbootstrap.com/"; data-count="horizontal" 
data-via="twbootstrap" data-related="mdo:Creator of Bootstrap">Tweet</a>
+    </li>
+  </ul>
+</div>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_jade/customizer-nav.jade
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_jade/customizer-nav.jade?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_jade/customizer-nav.jade
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_jade/customizer-nav.jade
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,15 @@
+// NOTE: DO NOT EDIT THE FOLLOWING SECTION DIRECTLY! It is autogenerated via 
the `build-customizer-html` Grunt task using the customizer-nav.jade template.
+li
+  a(href='#less') Less components
+li
+  a(href='#plugins') jQuery plugins
+li
+  a(href='#less-variables') Less variables
+  ul.nav
+    each section in sections
+      if section.customizable
+        li
+          a(href='#'+section.id)= section.heading
+li
+  a(href='#download') Download
+// NOTE: DO NOT EDIT THE PRECEDING SECTION DIRECTLY! It is autogenerated via 
the `build-customizer-html` Grunt task using the customizer-nav.jade template.

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_jade/customizer-variables.jade
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_jade/customizer-variables.jade?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_jade/customizer-variables.jade
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_jade/customizer-variables.jade
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,21 @@
+// NOTE: DO NOT EDIT THE FOLLOWING SECTION DIRECTLY! It is autogenerated via 
the `build-customizer-html` Grunt task using the customizer-variables.jade 
template.
+each section in sections
+  if section.customizable
+    h2(id=section.id)= section.heading
+    if section.docstring
+      p!= section.docstring.html
+    each subsection in section.subsections
+      if subsection.heading
+        h3(id=subsection.id)= subsection.heading
+      div.row
+        each variable in subsection.variables
+          div.bs-customizer-input
+            label(for="input-" + variable.name)= variable.name
+            input.form-control(
+              id="input-" + variable.name
+              type="text"
+              value=variable.defaultValue
+              data-var=variable.name)
+            if variable.docstring
+              p.help-block!= variable.docstring.html
+// NOTE: DO NOT EDIT THE PRECEDING SECTION DIRECTLY! It is autogenerated via 
the `build-customizer-html` Grunt task using the customizer-variables.jade 
template.

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_layouts/default.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_layouts/default.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_layouts/default.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_layouts/default.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,62 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <!-- Meta, title, CSS, favicons, etc. -->
+    {% include header.html %}
+  </head>
+  <body>
+    <a class="sr-only sr-only-focusable" href="#content">Skip to main 
content</a>
+
+    <!-- Docs master nav -->
+    {% include nav/main.html %}
+
+    <!-- Docs page layout -->
+    <div class="bs-docs-header" id="content">
+      <div class="container">
+        <h1>{{ page.title }}</h1>
+        <p>{{ page.lead }}</p>
+        {% include ads.html %}
+      </div>
+    </div>
+
+    <div class="container bs-docs-container">
+
+      <div class="row">
+        <div class="col-md-9" role="main">
+          {{ content }}
+        </div>
+        <div class="col-md-3">
+          <div class="bs-docs-sidebar hidden-print hidden-xs hidden-sm" 
role="complementary">
+            <ul class="nav bs-docs-sidenav">
+              {% if page.slug == "getting-started" %}
+                {% include nav/getting-started.html %}
+              {% elsif page.slug == "css" %}
+                {% include nav/css.html %}
+              {% elsif page.slug == "components" %}
+                {% include nav/components.html %}
+              {% elsif page.slug == "js" %}
+                {% include nav/javascript.html %}
+              {% elsif page.slug == "customize" %}
+                {% include nav/customize.html %}
+              {% elsif page.slug == "about" %}
+                {% include nav/about.html %}
+              {% elsif page.slug == "migration" %}
+                {% include nav/migration.html %}
+              {% endif %}
+            </ul>
+            <a class="back-to-top" href="#top">
+              Back to top
+            </a>
+            {% if page.slug == "css" or page.slug == "components" or page.slug 
== "js" %}
+            <a href="#" class="bs-docs-theme-toggle">
+              Preview theme
+            </a>
+            {% endif %}
+          </div>
+        </div>
+      </div>
+    </div>
+
+    {% include footer.html %}
+  </body>
+</html>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_layouts/home.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_layouts/home.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_layouts/home.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/_layouts/home.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <!-- Meta, title, CSS, favicons, etc. -->
+    {% include header.html %}
+  </head>
+  <body class="bs-docs-home">
+    <a class="sr-only sr-only-focusable" href="#content">Skip to main 
content</a>
+
+    <!-- Docs master nav -->
+    {% include nav/main.html %}
+
+    <!-- Page content of course! -->
+    {{ content }}
+
+    {% include footer.html %}
+  </body>
+</html>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/about.html
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/about.html?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/about.html
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/about.html
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,125 @@
+---
+layout: default
+title: About
+slug: about
+lead: "Learn about the project's history, meet the maintaining teams, and find 
out how to use the Bootstrap brand."
+---
+
+
+<!-- History
+================================================== -->
+<div class="bs-docs-section">
+  <h1 id="history" class="page-header">History</h1>
+
+  <p class="lead">Originally created by a designer and a developer at Twitter, 
Bootstrap has become one of the most popular front-end frameworks and open 
source projects in the world.</p>
+  <p>Bootstrap was created at Twitter in mid-2010 by <a 
href="https://twitter.com/mdo";>@mdo</a> and <a 
href="https://twitter.com/fat";>@fat</a>. Prior to being an open-sourced 
framework, Bootstrap was known as <em>Twitter Blueprint</em>. A few months into 
development, Twitter held its <a 
href="https://blog.twitter.com/2010/hack-week";>first Hack Week</a> and the 
project exploded as developers of all skill levels jumped in without any 
external guidance. It served as the style guide for internal tools development 
at the company for over a year before its public release, and continues to do 
so today.</p>
+  <p>Originally <a 
href="https://dev.twitter.com/blog/bootstrap-twitter";>released</a> on <a 
href="https://twitter.com/mdo/statuses/104620039650557952";><time 
datetime="2011-08-19 11:25">Friday, August 19, 2011</time></a>, we've since had 
over <a href="https://github.com/twbs/bootstrap/releases";>twenty releases</a>, 
including two major rewrites with v2 and v3. With Bootstrap 2, we added 
responsive functionality to the entire framework as an optional stylesheet. 
Building on that with Bootstrap 3, we rewrote the library once more to make it 
responsive by default with a mobile first approach.</p>
+</div>
+
+
+<!-- Team
+================================================== -->
+<div class="bs-docs-section">
+  <h1 id="team" class="page-header">Team</h1>
+
+  <p class="lead">Bootstrap is maintained by the founding team and a small 
group of invaluable core contributors, with the massive support and involvement 
of our community.</p>
+
+  <h2 id="team-core">Core team</h2>
+  <div class="list-group bs-team">
+    {% for member in site.data.core-team %}
+      <div class="list-group-item">
+        <iframe class="github-btn" 
src="http://ghbtns.com/github-btn.html?user={{ member.user 
}}&amp;type=follow"></iframe>
+        <a class="team-member" href="https://github.com/{{ member.user }}">
+          <img src="http://www.gravatar.com/avatar/{{ member.gravatar }}" 
alt="@{{ member.user }}">
+          <strong>{{ member.name }}</strong> <small>@{{ member.user }}</small>
+        </a>
+      </div>
+    {% endfor %}
+  </div>
+  <p>Get involved with Bootstrap development by <a 
href="https://github.com/twbs/bootstrap/issues/new";>opening an issue</a> or 
submitting a pull request. Read our <a 
href="https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md";>contributing
 guidelines</a> for information on how we develop.</p>
+
+  <h2 id="team-sass">Sass team</h2>
+  <div class="list-group bs-team">
+    {% for member in site.data.sass-team %}
+      <div class="list-group-item">
+        <iframe class="github-btn" 
src="http://ghbtns.com/github-btn.html?user={{ member.user 
}}&amp;type=follow"></iframe>
+        <a class="team-member" href="https://github.com/{{ member.user }}">
+          <img src="http://www.gravatar.com/avatar/{{ member.gravatar }}" 
alt="@{{ member.user }}">
+          <strong>{{ member.name }}</strong> <small>@{{ member.user }}</small>
+        </a>
+      </div>
+    {% endfor %}
+  </div>
+  <p>The <a href="{{ site.sass_repo }}">official Sass port of Bootstrap</a> 
was created and is maintained by this team. It became part of Bootstrap's 
organization with v3.1.0. Read the Sass <a 
href="https://github.com/twbs/bootstrap-sass/blob/master/CONTRIBUTING.md";>contributing
 guidelines</a> for information on how the Sass port is developed.</p>
+</div>
+
+
+<!-- Brand
+================================================== -->
+<div class="bs-docs-section">
+  <h1 id="brand" class="page-header">Brand guidelines</h1>
+
+  <p class="lead">Have a need for Bootstrap's brand resources? Great! We have 
only a few guidelines we follow, and in turn ask you to follow as well. These 
guidelines were inspired by MailChimp's <a 
href="http://mailchimp.com/about/brand-assets/"; target="_blank">Brand 
Assets</a>.</p>
+
+  <h2>Mark and logo</h2>
+  <p>Use either the Bootstrap mark (a capital <strong>B</strong>) or the 
standard logo (just <strong>Bootstrap</strong>). It should always appear in 
Helvetica Neue Bold. <strong>Do not use the Twitter bird</strong> in 
association with Bootstrap.</p>
+  <div class="bs-brand-logos">
+    <div class="bs-brand-item">
+      <div class="bs-docs-booticon bs-docs-booticon-lg">B</div>
+    </div>
+    <div class="bs-brand-item inverse">
+      <div class="bs-docs-booticon bs-docs-booticon-lg 
bs-docs-booticon-inverse">B</div>
+    </div>
+  </div>
+  <div class="bs-brand-logos">
+    <div class="bs-brand-item">
+      <h1>Bootstrap</h1>
+    </div>
+    <div class="bs-brand-item inverse">
+      <h1>Bootstrap</h1>
+    </div>
+  </div>
+
+  <h2>Download mark</h2>
+  <p>Download the Bootstrap mark in one of three styles, each available as an 
SVG file. Right click, Save as.</p>
+  <div class="bs-brand-logos">
+    <div class="bs-brand-item">
+      <img class="svg" src="../assets/brand/bootstrap-solid.svg" 
alt="Bootstrap">
+    </div>
+    <div class="bs-brand-item inverse">
+      <img class="svg" src="../assets/brand/bootstrap-outline.svg" 
alt="Bootstrap">
+    </div>
+    <div class="bs-brand-item inverse">
+      <img class="svg" src="../assets/brand/bootstrap-punchout.svg" 
alt="Bootstrap">
+    </div>
+  </div>
+
+  <h2>Name</h2>
+  <p>The project and framework should always be referred to as 
<strong>Bootstrap</strong>. No Twitter before it, no capital <em>s</em>, and no 
abbreviations except for one, a capital <strong>B</strong>.</p>
+  <div class="bs-brand-logos">
+    <div class="bs-brand-item">
+      <h3>Bootstrap</h3>
+      <span class="glyphicon glyphicon-ok"></span>
+    </div>
+    <div class="bs-brand-item">
+      <h3 class="text-muted">BootStrap</h3>
+      <span class="glyphicon glyphicon-remove"></span>
+    </div>
+    <div class="bs-brand-item">
+      <h3 class="text-muted">Twitter Bootstrap</h3>
+      <span class="glyphicon glyphicon-remove"></span>
+    </div>
+  </div>
+
+  <h2>Colors</h2>
+  <p>Our docs and branding use a handful of primary colors to differentiate 
what <em>is</em> Bootstrap from what <em>is in</em> Bootstrap. In other words, 
if it's purple, it's representative of Bootstrap.</p>
+  <div class="bs-brand">
+    <div class="color-swatches">
+      <div class="color-swatch bs-purple"></div>
+      <div class="color-swatch bs-purple-light"></div>
+      <div class="color-swatch bs-purple-lighter"></div>
+      <div class="color-swatch bs-gray"></div>
+    </div>
+  </div>
+
+</div>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/apple-touch-icon-precomposed.png
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/apple-touch-icon-precomposed.png?rev=1620299&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/apple-touch-icon-precomposed.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-outline.svg
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-outline.svg?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-outline.svg
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-outline.svg
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 
6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd";>
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; x="0px" y="0px"
+        viewBox="0 180 612 612" enable-background="new 0 180 612 612" 
xml:space="preserve">
+<g id="outline" sodipodi:docname="twitter_bootstrap_logo.svg" 
inkscape:version="0.48.1 r9760" xmlns:svg="http://www.w3.org/2000/svg"; 
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"; 
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"; 
xmlns:dc="http://purl.org/dc/elements/1.1/"; 
xmlns:cc="http://creativecommons.org/ns#"; 
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";>
+       <g id="bg_1_">
+               <path fill="#FFFFFF" 
d="M510,186c25.5,0,49.6,10,67.8,28.2S606,256.5,606,282v408c0,25.5-10,49.6-28.2,67.8S535.5,786,510,786H102
+                       
c-25.5,0-49.6-10-67.8-28.2S6,715.5,6,690V282c0-25.5,10-49.6,28.2-67.8S76.5,186,102,186H510
 M510,180H102
+                       
C45.9,180,0,225.9,0,282v408c0,56.1,45.9,102,102,102h408c56.1,0,102-45.9,102-102V282C612,225.9,566.1,180,510,180L510,180z"/>
+       </g>
+       <g id="B_2_" enable-background="new    ">
+               <path fill="#FFFFFF" 
d="M166.3,313h173.5c32,0,57.7,7.3,77,22s29,36.8,29,66.5c0,18-4.4,33.4-13.2,46.2
+                       
c-8.8,12.8-21.4,22.8-37.8,29.8v1c22,4.7,38.7,15.1,50,31.2c11.3,16.2,17,36.4,17,60.8c0,14-2.5,27.1-7.5,39.2
+                       
c-5,12.2-12.8,22.7-23.5,31.5s-24.3,15.8-41,21s-36.5,7.8-59.5,7.8h-164L166.3,313L166.3,313z
 M228.8,462.5h102
+                       
c15,0,27.5-4.2,37.5-12.8s15-20.8,15-36.8c0-18-4.5-30.7-13.5-38s-22-11-39-11h-102L228.8,462.5L228.8,462.5z
 M228.8,619h110.5
+                       
c19,0,33.8-4.9,44.2-14.8c10.5-9.8,15.8-23.8,15.8-41.8c0-17.7-5.2-31.2-15.8-40.8s-25.2-14.2-44.2-14.2H228.8V619z"/>
+       </g>
+</g>
+</svg>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-punchout.svg
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-punchout.svg?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-punchout.svg
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-punchout.svg
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 
6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd";>
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; x="0px" y="0px"
+        viewBox="0 180 612 612" enable-background="new 0 180 612 612" 
xml:space="preserve">
+<g id="punchout" sodipodi:docname="twitter_bootstrap_logo.svg" 
inkscape:version="0.48.1 r9760" xmlns:svg="http://www.w3.org/2000/svg"; 
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"; 
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"; 
xmlns:dc="http://purl.org/dc/elements/1.1/"; 
xmlns:cc="http://creativecommons.org/ns#"; 
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";>
+       <g>
+               <path fill="#FFFFFF" 
d="M383.5,521.8c-10.5-9.5-25.2-14.2-44.2-14.2H228.8V619h110.5c19,0,33.8-4.9,44.2-14.8
+                       
c10.5-9.8,15.8-23.8,15.8-41.8C399.2,544.8,394,531.2,383.5,521.8z"/>
+               <path fill="#FFFFFF" 
d="M368.2,449.8c10-8.5,15-20.8,15-36.8c0-18-4.5-30.7-13.5-38s-22-11-39-11h-102v98.5h102
+                       C345.7,462.5,358.2,458.2,368.2,449.8z"/>
+               <path fill="#FFFFFF" 
d="M510,180H102C45.9,180,0,225.9,0,282v408c0,56.1,45.9,102,102,102h408c56.1,0,102-45.9,102-102V282
+                       C612,225.9,566.1,180,510,180z 
M454.2,609.8c-5,12.2-12.8,22.7-23.5,31.5s-24.3,15.8-41,21s-36.5,7.8-59.5,7.8h-164V313h173.5
+                       
c32,0,57.7,7.3,77,22s29,36.8,29,66.5c0,18-4.4,33.4-13.2,46.2c-8.8,12.8-21.4,22.8-37.8,29.8v1c22,4.7,38.7,15.1,50,31.2
+                       
c11.3,16.2,17,36.4,17,60.8C461.7,584.5,459.2,597.6,454.2,609.8z"/>
+       </g>
+</g>
+</svg>

Added: 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-solid.svg
URL: 
http://svn.apache.org/viewvc/incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-solid.svg?rev=1620299&view=auto
==============================================================================
--- 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-solid.svg
 (added)
+++ 
incubator/devicemap/whiteboard/devicemap-site-jekyll/_less/bootstrap-3.2.0/docs/assets/brand/bootstrap-solid.svg
 Mon Aug 25 11:56:18 2014
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 
6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd";>
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; x="0px" y="0px"
+        viewBox="0 0 612 612" enable-background="new 0 0 612 612" 
xml:space="preserve">
+<g id="solid" sodipodi:docname="twitter_bootstrap_logo.svg" 
inkscape:version="0.48.1 r9760" xmlns:svg="http://www.w3.org/2000/svg"; 
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"; 
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"; 
xmlns:dc="http://purl.org/dc/elements/1.1/"; 
xmlns:cc="http://creativecommons.org/ns#"; 
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";>
+       <path id="bg" fill="#563D7C" 
d="M612,510c0,56.1-45.9,102-102,102H102C45.9,612,0,566.1,0,510V102C0,45.9,45.9,0,102,0h408
+               c56.1,0,102,45.9,102,102V510z"/>
+       <g id="B" enable-background="new    ">
+               <path fill="#FFFFFF" 
d="M166.3,133h173.5c32,0,57.7,7.3,77,22s29,36.8,29,66.5c0,18-4.4,33.4-13.2,46.2
+                       
c-8.8,12.8-21.4,22.8-37.8,29.8v1c22,4.7,38.7,15.1,50,31.2c11.3,16.2,17,36.4,17,60.8c0,14-2.5,27.1-7.5,39.2
+                       
c-5,12.2-12.8,22.7-23.5,31.5s-24.3,15.8-41,21s-36.5,7.8-59.5,7.8h-164L166.3,133L166.3,133z
 M228.8,282.5h102
+                       
c15,0,27.5-4.2,37.5-12.8s15-20.8,15-36.8c0-18-4.5-30.7-13.5-38s-22-11-39-11h-102L228.8,282.5L228.8,282.5z
 M228.8,439h110.5
+                       
c19,0,33.8-4.9,44.2-14.8c10.5-9.8,15.8-23.8,15.8-41.8c0-17.7-5.2-31.2-15.8-40.8s-25.2-14.2-44.2-14.2H228.8V439z"/>
+       </g>
+</g>
+</svg>


Reply via email to