~vcs-imports-ii/znc/master

« back to all changes in this revision

Viewing changes to modules/modperl/codegen.pl

  • Committer: Alexey Sokolov
  • Date: 2013-06-13 20:43:34 UTC
  • Revision ID: git-v1:b2dcad5fd49e6c0d604de38c311db0e08ed061a7
Change ZNC license to Apache 2.0

The following people agreed with the change, in alphabetical order:
(people who approved in several ways are listed only once)
By email:
- Adam (from Anope)
- Austin Morton
- Brian Campbell
- Christian Walde
- Daniel Holbert
- Daniel Wallace
- Falk Seidel
- Heiko Hund
- Ingmar Runge
- Jim Hull
- Kyle Fuller
- Lee Aylward
- Martin Martimeo
- Matt Harper
- Michael J Edgar
- Michael Ziegler
- Nick Bebout
- Paul Driver
- Perry Nguyen
- Philippe (cycomate)
- Reuben Morais
- Roland Hieber
- Sebastian Ramacher
- Stefan Rado
- Stéphan Kochen
- Thomas Ward
- Toon Schoenmakers
- Veit Wahlich
- Wulf C. Krueger

By IRC:
- CNU
- Jonas Gorski
- Joshua M. Clulow
- Prozac/SHiZNO
- SilverLeo
- Uli Schlachter

At https://github.com/znc/znc/issues/311 :
- Alexey Sokolov
- Elizabeth Myers
- flakes
- Jens-Andre Koch
- Jyzee
- KindOne/ineedalifetoday
- Lee Williams
- Mantas Mikulėnas
- md-5
- Reed Loden

At the last few pull requests' comments:
- Allan Odgaard
- Jacob Baines
- Lluís Batlle i Rossell
- ravomavain
- protomouse

The following commits' authors didn't respond:
Trivial changes:
- f70f1086fd0c15d7fdb9eeef95dcefe9781ac3ab
- 4ca8b50e45f3ce77f22f209979fd092b89e7d335

The changes which are not presented in master anymore:
- 5512ed2ea061b2951ae9e24e89537f8ccb021944
- 960a4498f7b04f652462dfbff131a4d7c4701fdb
- 0f739de2c083bf19c7e4ee080390a4840ccecbee
- 7f53cc810b886351c452652cc32cea9b4cca1a8c

Fix #311
Fix #218

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env perl
2
2
#
3
 
# Copyright (C) 2004-2013  See the AUTHORS file for details.
4
 
#
5
 
# This program is free software; you can redistribute it and/or modify it
6
 
# under the terms of the GNU General Public License version 2 as published
7
 
# by the Free Software Foundation.
 
3
# Copyright (C) 2004-2013 ZNC, see the NOTICE file for details.
 
4
#
 
5
# Licensed under the Apache License, Version 2.0 (the "License");
 
6
# you may not use this file except in compliance with the License.
 
7
# You may obtain a copy of the License at
 
8
#
 
9
#     http://www.apache.org/licenses/LICENSE-2.0
 
10
#
 
11
# Unless required by applicable law or agreed to in writing, software
 
12
# distributed under the License is distributed on an "AS IS" BASIS,
 
13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
# See the License for the specific language governing permissions and
 
15
# limitations under the License.
8
16
#
9
17
 
10
18
use strict;
17
25
 
18
26
print $out <<'EOF';
19
27
/*
20
 
 * Copyright (C) 2004-2013  See the AUTHORS file for details.
21
 
 *
22
 
 * This program is free software; you can redistribute it and/or modify it
23
 
 * under the terms of the GNU General Public License version 2 as published
24
 
 * by the Free Software Foundation.
 
28
 * Copyright (C) 2004-2013 ZNC, see the NOTICE file for details.
 
29
 *
 
30
 * Licensed under the Apache License, Version 2.0 (the "License");
 
31
 * you may not use this file except in compliance with the License.
 
32
 * You may obtain a copy of the License at
 
33
 *
 
34
 *     http://www.apache.org/licenses/LICENSE-2.0
 
35
 *
 
36
 * Unless required by applicable law or agreed to in writing, software
 
37
 * distributed under the License is distributed on an "AS IS" BASIS,
 
38
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
39
 * See the License for the specific language governing permissions and
 
40
 * limitations under the License.
25
41
 */
26
42
 
27
43
/***************************************************************************