Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -342,7 +342,7 @@ |
343 | 343 | * |
344 | 344 | * These settings describe a foreign MediaWiki installation. They are optional, and will be ignored |
345 | 345 | * for local repositories: |
346 | | - * - descBaseUrl URL of image description pages, e.g. http://en.wikipedia.org/wiki/Image: |
| 346 | + * - descBaseUrl URL of image description pages, e.g. http://en.wikipedia.org/wiki/File: |
347 | 347 | * - scriptDirUrl URL of the MediaWiki installation, equivalent to $wgScriptPath, e.g. |
348 | 348 | * http://en.wikipedia.org/w |
349 | 349 | * - scriptExtension Script extension of the MediaWiki installation, equivalent to |
— | — | @@ -402,7 +402,7 @@ |
403 | 403 | * Uploads to this wiki will NOT be put there - they will be put into |
404 | 404 | * $wgUploadDirectory. |
405 | 405 | * If $wgUseSharedUploads is set, the wiki will look in the shared repository if |
406 | | - * no file of the given name is found in the local repository (for [[Image:..]], |
| 406 | + * no file of the given name is found in the local repository (for [[File:..]], |
407 | 407 | * [[Media:..]] links). Thumbnails will also be looked for and generated in this |
408 | 408 | * directory. |
409 | 409 | * |
— | — | @@ -485,7 +485,7 @@ |
486 | 486 | * |
487 | 487 | * Please specify the namespace, as in the example below. |
488 | 488 | */ |
489 | | -$wgRepositoryBaseUrl = "http://commons.wikimedia.org/wiki/Image:"; |
| 489 | +$wgRepositoryBaseUrl = "http://commons.wikimedia.org/wiki/File:"; |
490 | 490 | |
491 | 491 | /** |
492 | 492 | * This is the list of preferred extensions for uploading files. Uploading files |
— | — | @@ -542,7 +542,7 @@ |
543 | 543 | /** |
544 | 544 | * list of trusted media-types and mime types. |
545 | 545 | * Use the MEDIATYPE_xxx constants to represent media types. |
546 | | - * This list is used by Image::isSafeFile |
| 546 | + * This list is used by File::isSafeFile |
547 | 547 | * |
548 | 548 | * Types not listed here will have a warning about unsafe content |
549 | 549 | * displayed on the images description page. It would also be possible |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -227,6 +227,8 @@ |
228 | 228 | * (bug 19910) Headings of the form ===+\s+ are now displayed as valid headings |
229 | 229 | * (bug 24022) Only check file extensions on the uploadpage when needed. |
230 | 230 | * (bug 24076) Recognize Office 2003 files with OpenXML trailers |
| 231 | +* (bug 24244) Updated comments in DefaultSettings.php to reflect Image: --> File: |
| 232 | + namespace rename. |
231 | 233 | |
232 | 234 | === API changes in 1.17 === |
233 | 235 | * (bug 22738) Allow filtering by action type on query=logevent. |