X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.web-live.git;a=blobdiff_plain;f=pctb%2Fdictionary-update-receiver;h=d088236b7429f2cb080b22624aa4949212ae7628;hp=d80ab216b338220049d8ab6387061cf1c0d4386f;hb=34c9aa9031897dada3450d014de96d68a5834039;hpb=d79262d3c0bc002beb7888568d74d26e27852699 diff --git a/pctb/dictionary-update-receiver b/pctb/dictionary-update-receiver index d80ab21..d088236 100755 --- a/pctb/dictionary-update-receiver +++ b/pctb/dictionary-update-receiver @@ -3,6 +3,28 @@ # This script is invoked when the YPP SC PCTB client talks to the # dictionary server. See README.privacy. +# This is part of ypp-sc-tools, a set of third-party tools for assisting +# players of Yohoho Puzzle Pirates. +# +# Copyright (C) 2009 Ian Jackson +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +# Yohoho and Puzzle Pirates are probably trademarks of Three Rings and +# are used without permission. This program is not endorsed or +# sponsored by Three Rings. + # upload testing runes: # @@ -19,7 +41,7 @@ use CGI qw/:standard -private_tempfiles/; use IO::Pipe; use IO::Handle; -my $aadepth=3; +my $aadepth=2; #---------- pixmaps ---------- @@ -161,6 +183,16 @@ sub pipeval ($@) { #---------- determine properties of the submission ---------- +my $version= param('version'); +my $spec_aadepth= param('depth'); +if ($version ne '3' || $spec_aadepth ne $aadepth) { + print header('text/plain', + "403 YPP SC PCTB client is out of date". + " ($version, $spec_aadepth)"); + print "\nYour YPP SC client is out of date.\n"; + exit 0; +} + my $dict= param('dict'); my $entry_in= param('entry'); defined $entry_in or die Dump()." ?";