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
     1.1 --- a/LICENSE	Sat Apr 07 23:01:58 2018 +0200
     1.2 +++ b/LICENSE	Sun Apr 08 14:40:57 2018 +0200
     1.3 @@ -1,4 +1,4 @@
     1.4 -Copyright 2017 Mike Becker. All rights reserved.
     1.5 +Copyright 2018 Mike Becker. All rights reserved.
     1.6  
     1.7  Redistribution and use in source and binary forms, with or without
     1.8  modification, are permitted provided that the following conditions are met:
     2.1 --- a/src/java/de/uapcore/lightpit/AbstractLightPITServlet.java	Sat Apr 07 23:01:58 2018 +0200
     2.2 +++ b/src/java/de/uapcore/lightpit/AbstractLightPITServlet.java	Sun Apr 08 14:40:57 2018 +0200
     2.3 @@ -1,7 +1,7 @@
     2.4  /*
     2.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     2.6   * 
     2.7 - * Copyright 2017 Mike Becker. All rights reserved.
     2.8 + * Copyright 2018 Mike Becker. All rights reserved.
     2.9   * 
    2.10   * Redistribution and use in source and binary forms, with or without
    2.11   * modification, are permitted provided that the following conditions are met:
     3.1 --- a/src/java/de/uapcore/lightpit/Constants.java	Sat Apr 07 23:01:58 2018 +0200
     3.2 +++ b/src/java/de/uapcore/lightpit/Constants.java	Sun Apr 08 14:40:57 2018 +0200
     3.3 @@ -1,7 +1,7 @@
     3.4  /*
     3.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3.6   * 
     3.7 - * Copyright 2017 Mike Becker. All rights reserved.
     3.8 + * Copyright 2018 Mike Becker. All rights reserved.
     3.9   * 
    3.10   * Redistribution and use in source and binary forms, with or without
    3.11   * modification, are permitted provided that the following conditions are met:
     4.1 --- a/src/java/de/uapcore/lightpit/DatabaseFacade.java	Sat Apr 07 23:01:58 2018 +0200
     4.2 +++ b/src/java/de/uapcore/lightpit/DatabaseFacade.java	Sun Apr 08 14:40:57 2018 +0200
     4.3 @@ -1,7 +1,7 @@
     4.4  /*
     4.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     4.6   * 
     4.7 - * Copyright 2017 Mike Becker. All rights reserved.
     4.8 + * Copyright 2018 Mike Becker. All rights reserved.
     4.9   * 
    4.10   * Redistribution and use in source and binary forms, with or without
    4.11   * modification, are permitted provided that the following conditions are met:
     5.1 --- a/src/java/de/uapcore/lightpit/Functions.java	Sat Apr 07 23:01:58 2018 +0200
     5.2 +++ b/src/java/de/uapcore/lightpit/Functions.java	Sun Apr 08 14:40:57 2018 +0200
     5.3 @@ -1,7 +1,7 @@
     5.4  /*
     5.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     5.6   * 
     5.7 - * Copyright 2017 Mike Becker. All rights reserved.
     5.8 + * Copyright 2018 Mike Becker. All rights reserved.
     5.9   * 
    5.10   * Redistribution and use in source and binary forms, with or without
    5.11   * modification, are permitted provided that the following conditions are met:
     6.1 --- a/src/java/de/uapcore/lightpit/HttpMethod.java	Sat Apr 07 23:01:58 2018 +0200
     6.2 +++ b/src/java/de/uapcore/lightpit/HttpMethod.java	Sun Apr 08 14:40:57 2018 +0200
     6.3 @@ -1,7 +1,7 @@
     6.4  /*
     6.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     6.6   * 
     6.7 - * Copyright 2017 Mike Becker. All rights reserved.
     6.8 + * Copyright 2018 Mike Becker. All rights reserved.
     6.9   * 
    6.10   * Redistribution and use in source and binary forms, with or without
    6.11   * modification, are permitted provided that the following conditions are met:
     7.1 --- a/src/java/de/uapcore/lightpit/LightPITModule.java	Sat Apr 07 23:01:58 2018 +0200
     7.2 +++ b/src/java/de/uapcore/lightpit/LightPITModule.java	Sun Apr 08 14:40:57 2018 +0200
     7.3 @@ -1,7 +1,7 @@
     7.4  /*
     7.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     7.6   * 
     7.7 - * Copyright 2017 Mike Becker. All rights reserved.
     7.8 + * Copyright 2018 Mike Becker. All rights reserved.
     7.9   * 
    7.10   * Redistribution and use in source and binary forms, with or without
    7.11   * modification, are permitted provided that the following conditions are met:
     8.1 --- a/src/java/de/uapcore/lightpit/Menu.java	Sat Apr 07 23:01:58 2018 +0200
     8.2 +++ b/src/java/de/uapcore/lightpit/Menu.java	Sun Apr 08 14:40:57 2018 +0200
     8.3 @@ -1,7 +1,7 @@
     8.4  /*
     8.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     8.6   * 
     8.7 - * Copyright 2017 Mike Becker. All rights reserved.
     8.8 + * Copyright 2018 Mike Becker. All rights reserved.
     8.9   * 
    8.10   * Redistribution and use in source and binary forms, with or without
    8.11   * modification, are permitted provided that the following conditions are met:
     9.1 --- a/src/java/de/uapcore/lightpit/MenuEntry.java	Sat Apr 07 23:01:58 2018 +0200
     9.2 +++ b/src/java/de/uapcore/lightpit/MenuEntry.java	Sun Apr 08 14:40:57 2018 +0200
     9.3 @@ -1,7 +1,7 @@
     9.4  /*
     9.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     9.6   * 
     9.7 - * Copyright 2017 Mike Becker. All rights reserved.
     9.8 + * Copyright 2018 Mike Becker. All rights reserved.
     9.9   * 
    9.10   * Redistribution and use in source and binary forms, with or without
    9.11   * modification, are permitted provided that the following conditions are met:
    10.1 --- a/src/java/de/uapcore/lightpit/ModuleManager.java	Sat Apr 07 23:01:58 2018 +0200
    10.2 +++ b/src/java/de/uapcore/lightpit/ModuleManager.java	Sun Apr 08 14:40:57 2018 +0200
    10.3 @@ -1,7 +1,7 @@
    10.4  /*
    10.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    10.6   * 
    10.7 - * Copyright 2017 Mike Becker. All rights reserved.
    10.8 + * Copyright 2018 Mike Becker. All rights reserved.
    10.9   * 
   10.10   * Redistribution and use in source and binary forms, with or without
   10.11   * modification, are permitted provided that the following conditions are met:
    11.1 --- a/src/java/de/uapcore/lightpit/RequestMapping.java	Sat Apr 07 23:01:58 2018 +0200
    11.2 +++ b/src/java/de/uapcore/lightpit/RequestMapping.java	Sun Apr 08 14:40:57 2018 +0200
    11.3 @@ -1,7 +1,7 @@
    11.4  /*
    11.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    11.6   * 
    11.7 - * Copyright 2017 Mike Becker. All rights reserved.
    11.8 + * Copyright 2018 Mike Becker. All rights reserved.
    11.9   * 
   11.10   * Redistribution and use in source and binary forms, with or without
   11.11   * modification, are permitted provided that the following conditions are met:
    12.1 --- a/src/java/de/uapcore/lightpit/ResourceKey.java	Sat Apr 07 23:01:58 2018 +0200
    12.2 +++ b/src/java/de/uapcore/lightpit/ResourceKey.java	Sun Apr 08 14:40:57 2018 +0200
    12.3 @@ -1,7 +1,7 @@
    12.4  /*
    12.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    12.6   * 
    12.7 - * Copyright 2017 Mike Becker. All rights reserved.
    12.8 + * Copyright 2018 Mike Becker. All rights reserved.
    12.9   * 
   12.10   * Redistribution and use in source and binary forms, with or without
   12.11   * modification, are permitted provided that the following conditions are met:
    13.1 --- a/src/java/de/uapcore/lightpit/ResponseType.java	Sat Apr 07 23:01:58 2018 +0200
    13.2 +++ b/src/java/de/uapcore/lightpit/ResponseType.java	Sun Apr 08 14:40:57 2018 +0200
    13.3 @@ -1,7 +1,7 @@
    13.4  /*
    13.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    13.6   * 
    13.7 - * Copyright 2017 Mike Becker. All rights reserved.
    13.8 + * Copyright 2018 Mike Becker. All rights reserved.
    13.9   * 
   13.10   * Redistribution and use in source and binary forms, with or without
   13.11   * modification, are permitted provided that the following conditions are met:
    14.1 --- a/src/java/de/uapcore/lightpit/entities/CoreDAOFactory.java	Sat Apr 07 23:01:58 2018 +0200
    14.2 +++ b/src/java/de/uapcore/lightpit/entities/CoreDAOFactory.java	Sun Apr 08 14:40:57 2018 +0200
    14.3 @@ -1,7 +1,7 @@
    14.4  /*
    14.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    14.6   * 
    14.7 - * Copyright 2017 Mike Becker. All rights reserved.
    14.8 + * Copyright 2018 Mike Becker. All rights reserved.
    14.9   * 
   14.10   * Redistribution and use in source and binary forms, with or without
   14.11   * modification, are permitted provided that the following conditions are met:
    15.1 --- a/src/java/de/uapcore/lightpit/entities/Module.java	Sat Apr 07 23:01:58 2018 +0200
    15.2 +++ b/src/java/de/uapcore/lightpit/entities/Module.java	Sun Apr 08 14:40:57 2018 +0200
    15.3 @@ -1,7 +1,7 @@
    15.4  /*
    15.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    15.6   * 
    15.7 - * Copyright 2017 Mike Becker. All rights reserved.
    15.8 + * Copyright 2018 Mike Becker. All rights reserved.
    15.9   * 
   15.10   * Redistribution and use in source and binary forms, with or without
   15.11   * modification, are permitted provided that the following conditions are met:
    16.1 --- a/src/java/de/uapcore/lightpit/entities/ModuleDao.java	Sat Apr 07 23:01:58 2018 +0200
    16.2 +++ b/src/java/de/uapcore/lightpit/entities/ModuleDao.java	Sun Apr 08 14:40:57 2018 +0200
    16.3 @@ -1,7 +1,7 @@
    16.4  /*
    16.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    16.6   * 
    16.7 - * Copyright 2017 Mike Becker. All rights reserved.
    16.8 + * Copyright 2018 Mike Becker. All rights reserved.
    16.9   * 
   16.10   * Redistribution and use in source and binary forms, with or without
   16.11   * modification, are permitted provided that the following conditions are met:
    17.1 --- a/src/java/de/uapcore/lightpit/entities/PostgresModuleDao.java	Sat Apr 07 23:01:58 2018 +0200
    17.2 +++ b/src/java/de/uapcore/lightpit/entities/PostgresModuleDao.java	Sun Apr 08 14:40:57 2018 +0200
    17.3 @@ -1,7 +1,7 @@
    17.4  /*
    17.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    17.6   * 
    17.7 - * Copyright 2017 Mike Becker. All rights reserved.
    17.8 + * Copyright 2018 Mike Becker. All rights reserved.
    17.9   * 
   17.10   * Redistribution and use in source and binary forms, with or without
   17.11   * modification, are permitted provided that the following conditions are met:
    18.1 --- a/src/java/de/uapcore/lightpit/modules/ErrorModule.java	Sat Apr 07 23:01:58 2018 +0200
    18.2 +++ b/src/java/de/uapcore/lightpit/modules/ErrorModule.java	Sun Apr 08 14:40:57 2018 +0200
    18.3 @@ -1,7 +1,7 @@
    18.4  /*
    18.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    18.6   * 
    18.7 - * Copyright 2017 Mike Becker. All rights reserved.
    18.8 + * Copyright 2018 Mike Becker. All rights reserved.
    18.9   * 
   18.10   * Redistribution and use in source and binary forms, with or without
   18.11   * modification, are permitted provided that the following conditions are met:
    19.1 --- a/src/java/de/uapcore/lightpit/modules/HomeModule.java	Sat Apr 07 23:01:58 2018 +0200
    19.2 +++ b/src/java/de/uapcore/lightpit/modules/HomeModule.java	Sun Apr 08 14:40:57 2018 +0200
    19.3 @@ -1,7 +1,7 @@
    19.4  /*
    19.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    19.6   * 
    19.7 - * Copyright 2017 Mike Becker. All rights reserved.
    19.8 + * Copyright 2018 Mike Becker. All rights reserved.
    19.9   * 
   19.10   * Redistribution and use in source and binary forms, with or without
   19.11   * modification, are permitted provided that the following conditions are met:
    20.1 --- a/src/java/de/uapcore/lightpit/modules/LanguageModule.java	Sat Apr 07 23:01:58 2018 +0200
    20.2 +++ b/src/java/de/uapcore/lightpit/modules/LanguageModule.java	Sun Apr 08 14:40:57 2018 +0200
    20.3 @@ -1,7 +1,7 @@
    20.4  /*
    20.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    20.6   * 
    20.7 - * Copyright 2017 Mike Becker. All rights reserved.
    20.8 + * Copyright 2018 Mike Becker. All rights reserved.
    20.9   * 
   20.10   * Redistribution and use in source and binary forms, with or without
   20.11   * modification, are permitted provided that the following conditions are met:
    21.1 --- a/src/java/de/uapcore/lightpit/modules/ModuleManagerModule.java	Sat Apr 07 23:01:58 2018 +0200
    21.2 +++ b/src/java/de/uapcore/lightpit/modules/ModuleManagerModule.java	Sun Apr 08 14:40:57 2018 +0200
    21.3 @@ -1,7 +1,7 @@
    21.4  /*
    21.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    21.6   * 
    21.7 - * Copyright 2017 Mike Becker. All rights reserved.
    21.8 + * Copyright 2018 Mike Becker. All rights reserved.
    21.9   * 
   21.10   * Redistribution and use in source and binary forms, with or without
   21.11   * modification, are permitted provided that the following conditions are met:
    22.1 --- a/src/java/de/uapcore/lightpit/modules/VersionsModule.java	Sat Apr 07 23:01:58 2018 +0200
    22.2 +++ b/src/java/de/uapcore/lightpit/modules/VersionsModule.java	Sun Apr 08 14:40:57 2018 +0200
    22.3 @@ -1,7 +1,7 @@
    22.4  /*
    22.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    22.6   * 
    22.7 - * Copyright 2017 Mike Becker. All rights reserved.
    22.8 + * Copyright 2018 Mike Becker. All rights reserved.
    22.9   * 
   22.10   * Redistribution and use in source and binary forms, with or without
   22.11   * modification, are permitted provided that the following conditions are met:
    23.1 --- a/src/java/de/uapcore/lightpit/resources/localization/error.properties	Sat Apr 07 23:01:58 2018 +0200
    23.2 +++ b/src/java/de/uapcore/lightpit/resources/localization/error.properties	Sun Apr 08 14:40:57 2018 +0200
    23.3 @@ -1,4 +1,4 @@
    23.4 -# Copyright 2017 Mike Becker. All rights reserved.
    23.5 +# Copyright 2018 Mike Becker. All rights reserved.
    23.6  #
    23.7  # Redistribution and use in source and binary forms, with or without
    23.8  # modification, are permitted provided that the following conditions are met:
    24.1 --- a/src/java/de/uapcore/lightpit/resources/localization/error_de.properties	Sat Apr 07 23:01:58 2018 +0200
    24.2 +++ b/src/java/de/uapcore/lightpit/resources/localization/error_de.properties	Sun Apr 08 14:40:57 2018 +0200
    24.3 @@ -1,4 +1,4 @@
    24.4 -# Copyright 2017 Mike Becker. All rights reserved.
    24.5 +# Copyright 2018 Mike Becker. All rights reserved.
    24.6  #
    24.7  # Redistribution and use in source and binary forms, with or without
    24.8  # modification, are permitted provided that the following conditions are met:
    25.1 --- a/src/java/de/uapcore/lightpit/resources/localization/home.properties	Sat Apr 07 23:01:58 2018 +0200
    25.2 +++ b/src/java/de/uapcore/lightpit/resources/localization/home.properties	Sun Apr 08 14:40:57 2018 +0200
    25.3 @@ -1,4 +1,4 @@
    25.4 -# Copyright 2017 Mike Becker. All rights reserved.
    25.5 +# Copyright 2018 Mike Becker. All rights reserved.
    25.6  #
    25.7  # Redistribution and use in source and binary forms, with or without
    25.8  # modification, are permitted provided that the following conditions are met:
    26.1 --- a/src/java/de/uapcore/lightpit/resources/localization/home_de.properties	Sat Apr 07 23:01:58 2018 +0200
    26.2 +++ b/src/java/de/uapcore/lightpit/resources/localization/home_de.properties	Sun Apr 08 14:40:57 2018 +0200
    26.3 @@ -1,4 +1,4 @@
    26.4 -# Copyright 2017 Mike Becker. All rights reserved.
    26.5 +# Copyright 2018 Mike Becker. All rights reserved.
    26.6  #
    26.7  # Redistribution and use in source and binary forms, with or without
    26.8  # modification, are permitted provided that the following conditions are met:
    27.1 --- a/src/java/de/uapcore/lightpit/resources/localization/language.properties	Sat Apr 07 23:01:58 2018 +0200
    27.2 +++ b/src/java/de/uapcore/lightpit/resources/localization/language.properties	Sun Apr 08 14:40:57 2018 +0200
    27.3 @@ -1,4 +1,4 @@
    27.4 -# Copyright 2017 Mike Becker. All rights reserved.
    27.5 +# Copyright 2018 Mike Becker. All rights reserved.
    27.6  #
    27.7  # Redistribution and use in source and binary forms, with or without
    27.8  # modification, are permitted provided that the following conditions are met:
    28.1 --- a/src/java/de/uapcore/lightpit/resources/localization/language_de.properties	Sat Apr 07 23:01:58 2018 +0200
    28.2 +++ b/src/java/de/uapcore/lightpit/resources/localization/language_de.properties	Sun Apr 08 14:40:57 2018 +0200
    28.3 @@ -1,4 +1,4 @@
    28.4 -# Copyright 2017 Mike Becker. All rights reserved.
    28.5 +# Copyright 2018 Mike Becker. All rights reserved.
    28.6  #
    28.7  # Redistribution and use in source and binary forms, with or without
    28.8  # modification, are permitted provided that the following conditions are met:
    29.1 --- a/src/java/de/uapcore/lightpit/resources/localization/modmgmt.properties	Sat Apr 07 23:01:58 2018 +0200
    29.2 +++ b/src/java/de/uapcore/lightpit/resources/localization/modmgmt.properties	Sun Apr 08 14:40:57 2018 +0200
    29.3 @@ -1,4 +1,4 @@
    29.4 -# Copyright 2017 Mike Becker. All rights reserved.
    29.5 +# Copyright 2018 Mike Becker. All rights reserved.
    29.6  #
    29.7  # Redistribution and use in source and binary forms, with or without
    29.8  # modification, are permitted provided that the following conditions are met:
    30.1 --- a/src/java/de/uapcore/lightpit/resources/localization/modmgmt_de.properties	Sat Apr 07 23:01:58 2018 +0200
    30.2 +++ b/src/java/de/uapcore/lightpit/resources/localization/modmgmt_de.properties	Sun Apr 08 14:40:57 2018 +0200
    30.3 @@ -1,4 +1,4 @@
    30.4 -# Copyright 2017 Mike Becker. All rights reserved.
    30.5 +# Copyright 2018 Mike Becker. All rights reserved.
    30.6  #
    30.7  # Redistribution and use in source and binary forms, with or without
    30.8  # modification, are permitted provided that the following conditions are met:
    31.1 --- a/src/java/de/uapcore/lightpit/resources/localization/versions.properties	Sat Apr 07 23:01:58 2018 +0200
    31.2 +++ b/src/java/de/uapcore/lightpit/resources/localization/versions.properties	Sun Apr 08 14:40:57 2018 +0200
    31.3 @@ -1,4 +1,4 @@
    31.4 -# Copyright 2017 Mike Becker. All rights reserved.
    31.5 +# Copyright 2018 Mike Becker. All rights reserved.
    31.6  #
    31.7  # Redistribution and use in source and binary forms, with or without
    31.8  # modification, are permitted provided that the following conditions are met:
    32.1 --- a/src/java/de/uapcore/lightpit/resources/localization/versions_de.properties	Sat Apr 07 23:01:58 2018 +0200
    32.2 +++ b/src/java/de/uapcore/lightpit/resources/localization/versions_de.properties	Sun Apr 08 14:40:57 2018 +0200
    32.3 @@ -1,4 +1,4 @@
    32.4 -# Copyright 2017 Mike Becker. All rights reserved.
    32.5 +# Copyright 2018 Mike Becker. All rights reserved.
    32.6  #
    32.7  # Redistribution and use in source and binary forms, with or without
    32.8  # modification, are permitted provided that the following conditions are met:
    33.1 --- a/src/java/log4j2.properties	Sat Apr 07 23:01:58 2018 +0200
    33.2 +++ b/src/java/log4j2.properties	Sun Apr 08 14:40:57 2018 +0200
    33.3 @@ -1,4 +1,4 @@
    33.4 -# Copyright 2017 Mike Becker. All rights reserved.
    33.5 +# Copyright 2018 Mike Becker. All rights reserved.
    33.6  #
    33.7  # Redistribution and use in source and binary forms, with or without
    33.8  # modification, are permitted provided that the following conditions are met:
    34.1 --- a/web/WEB-INF/dynamic_fragments/error.jsp	Sat Apr 07 23:01:58 2018 +0200
    34.2 +++ b/web/WEB-INF/dynamic_fragments/error.jsp	Sun Apr 08 14:40:57 2018 +0200
    34.3 @@ -1,7 +1,7 @@
    34.4  <%-- 
    34.5  DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    34.6  
    34.7 -Copyright 2017 Mike Becker. All rights reserved.
    34.8 +Copyright 2018 Mike Becker. All rights reserved.
    34.9  
   34.10  Redistribution and use in source and binary forms, with or without
   34.11  modification, are permitted provided that the following conditions are met:
    35.1 --- a/web/WEB-INF/dynamic_fragments/language.jsp	Sat Apr 07 23:01:58 2018 +0200
    35.2 +++ b/web/WEB-INF/dynamic_fragments/language.jsp	Sun Apr 08 14:40:57 2018 +0200
    35.3 @@ -1,7 +1,7 @@
    35.4  <%-- 
    35.5  DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    35.6  
    35.7 -Copyright 2017 Mike Becker. All rights reserved.
    35.8 +Copyright 2018 Mike Becker. All rights reserved.
    35.9  
   35.10  Redistribution and use in source and binary forms, with or without
   35.11  modification, are permitted provided that the following conditions are met:
    36.1 --- a/web/WEB-INF/dynamic_fragments/modules.jsp	Sat Apr 07 23:01:58 2018 +0200
    36.2 +++ b/web/WEB-INF/dynamic_fragments/modules.jsp	Sun Apr 08 14:40:57 2018 +0200
    36.3 @@ -1,7 +1,7 @@
    36.4  <%-- 
    36.5  DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    36.6  
    36.7 -Copyright 2017 Mike Becker. All rights reserved.
    36.8 +Copyright 2018 Mike Becker. All rights reserved.
    36.9  
   36.10  Redistribution and use in source and binary forms, with or without
   36.11  modification, are permitted provided that the following conditions are met:
    37.1 --- a/web/WEB-INF/jsp/html_full.jsp	Sat Apr 07 23:01:58 2018 +0200
    37.2 +++ b/web/WEB-INF/jsp/html_full.jsp	Sun Apr 08 14:40:57 2018 +0200
    37.3 @@ -1,7 +1,7 @@
    37.4  <%-- 
    37.5  DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    37.6  
    37.7 -Copyright 2017 Mike Becker. All rights reserved.
    37.8 +Copyright 2018 Mike Becker. All rights reserved.
    37.9  
   37.10  Redistribution and use in source and binary forms, with or without
   37.11  modification, are permitted provided that the following conditions are met:
    38.1 --- a/web/error.css	Sat Apr 07 23:01:58 2018 +0200
    38.2 +++ b/web/error.css	Sun Apr 08 14:40:57 2018 +0200
    38.3 @@ -1,7 +1,7 @@
    38.4  /*
    38.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    38.6   * 
    38.7 - * Copyright 2017 Mike Becker. All rights reserved.
    38.8 + * Copyright 2018 Mike Becker. All rights reserved.
    38.9   * 
   38.10   * Redistribution and use in source and binary forms, with or without
   38.11   * modification, are permitted provided that the following conditions are met:
    39.1 --- a/web/index.jsp	Sat Apr 07 23:01:58 2018 +0200
    39.2 +++ b/web/index.jsp	Sun Apr 08 14:40:57 2018 +0200
    39.3 @@ -1,7 +1,7 @@
    39.4  <%-- 
    39.5  DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    39.6  
    39.7 -Copyright 2017 Mike Becker. All rights reserved.
    39.8 +Copyright 2018 Mike Becker. All rights reserved.
    39.9  
   39.10  Redistribution and use in source and binary forms, with or without
   39.11  modification, are permitted provided that the following conditions are met:
    40.1 --- a/web/language.css	Sat Apr 07 23:01:58 2018 +0200
    40.2 +++ b/web/language.css	Sun Apr 08 14:40:57 2018 +0200
    40.3 @@ -1,7 +1,7 @@
    40.4  /*
    40.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    40.6   * 
    40.7 - * Copyright 2017 Mike Becker. All rights reserved.
    40.8 + * Copyright 2018 Mike Becker. All rights reserved.
    40.9   * 
   40.10   * Redistribution and use in source and binary forms, with or without
   40.11   * modification, are permitted provided that the following conditions are met:
    41.1 --- a/web/lightpit.css	Sat Apr 07 23:01:58 2018 +0200
    41.2 +++ b/web/lightpit.css	Sun Apr 08 14:40:57 2018 +0200
    41.3 @@ -1,7 +1,7 @@
    41.4  /*
    41.5   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    41.6   * 
    41.7 - * Copyright 2017 Mike Becker. All rights reserved.
    41.8 + * Copyright 2018 Mike Becker. All rights reserved.
    41.9   * 
   41.10   * Redistribution and use in source and binary forms, with or without
   41.11   * modification, are permitted provided that the following conditions are met:

mercurial