From cc2fd0ceacad0e42e013e6b9d12be8356762e089 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 9 Aug 2013 04:23:39 +0200 Subject: stronger license = better license MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/Test.java | 12 ++++++------ src/argparser.bash | 6 +++--- src/argparser.c | 6 +++--- src/argparser.h | 6 +++--- src/argparser.py | 6 +++--- src/argparser/ArgParser.java | 6 +++--- src/test.bash | 12 ++++++------ src/test.c | 12 ++++++------ src/test.py | 12 ++++++------ 9 files changed, 39 insertions(+), 39 deletions(-) (limited to 'src') diff --git a/src/Test.java b/src/Test.java index d876bde..bab6092 100644 --- a/src/Test.java +++ b/src/Test.java @@ -4,16 +4,16 @@ * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) * * This library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * GNU Affero General Public License for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the GNU Affero General Public License * along with this library. If not, see . */ import argparser.*; @@ -29,16 +29,16 @@ public class Test "Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n" + "\n" + "This library is free software: you can redistribute it and/or modify\n" + - "it under the terms of the GNU General Public License as published by\n" + + "it under the terms of the GNU Affero General Public License as published by\n" + "the Free Software Foundation, either version 3 of the License, or\n" + "(at your option) any later version.\n" + "\n" + "This library is distributed in the hope that it will be useful,\n" + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" + - "GNU General Public License for more details.\n" + + "GNU Affero General Public License for more details.\n" + "\n" + - "You should have received a copy of the GNU General Public License\n" + + "You should have received a copy of the GNU Affero General Public License\n" + "along with this library. If not, see .", null, true); parser.add(new ArgParser.Argumentless(0, "-h", "-?", "--help"), "Prints this help message\n(and exits)"); diff --git a/src/argparser.bash b/src/argparser.bash index 70d6eb1..3144f01 100644 --- a/src/argparser.bash +++ b/src/argparser.bash @@ -5,16 +5,16 @@ # Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) # # This library is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# GNU Affero General Public License for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU Affero General Public License # along with this library. If not, see . ## diff --git a/src/argparser.c b/src/argparser.c index b067949..1b1c704 100644 --- a/src/argparser.c +++ b/src/argparser.c @@ -4,16 +4,16 @@ * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) * * This library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * GNU Affero General Public License for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the GNU Affero General Public License * along with this library. If not, see . */ #include "argparser.h" diff --git a/src/argparser.h b/src/argparser.h index 4d6194d..580a68d 100644 --- a/src/argparser.h +++ b/src/argparser.h @@ -4,16 +4,16 @@ * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) * * This library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * GNU Affero General Public License for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the GNU Affero General Public License * along with this library. If not, see . */ #include diff --git a/src/argparser.py b/src/argparser.py index 8378b81..d9f9d55 100644 --- a/src/argparser.py +++ b/src/argparser.py @@ -6,16 +6,16 @@ argparser – command line argument parser library Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) This library is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU Affero General Public License for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the GNU Affero General Public License along with this library. If not, see . ''' import sys diff --git a/src/argparser/ArgParser.java b/src/argparser/ArgParser.java index 767b01d..ddb09c5 100644 --- a/src/argparser/ArgParser.java +++ b/src/argparser/ArgParser.java @@ -4,16 +4,16 @@ * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) * * This library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * GNU Affero General Public License for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the GNU Affero General Public License * along with this library. If not, see . */ package argparser; diff --git a/src/test.bash b/src/test.bash index c929156..357fcc1 100755 --- a/src/test.bash +++ b/src/test.bash @@ -5,16 +5,16 @@ # Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) # # This library is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# GNU Affero General Public License for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU Affero General Public License # along with this library. If not, see . ## . argparser.bash @@ -28,16 +28,16 @@ argparser – command line argument parser library Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) This library is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU Affero General Public License for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the GNU Affero General Public License along with this library. If not, see . . ) diff --git a/src/test.c b/src/test.c index 3f5f9a0..7d8ad32 100644 --- a/src/test.c +++ b/src/test.c @@ -4,16 +4,16 @@ * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) * * This library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * GNU Affero General Public License for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the GNU Affero General Public License * along with this library. If not, see . */ #include @@ -31,16 +31,16 @@ int main(int argc, char** argv) "Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n" "\n" "This library is free software: you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" + "it under the terms of the GNU Affero General Public License as published by\n" "the Free Software Foundation, either version 3 of the License, or\n" "(at your option) any later version.\n" "\n" "This library is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "GNU Affero General Public License for more details.\n" "\n" - "You should have received a copy of the GNU General Public License\n" + "You should have received a copy of the GNU Affero General Public License\n" "along with this library. If not, see .", 0, 1); args_add_option(args_new_argumentless(0, "-h", "-?", "--help", NULL), "Prints this help message\n(and exits)"); diff --git a/src/test.py b/src/test.py index df159aa..cd3b2ad 100755 --- a/src/test.py +++ b/src/test.py @@ -6,16 +6,16 @@ argparser – command line argument parser library Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) This library is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU Affero General Public License for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the GNU Affero General Public License along with this library. If not, see . ''' from argparser import * @@ -27,16 +27,16 @@ parser = ArgParser('A test for argparser', 'test [options] [files]', 'Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n' '\n' 'This library is free software: you can redistribute it and/or modify\n' - 'it under the terms of the GNU General Public License as published by\n' + 'it under the terms of the GNU Affero General Public License as published by\n' 'the Free Software Foundation, either version 3 of the License, or\n' '(at your option) any later version.\n' '\n' 'This library is distributed in the hope that it will be useful,\n' 'but WITHOUT ANY WARRANTY; without even the implied warranty of\n' 'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n' - 'GNU General Public License for more details.\n' + 'GNU Affero General Public License for more details.\n' '\n' - 'You should have received a copy of the GNU General Public License\n' + 'You should have received a copy of the GNU Affero General Public License\n' 'along with this library. If not, see .', None, True) parser.add_argumentless(['-h', '-?', '--help'], 0, 'Prints this help message\n(and exits)') -- cgit v1.2.3-70-g09d2