Matthew Jacobi
Matthew Jacobi
It would be nice to generate source maps when it does the bundling.
Say we load garlic.js after the window.load event has fired. Then the content marked up with data-persist="garlic" doesn't work since: ``` b(window).on("load", function() { b('[data-persist="garlic"]').each(function() { b(this).garlic() }) }) ```...
What's the difference with django's contrib auth password_reset and this project? Seems to be similar features. If there is a difference probably should document what they are and why this...
Running this: ``` python manage.py tx push --help ``` Gives this output: ``` usage: manage.py tx [-h] [--version] [-v {0,1,2,3}] [--settings SETTINGS] [--pythonpath PYTHONPATH] [--traceback] [--no-color] args [args ...] Available...
With django moving to argparse the management command now fails: ``` usage: manage.py tx [-h] [--version] [-v {0,1,2,3}] [--settings SETTINGS] [--pythonpath PYTHONPATH] [--traceback] [--no-color] manage.py tx: error: unrecognized arguments: pull_translations...
``` (venv)(venv) matt@Cronus[/Users/matt/Source/Pitchup.com]$ ./manage.py shell Using settings: pitchup.settings.local Traceback (most recent call last): File "./manage.py", line 17, in execute_from_command_line(sys.argv) File "/Users/matt/Source/Pitchup.com/venv/lib/python2.7/site-packages/django/core/management/__init__.py", line 399, in execute_from_command_line utility.execute() File "/Users/matt/Source/Pitchup.com/venv/lib/python2.7/site-packages/django/core/management/__init__.py", line 392,...
We have reports of translators when pressing save and next block that it sometimes takes them back to the front page of rosetta and the translations for that block are...
Can't see how to change to https (which should be the default). It looks hardcoded: ``` @staticmethod def normalize_url(url): if url[-1] != '/': url += '/' if not url.startswith(('http://', 'https://')):...
``` In [10]: with translation.override('fr'): ...: print Facility.objects.values('facilitysetup__question')[4] ...: {'facilitysetup__question': u'Do you provide a fridge?'} In [11]: with translation.override('fr'): ...: print Facility.objects.values('facilitysetup__question_fr')[4] ...: ...: {'facilitysetup__question_fr': u'Fournissez-vous un r\xe9frig\xe9rateur ?'} In...
Before filling this issue, please read the manual (https://glances.readthedocs.io/en/latest/) and search if the bug do not already exists in the database (https://github.com/nicolargo/glances/issues). #### Description Viewing the running docker containers on...