Also set the queue types map when rebuilding the ready queue map
[lhc/web/wiklou.git] / includes / api / ApiFormatDbg.php
index 2766125..1b2e02c 100644 (file)
@@ -1,56 +1,47 @@
-<?php\r
-\r
-/*\r
- * Created on Oct 22, 2006\r
- *\r
- * API for MediaWiki 1.8+\r
- *\r
- * Copyright (C) 2008 Roan Kattouw <Firstname>.<Lastname>@home.nl\r
- *\r
- * This program is free software; you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation; either version 2 of the License, or\r
- * (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License along\r
- * with this program; if not, write to the Free Software Foundation, Inc.,\r
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\r
- * http://www.gnu.org/copyleft/gpl.html\r
- */\r
-\r
-if (!defined('MEDIAWIKI')) {\r
-       // Eclipse helper - will be ignored in production\r
-       require_once ('ApiFormatBase.php');\r
-}\r
-\r
-/**\r
- * @addtogroup API\r
- */\r
-class ApiFormatDbg extends ApiFormatBase {\r
-\r
-       public function __construct($main, $format) {\r
-               parent :: __construct($main, $format);\r
-       }\r
-\r
-       public function getMimeType() {\r
-               return 'text/html';\r
-       }\r
-\r
-       public function execute() {\r
-               $this->printText(var_export($this->getResultData(), true));\r
-       }\r
-\r
-       protected function getDescription() {\r
-               return 'Output data in PHP\'s var_export() format' . parent :: getDescription();\r
-       }\r
-\r
-       public function getVersion() {\r
-               return __CLASS__ . ': $Id: ApiFormatPhp.php 23531 2007-06-29 01:19:14Z simetrical $';\r
-       }\r
-}\r
-\r
+<?php
+/**
+ *
+ *
+ * Created on Oct 22, 2006
+ *
+ * Copyright © 2008 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
+ */
+
+/**
+ * API PHP's var_export() output formatter
+ * @ingroup API
+ */
+class ApiFormatDbg extends ApiFormatBase {
+
+       public function getMimeType() {
+               // This looks like it should be text/plain, but IE7 is so
+               // brain-damaged it tries to parse text/plain as HTML if it
+               // contains HTML tags. Using MIME text/text works around this bug
+               return 'text/text';
+       }
+
+       public function execute() {
+               $this->printText( var_export( $this->getResultData(), true ) );
+       }
+
+       public function getDescription() {
+               return 'Output data in PHP\'s var_export() format' . parent::getDescription();
+       }
+}