├── .gitignore ├── ConferenceCentral_Complete ├── LICENSE ├── README.md ├── app.yaml ├── conference.py ├── cron.yaml ├── index.yaml ├── main.py ├── models.py ├── settings.py ├── static │ ├── bootstrap │ │ └── css │ │ │ ├── bootstrap-cosmo.css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap.css │ │ │ ├── main.css │ │ │ └── offcanvas.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── CloudPlatform_logo.png │ │ ├── ajax-loader.gif │ │ ├── business1.jpg │ │ ├── business2.jpg │ │ ├── business3.jpg │ │ ├── favicon.ico │ │ └── meeting-room.jpg │ ├── js │ │ ├── app.js │ │ └── controllers.js │ └── partials │ │ ├── conference_detail.html │ │ ├── create_conferences.html │ │ ├── home.html │ │ ├── login.modal.html │ │ ├── profile.html │ │ └── show_conferences.html ├── templates │ └── index.html └── utils.py ├── LICENSE ├── Lesson_2 ├── 000_Hello_Endpoints │ ├── app.yaml │ ├── helloworld_api.py │ └── static │ │ ├── hello.js │ │ └── index.html ├── 001_Hello_Endpoints_Solutions │ ├── app.yaml │ ├── helloworld_api.py │ └── static │ │ ├── hello.js │ │ └── index.html └── 00_Conference_Central │ ├── LICENSE │ ├── README.md │ ├── app.yaml │ ├── conference.py │ ├── models.py │ ├── settings.py │ ├── static │ ├── bootstrap │ │ └── css │ │ │ ├── bootstrap-cosmo.css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap.css │ │ │ ├── main.css │ │ │ └── offcanvas.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── CloudPlatform_logo.png │ │ ├── ajax-loader.gif │ │ ├── business1.jpg │ │ ├── business2.jpg │ │ ├── business3.jpg │ │ ├── favicon.ico │ │ └── meeting-room.jpg │ ├── js │ │ ├── app.js │ │ └── controllers.js │ └── partials │ │ ├── conference_detail.html │ │ ├── create_conferences.html │ │ ├── home.html │ │ ├── login.modal.html │ │ ├── profile.html │ │ └── show_conferences.html │ └── templates │ └── index.html ├── Lesson_3 ├── 00_Conference_Central │ ├── LICENSE │ ├── README.md │ ├── app.yaml │ ├── conference.py │ ├── models.py │ ├── settings.py │ ├── static │ │ ├── bootstrap │ │ │ └── css │ │ │ │ ├── bootstrap-cosmo.css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── main.css │ │ │ │ └── offcanvas.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── CloudPlatform_logo.png │ │ │ ├── ajax-loader.gif │ │ │ ├── business1.jpg │ │ │ ├── business2.jpg │ │ │ ├── business3.jpg │ │ │ ├── favicon.ico │ │ │ └── meeting-room.jpg │ │ ├── js │ │ │ ├── app.js │ │ │ └── controllers.js │ │ └── partials │ │ │ ├── conference_detail.html │ │ │ ├── create_conferences.html │ │ │ ├── home.html │ │ │ ├── login.modal.html │ │ │ ├── profile.html │ │ │ └── show_conferences.html │ └── templates │ │ └── index.html └── additions │ └── utils.py ├── Lesson_4 ├── 00_Conference_Central │ ├── LICENSE │ ├── README.md │ ├── app.yaml │ ├── conference.py │ ├── models.py │ ├── settings.py │ ├── static │ │ ├── bootstrap │ │ │ └── css │ │ │ │ ├── bootstrap-cosmo.css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── main.css │ │ │ │ └── offcanvas.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── CloudPlatform_logo.png │ │ │ ├── ajax-loader.gif │ │ │ ├── business1.jpg │ │ │ ├── business2.jpg │ │ │ ├── business3.jpg │ │ │ ├── favicon.ico │ │ │ └── meeting-room.jpg │ │ ├── js │ │ │ ├── app.js │ │ │ └── controllers.js │ │ └── partials │ │ │ ├── conference_detail.html │ │ │ ├── create_conferences.html │ │ │ ├── home.html │ │ │ ├── login.modal.html │ │ │ ├── profile.html │ │ │ └── show_conferences.html │ ├── templates │ │ └── index.html │ └── utils.py └── Additions │ ├── TODO_1_conference.py │ ├── TODO_1_models.py │ ├── TODO_2_conference.py │ ├── TODO_2_models.py │ ├── TODO_3_conference.py │ ├── TODO_4_conference.py │ ├── TODO_5_conference.py │ ├── TODO_6_conference.py │ ├── TODO_6_models.py │ ├── TODO_7_conference.py │ ├── conference_api.partial.txt │ └── conference_models.partial.txt ├── Lesson_5 ├── 00_Conference_Central │ ├── LICENSE │ ├── README.md │ ├── app.yaml │ ├── conference.py │ ├── index.yaml │ ├── main.py │ ├── models.py │ ├── settings.py │ ├── static │ │ ├── bootstrap │ │ │ └── css │ │ │ │ ├── bootstrap-cosmo.css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── main.css │ │ │ │ └── offcanvas.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── CloudPlatform_logo.png │ │ │ ├── ajax-loader.gif │ │ │ ├── business1.jpg │ │ │ ├── business2.jpg │ │ │ ├── business3.jpg │ │ │ ├── favicon.ico │ │ │ └── meeting-room.jpg │ │ ├── js │ │ │ ├── app.js │ │ │ └── controllers.js │ │ └── partials │ │ │ ├── conference_detail.html │ │ │ ├── create_conferences.html │ │ │ ├── home.html │ │ │ ├── login.modal.html │ │ │ ├── profile.html │ │ │ └── show_conferences.html │ ├── templates │ │ └── index.html │ └── utils.py └── Additions │ ├── TODO_1_app.yaml │ ├── TODO_1_conference.py │ ├── TODO_1_main.py │ ├── TODO_1_models.py │ ├── TODO_2_app.yaml │ ├── TODO_2_conference.py │ ├── TODO_2_main.py │ └── TODO_3_cron.yaml └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/.gitignore -------------------------------------------------------------------------------- /ConferenceCentral_Complete/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/LICENSE -------------------------------------------------------------------------------- /ConferenceCentral_Complete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/README.md -------------------------------------------------------------------------------- /ConferenceCentral_Complete/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/app.yaml -------------------------------------------------------------------------------- /ConferenceCentral_Complete/conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/conference.py -------------------------------------------------------------------------------- /ConferenceCentral_Complete/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/cron.yaml -------------------------------------------------------------------------------- /ConferenceCentral_Complete/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/index.yaml -------------------------------------------------------------------------------- /ConferenceCentral_Complete/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/main.py -------------------------------------------------------------------------------- /ConferenceCentral_Complete/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/models.py -------------------------------------------------------------------------------- /ConferenceCentral_Complete/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/settings.py -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/bootstrap/css/bootstrap-cosmo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/bootstrap/css/bootstrap-cosmo.css -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/bootstrap/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/bootstrap/css/main.css -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/bootstrap/css/offcanvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/bootstrap/css/offcanvas.css -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/img/CloudPlatform_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/img/CloudPlatform_logo.png -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/img/business1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/img/business1.jpg -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/img/business2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/img/business2.jpg -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/img/business3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/img/business3.jpg -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/img/favicon.ico -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/img/meeting-room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/img/meeting-room.jpg -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/js/app.js -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/js/controllers.js -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/partials/conference_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/partials/conference_detail.html -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/partials/create_conferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/partials/create_conferences.html -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/partials/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/partials/home.html -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/partials/login.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/partials/login.modal.html -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/partials/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/partials/profile.html -------------------------------------------------------------------------------- /ConferenceCentral_Complete/static/partials/show_conferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/static/partials/show_conferences.html -------------------------------------------------------------------------------- /ConferenceCentral_Complete/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/templates/index.html -------------------------------------------------------------------------------- /ConferenceCentral_Complete/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/ConferenceCentral_Complete/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/LICENSE -------------------------------------------------------------------------------- /Lesson_2/000_Hello_Endpoints/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/000_Hello_Endpoints/app.yaml -------------------------------------------------------------------------------- /Lesson_2/000_Hello_Endpoints/helloworld_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/000_Hello_Endpoints/helloworld_api.py -------------------------------------------------------------------------------- /Lesson_2/000_Hello_Endpoints/static/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/000_Hello_Endpoints/static/hello.js -------------------------------------------------------------------------------- /Lesson_2/000_Hello_Endpoints/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/000_Hello_Endpoints/static/index.html -------------------------------------------------------------------------------- /Lesson_2/001_Hello_Endpoints_Solutions/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/001_Hello_Endpoints_Solutions/app.yaml -------------------------------------------------------------------------------- /Lesson_2/001_Hello_Endpoints_Solutions/helloworld_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/001_Hello_Endpoints_Solutions/helloworld_api.py -------------------------------------------------------------------------------- /Lesson_2/001_Hello_Endpoints_Solutions/static/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/001_Hello_Endpoints_Solutions/static/hello.js -------------------------------------------------------------------------------- /Lesson_2/001_Hello_Endpoints_Solutions/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/001_Hello_Endpoints_Solutions/static/index.html -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/LICENSE -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/README.md -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/app.yaml -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/conference.py -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/models.py -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/settings.py -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/bootstrap/css/bootstrap-cosmo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/bootstrap/css/bootstrap-cosmo.css -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/bootstrap/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/bootstrap/css/main.css -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/bootstrap/css/offcanvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/bootstrap/css/offcanvas.css -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/img/CloudPlatform_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/img/CloudPlatform_logo.png -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/img/business1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/img/business1.jpg -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/img/business2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/img/business2.jpg -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/img/business3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/img/business3.jpg -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/img/favicon.ico -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/img/meeting-room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/img/meeting-room.jpg -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/js/app.js -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/js/controllers.js -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/partials/conference_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/partials/conference_detail.html -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/partials/create_conferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/partials/create_conferences.html -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/partials/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/partials/home.html -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/partials/login.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/partials/login.modal.html -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/partials/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/partials/profile.html -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/static/partials/show_conferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/static/partials/show_conferences.html -------------------------------------------------------------------------------- /Lesson_2/00_Conference_Central/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_2/00_Conference_Central/templates/index.html -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/LICENSE -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/README.md -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/app.yaml -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/conference.py -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/models.py -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/settings.py -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/bootstrap/css/bootstrap-cosmo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/bootstrap/css/bootstrap-cosmo.css -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/bootstrap/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/bootstrap/css/main.css -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/bootstrap/css/offcanvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/bootstrap/css/offcanvas.css -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/img/CloudPlatform_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/img/CloudPlatform_logo.png -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/img/business1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/img/business1.jpg -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/img/business2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/img/business2.jpg -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/img/business3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/img/business3.jpg -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/img/favicon.ico -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/img/meeting-room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/img/meeting-room.jpg -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/js/app.js -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/js/controllers.js -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/partials/conference_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/partials/conference_detail.html -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/partials/create_conferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/partials/create_conferences.html -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/partials/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/partials/home.html -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/partials/login.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/partials/login.modal.html -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/partials/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/partials/profile.html -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/static/partials/show_conferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/static/partials/show_conferences.html -------------------------------------------------------------------------------- /Lesson_3/00_Conference_Central/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/00_Conference_Central/templates/index.html -------------------------------------------------------------------------------- /Lesson_3/additions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_3/additions/utils.py -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/LICENSE -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/README.md -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/app.yaml -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/conference.py -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/models.py -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/settings.py -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/bootstrap/css/bootstrap-cosmo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/bootstrap/css/bootstrap-cosmo.css -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/bootstrap/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/bootstrap/css/main.css -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/bootstrap/css/offcanvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/bootstrap/css/offcanvas.css -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/img/CloudPlatform_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/img/CloudPlatform_logo.png -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/img/business1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/img/business1.jpg -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/img/business2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/img/business2.jpg -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/img/business3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/img/business3.jpg -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/img/favicon.ico -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/img/meeting-room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/img/meeting-room.jpg -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/js/app.js -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/js/controllers.js -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/partials/conference_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/partials/conference_detail.html -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/partials/create_conferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/partials/create_conferences.html -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/partials/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/partials/home.html -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/partials/login.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/partials/login.modal.html -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/partials/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/partials/profile.html -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/static/partials/show_conferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/static/partials/show_conferences.html -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/templates/index.html -------------------------------------------------------------------------------- /Lesson_4/00_Conference_Central/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/00_Conference_Central/utils.py -------------------------------------------------------------------------------- /Lesson_4/Additions/TODO_1_conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/TODO_1_conference.py -------------------------------------------------------------------------------- /Lesson_4/Additions/TODO_1_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/TODO_1_models.py -------------------------------------------------------------------------------- /Lesson_4/Additions/TODO_2_conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/TODO_2_conference.py -------------------------------------------------------------------------------- /Lesson_4/Additions/TODO_2_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/TODO_2_models.py -------------------------------------------------------------------------------- /Lesson_4/Additions/TODO_3_conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/TODO_3_conference.py -------------------------------------------------------------------------------- /Lesson_4/Additions/TODO_4_conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/TODO_4_conference.py -------------------------------------------------------------------------------- /Lesson_4/Additions/TODO_5_conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/TODO_5_conference.py -------------------------------------------------------------------------------- /Lesson_4/Additions/TODO_6_conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/TODO_6_conference.py -------------------------------------------------------------------------------- /Lesson_4/Additions/TODO_6_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/TODO_6_models.py -------------------------------------------------------------------------------- /Lesson_4/Additions/TODO_7_conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/TODO_7_conference.py -------------------------------------------------------------------------------- /Lesson_4/Additions/conference_api.partial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/conference_api.partial.txt -------------------------------------------------------------------------------- /Lesson_4/Additions/conference_models.partial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_4/Additions/conference_models.partial.txt -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/LICENSE -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/README.md -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/app.yaml -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/conference.py -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/index.yaml -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/main.py -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/models.py -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/settings.py -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/bootstrap/css/bootstrap-cosmo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/bootstrap/css/bootstrap-cosmo.css -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/bootstrap/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/bootstrap/css/main.css -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/bootstrap/css/offcanvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/bootstrap/css/offcanvas.css -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/img/CloudPlatform_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/img/CloudPlatform_logo.png -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/img/business1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/img/business1.jpg -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/img/business2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/img/business2.jpg -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/img/business3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/img/business3.jpg -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/img/favicon.ico -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/img/meeting-room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/img/meeting-room.jpg -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/js/app.js -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/js/controllers.js -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/partials/conference_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/partials/conference_detail.html -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/partials/create_conferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/partials/create_conferences.html -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/partials/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/partials/home.html -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/partials/login.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/partials/login.modal.html -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/partials/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/partials/profile.html -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/static/partials/show_conferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/static/partials/show_conferences.html -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/templates/index.html -------------------------------------------------------------------------------- /Lesson_5/00_Conference_Central/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/00_Conference_Central/utils.py -------------------------------------------------------------------------------- /Lesson_5/Additions/TODO_1_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/Additions/TODO_1_app.yaml -------------------------------------------------------------------------------- /Lesson_5/Additions/TODO_1_conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/Additions/TODO_1_conference.py -------------------------------------------------------------------------------- /Lesson_5/Additions/TODO_1_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/Additions/TODO_1_main.py -------------------------------------------------------------------------------- /Lesson_5/Additions/TODO_1_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/Additions/TODO_1_models.py -------------------------------------------------------------------------------- /Lesson_5/Additions/TODO_2_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/Additions/TODO_2_app.yaml -------------------------------------------------------------------------------- /Lesson_5/Additions/TODO_2_conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/Additions/TODO_2_conference.py -------------------------------------------------------------------------------- /Lesson_5/Additions/TODO_2_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/Additions/TODO_2_main.py -------------------------------------------------------------------------------- /Lesson_5/Additions/TODO_3_cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/Lesson_5/Additions/TODO_3_cron.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/ud858/HEAD/README.md --------------------------------------------------------------------------------