Index: trunk/extensions/Push/Push.i18n.php |
— | — | @@ -21,6 +21,18 @@ |
22 | 22 | 'right-bulkpush' => 'Authorization to use bulk push functionality (ie Special:Push).', |
23 | 23 | 'right-pushadmin' => 'Authorization to modify push targets and push settings.', |
24 | 24 | |
| 25 | + 'group-pusher' => 'Pushers', |
| 26 | + 'group-pusher-member' => 'Pusher', |
| 27 | + 'grouppage-pusher' => 'Project:Pushers', |
| 28 | + |
| 29 | + 'group-bulkpusher' => 'Bulk pushers', |
| 30 | + 'group-bulkpusher-member' => 'Bulk pusher', |
| 31 | + 'grouppage-bulkpusher' => 'Project:Bulk_pushers', |
| 32 | + |
| 33 | + 'group-filepusher' => 'File pushers', |
| 34 | + 'group-filepusher-member' => 'File pusher', |
| 35 | + 'grouppage-filepusher' => 'Project:File_pushers', |
| 36 | + |
25 | 37 | 'push-err-captacha' => 'Could not push to $1 due to captcha.', |
26 | 38 | 'push-err-captcha-page' => 'Could not push page $1 to all targets due to CAPTCHA.', |
27 | 39 | 'push-err-authentication' => 'Authentication at $1 failed. $2', |
Index: trunk/extensions/Push/Push.php |
— | — | @@ -25,7 +25,7 @@ |
26 | 26 | die( 'Not an entry point.' ); |
27 | 27 | } |
28 | 28 | |
29 | | -define( 'Push_VERSION', '1.0' ); |
| 29 | +define( 'Push_VERSION', '1.1 alpha' ); |
30 | 30 | |
31 | 31 | $wgExtensionCredits['other'][] = array( |
32 | 32 | 'path' => __FILE__, |
Index: trunk/extensions/Push/Push_Settings.php |
— | — | @@ -33,6 +33,14 @@ |
34 | 34 | $wgGroupPermissions['sysop']['filepush'] = true; |
35 | 35 | // $wgGroupPermissions['sysop']['pushadmin'] = true; |
36 | 36 | |
| 37 | +$wgGroupPermissions['pusher']['push'] = true; |
| 38 | + |
| 39 | +$wgGroupPermissions['bulkpusher']['bulkpush'] = true; |
| 40 | +$wgGroupPermissions['bulkpusher']['push'] = true; |
| 41 | + |
| 42 | +$wgGroupPermissions['filepusher']['filepush'] = true; |
| 43 | +$wgGroupPermissions['filepusher']['push'] = true; |
| 44 | + |
37 | 45 | # Show the push action as a tab (if not, it's displayed in the actions dropdown). |
38 | 46 | # This only works for skins with an actions dropdown. For others push will always appear as a tab. |
39 | 47 | $egPushShowTab = false; |
Index: trunk/extensions/Push/RELEASE-NOTES |
— | — | @@ -8,6 +8,7 @@ |
9 | 9 | 2011-0x-xx |
10 | 10 | |
11 | 11 | * Added PushAPIAfterPush and PushAPIAfterImagePush hooks to the API modules. |
| 12 | +* Added pusher, file pusher and bulk pusher user rights groups. |
12 | 13 | |
13 | 14 | === Version 1.0 === |
14 | 15 | 2011-05-26 |