r114539 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r114538‎ | r114539 | r114540 >
Date:21:04, 27 March 2012
Author:jeroendedauw
Status:deferred
Tags:
Comment:
license fix
Modified paths:
  • /trunk/extensions/EducationProgram/EducationProgram.hooks.php (modified) (history)
  • /trunk/extensions/EducationProgram/EducationProgram.i18n.alias.php (modified) (history)
  • /trunk/extensions/EducationProgram/EducationProgram.i18n.ns.php (modified) (history)
  • /trunk/extensions/EducationProgram/EducationProgram.i18n.php (modified) (history)
  • /trunk/extensions/EducationProgram/EducationProgram.php (modified) (history)
  • /trunk/extensions/EducationProgram/EducationProgram.settings.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPAddArticleAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPAddReviewerAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPDeleteAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPEditAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPHistoryAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPRemoveArticleAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPRemoveReviewerAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPRemoveStudentAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPRestoreAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPUndeleteAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPUndoAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EPViewAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EditCourseAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/EditOrgAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/ViewCourseAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/actions/ViewOrgAction.php (modified) (history)
  • /trunk/extensions/EducationProgram/api/ApiDeleteEducation.php (modified) (history)
  • /trunk/extensions/EducationProgram/api/ApiEnlist.php (modified) (history)
  • /trunk/extensions/EducationProgram/api/ApiRefreshEducation.php (modified) (history)
  • /trunk/extensions/EducationProgram/pages/CoursePage.php (modified) (history)
  • /trunk/extensions/EducationProgram/pages/EPPage.php (modified) (history)
  • /trunk/extensions/EducationProgram/pages/OrgPage.php (modified) (history)
  • /trunk/extensions/EducationProgram/sql/AddActivityStuff.sql (modified) (history)
  • /trunk/extensions/EducationProgram/sql/AddAmbVisibleField.sql (modified) (history)
  • /trunk/extensions/EducationProgram/sql/AddArticleTitleField.sql (modified) (history)
  • /trunk/extensions/EducationProgram/sql/AddCoursesField.sql (modified) (history)
  • /trunk/extensions/EducationProgram/sql/EducationProgram.sql (modified) (history)

Diff [purge]

Index: trunk/extensions/EducationProgram/EducationProgram.i18n.ns.php
@@ -8,7 +8,7 @@
99 * @file EducationProgram.i18n.ns.php
1010 * @ingroup EducationProgram
1111 *
12 - * @licence GNU GPL v3+
 12+ * @licence GNU GPL v2+
1313 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1414 */
1515
Index: trunk/extensions/EducationProgram/EducationProgram.settings.php
@@ -13,7 +13,7 @@
1414 * @file EducationProgram.settings.php
1515 * @ingroup EducationProgram
1616 *
17 - * @licence GNU GPL v3+
 17+ * @licence GNU GPL v2+
1818 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1919 */
2020 class EPSettings {
Index: trunk/extensions/EducationProgram/EducationProgram.php
@@ -16,7 +16,7 @@
1717 * @file EducationProgram.php
1818 * @ingroup EducationProgram
1919 *
20 - * @licence GNU GPL v3+
 20+ * @licence GNU GPL v2+
2121 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
2222 */
2323
Index: trunk/extensions/EducationProgram/sql/AddArticleTitleField.sql
@@ -1,5 +1,5 @@
22 -- MySQL patch for the Education Program extension.
 3+-- Licence: GNU GPL v2+
34 -- Author: Jeroen De Dauw < jeroendedauw@gmail.com >
45
56 ALTER TABLE /*_*/ep_articles ADD COLUMN article_page_title varchar(255) binary NOT NULL;
Index: trunk/extensions/EducationProgram/sql/EducationProgram.sql
@@ -1,5 +1,5 @@
22 -- MySQL version of the database schema for the Education Program extension.
 3+-- Licence: GNU GPL v2+
34 -- Author: Jeroen De Dauw < jeroendedauw@gmail.com >
45
56 -- Organizations, ie universities
Index: trunk/extensions/EducationProgram/sql/AddAmbVisibleField.sql
@@ -1,5 +1,5 @@
22 -- MySQL patch for the Education Program extension.
 3+-- Licence: GNU GPL v2+
34 -- Author: Jeroen De Dauw < jeroendedauw@gmail.com >
45
56 ALTER TABLE /*_*/ep_cas ADD COLUMN ca_visible TINYINT unsigned NOT NULL;
Index: trunk/extensions/EducationProgram/sql/AddActivityStuff.sql
@@ -1,5 +1,5 @@
22 -- MySQL patch for the Education Program extension.
 3+-- Licence: GNU GPL v2+
34 -- Author: Jeroen De Dauw < jeroendedauw@gmail.com >
45
56 ALTER TABLE /*_*/ep_users_per_course ADD COLUMN upc_time varbinary(14) NOT NULL;
Index: trunk/extensions/EducationProgram/sql/AddCoursesField.sql
@@ -1,5 +1,5 @@
22 -- MySQL patch for the Education Program extension.
 3+-- Licence: GNU GPL v2+
34 -- Author: Jeroen De Dauw < jeroendedauw@gmail.com >
45
56 ALTER TABLE /*_*/ep_orgs ADD COLUMN org_courses BLOB NOT NULL;
Index: trunk/extensions/EducationProgram/pages/CoursePage.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Page
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class CoursePage extends EPPage {
Index: trunk/extensions/EducationProgram/pages/EPPage.php
@@ -11,7 +11,7 @@
1212 * @ingroup EducationProgram
1313 * @ingroup Page
1414 *
15 - * @licence GNU GPL v3+
 15+ * @licence GNU GPL v2+
1616 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1717 */
1818 abstract class EPPage extends Page implements IContextSource {
Index: trunk/extensions/EducationProgram/pages/OrgPage.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Page
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class OrgPage extends EPPage {
Index: trunk/extensions/EducationProgram/EducationProgram.i18n.alias.php
@@ -8,7 +8,7 @@
99 * @file EducationProgram.alias.php
1010 * @ingroup EducationProgram
1111 *
12 - * @licence GNU GPL v3+
 12+ * @licence GNU GPL v2+
1313 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1414 */
1515
Index: trunk/extensions/EducationProgram/actions/EPRemoveReviewerAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class EPRemoveReviewerAction extends FormlessAction {
Index: trunk/extensions/EducationProgram/actions/ViewCourseAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class ViewCourseAction extends EPViewAction {
Index: trunk/extensions/EducationProgram/actions/EditOrgAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class EditOrgAction extends EPEditAction {
Index: trunk/extensions/EducationProgram/actions/EPViewAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 abstract class EPViewAction extends EPAction {
Index: trunk/extensions/EducationProgram/actions/EPAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 abstract class EPAction extends CachedAction {
Index: trunk/extensions/EducationProgram/actions/EditCourseAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class EditCourseAction extends EPEditAction {
Index: trunk/extensions/EducationProgram/actions/EPRestoreAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class EPRestoreAction extends EPAction {
Index: trunk/extensions/EducationProgram/actions/EPEditAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 abstract class EPEditAction extends EPAction {
Index: trunk/extensions/EducationProgram/actions/EPAddArticleAction.php
@@ -10,7 +10,7 @@
1111 * @ingroup EducationProgram
1212 * @ingroup Action
1313 *
14 - * @licence GNU GPL v3+
 14+ * @licence GNU GPL v2+
1515 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1616 */
1717 class EPAddArticleAction extends FormlessAction {
Index: trunk/extensions/EducationProgram/actions/ViewOrgAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class ViewOrgAction extends EPViewAction {
Index: trunk/extensions/EducationProgram/actions/EPAddReviewerAction.php
@@ -10,7 +10,7 @@
1111 * @ingroup EducationProgram
1212 * @ingroup Action
1313 *
14 - * @licence GNU GPL v3+
 14+ * @licence GNU GPL v2+
1515 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1616 */
1717 class EPAddReviewerAction extends FormlessAction {
Index: trunk/extensions/EducationProgram/actions/EPHistoryAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class EPHistoryAction extends EPAction {
Index: trunk/extensions/EducationProgram/actions/EPRemoveArticleAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class EPRemoveArticleAction extends FormlessAction {
Index: trunk/extensions/EducationProgram/actions/EPDeleteAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class EPDeleteAction extends EPAction {
Index: trunk/extensions/EducationProgram/actions/EPRemoveStudentAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class EPRemoveStudentAction extends FormlessAction {
Index: trunk/extensions/EducationProgram/actions/EPUndoAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class EPUndoAction extends EPAction {
Index: trunk/extensions/EducationProgram/actions/EPUndeleteAction.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup Action
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class EPUndeleteAction extends EPAction {
Index: trunk/extensions/EducationProgram/EducationProgram.i18n.php
@@ -8,7 +8,7 @@
99 * @file EducationProgram.i18n.php
1010 * @ingroup EducationProgram
1111 *
12 - * @licence GNU GPL v3+
 12+ * @licence GNU GPL v2+
1313 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1414 */
1515
Index: trunk/extensions/EducationProgram/api/ApiRefreshEducation.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup API
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class ApiRefreshEducation extends ApiBase {
Index: trunk/extensions/EducationProgram/api/ApiDeleteEducation.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup API
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class ApiDeleteEducation extends ApiBase {
Index: trunk/extensions/EducationProgram/api/ApiEnlist.php
@@ -9,7 +9,7 @@
1010 * @ingroup EducationProgram
1111 * @ingroup API
1212 *
13 - * @licence GNU GPL v3+
 13+ * @licence GNU GPL v2+
1414 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1515 */
1616 class ApiEnlist extends ApiBase {
Index: trunk/extensions/EducationProgram/EducationProgram.hooks.php
@@ -8,7 +8,7 @@
99 * @file EducationProgram.hooks.php
1010 * @ingroup EducationProgram
1111 *
12 - * @licence GNU GPL v3+
 12+ * @licence GNU GPL v2+
1313 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
1414 */
1515 final class EPHooks {

Status & tagging log