columbus3 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -1
- data/README.md +122 -0
- data/bin/console +0 -0
- data/bin/setup +0 -0
- data/bower.json +25 -0
- data/bower_components/jquery/.bower.json +7 -20
- data/bower_components/jquery/AUTHORS.txt +301 -0
- data/bower_components/jquery/{MIT-LICENSE.txt → LICENSE.txt} +17 -2
- data/bower_components/jquery/README.md +67 -0
- data/bower_components/jquery/bower.json +2 -16
- data/bower_components/jquery/dist/core.js +476 -0
- data/bower_components/jquery/dist/jquery.js +3861 -2818
- data/bower_components/jquery/dist/jquery.min.js +4 -5
- data/bower_components/jquery/dist/jquery.min.map +1 -1
- data/bower_components/jquery/dist/jquery.slim.js +8160 -0
- data/bower_components/jquery/dist/jquery.slim.min.js +4 -0
- data/bower_components/jquery/dist/jquery.slim.min.map +1 -0
- data/bower_components/jquery/external/sizzle/LICENSE.txt +36 -0
- data/bower_components/jquery/{src → external}/sizzle/dist/sizzle.js +445 -240
- data/bower_components/jquery/external/sizzle/dist/sizzle.min.js +3 -0
- data/bower_components/jquery/external/sizzle/dist/sizzle.min.map +1 -0
- data/bower_components/jquery/src/.eslintrc.json +5 -0
- data/bower_components/jquery/src/ajax.js +174 -105
- data/bower_components/jquery/src/ajax/jsonp.js +27 -14
- data/bower_components/jquery/src/ajax/load.js +24 -23
- data/bower_components/jquery/src/ajax/parseXML.js +8 -6
- data/bower_components/jquery/src/ajax/script.js +25 -12
- data/bower_components/jquery/src/ajax/var/location.js +5 -0
- data/bower_components/jquery/src/ajax/var/nonce.js +4 -2
- data/bower_components/jquery/src/ajax/var/rquery.js +5 -3
- data/bower_components/jquery/src/ajax/xhr.js +76 -43
- data/bower_components/jquery/src/attributes.js +4 -2
- data/bower_components/jquery/src/attributes/attr.js +60 -60
- data/bower_components/jquery/src/attributes/classes.js +87 -71
- data/bower_components/jquery/src/attributes/prop.js +81 -32
- data/bower_components/jquery/src/attributes/support.js +11 -13
- data/bower_components/jquery/src/attributes/val.js +66 -37
- data/bower_components/jquery/src/callbacks.js +119 -90
- data/bower_components/jquery/src/core.js +108 -134
- data/bower_components/jquery/src/core/DOMEval.js +16 -0
- data/bower_components/jquery/src/core/access.js +21 -11
- data/bower_components/jquery/src/core/init.js +33 -28
- data/bower_components/jquery/src/core/nodeName.js +13 -0
- data/bower_components/jquery/src/core/parseHTML.js +39 -13
- data/bower_components/jquery/src/core/ready-no-deferred.js +96 -0
- data/bower_components/jquery/src/core/ready.js +40 -51
- data/bower_components/jquery/src/core/readyException.js +13 -0
- data/bower_components/jquery/src/core/stripAndCollapse.js +14 -0
- data/bower_components/jquery/src/core/support.js +20 -0
- data/bower_components/jquery/src/core/var/rsingleTag.js +5 -3
- data/bower_components/jquery/src/css.js +146 -158
- data/bower_components/jquery/src/css/addGetHookIf.js +7 -3
- data/bower_components/jquery/src/css/adjustCSS.js +71 -0
- data/bower_components/jquery/src/css/curCSS.js +22 -14
- data/bower_components/jquery/src/css/hiddenVisibleSelectors.js +8 -8
- data/bower_components/jquery/src/css/showHide.js +105 -0
- data/bower_components/jquery/src/css/support.js +69 -76
- data/bower_components/jquery/src/css/var/cssExpand.js +4 -2
- data/bower_components/jquery/src/css/var/getStyles.js +11 -6
- data/bower_components/jquery/src/css/var/isHiddenWithinTree.js +34 -0
- data/bower_components/jquery/src/css/var/rmargin.js +5 -3
- data/bower_components/jquery/src/css/var/rnumnonpx.js +4 -2
- data/bower_components/jquery/src/css/{swap.js → var/swap.js} +5 -7
- data/bower_components/jquery/src/data.js +67 -66
- data/bower_components/jquery/src/data/Data.js +87 -107
- data/bower_components/jquery/src/data/{accepts.js → var/acceptData.js} +6 -7
- data/bower_components/jquery/src/data/var/{data_priv.js → dataPriv.js} +4 -2
- data/bower_components/jquery/src/data/var/{data_user.js → dataUser.js} +4 -2
- data/bower_components/jquery/src/deferred.js +314 -72
- data/bower_components/jquery/src/deferred/exceptionHook.js +21 -0
- data/bower_components/jquery/src/deprecated.js +36 -9
- data/bower_components/jquery/src/dimensions.js +16 -10
- data/bower_components/jquery/src/effects.js +257 -206
- data/bower_components/jquery/src/effects/Tween.js +18 -9
- data/bower_components/jquery/src/effects/animatedSelector.js +7 -5
- data/bower_components/jquery/src/event.js +297 -419
- data/bower_components/jquery/src/event/ajax.js +13 -4
- data/bower_components/jquery/src/event/alias.js +13 -23
- data/bower_components/jquery/src/event/focusin.js +55 -0
- data/bower_components/jquery/src/event/support.js +5 -3
- data/bower_components/jquery/src/event/trigger.js +185 -0
- data/bower_components/jquery/src/exports/amd.js +5 -3
- data/bower_components/jquery/src/exports/global.js +8 -6
- data/bower_components/jquery/src/jquery.js +6 -2
- data/bower_components/jquery/src/manipulation.js +218 -310
- data/bower_components/jquery/src/manipulation/_evalUrl.js +9 -4
- data/bower_components/jquery/src/manipulation/buildFragment.js +104 -0
- data/bower_components/jquery/src/manipulation/getAll.js +32 -0
- data/bower_components/jquery/src/manipulation/setGlobalEval.js +22 -0
- data/bower_components/jquery/src/manipulation/support.js +11 -8
- data/bower_components/jquery/src/manipulation/var/rcheckableType.js +5 -3
- data/bower_components/jquery/src/manipulation/var/rscriptType.js +5 -0
- data/bower_components/jquery/src/manipulation/var/rtagName.js +5 -0
- data/bower_components/jquery/src/manipulation/wrapMap.js +29 -0
- data/bower_components/jquery/src/offset.js +75 -53
- data/bower_components/jquery/src/queue.js +26 -23
- data/bower_components/jquery/src/queue/delay.js +8 -6
- data/bower_components/jquery/src/selector-native.js +133 -68
- data/bower_components/jquery/src/selector-sizzle.js +10 -5
- data/bower_components/jquery/src/selector.js +3 -1
- data/bower_components/jquery/src/serialize.js +52 -33
- data/bower_components/jquery/src/traversing.js +61 -69
- data/bower_components/jquery/src/traversing/findFilter.js +37 -31
- data/bower_components/jquery/src/traversing/var/dir.js +22 -0
- data/bower_components/jquery/src/traversing/var/rneedsContext.js +4 -2
- data/bower_components/jquery/src/traversing/var/siblings.js +17 -0
- data/bower_components/jquery/src/var/ObjectFunctionString.js +7 -0
- data/bower_components/jquery/src/var/arr.js +4 -2
- data/bower_components/jquery/src/var/class2type.js +4 -2
- data/bower_components/jquery/src/var/concat.js +4 -2
- data/bower_components/jquery/src/var/document.js +5 -0
- data/bower_components/jquery/src/var/documentElement.js +7 -0
- data/bower_components/jquery/src/var/fnToString.js +7 -0
- data/bower_components/jquery/src/var/getProto.js +5 -0
- data/bower_components/jquery/src/var/hasOwn.js +4 -2
- data/bower_components/jquery/src/var/indexOf.js +4 -2
- data/bower_components/jquery/src/var/pnum.js +5 -3
- data/bower_components/jquery/src/var/push.js +4 -2
- data/bower_components/jquery/src/var/rcssNum.js +9 -0
- data/bower_components/jquery/src/var/rnothtmlwhite.js +8 -0
- data/bower_components/jquery/src/var/slice.js +4 -2
- data/bower_components/jquery/src/var/support.js +4 -2
- data/bower_components/jquery/src/var/toString.js +4 -2
- data/bower_components/jquery/src/wrap.js +24 -26
- data/bower_components/leaflet-providers/.bower.json +6 -7
- data/bower_components/leaflet-providers/CHANGELOG.md +62 -0
- data/bower_components/leaflet-providers/README.md +12 -3
- data/bower_components/leaflet-providers/bower.json +1 -1
- data/bower_components/leaflet-providers/leaflet-providers.js +133 -92
- data/bower_components/leaflet-providers/package.json +14 -7
- data/bower_components/leaflet/.bower.json +10 -14
- data/bower_components/leaflet/CHANGELOG.md +648 -3
- data/bower_components/leaflet/CONTRIBUTING.md +88 -33
- data/bower_components/leaflet/ISSUE_TEMPLATE.md +25 -0
- data/bower_components/leaflet/Jakefile.js +73 -14
- data/bower_components/leaflet/LICENSE +1 -1
- data/bower_components/leaflet/PLUGIN-GUIDE.md +97 -3
- data/bower_components/leaflet/README.md +6 -8
- data/bower_components/leaflet/bower.json +3 -9
- data/bower_components/leaflet/dist/images/layers-2x.png +0 -0
- data/bower_components/leaflet/dist/images/layers.png +0 -0
- data/bower_components/leaflet/dist/images/marker-icon-2x.png +0 -0
- data/bower_components/leaflet/dist/images/marker-icon.png +0 -0
- data/bower_components/leaflet/dist/images/marker-shadow.png +0 -0
- data/bower_components/leaflet/dist/leaflet-src.js +12301 -7898
- data/bower_components/leaflet/dist/leaflet-src.js.map +1 -0
- data/bower_components/leaflet/dist/leaflet.css +196 -43
- data/bower_components/leaflet/dist/leaflet.js +6 -9
- data/bower_components/leaflet/dist/leaflet.js.map +1 -0
- data/bower_components/leaflet/docs/CNAME +1 -0
- data/bower_components/leaflet/docs/Gemfile +4 -0
- data/bower_components/leaflet/docs/_config.yml +19 -0
- data/bower_components/leaflet/docs/_includes/frame.html +9 -0
- data/bower_components/leaflet/docs/_includes/tutorial_link.html +8 -0
- data/bower_components/leaflet/docs/_layouts/post.html +30 -0
- data/bower_components/leaflet/docs/_layouts/redirected.html +14 -0
- data/bower_components/leaflet/docs/_layouts/tutorial.html +9 -0
- data/bower_components/leaflet/docs/_layouts/tutorial_frame.html +32 -0
- data/bower_components/leaflet/docs/_layouts/tutorial_v2.html +9 -0
- data/bower_components/leaflet/docs/_layouts/v2.html +159 -0
- data/bower_components/leaflet/docs/_posts/2012-07-30-leaflet-0-4-released.md +240 -0
- data/bower_components/leaflet/docs/_posts/2012-08-07-leaflet-0-4-3-and-a-new-tutorial.md +47 -0
- data/bower_components/leaflet/docs/_posts/2012-08-20-guest-post-markerclusterer-0-1-released.md +112 -0
- data/bower_components/leaflet/docs/_posts/2012-10-25-leaflet-0-4-5-bugfix-release-and-plans-for-0.5.md +36 -0
- data/bower_components/leaflet/docs/_posts/2013-01-17-leaflet-0-5-released.md +24 -0
- data/bower_components/leaflet/docs/_posts/2013-02-20-guest-post-draw.md +146 -0
- data/bower_components/leaflet/docs/_posts/2013-06-26-leaflet-0-6-released-dc-code-sprint-mapbox.md +31 -0
- data/bower_components/leaflet/docs/_posts/2013-06-28-leaflet-plugin-authoring-guide.md +111 -0
- data/bower_components/leaflet/docs/_posts/2013-11-18-leaflet-0-7-released-plans-for-future.md +56 -0
- data/bower_components/leaflet/docs/_posts/2015-07-01-leaflet-is-alive-and-kicking.md +21 -0
- data/bower_components/leaflet/docs/_posts/2015-07-15-leaflet-1.0-beta1-released.md +60 -0
- data/bower_components/leaflet/docs/_posts/2015-09-01-leaflet-0.7.4-released.md +29 -0
- data/bower_components/leaflet/docs/_posts/2015-10-14-leaflet-1.0-beta2-released.md +35 -0
- data/bower_components/leaflet/docs/_posts/2016-03-20-debugging-touch-interactions.md +101 -0
- data/bower_components/leaflet/docs/_posts/2016-04-18-leaflet-1.0-rc1.md +78 -0
- data/bower_components/leaflet/docs/_posts/2016-07-16-leaflet-1.0-rc2.md +60 -0
- data/bower_components/leaflet/docs/_posts/2016-08-05-leaflet-1.0-rc3.md +53 -0
- data/bower_components/leaflet/docs/_posts/2016-09-27-leaflet-1.0-final.md +50 -0
- data/bower_components/leaflet/docs/_posts/2016-11-21-leaflet-1.0.2.md +25 -0
- data/bower_components/leaflet/docs/_posts/2017-01-23-leaflet-1.0.3.md +27 -0
- data/bower_components/leaflet/docs/atom.xml +29 -0
- data/bower_components/leaflet/docs/blog.md +24 -0
- data/bower_components/leaflet/docs/docs/css/main.css +1092 -0
- data/bower_components/leaflet/docs/docs/css/normalize.css +426 -0
- data/bower_components/leaflet/docs/docs/highlight/LICENSE +24 -0
- data/bower_components/leaflet/docs/docs/highlight/highlight.pack.js +1 -0
- data/bower_components/leaflet/docs/docs/highlight/styles/github-gist.css +211 -0
- data/bower_components/leaflet/docs/docs/images/2016-03-20-prosthetic-hand-zooming.gif +0 -0
- data/bower_components/leaflet/docs/docs/images/2016-04-18-inheritances.gif +0 -0
- data/bower_components/leaflet/docs/docs/images/2016-04-18-leaflet-toilet-paper.jpeg +0 -0
- data/bower_components/leaflet/docs/docs/images/2016-04-18-madrid-leaflet-864px.jpg +0 -0
- data/bower_components/leaflet/docs/docs/images/2016-07-18-remote-session.png +0 -0
- data/bower_components/leaflet/docs/docs/images/2016-07-18-tooltip.png +0 -0
- data/bower_components/leaflet/docs/docs/images/2016-08-03-iraq-hacking.jpg +0 -0
- data/bower_components/leaflet/docs/docs/images/favicon.ico +0 -0
- data/bower_components/leaflet/docs/docs/images/forum-round.png +0 -0
- data/bower_components/leaflet/docs/docs/images/github-round.png +0 -0
- data/bower_components/leaflet/docs/docs/images/logo.png +0 -0
- data/bower_components/leaflet/docs/docs/images/logos.png +0 -0
- data/bower_components/leaflet/docs/docs/images/sprite.png +0 -0
- data/bower_components/leaflet/docs/docs/images/sprite.svg +75 -0
- data/bower_components/leaflet/docs/docs/images/twitter-round.png +0 -0
- data/bower_components/leaflet/docs/docs/images/twitter.png +0 -0
- data/bower_components/leaflet/docs/docs/js/docs.js +52 -0
- data/bower_components/leaflet/docs/download.md +95 -0
- data/bower_components/leaflet/docs/examples.md +125 -0
- data/bower_components/leaflet/docs/examples/choropleth-example.md +5 -0
- data/bower_components/leaflet/docs/examples/choropleth.md +5 -0
- data/bower_components/leaflet/docs/examples/choropleth/example-basic.md +20 -0
- data/bower_components/leaflet/docs/examples/choropleth/example-color.md +46 -0
- data/bower_components/leaflet/docs/examples/choropleth/example.md +159 -0
- data/bower_components/leaflet/docs/examples/choropleth/index.md +232 -0
- data/bower_components/leaflet/docs/examples/choropleth/thumbnail.png +0 -0
- data/bower_components/leaflet/docs/examples/choropleth/us-states.js +54 -0
- data/bower_components/leaflet/docs/examples/crs-simple/crs-simple-example1.md +16 -0
- data/bower_components/leaflet/docs/examples/crs-simple/crs-simple-example2.md +20 -0
- data/bower_components/leaflet/docs/examples/crs-simple/crs-simple-example3.md +38 -0
- data/bower_components/leaflet/docs/examples/crs-simple/crs-simple.md +117 -0
- data/bower_components/leaflet/docs/examples/crs-simple/thumbnail.png +0 -0
- data/bower_components/leaflet/docs/examples/crs-simple/uqm_map_400px.png +0 -0
- data/bower_components/leaflet/docs/examples/crs-simple/uqm_map_detail.png +0 -0
- data/bower_components/leaflet/docs/examples/crs-simple/uqm_map_full.png +0 -0
- data/bower_components/leaflet/docs/examples/custom-icons-example.md +5 -0
- data/bower_components/leaflet/docs/examples/custom-icons.md +5 -0
- data/bower_components/leaflet/docs/examples/custom-icons/example-one-icon.md +27 -0
- data/bower_components/leaflet/docs/examples/custom-icons/example.md +31 -0
- data/bower_components/leaflet/docs/examples/custom-icons/index.md +79 -0
- data/bower_components/leaflet/docs/examples/custom-icons/leaf-green.png +0 -0
- data/bower_components/leaflet/docs/examples/custom-icons/leaf-orange.png +0 -0
- data/bower_components/leaflet/docs/examples/custom-icons/leaf-red.png +0 -0
- data/bower_components/leaflet/docs/examples/custom-icons/leaf-shadow.png +0 -0
- data/bower_components/leaflet/docs/examples/custom-icons/thumbnail.png +0 -0
- data/bower_components/leaflet/docs/examples/extending/canvascircles.md +37 -0
- data/bower_components/leaflet/docs/examples/extending/class-diagram.md +24 -0
- data/bower_components/leaflet/docs/examples/extending/class-diagram.png +0 -0
- data/bower_components/leaflet/docs/examples/extending/class-diagram.txt +100 -0
- data/bower_components/leaflet/docs/examples/extending/extending-1-classes.md +196 -0
- data/bower_components/leaflet/docs/examples/extending/extending-2-layers.md +210 -0
- data/bower_components/leaflet/docs/examples/extending/extending-3-controls.md +100 -0
- data/bower_components/leaflet/docs/examples/extending/gridcoords.md +32 -0
- data/bower_components/leaflet/docs/examples/extending/kittenlayer.md +29 -0
- data/bower_components/leaflet/docs/examples/extending/pixelorigin.md +90 -0
- data/bower_components/leaflet/docs/examples/extending/thumbnail-1.png +0 -0
- data/bower_components/leaflet/docs/examples/extending/thumbnail-2.png +0 -0
- data/bower_components/leaflet/docs/examples/extending/thumbnail-3.png +0 -0
- data/bower_components/leaflet/docs/examples/extending/tilt.md +59 -0
- data/bower_components/leaflet/docs/examples/extending/watermark.md +36 -0
- data/bower_components/leaflet/docs/examples/geojson-example.md +5 -0
- data/bower_components/leaflet/docs/examples/geojson.md +5 -0
- data/bower_components/leaflet/docs/examples/geojson/baseball-marker.png +0 -0
- data/bower_components/leaflet/docs/examples/geojson/example.md +78 -0
- data/bower_components/leaflet/docs/examples/geojson/geojson-example.html +89 -0
- data/bower_components/leaflet/docs/examples/geojson/geojson.html +281 -0
- data/bower_components/leaflet/docs/examples/geojson/index.md +205 -0
- data/bower_components/leaflet/docs/examples/geojson/sample-geojson.js +248 -0
- data/bower_components/leaflet/docs/examples/geojson/thumbnail.png +0 -0
- data/bower_components/leaflet/docs/examples/layers-control-example.md +5 -0
- data/bower_components/leaflet/docs/examples/layers-control.md +5 -0
- data/bower_components/leaflet/docs/examples/layers-control/example.md +38 -0
- data/bower_components/leaflet/docs/examples/layers-control/index.md +72 -0
- data/bower_components/leaflet/docs/examples/layers-control/thumbnail.png +0 -0
- data/bower_components/leaflet/docs/examples/map-panes-example.md +5 -0
- data/bower_components/leaflet/docs/examples/map-panes.md +5 -0
- data/bower_components/leaflet/docs/examples/map-panes/eu-countries.js +79 -0
- data/bower_components/leaflet/docs/examples/map-panes/example.md +38 -0
- data/bower_components/leaflet/docs/examples/map-panes/index.md +105 -0
- data/bower_components/leaflet/docs/examples/map-panes/thumbnail.png +0 -0
- data/bower_components/leaflet/docs/examples/mobile-example.md +5 -0
- data/bower_components/leaflet/docs/examples/mobile.md +5 -0
- data/bower_components/leaflet/docs/examples/mobile/example.md +42 -0
- data/bower_components/leaflet/docs/examples/mobile/index.md +72 -0
- data/bower_components/leaflet/docs/examples/mobile/thumbnail.png +0 -0
- data/bower_components/leaflet/docs/examples/quick-start-example.md +5 -0
- data/bower_components/leaflet/docs/examples/quick-start.md +5 -0
- data/bower_components/leaflet/docs/examples/quick-start/example-basic.md +19 -0
- data/bower_components/leaflet/docs/examples/quick-start/example-overlays.md +35 -0
- data/bower_components/leaflet/docs/examples/quick-start/example-popups.md +37 -0
- data/bower_components/leaflet/docs/examples/quick-start/example.md +46 -0
- data/bower_components/leaflet/docs/examples/quick-start/index.md +143 -0
- data/bower_components/leaflet/docs/examples/quick-start/thumbnail.png +0 -0
- data/bower_components/leaflet/docs/examples/video-overlay/example-bounds.md +23 -0
- data/bower_components/leaflet/docs/examples/video-overlay/example-nocontrols.md +31 -0
- data/bower_components/leaflet/docs/examples/video-overlay/example.md +58 -0
- data/bower_components/leaflet/docs/examples/video-overlay/index.md +122 -0
- data/bower_components/leaflet/docs/examples/video-overlay/thumbnail.gif +0 -0
- data/bower_components/leaflet/docs/examples/wms/qgis-wms-layers.png +0 -0
- data/bower_components/leaflet/docs/examples/wms/thumbnail.png +0 -0
- data/bower_components/leaflet/docs/examples/wms/wms-example-crs.md +18 -0
- data/bower_components/leaflet/docs/examples/wms/wms-example1.md +16 -0
- data/bower_components/leaflet/docs/examples/wms/wms-example2.md +16 -0
- data/bower_components/leaflet/docs/examples/wms/wms-example3.md +34 -0
- data/bower_components/leaflet/docs/examples/wms/wms-example4.md +29 -0
- data/bower_components/leaflet/docs/examples/wms/wms.md +157 -0
- data/bower_components/leaflet/docs/examples/zoom-levels/example-delta.md +40 -0
- data/bower_components/leaflet/docs/examples/zoom-levels/example-fractional.md +56 -0
- data/bower_components/leaflet/docs/examples/zoom-levels/example-scale.md +29 -0
- data/bower_components/leaflet/docs/examples/zoom-levels/example-setzoom.md +44 -0
- data/bower_components/leaflet/docs/examples/zoom-levels/example-zero.md +19 -0
- data/bower_components/leaflet/docs/examples/zoom-levels/index.md +275 -0
- data/bower_components/leaflet/docs/examples/zoom-levels/thumbnail.png +0 -0
- data/bower_components/leaflet/docs/index.html +218 -0
- data/bower_components/leaflet/docs/plugins.md +3854 -0
- data/bower_components/leaflet/docs/reference-0.7.7.html +6424 -0
- data/bower_components/leaflet/docs/reference-1.0.0.html +22889 -0
- data/bower_components/leaflet/docs/reference-1.0.2.html +23382 -0
- data/bower_components/leaflet/docs/reference-1.0.3.html +23495 -0
- data/bower_components/leaflet/docs/reference-tpl.html +89 -0
- data/bower_components/leaflet/docs/reference-versions.html +16 -0
- data/bower_components/leaflet/docs/reference.html +3 -0
- data/bower_components/leaflet/package.json +77 -16
- data/columbus3.gemspec +1 -1
- data/doc/ChangeLog.org +10 -0
- data/doc/manual.txt +122 -0
- data/doc/todo.org +63 -0
- data/exe/columbus3 +2 -246
- data/lib/columbus3.rb +12 -7
- data/lib/columbus3/cli/command_semantics.rb +352 -0
- data/lib/columbus3/cli/command_syntax.rb +103 -0
- data/lib/columbus3/metadata/query_parser.racc +21 -7
- data/lib/columbus3/metadata/query_parser.tab.rb +34 -34
- data/lib/columbus3/metadata/sidecar.rb +1 -1
- data/lib/columbus3/renderer/flot_renderer.rb +3 -8
- data/lib/columbus3/renderer/leaflet_renderer.rb +18 -29
- data/lib/columbus3/renderer/sanitizer.rb +8 -0
- data/lib/columbus3/v900track/gpx2v900.rb +31 -0
- data/lib/columbus3/v900track/v900track.rb +34 -8
- data/lib/columbus3/v900track/v900waypoint.rb +9 -0
- data/lib/columbus3/version.rb +1 -1
- data/lib/html/flot.html.erb +6 -6
- data/lib/html/show.html.erb +53 -76
- data/lib/html/track.js.erb +58 -12
- metadata +222 -23
- data/README.textile +0 -67
- data/bower_components/jquery/src/ajax/parseJSON.js +0 -13
- data/bower_components/jquery/src/css/defaultDisplay.js +0 -70
- data/bower_components/jquery/src/css/var/isHidden.js +0 -13
- data/bower_components/jquery/src/intro.js +0 -44
- data/bower_components/jquery/src/outro.js +0 -1
- data/bower_components/jquery/src/sizzle/dist/sizzle.min.js +0 -3
- data/bower_components/jquery/src/sizzle/dist/sizzle.min.map +0 -1
- data/bower_components/jquery/src/var/rnotwhite.js +0 -3
- data/bower_components/jquery/src/var/strundefined.js +0 -3
- data/bower_components/leaflet/component.json +0 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 39a20d5b60c3a70014c670a2db4472de83b3e193
|
|
4
|
+
data.tar.gz: 7f77a9c1b61cb4265639534eb3449b2f7b459aec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9a9cf7252678685b571151760b616ec3c1325328f811ea9ceac1292cf29f0f0246c32a0b8a08c08812dfa92c578da0e468541dc720395d36ba26247e5a3407a
|
|
7
|
+
data.tar.gz: 9925505a1955cf56bfacecbaa465d13a6c8347a8f908441e8f4df0ae649dd7693af5f0f13b94a904a582b84592f6fcae20f942cc6f120398628e5242da7b9cc9
|
data/.gitignore
CHANGED
data/README.md
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
Columbus3
|
|
2
|
+
=========
|
|
3
|
+
|
|
4
|
+
A gem to manage GPS tracks generated by the Columbus V900 and V990 GPS trackers.
|
|
5
|
+
|
|
6
|
+
This gem:
|
|
7
|
+
|
|
8
|
+
- generates a sidecar file for each columbus track you process. The
|
|
9
|
+
sidecar file contains information about date, start location, end
|
|
10
|
+
location, max speed, etc.
|
|
11
|
+
- allows to search tracks using complex queries. For instance, "get
|
|
12
|
+
me all tracks with max speed less than 10 kilometers per hours"
|
|
13
|
+
- allows to show one or more tracks on a map, using leaflet.js
|
|
14
|
+
- it is "pipe friendly", so that you can search for all track matching
|
|
15
|
+
a given criteria and show them on a map
|
|
16
|
+
|
|
17
|
+
Installation
|
|
18
|
+
------------
|
|
19
|
+
|
|
20
|
+
Add this line to your application's Gemfile:
|
|
21
|
+
|
|
22
|
+
ruby
|
|
23
|
+
gem 'columbus3'
|
|
24
|
+
|
|
25
|
+
And then execute:
|
|
26
|
+
|
|
27
|
+
$ bundle
|
|
28
|
+
|
|
29
|
+
Or install it yourself as:
|
|
30
|
+
|
|
31
|
+
$ gem install columbus3
|
|
32
|
+
|
|
33
|
+
Usage
|
|
34
|
+
-----
|
|
35
|
+
|
|
36
|
+
Get detailed instructions with:
|
|
37
|
+
|
|
38
|
+
columbus3 man
|
|
39
|
+
|
|
40
|
+
You can also view the manual online: [manual](doc/manual.txt).
|
|
41
|
+
|
|
42
|
+
A console is also available for simplifying interaction. Invoke it with:
|
|
43
|
+
|
|
44
|
+
columbus3 console
|
|
45
|
+
|
|
46
|
+
Development
|
|
47
|
+
-----------
|
|
48
|
+
|
|
49
|
+
After checking out the repo, run `bin/setup` to install dependencies.
|
|
50
|
+
Then, run `rake test` to run the tests. You can also run `bin/console`
|
|
51
|
+
for an interactive prompt that will allow you to experiment.
|
|
52
|
+
|
|
53
|
+
To install this gem onto your local machine, run
|
|
54
|
+
`bundle exec rake install`. To release a new version, update the version
|
|
55
|
+
number in \`version.rb\`, and then run `bundle exec rake release`, which
|
|
56
|
+
will create a git tag for the version, push git commits and tags, and
|
|
57
|
+
push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
58
|
+
|
|
59
|
+
Contributing
|
|
60
|
+
------------
|
|
61
|
+
|
|
62
|
+
Bug reports and pull requests are welcome on GitHub at
|
|
63
|
+
https://github.com/\[USERNAME\]/columbus3.
|
|
64
|
+
|
|
65
|
+
Version History
|
|
66
|
+
---------------
|
|
67
|
+
|
|
68
|
+
**0.5.0**
|
|
69
|
+
|
|
70
|
+
- Fixed a bug with searches on dates
|
|
71
|
+
- Added converter from GPX to Columbus V900
|
|
72
|
+
- Bumped leaflet and leaflet providers; updated map layers used by the show command
|
|
73
|
+
- More informative messages when running commands
|
|
74
|
+
- Added a console: launch it with `columbus3 console`
|
|
75
|
+
- Fixed a bug with graph (call to sanitize failed)
|
|
76
|
+
- Added [Changelog File](doc/ChangeLog.org), which I am using to help mantaining
|
|
77
|
+
this list of changes
|
|
78
|
+
|
|
79
|
+
**0.4.0**
|
|
80
|
+
|
|
81
|
+
- Improved syntax for search:
|
|
82
|
+
- new option -r searches in sub-directories
|
|
83
|
+
- new option --fields allows to specify the fields to look for
|
|
84
|
+
|
|
85
|
+
**0.3.0**
|
|
86
|
+
|
|
87
|
+
- Added documentation for `search` command; added this README file
|
|
88
|
+
- New command `graph` plots data about a track (look for `_graph.html`
|
|
89
|
+
in the current directory)
|
|
90
|
+
- Added `--force` option to `process`
|
|
91
|
+
- Internals: fixes to the `sidecar` class
|
|
92
|
+
|
|
93
|
+
**0.2.1**
|
|
94
|
+
|
|
95
|
+
- Fixed bug in time parsing
|
|
96
|
+
|
|
97
|
+
**0.2.0**
|
|
98
|
+
|
|
99
|
+
- Fixes to syntax
|
|
100
|
+
- Print man page if not arguments are provided
|
|
101
|
+
- Added --filename option to **show** command
|
|
102
|
+
|
|
103
|
+
**0.1.0**
|
|
104
|
+
|
|
105
|
+
- Initial release
|
|
106
|
+
|
|
107
|
+
License
|
|
108
|
+
-------
|
|
109
|
+
|
|
110
|
+
The original code of this gem is available as open source under the
|
|
111
|
+
terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
112
|
+
|
|
113
|
+
The gem ships wih the following javascript libraries, which are
|
|
114
|
+
distributed according to their licenses:
|
|
115
|
+
|
|
116
|
+
- [Leaflet](http://leafletjs.com/)
|
|
117
|
+
([License](https://github.com/Leaflet/Leaflet/blob/master/LICENSE))
|
|
118
|
+
- [Flot](http://www.flotcharts.org/)
|
|
119
|
+
([License](https://github.com/flot/flot/blob/master/LICENSE.txt))
|
|
120
|
+
- [jQuery](http://jquery.com/)
|
|
121
|
+
([License](https://github.com/jquery/jquery/blob/master/LICENSE.txt))
|
|
122
|
+
|
data/bin/console
CHANGED
|
File without changes
|
data/bin/setup
CHANGED
|
File without changes
|
data/bower.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "columbus3",
|
|
3
|
+
"homepage": "https://github.com/avillafiorita/columbus3",
|
|
4
|
+
"authors": [
|
|
5
|
+
"Adolfo Villafiorita <adolfo.villafiorita@me.com>"
|
|
6
|
+
],
|
|
7
|
+
"description": "support libraries for columbus3",
|
|
8
|
+
"main": "",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"private": true,
|
|
11
|
+
"ignore": [
|
|
12
|
+
"**/.*",
|
|
13
|
+
"node_modules",
|
|
14
|
+
"bower_components",
|
|
15
|
+
"test",
|
|
16
|
+
"tests"
|
|
17
|
+
],
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"flot": "~0.8.3",
|
|
20
|
+
"leaflet-providers": "~1.1.1"
|
|
21
|
+
},
|
|
22
|
+
"resolutions": {
|
|
23
|
+
"leaflet": "^1.1.0"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -1,38 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jquery",
|
|
3
|
-
"version": "2.1.4",
|
|
4
3
|
"main": "dist/jquery.js",
|
|
5
4
|
"license": "MIT",
|
|
6
5
|
"ignore": [
|
|
7
|
-
"**/.*",
|
|
8
|
-
"build",
|
|
9
|
-
"dist/cdn",
|
|
10
|
-
"speed",
|
|
11
|
-
"test",
|
|
12
|
-
"*.md",
|
|
13
|
-
"AUTHORS.txt",
|
|
14
|
-
"Gruntfile.js",
|
|
15
6
|
"package.json"
|
|
16
7
|
],
|
|
17
|
-
"devDependencies": {
|
|
18
|
-
"sizzle": "2.1.1-jquery.2.1.2",
|
|
19
|
-
"requirejs": "2.1.10",
|
|
20
|
-
"qunit": "1.14.0",
|
|
21
|
-
"sinon": "1.8.1"
|
|
22
|
-
},
|
|
23
8
|
"keywords": [
|
|
24
9
|
"jquery",
|
|
25
10
|
"javascript",
|
|
11
|
+
"browser",
|
|
26
12
|
"library"
|
|
27
13
|
],
|
|
28
|
-
"homepage": "https://github.com/jquery/jquery",
|
|
29
|
-
"
|
|
14
|
+
"homepage": "https://github.com/jquery/jquery-dist",
|
|
15
|
+
"version": "3.2.1",
|
|
16
|
+
"_release": "3.2.1",
|
|
30
17
|
"_resolution": {
|
|
31
18
|
"type": "version",
|
|
32
|
-
"tag": "2.1
|
|
33
|
-
"commit": "
|
|
19
|
+
"tag": "3.2.1",
|
|
20
|
+
"commit": "77d2a51d0520d2ee44173afdf4e40a9201f5964e"
|
|
34
21
|
},
|
|
35
|
-
"_source": "
|
|
22
|
+
"_source": "https://github.com/jquery/jquery-dist.git",
|
|
36
23
|
"_target": ">= 1.2.6",
|
|
37
24
|
"_originalSource": "jquery"
|
|
38
25
|
}
|
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
Authors ordered by first contribution.
|
|
2
|
+
|
|
3
|
+
John Resig <jeresig@gmail.com>
|
|
4
|
+
Gilles van den Hoven <gilles0181@gmail.com>
|
|
5
|
+
Michael Geary <mike@geary.com>
|
|
6
|
+
Stefan Petre <stefan.petre@gmail.com>
|
|
7
|
+
Yehuda Katz <wycats@gmail.com>
|
|
8
|
+
Corey Jewett <cj@syntheticplayground.com>
|
|
9
|
+
Klaus Hartl <klaus.hartl@gmail.com>
|
|
10
|
+
Franck Marcia <franck.marcia@gmail.com>
|
|
11
|
+
Jörn Zaefferer <joern.zaefferer@gmail.com>
|
|
12
|
+
Paul Bakaus <paul.bakaus@gmail.com>
|
|
13
|
+
Brandon Aaron <brandon.aaron@gmail.com>
|
|
14
|
+
Mike Alsup <malsup@gmail.com>
|
|
15
|
+
Dave Methvin <dave.methvin@gmail.com>
|
|
16
|
+
Ed Engelhardt <edengelhardt@gmail.com>
|
|
17
|
+
Sean Catchpole <littlecooldude@gmail.com>
|
|
18
|
+
Paul Mclanahan <pmclanahan@gmail.com>
|
|
19
|
+
David Serduke <davidserduke@gmail.com>
|
|
20
|
+
Richard D. Worth <rdworth@gmail.com>
|
|
21
|
+
Scott González <scott.gonzalez@gmail.com>
|
|
22
|
+
Ariel Flesler <aflesler@gmail.com>
|
|
23
|
+
Jon Evans <jon@springyweb.com>
|
|
24
|
+
TJ Holowaychuk <tj@vision-media.ca>
|
|
25
|
+
Michael Bensoussan <mickey@seesmic.com>
|
|
26
|
+
Robert Katić <robert.katic@gmail.com>
|
|
27
|
+
Louis-Rémi Babé <lrbabe@gmail.com>
|
|
28
|
+
Earle Castledine <mrspeaker@gmail.com>
|
|
29
|
+
Damian Janowski <damian.janowski@gmail.com>
|
|
30
|
+
Rich Dougherty <rich@rd.gen.nz>
|
|
31
|
+
Kim Dalsgaard <kim@kimdalsgaard.com>
|
|
32
|
+
Andrea Giammarchi <andrea.giammarchi@gmail.com>
|
|
33
|
+
Mark Gibson <jollytoad@gmail.com>
|
|
34
|
+
Karl Swedberg <kswedberg@gmail.com>
|
|
35
|
+
Justin Meyer <justinbmeyer@gmail.com>
|
|
36
|
+
Ben Alman <cowboy@rj3.net>
|
|
37
|
+
James Padolsey <cla@padolsey.net>
|
|
38
|
+
David Petersen <public@petersendidit.com>
|
|
39
|
+
Batiste Bieler <batiste.bieler@gmail.com>
|
|
40
|
+
Alexander Farkas <info@corrupt-system.de>
|
|
41
|
+
Rick Waldron <waldron.rick@gmail.com>
|
|
42
|
+
Filipe Fortes <filipe@fortes.com>
|
|
43
|
+
Neeraj Singh <neerajdotname@gmail.com>
|
|
44
|
+
Paul Irish <paul.irish@gmail.com>
|
|
45
|
+
Iraê Carvalho <irae@irae.pro.br>
|
|
46
|
+
Matt Curry <matt@pseudocoder.com>
|
|
47
|
+
Michael Monteleone <michael@michaelmonteleone.net>
|
|
48
|
+
Noah Sloan <noah.sloan@gmail.com>
|
|
49
|
+
Tom Viner <github@viner.tv>
|
|
50
|
+
Douglas Neiner <doug@dougneiner.com>
|
|
51
|
+
Adam J. Sontag <ajpiano@ajpiano.com>
|
|
52
|
+
Dave Reed <dareed@microsoft.com>
|
|
53
|
+
Ralph Whitbeck <ralph.whitbeck@gmail.com>
|
|
54
|
+
Carl Fürstenberg <azatoth@gmail.com>
|
|
55
|
+
Jacob Wright <jacwright@gmail.com>
|
|
56
|
+
J. Ryan Stinnett <jryans@gmail.com>
|
|
57
|
+
unknown <Igen005@.upcorp.ad.uprr.com>
|
|
58
|
+
temp01 <temp01irc@gmail.com>
|
|
59
|
+
Heungsub Lee <h@subl.ee>
|
|
60
|
+
Colin Snover <github.com@zetafleet.com>
|
|
61
|
+
Ryan W Tenney <ryan@10e.us>
|
|
62
|
+
Pinhook <contact@pinhooklabs.com>
|
|
63
|
+
Ron Otten <r.j.g.otten@gmail.com>
|
|
64
|
+
Jephte Clain <Jephte.Clain@univ-reunion.fr>
|
|
65
|
+
Anton Matzneller <obhvsbypqghgc@gmail.com>
|
|
66
|
+
Alex Sexton <AlexSexton@gmail.com>
|
|
67
|
+
Dan Heberden <danheberden@gmail.com>
|
|
68
|
+
Henri Wiechers <hwiechers@gmail.com>
|
|
69
|
+
Russell Holbrook <russell.holbrook@patch.com>
|
|
70
|
+
Julian Aubourg <aubourg.julian@gmail.com>
|
|
71
|
+
Gianni Alessandro Chiappetta <gianni@runlevel6.org>
|
|
72
|
+
Scott Jehl <scottjehl@gmail.com>
|
|
73
|
+
James Burke <jrburke@gmail.com>
|
|
74
|
+
Jonas Pfenniger <jonas@pfenniger.name>
|
|
75
|
+
Xavi Ramirez <xavi.rmz@gmail.com>
|
|
76
|
+
Jared Grippe <jared@deadlyicon.com>
|
|
77
|
+
Sylvester Keil <sylvester@keil.or.at>
|
|
78
|
+
Brandon Sterne <bsterne@mozilla.com>
|
|
79
|
+
Mathias Bynens <mathias@qiwi.be>
|
|
80
|
+
Timmy Willison <4timmywil@gmail.com>
|
|
81
|
+
Corey Frang <gnarf37@gmail.com>
|
|
82
|
+
Digitalxero <digitalxero>
|
|
83
|
+
Anton Kovalyov <anton@kovalyov.net>
|
|
84
|
+
David Murdoch <david@davidmurdoch.com>
|
|
85
|
+
Josh Varner <josh.varner@gmail.com>
|
|
86
|
+
Charles McNulty <cmcnulty@kznf.com>
|
|
87
|
+
Jordan Boesch <jboesch26@gmail.com>
|
|
88
|
+
Jess Thrysoee <jess@thrysoee.dk>
|
|
89
|
+
Michael Murray <m@murz.net>
|
|
90
|
+
Lee Carpenter <elcarpie@gmail.com>
|
|
91
|
+
Alexis Abril <me@alexisabril.com>
|
|
92
|
+
Rob Morgan <robbym@gmail.com>
|
|
93
|
+
John Firebaugh <john_firebaugh@bigfix.com>
|
|
94
|
+
Sam Bisbee <sam@sbisbee.com>
|
|
95
|
+
Gilmore Davidson <gilmoreorless@gmail.com>
|
|
96
|
+
Brian Brennan <me@brianlovesthings.com>
|
|
97
|
+
Xavier Montillet <xavierm02.net@gmail.com>
|
|
98
|
+
Daniel Pihlstrom <sciolist.se@gmail.com>
|
|
99
|
+
Sahab Yazdani <sahab.yazdani+github@gmail.com>
|
|
100
|
+
avaly <github-com@agachi.name>
|
|
101
|
+
Scott Hughes <hi@scott-hughes.me>
|
|
102
|
+
Mike Sherov <mike.sherov@gmail.com>
|
|
103
|
+
Greg Hazel <ghazel@gmail.com>
|
|
104
|
+
Schalk Neethling <schalk@ossreleasefeed.com>
|
|
105
|
+
Denis Knauf <Denis.Knauf@gmail.com>
|
|
106
|
+
Timo Tijhof <krinklemail@gmail.com>
|
|
107
|
+
Steen Nielsen <swinedk@gmail.com>
|
|
108
|
+
Anton Ryzhov <anton@ryzhov.me>
|
|
109
|
+
Shi Chuan <shichuanr@gmail.com>
|
|
110
|
+
Berker Peksag <berker.peksag@gmail.com>
|
|
111
|
+
Toby Brain <tobyb@freshview.com>
|
|
112
|
+
Matt Mueller <mattmuelle@gmail.com>
|
|
113
|
+
Justin <drakefjustin@gmail.com>
|
|
114
|
+
Daniel Herman <daniel.c.herman@gmail.com>
|
|
115
|
+
Oleg Gaidarenko <markelog@gmail.com>
|
|
116
|
+
Richard Gibson <richard.gibson@gmail.com>
|
|
117
|
+
Rafaël Blais Masson <rafbmasson@gmail.com>
|
|
118
|
+
cmc3cn <59194618@qq.com>
|
|
119
|
+
Joe Presbrey <presbrey@gmail.com>
|
|
120
|
+
Sindre Sorhus <sindresorhus@gmail.com>
|
|
121
|
+
Arne de Bree <arne@bukkie.nl>
|
|
122
|
+
Vladislav Zarakovsky <vlad.zar@gmail.com>
|
|
123
|
+
Andrew E Monat <amonat@gmail.com>
|
|
124
|
+
Oskari <admin@o-programs.com>
|
|
125
|
+
Joao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>
|
|
126
|
+
tsinha <tsinha@Anthonys-MacBook-Pro.local>
|
|
127
|
+
Matt Farmer <matt@frmr.me>
|
|
128
|
+
Trey Hunner <treyhunner@gmail.com>
|
|
129
|
+
Jason Moon <jmoon@socialcast.com>
|
|
130
|
+
Jeffery To <jeffery.to@gmail.com>
|
|
131
|
+
Kris Borchers <kris.borchers@gmail.com>
|
|
132
|
+
Vladimir Zhuravlev <private.face@gmail.com>
|
|
133
|
+
Jacob Thornton <jacobthornton@gmail.com>
|
|
134
|
+
Chad Killingsworth <chadkillingsworth@missouristate.edu>
|
|
135
|
+
Nowres Rafid <nowres.rafed@gmail.com>
|
|
136
|
+
David Benjamin <davidben@mit.edu>
|
|
137
|
+
Uri Gilad <antishok@gmail.com>
|
|
138
|
+
Chris Faulkner <thefaulkner@gmail.com>
|
|
139
|
+
Elijah Manor <elijah.manor@gmail.com>
|
|
140
|
+
Daniel Chatfield <chatfielddaniel@gmail.com>
|
|
141
|
+
Nikita Govorov <nikita.govorov@gmail.com>
|
|
142
|
+
Wesley Walser <waw325@gmail.com>
|
|
143
|
+
Mike Pennisi <mike@mikepennisi.com>
|
|
144
|
+
Markus Staab <markus.staab@redaxo.de>
|
|
145
|
+
Dave Riddle <david@joyvuu.com>
|
|
146
|
+
Callum Macrae <callum@lynxphp.com>
|
|
147
|
+
Benjamin Truyman <bentruyman@gmail.com>
|
|
148
|
+
James Huston <james@jameshuston.net>
|
|
149
|
+
Erick Ruiz de Chávez <erickrdch@gmail.com>
|
|
150
|
+
David Bonner <dbonner@cogolabs.com>
|
|
151
|
+
Akintayo Akinwunmi <aakinwunmi@judge.com>
|
|
152
|
+
MORGAN <morgan@morgangraphics.com>
|
|
153
|
+
Ismail Khair <ismail.khair@gmail.com>
|
|
154
|
+
Carl Danley <carldanley@gmail.com>
|
|
155
|
+
Mike Petrovich <michael.c.petrovich@gmail.com>
|
|
156
|
+
Greg Lavallee <greglavallee@wapolabs.com>
|
|
157
|
+
Daniel Gálvez <dgalvez@editablething.com>
|
|
158
|
+
Sai Lung Wong <sai.wong@huffingtonpost.com>
|
|
159
|
+
Tom H Fuertes <TomFuertes@gmail.com>
|
|
160
|
+
Roland Eckl <eckl.roland@googlemail.com>
|
|
161
|
+
Jay Merrifield <fracmak@gmail.com>
|
|
162
|
+
Allen J Schmidt Jr <cobrasoft@gmail.com>
|
|
163
|
+
Jonathan Sampson <jjdsampson@gmail.com>
|
|
164
|
+
Marcel Greter <marcel.greter@ocbnet.ch>
|
|
165
|
+
Matthias Jäggli <matthias.jaeggli@gmail.com>
|
|
166
|
+
David Fox <dfoxinator@gmail.com>
|
|
167
|
+
Yiming He <yiminghe@gmail.com>
|
|
168
|
+
Devin Cooper <cooper.semantics@gmail.com>
|
|
169
|
+
Paul Ramos <paul.b.ramos@gmail.com>
|
|
170
|
+
Rod Vagg <rod@vagg.org>
|
|
171
|
+
Bennett Sorbo <bsorbo@gmail.com>
|
|
172
|
+
Sebastian Burkhard <sebi.burkhard@gmail.com>
|
|
173
|
+
Zachary Adam Kaplan <razic@viralkitty.com>
|
|
174
|
+
nanto_vi <nanto@moon.email.ne.jp>
|
|
175
|
+
nanto <nanto@moon.email.ne.jp>
|
|
176
|
+
Danil Somsikov <danilasomsikov@gmail.com>
|
|
177
|
+
Ryunosuke SATO <tricknotes.rs@gmail.com>
|
|
178
|
+
Jean Boussier <jean.boussier@gmail.com>
|
|
179
|
+
Adam Coulombe <me@adam.co>
|
|
180
|
+
Andrew Plummer <plummer.andrew@gmail.com>
|
|
181
|
+
Mark Raddatz <mraddatz@gmail.com>
|
|
182
|
+
Isaac Z. Schlueter <i@izs.me>
|
|
183
|
+
Karl Sieburg <ksieburg@yahoo.com>
|
|
184
|
+
Pascal Borreli <pascal@borreli.com>
|
|
185
|
+
Nguyen Phuc Lam <ruado1987@gmail.com>
|
|
186
|
+
Dmitry Gusev <dmitry.gusev@gmail.com>
|
|
187
|
+
Michał Gołębiowski <m.goleb@gmail.com>
|
|
188
|
+
Li Xudong <istonelee@gmail.com>
|
|
189
|
+
Steven Benner <admin@stevenbenner.com>
|
|
190
|
+
Tom H Fuertes <tomfuertes@gmail.com>
|
|
191
|
+
Renato Oliveira dos Santos <ros3@cin.ufpe.br>
|
|
192
|
+
ros3cin <ros3@cin.ufpe.br>
|
|
193
|
+
Jason Bedard <jason+jquery@jbedard.ca>
|
|
194
|
+
Kyle Robinson Young <kyle@dontkry.com>
|
|
195
|
+
Chris Talkington <chris@talkingtontech.com>
|
|
196
|
+
Eddie Monge <eddie@eddiemonge.com>
|
|
197
|
+
Terry Jones <terry@jon.es>
|
|
198
|
+
Jason Merino <jasonmerino@gmail.com>
|
|
199
|
+
Jeremy Dunck <jdunck@gmail.com>
|
|
200
|
+
Chris Price <price.c@gmail.com>
|
|
201
|
+
Guy Bedford <guybedford@gmail.com>
|
|
202
|
+
Amey Sakhadeo <me@ameyms.com>
|
|
203
|
+
Mike Sidorov <mikes.ekb@gmail.com>
|
|
204
|
+
Anthony Ryan <anthonyryan1@gmail.com>
|
|
205
|
+
Dominik D. Geyer <dominik.geyer@gmail.com>
|
|
206
|
+
George Kats <katsgeorgeek@gmail.com>
|
|
207
|
+
Lihan Li <frankieteardrop@gmail.com>
|
|
208
|
+
Ronny Springer <springer.ronny@gmail.com>
|
|
209
|
+
Chris Antaki <ChrisAntaki@gmail.com>
|
|
210
|
+
Marian Sollmann <marian.sollmann@cargomedia.ch>
|
|
211
|
+
njhamann <njhamann@gmail.com>
|
|
212
|
+
Ilya Kantor <iliakan@gmail.com>
|
|
213
|
+
David Hong <d.hong@me.com>
|
|
214
|
+
John Paul <john@johnkpaul.com>
|
|
215
|
+
Jakob Stoeck <jakob@pokermania.de>
|
|
216
|
+
Christopher Jones <chris@cjqed.com>
|
|
217
|
+
Forbes Lindesay <forbes@lindesay.co.uk>
|
|
218
|
+
S. Andrew Sheppard <andrew@wq.io>
|
|
219
|
+
Leonardo Balter <leonardo.balter@gmail.com>
|
|
220
|
+
Roman Reiß <me@silverwind.io>
|
|
221
|
+
Benjy Cui <benjytrys@gmail.com>
|
|
222
|
+
Rodrigo Rosenfeld Rosas <rr.rosas@gmail.com>
|
|
223
|
+
John Hoven <hovenj@gmail.com>
|
|
224
|
+
Philip Jägenstedt <philip@foolip.org>
|
|
225
|
+
Christian Kosmowski <ksmwsk@gmail.com>
|
|
226
|
+
Liang Peng <poppinlp@gmail.com>
|
|
227
|
+
TJ VanToll <tj.vantoll@gmail.com>
|
|
228
|
+
Senya Pugach <upisfree@outlook.com>
|
|
229
|
+
Aurelio De Rosa <aurelioderosa@gmail.com>
|
|
230
|
+
Nazar Mokrynskyi <nazar@mokrynskyi.com>
|
|
231
|
+
Amit Merchant <bullredeyes@gmail.com>
|
|
232
|
+
Jason Bedard <jason+github@jbedard.ca>
|
|
233
|
+
Arthur Verschaeve <contact@arthurverschaeve.be>
|
|
234
|
+
Dan Hart <danhart@notonthehighstreet.com>
|
|
235
|
+
Bin Xin <rhyzix@gmail.com>
|
|
236
|
+
David Corbacho <davidcorbacho@gmail.com>
|
|
237
|
+
Veaceslav Grimalschi <grimalschi@yandex.ru>
|
|
238
|
+
Daniel Husar <dano.husar@gmail.com>
|
|
239
|
+
Frederic Hemberger <mail@frederic-hemberger.de>
|
|
240
|
+
Ben Toews <mastahyeti@gmail.com>
|
|
241
|
+
Aditya Raghavan <araghavan3@gmail.com>
|
|
242
|
+
Victor Homyakov <vkhomyackov@gmail.com>
|
|
243
|
+
Shivaji Varma <contact@shivajivarma.com>
|
|
244
|
+
Nicolas HENRY <icewil@gmail.com>
|
|
245
|
+
Anne-Gaelle Colom <coloma@westminster.ac.uk>
|
|
246
|
+
George Mauer <gmauer@gmail.com>
|
|
247
|
+
Leonardo Braga <leonardo.braga@gmail.com>
|
|
248
|
+
Stephen Edgar <stephen@netweb.com.au>
|
|
249
|
+
Thomas Tortorini <thomastortorini@gmail.com>
|
|
250
|
+
Winston Howes <winstonhowes@gmail.com>
|
|
251
|
+
Jon Hester <jon.d.hester@gmail.com>
|
|
252
|
+
Alexander O'Mara <me@alexomara.com>
|
|
253
|
+
Bastian Buchholz <buchholz.bastian@googlemail.com>
|
|
254
|
+
Arthur Stolyar <nekr.fabula@gmail.com>
|
|
255
|
+
Calvin Metcalf <calvin.metcalf@gmail.com>
|
|
256
|
+
Mu Haibao <mhbseal@163.com>
|
|
257
|
+
Richard McDaniel <rm0026@uah.edu>
|
|
258
|
+
Chris Rebert <github@rebertia.com>
|
|
259
|
+
Gabriel Schulhof <gabriel.schulhof@intel.com>
|
|
260
|
+
Gilad Peleg <giladp007@gmail.com>
|
|
261
|
+
Martin Naumann <martin@geekonaut.de>
|
|
262
|
+
Marek Lewandowski <m.lewandowski@cksource.com>
|
|
263
|
+
Bruno Pérel <brunoperel@gmail.com>
|
|
264
|
+
Reed Loden <reed@reedloden.com>
|
|
265
|
+
Daniel Nill <daniellnill@gmail.com>
|
|
266
|
+
Yongwoo Jeon <yongwoo.jeon@navercorp.com>
|
|
267
|
+
Sean Henderson <seanh.za@gmail.com>
|
|
268
|
+
Richard Kraaijenhagen <stdin+git@riichard.com>
|
|
269
|
+
Connor Atherton <c.liam.atherton@gmail.com>
|
|
270
|
+
Gary Ye <garysye@gmail.com>
|
|
271
|
+
Christian Grete <webmaster@christiangrete.com>
|
|
272
|
+
Liza Ramo <liza.h.ramo@gmail.com>
|
|
273
|
+
Julian Alexander Murillo <julian.alexander.murillo@gmail.com>
|
|
274
|
+
Joelle Fleurantin <joasqueeniebee@gmail.com>
|
|
275
|
+
Jae Sung Park <alberto.park@gmail.com>
|
|
276
|
+
Jun Sun <klsforever@gmail.com>
|
|
277
|
+
Josh Soref <apache@soref.com>
|
|
278
|
+
Henry Wong <henryw4k@gmail.com>
|
|
279
|
+
Jon Dufresne <jon.dufresne@gmail.com>
|
|
280
|
+
Martijn W. van der Lee <martijn@vanderlee.com>
|
|
281
|
+
Devin Wilson <dwilson6.github@gmail.com>
|
|
282
|
+
Steve Mao <maochenyan@gmail.com>
|
|
283
|
+
Zack Hall <zackhall@outlook.com>
|
|
284
|
+
Bernhard M. Wiedemann <jquerybmw@lsmod.de>
|
|
285
|
+
Todor Prikumov <tono_pr@abv.bg>
|
|
286
|
+
Jha Naman <createnaman@gmail.com>
|
|
287
|
+
William Robinet <william.robinet@conostix.com>
|
|
288
|
+
Alexander Lisianoi <all3fox@gmail.com>
|
|
289
|
+
Vitaliy Terziev <vitaliyterziev@gmail.com>
|
|
290
|
+
Joe Trumbull <trumbull.j@gmail.com>
|
|
291
|
+
Alexander K <xpyro@ya.ru>
|
|
292
|
+
Damian Senn <jquery@topaxi.codes>
|
|
293
|
+
Ralin Chimev <ralin.chimev@gmail.com>
|
|
294
|
+
Felipe Sateler <fsateler@gmail.com>
|
|
295
|
+
Christophe Tafani-Dereeper <christophetd@hotmail.fr>
|
|
296
|
+
Manoj Kumar <nithmanoj@gmail.com>
|
|
297
|
+
David Broder-Rodgers <broder93@gmail.com>
|
|
298
|
+
Alex Louden <alex@louden.com>
|
|
299
|
+
Alex Padilla <alexonezero@outlook.com>
|
|
300
|
+
南漂一卒 <shiy007@qq.com>
|
|
301
|
+
karan-96 <karanbatra96@gmail.com>
|