#!/usr/bin/perl

# This is a CGI script to get the version data on the database and server.
# It is to be installed at /home/armorial/public_html/data_copyright.cgi on armorial.heraldicart.org.

# Set URL for this script.
$cgi_url = 'http://armorial.heraldicart.org/data_copyright.cgi';

# Set title for form.
$form_title = 'SCA Database Copyright';

require '/home/armorial/public_html/common.pl';

&print_header ();
&connect_to_data_server ();

print S 'c';
print S 'EOF';

&get_matches ();

print '<hr>';
&print_messages ();
&print_trailer ();

# end of /home/armorial/public_html/data_copyright.cgi

