> He was issuing 'svn info' with a URL argument. How does *that* look on
> your system?
Here is the o/p from my system (of course, I used "file://" access scheme) :
without xml option:
===================
$/opt/svn-1.4.3/bin/svn info file:///opt/samagdocs/
Path: samagdocs
URL: file:///opt/samagdocs
Repository Root: file:///opt/samagdocs
Repository UUID: d87b2b87-2545-461f-ae99-430b66f94c56
Revision: 43
Node Kind: directory
Last Changed Author: ram
Last Changed Rev: 43
Last Changed Date: 2007-04-08 20:09:13 +0530 (Sun, 08 Apr 2007)
with xml option:
==========================
$/opt/svn-1.4.3/bin/svn info file:///opt/samagdocs/ --xml
<?xml version="1.0"?>
<info>
<entry
kind="dir"
path="samagdocs"
revision="43">
<url>file:///opt/samagdocs</url>
<repository>
<root>file:///opt/samagdocs</root>
<uuid>d87b2b87-2545-461f-ae99-430b66f94c56</uuid>
</repository>
<commit
revision="43">
<author>ram</author>
<date>2007-04-08T14:39:13.790622Z</date>
</commit>
</entry>
</info>
very quickly, I started the "svnserve" daemon and here are the results:
without and with xml option:
=======================
$/opt/svn-1.4.3/bin/svn info svn://192.168.0.123/samagdocs
Path: samagdocs
URL: svn://192.168.0.123/samagdocs
Repository Root: svn://192.168.0.123/samagdocs
Repository UUID: d87b2b87-2545-461f-ae99-430b66f94c56
Revision: 44
Node Kind: directory
Last Changed Author: ram
Last Changed Rev: 44
Last Changed Date: 2007-04-10 07:50:12 +0530 (Tue, 10 Apr 2007)
$/opt/svn-1.4.3/bin/svn info svn://192.168.0.123/samagdocs --xml
<?xml version="1.0"?>
<info>
<entry
kind="dir"
path="samagdocs"
revision="44">
<url>svn://192.168.0.123/samagdocs</url>
<repository>
<root>svn://192.168.0.123/samagdocs</root>
<uuid>d87b2b87-2545-461f-ae99-430b66f94c56</uuid>
</repository>
<commit
revision="44">
<author>ram</author>
<date>2007-04-10T02:20:12.200144Z</date>
</commit>
</entry>
</info>
HTH,
/Ram
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Apr 10 04:50:23 2007