From ca577700d86f44833ab7b5fb9fa3d146af107d8d Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Mon, 6 Sep 2010 17:38:35 +0100 Subject: [PATCH] New file dallas.rules, first example of an IRSpy rules file. Include documentation of format, explained as comments. --- etc/dallas.rules | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 etc/dallas.rules diff --git a/etc/dallas.rules b/etc/dallas.rules new file mode 100644 index 0000000..e0c64e0 --- /dev/null +++ b/etc/dallas.rules @@ -0,0 +1,29 @@ +# Format of IRSpy rules files: +# +# Hash characters (#) introduced comments, which are ignored +# Trailing whitespace is ignored +# Blank lines (i.e. including those consisting only of whitespace +# and/or comments) are ignored +# +# All other lines consist of four fields: +# ~ // +# If the value of matches the regular expression , then +# the action is executed. +# +# may take the values: +# id -- Impementation ID of server +# name -- Impementation name of server +# version -- Impementation version of server +# +# ~ is a literal tilde, indicating regular expression matching. It is +# required, although redundant, to allow for future expansion that +# uses other operators such as >= for version numbers. +# +# /regexp/ is a Perl regular expression, which may optionally be +# enclosed in forward slashes. +# +# may be any of the following +# skip -- do not attempt the named test +# ### More to come + +name ~ /Polaris/ skip Search::CQL -- 1.7.10.4