[Opengeoscience-developers] OpenGeoscience branch, 54-2-workflow-construction, updated. 584b285e8c01d706190bbe0d5931b61f1b67f0f6

Ben Burnett bburnett at poly.edu
Thu Aug 8 17:52:14 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, 54-2-workflow-construction has been updated
       via  584b285e8c01d706190bbe0d5931b61f1b67f0f6 (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  3facecf52664ecd7968bbb0b41f8e60eae92c7da (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=584b285e8c01d706190bbe0d5931b61f1b67f0f6
commit 584b285e8c01d706190bbe0d5931b61f1b67f0f6
Merge: 3facecf 20199f1
Author: Ben Burnett <bburnett at poly.edu>
Date:   Thu Aug 8 17:51:56 2013 -0400

    Merge branch '8-esgf-query' into 54-2-workflow-construction
    
    Conflicts:
    	web/apps/archive/archive.js
    	web/apps/archive/index.html
    	web/lib/wfl/workflowUtils.js

 .gitignore                                         |    3 +-
 CMakeLists.txt                                     |    1 +
 geocelery                                          |   32 +
 geoweb.py                                          |    7 +
 modules/esgf/__init__.py                           |   58 +
 modules/esgf/download.py                           |  112 ++
 modules/esgf/query.py                              |   68 +
 .../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                        |  323 ++++-
 web/apps/archive/index.html                        |   79 +-
 web/lib/geo/archiveLayerSource.js                  |    6 +-
 web/lib/geo/featureLayer.js                        |   41 +-
 web/lib/geo/layerSource.js                         |   16 +
 web/lib/geo/map.js                                 |    4 +-
 web/lib/geo/openStreetMapLayer.js                  |    4 +-
 web/lib/geoweb.min.js                              |    1 +
 web/lib/ui/gis.js                                  |  314 +++--
 web/lib/vgl/renderer.js                            |    2 +-
 35 files changed, 3575 insertions(+), 183 deletions(-)

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

Summary of changes:
 .gitignore                                         |    3 +-
 CMakeLists.txt                                     |    1 +
 geocelery                                          |   32 +
 geoweb.py                                          |    7 +
 modules/esgf/__init__.py                           |   58 +
 modules/esgf/download.py                           |  112 ++
 modules/esgf/query.py                              |   68 +
 .../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                        |  323 ++++-
 web/apps/archive/index.html                        |   79 +-
 web/lib/geo/archiveLayerSource.js                  |    6 +-
 web/lib/geo/featureLayer.js                        |   41 +-
 web/lib/geo/layerSource.js                         |   16 +
 web/lib/geo/map.js                                 |    4 +-
 web/lib/geo/openStreetMapLayer.js                  |    4 +-
 web/lib/geoweb.min.js                              |    1 +
 web/lib/ui/gis.js                                  |  314 +++--
 web/lib/vgl/renderer.js                            |    2 +-
 35 files changed, 3575 insertions(+), 183 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
 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