[Off Topic] djangopackages OUT?

2012-08-10 Thread Mário Neto
http://www.djangopackages.com/ out? -- Att. *Mário Araújo Chaves Neto* *Programmer, Designer and U.I. Engineer* * * *MBA in Design Digital* - 2008 - FIC *Analysis and Systems Development* - 2011 - Estácio *D**esign and Implementation of Internet Environments* - 2003 - FIC -- You received this m

Re: [Off Topic] djangopackages OUT?

2012-08-10 Thread Russell Keith-Magee
Yes - it appears to be out. However, http://django.opencomparison.org is still running, and should be the same content. I've contacted Daniel Greenfeld; hopefully this can be resolved quickly. Yours, Russ Magee %-) On Fri, Aug 10, 2012 at 7:43 PM, Mário Neto wrote: > http://www.djangopackages.c

Re: [Off Topic] djangopackages OUT?

2012-08-10 Thread Mário Neto
Thank's Russell! 2012/8/10 Russell Keith-Magee > Yes - it appears to be out. However, http://django.opencomparison.org > is still running, and should be the same content. > > I've contacted Daniel Greenfeld; hopefully this can be resolved quickly. > > Yours, > Russ Magee %-) > > On Fri, Aug 10,

Re: Middleware manipulating template in response

2012-08-10 Thread Thomas Rega
Am 09.08.12 22:57, schrieb Matt Pegler: It sounds like you want to automagically do something like: if request.is_mobile: return render_to_response('test_mobile.html',{}) return render_to_response('test.html',{}) I'm not sure that will be possible without modifying your views. I did somethi

Django user should not login on multiple machine with same username and passowrd when user already login on one machine

2012-08-10 Thread Nilesh Gorle
user login on one machine, should not login on another machine with same username and password in django -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/pp

UnicodeDecodeError with non ascii app_label

2012-08-10 Thread vitalije
Hello, I have recently updated my django installation to version 1.4. When I try to get an url that doesn't have a match in urlpatterns, django-server replies with 500 server error and doesn't show usual error page when DEBUG is on but in console shows an exception UnicodeDecodeError. Here is l

Re: Django user should not login on multiple machine with same username and passowrd when user already login on one machine

2012-08-10 Thread Mengu
there are two simple ways. have your own login view first. in your own login logic: 1) assuming you have a UserProfile model, add a field called is_online. in your login view after logging the user successfully, set the is_online field for this user to True. 2) if you are using redis or memcach

Re: UnicodeDecodeError with non ascii app_label

2012-08-10 Thread Mengu
do you have "# -*- coding: utf-8 -*-" at the top of your file? On Friday, August 10, 2012 4:29:01 PM UTC+3, vitalije wrote: > > Hello, > I have recently updated my django installation to version 1.4. > When I try to get an url that doesn't have a match in urlpatterns, > django-server replies wi

Re: Django user should not login on multiple machine with same username and passowrd when user already login on one machine

2012-08-10 Thread Victor Rocha
That would imply that the user needs to log out of the other machine before login into this one. For that reason you would also need to include another view to log an authenticated user out of any other machines. I said an authenticated user because you need to make sure that the user trying to

Django app to update site through email

2012-08-10 Thread Paul Backhouse
Hi there, The Django site I'm working on at the moment sends out emails when content is created/updated, using django-notifications. A feature I would like to add is where users can reply to these mails, ie comment on a topic. This reply then appears updated on the site. I've already written som

Open Source skin for Django Admin released.

2012-08-10 Thread Serge G. Spaolonzi
Hi, I would like to share this skin (open source) with other Django developers. This skin is non intrusive, it does not touch any file of the django installation, it works by linking the new CSS files in the settings.py file. My plan for adminmax is to extend and change some of the django admi

Re: Open Source skin for Django Admin released.

2012-08-10 Thread Serge G. Spaolonzi
Sorry, I forgot to include the link: http://cobalys.github.com/adminmax/ On Fri, Aug 10, 2012 at 1:09 PM, Serge G. Spaolonzi wrote: > Hi, > I would like to share this skin (open source) with other Django > developers. This skin is non intrusive, it does not touch any file of the > django install

Re: UnicodeDecodeError with non ascii app_label

2012-08-10 Thread vitalije
On Friday, August 10, 2012 4:30:19 PM UTC+2, Mengu wrote: > > do you have "# -*- coding: utf-8 -*-" at the top of your file? > > Yes I have. If I had not that line, python2.7 would not accept file with non ascii characters in it. It appears that everything is working fine except when django tri

Re: Issue Deploying Django

2012-08-10 Thread JJ Zolper
I absolutely agree that's why if a place like webfaction can't completely convince me that they can take care of everything I could want then I think I need to go with root access with a cloud server or VPS. Sorry for the long wait on the reply. On Friday, August 3, 2012 11:13:46 AM UTC-4, Kurt

Re: Setting APPEND_SLASH = False and PREPEND_WWW = True

2012-08-10 Thread JJ Zolper
Such a clean cut and knowledgeable answer. 10/10 thanks so much Russell! I'll make sure to add both to my settings file. Cheers, JJ On Thursday, August 9, 2012 10:50:26 PM UTC-4, Russell Keith-Magee wrote: > > On Fri, Aug 10, 2012 at 10:41 AM, JJ Zolper > > wrote: > > Hello all, > > > > I

custom management commands: AttributeError: 'module' object has no attribute 'Command'

2012-08-10 Thread Matthew Meyer
I am trying to make a custom management command as show in the docs here: https://docs.djangoproject.com/en/dev/howto/custom-management-commands/ When I try to run the command from my project directory I am experiencing the following error: AttributeError: 'module' object has no attribute 'C