aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2014-11-01 17:42:58 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2014-11-01 17:42:58 +0200
commitb3289e646c030b3465f6895789459cd4437a1707 (patch)
tree1620ee27a1785ca241e1e1cbee9b696ef7e6b5c9
parent38be1d755a1b92c7d118f6aa57daa4156d9ae663 (diff)
downloadvmod-basicauth-b3289e646c030b3465f6895789459cd4437a1707.tar.gz
vmod-basicauth-b3289e646c030b3465f6895789459cd4437a1707.tar.bz2
Add missing copyright headers
-rw-r--r--NEWS14
-rw-r--r--README2
-rw-r--r--src/vmod-basicauth.34
-rw-r--r--tests/Makefile.am16
-rw-r--r--tests/test00.vtc16
-rw-r--r--tests/test01.vtc16
-rw-r--r--tests/test02.vtc16
7 files changed, 81 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index b4e3bb7..ca57666 100644
--- a/NEWS
+++ b/NEWS
@@ -27,6 +27,20 @@ Version 1.0, 2013-07-07
27Initial release. 27Initial release.
28 28
29 29
30Copyright information:
31
32Copyright (C) 2013-2014 Sergey Poznyakoff
33
34 Permission is granted to anyone to make or distribute verbatim copies
35 of this document as received, in any medium, provided that the
36 copyright notice and this permission notice are preserved,
37 thus giving the recipient permission to redistribute in turn.
38
39 Permission is granted to distribute modified versions
40 of this document, or of portions of it,
41 under the above conditions, provided also that they
42 carry prominent notices stating who last changed them.
43
30Local variables: 44Local variables:
31mode: outline 45mode: outline
32paragraph-separate: "[ ]*$" 46paragraph-separate: "[ ]*$"
diff --git a/README b/README
index 729896f..2193d4e 100644
--- a/README
+++ b/README
@@ -51,7 +51,7 @@ Send bug reports and suggestions to <gray@gnu.org>
51 51
52* Copyright information: 52* Copyright information:
53 53
54Copyright (C) 2013 Sergey Poznyakoff 54Copyright (C) 2013-2014 Sergey Poznyakoff
55 55
56 Permission is granted to anyone to make or distribute verbatim copies 56 Permission is granted to anyone to make or distribute verbatim copies
57 of this document as received, in any medium, provided that the 57 of this document as received, in any medium, provided that the
diff --git a/src/vmod-basicauth.3 b/src/vmod-basicauth.3
index 78efea1..91236f3 100644
--- a/src/vmod-basicauth.3
+++ b/src/vmod-basicauth.3
@@ -13,7 +13,7 @@
13.\" 13.\"
14.\" You should have received a copy of the GNU General Public License 14.\" You should have received a copy of the GNU General Public License
15.\" along with vmod-basicauth. If not, see <http://www.gnu.org/licenses/>. 15.\" along with vmod-basicauth. If not, see <http://www.gnu.org/licenses/>.
16.TH VMOD-BASICAUTH 1 "July 8, 2013" "VMOD-BASICAUTH" "User Reference" 16.TH VMOD-BASICAUTH 1 "November 1, 2014" "VMOD-BASICAUTH" "User Reference"
17.SH NAME 17.SH NAME
18vmod-basicauth \- Basic HTTP authentication 18vmod-basicauth \- Basic HTTP authentication
19.SH SYNOPSIS 19.SH SYNOPSIS
@@ -63,7 +63,7 @@ Sergey Poznyakoff
63.SH "BUG REPORTS" 63.SH "BUG REPORTS"
64Report bugs to <gray@gnu.org>. 64Report bugs to <gray@gnu.org>.
65.SH COPYRIGHT 65.SH COPYRIGHT
66Copyright \(co 2013 Sergey Poznyakoff 66Copyright \(co 2013-2014 Sergey Poznyakoff
67.br 67.br
68.na 68.na
69License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> 69License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 4c32621..700c8c6 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,3 +1,19 @@
1# This file is part of vmod-basicauth
2# Copyright (C) 2013-2014 Sergey Poznyakoff
3#
4# Vmod-basicauth is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3, or (at your option)
7# any later version.
8#
9# Vmod-basicauth is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with vmod-basicauth. If not, see <http://www.gnu.org/licenses/>.
16
1VMOD_TESTS = \ 17VMOD_TESTS = \
2 test00.vtc\ 18 test00.vtc\
3 test01.vtc\ 19 test01.vtc\
diff --git a/tests/test00.vtc b/tests/test00.vtc
index 7876677..17b4ead 100644
--- a/tests/test00.vtc
+++ b/tests/test00.vtc
@@ -1,3 +1,19 @@
1# This file is part of vmod-basicauth
2# Copyright (C) 2013-2014 Sergey Poznyakoff
3#
4# Vmod-basicauth is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3, or (at your option)
7# any later version.
8#
9# Vmod-basicauth is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with vmod-basicauth. If not, see <http://www.gnu.org/licenses/>.
16
1varnishtest "Test basic HTTP authentication: PLAIN" 17varnishtest "Test basic HTTP authentication: PLAIN"
2 18
3server s1 { 19server s1 {
diff --git a/tests/test01.vtc b/tests/test01.vtc
index f419271..21c00d7 100644
--- a/tests/test01.vtc
+++ b/tests/test01.vtc
@@ -1,3 +1,19 @@
1# This file is part of vmod-basicauth
2# Copyright (C) 2013-2014 Sergey Poznyakoff
3#
4# Vmod-basicauth is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3, or (at your option)
7# any later version.
8#
9# Vmod-basicauth is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with vmod-basicauth. If not, see <http://www.gnu.org/licenses/>.
16
1varnishtest "Test basic HTTP authentication: CRYPT" 17varnishtest "Test basic HTTP authentication: CRYPT"
2 18
3server s1 { 19server s1 {
diff --git a/tests/test02.vtc b/tests/test02.vtc
index a6759bd..d7ede9f 100644
--- a/tests/test02.vtc
+++ b/tests/test02.vtc
@@ -1,3 +1,19 @@
1# This file is part of vmod-basicauth
2# Copyright (C) 2013-2014 Sergey Poznyakoff
3#
4# Vmod-basicauth is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3, or (at your option)
7# any later version.
8#
9# Vmod-basicauth is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with vmod-basicauth. If not, see <http://www.gnu.org/licenses/>.
16
1varnishtest "Test basic HTTP authentication: APR MD5" 17varnishtest "Test basic HTTP authentication: APR MD5"
2 18
3server s1 { 19server s1 {

Return to:

Send suggestions and report system problems to the System administrator.