You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Karl Fogel <kf...@newton.ch.collab.net> on 2002/05/02 17:44:58 UTC

Re: svn commit: rev 1854 - trunk/subversion/clients/cmdline trunk/subversion/tests/clients/cmdline/getopt_tests_data

kfogel@tigris.org writes:
> Log:
> Implemnt "svn log --xml" for XML format log output.

Okay.  Anyone want to write a script that converts our log output into
pretty HTML for display on a web page somewhere?  Say, when you click
on a log message's revision, it would run another script that shows
the "svn diff" output for that revision, also formatted as a web page?

Just a thought.  Can link in with ViewSVN when there is a ViewSVN,
too.

:-),
-K

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn commit: rev 1854 - trunk/subversion/clients/cmdline trunk/subversion/tests/clients/cmdline/getopt_tests_data

Posted by Karl Fogel <kf...@newton.ch.collab.net>.
Greg Stein <gs...@lyra.org> writes:
> > Okay.  Anyone want to write a script that converts our log output into
> > pretty HTML for display on a web page somewhere?  Say, when you click
> > on a log message's revision, it would run another script that shows
> > the "svn diff" output for that revision, also formatted as a web page?
> > 
> > Just a thought.  Can link in with ViewSVN when there is a ViewSVN,
> > too.
> 
> ViewSVN will use the Python bindings, rather than processing 'svn' output.
> IOW, this formatting stuff won't affect it...

Oh, what I meant was that clicking on the revision number would send
you to a ViewSVN url, not that ViewSVN would parse log output.

-K

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn commit: rev 1854 - trunk/subversion/clients/cmdline trunk/subversion/tests/clients/cmdline/getopt_tests_data

Posted by Greg Stein <gs...@lyra.org>.
On Thu, May 02, 2002 at 12:44:58PM -0500, Karl Fogel wrote:
> kfogel@tigris.org writes:
> > Log:
> > Implemnt "svn log --xml" for XML format log output.
> 
> Okay.  Anyone want to write a script that converts our log output into
> pretty HTML for display on a web page somewhere?  Say, when you click
> on a log message's revision, it would run another script that shows
> the "svn diff" output for that revision, also formatted as a web page?
> 
> Just a thought.  Can link in with ViewSVN when there is a ViewSVN,
> too.

ViewSVN will use the Python bindings, rather than processing 'svn' output.
IOW, this formatting stuff won't affect it...

Cheers,
-g

-- 
Greg Stein, http://www.lyra.org/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn commit: rev 1854 - trunk/subversion/clients/cmdline trunk/subversion/tests/clients/cmdline/getopt_tests_data

Posted by Joe Orton <jo...@manyfish.co.uk>.
On Thu, May 02, 2002 at 12:44:58PM -0500, Karl Fogel wrote:
> kfogel@tigris.org writes:
> > Log:
> > Implemnt "svn log --xml" for XML format log output.
> 
> Okay.  Anyone want to write a script that converts our log output into
> pretty HTML for display on a web page somewhere?  Say, when you click
> on a log message's revision, it would run another script that shows
> the "svn diff" output for that revision, also formatted as a web page?

Some XSL attached to play with, e.g. using libxslt:

 $ svn log --xml ... | xsltproc log2html.xsl - > my.html

And log2gnu.xsl produces a GNU-style ChangeLog, even less pretty ;)

joe