3 * License: Public domain
5 * @author Erik Moeller <moeller@scireview.de>
11 * Support for external editors to modify both text and files
12 * in external applications. It works as follows: MediaWiki
13 * sends a meta-file with the MIME type 'application/x-external-editor'
14 * to the client. The user has to associate that MIME type with
15 * a helper application (a reference implementation in Perl
16 * can be found in extensions/ee), which will launch the editor,
17 * and save the modified data back to the server.
23 function __construct( $article, $mode ) {
24 global $wgInputEncoding;
25 $this->mArticle
=& $article;
26 $this->mTitle
=& $article->mTitle
;
27 $this->mCharset
= $wgInputEncoding;
32 global $wgOut, $wgScript, $wgScriptPath, $wgServer, $wgLang;
34 $name=$this->mTitle
->getText();
35 $pos=strrpos($name,".")+
1;
36 header ( "Content-type: application/x-external-editor; charset=".$this->mCharset
);
38 # $type can be "Edit text", "Edit file" or "Diff text" at the moment
39 # See the protocol specifications at [[m:Help:External editors/Tech]] for
41 if(!isset($this->mMode
)) {
43 $url=$this->mTitle
->getFullURL("action=edit&internaledit=true");
44 # *.wiki file extension is used by some editors for syntax
45 # highlighting, so we follow that convention
47 } elseif($this->mMode
=="file") {
49 $image = new Image( $this->mTitle
);
50 $img_url = $image->getURL();
51 if(strpos($img_url,"://")) {
54 $url = $wgServer . $img_url;
56 $extension=substr($name, $pos);
58 $special=$wgLang->getNsText(NS_SPECIAL
);
63 Script={$wgServer}{$wgScript}
66 Special namespace=$special