RE: appache and pthonpath

2006-01-24 Thread mary . adel
Thanks for all your help Mary Adel Software Developper ITrize-Egypt 13 Naguib Hashad medan elhegaz heliopolis email: [EMAIL PROTECTED] Office: +202 - 6236612 EXT. 102 Mobile: +2012 5241719 > Original Message > Subject: Re: appache and pthonpath > From: "akaihola" <[EMAIL PRO

Re: appache and pthonpath

2006-01-24 Thread akaihola
If you have /var/www/mysite/settings.py then you need PythonPath "['/var/www']+sys.path" just like limodou just instructed. Your DocumentRoot should be outside the Django project tree. I usually have: /home/myproject/public_html /home/myproject/django/myproject and define: DocumentRoot /home/myp

Tinymce

2006-01-24 Thread mary . adel
I am trying to make my interface better so i used tinymce 1- i downloaded it and i put the folder tiny_mce in my this path django/contrib/admin/media/js/tiny_mce 2-i created the tinyMCE.init as textareas.js in the same folder of tiny_mce 3-i wroet in my model the follows class META:

Re: Magic - removal branch .. is the API stable yet?

2006-01-24 Thread hugo
>AFAIR unicodefication must be done before Django 1.0. This not big API >change, but some code must be changed too after it. >(Ex. str->repr or str->unicode) Before doing it, there still is the analysis of what needs exactly to be done - for now it's just a list of keywords on the wiki page, I de

Re: Magic - removal branch .. is the API stable yet?

2006-01-24 Thread Ivan Fedorov
Adrian Holovaty пишет: On 1/23/06, Joseph Kocherhans <[EMAIL PROTECTED]> wrote: Is there any reason subtyping and field descriptors need to happen on magic-removal? Could we just test/merge magic-removal and create a new branch for those tasks? Is there anything else but those two tasks left?

Re: Extending Django: "Adaptation" via Generic Functions

2006-01-24 Thread hugo
>For instance with manipulators, after magic-removal, it will be >elementary to over-ride the Model.AddManipulator(), and >Model.ChangeManipulator(pk). So you could then apply RuleDispatch in >your own model, and not need it built-in to Django at all. You can only override methods that are defin