Index: trunk/extensions/Collection/README.txt |
— | — | @@ -10,8 +10,11 @@ |
11 | 11 | The *Collection* extension for MediaWiki_ allows users to collect articles and |
12 | 12 | generate PDFs for article collections and single articles. |
13 | 13 | |
14 | | -The extension has been developed for and tested with MediaWiki_ version 1.11 |
15 | | -and later. |
| 14 | +The extension has been developed for and tested with MediaWiki_ version 1.13 |
| 15 | +and later. Some features may not be avaialable with older MediaWikis or with |
| 16 | +MediaWikis that don't have the `MediaWiki API`_ enabled. One example is that |
| 17 | +MediaWikis < 1.13 don't have the capability to edit articles via API, thus |
| 18 | +saving of collections is disabled. |
16 | 19 | |
17 | 20 | The extension is being developed under the GNU General Public License by |
18 | 21 | `PediaPress GmbH`_ in close collaboration with `Wikimedia Foundation`_ |
Index: trunk/extensions/Collection/Collection.templates.php |
— | — | @@ -103,6 +103,7 @@ |
104 | 104 | </form> |
105 | 105 | </div> |
106 | 106 | |
| 107 | + <?php if ($GLOBALS['wgEnableWriteAPI']) { ?> |
107 | 108 | <div style="margin-bottom: 10px; padding: 10px; border: 1px solid #aaa; background-color: #f9f9f9;"> |
108 | 109 | <h2><span class="mw-headline"><?php $this->msg('coll-save_collection_title') ?></span></h2> |
109 | 110 | <?php if ($GLOBALS['wgUser']->isLoggedIn()) { ?> |
— | — | @@ -149,6 +150,7 @@ |
150 | 151 | $this->msgWiki('coll-save_category'); |
151 | 152 | ?> |
152 | 153 | </div> |
| 154 | + <?php } ?> |
153 | 155 | |
154 | 156 | </div> |
155 | 157 | |