diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-08-09 04:23:39 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-08-09 04:23:39 +0200 |
commit | cc2fd0ceacad0e42e013e6b9d12be8356762e089 (patch) | |
tree | 0c04c6ce40a47c2f4735062e41eccad68f90d489 /src | |
parent | add pkgbuild (diff) | |
download | argparser-cc2fd0ceacad0e42e013e6b9d12be8356762e089.tar.gz argparser-cc2fd0ceacad0e42e013e6b9d12be8356762e089.tar.bz2 argparser-cc2fd0ceacad0e42e013e6b9d12be8356762e089.tar.xz |
stronger license = better license
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/Test.java | 12 | ||||
-rw-r--r-- | src/argparser.bash | 6 | ||||
-rw-r--r-- | src/argparser.c | 6 | ||||
-rw-r--r-- | src/argparser.h | 6 | ||||
-rw-r--r-- | src/argparser.py | 6 | ||||
-rw-r--r-- | src/argparser/ArgParser.java | 6 | ||||
-rwxr-xr-x | src/test.bash | 12 | ||||
-rw-r--r-- | src/test.c | 12 | ||||
-rwxr-xr-x | src/test.py | 12 |
9 files changed, 39 insertions, 39 deletions
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 <http://www.gnu.org/licenses/>. */ 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 <http://www.gnu.org/licenses/>.", 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 <http://www.gnu.org/licenses/>. ## 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 <http://www.gnu.org/licenses/>. */ #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 <http://www.gnu.org/licenses/>. */ #include <stdlib.h> 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 <http://www.gnu.org/licenses/>. ''' 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 <http://www.gnu.org/licenses/>. */ 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 <http://www.gnu.org/licenses/>. ## . 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 <http://www.gnu.org/licenses/>. . ) @@ -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 <http://www.gnu.org/licenses/>. */ #include <stdio.h> @@ -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 <http://www.gnu.org/licenses/>.", 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 <http://www.gnu.org/licenses/>. ''' 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 <http://www.gnu.org/licenses/>.', None, True) parser.add_argumentless(['-h', '-?', '--help'], 0, 'Prints this help message\n(and exits)') |