updates copyright header

Sun, 08 Apr 2018 14:40:57 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 08 Apr 2018 14:40:57 +0200
changeset 24
8137ec335416
parent 23
a7d3e5921cce
child 25
559da0ee9bb7

updates copyright header

LICENSE file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/AbstractLightPITServlet.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/Constants.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/DatabaseFacade.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/Functions.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/HttpMethod.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/LightPITModule.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/Menu.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/MenuEntry.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/ModuleManager.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/RequestMapping.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/ResourceKey.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/ResponseType.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/entities/CoreDAOFactory.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/entities/Module.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/entities/ModuleDao.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/entities/PostgresModuleDao.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/modules/ErrorModule.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/modules/HomeModule.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/modules/LanguageModule.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/modules/ModuleManagerModule.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/modules/VersionsModule.java file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/resources/localization/error.properties file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/resources/localization/error_de.properties file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/resources/localization/home.properties file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/resources/localization/home_de.properties file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/resources/localization/language.properties file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/resources/localization/language_de.properties file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/resources/localization/modmgmt.properties file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/resources/localization/modmgmt_de.properties file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/resources/localization/versions.properties file | annotate | diff | comparison | revisions
src/java/de/uapcore/lightpit/resources/localization/versions_de.properties file | annotate | diff | comparison | revisions
src/java/log4j2.properties file | annotate | diff | comparison | revisions
web/WEB-INF/dynamic_fragments/error.jsp file | annotate | diff | comparison | revisions
web/WEB-INF/dynamic_fragments/language.jsp file | annotate | diff | comparison | revisions
web/WEB-INF/dynamic_fragments/modules.jsp file | annotate | diff | comparison | revisions
web/WEB-INF/jsp/html_full.jsp file | annotate | diff | comparison | revisions
web/error.css file | annotate | diff | comparison | revisions
web/index.jsp file | annotate | diff | comparison | revisions
web/language.css file | annotate | diff | comparison | revisions
web/lightpit.css file | annotate | diff | comparison | revisions
--- a/LICENSE	Sat Apr 07 23:01:58 2018 +0200
+++ b/LICENSE	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-Copyright 2017 Mike Becker. All rights reserved.
+Copyright 2018 Mike Becker. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/AbstractLightPITServlet.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/AbstractLightPITServlet.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/Constants.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/Constants.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/DatabaseFacade.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/DatabaseFacade.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/Functions.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/Functions.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/HttpMethod.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/HttpMethod.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/LightPITModule.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/LightPITModule.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/Menu.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/Menu.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/MenuEntry.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/MenuEntry.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/ModuleManager.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/ModuleManager.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/RequestMapping.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/RequestMapping.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/ResourceKey.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/ResourceKey.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/ResponseType.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/ResponseType.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/entities/CoreDAOFactory.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/entities/CoreDAOFactory.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/entities/Module.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/entities/Module.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/entities/ModuleDao.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/entities/ModuleDao.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/entities/PostgresModuleDao.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/entities/PostgresModuleDao.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/modules/ErrorModule.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/modules/ErrorModule.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/modules/HomeModule.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/modules/HomeModule.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/modules/LanguageModule.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/modules/LanguageModule.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/modules/ModuleManagerModule.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/modules/ModuleManagerModule.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/modules/VersionsModule.java	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/modules/VersionsModule.java	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/resources/localization/error.properties	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/resources/localization/error.properties	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-# Copyright 2017 Mike Becker. All rights reserved.
+# Copyright 2018 Mike Becker. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/resources/localization/error_de.properties	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/resources/localization/error_de.properties	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-# Copyright 2017 Mike Becker. All rights reserved.
+# Copyright 2018 Mike Becker. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/resources/localization/home.properties	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/resources/localization/home.properties	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-# Copyright 2017 Mike Becker. All rights reserved.
+# Copyright 2018 Mike Becker. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/resources/localization/home_de.properties	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/resources/localization/home_de.properties	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-# Copyright 2017 Mike Becker. All rights reserved.
+# Copyright 2018 Mike Becker. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/resources/localization/language.properties	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/resources/localization/language.properties	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-# Copyright 2017 Mike Becker. All rights reserved.
+# Copyright 2018 Mike Becker. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/resources/localization/language_de.properties	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/resources/localization/language_de.properties	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-# Copyright 2017 Mike Becker. All rights reserved.
+# Copyright 2018 Mike Becker. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/resources/localization/modmgmt.properties	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/resources/localization/modmgmt.properties	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-# Copyright 2017 Mike Becker. All rights reserved.
+# Copyright 2018 Mike Becker. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/resources/localization/modmgmt_de.properties	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/resources/localization/modmgmt_de.properties	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-# Copyright 2017 Mike Becker. All rights reserved.
+# Copyright 2018 Mike Becker. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/resources/localization/versions.properties	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/resources/localization/versions.properties	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-# Copyright 2017 Mike Becker. All rights reserved.
+# Copyright 2018 Mike Becker. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/src/java/de/uapcore/lightpit/resources/localization/versions_de.properties	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/de/uapcore/lightpit/resources/localization/versions_de.properties	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-# Copyright 2017 Mike Becker. All rights reserved.
+# Copyright 2018 Mike Becker. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/src/java/log4j2.properties	Sat Apr 07 23:01:58 2018 +0200
+++ b/src/java/log4j2.properties	Sun Apr 08 14:40:57 2018 +0200
@@ -1,4 +1,4 @@
-# Copyright 2017 Mike Becker. All rights reserved.
+# Copyright 2018 Mike Becker. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/web/WEB-INF/dynamic_fragments/error.jsp	Sat Apr 07 23:01:58 2018 +0200
+++ b/web/WEB-INF/dynamic_fragments/error.jsp	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 <%-- 
 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
-Copyright 2017 Mike Becker. All rights reserved.
+Copyright 2018 Mike Becker. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
--- a/web/WEB-INF/dynamic_fragments/language.jsp	Sat Apr 07 23:01:58 2018 +0200
+++ b/web/WEB-INF/dynamic_fragments/language.jsp	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 <%-- 
 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
-Copyright 2017 Mike Becker. All rights reserved.
+Copyright 2018 Mike Becker. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
--- a/web/WEB-INF/dynamic_fragments/modules.jsp	Sat Apr 07 23:01:58 2018 +0200
+++ b/web/WEB-INF/dynamic_fragments/modules.jsp	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 <%-- 
 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
-Copyright 2017 Mike Becker. All rights reserved.
+Copyright 2018 Mike Becker. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
--- a/web/WEB-INF/jsp/html_full.jsp	Sat Apr 07 23:01:58 2018 +0200
+++ b/web/WEB-INF/jsp/html_full.jsp	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 <%-- 
 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
-Copyright 2017 Mike Becker. All rights reserved.
+Copyright 2018 Mike Becker. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
--- a/web/error.css	Sat Apr 07 23:01:58 2018 +0200
+++ b/web/error.css	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/web/index.jsp	Sat Apr 07 23:01:58 2018 +0200
+++ b/web/index.jsp	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 <%-- 
 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
-Copyright 2017 Mike Becker. All rights reserved.
+Copyright 2018 Mike Becker. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
--- a/web/language.css	Sat Apr 07 23:01:58 2018 +0200
+++ b/web/language.css	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:
--- a/web/lightpit.css	Sat Apr 07 23:01:58 2018 +0200
+++ b/web/lightpit.css	Sun Apr 08 14:40:57 2018 +0200
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  * 
- * Copyright 2017 Mike Becker. All rights reserved.
+ * Copyright 2018 Mike Becker. All rights reserved.
  * 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are met:

mercurial