Index: trunk/extensions/UsabilityInitiative/README |
— | — | @@ -14,27 +14,20 @@ |
15 | 15 | |
16 | 16 | # Some lines to add to LocalSettings.php to get these extensions up and running: |
17 | 17 | |
18 | | -# A system for making it easy for users to opt-in and out of a beta, in this |
19 | | -# case using vector as their skin and the enhanced toolbar |
20 | | -# NOTE: This extension may not be very useful for non-WMF wikis |
21 | | -require_once( "$IP/extensions/UsabilityInitiative/OptIn/OptIn.php" ); |
22 | | -# Always show the link to opt-in in the personal tools - without this, the link |
23 | | -# to opt-out (while opted in) will still appear (it always does) |
24 | | -#$wgOptInAlwaysShowPersonalLink = true; |
| 18 | +# PrefStats collects and displays statistics for when users have started/ended using certain options |
25 | 19 | |
26 | | -# Shows statistics on when users have started and ended using certain prefs |
27 | | - |
28 | 20 | require_once("$IP/extensions/UsabilityInitiative/PrefStats/PrefStats.php"); |
29 | 21 | $wgPrefStatsTrackPrefs = array( 'skin' => 'vector', 'usebetatoolbar' => 1 ); |
30 | 22 | $wgGroupPermissions['sysop']['prefstats'] = true; |
31 | | -$wgPrefStatsTimeUnit = 60*60*24; |
| 23 | +$wgPrefStatsTimeUnit = 60 * 60 * 24; |
32 | 24 | |
33 | | -# Track users' contribution counts. ClickTracking (see below) needs this |
34 | | -# NOTE: This extension may not be very useful for non-WMF wikis |
| 25 | +# UserDailyContribs allows you to track users' contribution totals |
| 26 | + |
35 | 27 | require_once( "$IP/extensions/UsabilityInitiative/UserDailyContribs/UserDailyContribs.php" ); |
36 | 28 | |
37 | | -# Track users' clicks in the toolbar and the left nav bar (and possibly other places as well) |
38 | | -# NOTE: This extension may not be very useful for non-WMF wikis |
| 29 | +# ClickTracking lets you track users' clicks on links/buttons. The current implementation tracks clicks on the |
| 30 | +# navigation bar - the WikiEditor toolbar makes use of this if present |
| 31 | + |
39 | 32 | require_once("$IP/extensions/UsabilityInitiative/ClickTracking/ClickTracking.php"); |
40 | | -# Click tracking is disabled by default. To enable it, use something like: |
41 | | -#$wgClickTrackThrottle = 10; // Track 1 in every 10 clicks; set to 1 to track all clicks, -1 to disable |
\ No newline at end of file |
| 33 | +// Track 1 in every 10 clicks; set to 1 to track all clicks, -1 to disable |
| 34 | +$wgClickTrackThrottle = 10; |
\ No newline at end of file |