[Opengeoscience-developers] OpenGeoscience branch, next, updated. master-no-submodule-38-g54765c6
Aashish Chaudhary
aashish.chaudhary at kitware.com
Wed Oct 30 09:22:15 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, next has been updated
via 54765c6b831f5d4f0e0bdb9ee4fa34a5e1b4a5d5 (commit)
via b48a86925b02e200e96303a08bb2fa80c3e1691f (commit)
via 60d3487e9be189f637041a220796315716847217 (commit)
via fd8c1d24446ecfcaa6f85ef6e0e0959d5f69c0ed (commit)
via dbf826a0ca8178d37155590242be3aaacdb6d743 (commit)
from 62093ee20db24f97bef7604abfbfee9fa6fa01d9 (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=54765c6b831f5d4f0e0bdb9ee4fa34a5e1b4a5d5
commit 54765c6b831f5d4f0e0bdb9ee4fa34a5e1b4a5d5
Merge: 62093ee b48a869
Author: Aashish Chaudhary <aashish.chaudhary at kitware.com>
Date: Wed Oct 30 09:22:06 2013 -0400
Merge remote-tracking branch 'origin/99-esgf-session-authentication' into next
CMakeLists.txt | 2 +-
cmake/configure_server.cmake.in | 6 +-
cmake/geoweb.conf.in | 23 +
cmake/server.conf.in | 17 +-
geoweb | 12 +-
geoweb.py | 41 +-
login.html | 113 +
modules/authentication.py | 63 +
modules/esgf/__init__.py | 67 -
modules/esgf/authentication.py | 34 +
modules/esgf/download.py | 77 +-
modules/esgf/query.py | 28 +-
modules/esgf/registration.py | 56 +
modules/esgf/utils.py | 22 +
modules/geodata.py => services/data.py | 20 +-
modules/esgf/__init__.py => services/esgf.py | 65 +-
{modules => services}/mongo.py | 1 +
services/session.py | 15 +
services/vistrail.py | 3 +-
utils/__init__.py | 2 +-
web/apps/archive/archive.css | 14 +-
web/apps/archive/archive.js | 269 +-
web/apps/archive/index.html | 58 +-
web/common/bootstrap-3.0/css/bootstrap-theme.css | 384 ++
.../bootstrap-3.0/css/bootstrap-theme.min.css | 1 +
web/common/bootstrap-3.0/css/bootstrap.css | 6805 ++++++++++++++++++++
web/common/bootstrap-3.0/css/bootstrap.min.css | 9 +
.../fonts/glyphicons-halflings-regular.eot | Bin 0 -> 14079 bytes
.../fonts/glyphicons-halflings-regular.svg | 228 +
.../fonts/glyphicons-halflings-regular.ttf | Bin 0 -> 29512 bytes
.../fonts/glyphicons-halflings-regular.woff | Bin 0 -> 16448 bytes
web/common/bootstrap-3.0/js/bootstrap.js | 1999 ++++++
web/common/bootstrap-3.0/js/bootstrap.min.js | 6 +
web/index.html | 1 +
web/lib/geojs | 2 +-
35 files changed, 10146 insertions(+), 297 deletions(-)
-----------------------------------------------------------------------
Summary of changes:
CMakeLists.txt | 2 +-
cmake/configure_server.cmake.in | 6 +-
cmake/geoweb.conf.in | 23 +
cmake/server.conf.in | 17 +-
geoweb | 12 +-
geoweb.py | 41 +-
login.html | 113 +
modules/authentication.py | 63 +
modules/esgf/__init__.py | 67 -
modules/esgf/authentication.py | 34 +
modules/esgf/download.py | 77 +-
modules/esgf/query.py | 28 +-
modules/esgf/registration.py | 56 +
modules/esgf/utils.py | 22 +
modules/geodata.py => services/data.py | 20 +-
modules/esgf/__init__.py => services/esgf.py | 65 +-
{modules => services}/mongo.py | 1 +
services/session.py | 15 +
services/vistrail.py | 3 +-
utils/__init__.py | 2 +-
web/apps/archive/archive.css | 14 +-
web/apps/archive/archive.js | 269 +-
web/apps/archive/index.html | 58 +-
web/common/bootstrap-3.0/css/bootstrap-theme.css | 384 ++
.../bootstrap-3.0/css/bootstrap-theme.min.css | 1 +
web/common/bootstrap-3.0/css/bootstrap.css | 6805 ++++++++++++++++++++
web/common/bootstrap-3.0/css/bootstrap.min.css | 9 +
.../fonts/glyphicons-halflings-regular.eot | Bin 0 -> 14079 bytes
.../fonts/glyphicons-halflings-regular.svg | 228 +
.../fonts/glyphicons-halflings-regular.ttf | Bin 0 -> 29512 bytes
.../fonts/glyphicons-halflings-regular.woff | Bin 0 -> 16448 bytes
web/common/bootstrap-3.0/js/bootstrap.js | 1999 ++++++
web/common/bootstrap-3.0/js/bootstrap.min.js | 6 +
web/index.html | 1 +
web/lib/geojs | 2 +-
35 files changed, 10146 insertions(+), 297 deletions(-)
create mode 100644 cmake/geoweb.conf.in
create mode 100644 login.html
create mode 100644 modules/authentication.py
create mode 100644 modules/esgf/authentication.py
create mode 100644 modules/esgf/registration.py
create mode 100644 modules/esgf/utils.py
rename modules/geodata.py => services/data.py (74%)
copy modules/esgf/__init__.py => services/esgf.py (51%)
rename {modules => services}/mongo.py (99%)
create mode 100644 services/session.py
create mode 100644 web/common/bootstrap-3.0/css/bootstrap-theme.css
create mode 100644 web/common/bootstrap-3.0/css/bootstrap-theme.min.css
create mode 100644 web/common/bootstrap-3.0/css/bootstrap.css
create mode 100644 web/common/bootstrap-3.0/css/bootstrap.min.css
create mode 100644 web/common/bootstrap-3.0/fonts/glyphicons-halflings-regular.eot
create mode 100644 web/common/bootstrap-3.0/fonts/glyphicons-halflings-regular.svg
create mode 100644 web/common/bootstrap-3.0/fonts/glyphicons-halflings-regular.ttf
create mode 100644 web/common/bootstrap-3.0/fonts/glyphicons-halflings-regular.woff
create mode 100644 web/common/bootstrap-3.0/js/bootstrap.js
create mode 100644 web/common/bootstrap-3.0/js/bootstrap.min.js
hooks/post-receive
--
OpenGeoscience
More information about the Opengeoscience-developers
mailing list