r70733 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r70732‎ | r70733 | r70734 >
Date:02:31, 9 August 2010
Author:jeroendedauw
Status:deferred
Tags:
Comment:
Added docs
Modified paths:
  • /trunk/extensions/Deployment/README (modified) (history)
  • /trunk/extensions/Deployment/specials/SpecialDashboard.php (modified) (history)
  • /trunk/extensions/Deployment/specials/SpecialInstall.php (modified) (history)
  • /trunk/extensions/Deployment/specials/SpecialUpdate.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Deployment/specials/SpecialUpdate.php
@@ -21,10 +21,22 @@
2222 */
2323 class SpecialUpdate extends SpecialPage {
2424
 25+ /**
 26+ * Constructor.
 27+ *
 28+ * @since 0.1
 29+ */
2530 public function __construct() {
2631 parent::__construct( 'Update' );
2732 }
2833
 34+ /**
 35+ * Main method.
 36+ *
 37+ * @since 0.1
 38+ *
 39+ * @param $arg String
 40+ */
2941 public function execute( $arg ) {
3042
3143 }
Index: trunk/extensions/Deployment/specials/SpecialInstall.php
@@ -21,10 +21,22 @@
2222 */
2323 class SpecialInstall extends SpecialPage {
2424
 25+ /**
 26+ * Constructor.
 27+ *
 28+ * @since 0.1
 29+ */
2530 public function __construct() {
2631 parent::__construct( 'Install' );
2732 }
2833
 34+ /**
 35+ * Main method.
 36+ *
 37+ * @since 0.1
 38+ *
 39+ * @param $arg String
 40+ */
2941 public function execute( $arg ) {
3042
3143 }
Index: trunk/extensions/Deployment/specials/SpecialDashboard.php
@@ -21,10 +21,22 @@
2222 */
2323 class SpecialDashboard extends SpecialPage {
2424
 25+ /**
 26+ * Constructor.
 27+ *
 28+ * @since 0.1
 29+ */
2530 public function __construct() {
2631 parent::__construct( 'Dashboard' );
2732 }
2833
 34+ /**
 35+ * Main method.
 36+ *
 37+ * @since 0.1
 38+ *
 39+ * @param $arg String
 40+ */
2941 public function execute( $arg ) {
3042
3143 }
Index: trunk/extensions/Deployment/README
@@ -1,16 +1,21 @@
22 == About ==
33
4 -...
 4+This extension enables installation and updating of extensions and MediaWiki itself.
 5+It obtains deployment packages by using the API provided by the Distribution extension [0],
 6+parses these and applies them. For this it provides several special pages. More info at [1].
57
 8+[0] https://secure.wikimedia.org/wikipedia/mediawiki/wiki/Extension:Distribution
 9+[1] https://secure.wikimedia.org/wikipedia/mediawiki/wiki/Extension:Deployment
 10+
611 == Credits to other projects ==
712
813 * WordPress:
914 http://www.wordpress.com/
10 - A lot of the code in this extension is dirived from or inspired on WordPress code.
 15+ The filesystem code in this extension is dirived from or inspired on WordPress code.
1116
1217 * Deployment Framework
1318 http://smwforum.ontoprise.com/smwforum/index.php/Help:Deployment_Framework
14 - Various aspects of this extension are based on Ontoprises Deployment Framework.
 19+ The Ontoprises Deployment Framework served as an example for creating this extension.
1520
1621 * PclZip
1722 http://www.phpconcept.net

Status & tagging log