summaryrefslogtreecommitdiff
path: root/includes/ExternalEdit.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2011-12-03 13:29:22 +0100
committerPierre Schmitz <pierre@archlinux.de>2011-12-03 13:29:22 +0100
commitca32f08966f1b51fcb19460f0996bb0c4048e6fe (patch)
treeec04cc15b867bc21eedca904cea9af0254531a11 /includes/ExternalEdit.php
parenta22fbfc60f36f5f7ee10d5ae6fe347340c2ee67c (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/ExternalEdit.php')
-rw-r--r--includes/ExternalEdit.php63
1 files changed, 39 insertions, 24 deletions
diff --git a/includes/ExternalEdit.php b/includes/ExternalEdit.php
index 7109c1ac..bf97c1a5 100644
--- a/includes/ExternalEdit.php
+++ b/includes/ExternalEdit.php
@@ -19,39 +19,54 @@
*
*/
class ExternalEdit {
+ /**
+ * Title to perform the edit on
+ * @var Title
+ */
+ private $title;
- function __construct( $article, $mode ) {
- global $wgInputEncoding;
- $this->mArticle =& $article;
- $this->mTitle =& $article->mTitle;
- $this->mCharset = $wgInputEncoding;
- $this->mMode = $mode;
+ /**
+ * Mode of editing
+ * @var String
+ */
+ private $mode;
+
+ /**
+ * Constructor
+ * @param $title Title object we're performing the edit on
+ * @param $mode String What mode we're using. Only 'file' has any effect
+ */
+ public function __construct( $title, $mode ) {
+ $this->title = $title;
+ $this->mode = $mode;
}
- function edit() {
- global $wgOut, $wgScript, $wgScriptPath, $wgServer, $wgLang;
+ /**
+ * Output the information for the external editor
+ */
+ public function edit() {
+ global $wgOut, $wgScript, $wgScriptPath, $wgCanonicalServer, $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" );
+ header( 'Content-type: application/x-external-editor; charset=utf-8' );
+ 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";
- $url=$this->mTitle->getFullURL("action=edit&internaledit=true");
+ if( $this->mode == "file" ) {
+ $type = "Edit file";
+ $image = wfLocalFile( $this->title );
+ $url = $image->getCanonicalURL();
+ $extension = $image->getExtension();
+ } else {
+ $type = "Edit text";
+ $url = $this->title->getCanonicalURL(
+ array( 'action' => 'edit', 'internaledit' => 'true' ) );
# *.wiki file extension is used by some editors for syntax
# highlighting, so we follow that convention
- $extension="wiki";
- } elseif($this->mMode=="file") {
- $type="Edit file";
- $image = wfLocalFile( $this->mTitle );
- $url = $image->getFullURL();
- $extension=substr($name, $pos);
+ $extension = "wiki";
}
- $special=$wgLang->getNsText(NS_SPECIAL);
+ $special = $wgLang->getNsText( NS_SPECIAL );
$control = <<<CONTROL
; You're seeing this file because you're using Mediawiki's External Editor
; feature. This is probably because you selected use external editor
@@ -61,8 +76,8 @@ class ExternalEdit {
[Process]
Type=$type
Engine=MediaWiki
-Script={$wgServer}{$wgScript}
-Server={$wgServer}
+Script={$wgCanonicalServer}{$wgScript}
+Server={$wgCanonicalServer}
Path={$wgScriptPath}
Special namespace=$special