[Opengeoscience-developers] OpenGeoscience branch, master, updated. ebaf3a9238de7e4b04832a2535cda706f1d65e8e

Aashish Chaudhary aashish.chaudhary at kitware.com
Tue Apr 16 18:09:56 EDT 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OpenGeoscience".

The branch, master has been updated
       via  ebaf3a9238de7e4b04832a2535cda706f1d65e8e (commit)
       via  5cc319baa300d229f3af0c6a6b80a6810298b81e (commit)
       via  e1ab67c216a8c0a9924f59a05d97f2dbe8f0fa7e (commit)
       via  afcce2441b8e664efe975ccc37467017e1abadd8 (commit)
       via  2c60f987bb89bcd3eb9201b3fce28a8be1a0232d (commit)
       via  6aaddbd8b65f0072f7043a476c3ea758bd9bc67b (commit)
       via  ce6650134e8986735f191d0eb17559ac99c2f10d (commit)
       via  0b7a2535dd06557869aedfc6ffa03b9912f4dae1 (commit)
       via  17a55bf079bedcad14acb3ae412eb9b948535345 (commit)
       via  ee1df04a58c0da4575cbd38315399c8606964e09 (commit)
       via  a9dbfa20c646d826b68e6e92bac52320e04150ab (commit)
       via  43d6dcacd00daede0f03b192121228bea8747c5a (commit)
       via  7fbbec5957c4a6ab24ffa024ac8c692cce231fc1 (commit)
       via  69b493a428824da3555e51d8e7ce4c0109eb3478 (commit)
       via  84e66629d75a559a018100bb428b4a11d467ee8a (commit)
       via  bb9d6720335bd7e8886d837b575b1cd8c5adf30f (commit)
       via  a15b5a9b2e462478e310b36b69c9ec21885f68cf (commit)
       via  8d1a01fc576d4951b3b85b219d34390447d8e202 (commit)
       via  2630fd67fd4bfc65172ac29c8f1a0e97e8b2daae (commit)
       via  61a4cc680ec4e7f7f0307ea0abaf5dec08ad6fb0 (commit)
       via  2a2d819f4a3f1e33c7bc85a1a004589e04c469f0 (commit)
       via  b030d0677c17c0960706bab9ad6c962ba3a9c837 (commit)
       via  54975f17df952c3ac68525a04f5bc1862e4422ed (commit)
       via  780ee822e9c7a0bf443c87317f2c4e3b67ee88f7 (commit)
       via  b5d55e20c5e78bc66d5d859097ac35a77a574d9c (commit)
       via  824f3c81a9dddf0c9ff00609d658a404408a7479 (commit)
      from  a075b1fc8b33df73c15c1e0507d002536cad4d11 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://public.kitware.com/gitweb?p=OpenGeoscience/geoweb.git;a=commitdiff;h=ebaf3a9238de7e4b04832a2535cda706f1d65e8e
commit ebaf3a9238de7e4b04832a2535cda706f1d65e8e
Merge: a075b1f 5cc319b
Author: Aashish Chaudhary <aashish.chaudhary at kitware.com>
Date:   Tue Apr 16 18:09:47 2013 -0400

    Merge remote-tracking branch 'origin/ui_enh_vis_controls'
    
    * origin/ui_enh_vis_controls: (25 commits)
      Implemented triggers for map and used them for UI
      Clean up the code some
      Move creation of controls from application to library
      For now do not create an entry for the center or the source
      Found a workaround for not getting mouse up events on scroll bar
      Fixed style
      Fixing how we handle mouse events
      Removed the padding from the control pannel
      Fixed styling
      Added missing file
      Use table layout fixed
      Got some of the view-controls working
      Adding support to set center of map via UI
      Added useful API to query state of boundries visibility
      Implemented multi-geometry feature and got toggle country boundries working
      Added UI to toggle country boundries
      Fixed zoom not respecting camera's current position
      Added option to zoom via UI
      Various UI improvements
      Added country boundries to the map
      ...

 CMakeLists.txt                    |    4 +
 web/apps/archive/archive.js       |   62 ++--
 web/apps/archive/index.html       |  142 +++++-----
 web/lib/geo/command.js            |    4 +-
 web/lib/geo/data.js               |  579 +++++++++++++++++++++++++++++++++++++
 web/lib/geo/feature.js            |   32 ++-
 web/lib/geo/layer.js              |   14 +-
 web/lib/geo/map.js                |  142 +++++++--
 web/lib/geo/mapInteractorStyle.js |   48 +++-
 web/lib/ui/gis.js                 |  188 ++++++++++++-
 web/lib/vgl/camera.js             |    4 +-
 web/lib/vgl/geojsonReader.js      |   32 +-
 web/lib/vgl/groupMapper.js        |   92 ++++++
 web/lib/vgl/mapper.js             |   23 ++-
 web/lib/vgl/shader.js             |    6 +-
 15 files changed, 1199 insertions(+), 173 deletions(-)

-----------------------------------------------------------------------

Summary of changes:
 CMakeLists.txt                    |    4 +
 web/apps/archive/archive.js       |   62 ++--
 web/apps/archive/index.html       |  142 +++++-----
 web/lib/geo/command.js            |    4 +-
 web/lib/geo/data.js               |  579 +++++++++++++++++++++++++++++++++++++
 web/lib/geo/feature.js            |   32 ++-
 web/lib/geo/layer.js              |   14 +-
 web/lib/geo/map.js                |  142 +++++++--
 web/lib/geo/mapInteractorStyle.js |   48 +++-
 web/lib/ui/gis.js                 |  188 ++++++++++++-
 web/lib/vgl/camera.js             |    4 +-
 web/lib/vgl/geojsonReader.js      |   32 +-
 web/lib/vgl/groupMapper.js        |   92 ++++++
 web/lib/vgl/mapper.js             |   23 ++-
 web/lib/vgl/shader.js             |    6 +-
 15 files changed, 1199 insertions(+), 173 deletions(-)
 create mode 100644 web/lib/geo/data.js
 create mode 100644 web/lib/vgl/groupMapper.js


hooks/post-receive
-- 
OpenGeoscience



More information about the Opengeoscience-developers mailing list