Page MenuHomePhabricator

Collection extension still uses GFDL license
Closed, ResolvedPublic

Description

http://noc.wikimedia.org/conf/highlight.php?file=CommonSettings.php has the following in the configuration for the collection extension:

$wgLicenseURL = "http://en.wikipedia.org/w/index.php?title=Wikipedia:Text_of_the_GNU_Free_Documentation_License&action=raw";

This page indicates: As of July 15, 2009 Wikipedia has moved to a dual-licensing system that supersedes the previous GFDL only licensing. In short, this means that text licensed under the GFDL only can no longer be imported to Wikipedia, retroactive to 1 November 2008. Additionally, Wikipedia text might or might not now be exportable under the GFDL depending on whether or not any content was added and not removed since July 15. See Wikipedia:Licensing update for further information.

I think that we may be creating books with an incorrect license and that it should probably point to CC-BY-SA 3.0 ;).


Version: unspecified
Severity: normal
URL: http://noc.wikimedia.org/conf/highlight.php?file=CommonSettings.php

Details

Reference
bz32513

Event Timeline

bzimport raised the priority of this task from to Unbreak Now!.Nov 22 2014, 12:01 AM
bzimport set Reference to bz32513.
bzimport added a subscriber: Unknown Object (MLST).

What's the correct target page then?

Unknown. When I created the bug, I also sent the notification to WMF legal, and Geoff replied he'd be putting someone on it. TBC.

The GFDL article banner points to [[Wikipedia:Licensing update]] which points to [[Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License]] so we can probably use that link :-)

Change deployed live (local change r2694).

Index: CommonSettings.php

  • CommonSettings.php (revision 2693)

+++ CommonSettings.php (working copy)
@@ -1819,7 +1819,9 @@

		'zim' => 'openZIM',
	);

+ # GFDL is long gone, we use CC-BY-SA 3.0 nowaday. See bug 32513
+ //$wgLicenseURL = "http://en.wikipedia.org/w/index.php?title=Wikipedia:Text_of_the_GNU_Free_Documentation_License&action=raw";
+ $wgLicenseURL = "http://en.wikipedia.org/w/index.php?title=Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License&action=raw";

	$wgCollectionPortletForLoggedInUsersOnly = $wmgCollectionPortletForLoggedInUsersOnly;
	$wgCollectionArticleNamespaces = $wmgCollectionArticleNamespaces;

Please link the official license page http://creativecommons.org/licenses/by-sa/3.0/ which has translations and so on and is linked from https://wikimediafoundation.org/wiki/Terms_of_use , not the unofficial non-binding en.wiki-only page.

Thanks Nemo_bis for catching this. Here is the new version (local revision 2695):

Index: CommonSettings.php

  • CommonSettings.php (revision 2694)

+++ CommonSettings.php (working copy)
@@ -1821,7 +1821,7 @@

+ $wgLicenseURL = "http://creativecommons.org/licenses/by-sa/3.0/";

	$wgCollectionPortletForLoggedInUsersOnly = $wmgCollectionPortletForLoggedInUsersOnly;
	$wgCollectionArticleNamespaces = $wmgCollectionArticleNamespaces;