From 76619d881ea6ed0dc111b8f968c2c8d6629b30a7 Mon Sep 17 00:00:00 2001 From: squirrel Date: Mon, 22 Nov 1999 16:25:31 +0000 Subject: [PATCH] updating directory structure git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- config/config.php3 | 16 ----- functions/array.php3 | 33 --------- functions/date.php3 | 144 -------------------------------------- functions/imap.php3 | 15 ---- functions/pageheader.php3 | 23 ------ functions/strings.php3 | 30 -------- images/button_next.gif | Bin 281 -> 0 bytes images/down_pointer.gif | Bin 193 -> 0 bytes images/om_mini_logo.gif | Bin 1074 -> 0 bytes images/om_webmail.gif | Bin 7376 -> 0 bytes images/om_webmail.png | Bin 13315 -> 0 bytes images/up_pointer.gif | Bin 193 -> 0 bytes 12 files changed, 261 deletions(-) delete mode 100644 config/config.php3 delete mode 100644 functions/array.php3 delete mode 100644 functions/date.php3 delete mode 100644 functions/imap.php3 delete mode 100644 functions/pageheader.php3 delete mode 100644 functions/strings.php3 delete mode 100644 images/button_next.gif delete mode 100644 images/down_pointer.gif delete mode 100644 images/om_mini_logo.gif delete mode 100644 images/om_webmail.gif delete mode 100644 images/om_webmail.png delete mode 100644 images/up_pointer.gif diff --git a/config/config.php3 b/config/config.php3 deleted file mode 100644 index 3797b6f4..00000000 --- a/config/config.php3 +++ /dev/null @@ -1,16 +0,0 @@ -Nathan or Luke."; - -/* SquirrelMail version number */ -$version = "0.0.1"; -?> diff --git a/functions/array.php3 b/functions/array.php3 deleted file mode 100644 index 18d0e83b..00000000 --- a/functions/array.php3 +++ /dev/null @@ -1,33 +0,0 @@ -col and $this->dir in a class - // Would beat using globals - if(!is_array($col)){ - $col = array("$col"); - } - $GLOBALS["col"] = $col; // Column or Columns as an array - $GLOBALS["dir"] = $dir; // Direction, a positive number for ascending a negative for descending - - function comp2($a,$b,$i = 0) { - global $col; - global $dir; - $c = count($col) -1; - if ($a["$col[$i]"] == $b["$col[$i]"]){ - $r = 0; - while($i < $c && $r == 0){ - $i++; - $r = comp2($a,$b,$i); - } - } elseif($a["$col[$i]"] < $b["$col[$i]"]){ - $r = -1 * $dir; // Im not sure why you must * dir here, but it wont work just before the return... - } else { - $r = 1 * $dir; - } - return $r; - } - - usort($ary,comp2); - return $ary; - } -?> diff --git a/functions/date.php3 b/functions/date.php3 deleted file mode 100644 index f9008689..00000000 --- a/functions/date.php3 +++ /dev/null @@ -1,144 +0,0 @@ - Mon, Tue, Wed - // $dateParts[1] == 23 - // $dateParts[2] == Jan, Feb, Mar - // $dateParts[3] == 1999 - // $dateParts[4] ==