check that $wgArticle is an instance of the Article class in Skin::pageStats() per...
[lhc/web/wiklou.git] / includes / ExternalEdit.php
index a4acab5..1c58f44 100644 (file)
@@ -3,13 +3,9 @@
  * License: Public domain
  *
  * @author Erik Moeller <moeller@scireview.de>
- * @package MediaWiki
  */
 
 /**
- * 
- * @package MediaWiki
- *
  * Support for external editors to modify both text and files
  * in external applications. It works as follows: MediaWiki
  * sends a meta-file with the MIME type 'application/x-external-editor'
  * and save the modified data back to the server.
  *
  */
+
 class ExternalEdit {
 
-       function ExternalEdit ( $article, $mode ) {
+       function __construct( $article, $mode ) {
                global $wgInputEncoding;
                $this->mArticle =& $article;
                $this->mTitle =& $article->mTitle;
                $this->mCharset = $wgInputEncoding;
                $this->mMode = $mode;
        }
-       
+
        function edit() {
-               global $wgUser, $wgOut, $wgScript, $wgScriptPath, $wgServer;
+               global $wgOut, $wgScript, $wgScriptPath, $wgServer, $wgLang;
                $wgOut->disable();
                $name=$this->mTitle->getText();
                $pos=strrpos($name,".")+1;
                header ( "Content-type: application/x-external-editor; charset=".$this->mCharset );
-               
+               header( "Cache-control: no-cache" );
+
                # $type can be "Edit text", "Edit file" or "Diff text" at the moment
                # See the protocol specifications at [[m:Help:External editors/Tech]] for
                # details.
-               if(!isset($this->mMode)) {              
-                       $type="Edit text";              
+               if(!isset($this->mMode)) {
+                       $type="Edit text";
                        $url=$this->mTitle->getFullURL("action=edit&internaledit=true");
-                       # *.wiki file extension is used by some editors for syntax 
+                       # *.wiki file extension is used by some editors for syntax
                        # highlighting, so we follow that convention
-                       $extension="wiki"; 
+                       $extension="wiki";
                } elseif($this->mMode=="file") {
-                       $type="Edit file"; 
-                       $image = Image::newFromTitle( $this->mTitle );
-                       $url = $wgServer . $image->getURL();
+                       $type="Edit file";
+                       $image = wfLocalFile( $this->mTitle );
+                       $url = $image->getFullURL();
                        $extension=substr($name, $pos);
-               }                                        
+               }
+               $special=$wgLang->getNsText(NS_SPECIAL);
                $control = <<<CONTROL
 [Process]
 Type=$type
@@ -59,6 +57,7 @@ Engine=MediaWiki
 Script={$wgServer}{$wgScript}
 Server={$wgServer}
 Path={$wgScriptPath}
+Special namespace=$special
 
 [File]
 Extension=$extension
@@ -67,4 +66,3 @@ CONTROL;
                echo $control;
        }
 }
-?>