Re: Django Debug Toolbar 1.0 beta released

2013-12-21 Thread Aymeric Augustin
Hello, I just released 1.0 final. Enjoy! -- Aymeric. Le dimanche 15 décembre 2013 14:11:50 UTC+1, Aymeric Augustin a écrit : > > Hello, > > I'm happy to annonce that we're almost ready to release version 1.0 of the > Debug Toolbar! Now we need your help to try the beta: > > https://github.com/

Re: Django Custom User Admin Login

2013-12-21 Thread vinayak11118
So I solved the problem. Even I don't know how. :/ I used thisas a template and added my own models and requirements on top of it. Slightly off topic but I needed this setup because I want to grant users object leve

Re: Instant Hosting for Django-CMS...No Setup Needed...Demo Inside

2013-12-21 Thread Mark Moss
Hi Frank, Debug is enabled intentionally since this is a demo machine. All themes are fine without any problem. You just need to change the default theme from Admin side. To demonstrate it, I have now changed to Hfree Software theme, which can be seen at -- http://198.154.98.107:8000/ You will

Re: Django Custom User Admin Login

2013-12-21 Thread vinayak11118
Also, from initial tests it appears that django-guardian is not setting permissions with custom user. I wrote a small manage.py script to test that: from django.core.management.base import BaseCommand, CommandError from iiitd.models import * from guardian.shortcuts import assign_perm, remove_perm

Re: Which Real Time Communications Protocol

2013-12-21 Thread Dig
Hi Serge, May I know the capacity of your system with telnet/xmlrpc? I'm intresting in this topic, and the next project could have a push scenario. Thanks. Regards, Dig On Dec 21, 2013 1:01 AM, "Sergiy Khohlov" wrote: > telnet and xmlrpc is a good choice. I'm working on the similar project

Re: Which Real Time Communications Protocol

2013-12-21 Thread Dig
Hi Bill, Is there any django project support websocket? Thanks. Regards, Dig On Dec 21, 2013 1:50 AM, "Bill Freeman" wrote: > WebSockets runs over standard HTTP or HTTPS connections, getting past > firewalls and other restrictions (e.g.; the hotel WiFi will let you web > browse, but not use o

Re: Which Real Time Communications Protocol

2013-12-21 Thread Liam Thompson
you could try http://json-rpc.org/ On Friday, 20 December 2013 18:58:39 UTC+2, Mario Osorio wrote: > > My app will have to communicate different customers (Linux devices, > Windoze devices, iOS devices and Android devices at least). > > Overall, any of these customer devices will start one of man

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Gabriele Stoia
Hi Russel I had the same problem. Here the traceback: ViewDoesNotExist at /admin/ Could not import django.views.generic.list_detail.object_list. Parent module django.views.generic.list_detail does not exist. Request Method: GET Request URL: http://www.gabryandjenny.com/admin/ Django Versio

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Gabriele Stoia
Hi Russel I have the same problem but I cannot figure out how to fix it !!! In local the app was perfect... in deploy I had this message : ViewDoesNotExist at /admin/ Could not import django.views.generic.list_detail.object_list. Parent module django.views.generic.list_detail does not exist.

How to deploy a django project in the web?

2013-12-21 Thread Pablo Diaz
I've finished my django project but I'm only running it locally. I want to put it on a website -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsu

Re: Which Real Time Communications Protocol

2013-12-21 Thread Prashanth
Id pick Json over xml too as it's easier to manipulate and debug Json serializable python objects. You can also write your own encoders/decoders, might help: http://pymotw.com/2/json/ On Dec 21, 2013 8:01 AM, "Liam Thompson" wrote: > you could try http://json-rpc.org/ > > On Friday, 20 December 2

Django Custom Widget throwing error

2013-12-21 Thread Mrinmoy Das
I have this form and custom widget class BidDateWidget(widgets.DateInput): """ Renders a Twitter Bootstrap Date Input. """ class Media: css = ("{{ STATIC_URL }}stylesheet/datetimepicker.css") js = ("{{ STATIC_URL }}js/bootstrap-datetimepicker.js") def render(s

Re: How to deploy a django project in the web?

2013-12-21 Thread Mark Moss
You need to install Django framework on a machine that's connected to internet and then deploy your app into it. - - Mark *Need Django Framework? You'll Instant Django Hosting * -- You received this message because you are subscrib

Re: How to deploy a django project in the web?

2013-12-21 Thread Mark Moss
You need to install Django framework on a machine that's connected to internet and then deploy your app into it. - - Mark *Need Django Framework? You'll Love Instant Django Hosting * -- You received this message because you are sub

Re: Which Real Time Communications Protocol

2013-12-21 Thread Mario Osorio
Thanks to everyone contributing to my question ... I will be evaluating all options soon! -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr.

Re: Django Custom User Admin Login

2013-12-21 Thread Russell Keith-Magee
On Sat, Dec 21, 2013 at 7:29 PM, wrote: > So I solved the problem. Even I don't know how. :/ > I used > thisas > a template and added my own models and requirements on top of it. > > Slightly off topic but I needed t

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Russell Keith-Magee
Hi Gabriele, The answer is the same as before. You have some code that is referencing django.views.generic.list_detail.object_list. As of Django 1.5, this view no longer exists. You need to find out what code is referencing this view, and update it. The problem code might be your own code, or it

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Gabriele Stoia
Hi Russel, thanks for your answer. I found the problem. Is related to Photologue. Do you have any information about it ? Thank you very much Gabri Il giorno domenica 22 dicembre 2013 09:17:51 UTC+7, Russell Keith-Magee ha scritto: > > Hi Gabriele, > > The answer is the same as before. You hav

Re: ViewDoesNotExist at /admin/

2013-12-21 Thread Russell Keith-Magee
Hi Gabriele, Unfortunately, no. I'm aware of the name, but I haven't used Photologue myself, so I don't really know anything about it. You'll need to check the project pages and support lists for Photologue itself. Yours, Russ Magee %-) On Sunday, December 22, 2013, Gabriele Stoia wrote: > Hi