Aggregate many fields

2009-11-11 Thread Dids
e the same syntax as above. Am I missing something, or is the example above (or something equivalent) just too good to be true? Regards, Dids, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" g

Re: parsing urls with dot

2009-07-13 Thread Dids
; does the job and is probably better anyway. Thanks for your help. Regards, Dids, On Jul 10, 10:20 pm, Aaron Maxwell wrote: > On Thursday 09 July 2009 05:47:48 am Dids wrote: > > > > Why not to add dots to your regexp? For example, [\w\d\-\.]+ ? > > > I guess my quest

Re: parsing urls with dot

2009-07-09 Thread Dids
> Why not to add dots to your regexp? For example, [\w\d\-\.]+ ? That's the problem, it doesn't work. I guess my question should have been: How come \. doesn't appear to be matched in url.py? --~--~-~--~~~---~--~~ You received this message because you are subs

parsing urls with dot

2009-07-09 Thread Dids
yone of you had come across this before? Regards, Dids, --~--~-~--~~~---~--~~ 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 unsubscr

Re: Merging apps

2009-04-01 Thread Dids
You're correct, it's projects, not applications. Each project has 1 application at the moment. Not all of the project have user management but a couple have. On Apr 1, 2:10 pm, Thomas Guettler wrote: > Dids schrieb: > > > Hi, > > > I have a handful of applica

Merging apps

2009-04-01 Thread Dids
Hi, I have a handful of application running on the same apache server. More are on the way and it's starting to get messy to manage. I'd like to "merge" all the applications into one but I'm not sure how to go about it. [What I want is, a single entry in my apache.conf file, not one per app as

Re: Cookie problem on multiple sites

2009-03-04 Thread Dids
Fixed the problem :) Turns out, underscores '_' are not valid characters for domain names ... Told you I was new to this... Thanks all for your input, much appreciated :) Regards, Didier, --~--~-~--~~~---~--~~ You received this message because you are subscribe

Re: Cookie problem on multiple sites

2009-03-03 Thread Dids
> Then it's not working fine. What could explain the missing cookies then? I get them for FF. Is there something "special" in IE that could explain the problem? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dja

Re: Cookie problem on multiple sites

2009-03-02 Thread Dids
ookies at all :( Dids, --~--~-~--~~~---~--~~ 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

Re: Cookie problem on multiple sites

2009-02-27 Thread Dids
I tried that, thanks for the input (it helped moving forward, see below). I've also changed the privacy settings in IE so I get prompted when cookies arrived. What I found is that on site1 (the working one), I get prompted for a cookie as soon as I request the Admin page. On site2, on the other

Re: Cookie problem on multiple sites

2009-02-27 Thread Dids
Unless it's a known issue, I'm not expecting anyone to know for sure what the problem is. Thing is, I'm no expert to Django and Apache, and I don't really know how to go about troubleshooting a cookie issue. Again, if anyone has any pointer, it would be much apprec

Cookie problem on multiple sites

2009-02-27 Thread Dids
as I don't even know what to chase anymore. Thanks. Dids. --~--~-~--~~~---~--~~ 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 un

Re: user defined model

2009-02-09 Thread Dids
kip the table cration for each entity but I'm worried the code for data retrieval might get messy. Not to mention the templates ... Thanks for your input. Dids, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups &q

user defined model

2009-02-09 Thread Dids
Hi, I need to update the model.py file at run-time. Where can I find the file on disk from the views.py please? What I'm trying to do is : Open model.py , append a new class , invoke syncdb. Thx Dids, --~--~-~--~~~---~--~~ You received this message becaus