Index: trunk/extensions/Survey/INSTALL |
— | — | @@ -37,8 +37,44 @@ |
38 | 38 | |
39 | 39 | Configuration of Survey is done by assigning to $egSurveySettings in your |
40 | 40 | [[Manual:LocalSettings.php|LocalSettings.php]] file, AFTER the inlcusion of the |
41 | | -extension. The options are listed below and their default is set in the Survey settings file [0]. |
| 41 | +extension. The options are listed below and their default is set in the Survey settings file: |
| 42 | +http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/Survey/Survey.settings.php?view=markup |
42 | 43 | You should NOT modify the settings file, but can have a look at it to get an idea of |
43 | 44 | how to use the settings, in case the below descriptions do not suffice. |
44 | 45 | |
45 | | -[0] http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/Survey/Survey.settings.php?view=markup |
\ No newline at end of file |
| 46 | +{| |
| 47 | +! Name |
| 48 | +! Type |
| 49 | +! Default |
| 50 | +! Description |
| 51 | +|- |
| 52 | +| defaultEnabled |
| 53 | +| boolean |
| 54 | +| false |
| 55 | +| If surveys should be enabled by default |
| 56 | +|- |
| 57 | +| defaultUserType |
| 58 | +| Survey::$USER_ |
| 59 | +| Survey::$USER_ALL |
| 60 | +| The default type of users a survey is shown to |
| 61 | +|- |
| 62 | +| defaultNamespaces |
| 63 | +| array |
| 64 | +| array() |
| 65 | +| The default namespaces in which surveys should be shown. Empty list for no namespace restrictions |
| 66 | +|- |
| 67 | +| defaultRatio |
| 68 | +| integer |
| 69 | +| 100 |
| 70 | +| The default percentage of users the surveys should be shown to |
| 71 | +|- |
| 72 | +| defaultExpiry |
| 73 | +| integer |
| 74 | +| 60 * 60 * 24 * 30 |
| 75 | +| The default expiry of cookies used to track survey completion of users, in seconds |
| 76 | +|- |
| 77 | +| defaultMinPages |
| 78 | +| integer |
| 79 | +| 0 |
| 80 | +| The default minimun amount of pages users should visit before getting a survey |
| 81 | +|} |
Index: trunk/extensions/Survey/RELEASE-NOTES |
— | — | @@ -5,8 +5,15 @@ |
6 | 6 | |
7 | 7 | |
8 | 8 | === Version 0.1 === |
9 | | -2011-xx-xx |
| 9 | +2011-09-12 |
10 | 10 | |
11 | 11 | Initial release with these features: |
12 | 12 | |
13 | | -* |
\ No newline at end of file |
| 13 | +* Surveys get displayed to wiki users using a nice pop-up form. |
| 14 | +* Surveys can be created and modified via an admin panel (Special:Surveys). |
| 15 | +* Surveys can be shown to specific types of users (logged in, anonymouse, editor, confirmed, ...) |
| 16 | +* Surveys can be shown for a specified percentage of users, and only after a certain amount of page views. |
| 17 | +* Survey questions can have different types of inputs, of which some allow restricting answers. |
| 18 | +* Surveys can be tested by admins via Special:TakeSurvey without them being live on the wiki. |
| 19 | +* Summaries of survey submissions can be found on Special:SurveyStats. |
| 20 | +* The survey submission data (ie user answers) can be exported via an API. |