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
@@ -1,35 +1,33 @@
1
- define([
1
+ define( [
2
+ "../var/document",
2
3
  "../var/support"
3
- ], function( support ) {
4
+ ], function( document, support ) {
4
5
 
5
- (function() {
6
+ "use strict";
7
+
8
+ ( function() {
6
9
  var input = document.createElement( "input" ),
7
10
  select = document.createElement( "select" ),
8
11
  opt = select.appendChild( document.createElement( "option" ) );
9
12
 
10
13
  input.type = "checkbox";
11
14
 
12
- // Support: iOS<=5.1, Android<=4.2+
15
+ // Support: Android <=4.3 only
13
16
  // Default value for a checkbox should be "on"
14
17
  support.checkOn = input.value !== "";
15
18
 
16
- // Support: IE<=11+
19
+ // Support: IE <=11 only
17
20
  // Must access selectedIndex to make default options select
18
21
  support.optSelected = opt.selected;
19
22
 
20
- // Support: Android<=2.3
21
- // Options inside disabled selects are incorrectly marked as disabled
22
- select.disabled = true;
23
- support.optDisabled = !opt.disabled;
24
-
25
- // Support: IE<=11+
23
+ // Support: IE <=11 only
26
24
  // An input loses its value after becoming a radio
27
25
  input = document.createElement( "input" );
28
26
  input.value = "t";
29
27
  input.type = "radio";
30
28
  support.radioValue = input.value === "t";
31
- })();
29
+ } )();
32
30
 
33
31
  return support;
34
32
 
35
- });
33
+ } );
@@ -1,31 +1,42 @@
1
- define([
1
+ define( [
2
2
  "../core",
3
+ "../core/stripAndCollapse",
3
4
  "./support",
5
+ "../core/nodeName",
6
+
4
7
  "../core/init"
5
- ], function( jQuery, support ) {
8
+ ], function( jQuery, stripAndCollapse, support, nodeName ) {
9
+
10
+ "use strict";
6
11
 
7
12
  var rreturn = /\r/g;
8
13
 
9
- jQuery.fn.extend({
14
+ jQuery.fn.extend( {
10
15
  val: function( value ) {
11
16
  var hooks, ret, isFunction,
12
- elem = this[0];
17
+ elem = this[ 0 ];
13
18
 
14
19
  if ( !arguments.length ) {
15
20
  if ( elem ) {
16
- hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
21
+ hooks = jQuery.valHooks[ elem.type ] ||
22
+ jQuery.valHooks[ elem.nodeName.toLowerCase() ];
17
23
 
18
- if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
24
+ if ( hooks &&
25
+ "get" in hooks &&
26
+ ( ret = hooks.get( elem, "value" ) ) !== undefined
27
+ ) {
19
28
  return ret;
20
29
  }
21
30
 
22
31
  ret = elem.value;
23
32
 
24
- return typeof ret === "string" ?
25
- // Handle most common string cases
26
- ret.replace(rreturn, "") :
27
- // Handle cases where value is null/undef or number
28
- ret == null ? "" : ret;
33
+ // Handle most common string cases
34
+ if ( typeof ret === "string" ) {
35
+ return ret.replace( rreturn, "" );
36
+ }
37
+
38
+ // Handle cases where value is null/undef or number
39
+ return ret == null ? "" : ret;
29
40
  }
30
41
 
31
42
  return;
@@ -33,7 +44,7 @@ jQuery.fn.extend({
33
44
 
34
45
  isFunction = jQuery.isFunction( value );
35
46
 
36
- return this.each(function( i ) {
47
+ return this.each( function( i ) {
37
48
  var val;
38
49
 
39
50
  if ( this.nodeType !== 1 ) {
@@ -53,55 +64,66 @@ jQuery.fn.extend({
53
64
  } else if ( typeof val === "number" ) {
54
65
  val += "";
55
66
 
56
- } else if ( jQuery.isArray( val ) ) {
67
+ } else if ( Array.isArray( val ) ) {
57
68
  val = jQuery.map( val, function( value ) {
58
69
  return value == null ? "" : value + "";
59
- });
70
+ } );
60
71
  }
61
72
 
62
73
  hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
63
74
 
64
75
  // If set returns undefined, fall back to normal setting
65
- if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
76
+ if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
66
77
  this.value = val;
67
78
  }
68
- });
79
+ } );
69
80
  }
70
- });
81
+ } );
71
82
 
72
- jQuery.extend({
83
+ jQuery.extend( {
73
84
  valHooks: {
74
85
  option: {
75
86
  get: function( elem ) {
87
+
76
88
  var val = jQuery.find.attr( elem, "value" );
77
89
  return val != null ?
78
90
  val :
79
- // Support: IE10-11+
91
+
92
+ // Support: IE <=10 - 11 only
80
93
  // option.text throws exceptions (#14686, #14858)
81
- jQuery.trim( jQuery.text( elem ) );
94
+ // Strip and collapse whitespace
95
+ // https://html.spec.whatwg.org/#strip-and-collapse-whitespace
96
+ stripAndCollapse( jQuery.text( elem ) );
82
97
  }
83
98
  },
84
99
  select: {
85
100
  get: function( elem ) {
86
- var value, option,
101
+ var value, option, i,
87
102
  options = elem.options,
88
103
  index = elem.selectedIndex,
89
- one = elem.type === "select-one" || index < 0,
104
+ one = elem.type === "select-one",
90
105
  values = one ? null : [],
91
- max = one ? index + 1 : options.length,
92
- i = index < 0 ?
93
- max :
94
- one ? index : 0;
106
+ max = one ? index + 1 : options.length;
107
+
108
+ if ( index < 0 ) {
109
+ i = max;
110
+
111
+ } else {
112
+ i = one ? index : 0;
113
+ }
95
114
 
96
115
  // Loop through all the selected options
97
116
  for ( ; i < max; i++ ) {
98
117
  option = options[ i ];
99
118
 
100
- // IE6-9 doesn't update selected after form reset (#2551)
119
+ // Support: IE <=9 only
120
+ // IE8-9 doesn't update selected after form reset (#2551)
101
121
  if ( ( option.selected || i === index ) &&
122
+
102
123
  // Don't return options that are disabled or in a disabled optgroup
103
- ( support.optDisabled ? !option.disabled : option.getAttribute( "disabled" ) === null ) &&
104
- ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
124
+ !option.disabled &&
125
+ ( !option.parentNode.disabled ||
126
+ !nodeName( option.parentNode, "optgroup" ) ) ) {
105
127
 
106
128
  // Get the specific value for the option
107
129
  value = jQuery( option ).val();
@@ -127,9 +149,16 @@ jQuery.extend({
127
149
 
128
150
  while ( i-- ) {
129
151
  option = options[ i ];
130
- if ( (option.selected = jQuery.inArray( option.value, values ) >= 0) ) {
152
+
153
+ /* eslint-disable no-cond-assign */
154
+
155
+ if ( option.selected =
156
+ jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
157
+ ) {
131
158
  optionSet = true;
132
159
  }
160
+
161
+ /* eslint-enable no-cond-assign */
133
162
  }
134
163
 
135
164
  // Force browsers to behave consistently when non-matching value is set
@@ -140,22 +169,22 @@ jQuery.extend({
140
169
  }
141
170
  }
142
171
  }
143
- });
172
+ } );
144
173
 
145
174
  // Radios and checkboxes getter/setter
146
- jQuery.each([ "radio", "checkbox" ], function() {
175
+ jQuery.each( [ "radio", "checkbox" ], function() {
147
176
  jQuery.valHooks[ this ] = {
148
177
  set: function( elem, value ) {
149
- if ( jQuery.isArray( value ) ) {
150
- return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
178
+ if ( Array.isArray( value ) ) {
179
+ return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
151
180
  }
152
181
  }
153
182
  };
154
183
  if ( !support.checkOn ) {
155
184
  jQuery.valHooks[ this ].get = function( elem ) {
156
- return elem.getAttribute("value") === null ? "on" : elem.value;
185
+ return elem.getAttribute( "value" ) === null ? "on" : elem.value;
157
186
  };
158
187
  }
159
- });
188
+ } );
160
189
 
161
- });
190
+ } );
@@ -1,17 +1,16 @@
1
- define([
1
+ define( [
2
2
  "./core",
3
- "./var/rnotwhite"
4
- ], function( jQuery, rnotwhite ) {
3
+ "./var/rnothtmlwhite"
4
+ ], function( jQuery, rnothtmlwhite ) {
5
5
 
6
- // String to Object options format cache
7
- var optionsCache = {};
6
+ "use strict";
8
7
 
9
- // Convert String-formatted options into Object-formatted ones and store in cache
8
+ // Convert String-formatted options into Object-formatted ones
10
9
  function createOptions( options ) {
11
- var object = optionsCache[ options ] = {};
12
- jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
10
+ var object = {};
11
+ jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
13
12
  object[ flag ] = true;
14
- });
13
+ } );
15
14
  return object;
16
15
  }
17
16
 
@@ -42,156 +41,186 @@ jQuery.Callbacks = function( options ) {
42
41
  // Convert options from String-formatted to Object-formatted if needed
43
42
  // (we check in cache first)
44
43
  options = typeof options === "string" ?
45
- ( optionsCache[ options ] || createOptions( options ) ) :
44
+ createOptions( options ) :
46
45
  jQuery.extend( {}, options );
47
46
 
48
- var // Last fire value (for non-forgettable lists)
47
+ var // Flag to know if list is currently firing
48
+ firing,
49
+
50
+ // Last fire value for non-forgettable lists
49
51
  memory,
52
+
50
53
  // Flag to know if list was already fired
51
54
  fired,
52
- // Flag to know if list is currently firing
53
- firing,
54
- // First callback to fire (used internally by add and fireWith)
55
- firingStart,
56
- // End of the loop when firing
57
- firingLength,
58
- // Index of currently firing callback (modified by remove if needed)
59
- firingIndex,
55
+
56
+ // Flag to prevent firing
57
+ locked,
58
+
60
59
  // Actual callback list
61
60
  list = [],
62
- // Stack of fire calls for repeatable lists
63
- stack = !options.once && [],
61
+
62
+ // Queue of execution data for repeatable lists
63
+ queue = [],
64
+
65
+ // Index of currently firing callback (modified by add/remove as needed)
66
+ firingIndex = -1,
67
+
64
68
  // Fire callbacks
65
- fire = function( data ) {
66
- memory = options.memory && data;
67
- fired = true;
68
- firingIndex = firingStart || 0;
69
- firingStart = 0;
70
- firingLength = list.length;
71
- firing = true;
72
- for ( ; list && firingIndex < firingLength; firingIndex++ ) {
73
- if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
74
- memory = false; // To prevent further calls using add
75
- break;
69
+ fire = function() {
70
+
71
+ // Enforce single-firing
72
+ locked = locked || options.once;
73
+
74
+ // Execute callbacks for all pending executions,
75
+ // respecting firingIndex overrides and runtime changes
76
+ fired = firing = true;
77
+ for ( ; queue.length; firingIndex = -1 ) {
78
+ memory = queue.shift();
79
+ while ( ++firingIndex < list.length ) {
80
+
81
+ // Run callback and check for early termination
82
+ if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
83
+ options.stopOnFalse ) {
84
+
85
+ // Jump to end and forget the data so .add doesn't re-fire
86
+ firingIndex = list.length;
87
+ memory = false;
88
+ }
76
89
  }
77
90
  }
91
+
92
+ // Forget the data if we're done with it
93
+ if ( !options.memory ) {
94
+ memory = false;
95
+ }
96
+
78
97
  firing = false;
79
- if ( list ) {
80
- if ( stack ) {
81
- if ( stack.length ) {
82
- fire( stack.shift() );
83
- }
84
- } else if ( memory ) {
98
+
99
+ // Clean up if we're done firing for good
100
+ if ( locked ) {
101
+
102
+ // Keep an empty list if we have data for future add calls
103
+ if ( memory ) {
85
104
  list = [];
105
+
106
+ // Otherwise, this object is spent
86
107
  } else {
87
- self.disable();
108
+ list = "";
88
109
  }
89
110
  }
90
111
  },
112
+
91
113
  // Actual Callbacks object
92
114
  self = {
115
+
93
116
  // Add a callback or a collection of callbacks to the list
94
117
  add: function() {
95
118
  if ( list ) {
96
- // First, we save the current length
97
- var start = list.length;
98
- (function add( args ) {
119
+
120
+ // If we have memory from a past run, we should fire after adding
121
+ if ( memory && !firing ) {
122
+ firingIndex = list.length - 1;
123
+ queue.push( memory );
124
+ }
125
+
126
+ ( function add( args ) {
99
127
  jQuery.each( args, function( _, arg ) {
100
- var type = jQuery.type( arg );
101
- if ( type === "function" ) {
128
+ if ( jQuery.isFunction( arg ) ) {
102
129
  if ( !options.unique || !self.has( arg ) ) {
103
130
  list.push( arg );
104
131
  }
105
- } else if ( arg && arg.length && type !== "string" ) {
132
+ } else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) {
133
+
106
134
  // Inspect recursively
107
135
  add( arg );
108
136
  }
109
- });
110
- })( arguments );
111
- // Do we need to add the callbacks to the
112
- // current firing batch?
113
- if ( firing ) {
114
- firingLength = list.length;
115
- // With memory, if we're not firing then
116
- // we should call right away
117
- } else if ( memory ) {
118
- firingStart = start;
119
- fire( memory );
137
+ } );
138
+ } )( arguments );
139
+
140
+ if ( memory && !firing ) {
141
+ fire();
120
142
  }
121
143
  }
122
144
  return this;
123
145
  },
146
+
124
147
  // Remove a callback from the list
125
148
  remove: function() {
126
- if ( list ) {
127
- jQuery.each( arguments, function( _, arg ) {
128
- var index;
129
- while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
130
- list.splice( index, 1 );
131
- // Handle firing indexes
132
- if ( firing ) {
133
- if ( index <= firingLength ) {
134
- firingLength--;
135
- }
136
- if ( index <= firingIndex ) {
137
- firingIndex--;
138
- }
139
- }
149
+ jQuery.each( arguments, function( _, arg ) {
150
+ var index;
151
+ while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
152
+ list.splice( index, 1 );
153
+
154
+ // Handle firing indexes
155
+ if ( index <= firingIndex ) {
156
+ firingIndex--;
140
157
  }
141
- });
142
- }
158
+ }
159
+ } );
143
160
  return this;
144
161
  },
162
+
145
163
  // Check if a given callback is in the list.
146
164
  // If no argument is given, return whether or not list has callbacks attached.
147
165
  has: function( fn ) {
148
- return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
166
+ return fn ?
167
+ jQuery.inArray( fn, list ) > -1 :
168
+ list.length > 0;
149
169
  },
170
+
150
171
  // Remove all callbacks from the list
151
172
  empty: function() {
152
- list = [];
153
- firingLength = 0;
173
+ if ( list ) {
174
+ list = [];
175
+ }
154
176
  return this;
155
177
  },
156
- // Have the list do nothing anymore
178
+
179
+ // Disable .fire and .add
180
+ // Abort any current/pending executions
181
+ // Clear all callbacks and values
157
182
  disable: function() {
158
- list = stack = memory = undefined;
183
+ locked = queue = [];
184
+ list = memory = "";
159
185
  return this;
160
186
  },
161
- // Is it disabled?
162
187
  disabled: function() {
163
188
  return !list;
164
189
  },
165
- // Lock the list in its current state
190
+
191
+ // Disable .fire
192
+ // Also disable .add unless we have memory (since it would have no effect)
193
+ // Abort any pending executions
166
194
  lock: function() {
167
- stack = undefined;
168
- if ( !memory ) {
169
- self.disable();
195
+ locked = queue = [];
196
+ if ( !memory && !firing ) {
197
+ list = memory = "";
170
198
  }
171
199
  return this;
172
200
  },
173
- // Is it locked?
174
201
  locked: function() {
175
- return !stack;
202
+ return !!locked;
176
203
  },
204
+
177
205
  // Call all callbacks with the given context and arguments
178
206
  fireWith: function( context, args ) {
179
- if ( list && ( !fired || stack ) ) {
207
+ if ( !locked ) {
180
208
  args = args || [];
181
209
  args = [ context, args.slice ? args.slice() : args ];
182
- if ( firing ) {
183
- stack.push( args );
184
- } else {
185
- fire( args );
210
+ queue.push( args );
211
+ if ( !firing ) {
212
+ fire();
186
213
  }
187
214
  }
188
215
  return this;
189
216
  },
217
+
190
218
  // Call all the callbacks with the given arguments
191
219
  fire: function() {
192
220
  self.fireWith( this, arguments );
193
221
  return this;
194
222
  },
223
+
195
224
  // To know if the callbacks have already been called at least once
196
225
  fired: function() {
197
226
  return !!fired;
@@ -202,4 +231,4 @@ jQuery.Callbacks = function( options ) {
202
231
  };
203
232
 
204
233
  return jQuery;
205
- });
234
+ } );