diff options
author | Loïc Hoguin <[email protected]> | 2025-02-14 16:12:41 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2025-02-14 16:13:46 +0100 |
commit | 1f70437d2bbcee94df5849ef9169198e84963a0c (patch) | |
tree | 643218fd679668635a3ccb984fd2945be0ad5534 | |
parent | f74e175fdf7dd0ec52ffb969fa316f5264ad3f83 (diff) | |
download | cowlib-1f70437d2bbcee94df5849ef9169198e84963a0c.tar.gz cowlib-1f70437d2bbcee94df5849ef9169198e84963a0c.tar.bz2 cowlib-1f70437d2bbcee94df5849ef9169198e84963a0c.zip |
Remove copyright years from all files except LICENSE
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | include/cow_inline.hrl | 2 | ||||
-rw-r--r-- | include/cow_parse.hrl | 2 | ||||
-rw-r--r-- | src/cow_base64url.erl | 2 | ||||
-rw-r--r-- | src/cow_cookie.erl | 2 | ||||
-rw-r--r-- | src/cow_date.erl | 2 | ||||
-rw-r--r-- | src/cow_deflate.erl | 4 | ||||
-rw-r--r-- | src/cow_hpack.erl | 2 | ||||
-rw-r--r-- | src/cow_hpack_common.hrl | 2 | ||||
-rw-r--r-- | src/cow_hpack_dec_huffman_lookup.hrl | 2 | ||||
-rw-r--r-- | src/cow_http.erl | 2 | ||||
-rw-r--r-- | src/cow_http1.erl | 2 | ||||
-rw-r--r-- | src/cow_http2.erl | 2 | ||||
-rw-r--r-- | src/cow_http2_machine.erl | 2 | ||||
-rw-r--r-- | src/cow_http3.erl | 2 | ||||
-rw-r--r-- | src/cow_http3_machine.erl | 2 | ||||
-rw-r--r-- | src/cow_http_hd.erl | 2 | ||||
-rw-r--r-- | src/cow_http_struct_hd.erl | 2 | ||||
-rw-r--r-- | src/cow_http_te.erl | 2 | ||||
-rw-r--r-- | src/cow_iolists.erl | 2 | ||||
-rw-r--r-- | src/cow_link.erl | 2 | ||||
-rw-r--r-- | src/cow_mimetypes.erl | 2 | ||||
-rw-r--r-- | src/cow_mimetypes.erl.src | 2 | ||||
-rw-r--r-- | src/cow_multipart.erl | 2 | ||||
-rw-r--r-- | src/cow_qpack.erl | 2 | ||||
-rw-r--r-- | src/cow_qs.erl | 2 | ||||
-rw-r--r-- | src/cow_spdy.erl | 2 | ||||
-rw-r--r-- | src/cow_sse.erl | 2 | ||||
-rw-r--r-- | src/cow_uri.erl | 2 | ||||
-rw-r--r-- | src/cow_uri_template.erl | 2 | ||||
-rw-r--r-- | src/cow_ws.erl | 2 |
32 files changed, 34 insertions, 32 deletions
@@ -1,4 +1,4 @@ -Copyright (c) 2013-2024, Loïc Hoguin <[email protected]> +Copyright (c) 2013-2025, Loïc Hoguin <[email protected]> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -107,6 +107,8 @@ prepare_tag: $(verbose) echo -n "APP: " $(verbose) grep -m1 vsn ebin/$(PROJECT).app | sed 's/ //g' $(verbose) echo + $(verbose) echo -n "LICENSE: " ; head -n1 LICENSE + $(verbose) echo $(verbose) echo "Dependencies:" $(verbose) grep ^DEPS Makefile || echo "DEPS =" $(verbose) grep ^dep_ Makefile || true diff --git a/include/cow_inline.hrl b/include/cow_inline.hrl index 1ad417e..304854d 100644 --- a/include/cow_inline.hrl +++ b/include/cow_inline.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2014-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/include/cow_parse.hrl b/include/cow_parse.hrl index 72eaff6..a0b061e 100644 --- a/include/cow_parse.hrl +++ b/include/cow_parse.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2015-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_base64url.erl b/src/cow_base64url.erl index e591fcf..fb826a3 100644 --- a/src/cow_base64url.erl +++ b/src/cow_base64url.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2017-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_cookie.erl b/src/cow_cookie.erl index 11cf339..c87beb3 100644 --- a/src/cow_cookie.erl +++ b/src/cow_cookie.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2013-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_date.erl b/src/cow_date.erl index 00bc8af..1d6ee0b 100644 --- a/src/cow_date.erl +++ b/src/cow_date.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2013-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_deflate.erl b/src/cow_deflate.erl index 051c8e4..6c75bf6 100644 --- a/src/cow_deflate.erl +++ b/src/cow_deflate.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2024-2025, jdamanalo <[email protected]> -%% Copyright (c) 2024-2025, Loïc Hoguin <[email protected]> +%% Copyright (c) jdamanalo <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_hpack.erl b/src/cow_hpack.erl index cddeb06..87c4514 100644 --- a/src/cow_hpack.erl +++ b/src/cow_hpack.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2015-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_hpack_common.hrl b/src/cow_hpack_common.hrl index 92f9514..34c4284 100644 --- a/src/cow_hpack_common.hrl +++ b/src/cow_hpack_common.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2015-2020, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_hpack_dec_huffman_lookup.hrl b/src/cow_hpack_dec_huffman_lookup.hrl index 6e5da31..60c30ef 100644 --- a/src/cow_hpack_dec_huffman_lookup.hrl +++ b/src/cow_hpack_dec_huffman_lookup.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_http.erl b/src/cow_http.erl index b4bc672..3061bad 100644 --- a/src/cow_http.erl +++ b/src/cow_http.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2013-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_http1.erl b/src/cow_http1.erl index 24a8c88..92e3f14 100644 --- a/src/cow_http1.erl +++ b/src/cow_http1.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2013-2024, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_http2.erl b/src/cow_http2.erl index 7251b2c..5eb346b 100644 --- a/src/cow_http2.erl +++ b/src/cow_http2.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2015-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_http2_machine.erl b/src/cow_http2_machine.erl index 70b920d..4e57c04 100644 --- a/src/cow_http2_machine.erl +++ b/src/cow_http2_machine.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2018-2024, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_http3.erl b/src/cow_http3.erl index d3776ec..4e9c984 100644 --- a/src/cow_http3.erl +++ b/src/cow_http3.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2023-2024, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_http3_machine.erl b/src/cow_http3_machine.erl index b1b4a68..9cd83d6 100644 --- a/src/cow_http3_machine.erl +++ b/src/cow_http3_machine.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2023-2024, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_http_hd.erl b/src/cow_http_hd.erl index c2b5806..2d5bbc2 100644 --- a/src/cow_http_hd.erl +++ b/src/cow_http_hd.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2014-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_http_struct_hd.erl b/src/cow_http_struct_hd.erl index a79c691..fa0a8b4 100644 --- a/src/cow_http_struct_hd.erl +++ b/src/cow_http_struct_hd.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_http_te.erl b/src/cow_http_te.erl index e3473cf..9b20ab8 100644 --- a/src/cow_http_te.erl +++ b/src/cow_http_te.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2014-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_iolists.erl b/src/cow_iolists.erl index a5e75df..38b371b 100644 --- a/src/cow_iolists.erl +++ b/src/cow_iolists.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2017-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_link.erl b/src/cow_link.erl index b649786..12be057 100644 --- a/src/cow_link.erl +++ b/src/cow_link.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_mimetypes.erl b/src/cow_mimetypes.erl index 4ce6af7..e678fb4 100644 --- a/src/cow_mimetypes.erl +++ b/src/cow_mimetypes.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2013-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_mimetypes.erl.src b/src/cow_mimetypes.erl.src index f2d81c8..e1c9f3e 100644 --- a/src/cow_mimetypes.erl.src +++ b/src/cow_mimetypes.erl.src @@ -1,4 +1,4 @@ -%% Copyright (c) 2013-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_multipart.erl b/src/cow_multipart.erl index 4d6d574..328ec7c 100644 --- a/src/cow_multipart.erl +++ b/src/cow_multipart.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2014-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_qpack.erl b/src/cow_qpack.erl index 027e29c..98089ae 100644 --- a/src/cow_qpack.erl +++ b/src/cow_qpack.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2020-2024, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_qs.erl b/src/cow_qs.erl index dff840a..2f22954 100644 --- a/src/cow_qs.erl +++ b/src/cow_qs.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2013-2024, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_spdy.erl b/src/cow_spdy.erl index e7b4043..b7aa297 100644 --- a/src/cow_spdy.erl +++ b/src/cow_spdy.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2013-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_sse.erl b/src/cow_sse.erl index 6e7081f..81ceac2 100644 --- a/src/cow_sse.erl +++ b/src/cow_sse.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2017-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_uri.erl b/src/cow_uri.erl index 1864139..ac71afd 100644 --- a/src/cow_uri.erl +++ b/src/cow_uri.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2016-2024, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_uri_template.erl b/src/cow_uri_template.erl index ccc355d..e3d1c65 100644 --- a/src/cow_uri_template.erl +++ b/src/cow_uri_template.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/cow_ws.erl b/src/cow_ws.erl index f31cd10..94c01f1 100644 --- a/src/cow_ws.erl +++ b/src/cow_ws.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2015-2023, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above |