Re: Images in MySQL

2008-07-14 Thread lukeqsee
ilesystem and serving them from   > a seperate http server. > > Hopefully, I haven't told you something you already know and have   > already considered. > > Best regards, > Oliver > > Am 14.07.2008 um 16:41 schrieb lukeqsee: > > > > > I know you can s

Images in MySQL

2008-07-14 Thread lukeqsee
I know you can store images in a BLOB field in mysql, but is it possible with Django models? Thanks, Luke --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Alpha Chars in dynamic url?

2008-07-10 Thread lukeqsee
t_object_or_404(User, username = user_id) > > Hope that helps, > >   -- Scott > > > > On Thu, Jul 10, 2008 at 1:42 PM, lukeqsee <[EMAIL PROTECTED]> wrote: > > > Sorry I didn't my last post clear > > what I want is mysite.com/people/ {dynamic url ie. name)/

Re: Alpha Chars in dynamic url?

2008-07-10 Thread lukeqsee
Sorry I didn't my last post clear what I want is mysite.com/people/ {dynamic url ie. name)/ On Jul 10, 1:34 pm, lukeqsee <[EMAIL PROTECTED]> wrote: > Can you use alpha characters in the urls? like mysite.com/people/ > [name]/ > > Is this possible? Haven't found anything in

Alpha Chars in dynamic url?

2008-07-10 Thread lukeqsee
Can you use alpha characters in the urls? like mysite.com/people/ [name]/ Is this possible? Haven't found anything in the documentation relating to it. Thanks, Luke --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Create field from two others

2008-07-03 Thread lukeqsee
Can you take a first_name & a last_name field and then in the same model make a field that is full_name? ie first_name = models.CharField(max_length=75) last_name = models.CharField(max_length=75) full_name = models.CharField(value=first_name + last_name, max_length=100) I know that is not