1SVK::Log::Filter::XML(3U)ser Contributed Perl DocumentatiSoVnK::Log::Filter::XML(3)
2
3
4
6 SVK::Log::Filter::XML - display log messages in XML format
7
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
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
25 compatible with Subversion's XML output, so you should be able to use
26 tools like <http://ch.tudelft.nl/~arthur/svn2cl/> without any
27 modification. However, since SVK supports arbitary log filters (see
28 SVK::Log::Filter for details on writing one), it may be easier to write
29 your own output 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 Providing this command-line option to the log command prevents the XML
37 filter from displaying the contents of the log message. All other
38 information is displayed as usual.
39
40 verbose
41 Providing this command-line option to the log command makes the XML
42 filter display history information for each revision. The history
43 includes the kind of modification (modify, add, delete) and any copy
44 history for each path that was modified in the revision.
45
47 XML leaves all properties and the stash intact.
48
49
50
51perl v5.36.0 2023-01-20 SVK::Log::Filter::XML(3)