Re: Problem with django unit testing

2008-03-30 Thread [EMAIL PROTECTED]
Any one who can help me? Thank you so much! On Mar 29, 11:00 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, all, > > I meet a strangely problem on django unittesting. I use django svn > version, the test code like this: > > """ > from djan

Re: Problem with django unit testing

2008-03-30 Thread Kenneth Gonsalves
On 30-Mar-08, at 1:31 PM, [EMAIL PROTECTED] wrote: > Any one who can help me? Thank you so much! be patient - it is a weekend ;-) -- regards kg http://lawgon.livejournal.com http://nrcfosshelpline.in/code/ --~--~-~--~~~---~--~~ You received this message be

Re: Newforms

2008-03-30 Thread Rufman
if I do form = SothmeForm(fields) and fields is a dictionary, I don't get fields in the form object. Why is this? Stephane --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

News about GoFlow (workflow engine for django)

2008-03-30 Thread MiloZ
Some interesting new features: - fast user switch in debug/test mode - simulation mode with no code - refactoring Try it (again). Don't hesitate asking questions in the FAQ (http:// code.djangoproject.com/wiki/goflow%3AFAQ) --~--~-~--~~~---~--~~ You received thi

render_to_response syntax

2008-03-30 Thread Jaap
render_to_response('template', *args, **kwargs): kwargs looks like a dictionary but if I refer to a dictionary, it is ignored: In names = {} names['my_name'] = "somename" render_to_response('template.html', names) names is equivalent to {'my_name': 'somename'}, so I would expect the

Re: Shell reloading

2008-03-30 Thread Christian Vest Hansen
Try >>> help(reload) Instead of restarting the entier shell. On 3/30/08, Jorge Sousa <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using Django on windows. > Is it possible to, once inside the Django Shell (manage.py shell) while > testing some bint and changing the code in a model method to have i

synchronization problem

2008-03-30 Thread PENPEN
Does Django provide any method to handle the synchronization problems with DB? How does it keep the DB's consistency in the multi-thread scenario? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group.

Re: Problem with django unit testing

2008-03-30 Thread Russell Keith-Magee
On Sat, Mar 29, 2008 at 11:00 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > but when I run unit test to test the failed function use: > $ ./manage.py test apps.test.test_template > there will be ok: > """ > . > ---

Re: selenium versus django app

2008-03-30 Thread Russell Keith-Magee
On Sat, Mar 29, 2008 at 12:45 AM, Robin Becker <[EMAIL PROTECTED]> wrote: > > I have a bunch of really weird errors coming from selenium built with the IDE > when running in proper selenium. The page in question is an admin form coming > from the python django framework > > > info: Executing: |ty

Permissions get automatically created without class Admin in models

2008-03-30 Thread Carl
Hi Djangonauts, just observed that the standard edit/update/delete-permissions get created for all my models without me having given them the inner class Admin. Anyone an idea why this happens? Best regards, Carl --~--~-~--~~~---~--~~ You received this message be

Re: synchronization problem

2008-03-30 Thread Carl
Hi PenPen, what do you mean with 'the multi-thread scenario'? I assume you already know the syncdb param for the manage.py? Best regards, Carl On 30 Mrz., 13:12, PENPEN <[EMAIL PROTECTED]> wrote: > Does Django provide any method to handle the synchronization problems > with DB? How does it kee

Re: Shell reloading

2008-03-30 Thread Carl
Thanks Christian, that's a great tip! On 30 Mrz., 11:29, "Christian Vest Hansen" <[EMAIL PROTECTED]> wrote: > Try > > >>> help(reload) > > Instead of restarting the entier shell. > > On 3/30/08, Jorge Sousa <[EMAIL PROTECTED]> wrote: > > > Hi, > > > I'm using Django on windows. > > Is it possible

Re: Permissions get automatically created without class Admin in models

2008-03-30 Thread Russell Keith-Magee
On Sun, Mar 30, 2008 at 8:18 PM, Carl <[EMAIL PROTECTED]> wrote: > > Hi Djangonauts, > > just observed that the standard edit/update/delete-permissions get > created for all my models without me having given them the inner class > Admin. Anyone an idea why this happens? Because model permissions

Re: Unexpected TypeError in m2m relationship

2008-03-30 Thread J. Clifford Dyer
On Wed, 2008-03-26 at 19:11 -0400, Karen Tracey wrote: > On Wed, Mar 26, 2008 at 5:16 PM, J. Cliff Dyer <[EMAIL PROTECTED]> > wrote: > > > So it did. I had stripped down my original one to get rid of > a couple > hundred lines of unimportant cruft, but ac

Re: Permissions get automatically created without class Admin in models

2008-03-30 Thread Carl
Hi, and fast thanks for the super fast reply! Just to make sure that I understood it correctly ---> those standard permissions are unevitable if I use django.contrib.auth? That would really be inconvinient! And moreover, the documentation would be misleading as it states: "Three basic permission

Re: synchronization problem

2008-03-30 Thread PENPEN
Hi Carl, I didn't mention to the syncdb of manage.py. I'm talking about the problem that may happen when trying to access the db. Take a poll for exmaple. It may happen that 2 users vote at the same time. A vote action is made in the three steps: 1. read the old counter 2. add the counter by 1 3.

Re: Permissions get automatically created without class Admin in models

2008-03-30 Thread Russell Keith-Magee
On Sun, Mar 30, 2008 at 8:41 PM, Carl <[EMAIL PROTECTED]> wrote: > > Hi, > > and fast thanks for the super fast reply! > Just to make sure that I understood it correctly ---> those standard > permissions are unevitable if I use django.contrib.auth? Yes. > That would really be inconvinient! Why?

Re: Permissions get automatically created without class Admin in models

2008-03-30 Thread Carl
Thanks again! The only problem is, that those automatically created permissions have english descriptions and I'm building something for a german-only speaking user base. But i think i'll just change the descriptions manually in the database. That's just a few lines of SQL at the end... I will o

Anyone Interested in writing an article for Digital Web Magazine?

2008-03-30 Thread William Hicks
Hi Kids, I'm one of the new editors at Digital-Web Magazine, a weekly online publication for web designers and developers. We're always looking for new authors and I was curious if anyone might want to do an intro to Django for our readers. We published a "Ruby on Rails for the rest of us" a wh

Re: Permissions get automatically created without class Admin in models

2008-03-30 Thread James Bennett
On Sun, Mar 30, 2008 at 8:06 AM, Carl <[EMAIL PROTECTED]> wrote: > I will open a ticket right away... Fixed in changeset 7388. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~-~--~~~---~--~~ You received this message beca

Re: Permissions get automatically created without class Admin in models

2008-03-30 Thread James Bennett
On Sun, Mar 30, 2008 at 8:06 AM, Carl <[EMAIL PROTECTED]> wrote: > The only problem is, that those automatically created permissions have > english descriptions and I'm building something for a german-only > speaking user base. But i think i'll just change the descriptions > manually in the da

Re: Shell reloading

2008-03-30 Thread Evert Rol
Have you tried installing iPython? I can remembers your history across sessions, and has lots of other niceties (eg, you can define a default set of import statements on startup). If installed, python manage.py shell will automatically pick it up. > Thanks Christian, that's a great tip! > >

Re: render_to_response syntax

2008-03-30 Thread Evert Rol
> render_to_response('template', *args, **kwargs): > kwargs looks like a dictionary but if I refer to a dictionary, it is > ignored: > > In >names = {} >names['my_name'] = "somename" >render_to_response('template.html', names) > > names is equivalent to {'my_name': 'somename'}, so I wo

Re: Admin page doesn't show calendar popup

2008-03-30 Thread Evert Rol
> I just installed Django 96.1 on my Mac. When I follow the tutorial > and get to the Admin page, the calendar pop ups don't show up. Is > there a problem with the install. I'm using Leopard. Could be your browser (javascript problem). What browser & version are you using; have you tried ano

Re: render_to_response syntax

2008-03-30 Thread Karen Tracey
On Sun, Mar 30, 2008 at 5:23 AM, Jaap <[EMAIL PROTECTED]> wrote: > > render_to_response('template', *args, **kwargs): > kwargs looks like a dictionary but if I refer to a dictionary, it is > ignored: > > In >names = {} >names['my_name'] = "somename" >render_to_response('template.html',

Creating Custom Admin Views

2008-03-30 Thread Bernd
Hello, I followed the documentation http://www.djangobook.com/en/1.0/chapter17/ in the section "Creating Custom Admin Views". I try to override the change_list.html for one of my models. I only would like to extend the change_list for the model with some extra context data. All of the other func

Re: Unexpected TypeError in m2m relationship

2008-03-30 Thread Karen Tracey
On Sun, Mar 30, 2008 at 8:38 AM, J. Clifford Dyer <[EMAIL PROTECTED]> wrote: > >[details snipped] > > > > Well I can still take your posted model file, simply add "class Admin: > > pass" to the models so I can dummy up some data in the admin, and then > > run your interactive session without error

Re: synchronization problem

2008-03-30 Thread Karen Tracey
On Sun, Mar 30, 2008 at 8:45 AM, PENPEN <[EMAIL PROTECTED]> wrote: > > Hi Carl, > I didn't mention to the syncdb of manage.py. > I'm talking about the problem that may happen when trying to access > the db. > > Take a poll for exmaple. It may happen that 2 users vote at the same > time. A vote act

Re: templatetags

2008-03-30 Thread ameriblog
My sports ratings are as long-term project, no need for them to be ready until late August :) On Mar 29, 10:38 pm, jeffself <[EMAIL PROTECTED]> wrote: > On Mar 29, 11:40 pm, ameriblog <[EMAIL PROTECTED]> wrote: > > > i have a site that lists candidates for mayor, on the page i have > > biographic

Re: Permissions get automatically created without class Admin in models

2008-03-30 Thread Karen Tracey
On Sun, Mar 30, 2008 at 9:36 AM, James Bennett <[EMAIL PROTECTED]> wrote: > > On Sun, Mar 30, 2008 at 8:06 AM, Carl <[EMAIL PROTECTED]> wrote: > > I will open a ticket right away... > > Fixed in changeset 7388. > Note ticket #5926 has been hanging around for a few months on this issue, with at l

Re: Permissions get automatically created without class Admin in models

2008-03-30 Thread James Bennett
On Sun, Mar 30, 2008 at 10:47 AM, Karen Tracey <[EMAIL PROTECTED]> wrote: > Note ticket #5926 has been hanging around for a few months on this issue, > with at least 3 people (one who provided a patch) hoping the fix would be to > change the code to match the docs versus changing the docs to match

Re: Need Help Thinking Through How to Setup URLS and VIEWS

2008-03-30 Thread Rob Hudson
On Mar 29, 2:54 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Specifically, i need help with: > 1. How do I test to see what a slug is? I.E. In my case, is it a > section or a page. > > Finally, am I barking up the wrong tree? Would it be simpler to just > write a custom view that does what

users online

2008-03-30 Thread dall
Can someone help me how to get users online thingy done right ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe f

Funny video! Sexi girl!

2008-03-30 Thread romki
Funny video! Sexi girl! http://rozrywka.yeba.pl/show.php?id=1030 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe

Re: Newforms

2008-03-30 Thread Michael
That is whoafully lacking in information. Here's a quick example of how data moves in newforms: >>> from registration.forms import RegistrationForm >>> form = RegistrationForm({'username':'jlennon','email':'[EMAIL >>> PROTECTED]','password1':'password','password2':'password'}) >>> form.cleaned_d

generic views - newforms

2008-03-30 Thread Victor Quiroz
Hello, what is the difference (advantage) to use generic views or newforms Victor --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroup

Re: generic views - newforms

2008-03-30 Thread Michael
They are two very different animals really. Generic views work as a way to cut code from your views code (the code that creates the httpresponse, between the url handling and the template rendering). Newforms is the way that Django creates and handles forms. You will generally need to use a new f

localflavor in admin

2008-03-30 Thread erikankrom
I have a model: from django.db import models from django import newforms as forms from django.contrib.localflavor.us import forms as us_forms class Address(models.Model): member = models.ForeignKey(Member, unique=True) street = models.CharField(m

Model Inheritance

2008-03-30 Thread jurian
How would I go about implementing a model that only exists to be inherited from and not used on it's own? Example: class Animal(models.Model): name = models.CharField() class Dog(Animal): x = models.CharField() class Cat(Animal): y = models.CharField() In the example I want to create and

Re: localflavor in admin

2008-03-30 Thread Daniel Roseman
On Mar 30, 8:49 pm, erikankrom <[EMAIL PROTECTED]> wrote: > I have a model: > > from django.db import models > from django import newforms as forms > from django.contrib.localflavor.us import forms as us_forms > > class Address(models.Model): > member = models.ForeignKey(M

Re: localflavor in admin

2008-03-30 Thread Evert Rol
> I have a model: > > from django.db import models > from django import newforms as forms > from django.contrib.localflavor.us import forms as us_forms > > class Address(models.Model): > member = models.ForeignKey(Member, unique=True) > street = models

Multiple sites on shared host

2008-03-30 Thread Brandon Taylor
Hi everyone, I'm on shared hosting and can't modify any Apache settings. So, I'm assuming I need to specify which settings file to use in .htaccess. I have two projects on my server. The first one is working correctly, the second is not. The problem with the second is that it seems to be loading

Re: localflavor in admin

2008-03-30 Thread erikankrom
Sorry, I was referring to the state and zip fields. After modifying my model, doing a sqlreset, and implementing the changes, they now show up. Thanks! I was confused between the functionality of the forms and the fields in models. I'll get into the widget usage in the forms when building more

Django Admin WAP

2008-03-30 Thread leonel
Hello: Is there a WAP admin for django ?? Been searching and didn't found anything about it Thank you Leonel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send ema

Re: Django Admin WAP

2008-03-30 Thread Jeff Anderson
leonel wrote: Hello: Is there a WAP admin for django ?? Been searching and didn't found anything about it I'm fairly certain that there is no such thing. I am curious as to why you need it though. What specifically are you trying to accomplish? Jeff Anderson signature.asc Descriptio

Google Maps API

2008-03-30 Thread cmccomas80
I have a field I'm using that shows where events are around our area for sports collectors, what I'd like to do is implement Google Maps, kind of like the Washington Post does here: http://projects.washingtonpost.com/2008-presidential-candidates/tracker/dates/2008/apr/09/6741/ Where/what would I

Re: synchronization problem

2008-03-30 Thread Mark Green
On Sun, 2008-03-30 at 17:49 -0700, meppum wrote: > The easiest way to deal with this is to create a "version" column that > gets updated with the current version number of the row in the > database. Increment this column value each time a save is performed on > that row. Override the save method o

Re: Django Admin WAP

2008-03-30 Thread leonel
Jeff Anderson wrote: > leonel wrote: >> Hello: >> >> Is there a WAP admin for django ?? Been searching and didn't found >> anything about it >> > I'm fairly certain that there is no such thing. > > I am curious as to why you need it though. What specifically are you > trying to accomplish? >

Re: Google Maps API

2008-03-30 Thread Ramiro Morales
On Sun, Mar 30, 2008 at 10:08 PM, <[EMAIL PROTECTED]> wrote: > > I have a field I'm using that shows where events are around our area > for sports collectors, what I'd like to do is implement Google Maps, > kind of like the Washington Post does here: > > > http://projects.washingtonpost.com/

Re: Google Maps API

2008-03-30 Thread Michael
I would search for "google maps API." Really though the integration with google maps is mostly a front end application. So you would create it all with front end javascript. The only real django knowledge to pass here would be to make store the longitude and latitude values that google gives you

mark_safe for a html field

2008-03-30 Thread Marc Garcia
Hi, does anybody know a simple way to mark a model field as safe html (and tell django not to escape this field content)? I can create a method in the model that outputs the return of mark_safe applied to field content, and it should work. But may be there is something more simple that I'm missi

Re: mark_safe for a html field

2008-03-30 Thread Kenneth Gonsalves
On 31-Mar-08, at 7:20 AM, Marc Garcia wrote: > does anybody know a simple way to mark a model field as safe html (and > tell django not to escape this field content)? http://www.djangoproject.com/documentation/templates/#automatic-html- escaping -- regards kg http://lawgon.livejournal.com h

Re: many to many field problem

2008-03-30 Thread didia lim
Hi evert, the transparency is inside class tableSlot, when i'm looping tableSlot, it works fine... but when i add the columnsetup or querysetup, i got the error.. maybe my query is wrong? :( - Original Message From: Evert Rol <[EMAIL PROTECTED]> To: django-users@googlegroups.com Sent:

Re: Django Admin WAP

2008-03-30 Thread David Marquis
Using the Django admin on a WAP browser would involve serious usability issues. I just can't imagine myself filling a django edit form with a numeric keypad, I would quickly throw the phone out the window. I really don't understand why would anyone want to endure such a thing, except from th

Re: Model Inheritance

2008-03-30 Thread David Marquis
I think that Django does not support model inheritance (yet). The dev team seems to have thought about it : http://code.djangoproject.com/wiki/ModelInheritance You might want to ask Google for "django model inheritance" for all the information you need. -- David On 30-Mar-08, at 4:27 PM, juri

JSON-compatible query filter specification and code

2008-03-30 Thread Michael Halle
Hello, I've just uploaded a snippet for specifying Django query filters using a nested list syntax. This representation enables query filters to be built by a client-side JavaScript application and sent to a server app using JSON. The code included in the snippet transforms this query filter spe

Re: synchronization problem

2008-03-30 Thread PENPEN
I checked the transaction module of django. I think it could work. But why do you prefer this version column solution? Does it have better performance? On 3月31日, 上午9时54分, meppum <[EMAIL PROTECTED]> wrote: > I found this thread helpful. > > http://groups.google.com/group/django-users/browse_thread

Re: Using Django for Teaching

2008-03-30 Thread Todd O'Bryan
Sorry this is two weeks late (it's been a bear of a two weeks), but I use Django with high school students who've done the equivalent of a year of college programming--the AP Computer Science AB curriculum. We've been working on a webapp for two years that has evolved into something with 8 apps, t

Re: Using Django for Teaching

2008-03-30 Thread Kenneth Gonsalves
On 31-Mar-08, at 9:58 AM, Todd O'Bryan wrote: > Sorry this is two weeks late (it's been a bear of a two weeks), but > I use Django with high school students who've done the equivalent > of a year of college programming--the AP Computer Science AB > curriculum. what age would these student

Re: how to force char field instead varchar to be created

2008-03-30 Thread Malcolm Tredinnick
On Thu, 2008-03-27 at 13:06 -0700, eat wrote: > I want to have char fields (db storage reason) instead of varchar > how to force that in the models.py ?? > > django seems to create only varchar You'll need to create a custom model field or a custom database backend. Malcolm -- Atheism is a n

'module' object has no attribute 'day_abbr' --Problem editing using Admin

2008-03-30 Thread Ryan Vanasse
I'm sorry for writing at such an early, clueless time in my learning process (both with python and django) but this problem appears to be in code I didn't write and I'm not sure what the best way to work around this problem is. I'm sorry for not having lurked more to understand the norms of this g

Re: Localizing URLs

2008-03-30 Thread Malcolm Tredinnick
On Fri, 2008-03-28 at 06:13 -0300, Marinho Brandao wrote: > Hi, > > I had tryied several ways a lot of time trying to localize my URLs, > like in django-authopenid [1] > > but I had have the same result: when I change the current language, > everything works but URLs stills in old language. Whe

Re: Localizing URLs

2008-03-30 Thread [EMAIL PROTECTED]
Perhaps you could try doing a per request url conf: http://www.b-list.org/weblog/2007/nov/06/urlconf/ I'm not sure how this would work, but I think it might help, although I guess you'd need a URL conf for each languages :/ On Mar 30, 11:58 pm, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On F

paginator.get_page(0) returning empty list

2008-03-30 Thread linnewbie
Hi, I'm using Django .96 and I am having a problem with pagination which I find very strange. My model is something like this and I have objects in the database: class Conference(models.Model): conf_no = models.CharField(maxlength=200) country = models.CharField(maxlength=2,choices=cou

Re: 'module' object has no attribute 'day_abbr' --Problem editing using Admin

2008-03-30 Thread Kenneth Gonsalves
On 31-Mar-08, at 10:28 AM, Ryan Vanasse wrote: > class Event(models.Model): > eventName = models.CharField(maxlength=63) > #eventDate = models.DateField() > start_time = models.DateTimeField() > end_time = models.DateTimeField() > eventLocation = models.CharField(ma

Re: Model Inheritance

2008-03-30 Thread jurian
It's working on the latest development release. Does that mean I should move this discussion to the developers group? On Mar 31, 5:01 am, David Marquis <[EMAIL PROTECTED]> wrote: > I think that Django does not support model inheritance (yet). > The dev team seems to have thought about it > :htt

Re: Model Inheritance

2008-03-30 Thread James Bennett
On Mon, Mar 31, 2008 at 1:01 AM, jurian <[EMAIL PROTECTED]> wrote: > It's working on the latest development release. No, it's working in a branch. > Does that mean I > should move this discussion to the developers group? No, it means that if you're interested you should check out the branch,

Re: Model Inheritance

2008-03-30 Thread [EMAIL PROTECTED]
> No, it's working in a branch. By the way, the specific branch that this should be working under is queryset-refactor. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, sen

Re: Multiple sites on shared host

2008-03-30 Thread Amit Ramon
A dumb question: do you have, in your two dispatch.fcgi files, different values for DJANGO_SETTINGS_MODULE, or are they the same? And is sys.path different between the two projects? Because the combination of sys.path and DJANGO_SETTINGS_MODULE has to be different if you want to load different

Custom ID field with random string

2008-03-30 Thread Julien
Hi, I'd like to have a random string as id for my class Project instead of the default auto-incremental number. I suppose I need to start like this: class Project(models.Model): id = RandomStringID(primary_key=True) name = models.CharField(_('Name'), max_length=200) description = mod

Re: 'module' object has no attribute 'day_abbr' --Problem editing using Admin

2008-03-30 Thread Ryan Vanasse
I just commented out the ordering, and it's bringing up the same error. When I try looking at the Events list (to check if anything was added), and got a Template syntax error. (see below) I used an SQLite admin program to check out what was in the calendar_Events table and found nothing. I have

caching question

2008-03-30 Thread Constantin Christmann
Hello Django-Group, I have a caching related question: The website I am currently working on has a header where the login status of the current user is displayed. I am thinking about ways for caching such a site: because of the displayed login status caching on a per view basis would require a

Re: generic views - newforms

2008-03-30 Thread sector119
When you will read Michael's links on documentation you can use generic views on newforms: http://217.196.165.10/create_update.txt They have create and update preview support also, just use preview=True option. And object_delete can use id's like '1/2/3/4/5/10/128' to use url's like /people/person