Index: trunk/extensions/EducationProgram/EducationProgram.i18n.ns.php |
— | — | @@ -8,7 +8,7 @@ |
9 | 9 | * @file EducationProgram.i18n.ns.php |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * |
12 | | - * @licence GNU GPL v3+ |
| 12 | + * @licence GNU GPL v2+ |
13 | 13 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
14 | 14 | */ |
15 | 15 | |
Index: trunk/extensions/EducationProgram/EducationProgram.settings.php |
— | — | @@ -13,7 +13,7 @@ |
14 | 14 | * @file EducationProgram.settings.php |
15 | 15 | * @ingroup EducationProgram |
16 | 16 | * |
17 | | - * @licence GNU GPL v3+ |
| 17 | + * @licence GNU GPL v2+ |
18 | 18 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
19 | 19 | */ |
20 | 20 | class EPSettings { |
Index: trunk/extensions/EducationProgram/EducationProgram.php |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | * @file EducationProgram.php |
18 | 18 | * @ingroup EducationProgram |
19 | 19 | * |
20 | | - * @licence GNU GPL v3+ |
| 20 | + * @licence GNU GPL v2+ |
21 | 21 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
22 | 22 | */ |
23 | 23 | |
Index: trunk/extensions/EducationProgram/sql/AddArticleTitleField.sql |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | -- MySQL patch for the Education Program extension. |
| 3 | +-- Licence: GNU GPL v2+ |
3 | 4 | -- Author: Jeroen De Dauw < jeroendedauw@gmail.com > |
4 | 5 | |
5 | 6 | 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 @@ |
2 | 2 | -- MySQL version of the database schema for the Education Program extension. |
| 3 | +-- Licence: GNU GPL v2+ |
3 | 4 | -- Author: Jeroen De Dauw < jeroendedauw@gmail.com > |
4 | 5 | |
5 | 6 | -- Organizations, ie universities |
Index: trunk/extensions/EducationProgram/sql/AddAmbVisibleField.sql |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | -- MySQL patch for the Education Program extension. |
| 3 | +-- Licence: GNU GPL v2+ |
3 | 4 | -- Author: Jeroen De Dauw < jeroendedauw@gmail.com > |
4 | 5 | |
5 | 6 | ALTER TABLE /*_*/ep_cas ADD COLUMN ca_visible TINYINT unsigned NOT NULL; |
Index: trunk/extensions/EducationProgram/sql/AddActivityStuff.sql |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | -- MySQL patch for the Education Program extension. |
| 3 | +-- Licence: GNU GPL v2+ |
3 | 4 | -- Author: Jeroen De Dauw < jeroendedauw@gmail.com > |
4 | 5 | |
5 | 6 | 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 @@ |
2 | 2 | -- MySQL patch for the Education Program extension. |
| 3 | +-- Licence: GNU GPL v2+ |
3 | 4 | -- Author: Jeroen De Dauw < jeroendedauw@gmail.com > |
4 | 5 | |
5 | 6 | ALTER TABLE /*_*/ep_orgs ADD COLUMN org_courses BLOB NOT NULL; |
Index: trunk/extensions/EducationProgram/pages/CoursePage.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Page |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class CoursePage extends EPPage { |
Index: trunk/extensions/EducationProgram/pages/EPPage.php |
— | — | @@ -11,7 +11,7 @@ |
12 | 12 | * @ingroup EducationProgram |
13 | 13 | * @ingroup Page |
14 | 14 | * |
15 | | - * @licence GNU GPL v3+ |
| 15 | + * @licence GNU GPL v2+ |
16 | 16 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
17 | 17 | */ |
18 | 18 | abstract class EPPage extends Page implements IContextSource { |
Index: trunk/extensions/EducationProgram/pages/OrgPage.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Page |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class OrgPage extends EPPage { |
Index: trunk/extensions/EducationProgram/EducationProgram.i18n.alias.php |
— | — | @@ -8,7 +8,7 @@ |
9 | 9 | * @file EducationProgram.alias.php |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * |
12 | | - * @licence GNU GPL v3+ |
| 12 | + * @licence GNU GPL v2+ |
13 | 13 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
14 | 14 | */ |
15 | 15 | |
Index: trunk/extensions/EducationProgram/actions/EPRemoveReviewerAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class EPRemoveReviewerAction extends FormlessAction { |
Index: trunk/extensions/EducationProgram/actions/ViewCourseAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class ViewCourseAction extends EPViewAction { |
Index: trunk/extensions/EducationProgram/actions/EditOrgAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class EditOrgAction extends EPEditAction { |
Index: trunk/extensions/EducationProgram/actions/EPViewAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | abstract class EPViewAction extends EPAction { |
Index: trunk/extensions/EducationProgram/actions/EPAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | abstract class EPAction extends CachedAction { |
Index: trunk/extensions/EducationProgram/actions/EditCourseAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class EditCourseAction extends EPEditAction { |
Index: trunk/extensions/EducationProgram/actions/EPRestoreAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class EPRestoreAction extends EPAction { |
Index: trunk/extensions/EducationProgram/actions/EPEditAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | abstract class EPEditAction extends EPAction { |
Index: trunk/extensions/EducationProgram/actions/EPAddArticleAction.php |
— | — | @@ -10,7 +10,7 @@ |
11 | 11 | * @ingroup EducationProgram |
12 | 12 | * @ingroup Action |
13 | 13 | * |
14 | | - * @licence GNU GPL v3+ |
| 14 | + * @licence GNU GPL v2+ |
15 | 15 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
16 | 16 | */ |
17 | 17 | class EPAddArticleAction extends FormlessAction { |
Index: trunk/extensions/EducationProgram/actions/ViewOrgAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class ViewOrgAction extends EPViewAction { |
Index: trunk/extensions/EducationProgram/actions/EPAddReviewerAction.php |
— | — | @@ -10,7 +10,7 @@ |
11 | 11 | * @ingroup EducationProgram |
12 | 12 | * @ingroup Action |
13 | 13 | * |
14 | | - * @licence GNU GPL v3+ |
| 14 | + * @licence GNU GPL v2+ |
15 | 15 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
16 | 16 | */ |
17 | 17 | class EPAddReviewerAction extends FormlessAction { |
Index: trunk/extensions/EducationProgram/actions/EPHistoryAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class EPHistoryAction extends EPAction { |
Index: trunk/extensions/EducationProgram/actions/EPRemoveArticleAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class EPRemoveArticleAction extends FormlessAction { |
Index: trunk/extensions/EducationProgram/actions/EPDeleteAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class EPDeleteAction extends EPAction { |
Index: trunk/extensions/EducationProgram/actions/EPRemoveStudentAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class EPRemoveStudentAction extends FormlessAction { |
Index: trunk/extensions/EducationProgram/actions/EPUndoAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class EPUndoAction extends EPAction { |
Index: trunk/extensions/EducationProgram/actions/EPUndeleteAction.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup Action |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class EPUndeleteAction extends EPAction { |
Index: trunk/extensions/EducationProgram/EducationProgram.i18n.php |
— | — | @@ -8,7 +8,7 @@ |
9 | 9 | * @file EducationProgram.i18n.php |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * |
12 | | - * @licence GNU GPL v3+ |
| 12 | + * @licence GNU GPL v2+ |
13 | 13 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
14 | 14 | */ |
15 | 15 | |
Index: trunk/extensions/EducationProgram/api/ApiRefreshEducation.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup API |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class ApiRefreshEducation extends ApiBase { |
Index: trunk/extensions/EducationProgram/api/ApiDeleteEducation.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup API |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class ApiDeleteEducation extends ApiBase { |
Index: trunk/extensions/EducationProgram/api/ApiEnlist.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * @ingroup API |
12 | 12 | * |
13 | | - * @licence GNU GPL v3+ |
| 13 | + * @licence GNU GPL v2+ |
14 | 14 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
15 | 15 | */ |
16 | 16 | class ApiEnlist extends ApiBase { |
Index: trunk/extensions/EducationProgram/EducationProgram.hooks.php |
— | — | @@ -8,7 +8,7 @@ |
9 | 9 | * @file EducationProgram.hooks.php |
10 | 10 | * @ingroup EducationProgram |
11 | 11 | * |
12 | | - * @licence GNU GPL v3+ |
| 12 | + * @licence GNU GPL v2+ |
13 | 13 | * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
14 | 14 | */ |
15 | 15 | final class EPHooks { |