Whitespace & coding standards adjustments to Evan's last commits.
authorBrion Vibber <brion@users.mediawiki.org>
Sun, 4 Apr 2004 22:33:11 +0000 (22:33 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sun, 4 Apr 2004 22:33:11 +0000 (22:33 +0000)
Metadata.php seems to be missing, so the new code doesn't work yet.

includes/GlobalFunctions.php
includes/OutputPage.php
index.php

index e6a0552..c64bce5 100644 (file)
@@ -845,101 +845,96 @@ function wfVarDump( $var )
        }
 }
 
-/* Provide a simple HTTP error. */
-
-function wfHttpError($code, $label, $desc) {
-    
-    global $wgOut;
-    $wgOut->disable();
-    header("HTTP/1.0 $code $label");
-    header("Status: $code $label");
-    $wgOut->sendCacheControl();
-
-    /* Don't send content if it's a HEAD request. */
-    
-    if (strcmp($HTTP_SERVER_VARS['REQUEST_METHOD'],'HEAD') != 0) {
-       header("Content-type: text/plain");
-       print "$desc\n";
-    }
+# Provide a simple HTTP error.
+function wfHttpError( $code, $label, $desc ) {
+       global $wgOut;
+       $wgOut->disable();
+       header( "HTTP/1.0 $code $label" );
+       header( "Status: $code $label" );
+       $wgOut->sendCacheControl();
+       
+       # Don't send content if it's a HEAD request.
+       if( $_SERVER['REQUEST_METHOD'] == 'HEAD' ) {
+               header( "Content-type: text/plain" );
+               print "$desc\n";
+       }
 }
 
 # Converts an Accept-* header into an array mapping string values to quality factors
+function wfAcceptToPrefs( $accept, $def = "*/*" ) {
+       # No arg means accept anything (per HTTP spec)
+       if( !$accept ) {
+               return array( $def => 1 );
+       }
+       
+       $prefs = array();
+       
+       $parts = explode( ",", $accept );
+       
+       foreach( $parts as $part ) {
+               # FIXME: doesn't deal with params like 'text/html; level=1'
+               list( $value, $qpart ) = explode( ";", $part );
+               if( !isset( $qpart ) ) {
+                       $prefs[$value] = 1;
+               } elseif( preg_match( '/q\s*=\s*(\d*\.\d+)/', $qpart, $match ) ) {
+                       $prefs[$value] = $match[1];
+               }
+       }
+       
+       return $prefs;
+}
 
-function wfAcceptToPrefs($accept, $def = "*/*") {
-    # No arg means accept anything (per HTTP spec)
-    if (!$accept) {
-       return array($def => 1);
-    }
-
-    $prefs = array();
-    
-    $parts = explode(",", $accept);
-    
-    foreach ($parts as $part) {
-       #FIXME: doesn't deal with params like 'text/html; level=1'
-       list($value, $qpart) = explode(";", $part);
-       if (!isset($qpart)) {
-           $prefs[$value] = 1;
-       } else if (preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
-           $prefs[$value] = $match[1];
-       }
-    }
-    
-    return $prefs;
-}
-
-/* private */ function mimeTypeMatch($type, $avail) {
-    if (array_key_exists($type, $avail)) {
-       return $type;
-    } else {
-       $parts = explode('/', $type);
-       if (array_key_exists($parts[0] . '/*', $avail)) {
-           return $parts[0] . '/*';
-       } else if (array_key_exists('*/*', $avail)) {
-           return '*/*';
+/* private */ function mimeTypeMatch( $type, $avail ) {
+       if( array_key_exists($type, $avail) ) {
+               return $type;
        } else {
-           return NULL;
-       }
-    }
-}
-
-#FIXME: doesn't handle params like 'text/plain; charset=UTF-8'
-#XXX: generalize to negotiate other stuff
-
-function wfNegotiateType($cprefs, $sprefs) {
-    $combine = array();
-    
-    foreach (array_keys($sprefs) as $type) {
-       $parts = explode('/', $type);
-       if ($parts[1] != '*') {
-           $ckey = mimeTypeMatch($type, $cprefs);
-           if ($ckey) {
-               $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
-           }
-       }
-    }
-
-    foreach (array_keys($cprefs) as $type) {
-       $parts = explode('/', $type);
-       if ($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
-           $skey = mimeTypeMatch($type, $sprefs);
-           if ($skey) {
-               $combine[$type] = $sprefs[$skey] * $cprefs[$type];
-           }
-       }
-    }
-    
-    $bestq = 0;
-    $besttype = NULL;
-    
-    foreach (array_keys($combine) as $type) {
-       if ($combine[$type] > $bestq) {
-           $besttype = $type;
-           $bestq = $combine[$type];
-       }
-    }
-    
-    return $besttype;
+               $parts = explode( '/', $type );
+               if( array_key_exists( $parts[0] . '/*', $avail ) ) {
+                       return $parts[0] . '/*';
+               } elseif( array_key_exists( '*/*', $avail ) ) {
+                       return '*/*';
+               } else {
+                       return NULL;
+               }
+       }
+}
+
+# FIXME: doesn't handle params like 'text/plain; charset=UTF-8'
+# XXX: generalize to negotiate other stuff
+function wfNegotiateType( $cprefs, $sprefs ) {
+       $combine = array();
+       
+       foreach( array_keys($sprefs) as $type ) {
+               $parts = explode( '/', $type );
+               if( $parts[1] != '*' ) {
+                       $ckey = mimeTypeMatch( $type, $cprefs );
+                       if( $ckey ) {
+                               $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
+                       }
+               }
+       }
+       
+       foreach( array_keys( $cprefs ) as $type ) {
+               $parts = explode( '/', $type );
+               if( $parts[1] != '*' && !array_key_exists( $type, $sprefs ) ) {
+                       $skey = mimeTypeMatch( $type, $sprefs );
+                       if( $skey ) {
+                               $combine[$type] = $sprefs[$skey] * $cprefs[$type];
+                       }
+               }
+       }
+       
+       $bestq = 0;
+       $besttype = NULL;
+       
+       foreach( array_keys( $combine ) as $type ) {
+               if( $combine[$type] > $bestq ) {
+                       $besttype = $type;
+                       $bestq = $combine[$type];
+               }
+       }
+       
+       return $besttype;
 }
 
 ?>
index 908205a..4c11403 100644 (file)
@@ -46,11 +46,11 @@ class OutputPage {
        function addKeyword( $text ) { array_push( $this->mKeywords, $text ); }
        function addLink( $rel, $rev, $target, $type="", $media="" ) { array_push( $this->mLinktags, array( $rel, $rev, $target, $type, $media ) ); }
 
-        function addMetadataLink( $type, $target ) {
-           static $haveMeta = false;
-           $this->addLink(($haveMeta) ? "alternate meta" : "meta", "", $target, $type);
-           $haveMeta = true;
-       }
+       function addMetadataLink( $type, $target ) {
+               static $haveMeta = false;
+               $this->addLink( ($haveMeta) ? "alternate meta" : "meta", "", $target, $type );
+               $haveMeta = true;
+       }
 
        # checkLastModified tells the client to use the client-cached page if
        # possible. If sucessful, the OutputPage is disabled so that
index 6906028..9793044 100644 (file)
--- a/index.php
+++ b/index.php
@@ -108,22 +108,22 @@ if ( $search = $wgRequest->getText( 'search' ) ) {
                case "print":
                        $wgArticle->view();
                        break;
-                case "dublincore":
-                        if (!$wgEnableDublinCoreRdf) {
-                            wfHttpError(403, "Forbidden", wfMsg("nodublincore"));
-                        } else {
-                            include_once("Metadata.php");
-                            wfDublinCoreRdf($wgArticle);
-                        }
-                        break;
-                case "creativecommons":
-                        if (!$wgEnableCreativeCommonsRdf) {
-                            wfHttpError(403, "Forbidden", wfMsg("nocreativecommons"));
-                        } else {
-                            include_once("Metadata.php");
-                            wfCreativeCommonsRdf($wgArticle);
-                        }
-                        break;
+               case "dublincore":
+                       if( !$wgEnableDublinCoreRdf ) {
+                               wfHttpError( 403, "Forbidden", wfMsg( "nodublincore" ) );
+                       } else {
+                               include_once( "Metadata.php" );
+                               wfDublinCoreRdf( $wgArticle );
+                       }
+                       break;
+               case "creativecommons":
+                       if( !$wgEnableCreativeCommonsRdf ) {
+                               wfHttpError( 403, "Forbidden", wfMsg("nocreativecommons") );
+                       } else {
+                               include_once( "Metadata.php" );
+                               wfCreativeCommonsRdf( $wgArticle );
+                       }
+                       break;
                case "edit":
                case "submit":
                        if( !$wgCommandLineMode && !$wgRequest->checkSessionCookie() ) {