disabling chat bits, should really work on core functionaly first.
[gwvp-mini.git] / gwvpmini / gwvpmini_web.php
index 3dfdde0..71a931f 100644 (file)
@@ -35,7 +35,7 @@ function gwvpmini_goWeb()
        
        ksort($CALL_ME_FUNCTIONS);
        foreach($CALL_ME_FUNCTIONS as $key => $val) {
-               //error_log("checking callmefunction $key as $val");
+               //// error_log("checking callmefunction $key as $val");
                $callme = $val();
                if($callme !== false) {
                        $callme();
@@ -68,7 +68,7 @@ function gwvpmini_goMainPage($bodyFunction = null)
                        while(($file = readdir($dh))!==false) {
                                $mt = preg_match("/.*.css$/", $file);
                                if($mt > 0) {
-                                       error_log("loading css $file");
+                                       // error_log("loading css $file");
                                        echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"$BASE_URL/css/$file\">";
                                        //echo "required $basedir/$file\n";
                                }
@@ -83,7 +83,7 @@ function gwvpmini_goMainPage($bodyFunction = null)
                        while(($file = readdir($dh))!==false) {
                                $mt = preg_match("/.*.js$/", $file);
                                if($mt > 0) {
-                                       error_log("loading js $file");
+                                       // error_log("loading js $file");
                                        echo "<script type=\"text/javascript\" src=\"$BASE_URL/js/$file\"></script>";
                                        //echo "required $basedir/$file\n";
                                }
@@ -119,17 +119,30 @@ function gwvpmini_goMainPage($bodyFunction = null)
        
        echo "</tr>";
        
-       echo "<tr><td colspan=\"2\">";
+       echo "<tr width=\"100%\"><td colspan=\"3\">";
+       
+       echo "<table width=\"100%\"><tr width=\"100%\" valign=\"top\"><td>";
        if($bodyFunction == null) {
                gwvpmini_BodyBuilder();
        } else {
                if(function_exists($bodyFunction)) {
                        $bodyFunction();
                } else {
-                       error_log("Got called with non-existant body function, $bodyFunction");
+                       // error_log("Got called with non-existant body function, $bodyFunction");
                        gwvpmini_BodyBuilder();
                }
        }
+       
+       echo "</td>";
+       
+       /* TODO: taking out chat for now
+       echo "<td align=\"right\">";
+       
+       gwvpmini_ChatBuilder();
+       echo "</td>"; */
+       
+       echo "</tr></table>";\r
+       
        echo "</td></tr>";
        
        echo "<tr><td>";
@@ -161,6 +174,11 @@ function gwvpmini_MessageBuilder()
        }
 }
 
+function gwvpmini_ChatBuilder()
+{
+       gwvpmini_DisplayChat();
+}
+
 // builds the menu structure
 function gwvpmini_MenuBuilder()
 {
@@ -177,7 +195,7 @@ function gwvpmini_MenuBuilder()
                $menucolor = "";
                if(isset($_REQUEST["q"])) {
                        $extlink = str_replace("$BASE_URL/", "", $link);
-                       error_log("trying to do replace of $BASE_URL in $link, got $extlink for ".$_REQUEST["q"]);
+                       // error_log("trying to do replace of $BASE_URL in $link, got $extlink for ".$_REQUEST["q"]);
                        if(stristr($_REQUEST["q"], $extlink)!==false) {
                                $menucolor = " bgcolor=\"#ffdddd\"";
                                
@@ -223,7 +241,7 @@ function gwvpmini_BodyBuilder()
        if(isset($HOME_PAGE_PROVIDERS)) {
                ksort($HOME_PAGE_PROVIDERS);
                foreach($HOME_PAGE_PROVIDERS as $provider) {
-                       error_log("Loading home_page_provider, $provider");
+                       // error_log("Loading home_page_provider, $provider");
                        $provider();
                }
        }
@@ -250,13 +268,13 @@ function gwvpmini_emailToUserLink($email)
 
 function gwvpmini_fourZeroThree()
 {
-       error_log("403 called");
+       // error_log("403 called");
        header("HTTP/1.1 403 Permission Denied");
 }
 
 function gwvpmini_fourZeroFour()
 {
-       error_log("404 called");
+       // error_log("404 called");
        header("HTTP/1.1 404 No Such Thing");
 }
 
@@ -279,9 +297,9 @@ function gwvpmini_HtmlGravatar($email, $size, $htmlappend="")
        global $use_gravatar;
        
        if($use_gravatar) {
-               error_log("call to gravatar with yes");
+               // error_log("call to gravatar with yes");
        } else {
-               error_log("call to gravatar with no");
+               // error_log("call to gravatar with no");
        }
        
        if($use_gravatar == false) return "";