sass-twitter-bootstrap 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (243) hide show
  1. data/.gitignore +4 -0
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +14 -0
  4. data/LICENSE +176 -0
  5. data/Makefile +94 -0
  6. data/README.md +217 -0
  7. data/Rakefile +52 -0
  8. data/bootstrap-2.0.4.css +4661 -0
  9. data/bootstrap-2.0.4.min.css +9 -0
  10. data/bootstrap-responsive-2.0.4.css +932 -0
  11. data/bootstrap-responsive-2.0.4.min.css +9 -0
  12. data/docs/assets/css/bootstrap-responsive.css +932 -0
  13. data/docs/assets/css/bootstrap.css +4661 -0
  14. data/docs/assets/css/docs.css +846 -0
  15. data/docs/assets/ico/apple-touch-icon-114-precomposed.png +0 -0
  16. data/docs/assets/ico/apple-touch-icon-144-precomposed.png +0 -0
  17. data/docs/assets/ico/apple-touch-icon-57-precomposed.png +0 -0
  18. data/docs/assets/ico/apple-touch-icon-72-precomposed.png +0 -0
  19. data/docs/assets/ico/favicon.ico +0 -0
  20. data/docs/assets/img/bird.png +0 -0
  21. data/docs/assets/img/bootstrap-mdo-sfmoma-01.jpg +0 -0
  22. data/docs/assets/img/bootstrap-mdo-sfmoma-02.jpg +0 -0
  23. data/docs/assets/img/bootstrap-mdo-sfmoma-03.jpg +0 -0
  24. data/docs/assets/img/browsers.png +0 -0
  25. data/docs/assets/img/example-sites/fleetio.png +0 -0
  26. data/docs/assets/img/example-sites/jshint.png +0 -0
  27. data/docs/assets/img/example-sites/kippt.png +0 -0
  28. data/docs/assets/img/example-sites/soundready.png +0 -0
  29. data/docs/assets/img/examples/bootstrap-example-fluid.jpg +0 -0
  30. data/docs/assets/img/examples/bootstrap-example-hero.jpg +0 -0
  31. data/docs/assets/img/examples/bootstrap-example-starter.jpg +0 -0
  32. data/docs/assets/img/github-16px.png +0 -0
  33. data/docs/assets/img/glyphicons-halflings-white.png +0 -0
  34. data/docs/assets/img/glyphicons-halflings.png +0 -0
  35. data/docs/assets/img/glyphicons/glyphicons_009_magic.png +0 -0
  36. data/docs/assets/img/glyphicons/glyphicons_042_group.png +0 -0
  37. data/docs/assets/img/glyphicons/glyphicons_079_podium.png +0 -0
  38. data/docs/assets/img/glyphicons/glyphicons_082_roundabout.png +0 -0
  39. data/docs/assets/img/glyphicons/glyphicons_155_show_thumbnails.png +0 -0
  40. data/docs/assets/img/glyphicons/glyphicons_163_iphone.png +0 -0
  41. data/docs/assets/img/glyphicons/glyphicons_214_resize_small.png +0 -0
  42. data/docs/assets/img/glyphicons/glyphicons_266_book_open.png +0 -0
  43. data/docs/assets/img/grid-18px-masked.png +0 -0
  44. data/docs/assets/img/icon-css3.png +0 -0
  45. data/docs/assets/img/icon-github.png +0 -0
  46. data/docs/assets/img/icon-html5.png +0 -0
  47. data/docs/assets/img/icon-twitter.png +0 -0
  48. data/docs/assets/img/less-logo-large.png +0 -0
  49. data/docs/assets/img/less-small.png +0 -0
  50. data/docs/assets/img/responsive-illustrations.png +0 -0
  51. data/docs/assets/js/README.md +106 -0
  52. data/docs/assets/js/application.js +184 -0
  53. data/docs/assets/js/bootstrap-alert.js +90 -0
  54. data/docs/assets/js/bootstrap-button.js +96 -0
  55. data/docs/assets/js/bootstrap-carousel.js +169 -0
  56. data/docs/assets/js/bootstrap-collapse.js +157 -0
  57. data/docs/assets/js/bootstrap-dropdown.js +100 -0
  58. data/docs/assets/js/bootstrap-modal.js +218 -0
  59. data/docs/assets/js/bootstrap-popover.js +98 -0
  60. data/docs/assets/js/bootstrap-scrollspy.js +151 -0
  61. data/docs/assets/js/bootstrap-tab.js +135 -0
  62. data/docs/assets/js/bootstrap-tooltip.js +275 -0
  63. data/docs/assets/js/bootstrap-transition.js +61 -0
  64. data/docs/assets/js/bootstrap-typeahead.js +285 -0
  65. data/docs/assets/js/bootstrap.js +1825 -0
  66. data/docs/assets/js/bootstrap.min.js +6 -0
  67. data/docs/assets/js/google-code-prettify/prettify.css +30 -0
  68. data/docs/assets/js/google-code-prettify/prettify.js +28 -0
  69. data/docs/assets/js/jquery.js +9252 -0
  70. data/docs/base-css.html +1710 -0
  71. data/docs/build/index.js +44 -0
  72. data/docs/build/node_modules/.bin/hulk +93 -0
  73. data/docs/build/node_modules/hogan.js/.git_ignore +1 -0
  74. data/docs/build/node_modules/hogan.js/.gitmodules +3 -0
  75. data/docs/build/node_modules/hogan.js/LICENSE +177 -0
  76. data/docs/build/node_modules/hogan.js/Makefile +62 -0
  77. data/docs/build/node_modules/hogan.js/README.md +93 -0
  78. data/docs/build/node_modules/hogan.js/bin/hulk +93 -0
  79. data/docs/build/node_modules/hogan.js/lib/compiler.js +348 -0
  80. data/docs/build/node_modules/hogan.js/lib/hogan.js +20 -0
  81. data/docs/build/node_modules/hogan.js/lib/template.js +233 -0
  82. data/docs/build/node_modules/hogan.js/package.json +20 -0
  83. data/docs/build/node_modules/hogan.js/test/html/list.html +8 -0
  84. data/docs/build/node_modules/hogan.js/test/index.html +13 -0
  85. data/docs/build/node_modules/hogan.js/test/index.js +848 -0
  86. data/docs/build/node_modules/hogan.js/test/mustache.js +90 -0
  87. data/docs/build/node_modules/hogan.js/test/spec.js +77 -0
  88. data/docs/build/node_modules/hogan.js/test/spec/Changes +31 -0
  89. data/docs/build/node_modules/hogan.js/test/spec/README.md +65 -0
  90. data/docs/build/node_modules/hogan.js/test/spec/Rakefile +27 -0
  91. data/docs/build/node_modules/hogan.js/test/spec/TESTING.md +46 -0
  92. data/docs/build/node_modules/hogan.js/test/spec/specs/comments.json +1 -0
  93. data/docs/build/node_modules/hogan.js/test/spec/specs/comments.yml +103 -0
  94. data/docs/build/node_modules/hogan.js/test/spec/specs/delimiters.json +1 -0
  95. data/docs/build/node_modules/hogan.js/test/spec/specs/delimiters.yml +158 -0
  96. data/docs/build/node_modules/hogan.js/test/spec/specs/interpolation.json +1 -0
  97. data/docs/build/node_modules/hogan.js/test/spec/specs/interpolation.yml +230 -0
  98. data/docs/build/node_modules/hogan.js/test/spec/specs/inverted.json +1 -0
  99. data/docs/build/node_modules/hogan.js/test/spec/specs/inverted.yml +193 -0
  100. data/docs/build/node_modules/hogan.js/test/spec/specs/partials.json +1 -0
  101. data/docs/build/node_modules/hogan.js/test/spec/specs/partials.yml +109 -0
  102. data/docs/build/node_modules/hogan.js/test/spec/specs/sections.json +1 -0
  103. data/docs/build/node_modules/hogan.js/test/spec/specs/sections.yml +256 -0
  104. data/docs/build/node_modules/hogan.js/test/spec/specs/~lambdas.json +1 -0
  105. data/docs/build/node_modules/hogan.js/test/spec/specs/~lambdas.yml +149 -0
  106. data/docs/build/node_modules/hogan.js/test/templates/list.mustache +8 -0
  107. data/docs/build/node_modules/hogan.js/tools/release.js +74 -0
  108. data/docs/build/node_modules/hogan.js/tools/web_templates.js +32 -0
  109. data/docs/build/node_modules/hogan.js/web/1.0.0/hogan.js +500 -0
  110. data/docs/build/node_modules/hogan.js/web/1.0.0/hogan.min.js +14 -0
  111. data/docs/build/node_modules/hogan.js/web/builds/1.0.0/hogan.js +500 -0
  112. data/docs/build/node_modules/hogan.js/web/builds/1.0.0/hogan.min.js +14 -0
  113. data/docs/build/node_modules/hogan.js/web/builds/1.0.3/hogan.js +545 -0
  114. data/docs/build/node_modules/hogan.js/web/builds/1.0.3/hogan.min.js +5 -0
  115. data/docs/build/node_modules/hogan.js/web/builds/1.0.5/hogan-1.0.5.amd.js +576 -0
  116. data/docs/build/node_modules/hogan.js/web/builds/1.0.5/hogan-1.0.5.common.js +576 -0
  117. data/docs/build/node_modules/hogan.js/web/builds/1.0.5/hogan-1.0.5.js +572 -0
  118. data/docs/build/node_modules/hogan.js/web/builds/1.0.5/hogan-1.0.5.min.amd.js +5 -0
  119. data/docs/build/node_modules/hogan.js/web/builds/1.0.5/hogan-1.0.5.min.common.js +5 -0
  120. data/docs/build/node_modules/hogan.js/web/builds/1.0.5/hogan-1.0.5.min.js +5 -0
  121. data/docs/build/node_modules/hogan.js/web/builds/1.0.5/hogan-1.0.5.min.mustache.js +5 -0
  122. data/docs/build/node_modules/hogan.js/web/builds/1.0.5/hogan-1.0.5.mustache.js +619 -0
  123. data/docs/build/node_modules/hogan.js/web/builds/1.0.5/template-1.0.5.js +233 -0
  124. data/docs/build/node_modules/hogan.js/web/builds/1.0.5/template-1.0.5.min.js +5 -0
  125. data/docs/build/node_modules/hogan.js/web/favicon.ico +0 -0
  126. data/docs/build/node_modules/hogan.js/web/images/logo.png +0 -0
  127. data/docs/build/node_modules/hogan.js/web/images/noise.png +0 -0
  128. data/docs/build/node_modules/hogan.js/web/images/small-hogan-icon.png +0 -0
  129. data/docs/build/node_modules/hogan.js/web/images/stripes.png +0 -0
  130. data/docs/build/node_modules/hogan.js/web/index.html.mustache +139 -0
  131. data/docs/build/node_modules/hogan.js/web/stylesheets/layout.css +206 -0
  132. data/docs/build/node_modules/hogan.js/web/stylesheets/skeleton.css +236 -0
  133. data/docs/build/node_modules/hogan.js/wrappers/amd.js.mustache +21 -0
  134. data/docs/build/node_modules/hogan.js/wrappers/common.js.mustache +21 -0
  135. data/docs/build/node_modules/hogan.js/wrappers/js.mustache +17 -0
  136. data/docs/build/node_modules/hogan.js/wrappers/mustache.js.mustache +64 -0
  137. data/docs/build/package.json +6 -0
  138. data/docs/components.html +1931 -0
  139. data/docs/download.html +454 -0
  140. data/docs/examples.html +147 -0
  141. data/docs/examples/fluid.html +162 -0
  142. data/docs/examples/hero.html +109 -0
  143. data/docs/examples/starter-template.html +79 -0
  144. data/docs/index.html +259 -0
  145. data/docs/javascript.html +1520 -0
  146. data/docs/less.html +1060 -0
  147. data/docs/scaffolding.html +671 -0
  148. data/docs/templates/layout.mustache +146 -0
  149. data/docs/templates/pages/base-css.mustache +1594 -0
  150. data/docs/templates/pages/components.mustache +1815 -0
  151. data/docs/templates/pages/download.mustache +338 -0
  152. data/docs/templates/pages/examples.mustache +31 -0
  153. data/docs/templates/pages/index.mustache +144 -0
  154. data/docs/templates/pages/javascript.mustache +1405 -0
  155. data/docs/templates/pages/less.mustache +944 -0
  156. data/docs/templates/pages/scaffolding.mustache +555 -0
  157. data/docs/templates/pages/upgrading.mustache +194 -0
  158. data/docs/upgrading.html +310 -0
  159. data/js/tests/index.html +54 -0
  160. data/js/tests/phantom.js +63 -0
  161. data/js/tests/server.js +14 -0
  162. data/js/tests/unit/bootstrap-alert.js +56 -0
  163. data/js/tests/unit/bootstrap-button.js +77 -0
  164. data/js/tests/unit/bootstrap-carousel.js +28 -0
  165. data/js/tests/unit/bootstrap-collapse.js +54 -0
  166. data/js/tests/unit/bootstrap-dropdown.js +87 -0
  167. data/js/tests/unit/bootstrap-modal.js +114 -0
  168. data/js/tests/unit/bootstrap-phantom.js +21 -0
  169. data/js/tests/unit/bootstrap-popover.js +93 -0
  170. data/js/tests/unit/bootstrap-scrollspy.js +31 -0
  171. data/js/tests/unit/bootstrap-tab.js +61 -0
  172. data/js/tests/unit/bootstrap-tooltip.js +155 -0
  173. data/js/tests/unit/bootstrap-transition.js +13 -0
  174. data/js/tests/unit/bootstrap-typeahead.js +148 -0
  175. data/js/tests/vendor/jquery.js +9252 -0
  176. data/js/tests/vendor/qunit.css +232 -0
  177. data/js/tests/vendor/qunit.js +1510 -0
  178. data/lib/sass-twitter-bootstrap.rb +9 -0
  179. data/lib/sass/twitter/bootstrap/rails.rb +14 -0
  180. data/lib/sass/twitter/bootstrap/version.rb +7 -0
  181. data/package.json +25 -0
  182. data/sass-twitter-bootstrap.gemspec +19 -0
  183. data/vendor/assets/images/glyphicons-halflings-white.png +0 -0
  184. data/vendor/assets/images/glyphicons-halflings.png +0 -0
  185. data/vendor/assets/javascripts/README.md +112 -0
  186. data/vendor/assets/javascripts/twitter/bootstrap-alert.js +90 -0
  187. data/vendor/assets/javascripts/twitter/bootstrap-button.js +96 -0
  188. data/vendor/assets/javascripts/twitter/bootstrap-carousel.js +169 -0
  189. data/vendor/assets/javascripts/twitter/bootstrap-collapse.js +157 -0
  190. data/vendor/assets/javascripts/twitter/bootstrap-dropdown.js +100 -0
  191. data/vendor/assets/javascripts/twitter/bootstrap-modal.js +218 -0
  192. data/vendor/assets/javascripts/twitter/bootstrap-popover.js +98 -0
  193. data/vendor/assets/javascripts/twitter/bootstrap-scrollspy.js +151 -0
  194. data/vendor/assets/javascripts/twitter/bootstrap-tab.js +135 -0
  195. data/vendor/assets/javascripts/twitter/bootstrap-tooltip.js +275 -0
  196. data/vendor/assets/javascripts/twitter/bootstrap-transition.js +61 -0
  197. data/vendor/assets/javascripts/twitter/bootstrap-typeahead.js +285 -0
  198. data/vendor/assets/javascripts/twitter/bootstrap.js +12 -0
  199. data/vendor/assets/stylesheets/tests/css-tests.css +52 -0
  200. data/vendor/assets/stylesheets/tests/css-tests.html +917 -0
  201. data/vendor/assets/stylesheets/tests/forms.html +179 -0
  202. data/vendor/assets/stylesheets/tests/navbar.html +108 -0
  203. data/vendor/assets/stylesheets/twitter/_accordion.scss +33 -0
  204. data/vendor/assets/stylesheets/twitter/_alerts.scss +58 -0
  205. data/vendor/assets/stylesheets/twitter/_breadcrumbs.scss +24 -0
  206. data/vendor/assets/stylesheets/twitter/_button-groups.scss +191 -0
  207. data/vendor/assets/stylesheets/twitter/_buttons.scss +191 -0
  208. data/vendor/assets/stylesheets/twitter/_carousel.scss +121 -0
  209. data/vendor/assets/stylesheets/twitter/_close.scss +29 -0
  210. data/vendor/assets/stylesheets/twitter/_code.scss +57 -0
  211. data/vendor/assets/stylesheets/twitter/_component-animations.scss +20 -0
  212. data/vendor/assets/stylesheets/twitter/_dropdowns.scss +143 -0
  213. data/vendor/assets/stylesheets/twitter/_forms.scss +582 -0
  214. data/vendor/assets/stylesheets/twitter/_grid.scss +5 -0
  215. data/vendor/assets/stylesheets/twitter/_hero-unit.scss +22 -0
  216. data/vendor/assets/stylesheets/twitter/_labels-badges.scss +52 -0
  217. data/vendor/assets/stylesheets/twitter/_layouts.scss +17 -0
  218. data/vendor/assets/stylesheets/twitter/_mixins.scss +643 -0
  219. data/vendor/assets/stylesheets/twitter/_modals.scss +90 -0
  220. data/vendor/assets/stylesheets/twitter/_navbar.scss +358 -0
  221. data/vendor/assets/stylesheets/twitter/_navs.scss +363 -0
  222. data/vendor/assets/stylesheets/twitter/_pager.scss +36 -0
  223. data/vendor/assets/stylesheets/twitter/_pagination.scss +56 -0
  224. data/vendor/assets/stylesheets/twitter/_popovers.scss +49 -0
  225. data/vendor/assets/stylesheets/twitter/_progress-bars.scss +117 -0
  226. data/vendor/assets/stylesheets/twitter/_reset.scss +131 -0
  227. data/vendor/assets/stylesheets/twitter/_responsive-1200px-min.scss +26 -0
  228. data/vendor/assets/stylesheets/twitter/_responsive-767px-max.scss +149 -0
  229. data/vendor/assets/stylesheets/twitter/_responsive-768px-979px.scss +17 -0
  230. data/vendor/assets/stylesheets/twitter/_responsive-navbar.scss +153 -0
  231. data/vendor/assets/stylesheets/twitter/_responsive-utilities.scss +41 -0
  232. data/vendor/assets/stylesheets/twitter/_scaffolding.scss +29 -0
  233. data/vendor/assets/stylesheets/twitter/_sprites.scss +191 -0
  234. data/vendor/assets/stylesheets/twitter/_tables.scss +155 -0
  235. data/vendor/assets/stylesheets/twitter/_thumbnails.scss +47 -0
  236. data/vendor/assets/stylesheets/twitter/_tooltip.scss +35 -0
  237. data/vendor/assets/stylesheets/twitter/_type.scss +232 -0
  238. data/vendor/assets/stylesheets/twitter/_utilities.scss +23 -0
  239. data/vendor/assets/stylesheets/twitter/_variables.scss +204 -0
  240. data/vendor/assets/stylesheets/twitter/_wells.scss +27 -0
  241. data/vendor/assets/stylesheets/twitter/bootstrap.scss +62 -0
  242. data/vendor/assets/stylesheets/twitter/responsive.scss +48 -0
  243. metadata +304 -0
@@ -0,0 +1,8 @@
1
+ <ul>
2
+ <li></li>
3
+ <li></li>
4
+ <li></li>
5
+ <li></li>
6
+ <li></li>
7
+ <li></li>
8
+ </ul>
@@ -0,0 +1,74 @@
1
+ /*
2
+ * Copyright 2011 Twitter, Inc.
3
+ * Licensed under the Apache License, Version 2.0 (the "License");
4
+ * you may not use this file except in compliance with the License.
5
+ * You may obtain a copy of the License at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * Unless required by applicable law or agreed to in writing, software
10
+ * distributed under the License is distributed on an "AS IS" BASIS,
11
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ * See the License for the specific language governing permissions and
13
+ * limitations under the License.
14
+ */
15
+
16
+ var fs = require('fs');
17
+ var path = require('path');
18
+ var Hogan = require(__dirname + '/../lib/hogan');
19
+ var minlicense = '/**\n* @preserve Copyright 2012 Twitter, Inc.\n* @license http://www.apache.org/licenses/LICENSE-2.0.txt\n*/\n';
20
+
21
+ function read(path) {
22
+ return fs.readFileSync(path).toString()
23
+ }
24
+
25
+ // Good enough for little js files
26
+ function copy(src, dst) {
27
+ return fs.writeFileSync(dst, read(src));
28
+ }
29
+
30
+ function uglify(src, dst) {
31
+ var jsp = require("uglify-js").parser;
32
+ var pro = require("uglify-js").uglify;
33
+ var orig_code = read(src);
34
+ var ast = jsp.parse(orig_code); // parse code and get the initial AST
35
+ ast = pro.ast_mangle(ast); // get a new AST with mangled names
36
+ ast = pro.ast_squeeze(ast); // get an AST with compression optimizations
37
+ fs.writeFileSync(dst, minlicense + pro.gen_code(ast));
38
+ }
39
+
40
+ var packageJSON = JSON.parse(read('package.json'));
41
+ var version = packageJSON.version.substring(0, packageJSON.version.indexOf('-'));
42
+
43
+ function removeFirstComment(text) {
44
+ return text.substring(text.indexOf('*/') + 2);
45
+ }
46
+
47
+ var context = {
48
+ template: removeFirstComment(read(__dirname + '/../lib/template.js')),
49
+ compiler: removeFirstComment(read(__dirname + '/../lib/compiler.js'))
50
+ };
51
+
52
+ var wrapperPath = '/../wrappers/';
53
+ var wrappers = fs.readdirSync(__dirname + wrapperPath).map(function(f) {
54
+ return __dirname + wrapperPath + f;
55
+ });
56
+
57
+ var distPath = __dirname + '/../dist/';
58
+ wrappers.forEach(function(wrapper) {
59
+ var tail = path.basename(wrapper, '.mustache');
60
+ var target = distPath + 'hogan-' + version + '.' + tail;
61
+ var uglified = distPath + 'hogan-' + version + '.min.' + tail;
62
+ fs.writeFileSync(target, Hogan.compile(read(wrapper)).render(context));
63
+ uglify(target, uglified);
64
+ });
65
+
66
+ // Also release Hogan.Template on its own.
67
+ var templateTarget = distPath + 'template-' + version + '.js';
68
+ fs.writeFileSync(templateTarget, read(__dirname + '/../lib/template.js'));
69
+ uglify(templateTarget, distPath + 'template-' + version + '.min.js');
70
+
71
+ // Add packageJSON to node distribution
72
+ packageJSON.version = version;
73
+ fs.writeFileSync(__dirname + '/../dist/nodejs/package.json',
74
+ JSON.stringify(packageJSON, null, " "));
@@ -0,0 +1,32 @@
1
+ /*
2
+ * Copyright 2011 Twitter, Inc.
3
+ * Licensed under the Apache License, Version 2.0 (the "License");
4
+ * you may not use this file except in compliance with the License.
5
+ * You may obtain a copy of the License at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * Unless required by applicable law or agreed to in writing, software
10
+ * distributed under the License is distributed on an "AS IS" BASIS,
11
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ * See the License for the specific language governing permissions and
13
+ * limitations under the License.
14
+ */
15
+
16
+ var Hogan = require(__dirname + '/../lib/hogan.js');
17
+ var fs = require('fs');
18
+ var path = require('path');
19
+
20
+ // Substitute variables in the homepage with values from package.json
21
+ var homeTemplatePath = __dirname + '/../build/gh-pages/index.html.mustache';
22
+ var contextPath = __dirname + '/../dist/nodejs/package.json';
23
+
24
+ var homepage = fs.readFileSync(homeTemplatePath).toString();
25
+ var context = JSON.parse(fs.readFileSync(contextPath).toString());
26
+
27
+ var template = Hogan.compile(homepage);
28
+
29
+ fs.writeFileSync(path.dirname(homeTemplatePath) + '/index.html',
30
+ template.render(context));
31
+
32
+ fs.unlinkSync(homeTemplatePath);
@@ -0,0 +1,500 @@
1
+ /*
2
+ * Copyright 2011 Twitter, Inc.
3
+ * Licensed under the Apache License, Version 2.0 (the "License");
4
+ * you may not use this file except in compliance with the License.
5
+ * You may obtain a copy of the License at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * Unless required by applicable law or agreed to in writing, software
10
+ * distributed under the License is distributed on an "AS IS" BASIS,
11
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ * See the License for the specific language governing permissions and
13
+ * limitations under the License.
14
+ */
15
+
16
+ var HoganTemplate = (function () {
17
+
18
+ function constructor(text) {
19
+ this.text = text;
20
+ };
21
+
22
+ constructor.prototype = {
23
+ // render: replaced by generated code.
24
+ r: function (context, partials) { return ''; },
25
+
26
+ // variable escaping
27
+ v: hoganEscape,
28
+
29
+ render: function render(context, partials) {
30
+ return this.r(context, partials);
31
+ },
32
+
33
+ // tries to find a partial in the curent scope and render it
34
+ rp: function(name, context, partials, indent) {
35
+ var partial = partials[name];
36
+
37
+ if (!partial) {
38
+ return '';
39
+ }
40
+
41
+ return partial.render(context, partials);
42
+ },
43
+
44
+ // render a section
45
+ rs: function(context, partials, section) {
46
+ var buf = '';
47
+ var tail = context[context.length - 1];
48
+ if (!isArray(tail)) {
49
+ buf = section(context, partials);
50
+ return buf;
51
+ }
52
+
53
+ for (var i = 0; i < tail.length; i++) {
54
+ context.push(tail[i]);
55
+ buf += section(context, partials);
56
+ context.pop();
57
+ }
58
+ return buf;
59
+ },
60
+
61
+ // maybe start a section
62
+ s: function(val, ctx, partials, inverted, start, end) {
63
+ if (isArray(val) && val.length === 0) {
64
+ return false;
65
+ }
66
+
67
+ if (!inverted && typeof val == 'function') {
68
+ val = this.ls(val, ctx, partials, start, end);
69
+ }
70
+
71
+ var pass = (val === '') || !!val;
72
+
73
+ if (!inverted && pass && ctx) {
74
+ ctx.push((typeof val == 'object') ? val : ctx[ctx.length - 1]);
75
+ }
76
+
77
+ return pass;
78
+ },
79
+
80
+ // find values with dotted names
81
+ d: function(key, ctx, partials, returnFound) {
82
+ if (key === '.' && isArray(ctx[ctx.length - 2])) {
83
+ return ctx[ctx.length - 1];
84
+ }
85
+
86
+ var names = key.split('.');
87
+ var val = this.f(names[0], ctx, partials, returnFound);
88
+ var cx = null;
89
+ for (var i = 1; i < names.length; i++) {
90
+ if (val && typeof val == 'object' && names[i] in val) {
91
+ cx = val;
92
+ val = val[names[i]];
93
+ } else {
94
+ val = '';
95
+ }
96
+ }
97
+
98
+ if (returnFound && !val) {
99
+ return false;
100
+ }
101
+
102
+ if (!returnFound && typeof val == 'function') {
103
+ ctx.push(cx);
104
+ val = this.lv(val, ctx, partials);
105
+ ctx.pop();
106
+ }
107
+
108
+ return val;
109
+ },
110
+
111
+ // find values with normal names
112
+ f: function(key, ctx, partials, returnFound) {
113
+ var val = false;
114
+ var v = null;
115
+ var found = false;
116
+
117
+ for (var i = ctx.length - 1; i >= 0; i--) {
118
+ v = ctx[i];
119
+ if (v && typeof v == 'object' && key in v) {
120
+ val = v[key];
121
+ found = true;
122
+ break;
123
+ }
124
+ }
125
+
126
+ if (!found) {
127
+ return (returnFound) ? false : "";
128
+ }
129
+
130
+ if (!returnFound && typeof val == 'function') {
131
+ val = this.lv(val, ctx, partials);
132
+ }
133
+
134
+ return val;
135
+ },
136
+
137
+ // higher order templates
138
+ ho: function(val, cx, partials, text) {
139
+ var t = val.call(cx, text, function(t) {
140
+ return Hogan.compile(t).render(cx);
141
+ });
142
+ var s = Hogan.compile(t.toString()).render(cx, partials);
143
+ this.b = s;
144
+ return false;
145
+ },
146
+
147
+ // higher order template result buffer
148
+ b: '',
149
+
150
+ // lambda replace section
151
+ ls: function(val, ctx, partials, start, end) {
152
+ var cx = ctx[ctx.length - 1];
153
+ if (val.length > 0) {
154
+ return this.ho(val, cx, partials, this.text.substring(start, end));
155
+ }
156
+ var t = val.call(cx);
157
+ if (typeof t == 'function') {
158
+ return this.ho(t, cx, partials, this.text.substring(start, end));
159
+ }
160
+ return t;
161
+ },
162
+
163
+ // lambda replace variable
164
+ lv: function(val, ctx, partials) {
165
+ var cx = ctx[ctx.length - 1];
166
+ return Hogan.compile(val.call(cx).toString()).render(cx, partials);
167
+ }
168
+ };
169
+
170
+ var rAmp = /&/g, rLt = /</g, rGt = />/g, rApos =/\'/g,
171
+ rQuot = /\"/g, hChars =/[&<>\"\']/;
172
+ function hoganEscape(str) {
173
+ var s = String(str === null ? '' : str);
174
+ return hChars.test(s) ? s.replace(rAmp,'&amp;')
175
+ .replace(rLt,'&lt;').replace(rGt,'&gt;')
176
+ .replace(rApos,'&#39;').replace(rQuot, '&quot;') : s;
177
+ }
178
+
179
+ var isArray = Array.isArray || function(a) {
180
+ return Object.prototype.toString.call(a) === '[object Array]';
181
+ }
182
+
183
+ return constructor;
184
+ })();
185
+
186
+ var Hogan = (function () {
187
+
188
+ function scan(text) {
189
+ var len = text.length,
190
+ IN_TEXT = 0,
191
+ IN_TAG_TYPE = 1,
192
+ IN_TAG = 2,
193
+ state = IN_TEXT,
194
+ tagType = null,
195
+ buf = '',
196
+ tokens = [],
197
+ seenTag = false,
198
+ i = 0,
199
+ lineStart = 0,
200
+ otag = '{{',
201
+ ctag = '}}';
202
+
203
+ function addBuf() {
204
+ if (buf.length > 0) {
205
+ tokens.push(new String(buf));
206
+ buf = '';
207
+ }
208
+ }
209
+
210
+ function lineIsWhitespace() {
211
+ var isAllWhitespace = true;
212
+ for (var j = lineStart; j < tokens.length; j++) {
213
+ isAllWhitespace =
214
+ (tokens[j].tag && tagTypes[tokens[j].tag] < tagTypes['_v']) ||
215
+ (!tokens[j].tag && tokens[j].match(rIsWhitespace) == null);
216
+ if (!isAllWhitespace) {
217
+ return false;
218
+ }
219
+ }
220
+
221
+ return isAllWhitespace;
222
+ }
223
+
224
+ function filterLine(haveSeenTag, noNewLine) {
225
+ addBuf();
226
+ if (haveSeenTag && lineIsWhitespace()) {
227
+ for (var j = lineStart; j < tokens.length; j++) {
228
+ if (!tokens[j].tag) {
229
+ tokens.splice(j, 1);
230
+ }
231
+ }
232
+ } else if (!noNewLine) {
233
+ tokens.push({tag:'\n'})
234
+ }
235
+
236
+ seenTag = false;
237
+ lineStart = tokens.length;
238
+ }
239
+
240
+ function changeDelimiters(text, index) {
241
+ var close = '=' + ctag;
242
+ var closeIndex = text.indexOf(close, index);
243
+ var delimiters = trim(text.substring(text.indexOf('=', index) + 1,
244
+ closeIndex)).split(' ');
245
+ otag = delimiters[0];
246
+ ctag = delimiters[1];
247
+ return closeIndex + close.length - 1;
248
+ }
249
+
250
+ for (i = 0; i < len; i++) {
251
+ if (state == IN_TEXT) {
252
+ if (tagChange(otag, text, i)) {
253
+ --i;
254
+ addBuf();
255
+ state = IN_TAG_TYPE;
256
+ } else {
257
+ if (text[i] == '\n') {
258
+ filterLine(seenTag);
259
+ } else {
260
+ buf += text[i];
261
+ }
262
+ }
263
+ } else if (state == IN_TAG_TYPE) {
264
+ i += otag.length - 1;
265
+ var tag = tagTypes[text[i + 1]];
266
+ tagType = tag ? text[i + 1] : '_v';
267
+ seenTag = i;
268
+ if (tagType == '=') {
269
+ i = changeDelimiters(text, i);
270
+ state = IN_TEXT;
271
+ } else {
272
+ if (tag) {
273
+ i++;
274
+ }
275
+ state = IN_TAG;
276
+ }
277
+ } else {
278
+ if (tagChange(ctag, text, i)) {
279
+ i += ctag.length - 1;
280
+ tokens.push({tag: tagType, n: trim(buf),
281
+ i: (tagType == '/') ? seenTag - 1 : i + 1});
282
+ buf = '';
283
+ state = IN_TEXT;
284
+ if (tagType == '{') {
285
+ i++;
286
+ }
287
+ } else {
288
+ buf += text[i];
289
+ }
290
+ }
291
+ }
292
+
293
+ filterLine(seenTag, true);
294
+
295
+ return tokens;
296
+ }
297
+
298
+ function trim(s) {
299
+ if (s.trim) {
300
+ return s.trim();
301
+ }
302
+
303
+ return s.replace(/^\s*|\s*$/g, '');
304
+ }
305
+
306
+ // remove whitespace according to Mustache spec
307
+ var rIsWhitespace = /\S/;
308
+
309
+ var tagTypes = {
310
+ '#': 1, '^': 2, '/': 3, '!': 4, '>': 5,
311
+ '<': 6, '=': 7, '_v': 8, '{': 9, '&': 10
312
+ };
313
+
314
+ function tagChange(tag, text, index) {
315
+ if (text[index] != tag[0]) {
316
+ return false;
317
+ }
318
+
319
+ for (var i = 1, l = tag.length; i < l; i++) {
320
+ if (text[index + i] != tag[i]) {
321
+ return false;
322
+ }
323
+ }
324
+
325
+ return true;
326
+ }
327
+
328
+ function buildTree(tokens, kind, stack, customTags) {
329
+ var instructions = [],
330
+ opener = null,
331
+ token = null;
332
+
333
+ while (tokens.length > 0) {
334
+ token = tokens.shift();
335
+ if (token.tag == '#' || token.tag == '^' ||
336
+ isOpener(token, customTags)) {
337
+ stack.push(token);
338
+ token.nodes = buildTree(tokens, token.tag, stack, customTags);
339
+ instructions.push(token);
340
+ } else if (token.tag == '/') {
341
+ if (stack.length == 0) {
342
+ throw new Error('Closing tag without opener: /' + token.n);
343
+ }
344
+ opener = stack.pop();
345
+ if (token.n != opener.n && !isCloser(token.n, opener.n, customTags)) {
346
+ throw new Error('Nesting error: ' + opener.n + ' vs. ' + token.n);
347
+ }
348
+ opener.end = token.i;
349
+ return instructions;
350
+ } else {
351
+ instructions.push(token);
352
+ }
353
+ }
354
+
355
+ if (stack.length > 0) {
356
+ throw new Error('missing closing tag: ' + stack.pop().n);
357
+ }
358
+
359
+ return instructions;
360
+ }
361
+
362
+ function isOpener(token, tags) {
363
+ for (var i = 0, l = tags.length; i < l; i++) {
364
+ if (tags[i].o == token.n) {
365
+ token.tag = '#';
366
+ return true;
367
+ }
368
+ }
369
+ }
370
+
371
+ function isCloser(close, open, tags) {
372
+ for (var i = 0, l = tags.length; i < l; i++) {
373
+ if (tags[i].c == close && tags[i].o == open) {
374
+ return true;
375
+ }
376
+ }
377
+ }
378
+
379
+ function generate(tree, text, options) {
380
+ var code = 'var c = [cx];var b = "";var _ = this;' +
381
+ walk(tree) + 'return b;';
382
+ if (options.asString) {
383
+ return 'function(cx,p){' + code + ';};';
384
+ }
385
+
386
+ var template = new HoganTemplate(text);
387
+ template.r = new Function('cx', 'p', code);
388
+ return template;
389
+ }
390
+
391
+ var rQuot = /\"/g, rNewline = /\n/g, rCr = /\r/g, rSlash = /\\/g;
392
+ function esc(s) {
393
+ return s.replace(rSlash, '\\\\')
394
+ .replace(rQuot, '\\\"')
395
+ .replace(rNewline, '\\n')
396
+ .replace(rCr, '\\r')
397
+ };
398
+
399
+ function chooseMethod(s) {
400
+ return (~s.indexOf('.')) ? 'd' : 'f';
401
+ }
402
+
403
+ function walk(tree) {
404
+ var code = '';
405
+ for (var i = 0, l = tree.length; i < l; i++) {
406
+ var tag = tree[i].tag;
407
+ if (tag == '#') {
408
+ code += section(tree[i].nodes, tree[i].n, chooseMethod(tree[i].n),
409
+ tree[i].i, tree[i].end);
410
+ } else if (tag == '^') {
411
+ code += invertedSection(tree[i].nodes, tree[i].n,
412
+ chooseMethod(tree[i].n));
413
+ } else if (tag == '<' || tag == '>') {
414
+ code += partial(tree[i].n);
415
+ } else if (tag == '{' || tag == '&') {
416
+ code += tripleStache(tree[i].n, chooseMethod(tree[i].n));
417
+ } else if (tag == '\n') {
418
+ code += text('\n');
419
+ } else if (tag == '_v') {
420
+ code += variable(tree[i].n, chooseMethod(tree[i].n));
421
+ } else if (tag === undefined) {
422
+ code += text(tree[i]);
423
+ }
424
+ }
425
+ return code;
426
+ }
427
+
428
+ function section(nodes, id, method, start, end) {
429
+ var code = 'if(_.s(_.' + method + '("' + esc(id) + '",c,p,1),';
430
+ code += 'c,p,0,' + start + ',' + end + ')){';
431
+ code += 'b += _.rs(c,p,';
432
+ code += 'function(c,p){ var b = "";';
433
+ code += walk(nodes);
434
+ code += 'return b;});c.pop();}';
435
+ code += 'else{b += _.b; _.b = ""};';
436
+ return code;
437
+ }
438
+
439
+ function invertedSection(nodes, id, method) {
440
+ var code = 'if (!_.s(_.' + method + '("' + esc(id) + '",c,p,1),c,p,1,0,0)){';
441
+ code += walk(nodes);
442
+ code += '};';
443
+ return code;
444
+ }
445
+
446
+ function partial(id) {
447
+ return 'b += _.rp("' + esc(id) + '",c[c.length - 1],p);';
448
+ }
449
+
450
+ function tripleStache(id, method) {
451
+ return 'b += (_.' + method + '("' + esc(id) + '",c,p,0));';
452
+ }
453
+
454
+ function variable(id, method) {
455
+ return 'b += (_.v(_.' + method + '("' + esc(id) + '",c,p,0)));';
456
+ }
457
+
458
+ function text(id) {
459
+ return 'b += "' + esc(id) + '";';
460
+ }
461
+
462
+ return ({
463
+ scan: scan,
464
+
465
+ parse: function(tokens, options) {
466
+ options = options || {};
467
+ return buildTree(tokens, '', [], options.sectionTags || []);
468
+ },
469
+
470
+ cache: {},
471
+
472
+ compile: function(text, options) {
473
+ // options
474
+ //
475
+ // asString: false (default)
476
+ //
477
+ // sectionTags: [{o: '_foo', c: 'foo'}]
478
+ // An array of object with o and c fields that indicate names for custom
479
+ // section tags. The example above allows parsing of {{_foo}}{{/foo}}.
480
+ //
481
+ options = options || {};
482
+
483
+ var t = this.cache[text];
484
+ if (t) {
485
+ return t;
486
+ }
487
+ t = generate(this.parse(scan(text), options), text, options);
488
+ return this.cache[text] = t;
489
+ }
490
+ });
491
+ })();
492
+
493
+ // Export the hogan constructor for Node.js and CommonJS.
494
+ if (typeof module !== 'undefined' && module.exports) {
495
+ module.exports = Hogan;
496
+ module.exports.Template = HoganTemplate;
497
+ } else if (typeof exports !== 'undefined') {
498
+ exports.Hogan = Hogan;
499
+ exports.HoganTemplate = HoganTemplate;
500
+ }