Re: Is it possible to swap 1.8 and 1.10/1.11 Admin static files

2017-05-30 Thread Mike Dewhirst
Haven't actually communicated our decision but I'll just see if they are willing to fund the development involved in staying on an out-of-date and soon-to-be-unsupported system we'll hire someone to do that. I think. Haven't done any research on best practice in this area. Happy to let you

Re: ANN: django-admin-tools 0.8.1 released

2017-05-30 Thread 'Abraham Varricatt' via Django users
By chance do you have any screenshots in your documentation? -Abraham V. On Tuesday, May 30, 2017 at 8:39:54 AM UTC-4, izi wrote: > > Hello, > > We are happy to announce the availability of the version 0.8.1 of > django-admin-tools: > https://pypi.python.org/pypi/django-admin-tools/0.8.1 >

Re: Is it possible to swap 1.8 and 1.10/1.11 Admin static files

2017-05-30 Thread 'Abraham Varricatt' via Django users
How ... did you impose our will on this user? ;) I'd like to hear more ... for peaceful research purposes, of course. -Abraham V. On Monday, May 29, 2017 at 9:19:01 PM UTC-4, Mike Dewhirst wrote: > > Cancel this question. We will force the user to comply with our reality. > > Cheers > > Mike

Re: Session Variables

2017-05-30 Thread Russell Keith-Magee
Please stop spreading FUD like this. The Django Community Code of Conduct isn’t a blunt instrument attempting to stop all dissent or disagreement. It’s there to ensure that everyone treats everyone else with respect in all communications. The fact that Daniel criticised Hungarian notation is in

Re: Django db backend not FIPS compliant

2017-05-30 Thread Tim Graham
This usage generates a short, unique identifier for a database index name. The usage of md5 here isn't security sensitive. Changing it to some other hash could be backwards incompatible because Django would no longer know the names of indexes in existing projects. There are other usages of md5

Re: DJANGO 1.1 dynamic url on static javascript

2017-05-30 Thread ludovic coues
Everything looking like {% %} or {{ }} are template tag. Your js file are not processed by the templating engine so they can be served really fast directly by your web server and not by django which is a lot slower. One solution would be to but the url in your html file. Add a

Django db backend not FIPS compliant

2017-05-30 Thread Brandon Williams
I'm running into issues when trying to migrate my models in an environment that is running FIPS restrictions regarding MD5. Here is the stack trace: Operations to perform: > Apply all migrations: admin, auth, contenttypes, dashboard, > kombu_transport_django, sessions > Running migrations: >

Re: Session Variables

2017-05-30 Thread ludovic coues
Pretty sure the django code of conduct is against criticizing the use of Hungarian notation. 2017-05-29 12:29 GMT+02:00 Daniel Roseman : > On Monday, 29 May 2017 06:04:02 UTC+1, James Schneider wrote: >> >> >> On May 28, 2017 9:35 AM, wrote: >> >> >>

Re: Django Channels and Background Processes

2017-05-30 Thread Andrew Godwin
Hi Markus, There is no plan to roll Channels up to and including the 2.0 release so far - it's persisting as an external project for now with its own release cycle. Some of what you describe can be done with Channels - it gives you an inter-process messaging framework for sending data between

DJANGO 1.1 dynamic url on static javascript

2017-05-30 Thread lenin david
*Context* I am adding a static javascript file to my **ModelForm** on this way forms.py class SomeForm(forms.ModelForm): class Media: js = ('some-javascript.js',) *Problem* On this javascript I need send a GET request to a rest endpoint hosted on same application

DJANGO 1.1 dynamic url on static javascript

2017-05-30 Thread lenin david
## Context I am adding a static javascript file to my **ModelForm** on this way forms.py class SomeForm(forms.ModelForm): class Media: js = ('some-javascript.js',) ## Problem On this javascript I need send a GET request to a rest endpoint hosted on same

ANN: django-admin-tools 0.8.1 released

2017-05-30 Thread David Jean Louis
Hello, We are happy to announce the availability of the version 0.8.1 of django-admin-tools: https://pypi.python.org/pypi/django-admin-tools/0.8.1 Django-admin-tools is a collection of extensions/tools for the default django administration interface, it includes: * a full featured and

Django Channels and Background Processes

2017-05-30 Thread Markus Schaber
Hi, We're currently working on a server application using Django as framework. Now, some advanced use cases appeared on the horizon, and we're evaluating how we'll be able to solve them in the future. We came across