Re: 0.96 tarball is corrupt

2007-08-14 Thread Dave Rowe


On Tue, 14 Aug 2007 12:56:14 -0500, "James Bennett" <[EMAIL PROTECTED]> wrote:
> 
> On 8/14/07, john <[EMAIL PROTECTED]> wrote:
>> I've downloaded the tarball several times - each time the archiver
>> shows it as corrupt (other tarballs work fine).  Using Ubuntu Feisty.
>> (and the Feisty backport package is broken as well).
> 
> I'm able to download it and unpack it just fine on each of:
> 
> * Mac OS X
> * FreeBSD
> * Ubuntu Dapper
> 

Appears to work under Windows as well.  XP to be specific.


--~--~-~--~~~---~--~~
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 from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: problem to save..

2007-07-25 Thread Dave Rowe



On Wed, 25 Jul 2007 15:33:19 +0200, Horst Gutmann <[EMAIL PROTECTED]> wrote:
> 
> Marco A. wrote:
>> HI !
>> In model I have :
>>
>> from django.db import models
>>
>> # Create your models here.
>> class User(models.Model):
>> User = models.CharField(maxlength=200)
>> Pasw = models.CharField(maxlength=16)
>> def __unicode__(self):
>> return self.question
>> def was_published_today(self):
>> return self.User
>> class Admin:
>>pass
>>
>>
> 
> Have you sync'd the database? Btw.: why do you give fields uppercase
> names?
> 
> - Horst
> 

Lastly, why not use the built-in User model that comes with Django?  Using it 
allows your users to be seen by all apps under your project.


--~--~-~--~~~---~--~~
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 from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---