* Update NoLocalSettings.php for the new installer. Stop advising users to move Local...
[lhc/web/wiklou.git] / includes / installer / WebInstallerOutput.php
index e8f746f..3492ca8 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+/**
+ * Output handler for the web installer.
+ *
+ * @file
+ * @ingroup Deployment
+ */
 
 /**
  * Output class modelled on OutputPage.
  * the interests of separation of concerns: if we used a subclass, there would be 
  * quite a lot of things you could do in OutputPage that would break the installer, 
  * that wouldn't be immediately obvious. 
+ * 
+ * @ingroup Deployment
+ * @since 1.17
  */
 class WebInstallerOutput {
-       var $parent;
-       var $contents = '';
-       var $warnings = '';
-       var $headerDone = false;
-       var $redirectTarget;
-       var $debug = true;
-       var $useShortHeader = false;
-
-       function __construct( $parent ) {
+       /**
+        * The WebInstaller object this WebInstallerOutput is used by.
+        * 
+        * @var WebInstaller
+        */     
+       public $parent;
+
+       /**
+        * Buffered contents that haven't been output yet
+        * @var String
+        */
+       private $contents = '';
+
+       /**
+        * Has the header (or short header) been output?
+        * @var bool
+        */
+       private $headerDone = false;
+
+       public $redirectTarget;
+
+       /**
+        * Whether to use the limited header (used during CC license callbacks)
+        * @var bool
+        */
+       private $useShortHeader = false;
+
+       /**
+        * Constructor.
+        * 
+        * @param $parent WebInstaller
+        */
+       public function __construct( WebInstaller $parent ) {
                $this->parent = $parent;
        }
 
-       function addHTML( $html ) {
+       public function addHTML( $html ) {
                $this->contents .= $html;
                $this->flush();
        }
 
-       function addWikiText( $text ) {
+       public function addWikiText( $text ) {
                $this->addHTML( $this->parent->parse( $text ) );
        }
 
-       function addHTMLNoFlush( $html ) {
+       public function addHTMLNoFlush( $html ) {
                $this->contents .= $html;
        }
 
-       function addWarning( $msg ) {
-               $this->warnings .= "<p>$msg</p>\n";
-       }
-       
-       function addWarningMsg( $msg /*, ... */ ) {
-               $params = func_get_args();
-               array_shift( $params );
-               $this->addWarning( wfMsg( $msg, $params ) );
-       }
-
-       function redirect( $url ) {
+       public function redirect( $url ) {
                if ( $this->headerDone ) {
                        throw new MWException( __METHOD__ . ' called after sending headers' );
                }
                $this->redirectTarget = $url;
        }
 
-       function output() {
+       public function output() {
                $this->flush();
                $this->outputFooter();
        }
 
-       function useShortHeader( $use = true ) {
+       /**
+        * Get the raw vector CSS, flipping if needed
+        * @param $dir String 'ltr' or 'rtl'
+        * @return String
+        */
+       public function getCSS( $dir ) {
+               $skinDir = dirname( dirname( dirname( __FILE__ ) ) ) . '/skins';
+               $vectorCssFile = "$skinDir/vector/screen.css";
+               $configCssFile = "$skinDir/common/config.css";
+               wfSuppressWarnings();
+               $vectorCss = file_get_contents( $vectorCssFile );
+               $configCss = file_get_contents( $configCssFile );
+               wfRestoreWarnings();
+               if( !$vectorCss || !$configCss ) {
+                       $css = "/** Your webserver cannot read $vectorCssFile or $configCssFile, please check file permissions */";
+               }
+
+               $css .= str_replace( 'images/', '../skins/vector/images/', $vectorCss ) . "\n" . str_replace( 'images/', '../skins/common/images/', $configCss );
+               if( $dir == 'rtl' ) {
+                       $css = CSSJanus::transform( $css, true );
+               }
+               return $css;
+       }
+
+       /**
+        * URL for index.php?css=foobar
+        * @return String
+        */
+       private function getCssUrl( ) {
+               return $_SERVER['PHP_SELF'] . '?css=' . $this->getDir();
+       }
+
+       public function useShortHeader( $use = true ) {
                $this->useShortHeader = $use;
        }
 
-       function flush() {
+       public function flush() {
                if ( !$this->headerDone ) {
                        $this->outputHeader();
                }
@@ -71,7 +126,7 @@ class WebInstallerOutput {
                }
        }
 
-       function getDir() {
+       public function getDir() {
                global $wgLang;
                if( !is_object( $wgLang ) || !$wgLang->isRtl() )
                        return 'ltr';
@@ -79,7 +134,7 @@ class WebInstallerOutput {
                        return 'rtl';
        }
 
-       function getLanguageCode() {
+       public function getLanguageCode() {
                global $wgLang;
                if( !is_object( $wgLang ) )
                        return 'en';
@@ -87,18 +142,22 @@ class WebInstallerOutput {
                        return $wgLang->getCode();
        }
 
-       function getHeadAttribs() {
+       public function getHeadAttribs() {
                return array(
                        'dir' => $this->getDir(),
                        'lang' => $this->getLanguageCode(),
                );
        }
 
-       function headerDone() {
+       /**
+        * Get whether the header has been output
+        * @return bool
+        */
+       public function headerDone() {
                return $this->headerDone;
        }
 
-       function outputHeader() {
+       public function outputHeader() {
                $this->headerDone = true;
                $dbTypes = $this->parent->getDBTypes();
 
@@ -120,10 +179,9 @@ class WebInstallerOutput {
        <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
        <title><?php $this->outputTitle(); ?></title>
        <?php echo Html::linkedStyle( '../skins/common/shared.css' ) . "\n"; ?>
-       <?php echo Html::linkedStyle( '../skins/monobook/main.css' ) . "\n"; ?>
-       <?php echo Html::linkedStyle( '../skins/common/config.css' ) . "\n"; ?>
+       <?php echo Html::linkedStyle( $this->getCssUrl() ) . "\n"; ?>
        <?php echo Html::inlineScript(  "var dbTypes = " . Xml::encodeJsVar( $dbTypes ) ) . "\n"; ?>
-       <?php $this->outputJQuery() . "\n"; ?>
+       <?php echo $this->getJQuery() . "\n"; ?>
        <?php echo Html::linkedScript( '../skins/common/config.js' ) . "\n"; ?>
 </head>
 
@@ -134,8 +192,8 @@ class WebInstallerOutput {
 .config-show-help { display: none; }
 </style>
 </noscript>
-<div id="globalWrapper">
-<div id="column-content">
+<div id="mw-page-base"></div>
+<div id="mw-head-base"></div>
 <div id="content">
 <div id="bodyContent">
 
@@ -143,9 +201,7 @@ class WebInstallerOutput {
 <?php
        }
 
-       function outputFooter() {
-               $this->outputWarnings();
-
+       public function outputFooter() {
                if ( $this->useShortHeader ) {
 ?>
 </body></html>
@@ -154,40 +210,37 @@ class WebInstallerOutput {
                }
 ?>
 
-</div></div></div>
+</div></div>
 
 
-<div id="column-one">
-       <div class="portlet" id="p-logo">
+<div id="mw-panel">
+       <div class="portal" id="p-logo">
          <a style="background-image: url(../skins/common/images/mediawiki.png);"
            href="http://www.mediawiki.org/"
            title="Main Page"></a>
        </div>
        <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script>
-       <div class='portlet'><div class='pBody'>
+       <div class="portal"><div class="body">
 <?php
        echo $this->parent->parse( wfMsgNoTrans( 'config-sidebar' ), true );
 ?>
        </div></div>
 </div>
 
-</div>
-
 </body>
 </html>
 <?php
        }
 
-       function outputShortHeader() {
+       public function outputShortHeader() {
 ?>
 <?php echo Html::htmlHeader( $this->getHeadAttribs() ); ?>
 <head>
        <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
        <meta name="robots" content="noindex, nofollow" />
        <title><?php $this->outputTitle(); ?></title>
-       <?php echo Html::linkedStyle( '../skins/monobook/main.css' ) . "\n"; ?>
-       <?php echo Html::linkedStyle( '../skins/common/config.css' ) . "\n"; ?>
-       <?php $this->outputJQuery(); ?>
+       <?php echo Html::linkedStyle( $this->getCssUrl() ) . "\n"; ?>
+       <?php echo $this->getJQuery(); ?>
        <?php echo Html::linkedScript( '../skins/common/config.js' ); ?>
 </head>
 
@@ -195,18 +248,18 @@ class WebInstallerOutput {
 <?php
        }
 
-       function outputTitle() {
+       public function outputTitle() {
                global $wgVersion;
                echo htmlspecialchars( wfMsg( 'config-title', $wgVersion ) );
        }
 
-       function outputJQuery() {
-               global $wgJQueryVersion;
-               echo Html::linkedScript( "../skins/common/jquery-$wgJQueryVersion.min.js" );
+       public function getJQuery() {
+               return Html::linkedScript( "../resources/jquery/jquery.js" );
        }
 
-       function outputWarnings() {
+       public function outputWarnings() {
                $this->addHTML( $this->warnings );
                $this->warnings = '';
        }
+       
 }