Jann Forrer schrieb:
I am a bit confused with the svn stuff.
Welcome to the club
--- tabs.jx (revision 190723)
+++ tabs.jx (working copy)
-<!-- $Id: overview.jx 123960 2005-01-03 12:39:05Z andreas $ -->
+<!-- $Id$ -->
This makes sense: your local copy does not have a new $Id$ yet, or to be
more precise: it will be expanded when you commit (if the file has the
appropriate property, see below)
The website:
https://svn.apache.org/repos/asf/lenya/trunk/src/webapp/lenya/usecases/admin/tabs.jx
also shows andreas as the last author.
If you look at
http://svn.apache.org/viewcvs.cgi/lenya/trunk/src/webapp/lenya/usecases/admin/tabs.jx
you will see the revisions.
What I don't understand is why the content shows an obsolete $Id$ !?
Why are the author the version and the date different?
BTW how can i assure that <!-- $Id$ --> is expanded with the necessary
informations (i.e. version, date, author)? Is this done by svn
automatically?
It is only done automatically if the appropriate property is set:
svn propset svn:keywords "Id" <your-file>
Unfortunately, this property is not set by default. So if you create a
new file (or find one where this is not yet set), you need to set the
property and do svn commit (a property change is a change to the
repository, as is a content change)
In the case of the file you are referring to, the property is in fact set:
Doing
svn proplist --verbose src/webapp/lenya/usecases/admin/tabs.jx
returns
Properties on 'src/webapp/lenya/usecases/admin/tabs.jx':
svn:keywords : Id
When you commit your changes, "you" will be expanded in the $Id$. I am
not sure if this will show up in the contents of
http://svn.apache.org/viewcvs.cgi, but it will show up in the revision
log, and in the source of anybody checking it out.
--
Wolfgang
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]