Re: OT: svn and '$Id$'

2009-03-25 Thread Alan
'$Id$' is working too, if I do find . -name "*.py" -exec svn propset svn:keywords "Id" {} \; On Mar 24, 10:36 pm, Alan wrote: > I got a solution. > > I undid what I did in ~/.subversion/config > Forget about Id, and used just  "$Date$" in my *.py, then > find . -name "*.py" -execsvnpropsetsvn:ke

Re: OT: svn and '$Id$'

2009-03-24 Thread Alan
I got a solution. I undid what I did in ~/.subversion/config Forget about Id, and used just "$Date$" in my *.py, then find . -name "*.py" -exec svn propset svn:keywords "Date" {} \; commit it and it worked. Cheers, Alan On Mar 24, 5:34 pm, Alan wrote: > Hi guys, tanks for your help but I am d

Re: OT: svn and '$Id$'

2009-03-24 Thread Alan
Hi guys, tanks for your help but I am definitely doning something wrong because I don't get what I want. So, I am trying this: I have this line in my *.py file: repositoryId = '$Id $' + '$Revision$' + '$Date$' I did: find . -name "*.py" -exec svn propset svn:keywords "Date" {} \; find . -name

Re: OT: svn and '$Id$'

2009-03-24 Thread David Lindquist
On Mar 24, 2009, at 10:09 AM, Alan wrote: > Hi there, > > It's a bit off topic but I guess appropriate anyway. > > So I want to use '$Id$' in my *.py files where '$Id$' got replaced > when I commit my files via svn. > > But I googled and I still couldn't make it work. Can somebody tell > to m

Re: OT: svn and '$Id$'

2009-03-24 Thread David Lindquist
On Mar 24, 2009, at 10:09 AM, Alan wrote: > Hi there, > > It's a bit off topic but I guess appropriate anyway. > > So I want to use '$Id$' in my *.py files where '$Id$' got replaced > when I commit my files via svn. > > But I googled and I still couldn't make it work. Can somebody tell > to m