columbus3 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (344) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/README.md +122 -0
  4. data/bin/console +0 -0
  5. data/bin/setup +0 -0
  6. data/bower.json +25 -0
  7. data/bower_components/jquery/.bower.json +7 -20
  8. data/bower_components/jquery/AUTHORS.txt +301 -0
  9. data/bower_components/jquery/{MIT-LICENSE.txt → LICENSE.txt} +17 -2
  10. data/bower_components/jquery/README.md +67 -0
  11. data/bower_components/jquery/bower.json +2 -16
  12. data/bower_components/jquery/dist/core.js +476 -0
  13. data/bower_components/jquery/dist/jquery.js +3861 -2818
  14. data/bower_components/jquery/dist/jquery.min.js +4 -5
  15. data/bower_components/jquery/dist/jquery.min.map +1 -1
  16. data/bower_components/jquery/dist/jquery.slim.js +8160 -0
  17. data/bower_components/jquery/dist/jquery.slim.min.js +4 -0
  18. data/bower_components/jquery/dist/jquery.slim.min.map +1 -0
  19. data/bower_components/jquery/external/sizzle/LICENSE.txt +36 -0
  20. data/bower_components/jquery/{src → external}/sizzle/dist/sizzle.js +445 -240
  21. data/bower_components/jquery/external/sizzle/dist/sizzle.min.js +3 -0
  22. data/bower_components/jquery/external/sizzle/dist/sizzle.min.map +1 -0
  23. data/bower_components/jquery/src/.eslintrc.json +5 -0
  24. data/bower_components/jquery/src/ajax.js +174 -105
  25. data/bower_components/jquery/src/ajax/jsonp.js +27 -14
  26. data/bower_components/jquery/src/ajax/load.js +24 -23
  27. data/bower_components/jquery/src/ajax/parseXML.js +8 -6
  28. data/bower_components/jquery/src/ajax/script.js +25 -12
  29. data/bower_components/jquery/src/ajax/var/location.js +5 -0
  30. data/bower_components/jquery/src/ajax/var/nonce.js +4 -2
  31. data/bower_components/jquery/src/ajax/var/rquery.js +5 -3
  32. data/bower_components/jquery/src/ajax/xhr.js +76 -43
  33. data/bower_components/jquery/src/attributes.js +4 -2
  34. data/bower_components/jquery/src/attributes/attr.js +60 -60
  35. data/bower_components/jquery/src/attributes/classes.js +87 -71
  36. data/bower_components/jquery/src/attributes/prop.js +81 -32
  37. data/bower_components/jquery/src/attributes/support.js +11 -13
  38. data/bower_components/jquery/src/attributes/val.js +66 -37
  39. data/bower_components/jquery/src/callbacks.js +119 -90
  40. data/bower_components/jquery/src/core.js +108 -134
  41. data/bower_components/jquery/src/core/DOMEval.js +16 -0
  42. data/bower_components/jquery/src/core/access.js +21 -11
  43. data/bower_components/jquery/src/core/init.js +33 -28
  44. data/bower_components/jquery/src/core/nodeName.js +13 -0
  45. data/bower_components/jquery/src/core/parseHTML.js +39 -13
  46. data/bower_components/jquery/src/core/ready-no-deferred.js +96 -0
  47. data/bower_components/jquery/src/core/ready.js +40 -51
  48. data/bower_components/jquery/src/core/readyException.js +13 -0
  49. data/bower_components/jquery/src/core/stripAndCollapse.js +14 -0
  50. data/bower_components/jquery/src/core/support.js +20 -0
  51. data/bower_components/jquery/src/core/var/rsingleTag.js +5 -3
  52. data/bower_components/jquery/src/css.js +146 -158
  53. data/bower_components/jquery/src/css/addGetHookIf.js +7 -3
  54. data/bower_components/jquery/src/css/adjustCSS.js +71 -0
  55. data/bower_components/jquery/src/css/curCSS.js +22 -14
  56. data/bower_components/jquery/src/css/hiddenVisibleSelectors.js +8 -8
  57. data/bower_components/jquery/src/css/showHide.js +105 -0
  58. data/bower_components/jquery/src/css/support.js +69 -76
  59. data/bower_components/jquery/src/css/var/cssExpand.js +4 -2
  60. data/bower_components/jquery/src/css/var/getStyles.js +11 -6
  61. data/bower_components/jquery/src/css/var/isHiddenWithinTree.js +34 -0
  62. data/bower_components/jquery/src/css/var/rmargin.js +5 -3
  63. data/bower_components/jquery/src/css/var/rnumnonpx.js +4 -2
  64. data/bower_components/jquery/src/css/{swap.js → var/swap.js} +5 -7
  65. data/bower_components/jquery/src/data.js +67 -66
  66. data/bower_components/jquery/src/data/Data.js +87 -107
  67. data/bower_components/jquery/src/data/{accepts.js → var/acceptData.js} +6 -7
  68. data/bower_components/jquery/src/data/var/{data_priv.js → dataPriv.js} +4 -2
  69. data/bower_components/jquery/src/data/var/{data_user.js → dataUser.js} +4 -2
  70. data/bower_components/jquery/src/deferred.js +314 -72
  71. data/bower_components/jquery/src/deferred/exceptionHook.js +21 -0
  72. data/bower_components/jquery/src/deprecated.js +36 -9
  73. data/bower_components/jquery/src/dimensions.js +16 -10
  74. data/bower_components/jquery/src/effects.js +257 -206
  75. data/bower_components/jquery/src/effects/Tween.js +18 -9
  76. data/bower_components/jquery/src/effects/animatedSelector.js +7 -5
  77. data/bower_components/jquery/src/event.js +297 -419
  78. data/bower_components/jquery/src/event/ajax.js +13 -4
  79. data/bower_components/jquery/src/event/alias.js +13 -23
  80. data/bower_components/jquery/src/event/focusin.js +55 -0
  81. data/bower_components/jquery/src/event/support.js +5 -3
  82. data/bower_components/jquery/src/event/trigger.js +185 -0
  83. data/bower_components/jquery/src/exports/amd.js +5 -3
  84. data/bower_components/jquery/src/exports/global.js +8 -6
  85. data/bower_components/jquery/src/jquery.js +6 -2
  86. data/bower_components/jquery/src/manipulation.js +218 -310
  87. data/bower_components/jquery/src/manipulation/_evalUrl.js +9 -4
  88. data/bower_components/jquery/src/manipulation/buildFragment.js +104 -0
  89. data/bower_components/jquery/src/manipulation/getAll.js +32 -0
  90. data/bower_components/jquery/src/manipulation/setGlobalEval.js +22 -0
  91. data/bower_components/jquery/src/manipulation/support.js +11 -8
  92. data/bower_components/jquery/src/manipulation/var/rcheckableType.js +5 -3
  93. data/bower_components/jquery/src/manipulation/var/rscriptType.js +5 -0
  94. data/bower_components/jquery/src/manipulation/var/rtagName.js +5 -0
  95. data/bower_components/jquery/src/manipulation/wrapMap.js +29 -0
  96. data/bower_components/jquery/src/offset.js +75 -53
  97. data/bower_components/jquery/src/queue.js +26 -23
  98. data/bower_components/jquery/src/queue/delay.js +8 -6
  99. data/bower_components/jquery/src/selector-native.js +133 -68
  100. data/bower_components/jquery/src/selector-sizzle.js +10 -5
  101. data/bower_components/jquery/src/selector.js +3 -1
  102. data/bower_components/jquery/src/serialize.js +52 -33
  103. data/bower_components/jquery/src/traversing.js +61 -69
  104. data/bower_components/jquery/src/traversing/findFilter.js +37 -31
  105. data/bower_components/jquery/src/traversing/var/dir.js +22 -0
  106. data/bower_components/jquery/src/traversing/var/rneedsContext.js +4 -2
  107. data/bower_components/jquery/src/traversing/var/siblings.js +17 -0
  108. data/bower_components/jquery/src/var/ObjectFunctionString.js +7 -0
  109. data/bower_components/jquery/src/var/arr.js +4 -2
  110. data/bower_components/jquery/src/var/class2type.js +4 -2
  111. data/bower_components/jquery/src/var/concat.js +4 -2
  112. data/bower_components/jquery/src/var/document.js +5 -0
  113. data/bower_components/jquery/src/var/documentElement.js +7 -0
  114. data/bower_components/jquery/src/var/fnToString.js +7 -0
  115. data/bower_components/jquery/src/var/getProto.js +5 -0
  116. data/bower_components/jquery/src/var/hasOwn.js +4 -2
  117. data/bower_components/jquery/src/var/indexOf.js +4 -2
  118. data/bower_components/jquery/src/var/pnum.js +5 -3
  119. data/bower_components/jquery/src/var/push.js +4 -2
  120. data/bower_components/jquery/src/var/rcssNum.js +9 -0
  121. data/bower_components/jquery/src/var/rnothtmlwhite.js +8 -0
  122. data/bower_components/jquery/src/var/slice.js +4 -2
  123. data/bower_components/jquery/src/var/support.js +4 -2
  124. data/bower_components/jquery/src/var/toString.js +4 -2
  125. data/bower_components/jquery/src/wrap.js +24 -26
  126. data/bower_components/leaflet-providers/.bower.json +6 -7
  127. data/bower_components/leaflet-providers/CHANGELOG.md +62 -0
  128. data/bower_components/leaflet-providers/README.md +12 -3
  129. data/bower_components/leaflet-providers/bower.json +1 -1
  130. data/bower_components/leaflet-providers/leaflet-providers.js +133 -92
  131. data/bower_components/leaflet-providers/package.json +14 -7
  132. data/bower_components/leaflet/.bower.json +10 -14
  133. data/bower_components/leaflet/CHANGELOG.md +648 -3
  134. data/bower_components/leaflet/CONTRIBUTING.md +88 -33
  135. data/bower_components/leaflet/ISSUE_TEMPLATE.md +25 -0
  136. data/bower_components/leaflet/Jakefile.js +73 -14
  137. data/bower_components/leaflet/LICENSE +1 -1
  138. data/bower_components/leaflet/PLUGIN-GUIDE.md +97 -3
  139. data/bower_components/leaflet/README.md +6 -8
  140. data/bower_components/leaflet/bower.json +3 -9
  141. data/bower_components/leaflet/dist/images/layers-2x.png +0 -0
  142. data/bower_components/leaflet/dist/images/layers.png +0 -0
  143. data/bower_components/leaflet/dist/images/marker-icon-2x.png +0 -0
  144. data/bower_components/leaflet/dist/images/marker-icon.png +0 -0
  145. data/bower_components/leaflet/dist/images/marker-shadow.png +0 -0
  146. data/bower_components/leaflet/dist/leaflet-src.js +12301 -7898
  147. data/bower_components/leaflet/dist/leaflet-src.js.map +1 -0
  148. data/bower_components/leaflet/dist/leaflet.css +196 -43
  149. data/bower_components/leaflet/dist/leaflet.js +6 -9
  150. data/bower_components/leaflet/dist/leaflet.js.map +1 -0
  151. data/bower_components/leaflet/docs/CNAME +1 -0
  152. data/bower_components/leaflet/docs/Gemfile +4 -0
  153. data/bower_components/leaflet/docs/_config.yml +19 -0
  154. data/bower_components/leaflet/docs/_includes/frame.html +9 -0
  155. data/bower_components/leaflet/docs/_includes/tutorial_link.html +8 -0
  156. data/bower_components/leaflet/docs/_layouts/post.html +30 -0
  157. data/bower_components/leaflet/docs/_layouts/redirected.html +14 -0
  158. data/bower_components/leaflet/docs/_layouts/tutorial.html +9 -0
  159. data/bower_components/leaflet/docs/_layouts/tutorial_frame.html +32 -0
  160. data/bower_components/leaflet/docs/_layouts/tutorial_v2.html +9 -0
  161. data/bower_components/leaflet/docs/_layouts/v2.html +159 -0
  162. data/bower_components/leaflet/docs/_posts/2012-07-30-leaflet-0-4-released.md +240 -0
  163. data/bower_components/leaflet/docs/_posts/2012-08-07-leaflet-0-4-3-and-a-new-tutorial.md +47 -0
  164. data/bower_components/leaflet/docs/_posts/2012-08-20-guest-post-markerclusterer-0-1-released.md +112 -0
  165. data/bower_components/leaflet/docs/_posts/2012-10-25-leaflet-0-4-5-bugfix-release-and-plans-for-0.5.md +36 -0
  166. data/bower_components/leaflet/docs/_posts/2013-01-17-leaflet-0-5-released.md +24 -0
  167. data/bower_components/leaflet/docs/_posts/2013-02-20-guest-post-draw.md +146 -0
  168. data/bower_components/leaflet/docs/_posts/2013-06-26-leaflet-0-6-released-dc-code-sprint-mapbox.md +31 -0
  169. data/bower_components/leaflet/docs/_posts/2013-06-28-leaflet-plugin-authoring-guide.md +111 -0
  170. data/bower_components/leaflet/docs/_posts/2013-11-18-leaflet-0-7-released-plans-for-future.md +56 -0
  171. data/bower_components/leaflet/docs/_posts/2015-07-01-leaflet-is-alive-and-kicking.md +21 -0
  172. data/bower_components/leaflet/docs/_posts/2015-07-15-leaflet-1.0-beta1-released.md +60 -0
  173. data/bower_components/leaflet/docs/_posts/2015-09-01-leaflet-0.7.4-released.md +29 -0
  174. data/bower_components/leaflet/docs/_posts/2015-10-14-leaflet-1.0-beta2-released.md +35 -0
  175. data/bower_components/leaflet/docs/_posts/2016-03-20-debugging-touch-interactions.md +101 -0
  176. data/bower_components/leaflet/docs/_posts/2016-04-18-leaflet-1.0-rc1.md +78 -0
  177. data/bower_components/leaflet/docs/_posts/2016-07-16-leaflet-1.0-rc2.md +60 -0
  178. data/bower_components/leaflet/docs/_posts/2016-08-05-leaflet-1.0-rc3.md +53 -0
  179. data/bower_components/leaflet/docs/_posts/2016-09-27-leaflet-1.0-final.md +50 -0
  180. data/bower_components/leaflet/docs/_posts/2016-11-21-leaflet-1.0.2.md +25 -0
  181. data/bower_components/leaflet/docs/_posts/2017-01-23-leaflet-1.0.3.md +27 -0
  182. data/bower_components/leaflet/docs/atom.xml +29 -0
  183. data/bower_components/leaflet/docs/blog.md +24 -0
  184. data/bower_components/leaflet/docs/docs/css/main.css +1092 -0
  185. data/bower_components/leaflet/docs/docs/css/normalize.css +426 -0
  186. data/bower_components/leaflet/docs/docs/highlight/LICENSE +24 -0
  187. data/bower_components/leaflet/docs/docs/highlight/highlight.pack.js +1 -0
  188. data/bower_components/leaflet/docs/docs/highlight/styles/github-gist.css +211 -0
  189. data/bower_components/leaflet/docs/docs/images/2016-03-20-prosthetic-hand-zooming.gif +0 -0
  190. data/bower_components/leaflet/docs/docs/images/2016-04-18-inheritances.gif +0 -0
  191. data/bower_components/leaflet/docs/docs/images/2016-04-18-leaflet-toilet-paper.jpeg +0 -0
  192. data/bower_components/leaflet/docs/docs/images/2016-04-18-madrid-leaflet-864px.jpg +0 -0
  193. data/bower_components/leaflet/docs/docs/images/2016-07-18-remote-session.png +0 -0
  194. data/bower_components/leaflet/docs/docs/images/2016-07-18-tooltip.png +0 -0
  195. data/bower_components/leaflet/docs/docs/images/2016-08-03-iraq-hacking.jpg +0 -0
  196. data/bower_components/leaflet/docs/docs/images/favicon.ico +0 -0
  197. data/bower_components/leaflet/docs/docs/images/forum-round.png +0 -0
  198. data/bower_components/leaflet/docs/docs/images/github-round.png +0 -0
  199. data/bower_components/leaflet/docs/docs/images/logo.png +0 -0
  200. data/bower_components/leaflet/docs/docs/images/logos.png +0 -0
  201. data/bower_components/leaflet/docs/docs/images/sprite.png +0 -0
  202. data/bower_components/leaflet/docs/docs/images/sprite.svg +75 -0
  203. data/bower_components/leaflet/docs/docs/images/twitter-round.png +0 -0
  204. data/bower_components/leaflet/docs/docs/images/twitter.png +0 -0
  205. data/bower_components/leaflet/docs/docs/js/docs.js +52 -0
  206. data/bower_components/leaflet/docs/download.md +95 -0
  207. data/bower_components/leaflet/docs/examples.md +125 -0
  208. data/bower_components/leaflet/docs/examples/choropleth-example.md +5 -0
  209. data/bower_components/leaflet/docs/examples/choropleth.md +5 -0
  210. data/bower_components/leaflet/docs/examples/choropleth/example-basic.md +20 -0
  211. data/bower_components/leaflet/docs/examples/choropleth/example-color.md +46 -0
  212. data/bower_components/leaflet/docs/examples/choropleth/example.md +159 -0
  213. data/bower_components/leaflet/docs/examples/choropleth/index.md +232 -0
  214. data/bower_components/leaflet/docs/examples/choropleth/thumbnail.png +0 -0
  215. data/bower_components/leaflet/docs/examples/choropleth/us-states.js +54 -0
  216. data/bower_components/leaflet/docs/examples/crs-simple/crs-simple-example1.md +16 -0
  217. data/bower_components/leaflet/docs/examples/crs-simple/crs-simple-example2.md +20 -0
  218. data/bower_components/leaflet/docs/examples/crs-simple/crs-simple-example3.md +38 -0
  219. data/bower_components/leaflet/docs/examples/crs-simple/crs-simple.md +117 -0
  220. data/bower_components/leaflet/docs/examples/crs-simple/thumbnail.png +0 -0
  221. data/bower_components/leaflet/docs/examples/crs-simple/uqm_map_400px.png +0 -0
  222. data/bower_components/leaflet/docs/examples/crs-simple/uqm_map_detail.png +0 -0
  223. data/bower_components/leaflet/docs/examples/crs-simple/uqm_map_full.png +0 -0
  224. data/bower_components/leaflet/docs/examples/custom-icons-example.md +5 -0
  225. data/bower_components/leaflet/docs/examples/custom-icons.md +5 -0
  226. data/bower_components/leaflet/docs/examples/custom-icons/example-one-icon.md +27 -0
  227. data/bower_components/leaflet/docs/examples/custom-icons/example.md +31 -0
  228. data/bower_components/leaflet/docs/examples/custom-icons/index.md +79 -0
  229. data/bower_components/leaflet/docs/examples/custom-icons/leaf-green.png +0 -0
  230. data/bower_components/leaflet/docs/examples/custom-icons/leaf-orange.png +0 -0
  231. data/bower_components/leaflet/docs/examples/custom-icons/leaf-red.png +0 -0
  232. data/bower_components/leaflet/docs/examples/custom-icons/leaf-shadow.png +0 -0
  233. data/bower_components/leaflet/docs/examples/custom-icons/thumbnail.png +0 -0
  234. data/bower_components/leaflet/docs/examples/extending/canvascircles.md +37 -0
  235. data/bower_components/leaflet/docs/examples/extending/class-diagram.md +24 -0
  236. data/bower_components/leaflet/docs/examples/extending/class-diagram.png +0 -0
  237. data/bower_components/leaflet/docs/examples/extending/class-diagram.txt +100 -0
  238. data/bower_components/leaflet/docs/examples/extending/extending-1-classes.md +196 -0
  239. data/bower_components/leaflet/docs/examples/extending/extending-2-layers.md +210 -0
  240. data/bower_components/leaflet/docs/examples/extending/extending-3-controls.md +100 -0
  241. data/bower_components/leaflet/docs/examples/extending/gridcoords.md +32 -0
  242. data/bower_components/leaflet/docs/examples/extending/kittenlayer.md +29 -0
  243. data/bower_components/leaflet/docs/examples/extending/pixelorigin.md +90 -0
  244. data/bower_components/leaflet/docs/examples/extending/thumbnail-1.png +0 -0
  245. data/bower_components/leaflet/docs/examples/extending/thumbnail-2.png +0 -0
  246. data/bower_components/leaflet/docs/examples/extending/thumbnail-3.png +0 -0
  247. data/bower_components/leaflet/docs/examples/extending/tilt.md +59 -0
  248. data/bower_components/leaflet/docs/examples/extending/watermark.md +36 -0
  249. data/bower_components/leaflet/docs/examples/geojson-example.md +5 -0
  250. data/bower_components/leaflet/docs/examples/geojson.md +5 -0
  251. data/bower_components/leaflet/docs/examples/geojson/baseball-marker.png +0 -0
  252. data/bower_components/leaflet/docs/examples/geojson/example.md +78 -0
  253. data/bower_components/leaflet/docs/examples/geojson/geojson-example.html +89 -0
  254. data/bower_components/leaflet/docs/examples/geojson/geojson.html +281 -0
  255. data/bower_components/leaflet/docs/examples/geojson/index.md +205 -0
  256. data/bower_components/leaflet/docs/examples/geojson/sample-geojson.js +248 -0
  257. data/bower_components/leaflet/docs/examples/geojson/thumbnail.png +0 -0
  258. data/bower_components/leaflet/docs/examples/layers-control-example.md +5 -0
  259. data/bower_components/leaflet/docs/examples/layers-control.md +5 -0
  260. data/bower_components/leaflet/docs/examples/layers-control/example.md +38 -0
  261. data/bower_components/leaflet/docs/examples/layers-control/index.md +72 -0
  262. data/bower_components/leaflet/docs/examples/layers-control/thumbnail.png +0 -0
  263. data/bower_components/leaflet/docs/examples/map-panes-example.md +5 -0
  264. data/bower_components/leaflet/docs/examples/map-panes.md +5 -0
  265. data/bower_components/leaflet/docs/examples/map-panes/eu-countries.js +79 -0
  266. data/bower_components/leaflet/docs/examples/map-panes/example.md +38 -0
  267. data/bower_components/leaflet/docs/examples/map-panes/index.md +105 -0
  268. data/bower_components/leaflet/docs/examples/map-panes/thumbnail.png +0 -0
  269. data/bower_components/leaflet/docs/examples/mobile-example.md +5 -0
  270. data/bower_components/leaflet/docs/examples/mobile.md +5 -0
  271. data/bower_components/leaflet/docs/examples/mobile/example.md +42 -0
  272. data/bower_components/leaflet/docs/examples/mobile/index.md +72 -0
  273. data/bower_components/leaflet/docs/examples/mobile/thumbnail.png +0 -0
  274. data/bower_components/leaflet/docs/examples/quick-start-example.md +5 -0
  275. data/bower_components/leaflet/docs/examples/quick-start.md +5 -0
  276. data/bower_components/leaflet/docs/examples/quick-start/example-basic.md +19 -0
  277. data/bower_components/leaflet/docs/examples/quick-start/example-overlays.md +35 -0
  278. data/bower_components/leaflet/docs/examples/quick-start/example-popups.md +37 -0
  279. data/bower_components/leaflet/docs/examples/quick-start/example.md +46 -0
  280. data/bower_components/leaflet/docs/examples/quick-start/index.md +143 -0
  281. data/bower_components/leaflet/docs/examples/quick-start/thumbnail.png +0 -0
  282. data/bower_components/leaflet/docs/examples/video-overlay/example-bounds.md +23 -0
  283. data/bower_components/leaflet/docs/examples/video-overlay/example-nocontrols.md +31 -0
  284. data/bower_components/leaflet/docs/examples/video-overlay/example.md +58 -0
  285. data/bower_components/leaflet/docs/examples/video-overlay/index.md +122 -0
  286. data/bower_components/leaflet/docs/examples/video-overlay/thumbnail.gif +0 -0
  287. data/bower_components/leaflet/docs/examples/wms/qgis-wms-layers.png +0 -0
  288. data/bower_components/leaflet/docs/examples/wms/thumbnail.png +0 -0
  289. data/bower_components/leaflet/docs/examples/wms/wms-example-crs.md +18 -0
  290. data/bower_components/leaflet/docs/examples/wms/wms-example1.md +16 -0
  291. data/bower_components/leaflet/docs/examples/wms/wms-example2.md +16 -0
  292. data/bower_components/leaflet/docs/examples/wms/wms-example3.md +34 -0
  293. data/bower_components/leaflet/docs/examples/wms/wms-example4.md +29 -0
  294. data/bower_components/leaflet/docs/examples/wms/wms.md +157 -0
  295. data/bower_components/leaflet/docs/examples/zoom-levels/example-delta.md +40 -0
  296. data/bower_components/leaflet/docs/examples/zoom-levels/example-fractional.md +56 -0
  297. data/bower_components/leaflet/docs/examples/zoom-levels/example-scale.md +29 -0
  298. data/bower_components/leaflet/docs/examples/zoom-levels/example-setzoom.md +44 -0
  299. data/bower_components/leaflet/docs/examples/zoom-levels/example-zero.md +19 -0
  300. data/bower_components/leaflet/docs/examples/zoom-levels/index.md +275 -0
  301. data/bower_components/leaflet/docs/examples/zoom-levels/thumbnail.png +0 -0
  302. data/bower_components/leaflet/docs/index.html +218 -0
  303. data/bower_components/leaflet/docs/plugins.md +3854 -0
  304. data/bower_components/leaflet/docs/reference-0.7.7.html +6424 -0
  305. data/bower_components/leaflet/docs/reference-1.0.0.html +22889 -0
  306. data/bower_components/leaflet/docs/reference-1.0.2.html +23382 -0
  307. data/bower_components/leaflet/docs/reference-1.0.3.html +23495 -0
  308. data/bower_components/leaflet/docs/reference-tpl.html +89 -0
  309. data/bower_components/leaflet/docs/reference-versions.html +16 -0
  310. data/bower_components/leaflet/docs/reference.html +3 -0
  311. data/bower_components/leaflet/package.json +77 -16
  312. data/columbus3.gemspec +1 -1
  313. data/doc/ChangeLog.org +10 -0
  314. data/doc/manual.txt +122 -0
  315. data/doc/todo.org +63 -0
  316. data/exe/columbus3 +2 -246
  317. data/lib/columbus3.rb +12 -7
  318. data/lib/columbus3/cli/command_semantics.rb +352 -0
  319. data/lib/columbus3/cli/command_syntax.rb +103 -0
  320. data/lib/columbus3/metadata/query_parser.racc +21 -7
  321. data/lib/columbus3/metadata/query_parser.tab.rb +34 -34
  322. data/lib/columbus3/metadata/sidecar.rb +1 -1
  323. data/lib/columbus3/renderer/flot_renderer.rb +3 -8
  324. data/lib/columbus3/renderer/leaflet_renderer.rb +18 -29
  325. data/lib/columbus3/renderer/sanitizer.rb +8 -0
  326. data/lib/columbus3/v900track/gpx2v900.rb +31 -0
  327. data/lib/columbus3/v900track/v900track.rb +34 -8
  328. data/lib/columbus3/v900track/v900waypoint.rb +9 -0
  329. data/lib/columbus3/version.rb +1 -1
  330. data/lib/html/flot.html.erb +6 -6
  331. data/lib/html/show.html.erb +53 -76
  332. data/lib/html/track.js.erb +58 -12
  333. metadata +222 -23
  334. data/README.textile +0 -67
  335. data/bower_components/jquery/src/ajax/parseJSON.js +0 -13
  336. data/bower_components/jquery/src/css/defaultDisplay.js +0 -70
  337. data/bower_components/jquery/src/css/var/isHidden.js +0 -13
  338. data/bower_components/jquery/src/intro.js +0 -44
  339. data/bower_components/jquery/src/outro.js +0 -1
  340. data/bower_components/jquery/src/sizzle/dist/sizzle.min.js +0 -3
  341. data/bower_components/jquery/src/sizzle/dist/sizzle.min.map +0 -1
  342. data/bower_components/jquery/src/var/rnotwhite.js +0 -3
  343. data/bower_components/jquery/src/var/strundefined.js +0 -3
  344. data/bower_components/leaflet/component.json +0 -20
@@ -0,0 +1,53 @@
1
+ ---
2
+ layout: post
3
+ title: Announcing Leaflet 1.0-rc3
4
+ description: Leaflet 1.0 Release Candidate 3 is out
5
+ author: Yohan Boniface
6
+ authorsite: http://yohanboniface.me
7
+ ---
8
+
9
+ A regression in the way event listeners were called pushed the Leaflet team to freeze a new release candidate, so here is the third one.
10
+
11
+
12
+ ### Bug fixing, bug fixing, bug fixing!
13
+
14
+ The previous release candidate landed an event refactoring and the new `L.Tooltip` class, and, how bizarre,
15
+ almost all the fixes in this release are related to those two changes!
16
+
17
+ The main regression affected the way Leaflet was calling the event listeners: the order we were calling the listeners was not the same they have been registered.
18
+
19
+ Before the rc2, Leaflet was handling differently listeners with and without explicit context. The former were always called before the later, no matter the order they were registered, but their order was unpredictable. In the meantime, listeners without explicit context, while always called after the other ones, were called in registration order.
20
+
21
+ While in the task of refactoring events for rc2, in order to make them faster, we also factorized those pieces of code. But we did it the wrong way!
22
+
23
+ This third release is then about making all the listeners behave in a predictable way. While this is a clear improvement, it may have side effects in corner cases. So be warry when upgrading!
24
+
25
+ Nothing more to highlight about this quick fixup release, check the [1.0.0-rc3 changelog](https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md#10-rc3-august-3-2016) for the full list of changes.
26
+
27
+ ### Summer hacking
28
+
29
+ Releasing during summer, while all the team is having a break, has some funny side effects. This release was mainly done while traveling, by train and airplane.
30
+ And partly in some small village in Iraq under 53° Celsius!
31
+
32
+ ![Iraq hacking](/docs/images/2016-08-03-iraq-hacking.jpg)
33
+
34
+ ### Get the release candidate
35
+
36
+ As with previous releases, you can use the CDN:
37
+
38
+
39
+ <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.0-rc.3/dist/leaflet.css" />
40
+ <script src="https://unpkg.com/leaflet@1.0.0-rc.3/dist/leaflet.js"></script>
41
+
42
+ A non-minified version of the javascript file is also available at:
43
+
44
+ <script src="https://unpkg.com/leaflet@1.0.0-rc.3/dist/leaflet-src.js"></script>
45
+
46
+ The release is also available through NPM (`npm install leaflet@rc`), [GitHub download](https://github.com/Leaflet/Leaflet/archive/v1.0.0-rc.3.zip), and [CDN download](http://cdn.leafletjs.com/leaflet/v1.0.0-rc.3/leaflet.zip). We discourage using Bower.
47
+
48
+ Use it, enjoy it, and please report any [issue](https://github.com/Leaflet/Leaflet/issues) to help preparing the final Leaflet 1.0 release!
49
+
50
+
51
+ Best,
52
+
53
+ The "Leafteam"
@@ -0,0 +1,50 @@
1
+ ---
2
+ layout: post
3
+ title: Meet Leaflet 1.0.
4
+ description: Today marks the final release of Leaflet 1.0. It's a culmination of several years of work and the fastest, most stable and polished Leaflet release ever.
5
+ author: Vladimir Agafonkin
6
+ authorsite: http://agafonkin.com/en
7
+ ---
8
+
9
+ <img alt="This is totally not making fun of the announcements by a company with a fruit logo." src="https://cloud.githubusercontent.com/assets/25395/18873565/c4856f70-84c8-11e6-82b1-48992fc5afe8.png" width="800" />
10
+
11
+ Today marks the final release of Leaflet 1.0. It's a culmination of several years of work by dozens of contributors from all over the world. This is the fastest, most stable and polished Leaflet release ever.
12
+
13
+ [The changelog](https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md) contains _over 400 changes_ compared to the previous stable, v0.7.7. The highlights include:
14
+
15
+ - Huge performance improvements in all aspects of the library and vector layers in particular.
16
+ - New `L.Tooltip` class for all your dynamic labeling needs.
17
+ - Flyover animations (zooming and panning in a curve with `map.flyTo`).
18
+ - Fractional zoom level support (`map.setZoom(12.34)`).
19
+ - Much better tile loading algorithm with less flickering.
20
+ - Custom pane management (including multiple vector layer panes and interleaving vectors and tile layers).
21
+ - Better support for non-standard projections.
22
+ - More accessibility features.
23
+ - Vastly improved documentation.
24
+ - _Tons_ of bugfixes and stability improvements.
25
+
26
+ This release wouldn't be possible without such an amazing, diverse, loving community. We're incredibly proud to be a part of it. Thank you very much for your kind support!
27
+
28
+ ### New release cycle
29
+
30
+ This release is a way overdue and has taken too long. In part this can be attributed to our initial ambition for 1.0 that required rewriting many parts of the library almost from scratch, in part due to perfectionism (some of the beta/rc releases were already more stable than our last stable release), and in part because we underestimated the cost of introducing big breaking changes in a library used by thousands of developers.
31
+
32
+ Starting with 1.0, we're switching to a fast release cycle, where a new version will come out every 2–4 weeks. We'll also prefer many small, incremental changes (with releases in between) over ambitious rewriting quests.
33
+
34
+ ### What's next?
35
+
36
+ In addition to supporting the new release with fixes and improvements, the following areas will now get our close attention:
37
+
38
+ - A cleaner, more stable plugin ecosystem. We want to make sure that all popular plugins work well with the latest release and are maintained. We'll revise our plugin list page, tighten our review process, take more key plugins under the wing of the Leaflet organization on GitHub and spend more time working on them.
39
+ - Tutorials and examples to cover more advanced features of the library, its popular plugins, and integrations with libraries like D3 and React/Angular.
40
+ - Explore switching to a more modern JavaScript flavor and module system (ES6, Babel, Rollup).
41
+ - Map rotation support.
42
+
43
+ Please help us test this new release, make sure it works with your favorite plugins, get involved in discussions on GitHub, and don't forget we're always looking for [new contributors](https://github.com/Leaflet/Leaflet/blob/master/CONTRIBUTING.md)!
44
+
45
+ And of course, let's celebrate!
46
+
47
+ Love,<br>
48
+ The Leaflet team.
49
+
50
+ ![](http://www.reactiongifs.com/wp-content/uploads/2013/06/umad.gif)
@@ -0,0 +1,25 @@
1
+ ---
2
+ layout: post
3
+ title: Announcing Leaflet 1.0.2
4
+ description: Leaflet 1.0.2, a bugfix release, is out
5
+ author: Iván Sánchez Ortega
6
+ authorsite: http://ivan.sanchezortega.es
7
+ ---
8
+
9
+ As part of our "we really promised a faster release cycle" vision, we are publishing Leaflet 1.0.2.
10
+
11
+ Compared to 1.0.1, this release fixes about a dozen bugs, and a couple new options. The full list of changes can be found on [the changelog](https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md).
12
+
13
+ As usual, check the [downloads page](http://leafletjs.com/download.html) to get this release.
14
+
15
+ ### Next plans?
16
+
17
+ Now, Leaflet uses a set of scripts to put a lot of files together. While this has been reliable for years, we want to embrace some of the features of contemporary JavaScript.
18
+
19
+ We have been working on reorganizing the codebase to implement ES6 modules. This means a cleaner, easier to understand build system, and slightly smaller file sizes thanks to [RollupJS](http://rollupjs.org/).
20
+
21
+ We aim for a 1.1.0 release with the new rollup builds. Even though it's not a very exciting development, this will pave the way for experimenting with new ways of having Leaflet plugins.
22
+
23
+
24
+ Cheers,<br>
25
+ The Leaflet team.
@@ -0,0 +1,27 @@
1
+ ---
2
+ layout: post
3
+ title: Announcing Leaflet 1.0.3
4
+ description: Leaflet 1.0.3, a bugfix release, is out
5
+ author: Iván Sánchez Ortega
6
+ authorsite: http://ivan.sanchezortega.es
7
+ ---
8
+
9
+ Leaflet 1.0.3 is now out, with about a dozen bugfixes since 1.0.2.
10
+
11
+ One of the main highlights is the handling of `dblblick` events for web browsers
12
+ which support [`PointerEvent`s](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent).
13
+ Until now, the only browser which used `PointerEvent`s were Internet Explorer and Edge;
14
+ but now that Chrome has [enabled support in version 55](https://developers.google.com/web/updates/2016/11/nic55#pointer-events),
15
+ the Leaflet code for checking for double clicks and touchscreens had to change.
16
+
17
+ Leaflet 1.0.3 also improved the performance and behaviour of `L.Canvas` rendering,
18
+ backported a few fixes for Internet Explorer 8, and some miscellaneous fixes.
19
+
20
+ The full list of changes can be found on [the changelog](https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md).
21
+
22
+
23
+ As usual, check the [downloads page](http://leafletjs.com/download.html) to get this release.
24
+
25
+
26
+ Cheers,<br>
27
+ The Leaflet team.
@@ -0,0 +1,29 @@
1
+ ---
2
+ title: Leaflet Developer Blog Atom Feed
3
+ ---
4
+ <?xml version="1.0" encoding="utf-8"?>
5
+ <feed xmlns="http://www.w3.org/2005/Atom">
6
+
7
+ <title>Leaflet Dev Blog</title>
8
+
9
+ <link href="http://leafletjs.com/atom.xml" rel="self"/>
10
+ <link href="http://leafletjs.com"/>
11
+
12
+ <updated>{{ site.time | date_to_xmlschema }}</updated>
13
+ <id>http://leafletjs.com/</id>
14
+
15
+ <author>
16
+ <name>Vladimir Agafonkin</name>
17
+ </author>
18
+
19
+ {% for post in site.posts %}
20
+ <entry>
21
+ <title>{{ post.title }}</title>
22
+ <link href="http://leafletjs.com{{ post.url }}"/>
23
+ <updated>{{ post.date | date_to_xmlschema }}</updated>
24
+ <id>http://leafletjs.com{{ post.id }}</id>
25
+ <content type="html">{{ post.content | xml_escape }}</content>
26
+ </entry>
27
+ {% endfor %}
28
+
29
+ </feed>
@@ -0,0 +1,24 @@
1
+ ---
2
+ layout: v2
3
+ title: Blog
4
+ bodyclass: blog-page
5
+ ---
6
+
7
+ ## Leaflet Developer Blog
8
+
9
+ The main place for all important Leaflet-related news, tutorials, tips and development notes. [Subscribe to Atom feed](atom.xml)
10
+
11
+ ---
12
+
13
+ {% for post in site.posts %}
14
+ <div class="clearfix">
15
+ <div class="post-date">
16
+ {{ post.date | date_to_string }}
17
+ </div>
18
+ <div class="post-info">
19
+ <h3 class="post-title"><a href="{{ post.url | replace_first: '/', '' }}">{{ post.title }}</a></h3>
20
+ <p>{{ post.description }} <span class="quiet">&hellip;</span></p>
21
+ </div>
22
+ </div>
23
+ {% unless forloop.last %}<hr />{% endunless %}
24
+ {% endfor %}
@@ -0,0 +1,1092 @@
1
+
2
+ /* general styles */
3
+
4
+ html, body, input, select, button, textarea, table {
5
+ font-size: 100%;
6
+ font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
7
+ -webkit-font-smoothing: antialiased;
8
+ -moz-osx-font-smoothing: grayscale;
9
+ text-rendering: optimizeLegibility;
10
+ }
11
+
12
+ body {
13
+ line-height: 1.5;
14
+ color: #333;
15
+ }
16
+
17
+ p {
18
+ margin: 24px 0;
19
+ }
20
+
21
+ a, a span.hljs-string {
22
+ color: #1EB300;
23
+ }
24
+
25
+ a:hover, a:focus {
26
+ color: #160;
27
+ }
28
+
29
+ hr {
30
+ background: #ddd;
31
+ color: #ddd;
32
+ height: 1px;
33
+ margin: 0 0 1.4em;
34
+ border: none;
35
+ clear: both;
36
+ }
37
+
38
+ .clearfix:before,
39
+ .clearfix:after {
40
+ content: " ";
41
+ display: table;
42
+ }
43
+
44
+ .clearfix:after {
45
+ clear: both;
46
+ }
47
+
48
+ table {
49
+ width: 100%;
50
+ border-collapse: collapse;
51
+ margin-bottom: 2em;
52
+ }
53
+
54
+ th, td {
55
+ text-align: left;
56
+ border: 0;
57
+ border: 1px solid #eee;
58
+ padding: 0.5em 1em 0.5em 1em;
59
+ }
60
+
61
+ table th {
62
+ background: #eee;
63
+ }
64
+
65
+ table td {
66
+ color: #666;
67
+ }
68
+
69
+ table td:first-child {
70
+ color: #777;
71
+ }
72
+
73
+ table td:last-child {
74
+ color: black;
75
+ }
76
+
77
+ table td code i {
78
+ color: #00A707;
79
+ }
80
+
81
+ table td code b {
82
+ color: black;
83
+ font-weight: normal;
84
+ }
85
+
86
+ iframe {
87
+ border: none;
88
+ }
89
+
90
+
91
+ /* headings */
92
+
93
+ h2 {
94
+ font-weight: 400;
95
+ font-size: 2em;
96
+ font-weight: 300;
97
+ color: black;
98
+ margin-top: 1.6em;
99
+ padding-top: .2em;
100
+ }
101
+
102
+ h2:first-child {
103
+ margin-top: 1em;
104
+ }
105
+
106
+ h2:target {
107
+ color: #1EB300;
108
+ }
109
+
110
+ h3 {
111
+ margin-top: 1.5em;
112
+ padding-top: .5em;
113
+ color: black;
114
+ font-weight: 500;
115
+ font-size: 1.4em;
116
+ }
117
+
118
+ .blog-page h3 {
119
+ padding-top: 0;
120
+ }
121
+
122
+ h4 {
123
+ font-size: 1.1em;
124
+ font-weight: 500;
125
+ margin: 1em 0 1em;
126
+ }
127
+
128
+
129
+ /* general layout */
130
+
131
+ .container {
132
+ max-width: 54em;
133
+ padding: 0 6em 1.5em;
134
+ margin: 0 auto;
135
+ }
136
+ .footer {
137
+ margin-top: 50px;
138
+ color: #777;
139
+ }
140
+
141
+
142
+ /* header */
143
+
144
+ h1 {
145
+ margin: 1.25em 0 1.5em;
146
+ text-align: center;
147
+ }
148
+
149
+ h1 a {
150
+ display: block;
151
+ margin: auto;
152
+ padding: 0 2em;
153
+ -webkit-transition: 0.8s all;
154
+ -webkit-animation: leafanim 3s ease 3s 1 normal none;
155
+ transition: 0.8s all;
156
+ animation: leafanim 3s ease 3s 1 normal none;
157
+ }
158
+
159
+ @-webkit-keyframes leafanim {
160
+ 50% { -webkit-filter: hue-rotate(-70deg) saturate(1.2); }
161
+ }
162
+
163
+ @keyframes leafanim {
164
+ 50% { -webkit-filter: hue-rotate(-70deg) saturate(1.2); }
165
+ }
166
+
167
+ h1 a img {
168
+ display: block;
169
+ margin: auto;
170
+ max-width: 100%;
171
+ }
172
+
173
+ h1 a:hover, h1 a:focus {
174
+ -webkit-filter: hue-rotate(-70deg) saturate(1.5);
175
+ }
176
+
177
+ h3.tagline {
178
+ font-weight: 300;
179
+ font-size: 1.5em;
180
+ margin-top: -.75em;
181
+ padding: 0;
182
+ color: #777;
183
+ text-align: center;
184
+ margin-bottom: 30px;
185
+ }
186
+
187
+ .nav {
188
+ overflow: hidden;
189
+ list-style: none;
190
+ padding: 0 30px;
191
+ text-align: center;
192
+ font-size: 1.25em;
193
+ margin-bottom: 40px;
194
+ border-bottom: 1px solid #ddd;
195
+ padding-bottom: 40px;
196
+ }
197
+
198
+ .nav li {
199
+ display: inline-block;
200
+ padding: .333em .5em;
201
+ color: #999;
202
+ }
203
+
204
+ .nav li a {
205
+ font-weight: 400;
206
+ text-decoration: none;
207
+ }
208
+
209
+ .ext-links {
210
+ position: fixed;
211
+ top: 1.5em;
212
+ right: 1.5em;
213
+ }
214
+
215
+ .ext-link {
216
+ display: block;
217
+ opacity: 0.5;
218
+ -webkit-animation: fadein 1s;
219
+ animation: fadein 1s;
220
+ }
221
+ .ext-link:hover {
222
+ opacity: 1;
223
+ }
224
+ @-webkit-keyframes fadein {
225
+ from { opacity: 0; }
226
+ to { opacity: 0.5; }
227
+ }
228
+ @keyframes fadein {
229
+ from { opacity: 0; }
230
+ to { opacity: 0.5; }
231
+ }
232
+
233
+
234
+ /* content */
235
+
236
+ .container code, .container pre code {
237
+ font-family: "Consolas", "Menlo", "Lucida Console", "Courier New", monospace;
238
+ -webkit-font-smoothing: subpixel-antialiased;
239
+ }
240
+ .container pre code {
241
+ font-size: 14px;
242
+ padding: .75em 1em;
243
+ border-radius: 5px;
244
+ white-space: pre;
245
+ overflow: auto;
246
+ }
247
+ .container pre {
248
+ border-radius: 5px;
249
+ }
250
+
251
+ .container .map {
252
+ border: 1px solid #ccc;
253
+ }
254
+ .container .map:focus {
255
+ border-color: #999;
256
+ }
257
+
258
+ .quiet {
259
+ color: #999;
260
+ }
261
+
262
+
263
+ /* frontpage */
264
+
265
+ .map-home {
266
+ height: 300px;
267
+ margin-top: 50px;
268
+ margin-bottom: 50px;
269
+ }
270
+
271
+ .usedby-title {
272
+ text-align: center;
273
+ background-color: #f5f5f5;
274
+ padding: 1.5em 1em 0.5em;
275
+ margin: 0;
276
+ }
277
+
278
+ .usedby {
279
+ margin: 0 0 3em;
280
+ text-align: center;
281
+ padding: 0 3em 2em;
282
+ background-color: #f5f5f5;
283
+ }
284
+
285
+ .logo {
286
+ display: inline-block;
287
+ opacity: 0.6;
288
+ height: 32px;
289
+ overflow: hidden;
290
+ text-indent: -9999px;
291
+ margin: 1em;
292
+ background: url(../images/logos.png);
293
+ background-repeat: no-repeat;
294
+ background-size: 100%;
295
+ vertical-align: middle;
296
+ -webkit-transition: opacity .15s ease;
297
+ transition: opacity .15s ease;
298
+ }
299
+
300
+ .logo:hover { opacity: 1; }
301
+
302
+ .logo-foursquare {
303
+ background-position: 50% -4px;
304
+ width: 135px;
305
+ }
306
+
307
+ .logo-pinterest {
308
+ background-position: 50% -39px;
309
+ width: 115px;
310
+ }
311
+
312
+ .logo-500px {
313
+ background-position: 50% -48px;
314
+ width: 52px;
315
+ background-size: 80px;
316
+ }
317
+
318
+ .logo-evernote {
319
+ background-position: 50% -169px;
320
+ width: 170px;
321
+ height: 43px;
322
+ }
323
+
324
+ .logo-ftimes {
325
+ background-position: 50% -190px;
326
+ width: 112px;
327
+ height: 40px;
328
+ background-size: 145px;
329
+ }
330
+
331
+ .logo-github {
332
+ background-position: 50% -178px;
333
+ width: 110px;
334
+ }
335
+
336
+ .logo-wpost {
337
+ background-position: 50% -327px;
338
+ width: 170px;
339
+ }
340
+
341
+ .logo-npr {
342
+ background-position: 50% -214px;
343
+ width: 100px;
344
+ height: 34px;
345
+ }
346
+
347
+ .logo-usatoday {
348
+ background-position: 50% -299px;
349
+ width: 120px;
350
+ height: 30px;
351
+ }
352
+
353
+ .logo-facebook {
354
+ background-position: 50% -356px;
355
+ width: 130px;
356
+ }
357
+
358
+ .logo-flickr {
359
+ background-position: 50% -277px;
360
+ width: 92px;
361
+ height: 29px;
362
+ }
363
+
364
+ .logo-datagov {
365
+ background-position: 50% -452px;
366
+ width: 135px;
367
+ height: 26px;
368
+ }
369
+
370
+ .logo-ign {
371
+ background-position: 50% -393px;
372
+ width: 110px;
373
+ }
374
+
375
+ .logo-etsy {
376
+ background-position: 50% -428px;
377
+ width: 57px;
378
+ background-size: 110px;
379
+ }
380
+
381
+ .logo-european-commission {
382
+ background-position: 50% -526px;
383
+ width: 125px;
384
+ }
385
+
386
+ .logo-nps {
387
+ background-position: 50% -483px;
388
+ width: 32px;
389
+ height: 40px;
390
+ margin-top: .5em;
391
+ margin-bottom: .5em;
392
+ background-size: 106px;
393
+ }
394
+
395
+ .features {
396
+ -webkit-column-count: 3;
397
+ -moz-column-count: 3;
398
+ column-count: 3;
399
+ }
400
+ .features ul {
401
+ padding-left: 1.6em;
402
+ margin: 0 0 1.8em;
403
+ }
404
+ .features h3 {
405
+ margin: 0 0 0.8em;
406
+ padding: 0;
407
+ }
408
+ .features h4 {
409
+ margin: 0 0 0.3em;
410
+ }
411
+
412
+
413
+ /* tutorials */
414
+
415
+ .example-img {
416
+ float: left;
417
+ width: 14em;
418
+ max-width: 100%;
419
+ border-radius: 5px;
420
+ margin: 0 1.5em 1.5em 0;
421
+ border: thin solid #ccc;
422
+ }
423
+
424
+ .examples .container h3 {
425
+ margin-top: 0;
426
+ }
427
+ .post-date {
428
+ float: left;
429
+ width: 130px;
430
+ line-height: 1.6;
431
+ color: #999;
432
+ font-size: 18px;
433
+ }
434
+ .post-info {
435
+ overflow: hidden;
436
+ }
437
+ .post-title {
438
+ margin-top: 0;
439
+ }
440
+
441
+
442
+ /* plugins */
443
+
444
+ .plugins td:first-child,
445
+ .plugins td:last-child a {
446
+ white-space: nowrap;
447
+ }
448
+
449
+ table.plugins td:first-child a {
450
+ font-weight: bold;
451
+ }
452
+
453
+ .plugins-page .toc-col {
454
+ float: left;
455
+ width: 25%;
456
+ }
457
+
458
+
459
+ /* API docs */
460
+
461
+ .api-page .toc-col {
462
+ position: relative;
463
+ float: left;
464
+ width: 20%;
465
+ padding-right: 1em;
466
+ margin: 0;
467
+ box-sizing: border-box;
468
+ }
469
+
470
+ .api-page .toc-col.map-col {
471
+ border-right: thin solid #eee;
472
+ }
473
+
474
+ .api-page .toc-col.map-col ~ .toc-col {
475
+ right: -1.5em;
476
+ }
477
+
478
+ .api-page #toc ~ h2 {
479
+ font-weight: 700;
480
+ font-size: 1.75em;
481
+ color: #333;
482
+ border-bottom: 3px solid #555;
483
+ transition: border-color .25s ease;
484
+ }
485
+ .api-page #toc ~ h2:target {
486
+ border-color: #1EB300;
487
+ }
488
+ .api-page h2:first-child {
489
+ border: none;
490
+ }
491
+
492
+ #toc h4 {
493
+ margin-top: 0;
494
+ }
495
+
496
+ #toc ul {
497
+ padding: 0;
498
+ list-style: none;
499
+ margin-top: 0;
500
+ margin-bottom: 25px;
501
+ }
502
+
503
+ #toc .colborder {
504
+ padding-right: 14px;
505
+ }
506
+
507
+ #toc .span-3 {
508
+ margin: 0;
509
+ padding-right: 3em;
510
+ width: 16.825%;
511
+ box-sizing: border-box;
512
+ }
513
+
514
+ #toc .span-3.last {
515
+ padding-right: 0;
516
+ }
517
+
518
+ #toc-copy {
519
+ display: none;
520
+ }
521
+
522
+ #toc-copy div {
523
+ border: 0;
524
+ margin: 0;
525
+ padding: 0;
526
+ width: auto;
527
+ float: none;
528
+ }
529
+
530
+ #toc-copy h4 {
531
+ margin: 0;
532
+ padding-bottom: .333em;
533
+ }
534
+
535
+ #toc-copy hr {
536
+ background-color: transparent;
537
+ margin: 0 0 .5em;
538
+ }
539
+
540
+ #toc-copy ul {
541
+ display: none;
542
+ list-style: none;
543
+ }
544
+
545
+ #toc-copy ul li {
546
+ white-space: nowrap;
547
+ }
548
+
549
+ #toc-copy ul li a {
550
+ position: relative;
551
+ padding: .25em .5em 0;
552
+ z-index: 10;
553
+ }
554
+
555
+ #toc-copy .toc-col {
556
+ position: static;
557
+ }
558
+
559
+ @media screen and (max-width: 1350px) {
560
+ #toc-copy {
561
+ display: block;
562
+ position: fixed;
563
+ top: 0.1em;
564
+ left: 0.25em;
565
+ width: 32px;
566
+ height: 32px;
567
+ opacity: 0;
568
+ cursor: pointer;
569
+ -webkit-transition: opacity .2s ease;
570
+ transition: opacity .2s ease;
571
+ }
572
+
573
+ #toc-copy > div { display: none; }
574
+
575
+ .scrolled #toc-copy {
576
+ opacity: 1;
577
+ background: white;
578
+ }
579
+
580
+ #toc-copy.active {
581
+ background-color: white;
582
+ background-color: rgba(255, 255, 255, 0.9);
583
+ padding: 2em;
584
+ width: 100%;
585
+ height: 100%;
586
+ overflow-x: hidden;
587
+ overflow-y: scroll;
588
+ cursor: default;
589
+ box-sizing: border-box;
590
+ }
591
+
592
+ #toc-copy:before,
593
+ #toc-copy:after {
594
+ content: '';
595
+ position: absolute;
596
+ left: 5px;
597
+ width: 22px;
598
+ height: 14px;
599
+ border-top: 2px solid black;
600
+ cursor: pointer;
601
+ box-sizing: border-box;
602
+ -webkit-transition: -webkit-transform .25s ease;
603
+ transition: transform .25s ease;
604
+ }
605
+
606
+ #toc-copy:before {
607
+ top: 9px;
608
+ border-bottom: 2px solid black;
609
+ }
610
+
611
+ #toc-copy:after {
612
+ top: 15px;
613
+ }
614
+
615
+ #toc-copy.active:before {
616
+ top: 5px;
617
+ left: 9px;
618
+ border-bottom: 0;
619
+ -webkit-transform: rotate(-135deg);
620
+ transform: rotate(-135deg);
621
+ }
622
+
623
+ #toc-copy.active:after {
624
+ top: 13px;
625
+ left: 9px;
626
+ -webkit-transform: rotate(-45deg);
627
+ transform: rotate(-45deg);
628
+ }
629
+
630
+ #toc-copy.active div { display: block; }
631
+
632
+ #toc-copy h4.active, #toc-copy h4:hover {
633
+ color: black;
634
+ cursor: pointer;
635
+ }
636
+
637
+ #toc-copy h4.active + ul {
638
+ display: block;
639
+ padding: 0;
640
+ margin: 0 0 .5em;
641
+ }
642
+
643
+ #toc-copy ul li a { padding: .25em 0; }
644
+ }
645
+
646
+ @media screen and (min-width: 900px) and (max-width: 1350px) {
647
+ #toc-copy {
648
+ width: 40px;
649
+ height: 40px;
650
+ }
651
+
652
+ #toc-copy.active {
653
+ padding: 2.5em;
654
+ }
655
+
656
+ #toc-copy:before,
657
+ #toc-copy:after {
658
+ left: 8px;
659
+ }
660
+
661
+ #toc-copy:before { top: 13px; }
662
+
663
+ #toc-copy:after { top: 19px; }
664
+
665
+ #toc-copy.active:before {
666
+ top: 7px;
667
+ left: 10px;
668
+ }
669
+
670
+ #toc-copy.active:after {
671
+ top: 15px;
672
+ left: 10px;
673
+ }
674
+ }
675
+
676
+ @media screen and (min-width: 1350px) and (min-height: 600px) {
677
+ #toc-copy {
678
+ display: block;
679
+ position: fixed;
680
+ top: 0;
681
+ left: 0;
682
+ width: auto;
683
+ height: auto;
684
+ padding: 2em;
685
+ opacity: 0;
686
+ transition: opacity .25s ease;
687
+ -webkit-transition: opacity .25s ease;
688
+ }
689
+
690
+ #toc-copy:before {
691
+ content: 'Table of contents';
692
+ display: block;
693
+ margin: -.25em 0 1em;
694
+ font-size: 75%;
695
+ font-weight: 300;
696
+ text-transform: uppercase;
697
+ }
698
+
699
+ .scrolled #toc-copy { opacity: 1; }
700
+
701
+ #toc-copy h4 { padding-right: 5em; }
702
+
703
+ #toc-copy ul {
704
+ position: absolute;
705
+ left: 100%;
706
+ margin: -4.9em 0 0 -4.5em;
707
+ padding: 3em 6em 3em 0;
708
+ }
709
+
710
+ #toc-copy h4:hover + ul,
711
+ #toc-copy ul:hover {
712
+ display: block;
713
+ }
714
+
715
+ #toc-copy h4:hover + ul:before,
716
+ #toc-copy ul:hover:before {
717
+ content: '';
718
+ position: absolute;
719
+ top: 3.775em;
720
+ right: 100%;
721
+ margin-right: .25em;
722
+ width: 1em;
723
+ height: 1em;
724
+ border-top: 2px solid #eee;
725
+ }
726
+
727
+ #toc-copy h4:hover + ul:after,
728
+ #toc-copy ul:hover:after {
729
+ content: '';
730
+ position: absolute;
731
+ z-index: -1;
732
+ top: -1000px;
733
+ bottom: -1000px;
734
+ left: 0;
735
+ width: 12.5em;
736
+ background: white;
737
+ background: rgba(255,255,255,0.9);
738
+ }
739
+
740
+ .plugins-page #toc-copy h4:hover + ul:after,
741
+ .plugins-page #toc-copy ul:hover:after {
742
+ width: 17em;
743
+ }
744
+
745
+ #toc-copy h4:hover, #toc-copy h4.hover {
746
+ color: black;
747
+ cursor: pointer;
748
+ }
749
+ }
750
+
751
+ /* API docs - tables */
752
+
753
+ .api-page table td {
754
+ color: #666;
755
+ }
756
+ .api-page table td:first-child {
757
+ color: #777;
758
+ }
759
+ .api-page table td:last-child {
760
+ color: black;
761
+ }
762
+ .api-page table td:last-child code {
763
+ word-break: break-word;
764
+ white-space: pre-wrap;
765
+ }
766
+ .api-page table td code i {
767
+ color: #9a9;
768
+ }
769
+ .api-page table td code b {
770
+ color: black;
771
+ font-weight: normal;
772
+ }
773
+ .api-page table td,
774
+ .api-page table th {
775
+ font-size: 14px;
776
+ }
777
+
778
+ .api-page p {
779
+ margin-top: 0;
780
+ }
781
+
782
+ tr:target {
783
+ background: yellow;
784
+ -webkit-animation: highlight 2s ease 0.5s 1 normal forwards;
785
+ animation: highlight 2s ease 0.5s 1 normal forwards;
786
+ }
787
+
788
+ @-webkit-keyframes highlight {
789
+ 0% { background: yellow; }
790
+ 100% { background: white; }
791
+ }
792
+ @keyframes highlight {
793
+ 0% { background: yellow; }
794
+ 100% { background: white; }
795
+ }
796
+
797
+ .api-page h2[id]:before,
798
+ .api-page tr[id] td:first-child:before {
799
+ content: 'Permalink';
800
+ display: inline-block;
801
+ margin: 0px 5px 0px -35px;
802
+ width: 30px;
803
+ height: 0;
804
+ overflow: hidden;
805
+ padding-top: 20px;
806
+ line-height: 20px;
807
+ vertical-align: baseline;
808
+ background: url(../images/sprite.png) -0px -0px no-repeat;
809
+ opacity: 0.2;
810
+ border-radius: 50%;
811
+ cursor: pointer;
812
+ position: absolute;
813
+ z-index: 1;
814
+ }
815
+
816
+ .api-page h2[id]:before {
817
+ margin-left: -32px;
818
+ margin-top: 14px;
819
+ }
820
+
821
+ .api-page tr[id] td:first-child:before {
822
+ opacity: 0;
823
+ }
824
+
825
+ .api-page tr[id]:hover td:first-child:before {
826
+ opacity: 1;
827
+ }
828
+
829
+ .api-page h2[id]:hover:before { opacity: 1; }
830
+
831
+ @media (-webkit-min-device-pixel-ratio: 1.25),(min-resolution: 120dpi) {
832
+ .api-page h2[id]:before,
833
+ .api-page tr[id] td:first-child:before {
834
+ background-image: url(../images/sprite.svg);
835
+ }
836
+ }
837
+
838
+ @media screen and (max-width: 767px) {
839
+ #toc .colborder {
840
+ padding: 0;
841
+ }
842
+
843
+ .colborder {
844
+ margin: 0;
845
+ border: 0;
846
+ }
847
+
848
+ #toc .toc-col {
849
+ width: 50%;
850
+ float: none;
851
+ position: static;
852
+ display: inline-block;
853
+ margin: 0;
854
+ border: 0;
855
+ padding-right: .5em;
856
+ margin-right: -.25em;
857
+ vertical-align: top;
858
+ box-sizing: border-box;
859
+ }
860
+
861
+ .toc-col.last-col {
862
+ clear: both;
863
+ }
864
+
865
+ th,
866
+ td {
867
+ border: 0;
868
+ }
869
+
870
+ tr {
871
+ border-bottom: 1px solid #eee;
872
+ }
873
+
874
+ table.plugins tbody tr {
875
+ display: block;
876
+ padding-bottom: 1em;
877
+ }
878
+
879
+ table.plugins tbody tr td {
880
+ white-space: normal;
881
+ display: inline-block;
882
+ padding-bottom: 0;
883
+ }
884
+
885
+ table.plugins tr:first-child {
886
+ padding-bottom: 0;
887
+ }
888
+
889
+ table.plugins tr:first-child th {
890
+ display: block;
891
+ }
892
+
893
+ table.plugins tr:first-child th ~ th {
894
+ display: none;
895
+ }
896
+
897
+ table.plugins td:first-child {
898
+ display: block;
899
+ white-space: normal;
900
+ }
901
+
902
+ .api-page table tbody tr {
903
+ display: block;
904
+ }
905
+
906
+ .api-page table tbody tr th,
907
+ .api-page table tbody tr td {
908
+ display: inline-block;
909
+ background-color: transparent;
910
+ width: auto;
911
+ }
912
+
913
+ .api-page table tr:first-child th ~ th {
914
+ display: none;
915
+ }
916
+
917
+ .api-page table tbody tr th:nth-child(2),
918
+ .api-page table tbody tr th:nth-child(3) {
919
+ display: inline-block;
920
+ }
921
+
922
+ .api-page table tr th:last-child {
923
+ display: none !important;
924
+ }
925
+
926
+ .api-page table tbody tr td:last-child {
927
+ display: block;
928
+ border-top: thin dashed #ddd;
929
+ padding: 1em;
930
+ }
931
+
932
+ /*.api-page table tbody tr td:last-child:before {
933
+ content: 'Description';
934
+ display: block;
935
+ text-transform: uppercase;
936
+ font-size: 90%;
937
+ margin-bottom: .75em;
938
+ color: #666;
939
+ }*/
940
+
941
+ td code {
942
+ word-break: break-word;
943
+ }
944
+ }
945
+
946
+ @media screen and (max-width: 56em) {
947
+ .container {
948
+ padding: 0 2em 1.5em;
949
+ }
950
+
951
+ .footer, .social-buttons {
952
+ text-align: center;
953
+ }
954
+
955
+ .footer {
956
+ margin-top: 2em;
957
+ }
958
+
959
+ .ext-links {
960
+ position: static;
961
+ margin: 0 auto 2em;
962
+ text-align: center;
963
+ clear: both;
964
+ }
965
+
966
+ .ext-link {
967
+ display: inline-block;
968
+ vertical-align: middle;
969
+ margin: .25em;
970
+ }
971
+
972
+ .features {
973
+ -webkit-column-count: 2;
974
+ -moz-column-count: 2;
975
+ column-count: 2;
976
+ }
977
+ }
978
+
979
+ @media screen and (max-width: 500px) {
980
+ .nav {
981
+ font-size: 1.25em;
982
+ padding-bottom: 1em;
983
+ line-height: 1;
984
+ }
985
+
986
+ h1 {
987
+ margin: 1em 0;
988
+ }
989
+
990
+ h3.tagline {
991
+ font-size: 1.05em;
992
+ margin: 0 1em;
993
+ }
994
+
995
+ .container {
996
+ padding: 0 1.5em 1.5em;
997
+ }
998
+
999
+ .logo {
1000
+ margin: 0.6em;
1001
+ }
1002
+
1003
+ .usedby-title {
1004
+ padding-top: 1em;
1005
+ padding-bottom: 0.5em;
1006
+ font-size: 1.8em;
1007
+ }
1008
+
1009
+ .usedby {
1010
+ padding-left: 0;
1011
+ padding-right: 0;
1012
+ padding-bottom: 0;
1013
+ }
1014
+
1015
+ .features {
1016
+ -webkit-column-count: 1;
1017
+ -moz-column-count: 1;
1018
+ column-count: 1;
1019
+ }
1020
+
1021
+ .example-img {
1022
+ float: none;
1023
+ display: block;
1024
+ width: auto;
1025
+ margin: 0 0 -.25em;
1026
+ border: 0;
1027
+ }
1028
+
1029
+ .post-date {
1030
+ float: none;
1031
+ width: auto;
1032
+ margin: 0 0 .333em;
1033
+ }
1034
+
1035
+ .api-page h2[id] { text-indent: 24px; }
1036
+ .api-page h2[id]:before { margin-left: -28px; }
1037
+ }
1038
+
1039
+ .width250 {
1040
+ width: 250px;
1041
+ }
1042
+ .width200 {
1043
+ width: 200px;
1044
+ }
1045
+ .width300 {
1046
+ width: 300px;
1047
+ }
1048
+ .width100 {
1049
+ width: 100px;
1050
+ }
1051
+ .width140 {
1052
+ width: 140px;
1053
+ }
1054
+ .minwidth {
1055
+ width: 1px;
1056
+ }
1057
+
1058
+ .download-page table td a {
1059
+ white-space: nowrap;
1060
+ }
1061
+
1062
+ .tutorials-back {
1063
+ margin-bottom: -3em;
1064
+ }
1065
+
1066
+ .post-page h2 {
1067
+ margin-top: 0;
1068
+ }
1069
+
1070
+ .post-meta {
1071
+ color: #888;
1072
+ margin-top: -1em;
1073
+ }
1074
+
1075
+ iframe[src*='youtube.com'] {
1076
+ max-width: 100% !important;
1077
+ }
1078
+
1079
+ #disqus_thread {
1080
+ margin-top: 3em;
1081
+ }
1082
+
1083
+ .no-break {
1084
+ display: inline-block;
1085
+ width: 100%;
1086
+ }
1087
+
1088
+ .announcement {
1089
+ background: #eee;
1090
+ padding: 5px 10px;
1091
+ border-radius: 10px;
1092
+ }