1SVK::Log::Filter::XML(3U)ser Contributed Perl DocumentatiSoVnK::Log::Filter::XML(3)
2
3
4

NAME

6       SVK::Log::Filter::XML - display log messages in XML format
7

SYNOPSIS

9           > svk log --xml
10           <?xml version="1.0" encoding="utf-8"?>
11           <log>
12           <logentry revision="1234" original="456">
13           <author>author</author>
14           <date>2006-05-16T15:43:28.889532Z</date>
15           <msg>This is the commit message for the revision.</msg>
16           </logentry>
17           </log>
18           > svk log --output xml
19           ...
20

DESCRIPTION

22       The XML filter is an output filter for displaying log messages in XML
23       format.  The organization of the XML format should be self-explanatory
24       after a little experimentation.  The format is designed to be compatiā€
25       ble with Subversion's XML output, so you should be able to use tools
26       like <http://ch.tudelft.nl/~arthur/svn2cl/> without any modification.
27       However, since SVK supports arbitary log filters (see SVK::Log::Filter
28       for details on writing one), it may be easier to write your own output
29       format than to process the XML.
30
31       This filter is invoked implicitly when you specify the "--xml" argument
32       to SVK's log command.  Two arguments to the log command modify XML's
33       behavior.
34
35       quiet
36
37       Providing this command-line option to the log command prevents the XML
38       filter from displaying the contents of the log message.  All other
39       information is displayed as usual.
40
41       verbose
42
43       Providing this command-line option to the log command makes the XML
44       filter display history information for each revision.  The history
45       includes the kind of modification (modify, add, delete) and any copy
46       history for each path that was modified in the revision.
47

STASH/PROPERTY MODIFICATIONS

49       XML leaves all properties and the stash intact.
50
51
52
53perl v5.8.8                       2006-12-28          SVK::Log::Filter::XML(3)
Impressum