Skip to content

Commit de8fb57

Browse files
Merge pull request EarthSystemCoG#1411 from EarthSystemCoG/revert-1407-cleanup
Revert "Cleanup files that should be excluded as specified in .gitignore"
2 parents c717133 + a51a8c2 commit de8fb57

File tree

154 files changed

+1863
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+1863
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@
77
*.pyc
88
*.eggs
99

10+
# CKEditor
11+
cog/static/cog/ckeditor
12+
1013
# static files
1114
static/
1215

16+
1317
# site media
1418
site_media/
1519

database/django.data

364 KB
Binary file not shown.

pipdeptree.txt

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
nexus-client==0.0.1
2+
- httplib2 [required: ==0.9.0, installed: 0.9]
3+
- oauth2 [required: ==1.5.167, installed: 1.5.167]
4+
- httplib2 [installed: 0.9]
5+
- requests [required: ==1.2.3, installed: 1.2.3]
6+
- PyYAML [required: ==3.10, installed: 3.10]
7+
- rsa [required: ==3.0.1, installed: 3.0.1]
8+
- pyasn1 [required: >=0.0.13, installed: 0.1.9]
9+
pywps==3.2.1
10+
wsgiref==0.1.2
11+
python-dateutil==2.4.2
12+
- six [required: >=1.5, installed: 1.9.0]
13+
cog==2.14.0
14+
- pil [required: ==1.1.7, installed: 1.1.7]
15+
- django [required: ==1.8.3, installed: 1.8.3]
16+
- django-grappelli [required: ==2.4.5, installed: 2.4.5]
17+
- django-openid-auth [required: ==0.5, installed: 0.5]
18+
- django-pagination [required: ==1.0.7, installed: 1.0.7]
19+
- sqlalchemy [required: ==0.9.2, installed: 0.9.2]
20+
- south [required: ==1.0.0, installed: 1.0]
21+
- psycopg2 [required: ==2.5.2, installed: 2.5.2]
22+
- python-openid [required: ==2.2.5, installed: 2.2.5]
23+
- passlib [required: ==1.6.2, installed: 1.6.2]
24+
- pysqlite [required: ==2.6.3, installed: 2.6.3]
25+
- django-contrib-comments [required: ==1.6.1, installed: 1.6.1]
26+
- Django [required: >=1.6, installed: 1.8.3]
27+
- globusonline-transfer-api-client [required: ==0.10.16, installed: 0.10.16]
28+
- pillow [required: ==2.8.2, installed: 3.0.0]
29+
- django-simple-captcha [required: ==0.4.5, installed: 0.4.5]
30+
- setuptools
31+
- six [required: >=1.2.0, installed: 1.9.0]
32+
- Django [required: >=1.4, installed: 1.8.3]

setup/manage.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env python
2+
import os
3+
import sys
4+
5+
if __name__ == "__main__":
6+
7+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "COG.settings")
8+
9+
from django.core.management import execute_from_command_line
10+
11+
execute_from_command_line(sys.argv)
12+

setup/wsgi.py

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
"""
2+
WSGI config for cog_cu project.
3+
4+
This module contains the WSGI application used by Django's development server
5+
and any production WSGI deployments. It should expose a module-level variable
6+
named ``application``. Django's ``runserver`` and ``runfcgi`` commands discover
7+
this application via the ``WSGI_APPLICATION`` setting.
8+
9+
Usually you will have the standard Django WSGI application here, but it also
10+
might make sense to replace the whole Django WSGI application with a custom one
11+
that later delegates to the Django one. For example, you could introduce WSGI
12+
middleware here, or combine a Django application with an application of another
13+
framework.
14+
15+
"""
16+
import os, sys
17+
18+
# We defer to a DJANGO_SETTINGS_MODULE already in the environment. This breaks
19+
# if running multiple sites in the same mod_wsgi process. To fix this, use
20+
# mod_wsgi daemon mode with each site in its own daemon process, or use
21+
# os.environ["DJANGO_SETTINGS_MODULE"] = "cog_cu.settings"
22+
# to load the 'cog' module:
23+
sys.path.insert(0, '/data/web/projects/cog_cu/COG')
24+
# to load the configuration file:
25+
os.environ["COG_CONFIG_DIR"] = "/data/web/projects/cog_cu"
26+
# to reference the proper django settings:
27+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "COG.settings")
28+
29+
# This application object is used by any WSGI server configured to use this
30+
# file. This includes Django's development server, if the WSGI_APPLICATION
31+
# setting points here.
32+
from django.core.wsgi import get_wsgi_application
33+
application = get_wsgi_application()
34+
35+
# Apply WSGI middleware here.
36+
# from helloworld.wsgi import HelloWorldApplication
37+
# application = HelloWorldApplication(application)

site_media/docs/2011_W4.pdf

75.1 KB
Binary file not shown.

site_media/docs/2011_W4_1.pdf

75.1 KB
Binary file not shown.

site_media/docs/2011_W4_2.pdf

75.1 KB
Binary file not shown.

site_media/docs/AdvectionProject.pdf

114 KB
Binary file not shown.
114 KB
Binary file not shown.

0 commit comments

Comments
 (0)