Index: trunk/extensions/Push/Push.php |
— | — | @@ -22,7 +22,7 @@ |
23 | 23 | die( 'Not an entry point.' ); |
24 | 24 | } |
25 | 25 | |
26 | | -define( 'Push_VERSION', '0.5 alpha' ); |
| 26 | +define( 'Push_VERSION', '0.5 rc' ); |
27 | 27 | |
28 | 28 | $wgExtensionCredits['other'][] = array( |
29 | 29 | 'path' => __FILE__, |
Index: trunk/extensions/Push/INSTALL |
— | — | @@ -57,13 +57,16 @@ |
58 | 58 | As of version 0.4, you can specify a username (<code>$egPushLoginUser</code>) and password (<code>$egPushLoginPass</code>) |
59 | 59 | to authenticate with on the remote wikis. You can also specify login information per target wiki, which will override the |
60 | 60 | global settings when set. You can do this by adding items to the <code>$egPushLoginUsers</code> and |
61 | | -<code>$egPushLoginPasswords</code> arrays. The keys need to be the urls set in $egPushTargets. Example: |
| 61 | +<code>$egPushLoginPasswords</code> arrays. The keys need to be the target names set in $egPushTargets. Example: |
62 | 62 | |
63 | 63 | <source lang="php"> |
64 | | -$egPushLoginUsers['http://mapping.referata.com/w'] = 'Jeroen De Dauw'; |
65 | | -$egPushLoginPasswords['http://mapping.referata.com/w'] = 'Awesome'; |
| 64 | +$egPushLoginUsers['English Wikipedia'] = 'Jeroen De Dauw'; |
| 65 | +$egPushLoginPasswords['English Wikipedia'] = 'Awesome'; |
66 | 66 | </source> |
67 | 67 | |
| 68 | +If you are running wikis on localhost, pushing from a MW 1.16 install will not work, due to an issue in |
| 69 | +Cookie::validateCookieDomain. It can be fixed by replacing this method by it's MW 1.17 equivalent. |
| 70 | + |
68 | 71 | === Pushing files === |
69 | 72 | |
70 | 73 | As of version 0.5 of Push, you can choose to push the files used in the page you are pushing. This is done by checking |