r110898 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r110897‎ | r110898 | r110899 >
Date:00:00, 8 February 2012
Author:raindrift
Status:ok (Comments)
Tags:
Comment:
Updated extension name, added message docs, added README and INSTALL
Modified paths:
  • /trunk/extensions/ArticleCreationWorkflow/ArticleCreationWorkflow.i18n.php (modified) (history)
  • /trunk/extensions/ArticleCreationWorkflow/ArticleCreationWorkflow.php (modified) (history)
  • /trunk/extensions/ArticleCreationWorkflow/INSTALL (added) (history)
  • /trunk/extensions/ArticleCreationWorkflow/README (added) (history)

Diff [purge]

Index: trunk/extensions/ArticleCreationWorkflow/INSTALL
@@ -0,0 +1,10 @@
 2+ArticleCreationWorkflow Extension, v.0.1
 3+
 4+* download the latest available version and extract it to your wiki extension directory.
 5+* add the following line to LocalSettings.php
 6+
 7+ require_once( "$IP/extensions/ArticleCreationWorkflow/ArticleCreationWorkflow.php" );
 8+
 9+* check out the Special:Version page to verify the installation
 10+
 11+See http://www.mediawiki.org/wiki/Extension:ArticleCreationWorkflow for further details.
Index: trunk/extensions/ArticleCreationWorkflow/ArticleCreationWorkflow.i18n.php
@@ -11,6 +11,8 @@
1212 * @author Rob Moen
1313 */
1414 $messages['en'] = array(
 15+ 'article-creation-desc' => 'Adds a more user-friendly article creation pageflow.',
 16+
1517 'ac-hover-tooltip-title' => 'Select this if...',
1618 'ac-landing-page-title' => 'Article creation landing page',
1719
@@ -45,3 +47,41 @@
4648 'ac-create-help' => 'Learn more',
4749 'ac-click-tip-title-create' => 'I know that…',
4850 );
 51+
 52+$messages['qqq'] = array(
 53+ 'article-creation-desc' => 'Extension description.',
 54+
 55+ 'ac-hover-tooltip-title' => 'The title for the tooltip displayed next to the buttons',
 56+ 'ac-landing-page-title' => 'The title of the landing page',
 57+
 58+ //buttons
 59+ 'ac-action-indicator' => 'Indicates the action the user would like to take "I want to..."',
 60+
 61+ 'ac-action-login' => 'Prompt to log in to the wiki, goes inside the button',
 62+ 'ac-action-login-subtitle' => 'First-person statement for the login button subtitle',
 63+ 'ac-hover-tooltip-body-login' => "Bullet point, displayed when the user has an account but isn't logged in",
 64+
 65+ 'ac-action-signup' => 'Prompt to create an account, goes inside the button',
 66+ 'ac-action-signup-subtitle' => 'First-person statement for the signup button subtitle',
 67+ 'ac-hover-tooltip-body-signup' => "* Bullet point, explaining why the user might like to sign up",
 68+
 69+ 'ac-action-request' => 'Prompt to request an article using AfC, goes inside the button',
 70+ 'ac-action-request-subtitle' => 'First-person statement for the article request button subtitle',
 71+ 'ac-action-request-subtitle-anon' => 'Explanation that AfC does not require an account',
 72+ 'ac-hover-tooltip-body-request' => "Bullet point, explains why the user might want to create a draft",
 73+
 74+ 'ac-action-draft' => 'Prompt to create a draft, goes inside button',
 75+ 'ac-action-draft-subtitle' => 'First-person statement for the draft button subtitle.',
 76+ 'ac-hover-tooltip-body-draft' => "Bullet point, explains why the user might want to create a draft article.",
 77+
 78+ 'ac-action-create' => 'Prompt to create an article directly, goes inside the button',
 79+ 'ac-action-create-subtitle' => 'First-person statement for the create button subtitle',
 80+ 'ac-create-warning-create' => 'Tooltip warning about how new articles may be deleted if they don\t conform to policy',
 81+ 'ac-create-button' => "OK button that goes inside the warning tooltip",
 82+ 'ac-hover-tooltip-body-create' => 'Bullet point, explains which users should choose the create button. Goes inside a tooltip.',
 83+
 84+ 'ac-create-dismiss' => 'Checkbox prompt to skip this step',
 85+
 86+ 'ac-create-help' => 'Link text for article creation help, goes in tooltip above text.',
 87+ 'ac-click-tip-title-create' => 'Title for reasons that an article might be deleted',
 88+);
Index: trunk/extensions/ArticleCreationWorkflow/ArticleCreationWorkflow.php
@@ -6,7 +6,7 @@
77 $wgExtensionCredits['other'][] = array(
88 'author' => array( 'Rob Moen', 'Benny Situ' ),
99 'descriptionmsg' => 'article-creation-desc',
10 - 'name' => 'ArticleCreation',
 10+ 'name' => 'ArticleCreationWorkflow',
1111 'url' => 'http://www.mediawiki.org/wiki/Article_Creation_Landing_System',
1212 'version' => '0.1',
1313 'path' => __FILE__,
Index: trunk/extensions/ArticleCreationWorkflow/README
@@ -0,0 +1,9 @@
 2+ArticleCreationWorkflow is an extension for MediaWiki, which adds a more user-friendly article
 3+creation pageflow.
 4+
 5+ArticleCreationWorkflow is licensed under the same terms as MediaWiki itself.
 6+
 7+ArticleCreationWorkflow by:
 8+@author Benny Situ <bsitu@wikimedia.org>
 9+@author Andrew Garrett <agarrett@wikimedia.org>
 10+@author Rob Moen <rmoen@wikimedia.org>

Follow-up revisions

RevisionCommit summaryAuthorDate
r111138Follow-up to r110898. Ian is too humble to add himself to the list of authors.werdna01:02, 10 February 2012

Comments

#Comment by Werdna (talk | contribs)   01:01, 10 February 2012

You forgot yourself. :-)

Status & tagging log