Fix NS_PROJECT_TALK (bug #7792)
[lhc/web/wiklou.git] / includes / SpecialExport.php
index 39e1d26..5e6d6d8 100644 (file)
  * @subpackage SpecialPage
  */
 
-/** */
-require_once( 'Export.php' );
-
 /**
  *
  */
 function wfSpecialExport( $page = '' ) {
        global $wgOut, $wgRequest, $wgExportAllowListContributors;
        global $wgExportAllowHistory, $wgExportMaxHistory;
-       $maxLimit = 200;
 
        $curonly = true;
-       $fullHistory = array(
-               'dir' => 'asc',
-               'offset' => false,
-               'limit' => $maxLimit,
-       );
-       if( $wgRequest->getVal( 'action' ) == 'submit') {
+       if( $wgRequest->wasPosted() ) {
                $page = $wgRequest->getText( 'pages' );
                $curonly = $wgRequest->getCheck( 'curonly' );
                $rawOffset = $wgRequest->getVal( 'offset' );
@@ -53,13 +44,13 @@ function wfSpecialExport( $page = '' ) {
                $history = array(
                        'dir' => 'asc',
                        'offset' => false,
-                       'limit' => $maxLimit,
+                       'limit' => $wgExportMaxHistory,
                );
                $historyCheck = $wgRequest->getCheck( 'history' );
                if ( $curonly ) {
-                       $history = MW_EXPORT_CURRENT;
+                       $history = WikiExporter::CURRENT;
                } elseif ( !$historyCheck ) {
-                       if ( $limit > 0 && $limit < $maxLimit ) {
+                       if ( $limit > 0 && $limit < $wgExportMaxHistory ) {
                                $history['limit'] = $limit;
                        }
                        if ( !is_null( $offset ) ) {
@@ -69,10 +60,19 @@ function wfSpecialExport( $page = '' ) {
                                $history['dir'] = 'desc';
                        }
                }
+       } else {
+               // Default to current-only for GET requests
+               $page = $wgRequest->getText( 'pages', $page );
+               $historyCheck = $wgRequest->getCheck( 'history' );
+               if( $historyCheck ) {
+                       $history = WikiExporter::FULL;
+               } else {
+                       $history = WikiExporter::CURRENT;
+               }
        }
        if( !$wgExportAllowHistory ) {
                // Override
-               $history = MW_EXPORT_CURRENT;
+               $history = WikiExporter::CURRENT;
        }
        
        $list_authors = $wgRequest->getCheck( 'listauthors' );
@@ -83,12 +83,7 @@ function wfSpecialExport( $page = '' ) {
                
                // Cancel output buffering and gzipping if set
                // This should provide safer streaming for pages with history
-               while( $status = ob_get_status() ) {
-                       ob_end_clean();
-                       if( $status['name'] == 'ob_gzhandler' ) {
-                               header( 'Content-Encoding:' );
-                       }
-               }
+               wfResetOutputBuffers();
                header( "Content-type: application/xml; charset=utf-8" );
                $pages = explode( "\n", $page );
 
@@ -98,6 +93,7 @@ function wfSpecialExport( $page = '' ) {
                $exporter->openStream();
                
                foreach( $pages as $page ) {
+                       /*
                        if( $wgExportMaxHistory && !$curonly ) {
                                $title = Title::newFromText( $page );
                                if( $title ) {
@@ -108,7 +104,7 @@ function wfSpecialExport( $page = '' ) {
                                                continue;
                                        }
                                }
-                       }
+                       }*/
                        $exporter->pageByName( $page );
                }
                
@@ -117,7 +113,7 @@ function wfSpecialExport( $page = '' ) {
        }
 
        $wgOut->addWikiText( wfMsg( "exporttext" ) );
-       $titleObj = Title::makeTitle( NS_SPECIAL, "Export" );
+       $titleObj = SpecialPage::getTitleFor( "Export" );
        
        $form = wfOpenElement( 'form', array( 'method' => 'post', 'action' => $titleObj->getLocalUrl() ) );
        $form .= wfOpenElement( 'textarea', array( 'name' => 'pages', 'cols' => 40, 'rows' => 10 ) ) . '</textarea><br />';