diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2011-12-03 13:29:22 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2011-12-03 13:29:22 +0100 |
commit | ca32f08966f1b51fcb19460f0996bb0c4048e6fe (patch) | |
tree | ec04cc15b867bc21eedca904cea9af0254531a11 /includes/OutputHandler.php | |
parent | a22fbfc60f36f5f7ee10d5ae6fe347340c2ee67c (diff) |
Update to MediaWiki 1.18.0
* also update ArchLinux skin to chagnes in MonoBook
* Use only css to hide our menu bar when printing
Diffstat (limited to 'includes/OutputHandler.php')
-rw-r--r-- | includes/OutputHandler.php | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/includes/OutputHandler.php b/includes/OutputHandler.php index 8f310da2..4112f8a2 100644 --- a/includes/OutputHandler.php +++ b/includes/OutputHandler.php @@ -7,6 +7,10 @@ /** * Standard output handler for use with ob_start + * + * @param $s string + * + * @return string */ function wfOutputHandler( $s ) { global $wgDisableOutputCompression, $wgValidateAllHtml; @@ -40,9 +44,11 @@ function wfOutputHandler( $s ) { * the currently-requested URL. * This isn't on WebRequest because we need it when things aren't initialized * @private + * + * @return string */ function wfRequestExtension() { - /// @todo Fixme: this sort of dupes some code in WebRequest::getRequestUrl() + /// @todo FIXME: this sort of dupes some code in WebRequest::getRequestUrl() if( isset( $_SERVER['REQUEST_URI'] ) ) { // Strip the query string... list( $path ) = explode( '?', $_SERVER['REQUEST_URI'], 2 ); @@ -64,6 +70,10 @@ function wfRequestExtension() { /** * Handler that compresses data with gzip if allowed by the Accept header. * Unlike ob_gzhandler, it works for HEAD requests too. + * + * @param $s string + * + * @return string */ function wfGzipHandler( $s ) { if( !function_exists( 'gzencode' ) || headers_sent() ) { @@ -105,6 +115,10 @@ function wfGzipHandler( $s ) { /** * Mangle flash policy tags which open up the site to XSS attacks. + * + * @param $s string + * + * @return string */ function wfMangleFlashPolicy( $s ) { # Avoid weird excessive memory usage in PCRE on big articles @@ -117,6 +131,8 @@ function wfMangleFlashPolicy( $s ) { /** * Add a Content-Length header if possible. This makes it cooperate with squid better. + * + * @param $length int */ function wfDoContentLength( $length ) { if ( !headers_sent() && $_SERVER['SERVER_PROTOCOL'] == 'HTTP/1.0' ) { @@ -126,6 +142,10 @@ function wfDoContentLength( $length ) { /** * Replace the output with an error if the HTML is not valid + * + * @param $s string + * + * @return string */ function wfHtmlValidationHandler( $s ) { |