This file is indexed.

/usr/share/doc/tourney-manager/README is in tourney-manager 20070820-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
=-=-=-=-=-=-=-=-=-=-=-=-=-=
| Xboard Tourney Manager  |
=-=-=-=-=-=-=-=-=-=-=-=-=-=

My favourite working and developing platform is Linux. However, there is
(to my knowledge) no program that automatically runs a complete chess engine
tournament, like WBTM. So I wrote my own, simple tourney manager, basically
to test my chess engine HoiChess. Although initially developed for Linux, the
tourney manager, which is written in Perl, now also runs on Windows.

The current version can be downloaded at:

	http://www.hoicher.de/hoichess/tourney_manager


If you have any questions or problems, feel free to ask me.
Any feedback is welcome.

Holger Ruckdeschel <holger@hoicher.de>



Installation
~~~~~~~~~~~~

The tourney manager is written in Perl, and consits of two Perl scripts,
as well as two Perl modules:

	tourney.pl	Tourney manager front-end (main program)
	crosstable.pl	Utility script to print a crosstable from a set
			of .pgn files.
	Tourney.pm	Perl module that implements the actual functionality
			of the tourney manager.
	Crosstable.pm	Perl module to generate a crosstable from .pgn files.

To run the tourney manager, make sure that the two modules are in a place
where Perl can find them, i.e. either in the current directory or somewhere
in Perl's include path. Look at the documentation of your Perl distribution
for more info. You may need to set an environment variable like PERL5LIB or
similar.

The tourney manager requires one additional Perl module, that is not part of
the standard Parl distribution:

	YAML		This module is used to save and load the tourney
			state. This allows to interrupt and resume a tourney
			without having to replay all games.
	
			Download:
			http://search.cpan.org/~ingy/YAML-0.39/lib/YAML.pod


For Windows, I have had success with the PXPerl distribution
(http://www.pxperl.com/?pxperl). This distribution also contains the above
mentioned YAML module and is pretty easy to set up.



Running Tournaments
~~~~~~~~~~~~~~~~~~~

1. Create a configuration file. Look at example.conf which is supplied along
   with the tourney manager. It is rather well commented.

2. Start the tourney manager (tourney.pl). 
   The tourney manager uses an interactive command shell. To start up quickly,
   the following sequence of commands should be enough:

   	create
   	print
   	start

   Help about commands is available by 'help' and 'help <command>'.