-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename from PickSome to Deliberation
This changes the labels, filenames, variable names to use "Deliberation" and "Choice" instead of "PickSome" and "Pick". This makes no attempt to migrate for past installations of the tool. Any site that is currently using the PickSome tool will need to manually: 1. Rename the PickSome database to "Deliberation". 2. Update the LocalSettings import to import Deliberation instead of PickSome. Issue #3
- Loading branch information
Showing
8 changed files
with
163 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,59 @@ | ||
{ | ||
"name": "PickSome", | ||
"version": "0.0.1", | ||
"name": "Deliberation", | ||
"version": "0.1.0", | ||
"author": [ | ||
"Open Tech Strategies" | ||
], | ||
"license-name": "GPL-2.0-or-later", | ||
"url": "https://github.com/OpenTechStrategies/torque", | ||
"descriptionmsg": "picksome-desc", | ||
"descriptionmsg": "deliberation-desc", | ||
"type": "specialpages", | ||
"requires": { | ||
"MediaWiki": ">= 1.31.0" | ||
}, | ||
"LogHeaders": { | ||
"picksome": "picksomelogpagetext" | ||
"deliberation": "deliberationlogpagetext" | ||
}, | ||
"LogNames": { | ||
"picksome": "picksomelogpage" | ||
"deliberation": "deliberationlogpage" | ||
}, | ||
"LogActionsHandlers": { | ||
"picksome/*": "LogFormatter" | ||
"deliberation/*": "LogFormatter" | ||
}, | ||
"LogTypes": [ | ||
"picksome" | ||
"deliberation" | ||
], | ||
"SpecialPages": { | ||
"PickSome": "PickSome" | ||
"Deliberation": "Deliberation" | ||
}, | ||
"MessagesDirs": { | ||
"PickSome": [ | ||
"Deliberation": [ | ||
"i18n" | ||
] | ||
}, | ||
"AvailableRights": [ | ||
"picksome", | ||
"picksome-write", | ||
"picksome-admin" | ||
"deliberation", | ||
"deliberation-write", | ||
"deliberation-admin" | ||
], | ||
"AutoloadClasses": { | ||
"PickSome": "includes/specials/PickSome.php", | ||
"PickSomeHooks": "includes/PickSomeHooks.php", | ||
"PickSomeGlobalTemplate": "includes/templates/PickSomeGlobalTemplate.php", | ||
"PickSomeSession": "includes/PickSomeSession.php" | ||
"Deliberation": "includes/specials/Deliberation.php", | ||
"DeliberationHooks": "includes/DeliberationHooks.php", | ||
"DeliberationGlobalTemplate": "includes/templates/DeliberationGlobalTemplate.php", | ||
"DeliberationSession": "includes/DeliberationSession.php" | ||
}, | ||
"ResourceFileModulePaths": { | ||
"localBasePath": "" | ||
}, | ||
"Hooks": { | ||
"LoadExtensionSchemaUpdates": "PickSomeHooks::onLoadExtensionSchemaUpdates", | ||
"SiteNoticeAfter": "PickSomeHooks::siteNoticeAfter", | ||
"SidebarBeforeOutput": "PickSomeHooks::onSidebarBeforeOutput" | ||
"LoadExtensionSchemaUpdates": "DeliberationHooks::onLoadExtensionSchemaUpdates", | ||
"SiteNoticeAfter": "DeliberationHooks::siteNoticeAfter", | ||
"SidebarBeforeOutput": "DeliberationHooks::onSidebarBeforeOutput" | ||
}, | ||
"config": { | ||
"PickSomeNumberOfPicks": 2, | ||
"PickSomePage": false, | ||
"PickSomeSortFunction": false | ||
"DeliberationNumberOfPicks": 2, | ||
"DeliberationPage": false, | ||
"DeliberationSortFunction": false | ||
}, | ||
"manifest_version": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.