Re: Freebsd Port

2005-10-25 Thread Kenneth Gonsalves
On Tuesday 25 Oct 2005 10:57 pm, Clint Ecker wrote: > I've also been using django on freebsd for quite a while now. But its > an old revision. svn update -- regards kg http://www.livejournal.com/users/lawgon tally ho! http://avsap.org.in ಇಂಡ್ಲಿನಕ್ಸ வாழ்க!

Re: manipulator save object is Not Implemented?

2005-10-25 Thread Armin
Thanks very much. It is useful. Armin

Re: Tag library not found

2005-10-25 Thread [EMAIL PROTECTED]
Aha! I removed my django checkout, and downloaded it fresh, and voila! What confused me, was that the second comment on the ticket seems to indicate that a fresh checkout was unecessary, and all that needed to be done was remove the .pyc/o files, as per the BackwardChanges page, which I had

Re: Exception raised when calling "save()" on simple model object.

2005-10-25 Thread [EMAIL PROTECTED]
Adam wrote: > I wrote a ticket about this (http://code.djangoproject.com/ticket/662). > I think I found where and why this occurs, but I don't have a patch for > it, because I suspect there are more things going on than I know about, > and I don't want to do just a quick fix for my particular

Re: Exception raised when calling "save()" on simple model object.

2005-10-25 Thread Adam
I forgot to add...in your particular case, I think s = statustypes.StatusType(description='foo') will work. Or if you don't know what the description is yet, and need to save before setting it, s = statustypes.StatusType(description='') What it requires is having some kind of keyword

Re: Freebsd Port

2005-10-25 Thread Clint Ecker
I've also been using django on freebsd for quite a while now.  But its an old revision.On 10/25/05, Kenneth Gonsalves < [EMAIL PROTECTED]> wrote:On Tuesday 25 Oct 2005 2:32 pm, [EMAIL PROTECTED] wrote:> I just sent a new port request for Django on FreeBSD.>

Exception raised when calling "save()" on simple model object.

2005-10-25 Thread Peter Havens
Using Django revision 1011, I defined an app called "audit". I defined a model for that app as follows: class StatusType(meta.Model): description = meta.CharField(maxlength=100) ...I tried testing it like this: >>> from django.models.audit import * >>> s = statustypes.StatusType() >>>

Re: Tag library not found

2005-10-25 Thread [EMAIL PROTECTED]
Hi, I'm still getting this error, despite following all the steps in the tutorial, and the notes in the BackwardsIncompatibleChanges. Is there something that I'm missing? Thanks J

Re: Newbie questions

2005-10-25 Thread Adrian Holovaty
On 10/25/05, rockmh <[EMAIL PROTECTED]> wrote: > Hmmm. Did that, but the admin page still links to example.com. > (Did a 'pkill python' and still no change after a refresh.) > > WTF, the 'example.com' is hard-coded into the base_site.html template! > Django is full of surprises. ;-) Yes, that's

Re: Freebsd Port

2005-10-25 Thread Kenneth Gonsalves
On Tuesday 25 Oct 2005 2:32 pm, [EMAIL PROTECTED] wrote: > I just sent a new port request for Django on FreeBSD. > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/87973 > If someone else using Django on FreeBSD > and has comment, feel free to write me. i am using django on freebsd, but i

Re: Help using POST to pass values

2005-10-25 Thread paolo
It works now! Sorry but I didn't find that page. Thanks a lot, Sune.

Re: Help using POST to pass values

2005-10-25 Thread Sune Kirkeby
On 10/25/05, paolo <[EMAIL PROTECTED]> wrote: > Would you please help me to clarify how things work and what I have > missed? See the "POST to views loses POST data" section in http://code.djangoproject.com/wiki/NewbieMistakes, I suspect that's your problem. /s

Freebsd Port

2005-10-25 Thread pablo . pernot
Hi everybody, I just sent a new port request for Django on FreeBSD. http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/87973 If someone else using Django on FreeBSD and has comment, feel free to write me. Thanks if (my english is poor): I'm french

Help using POST to pass values

2005-10-25 Thread paolo
Hi, since today I've used the admin interface as a frontend for my applications' data, but now I'm trying to do a simple query interface by my own. I need some help figuring how to pass values through requests. Actually the frontend consists of two pages: page A contains a form where the user

Re: templates for newbies

2005-10-25 Thread stava
I'm logging the solution here, in case someone else needs this: The correct statement is: return HttpResponse(''.join(raw_template), mimetype='text/plain') I.e., the raw_template variable is actually a list of strings, and has to be translated into one simple string in order for HttpResponse()