File: xml_output.cfg

package info (click to toggle)
httpry 0.1.8-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 436 kB
  • sloc: ansic: 1,358; perl: 1,336; sh: 155; makefile: 62
file content (22 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# Config file for xml_output.pm
#
# $output_file (required)
#    A valid path to write an output file
#    containing the XML data.
#
# $flow_version (required)
#    Specify the version of the XML flow
#    structure; this should match the
#    current httpry version
#
# $xml_version (required)
#    (Arbitrary) version number to mark
#    file structure changes
#

$output_file  = "xml_output.xml";
$flow_version = "0.1.8";
$xml_version  = "0.2";

1;