From 4ee29a2a0d1560d9779cbe5cc2385cbc0fba528d Mon Sep 17 00:00:00 2001 From: XTZGZoReX Date: Mon, 7 Jun 2010 00:13:48 +0200 Subject: * Rename contrib to opt. --HG-- branch : trunk --- contrib/cleanup/tab2spaces.sh | 2 - contrib/cleanup/whitespace.sh | 2 - contrib/conf_merge/README | 6 -- contrib/conf_merge/index.php | 40 ----------- contrib/conf_merge/merge.php | 159 ------------------------------------------ 5 files changed, 209 deletions(-) delete mode 100644 contrib/cleanup/tab2spaces.sh delete mode 100644 contrib/cleanup/whitespace.sh delete mode 100644 contrib/conf_merge/README delete mode 100644 contrib/conf_merge/index.php delete mode 100644 contrib/conf_merge/merge.php (limited to 'contrib') diff --git a/contrib/cleanup/tab2spaces.sh b/contrib/cleanup/tab2spaces.sh deleted file mode 100644 index 1022be7905c..00000000000 --- a/contrib/cleanup/tab2spaces.sh +++ /dev/null @@ -1,2 +0,0 @@ -# Be sure to specify files instead of * when running the script. -perl -p -i -e "s/\t/ /g" * diff --git a/contrib/cleanup/whitespace.sh b/contrib/cleanup/whitespace.sh deleted file mode 100644 index a351e25359b..00000000000 --- a/contrib/cleanup/whitespace.sh +++ /dev/null @@ -1,2 +0,0 @@ -# Be sure to specify files instead of * when running the script. -perl -p -i -e "s/ +$//g" * diff --git a/contrib/conf_merge/README b/contrib/conf_merge/README deleted file mode 100644 index 3d027b7ad42..00000000000 --- a/contrib/conf_merge/README +++ /dev/null @@ -1,6 +0,0 @@ -This is a PHP script for merging a new .dist file with your existing .conf file (trinitycore and trinityrealm) -It should also work with mangos dist/conf files as well. - -It uses sessions so it is multi user safe, it adds any options that are removed to the bottom of the file, -commented out, just in case it removes something it shouldn't, -and, if you add all of your custom patch configs below "# Custom" they will be copied exactly as they are. diff --git a/contrib/conf_merge/index.php b/contrib/conf_merge/index.php deleted file mode 100644 index 537937caf64..00000000000 --- a/contrib/conf_merge/index.php +++ /dev/null @@ -1,40 +0,0 @@ - - -
-Dist File -
- -
-Current Conf File -
- -
-Win32 - -UNIX/Linux -
- -
-If you have any custom settings, such as from patches, -
-make sure they are at the bottom of the file following -
-this block (add it if it's not there) -
-############################################################################### -
-# Custom -
-############################################################################### -
-
- -
diff --git a/contrib/conf_merge/merge.php b/contrib/conf_merge/merge.php deleted file mode 100644 index 6d8bedbaa08..00000000000 --- a/contrib/conf_merge/merge.php +++ /dev/null @@ -1,159 +0,0 @@ - $v) - { - if (array_key_exists($k, $array1)) - { - $array1[$k] = $v; - unset($array2[$k]); - } - } - $in_file1 = fopen($upload1,r); - $line = trim(fgets($in_file1)); - while (!feof($in_file1)) - { - if (substr($line,0,1) != '#' && substr($line,0,1) != '') - { - $array = array(); - while (substr($line,0,1) != '#' && substr($line,0,1) != '') - { - list($key, $val) = explode("=",$line); - $key = trim($key); - $val = trim($val); - $array[$key] = $val; - $line = trim(fgets($in_file1)); - } - foreach($array as $k => $v) - { - if (array_key_exists($k, $array1)) - fwrite($out_file, $k."=".$array1[$k].$eol); - else - continue; - } - unset($array); - if (!feof($in_file1)) - fwrite($out_file, $line.$eol); - } - else - fwrite($out_file, $line.$eol); - $line = trim(fgets($in_file1)); - } - if ($custom_found) - { - fwrite($out_file, $eol); - fwrite($out_file, "###############################################################################".$eol); - fwrite($out_file, "# Custom".$eol); - $line = trim(fgets($in_file2)); - while (!feof($in_file2)) - { - fwrite($out_file, $line.$eol); - $line = trim(fgets($in_file2)); - } - } - $first = true; - foreach($array2 as $k => $v) - { - if ($first) - { - fwrite($out_file, $eol); - fwrite($out_file, "###############################################################################".$eol); - fwrite($out_file, "# The Following values were removed from the config.".$eol); - $first = false; - } - fwrite($out_file, "# ".$k."=".$v.$eol); - } - unset($array1); - unset($array2); - fclose($in_file1); - fclose($in_file2); - fclose($out_file); - unlink($upload1); - unlink($upload2); - - echo "Process done"; - echo "
Click here to retrieve your merged conf"; - } -} -else -{ - echo "An error has occurred"; -} -?> -- cgit v1.2.3