[tg-trunk] Re: indentation error in turbogears/controllers.py:expose

2007-05-09 Thread Florent Aide
Le mercredi 09 mai 2007 à 21:10 +0300, Ori Avtalion a écrit : Hi, This is very trivial to fix. Can someone please pick it up? done in r3005 FYI the trunk is not advertised as stable... If you want semi-stable code please use 1.0 branch, where 1.0.3 will take place. Cheers, Florent.

[tg-trunk] Re: indentation error in turbogears/controllers.py:expose

2007-05-09 Thread Mark Ramm
FYI the trunk is not advertised as stable... If you want semi-stable code please use 1.0 branch, where 1.0.3 will take place. This is particularly true right now as we are trying to figure out the best way to handle configuration now that CherryPy has changed their config interface. --Mark

[tg-trunk] Re: indentation error in turbogears/controllers.py:expose

2007-05-09 Thread Ori Avtalion
Florent Aide wrote: Le mercredi 09 mai 2007 à 21:10 +0300, Ori Avtalion a écrit : Hi, This is very trivial to fix. Can someone please pick it up? done in r3005 There's two more in turbogears/toolbox/catwalk/__init__.py :D FYI the trunk is not advertised as stable... If you want

[tg-trunk] Re: indentation error in turbogears/controllers.py:expose

2007-05-09 Thread Florent Aide
Le jeudi 10 mai 2007 à 00:48 +0300, Ori Avtalion a écrit : [...] There's two more in turbogears/toolbox/catwalk/__init__.py :D done in r3006 [This is probably getting off-topic] I'm not looking for a real stable version. Just one that I can hack and submit patches for. This is cool :)

[tg-trunk] Re: indentation error in turbogears/controllers.py:expose

2007-05-09 Thread Ori Avtalion
Hi, Florent Aide wrote: Le jeudi 10 mai 2007 à 00:48 +0300, Ori Avtalion a écrit : There's two more in turbogears/toolbox/catwalk/__init__.py :D done in r3006 Python interprets tabs as ' '*8, not *4, which means the file is still indented incorrectly. Run python -m tabnanny file for a

[tg-trunk] Re: indentation error in turbogears/controllers.py:expose

2007-05-09 Thread Florent Aide
Le jeudi 10 mai 2007 à 01:31 +0300, Ori Avtalion a écrit : Hi, [...] Python interprets tabs as ' '*8, not *4, which means the file is still indented incorrectly. Argh!!! :-/ I should have looked more precisely... I though stupidly it was all tabs everywhere like the other file... :( Who

[tg-trunk] Re: indentation error in turbogears/controllers.py:expose

2007-05-09 Thread Ian Charnas
Florent, you are my hero! thank you, -Ian On May 9, 7:16 pm, Florent Aide [EMAIL PROTECTED] wrote: Le jeudi 10 mai 2007 à 01:31 +0300, Ori Avtalion a écrit : Hi, [...] Python interprets tabs as ' '*8, not *4, which means the file is still indented incorrectly. Argh!!! :-/ I should

[tg-trunk] Re: indentation error in turbogears/controllers.py:expose

2007-05-08 Thread Mark Ramm
I think we should remove all the tabs for all TurboGears source files. --Mark On 5/8/07, Ian Charnas [EMAIL PROTECTED] wrote: Is anyone else getting errors running TG from svn? The indentation on the expose function in turbogears/controllers.py is messed up because someone put in tabs

[tg-trunk] Re: indentation error in turbogears/controllers.py:expose

2007-05-08 Thread Christoph Zwerschke
Mark Ramm wrote: I think we should remove all the tabs for all TurboGears source files. As already suggested, reindent.py should be run regularly on the whole source tree. This would also solve the trailing whitespace problem.