Django full text search best solution

2008-10-28 Thread alain D.
Hi, I'm looking at all the available solutions to implement a full text index for django models and I found various projects at different stages of maturity but none of them seems to have a strong community support ... so here is the list along with my comments (and last commit time) ... it any o

Re: Django full text search best solution

2008-10-28 Thread alain D.
Being inside database transactions is a good reason to use database's full text index ... but the sake of simplicity, a full text index created by python code inside the models declaration (easily maintainable) would be nice ... > Since all external full text indexing (sphinx, lucene) won't be pa

Form wizard back button

2009-02-06 Thread alain D.
Is there a way to add a back button using django's form wizard to navigate back to a previously filled form? I'd like users to be able to fill form1, go to form2, click "back": go to form1 (with populated fields) and continue the process ... is that possible? --~--~-~--~~--

Re: Form wizard back button

2009-02-09 Thread alain D.
It seems to me like a quite simple requirement for a form wizard ... but I'm still unable to find a simple way to do it ... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: Form wizard back button

2009-02-16 Thread alain D.
anyone? --~--~-~--~~~---~--~~ 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 django-users+unsubscr...@

how to cache django javascript message file ('/jsi18n/') with apache (production setup)

2008-03-05 Thread alain D.
Hi, If there a simple apache configuration that is know to make browser cache the javascript message file ('jsi18n') in a standard apache django production setup ? I've tried to add : ExpiresActive on ExpiresDefault "access plus 1 month" To my

Re: how to cache django javascript message file ('/jsi18n/') with apache (production setup)

2008-03-06 Thread alain D.
Thanks for the precise reply ... looking forward to know about your ideas on this matter ... --~--~-~--~~~---~--~~ 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@goog

translation question ("how do I" question)

2007-10-24 Thread alain D.
Hi, Here is a chunk of django template ... I'd like to translate it using django i18n mecanism but I'm hitting a problem (I guess it's the same I was hitting a few months ago [see history]). I guess there is no perfect solution for that right now, but a working workaround would be good enough :

Re: translation question ("how do I" question)

2007-10-25 Thread alain D.
L PROTECTED]> wrote: > On 24-Oct-07, at 9:24 PM, alain D. wrote: > > > """By > %}>{{ myobject.owner.username }}""" > > > of course, I'd like to have : """by %(username)s""" as a key in my > > transl