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

Aashish Chaudhary aashish.chaudhary at kitware.com
Mon Aug 12 15:12:51 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  aa1f0ec9b0cf61cbb6f9579e96111cf52e04d4ca (commit)
       via  20199f189d65522672597cd4913631db57cff066 (commit)
       via  a75109b1f7625eccf698266592ebb822d2e76304 (commit)
       via  056b7be7f4c3af7a0d0f618102a672ef15c5aa2b (commit)
       via  2673c9a1f9e79bd695eaa6c00ee5c2790091c1fd (commit)
       via  bbc6ce71277e0f074b4d88949ae08f4d092ba795 (commit)
       via  78ce1bd29bbb5bcce949a527c1486206d6faea5a (commit)
       via  ec800afb3204db11abb39fffab675438ac42c7ed (commit)
       via  605c3f292116e8b458a592b5c9db828d35abdc6c (commit)
       via  0f4407127aa5e122960f89a007b61afcea392f7d (commit)
       via  cbfa1511a48be4cb22dd2369a25abfa2a2bf3d29 (commit)
       via  6401083ba7b38e4fba19e22a48490fa315bb1706 (commit)
      from  9e7bf26e0904cb439c8e582958d6ba482d293a64 (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=aa1f0ec9b0cf61cbb6f9579e96111cf52e04d4ca
commit aa1f0ec9b0cf61cbb6f9579e96111cf52e04d4ca
Merge: 9e7bf26 20199f1
Author: Aashish Chaudhary <aashish.chaudhary at kitware.com>
Date:   Mon Aug 12 15:12:36 2013 -0400

    Merge remote-tracking branch 'origin/8-esgf-query'
    
    * origin/8-esgf-query:
      Use enter/return key press to dismiss login dialog
      Use OpenID identifer to extract server name
      Add MyProxyClient to path for geoweb
      Remove unused file (modules/esgf/down.py)
      Add lineSource.js to web/lib/geoweb.min.js
      Fix problems introduced by rebase
      Add ability to toggle layers
      Clean up if comparision
      Add python script to launch celery
      Add MyProxyClient code in modules/thirdparty
      Enable ESGF query/download

 CMakeLists.txt                                     |    1 +
 geocelery                                          |   32 +
 geoweb.py                                          |    7 +
 modules/esgf/__init__.py                           |   58 +
 modules/esgf/download.py                           |  112 ++
 modules/esgf/query.py                              |   68 +
 modules/logging.py                                 |   13 -
 .../MyProxyClient.egg-info/PKG-INFO                |   50 +
 .../MyProxyClient.egg-info/SOURCES.txt             |   17 +
 .../MyProxyClient.egg-info/dependency_links.txt    |    1 +
 .../MyProxyClient.egg-info/entry_points.txt        |    2 +
 .../MyProxyClient.egg-info/not-zip-safe            |    1 +
 .../MyProxyClient.egg-info/requires.txt            |    1 +
 .../MyProxyClient.egg-info/top_level.txt           |    1 +
 modules/thirdparty/MyProxyClient-1.3.0/PKG-INFO    |   50 +
 modules/thirdparty/MyProxyClient-1.3.0/README      |   28 +
 .../MyProxyClient-1.3.0/myproxy/__init__.py        |   12 +
 .../MyProxyClient-1.3.0/myproxy/client.py          | 1583 ++++++++++++++++++++
 .../MyProxyClient-1.3.0/myproxy/script.py          |  235 +++
 .../MyProxyClient-1.3.0/myproxy/test/__init__.py   |   10 +
 .../myproxy/test/test_myproxyclient.py             |  350 +++++
 .../MyProxyClient-1.3.0/myproxy/utils/__init__.py  |   22 +
 .../MyProxyClient-1.3.0/myproxy/utils/openssl.py   |  233 +++
 modules/thirdparty/MyProxyClient-1.3.0/setup.cfg   |    6 +
 modules/thirdparty/MyProxyClient-1.3.0/setup.py    |   85 ++
 web/apps/archive/archive.js                        |  315 ++++-
 web/apps/archive/index.html                        |   82 +-
 web/apps/archive/workflow.js                       |   28 +-
 web/lib/geo/archiveLayerSource.js                  |    6 +-
 web/lib/geo/featureLayer.js                        |   41 +-
 web/lib/geo/layerSource.js                         |   16 +
 web/lib/geo/map.js                                 |    6 +-
 web/lib/geo/openStreetMapLayer.js                  |    4 +-
 web/lib/geoweb.min.js                              |    1 +
 web/lib/ui/gis.js                                  |  314 +++--
 web/lib/vgl/renderer.js                            |    2 +-
 36 files changed, 3588 insertions(+), 205 deletions(-)

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

Summary of changes:
 CMakeLists.txt                                     |    1 +
 geocelery                                          |   32 +
 geoweb.py                                          |    7 +
 modules/esgf/__init__.py                           |   58 +
 modules/esgf/download.py                           |  112 ++
 modules/esgf/query.py                              |   68 +
 modules/logging.py                                 |   13 -
 .../MyProxyClient.egg-info/PKG-INFO                |   50 +
 .../MyProxyClient.egg-info/SOURCES.txt             |   17 +
 .../MyProxyClient.egg-info/dependency_links.txt    |    1 +
 .../MyProxyClient.egg-info/entry_points.txt        |    2 +
 .../MyProxyClient.egg-info/not-zip-safe            |    1 +
 .../MyProxyClient.egg-info/requires.txt            |    1 +
 .../MyProxyClient.egg-info/top_level.txt           |    1 +
 modules/thirdparty/MyProxyClient-1.3.0/PKG-INFO    |   50 +
 modules/thirdparty/MyProxyClient-1.3.0/README      |   28 +
 .../MyProxyClient-1.3.0/myproxy/__init__.py        |   12 +
 .../MyProxyClient-1.3.0/myproxy/client.py          | 1583 ++++++++++++++++++++
 .../MyProxyClient-1.3.0/myproxy/script.py          |  235 +++
 .../MyProxyClient-1.3.0/myproxy/test/__init__.py   |   10 +
 .../myproxy/test/test_myproxyclient.py             |  350 +++++
 .../MyProxyClient-1.3.0/myproxy/utils/__init__.py  |   22 +
 .../MyProxyClient-1.3.0/myproxy/utils/openssl.py   |  233 +++
 modules/thirdparty/MyProxyClient-1.3.0/setup.cfg   |    6 +
 modules/thirdparty/MyProxyClient-1.3.0/setup.py    |   85 ++
 web/apps/archive/archive.js                        |  315 ++++-
 web/apps/archive/index.html                        |   82 +-
 web/apps/archive/workflow.js                       |   28 +-
 web/lib/geo/archiveLayerSource.js                  |    6 +-
 web/lib/geo/featureLayer.js                        |   41 +-
 web/lib/geo/layerSource.js                         |   16 +
 web/lib/geo/map.js                                 |    6 +-
 web/lib/geo/openStreetMapLayer.js                  |    4 +-
 web/lib/geoweb.min.js                              |    1 +
 web/lib/ui/gis.js                                  |  314 +++--
 web/lib/vgl/renderer.js                            |    2 +-
 36 files changed, 3588 insertions(+), 205 deletions(-)
 create mode 100755 geocelery
 create mode 100644 modules/esgf/__init__.py
 create mode 100644 modules/esgf/download.py
 create mode 100644 modules/esgf/query.py
 delete mode 100644 modules/logging.py
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/MyProxyClient.egg-info/PKG-INFO
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/MyProxyClient.egg-info/SOURCES.txt
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/MyProxyClient.egg-info/dependency_links.txt
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/MyProxyClient.egg-info/entry_points.txt
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/MyProxyClient.egg-info/not-zip-safe
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/MyProxyClient.egg-info/requires.txt
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/MyProxyClient.egg-info/top_level.txt
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/PKG-INFO
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/README
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/myproxy/__init__.py
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/myproxy/client.py
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/myproxy/script.py
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/myproxy/test/__init__.py
 create mode 100755 modules/thirdparty/MyProxyClient-1.3.0/myproxy/test/test_myproxyclient.py
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/myproxy/utils/__init__.py
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/myproxy/utils/openssl.py
 create mode 100644 modules/thirdparty/MyProxyClient-1.3.0/setup.cfg
 create mode 100755 modules/thirdparty/MyProxyClient-1.3.0/setup.py


hooks/post-receive
-- 
OpenGeoscience



More information about the Opengeoscience-developers mailing list