├── .gitignore ├── README.md ├── dashboard ├── api_browser │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── dashboard │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── libspark │ ├── README.md │ ├── SparkRDD.py │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── manage.py └── templates │ └── api_browser │ └── index.html ├── dashboard_ui ├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── app │ ├── .buildignore │ ├── .htaccess │ ├── 404.html │ ├── favicon.ico │ ├── images │ │ └── yeoman.png │ ├── index.html │ ├── robots.txt │ ├── scripts │ │ ├── app.js │ │ ├── controllers │ │ │ ├── about.js │ │ │ ├── dashboard.js │ │ │ └── main.js │ │ └── services │ │ │ └── request.js │ ├── styles │ │ └── main.css │ └── views │ │ ├── about.html │ │ ├── dashboard.html │ │ └── main.html ├── bower.json ├── package.json └── test │ ├── .jshintrc │ ├── karma.conf.js │ └── spec │ ├── controllers │ ├── about.js │ ├── dashboard.js │ └── main.js │ └── services │ └── request.js ├── dump └── foodRevPy-dev │ ├── PaginationColl.bson │ ├── PaginationColl.metadata.json │ ├── ReviewColl.bson │ ├── ReviewColl.metadata.json │ └── system.indexes.bson ├── examples ├── Foodista │ ├── Foodista │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── libspark │ │ ├── SparkRDD.py │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── manage.py │ └── review │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py └── README.md ├── libspark ├── README.md ├── SparkRDD.py ├── __init__.py ├── admin.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── manage.py └── spark_lib ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/README.md -------------------------------------------------------------------------------- /dashboard/api_browser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/api_browser/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/api_browser/admin.py -------------------------------------------------------------------------------- /dashboard/api_browser/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/api_browser/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/api_browser/models.py -------------------------------------------------------------------------------- /dashboard/api_browser/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/api_browser/tests.py -------------------------------------------------------------------------------- /dashboard/api_browser/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/api_browser/views.py -------------------------------------------------------------------------------- /dashboard/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/dashboard/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/dashboard/settings.py -------------------------------------------------------------------------------- /dashboard/dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/dashboard/urls.py -------------------------------------------------------------------------------- /dashboard/dashboard/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/dashboard/wsgi.py -------------------------------------------------------------------------------- /dashboard/libspark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/libspark/README.md -------------------------------------------------------------------------------- /dashboard/libspark/SparkRDD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/libspark/SparkRDD.py -------------------------------------------------------------------------------- /dashboard/libspark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/libspark/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/libspark/admin.py -------------------------------------------------------------------------------- /dashboard/libspark/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/libspark/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/libspark/models.py -------------------------------------------------------------------------------- /dashboard/libspark/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/libspark/tests.py -------------------------------------------------------------------------------- /dashboard/libspark/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/manage.py -------------------------------------------------------------------------------- /dashboard/templates/api_browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard/templates/api_browser/index.html -------------------------------------------------------------------------------- /dashboard_ui/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /dashboard_ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/.editorconfig -------------------------------------------------------------------------------- /dashboard_ui/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /dashboard_ui/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .tmp 4 | .sass-cache 5 | bower_components 6 | -------------------------------------------------------------------------------- /dashboard_ui/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/.jshintrc -------------------------------------------------------------------------------- /dashboard_ui/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/.travis.yml -------------------------------------------------------------------------------- /dashboard_ui/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/Gruntfile.js -------------------------------------------------------------------------------- /dashboard_ui/app/.buildignore: -------------------------------------------------------------------------------- 1 | *.coffee -------------------------------------------------------------------------------- /dashboard_ui/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/.htaccess -------------------------------------------------------------------------------- /dashboard_ui/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/404.html -------------------------------------------------------------------------------- /dashboard_ui/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/favicon.ico -------------------------------------------------------------------------------- /dashboard_ui/app/images/yeoman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/images/yeoman.png -------------------------------------------------------------------------------- /dashboard_ui/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/index.html -------------------------------------------------------------------------------- /dashboard_ui/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /dashboard_ui/app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/scripts/app.js -------------------------------------------------------------------------------- /dashboard_ui/app/scripts/controllers/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/scripts/controllers/about.js -------------------------------------------------------------------------------- /dashboard_ui/app/scripts/controllers/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/scripts/controllers/dashboard.js -------------------------------------------------------------------------------- /dashboard_ui/app/scripts/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/scripts/controllers/main.js -------------------------------------------------------------------------------- /dashboard_ui/app/scripts/services/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/scripts/services/request.js -------------------------------------------------------------------------------- /dashboard_ui/app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/styles/main.css -------------------------------------------------------------------------------- /dashboard_ui/app/views/about.html: -------------------------------------------------------------------------------- 1 |
This is the about view.
2 | -------------------------------------------------------------------------------- /dashboard_ui/app/views/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/views/dashboard.html -------------------------------------------------------------------------------- /dashboard_ui/app/views/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/app/views/main.html -------------------------------------------------------------------------------- /dashboard_ui/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/bower.json -------------------------------------------------------------------------------- /dashboard_ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/package.json -------------------------------------------------------------------------------- /dashboard_ui/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/test/.jshintrc -------------------------------------------------------------------------------- /dashboard_ui/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/test/karma.conf.js -------------------------------------------------------------------------------- /dashboard_ui/test/spec/controllers/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/test/spec/controllers/about.js -------------------------------------------------------------------------------- /dashboard_ui/test/spec/controllers/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/test/spec/controllers/dashboard.js -------------------------------------------------------------------------------- /dashboard_ui/test/spec/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/test/spec/controllers/main.js -------------------------------------------------------------------------------- /dashboard_ui/test/spec/services/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dashboard_ui/test/spec/services/request.js -------------------------------------------------------------------------------- /dump/foodRevPy-dev/PaginationColl.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dump/foodRevPy-dev/PaginationColl.bson -------------------------------------------------------------------------------- /dump/foodRevPy-dev/PaginationColl.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dump/foodRevPy-dev/PaginationColl.metadata.json -------------------------------------------------------------------------------- /dump/foodRevPy-dev/ReviewColl.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dump/foodRevPy-dev/ReviewColl.bson -------------------------------------------------------------------------------- /dump/foodRevPy-dev/ReviewColl.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dump/foodRevPy-dev/ReviewColl.metadata.json -------------------------------------------------------------------------------- /dump/foodRevPy-dev/system.indexes.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/dump/foodRevPy-dev/system.indexes.bson -------------------------------------------------------------------------------- /examples/Foodista/Foodista/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Foodista/Foodista/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/Foodista/settings.py -------------------------------------------------------------------------------- /examples/Foodista/Foodista/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/Foodista/urls.py -------------------------------------------------------------------------------- /examples/Foodista/Foodista/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/Foodista/wsgi.py -------------------------------------------------------------------------------- /examples/Foodista/libspark/SparkRDD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/libspark/SparkRDD.py -------------------------------------------------------------------------------- /examples/Foodista/libspark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Foodista/libspark/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/libspark/admin.py -------------------------------------------------------------------------------- /examples/Foodista/libspark/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Foodista/libspark/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/libspark/models.py -------------------------------------------------------------------------------- /examples/Foodista/libspark/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/libspark/tests.py -------------------------------------------------------------------------------- /examples/Foodista/libspark/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Foodista/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/manage.py -------------------------------------------------------------------------------- /examples/Foodista/review/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Foodista/review/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/review/admin.py -------------------------------------------------------------------------------- /examples/Foodista/review/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Foodista/review/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/review/models.py -------------------------------------------------------------------------------- /examples/Foodista/review/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/review/tests.py -------------------------------------------------------------------------------- /examples/Foodista/review/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/Foodista/review/views.py -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/examples/README.md -------------------------------------------------------------------------------- /libspark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/libspark/README.md -------------------------------------------------------------------------------- /libspark/SparkRDD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/libspark/SparkRDD.py -------------------------------------------------------------------------------- /libspark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libspark/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/libspark/admin.py -------------------------------------------------------------------------------- /libspark/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libspark/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/libspark/models.py -------------------------------------------------------------------------------- /libspark/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/libspark/tests.py -------------------------------------------------------------------------------- /libspark/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/manage.py -------------------------------------------------------------------------------- /spark_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spark_lib/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/spark_lib/settings.py -------------------------------------------------------------------------------- /spark_lib/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/spark_lib/urls.py -------------------------------------------------------------------------------- /spark_lib/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yellowmessenger/django-libspark/HEAD/spark_lib/wsgi.py --------------------------------------------------------------------------------