Re: Internationalization design

2008-09-05 Thread MiloZ
django-flags is born ! http://code.google.com/p/django-flags/ This component helps writing internationalized applications by managing a set of templates per language. Try it :-) Eric Simorre. --~--~-~--~~~---~--~~ You received this message because you are subscri

Re: Internationalization design

2008-09-05 Thread MiloZ
I got it ! django.utils.translation.get_language() it works !! I made a new django component with this stuff: django-flags, soon on Google code ... Cheers, Eric On Sep 5, 1:14 pm, Jarek Zgoda <[EMAIL PROTECTED]> wrote: > Wiadomość napisana w dniu 2008-09-05, o godz. 12:56, pr

Re: Internationalization design

2008-09-05 Thread MiloZ
2008-09-05, o godz. 00:10, przez MiloZ: > > > > > > > Hi, > > > I would like to translate a django project, but my templates are very > > verbose, so I would like to have a localized version of each template > > file. > > > So I chan

Re: Internationalization design

2008-09-05 Thread MiloZ
ction on this subject in chapter > 10:http://www.djangobook.com/en/1.0/chapter10/ >   (at the bottom of page). > > Wiadomość napisana w dniu 2008-09-05, o godz. 00:10, przez MiloZ: > > > > > > > Hi, > > > I would like to translate a django project, b

Re: Workflow Building with NewForms, ModelForm

2008-09-05 Thread MiloZ
Hi, GoFlow, a (the) workflow engine for django: http://code.google.com/p/goflow/ GoFlow provides built-in applications that uses modelforms to edit workflow objects. Cheers, Eric Simorre On Aug 18, 9:52 pm, DoctorMO <[EMAIL PROTECTED]> wrote: > Hello All, > > This is just a quick FYI to state w

Internationalization design

2008-09-04 Thread MiloZ
Hi, I would like to translate a django project, but my templates are very verbose, so I would like to have a localized version of each template file. So I changed the basic "return render_to_response(...)" in my views by the following code: local_code = request.LANGUAGE_CODE or settings.LANGUAG

Re: pluggable django ticketing app?

2008-07-06 Thread MiloZ
Hi, I think it's a good idea for a new django project :-) Another idea is using the database of a php soft like glpi, and let inspectdb do the job. On Jul 6, 7:05 am, chefsmart <[EMAIL PROTECTED]> wrote: > Does anyone know of a pluggable django ticketing app? Something like > the apps used by we

Re: Django based CMS

2008-07-06 Thread MiloZ
If you are searching for a simple cms, you can try this: http://code.google.com/p/django-simplecms/ On Jul 5, 1:09 pm, Fernando Rodríguez <[EMAIL PROTECTED]> wrote: > Hi, > > Is there any open source django based cms you would recommend? Th > eonlyone I've seen so far is PyLucid. What else is t

Re: Django as front-end for php- and zope2-based apps?

2008-06-30 Thread MiloZ
Hi, I have just put a project on Google code, django-punbb: it provides a SSO between these two apps, php and django; more, as dokuwiki can share authentication with punbb, it will be possible to have a django "portal" with a forum and a wiki in php. http://code.google.com/p/django-punbb/ See

Re: debug runserver

2008-06-03 Thread MiloZ
sorry, I just found the answer here; I just add the --norelod option after runserver, and it works ! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-u

debug runserver

2008-06-03 Thread MiloZ
Hi, I use to debug django scripts in the pydev/eclipse environment, it works very well; I try to launch "python manage.py runserver" in debug mode, but it doesn't work. Is there something I forgot ? Thanks. --~--~-~--~~~---~--~~ You received this message because you

Legacy database, many-to-many field, custom column name and generic foreign key

2008-05-31 Thread MiloZ
Hi, Here's the problem: class AssociationClass(models.Model): fk_model1 = models.IntegerField() fk_model2 = models.IntegerField() model2_type = models.IntegerField() after an inspectdb, I would like to tell django that this is an association class, with a generic foreign key. What

News about GoFlow (workflow engine for django)

2008-03-30 Thread MiloZ
Some interesting new features: - fast user switch in debug/test mode - simulation mode with no code - refactoring Try it (again). Don't hesitate asking questions in the FAQ (http:// code.djangoproject.com/wiki/goflow%3AFAQ) --~--~-~--~~~---~--~~ You received thi

GoFlow: a workflow engine for django, available now as a django contrib

2007-09-24 Thread MiloZ
You can here dowload the workflow engine contrib; a demo django project is included http://django-goflow-en.blogspot.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

GoFlow: a workflow engine for django

2007-08-20 Thread MiloZ
Hi, I'm just starting a workflow engine for django, based on Zope2 openflow product. Home: http://django-goflow.blogspot.com/ (in french) Dev trac: https://opensvn.csie.org/traccgi/openflow Take a look, your comments and ideas are welcome.