From 1f64f78b4c58beb9b919f80527e3c4bd640a292c Mon Sep 17 00:00:00 2001 From: Michal Zimniewicz Date: Sat, 27 Jan 2018 01:45:34 +0100 Subject: add initial version --- tdd-protocol.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tdd-protocol.php (limited to 'tdd-protocol.php') diff --git a/tdd-protocol.php b/tdd-protocol.php new file mode 100644 index 0000000..7f6eb7b --- /dev/null +++ b/tdd-protocol.php @@ -0,0 +1,24 @@ +get_filename(); +$len = strlen($html_filename); +$request_uri_ending = substr($_SERVER['REQUEST_URI'], -$len-1); +if($request_uri_ending != '/' . $html_filename) { + die('This script cannot be called directly!'); +} +// + +$deals_by_tables = load_deals_for_tables($prefix, $round, $board); +foreach($deals_by_tables as $table => $deal) { + $protocol->set_deal($table, $deal); +} +echo $protocol->output(); -- cgit v1.2.3