This includes some fixes for `static()` template calls.
We can backport those if we want to not go this way.
Fix high_res_img path problems.
Move to a Python 2.6 compatible Manifest staticfiles storage.
Make collectstatic quiet. Use manifest storage on travis.
Fix high_res_img and platform_img helpers for new filenames.
This keeps the URL for CSS/JS/Images/Etc. as /media/ so that
all of the .less files and urls around the net need not change.
The new MEDIA_URL is '/user_media/', and the STATIC_URL is '/media/'.
The files all stay in the 'media' folder in the project, but they'll now
be served from the 'static' folder after 'collectstatic' is run.
All templates, views, and tests have been updated for the new changes,
as well as the l10n media helpers. The site works well for me in
spot-checks, and the tests pass.
One caveat is that you must run 'manage.py collectstatic' before
running tests due to the way jingo-minify works regarding the
compilation of .less files when not in DEBUG mode. I've yet to find
a way around this.
Also fixes some tests that were failing after upgrade.
Code was relying on Django's strip_tags filter which has
changed and now ignores things that obviously aren't HTML tags
Updated to latest playdoh-lib which includes fixes for Django 1.6
in funfactory.
Use bug_list and bug_search_url fields in template
Add jingo_markdown
Upgrade RNA (4ae910da)
Add firefox.system_requirements view using RNA
Use latest RNA as submodule instead of pip install
Adjust views, settings, templates to use latest RNA
Restore lib/l10n_utils/helpers.py and tests from rebase mistake
Move django-extensions to submodule
Cleanup old rna egg-info
Move django-rest-framework to submodule
Move requests to submodule
Move Python-Markdown to submodule
Move jingo-markdown to submodule
Move six to submodule
Test RNA views + flake8 fixes
Fix flake8
Try to fix Jenkins test breakage
Clean up templates
Cleanup template some more
Reword test docstring and add comments
Update requiremnts/prod.txt to match submodules
Use settings.LANGUAGE_CODE for default locale
Try to make Jenkins happy
* Add sqlite config to base settings.
* Update tests to use Django's database aware TestCase.
* Install south.
* Install django-waffle.
* Update jenkins to use the database for CI.
Django admin will be enabled in a separate PR.