# HG changeset patch # User Matti Hamalainen # Date 1294746300 -7200 # Node ID c0dec130ce74c7d5acd0ce32cd2e9f08a74ea4cc # Parent f9211d1917b7a3abd81a42ee1d39f20a0e242f3c Cleanups. diff -r f9211d1917b7 -r c0dec130ce74 index.php --- a/index.php Tue Jan 11 13:32:55 2011 +0200 +++ b/index.php Tue Jan 11 13:45:00 2011 +0200 @@ -29,6 +29,7 @@ "\" size=\"".$len."\" id=\"".$id."\" value=\"".htmlentities($value)."\" />\n"; } + function printCheckBox($id, $label, $value = FALSE) { global $jsData; @@ -38,6 +39,7 @@ ""; } + function printOptionSelect($id, $size, $multi = FALSE) { echo ""; @@ -126,6 +128,8 @@ $data["items"][] = $desc; } + $fixNumbersMatch = join("|", array_keys($fixNumbers)); + foreach ($postData as $line) { // Trim whitespace $str = trim($line); @@ -136,7 +140,7 @@ $str = $m[1]; // Discard multi-item lines - if (preg_match("/^(many|two|three|four|five|six|seven|eight|nine|ten)\s+(.+?)( labeled as .+|)$/", $str, $m)) { + if (preg_match("/^(many|".$fixNumbersMatch.")\s+(.+?)( labeled as .+|)$/", $str, $m)) { if (!isset($fixNumbers[$m[1]])) { $ignored[$str] = "Unparsed stack of many"; } else { @@ -173,8 +177,17 @@ foreach ($ignored as $name => $reason) { echo " ".htmlentities($name)."".htmlentities($reason)."\n"; } + $filename = "ignored.txt"; + $outFile = @fopen($filename, "a"); + if ($outFile !== FALSE) { + @chmod($filename, 0600); + foreach ($ignored as $name => $reason) { + fwrite($outFile, $name."§".$reason."\n"); + } + fclose($outFile); + } -$encData = base64_encode(serialize($data)); + $encData = base64_encode(serialize($data)); ?> diff -r f9211d1917b7 -r c0dec130ce74 itemfixes.inc.php --- a/itemfixes.inc.php Tue Jan 11 13:32:55 2011 +0200 +++ b/itemfixes.inc.php Tue Jan 11 13:45:00 2011 +0200 @@ -2,27 +2,36 @@ // Multi-stack item fixups $fixItemTable = array( - "(purple|green) gloves" => 'a ${1} glove', - "bracelet mades of green crystal" => "bracelet made of green crystal", - "alchemist moulded rings" => "alchemist moulded ring", + "^(purple|green) gloves" => 'a ${1} glove', + "^bracelet mades of green crystal" => "bracelet made of green crystal", + "^alchemist moulded rings" => "alchemist moulded ring", // Generic rings - "(heavy black metal|steel) rings" => "a ${1} ring", + "^(heavy black metal|steel) rings" => "a ${1} ring", // Damiens - "arm protectors called Damien \(\S+\)" => "an arm protector called Damien (${1})", + "^arm protectors called Damien \(\S+\)" => "an arm protector called Damien (${1})", + "^a book of eternal youth ([a-z ]+)" => "a book of eternal youth", // Containers - "white cloth packs for holding salves" => "white cloth pack for holding salves", - "(small|HUGE) shiny boxes for storing minerals" => 'a ${1} shiny box for storing minerals', - "(small|HUGE) sturdy packs for storing potions" => 'a ${1} sturdy pack for storing potions', + "^white cloth packs for holding salves" => "white cloth pack for holding salves", + "^(small|HUGE) shiny boxes for storing minerals" => 'a ${1} shiny box for storing minerals', + "^(small|HUGE) sturdy packs for storing potions" => 'a ${1} sturdy pack for storing potions', + "^small crystal box \([a-z ]+\)" => "small crystal box" ); $fixNumbers = array( - "one" => 1, "two" => 2, "three" => 3, "four" => 4, - "five" => 5, "six" => 6, "seven" => 7, "eight" => 8, - "nine" => 9, "ten" => 10 + "one" => 1, + "two" => 2, + "three" => 3, + "four" => 4, + "five" => 5, + "six" => 6, + "seven" => 7, + "eight" => 8, + "nine" => 9, + "ten" => 10 ); ?> \ No newline at end of file