├── .dockerignore ├── .editorconfig ├── .env-dist ├── .gitignore ├── .travis.yml ├── CONTRIBUTORS ├── Dockerfile ├── LICENSE ├── Makefile ├── Procfile ├── README.rst ├── bin ├── deploy.sh ├── phb-manage.sh ├── restoredb.sh ├── run-common.sh ├── run-dev.sh ├── run-prod.sh ├── run-tests.sh ├── run.sh └── standup-cmd ├── contribute.json ├── docker-compose.yml ├── gulpfile.js ├── manage.py ├── newrelic.ini ├── package.json ├── requirements-dev.txt ├── requirements.txt ├── root_files └── contribute.json ├── setup.cfg ├── standup ├── __init__.py ├── api │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── factories.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── manage │ ├── __init__.py │ ├── models.py │ ├── templates │ │ └── admin │ │ │ ├── index.html │ │ │ └── statistics.html │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── mdext │ ├── __init__.py │ └── nixheaders.py ├── pipeline.py ├── settings.py ├── status │ ├── __init__.py │ ├── admin.py │ ├── auth.py │ ├── context_processors.py │ ├── forms.py │ ├── jinja2 │ │ ├── 400.html │ │ ├── 403.html │ │ ├── 404.html │ │ ├── 500.html │ │ ├── base.html │ │ ├── includes │ │ │ └── macros.html │ │ ├── status │ │ │ ├── index.html │ │ │ ├── project.html │ │ │ ├── search.html │ │ │ ├── status.html │ │ │ ├── team.html │ │ │ ├── user.html │ │ │ └── weekly.html │ │ └── users │ │ │ ├── login.html │ │ │ └── profile.html │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── finduser.py │ │ │ ├── mergeuser.py │ │ │ └── stats.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_standupuser_user.py │ │ ├── 0003_make_users.py │ │ ├── 0004_auto_20160902_2117.py │ │ ├── 0005_add_team_user_id.py │ │ ├── 0006_add_irc_nick.py │ │ ├── 0007_migration_irc_nick.py │ │ ├── 0008_github_handle_fixes.py │ │ ├── 0009_remove_standupuser_github_handle.py │ │ ├── 0010_populate_slug.py │ │ ├── 0011_remove_content_html.py │ │ ├── 0012_teamusercopy.py │ │ ├── 0013_backup_teamuser.py │ │ ├── 0014_remove_teamuser.py │ │ ├── 0015_team_users.py │ │ ├── 0016_restore_teamuser.py │ │ ├── 0017_fix_replies.py │ │ ├── 0018_remove_status_reply_to.py │ │ ├── 0019_fix-reply-migration.py │ │ ├── 0020_auto_20180209_1625.py │ │ ├── 0021_auto_20180607_1617.py │ │ ├── 0022_sitemessage.py │ │ ├── 0023_auto_20180607_1738.py │ │ └── __init__.py │ ├── models.py │ ├── search.py │ ├── storage.py │ ├── templatetags │ │ ├── __init__.py │ │ └── filters.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── factories.py │ │ ├── test_commands.py │ │ ├── test_models.py │ │ ├── test_search.py │ │ ├── test_utils.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── urls.py └── wsgi.py ├── static ├── css │ └── normalize.css ├── fonts │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.ttf │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ ├── OpenSans-Regular-webfont.ttf │ ├── OpenSans-Regular-webfont.woff │ ├── OpenSans-Semibold-webfont.eot │ ├── OpenSans-Semibold-webfont.svg │ ├── OpenSans-Semibold-webfont.ttf │ └── OpenSans-Semibold-webfont.woff ├── img │ ├── GitHub-Mark-32px.png │ ├── default-avatar.png │ ├── error-splash.png │ ├── favicon.png │ ├── grain.png │ ├── icons-sprite.png │ ├── logo-grey.png │ └── wrapping-paper.png ├── js │ ├── standup.js │ └── vendor │ │ ├── jquery-3.1.0.js │ │ └── modernizr-2.6.1.js └── less │ ├── lib │ ├── grid.less │ ├── magic.less │ ├── mixins.less │ ├── variables.less │ └── vendor.less │ ├── style.less │ └── user.less ├── tests └── smoketest.py └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/.env-dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: ./bin/run-prod.sh 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/README.rst -------------------------------------------------------------------------------- /bin/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/bin/deploy.sh -------------------------------------------------------------------------------- /bin/phb-manage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/bin/phb-manage.sh -------------------------------------------------------------------------------- /bin/restoredb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/bin/restoredb.sh -------------------------------------------------------------------------------- /bin/run-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/bin/run-common.sh -------------------------------------------------------------------------------- /bin/run-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/bin/run-dev.sh -------------------------------------------------------------------------------- /bin/run-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/bin/run-prod.sh -------------------------------------------------------------------------------- /bin/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/bin/run-tests.sh -------------------------------------------------------------------------------- /bin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/bin/run.sh -------------------------------------------------------------------------------- /bin/standup-cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/bin/standup-cmd -------------------------------------------------------------------------------- /contribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/contribute.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/gulpfile.js -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/manage.py -------------------------------------------------------------------------------- /newrelic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/newrelic.ini -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/package.json -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/requirements.txt -------------------------------------------------------------------------------- /root_files/contribute.json: -------------------------------------------------------------------------------- 1 | ../contribute.json -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/setup.cfg -------------------------------------------------------------------------------- /standup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/api/admin.py -------------------------------------------------------------------------------- /standup/api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /standup/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/api/models.py -------------------------------------------------------------------------------- /standup/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/api/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/api/tests/factories.py -------------------------------------------------------------------------------- /standup/api/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/api/tests/test_views.py -------------------------------------------------------------------------------- /standup/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/api/urls.py -------------------------------------------------------------------------------- /standup/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/api/views.py -------------------------------------------------------------------------------- /standup/manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/manage/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/manage/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/manage/templates/admin/index.html -------------------------------------------------------------------------------- /standup/manage/templates/admin/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/manage/templates/admin/statistics.html -------------------------------------------------------------------------------- /standup/manage/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/manage/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/manage/tests/test_views.py -------------------------------------------------------------------------------- /standup/manage/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/manage/urls.py -------------------------------------------------------------------------------- /standup/manage/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/manage/views.py -------------------------------------------------------------------------------- /standup/mdext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/mdext/nixheaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/mdext/nixheaders.py -------------------------------------------------------------------------------- /standup/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/pipeline.py -------------------------------------------------------------------------------- /standup/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/settings.py -------------------------------------------------------------------------------- /standup/status/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/status/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/admin.py -------------------------------------------------------------------------------- /standup/status/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/auth.py -------------------------------------------------------------------------------- /standup/status/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/context_processors.py -------------------------------------------------------------------------------- /standup/status/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/forms.py -------------------------------------------------------------------------------- /standup/status/jinja2/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/400.html -------------------------------------------------------------------------------- /standup/status/jinja2/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/403.html -------------------------------------------------------------------------------- /standup/status/jinja2/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/404.html -------------------------------------------------------------------------------- /standup/status/jinja2/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/500.html -------------------------------------------------------------------------------- /standup/status/jinja2/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/base.html -------------------------------------------------------------------------------- /standup/status/jinja2/includes/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/includes/macros.html -------------------------------------------------------------------------------- /standup/status/jinja2/status/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/status/index.html -------------------------------------------------------------------------------- /standup/status/jinja2/status/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/status/project.html -------------------------------------------------------------------------------- /standup/status/jinja2/status/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/status/search.html -------------------------------------------------------------------------------- /standup/status/jinja2/status/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/status/status.html -------------------------------------------------------------------------------- /standup/status/jinja2/status/team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/status/team.html -------------------------------------------------------------------------------- /standup/status/jinja2/status/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/status/user.html -------------------------------------------------------------------------------- /standup/status/jinja2/status/weekly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/status/weekly.html -------------------------------------------------------------------------------- /standup/status/jinja2/users/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/users/login.html -------------------------------------------------------------------------------- /standup/status/jinja2/users/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/jinja2/users/profile.html -------------------------------------------------------------------------------- /standup/status/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/status/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/status/management/commands/finduser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/management/commands/finduser.py -------------------------------------------------------------------------------- /standup/status/management/commands/mergeuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/management/commands/mergeuser.py -------------------------------------------------------------------------------- /standup/status/management/commands/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/management/commands/stats.py -------------------------------------------------------------------------------- /standup/status/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/middleware.py -------------------------------------------------------------------------------- /standup/status/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0001_initial.py -------------------------------------------------------------------------------- /standup/status/migrations/0002_standupuser_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0002_standupuser_user.py -------------------------------------------------------------------------------- /standup/status/migrations/0003_make_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0003_make_users.py -------------------------------------------------------------------------------- /standup/status/migrations/0004_auto_20160902_2117.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0004_auto_20160902_2117.py -------------------------------------------------------------------------------- /standup/status/migrations/0005_add_team_user_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0005_add_team_user_id.py -------------------------------------------------------------------------------- /standup/status/migrations/0006_add_irc_nick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0006_add_irc_nick.py -------------------------------------------------------------------------------- /standup/status/migrations/0007_migration_irc_nick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0007_migration_irc_nick.py -------------------------------------------------------------------------------- /standup/status/migrations/0008_github_handle_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0008_github_handle_fixes.py -------------------------------------------------------------------------------- /standup/status/migrations/0009_remove_standupuser_github_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0009_remove_standupuser_github_handle.py -------------------------------------------------------------------------------- /standup/status/migrations/0010_populate_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0010_populate_slug.py -------------------------------------------------------------------------------- /standup/status/migrations/0011_remove_content_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0011_remove_content_html.py -------------------------------------------------------------------------------- /standup/status/migrations/0012_teamusercopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0012_teamusercopy.py -------------------------------------------------------------------------------- /standup/status/migrations/0013_backup_teamuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0013_backup_teamuser.py -------------------------------------------------------------------------------- /standup/status/migrations/0014_remove_teamuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0014_remove_teamuser.py -------------------------------------------------------------------------------- /standup/status/migrations/0015_team_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0015_team_users.py -------------------------------------------------------------------------------- /standup/status/migrations/0016_restore_teamuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0016_restore_teamuser.py -------------------------------------------------------------------------------- /standup/status/migrations/0017_fix_replies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0017_fix_replies.py -------------------------------------------------------------------------------- /standup/status/migrations/0018_remove_status_reply_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0018_remove_status_reply_to.py -------------------------------------------------------------------------------- /standup/status/migrations/0019_fix-reply-migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0019_fix-reply-migration.py -------------------------------------------------------------------------------- /standup/status/migrations/0020_auto_20180209_1625.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0020_auto_20180209_1625.py -------------------------------------------------------------------------------- /standup/status/migrations/0021_auto_20180607_1617.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0021_auto_20180607_1617.py -------------------------------------------------------------------------------- /standup/status/migrations/0022_sitemessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0022_sitemessage.py -------------------------------------------------------------------------------- /standup/status/migrations/0023_auto_20180607_1738.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/migrations/0023_auto_20180607_1738.py -------------------------------------------------------------------------------- /standup/status/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/status/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/models.py -------------------------------------------------------------------------------- /standup/status/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/search.py -------------------------------------------------------------------------------- /standup/status/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/storage.py -------------------------------------------------------------------------------- /standup/status/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/status/templatetags/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/templatetags/filters.py -------------------------------------------------------------------------------- /standup/status/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standup/status/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/tests/conftest.py -------------------------------------------------------------------------------- /standup/status/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/tests/factories.py -------------------------------------------------------------------------------- /standup/status/tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/tests/test_commands.py -------------------------------------------------------------------------------- /standup/status/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/tests/test_models.py -------------------------------------------------------------------------------- /standup/status/tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/tests/test_search.py -------------------------------------------------------------------------------- /standup/status/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/tests/test_utils.py -------------------------------------------------------------------------------- /standup/status/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/tests/test_views.py -------------------------------------------------------------------------------- /standup/status/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/urls.py -------------------------------------------------------------------------------- /standup/status/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/utils.py -------------------------------------------------------------------------------- /standup/status/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/status/views.py -------------------------------------------------------------------------------- /standup/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/urls.py -------------------------------------------------------------------------------- /standup/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/standup/wsgi.py -------------------------------------------------------------------------------- /static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/css/normalize.css -------------------------------------------------------------------------------- /static/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Light-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Regular-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /static/fonts/OpenSans-Semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Semibold-webfont.eot -------------------------------------------------------------------------------- /static/fonts/OpenSans-Semibold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Semibold-webfont.svg -------------------------------------------------------------------------------- /static/fonts/OpenSans-Semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Semibold-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/OpenSans-Semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/fonts/OpenSans-Semibold-webfont.woff -------------------------------------------------------------------------------- /static/img/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/img/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /static/img/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/img/default-avatar.png -------------------------------------------------------------------------------- /static/img/error-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/img/error-splash.png -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/img/grain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/img/grain.png -------------------------------------------------------------------------------- /static/img/icons-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/img/icons-sprite.png -------------------------------------------------------------------------------- /static/img/logo-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/img/logo-grey.png -------------------------------------------------------------------------------- /static/img/wrapping-paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/img/wrapping-paper.png -------------------------------------------------------------------------------- /static/js/standup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/js/standup.js -------------------------------------------------------------------------------- /static/js/vendor/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/js/vendor/jquery-3.1.0.js -------------------------------------------------------------------------------- /static/js/vendor/modernizr-2.6.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/js/vendor/modernizr-2.6.1.js -------------------------------------------------------------------------------- /static/less/lib/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/less/lib/grid.less -------------------------------------------------------------------------------- /static/less/lib/magic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/less/lib/magic.less -------------------------------------------------------------------------------- /static/less/lib/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/less/lib/mixins.less -------------------------------------------------------------------------------- /static/less/lib/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/less/lib/variables.less -------------------------------------------------------------------------------- /static/less/lib/vendor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/less/lib/vendor.less -------------------------------------------------------------------------------- /static/less/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/less/style.less -------------------------------------------------------------------------------- /static/less/user.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/static/less/user.less -------------------------------------------------------------------------------- /tests/smoketest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/tests/smoketest.py -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/standup/HEAD/yarn.lock --------------------------------------------------------------------------------