From cf69e7d403f470f60eaf41033bb6f72ba1ce3853 Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Tue, 15 Jan 2019 21:36:35 +0100 Subject: *: update copyright --- LICENSE | 2 +- src/blogc-git-receiver/main.c | 2 +- src/blogc-git-receiver/post-receive.c | 2 +- src/blogc-git-receiver/post-receive.h | 2 +- src/blogc-git-receiver/pre-receive-parser.c | 2 +- src/blogc-git-receiver/pre-receive-parser.h | 2 +- src/blogc-git-receiver/pre-receive.c | 2 +- src/blogc-git-receiver/pre-receive.h | 2 +- src/blogc-git-receiver/settings.c | 2 +- src/blogc-git-receiver/settings.h | 2 +- src/blogc-git-receiver/shell-command-parser.c | 2 +- src/blogc-git-receiver/shell-command-parser.h | 2 +- src/blogc-git-receiver/shell.c | 2 +- src/blogc-git-receiver/shell.h | 2 +- src/blogc-make/atom.c | 2 +- src/blogc-make/atom.h | 2 +- src/blogc-make/ctx.c | 2 +- src/blogc-make/ctx.h | 2 +- src/blogc-make/exec-native.c | 2 +- src/blogc-make/exec-native.h | 2 +- src/blogc-make/exec.c | 2 +- src/blogc-make/exec.h | 2 +- src/blogc-make/httpd.c | 2 +- src/blogc-make/httpd.h | 2 +- src/blogc-make/main.c | 2 +- src/blogc-make/reloader.c | 2 +- src/blogc-make/reloader.h | 2 +- src/blogc-make/rules.c | 2 +- src/blogc-make/rules.h | 2 +- src/blogc-make/settings.c | 2 +- src/blogc-make/settings.h | 2 +- src/blogc-make/utils.c | 2 +- src/blogc-make/utils.h | 2 +- src/blogc-runserver/httpd-utils.c | 2 +- src/blogc-runserver/httpd-utils.h | 2 +- src/blogc-runserver/httpd.c | 2 +- src/blogc-runserver/httpd.h | 2 +- src/blogc-runserver/main.c | 2 +- src/blogc-runserver/mime.c | 2 +- src/blogc-runserver/mime.h | 2 +- src/blogc/content-parser.c | 2 +- src/blogc/content-parser.h | 2 +- src/blogc/datetime-parser.c | 2 +- src/blogc/datetime-parser.h | 2 +- src/blogc/debug.c | 2 +- src/blogc/debug.h | 2 +- src/blogc/loader.c | 2 +- src/blogc/loader.h | 2 +- src/blogc/main.c | 2 +- src/blogc/renderer.c | 2 +- src/blogc/renderer.h | 2 +- src/blogc/source-parser.c | 2 +- src/blogc/source-parser.h | 2 +- src/blogc/template-parser.c | 2 +- src/blogc/template-parser.h | 2 +- src/common/compat.h | 2 +- src/common/config-parser.c | 2 +- src/common/config-parser.h | 2 +- src/common/error.c | 2 +- src/common/error.h | 2 +- src/common/file.c | 2 +- src/common/file.h | 2 +- src/common/stdin.c | 2 +- src/common/stdin.h | 2 +- src/common/utf8.c | 2 +- src/common/utf8.h | 2 +- src/common/utils.c | 2 +- src/common/utils.h | 2 +- tests/blogc-git-receiver/check_pre_receive_parser.c | 2 +- tests/blogc-git-receiver/check_settings.c | 2 +- tests/blogc-git-receiver/check_shell_command_parser.c | 2 +- tests/blogc-make/check_atom.c | 2 +- tests/blogc-make/check_exec.c | 2 +- tests/blogc-make/check_rules.c | 2 +- tests/blogc-make/check_settings.c | 2 +- tests/blogc-make/check_utils.c | 2 +- tests/blogc-runserver/check_httpd_utils.c | 2 +- tests/blogc-runserver/check_mime.c | 2 +- tests/blogc/check_content_parser.c | 2 +- tests/blogc/check_datetime_parser.c | 2 +- tests/blogc/check_loader.c | 2 +- tests/blogc/check_renderer.c | 2 +- tests/blogc/check_source_parser.c | 2 +- tests/blogc/check_template_parser.c | 2 +- tests/common/check_config_parser.c | 2 +- tests/common/check_error.c | 2 +- tests/common/check_stdin.c | 2 +- tests/common/check_utf8.c | 2 +- tests/common/check_utils.c | 2 +- 89 files changed, 89 insertions(+), 89 deletions(-) diff --git a/LICENSE b/LICENSE index d75c6f0..3c3f4d6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2014-2018, Rafael G. Martins +Copyright (c) 2014-2019, Rafael G. Martins All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/blogc-git-receiver/main.c b/src/blogc-git-receiver/main.c index cc5b282..43a9993 100644 --- a/src/blogc-git-receiver/main.c +++ b/src/blogc-git-receiver/main.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/post-receive.c b/src/blogc-git-receiver/post-receive.c index 3c7cb00..b5e1f81 100644 --- a/src/blogc-git-receiver/post-receive.c +++ b/src/blogc-git-receiver/post-receive.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/post-receive.h b/src/blogc-git-receiver/post-receive.h index eadd0c7..fc56dc3 100644 --- a/src/blogc-git-receiver/post-receive.h +++ b/src/blogc-git-receiver/post-receive.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/pre-receive-parser.c b/src/blogc-git-receiver/pre-receive-parser.c index 84ca93e..fb4c4d5 100644 --- a/src/blogc-git-receiver/pre-receive-parser.c +++ b/src/blogc-git-receiver/pre-receive-parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/pre-receive-parser.h b/src/blogc-git-receiver/pre-receive-parser.h index 1e133d6..7a011a7 100644 --- a/src/blogc-git-receiver/pre-receive-parser.h +++ b/src/blogc-git-receiver/pre-receive-parser.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/pre-receive.c b/src/blogc-git-receiver/pre-receive.c index 12be165..9274857 100644 --- a/src/blogc-git-receiver/pre-receive.c +++ b/src/blogc-git-receiver/pre-receive.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/pre-receive.h b/src/blogc-git-receiver/pre-receive.h index 99e3689..ab19c47 100644 --- a/src/blogc-git-receiver/pre-receive.h +++ b/src/blogc-git-receiver/pre-receive.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/settings.c b/src/blogc-git-receiver/settings.c index b9bc3fb..db29b18 100644 --- a/src/blogc-git-receiver/settings.c +++ b/src/blogc-git-receiver/settings.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/settings.h b/src/blogc-git-receiver/settings.h index c488a2d..04c1a2b 100644 --- a/src/blogc-git-receiver/settings.h +++ b/src/blogc-git-receiver/settings.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/shell-command-parser.c b/src/blogc-git-receiver/shell-command-parser.c index b116726..0091e0b 100644 --- a/src/blogc-git-receiver/shell-command-parser.c +++ b/src/blogc-git-receiver/shell-command-parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/shell-command-parser.h b/src/blogc-git-receiver/shell-command-parser.h index 333a5ad..818d098 100644 --- a/src/blogc-git-receiver/shell-command-parser.h +++ b/src/blogc-git-receiver/shell-command-parser.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/shell.c b/src/blogc-git-receiver/shell.c index 75bc397..3f6a078 100644 --- a/src/blogc-git-receiver/shell.c +++ b/src/blogc-git-receiver/shell.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-git-receiver/shell.h b/src/blogc-git-receiver/shell.h index 9e27abb..b59ff40 100644 --- a/src/blogc-git-receiver/shell.h +++ b/src/blogc-git-receiver/shell.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/atom.c b/src/blogc-make/atom.c index abab33e..3018820 100644 --- a/src/blogc-make/atom.c +++ b/src/blogc-make/atom.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/atom.h b/src/blogc-make/atom.h index 59b88fa..29a6dcb 100644 --- a/src/blogc-make/atom.h +++ b/src/blogc-make/atom.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/ctx.c b/src/blogc-make/ctx.c index ac4e644..334a11d 100644 --- a/src/blogc-make/ctx.c +++ b/src/blogc-make/ctx.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/ctx.h b/src/blogc-make/ctx.h index a52dcfb..80aa6ea 100644 --- a/src/blogc-make/ctx.h +++ b/src/blogc-make/ctx.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/exec-native.c b/src/blogc-make/exec-native.c index 4a98a9a..cc734f3 100644 --- a/src/blogc-make/exec-native.c +++ b/src/blogc-make/exec-native.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/exec-native.h b/src/blogc-make/exec-native.h index cf99a66..56a1da1 100644 --- a/src/blogc-make/exec-native.h +++ b/src/blogc-make/exec-native.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/exec.c b/src/blogc-make/exec.c index 39c3d75..bc2ecbc 100644 --- a/src/blogc-make/exec.c +++ b/src/blogc-make/exec.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/exec.h b/src/blogc-make/exec.h index 751d40a..1d58c0d 100644 --- a/src/blogc-make/exec.h +++ b/src/blogc-make/exec.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/httpd.c b/src/blogc-make/httpd.c index 3ab7806..8795a86 100644 --- a/src/blogc-make/httpd.c +++ b/src/blogc-make/httpd.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/httpd.h b/src/blogc-make/httpd.h index 2fe292e..b0fa87d 100644 --- a/src/blogc-make/httpd.h +++ b/src/blogc-make/httpd.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/main.c b/src/blogc-make/main.c index cf3b11c..87b41a4 100644 --- a/src/blogc-make/main.c +++ b/src/blogc-make/main.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/reloader.c b/src/blogc-make/reloader.c index 8d930a1..d08d49c 100644 --- a/src/blogc-make/reloader.c +++ b/src/blogc-make/reloader.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/reloader.h b/src/blogc-make/reloader.h index f821019..f3fddf4 100644 --- a/src/blogc-make/reloader.h +++ b/src/blogc-make/reloader.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/rules.c b/src/blogc-make/rules.c index 562cabe..b29aab2 100644 --- a/src/blogc-make/rules.c +++ b/src/blogc-make/rules.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/rules.h b/src/blogc-make/rules.h index 475f131..5fcc1eb 100644 --- a/src/blogc-make/rules.h +++ b/src/blogc-make/rules.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/settings.c b/src/blogc-make/settings.c index fad6567..deed018 100644 --- a/src/blogc-make/settings.c +++ b/src/blogc-make/settings.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/settings.h b/src/blogc-make/settings.h index 116aca5..69fdbb6 100644 --- a/src/blogc-make/settings.h +++ b/src/blogc-make/settings.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/utils.c b/src/blogc-make/utils.c index 392c790..0c984f6 100644 --- a/src/blogc-make/utils.c +++ b/src/blogc-make/utils.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-make/utils.h b/src/blogc-make/utils.h index 9409ea1..a3dfea0 100644 --- a/src/blogc-make/utils.h +++ b/src/blogc-make/utils.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-runserver/httpd-utils.c b/src/blogc-runserver/httpd-utils.c index 5959590..9d374ae 100644 --- a/src/blogc-runserver/httpd-utils.c +++ b/src/blogc-runserver/httpd-utils.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-runserver/httpd-utils.h b/src/blogc-runserver/httpd-utils.h index 4982bd8..06ad6e1 100644 --- a/src/blogc-runserver/httpd-utils.h +++ b/src/blogc-runserver/httpd-utils.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-runserver/httpd.c b/src/blogc-runserver/httpd.c index 6cbd198..79c5ec5 100644 --- a/src/blogc-runserver/httpd.c +++ b/src/blogc-runserver/httpd.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-runserver/httpd.h b/src/blogc-runserver/httpd.h index 60dee41..b71a8d9 100644 --- a/src/blogc-runserver/httpd.h +++ b/src/blogc-runserver/httpd.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-runserver/main.c b/src/blogc-runserver/main.c index df0305e..64383a5 100644 --- a/src/blogc-runserver/main.c +++ b/src/blogc-runserver/main.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-runserver/mime.c b/src/blogc-runserver/mime.c index 79ca5b2..636c496 100644 --- a/src/blogc-runserver/mime.c +++ b/src/blogc-runserver/mime.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc-runserver/mime.h b/src/blogc-runserver/mime.h index bb515e8..b9fb013 100644 --- a/src/blogc-runserver/mime.h +++ b/src/blogc-runserver/mime.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/content-parser.c b/src/blogc/content-parser.c index 07c0469..d295a2c 100644 --- a/src/blogc/content-parser.c +++ b/src/blogc/content-parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/content-parser.h b/src/blogc/content-parser.h index 277bcaf..ea5d29d 100644 --- a/src/blogc/content-parser.h +++ b/src/blogc/content-parser.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/datetime-parser.c b/src/blogc/datetime-parser.c index 6ac8fd0..ddaf6ef 100644 --- a/src/blogc/datetime-parser.c +++ b/src/blogc/datetime-parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/datetime-parser.h b/src/blogc/datetime-parser.h index 9660959..8617ad0 100644 --- a/src/blogc/datetime-parser.h +++ b/src/blogc/datetime-parser.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/debug.c b/src/blogc/debug.c index f0ba24b..11e7973 100644 --- a/src/blogc/debug.c +++ b/src/blogc/debug.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/debug.h b/src/blogc/debug.h index 9da731d..6138a91 100644 --- a/src/blogc/debug.h +++ b/src/blogc/debug.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/loader.c b/src/blogc/loader.c index 2bb340d..ea427de 100644 --- a/src/blogc/loader.c +++ b/src/blogc/loader.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/loader.h b/src/blogc/loader.h index a02e7e0..66da7d0 100644 --- a/src/blogc/loader.h +++ b/src/blogc/loader.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/main.c b/src/blogc/main.c index 495e67a..0e6bcc9 100644 --- a/src/blogc/main.c +++ b/src/blogc/main.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/renderer.c b/src/blogc/renderer.c index e34007a..6a591ec 100644 --- a/src/blogc/renderer.c +++ b/src/blogc/renderer.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/renderer.h b/src/blogc/renderer.h index b34687d..0b2b058 100644 --- a/src/blogc/renderer.h +++ b/src/blogc/renderer.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/source-parser.c b/src/blogc/source-parser.c index 2120a1e..18cf95a 100644 --- a/src/blogc/source-parser.c +++ b/src/blogc/source-parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/source-parser.h b/src/blogc/source-parser.h index fb8c9c0..8672fb0 100644 --- a/src/blogc/source-parser.h +++ b/src/blogc/source-parser.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/template-parser.c b/src/blogc/template-parser.c index bb72a7b..c3e9a5c 100644 --- a/src/blogc/template-parser.c +++ b/src/blogc/template-parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/blogc/template-parser.h b/src/blogc/template-parser.h index c2910a0..6183016 100644 --- a/src/blogc/template-parser.h +++ b/src/blogc/template-parser.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/compat.h b/src/common/compat.h index dde186b..1e743db 100644 --- a/src/common/compat.h +++ b/src/common/compat.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/config-parser.c b/src/common/config-parser.c index 1dc7ca6..bc4831b 100644 --- a/src/common/config-parser.c +++ b/src/common/config-parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/config-parser.h b/src/common/config-parser.h index 14ad403..0b75ff8 100644 --- a/src/common/config-parser.h +++ b/src/common/config-parser.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/error.c b/src/common/error.c index 4538c01..0b41ba7 100644 --- a/src/common/error.c +++ b/src/common/error.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/error.h b/src/common/error.h index a567c6d..d8dd859 100644 --- a/src/common/error.h +++ b/src/common/error.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/file.c b/src/common/file.c index a2f7340..d64a0d8 100644 --- a/src/common/file.c +++ b/src/common/file.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/file.h b/src/common/file.h index 73793ea..d002bf7 100644 --- a/src/common/file.h +++ b/src/common/file.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/stdin.c b/src/common/stdin.c index 5b01e0e..a460247 100644 --- a/src/common/stdin.c +++ b/src/common/stdin.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/stdin.h b/src/common/stdin.h index e0eabfa..e6bd7a0 100644 --- a/src/common/stdin.h +++ b/src/common/stdin.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/utf8.c b/src/common/utf8.c index fe013e4..f029e5b 100644 --- a/src/common/utf8.c +++ b/src/common/utf8.c @@ -1,7 +1,7 @@ /* * blogc: A blog compiler. * Copyright (c) 2008-2010 Bjoern Hoehrmann - * Copyright (c) 2014-2018 Rafael G. Martins + * Copyright (c) 2014-2019 Rafael G. Martins * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/common/utf8.h b/src/common/utf8.h index e855e31..bf0f1ae 100644 --- a/src/common/utf8.h +++ b/src/common/utf8.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/utils.c b/src/common/utils.c index 084bfb6..530ab6c 100644 --- a/src/common/utils.c +++ b/src/common/utils.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/src/common/utils.h b/src/common/utils.h index 9f7192d..bc3a157 100644 --- a/src/common/utils.h +++ b/src/common/utils.h @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc-git-receiver/check_pre_receive_parser.c b/tests/blogc-git-receiver/check_pre_receive_parser.c index 45c8c7c..68175f2 100644 --- a/tests/blogc-git-receiver/check_pre_receive_parser.c +++ b/tests/blogc-git-receiver/check_pre_receive_parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc-git-receiver/check_settings.c b/tests/blogc-git-receiver/check_settings.c index 4edc147..cb12037 100644 --- a/tests/blogc-git-receiver/check_settings.c +++ b/tests/blogc-git-receiver/check_settings.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc-git-receiver/check_shell_command_parser.c b/tests/blogc-git-receiver/check_shell_command_parser.c index 5ec4c9b..97e7b6e 100644 --- a/tests/blogc-git-receiver/check_shell_command_parser.c +++ b/tests/blogc-git-receiver/check_shell_command_parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc-make/check_atom.c b/tests/blogc-make/check_atom.c index 694d3e9..551201d 100644 --- a/tests/blogc-make/check_atom.c +++ b/tests/blogc-make/check_atom.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc-make/check_exec.c b/tests/blogc-make/check_exec.c index b5547dd..32c7fae 100644 --- a/tests/blogc-make/check_exec.c +++ b/tests/blogc-make/check_exec.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc-make/check_rules.c b/tests/blogc-make/check_rules.c index 7fdc8bb..ed2e46a 100644 --- a/tests/blogc-make/check_rules.c +++ b/tests/blogc-make/check_rules.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc-make/check_settings.c b/tests/blogc-make/check_settings.c index b86283b..7cebedc 100644 --- a/tests/blogc-make/check_settings.c +++ b/tests/blogc-make/check_settings.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc-make/check_utils.c b/tests/blogc-make/check_utils.c index 68320eb..410cf3a 100644 --- a/tests/blogc-make/check_utils.c +++ b/tests/blogc-make/check_utils.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc-runserver/check_httpd_utils.c b/tests/blogc-runserver/check_httpd_utils.c index 776db2d..3e21e63 100644 --- a/tests/blogc-runserver/check_httpd_utils.c +++ b/tests/blogc-runserver/check_httpd_utils.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc-runserver/check_mime.c b/tests/blogc-runserver/check_mime.c index 2adf2d0..c081b8a 100644 --- a/tests/blogc-runserver/check_mime.c +++ b/tests/blogc-runserver/check_mime.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc/check_content_parser.c b/tests/blogc/check_content_parser.c index 5ad5e30..cd8ba57 100644 --- a/tests/blogc/check_content_parser.c +++ b/tests/blogc/check_content_parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc/check_datetime_parser.c b/tests/blogc/check_datetime_parser.c index f7b15a1..44c1af8 100644 --- a/tests/blogc/check_datetime_parser.c +++ b/tests/blogc/check_datetime_parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc/check_loader.c b/tests/blogc/check_loader.c index 76c944b..f7f2024 100644 --- a/tests/blogc/check_loader.c +++ b/tests/blogc/check_loader.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc/check_renderer.c b/tests/blogc/check_renderer.c index a54cf35..1e2d1e5 100644 --- a/tests/blogc/check_renderer.c +++ b/tests/blogc/check_renderer.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc/check_source_parser.c b/tests/blogc/check_source_parser.c index 7522542..f758522 100644 --- a/tests/blogc/check_source_parser.c +++ b/tests/blogc/check_source_parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/blogc/check_template_parser.c b/tests/blogc/check_template_parser.c index 79d2d1e..bf9f6d7 100644 --- a/tests/blogc/check_template_parser.c +++ b/tests/blogc/check_template_parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/common/check_config_parser.c b/tests/common/check_config_parser.c index 62b95bc..49e2a5b 100644 --- a/tests/common/check_config_parser.c +++ b/tests/common/check_config_parser.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/common/check_error.c b/tests/common/check_error.c index 6efe5db..d9806f9 100644 --- a/tests/common/check_error.c +++ b/tests/common/check_error.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/common/check_stdin.c b/tests/common/check_stdin.c index 0aea58d..716916d 100644 --- a/tests/common/check_stdin.c +++ b/tests/common/check_stdin.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/common/check_utf8.c b/tests/common/check_utf8.c index 4bf5bac..05bf566 100644 --- a/tests/common/check_utf8.c +++ b/tests/common/check_utf8.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. diff --git a/tests/common/check_utils.c b/tests/common/check_utils.c index 6e4f8fb..cc14f4e 100644 --- a/tests/common/check_utils.c +++ b/tests/common/check_utils.c @@ -1,6 +1,6 @@ /* * blogc: A blog compiler. - * Copyright (C) 2014-2018 Rafael G. Martins + * Copyright (C) 2014-2019 Rafael G. Martins * * This program can be distributed under the terms of the BSD License. * See the file LICENSE. -- cgit v1.2.3-18-g5258