aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/Test.java4
-rw-r--r--src/argparser.bash2
-rw-r--r--src/argparser.c2
-rw-r--r--src/argparser.h2
-rw-r--r--src/argparser.py4
-rw-r--r--src/argparser/ArgParser.java4
-rw-r--r--src/libargparser/argparser.c2
-rw-r--r--src/libargparser/argparser.h2
-rwxr-xr-xsrc/test.bash4
-rw-r--r--src/test.c4
-rwxr-xr-xsrc/test.py4
11 files changed, 17 insertions, 17 deletions
diff --git a/src/Test.java b/src/Test.java
index c9c04a2..fe4da66 100644
--- a/src/Test.java
+++ b/src/Test.java
@@ -1,7 +1,7 @@
/**
* argparser – command line argument parser library
*
- * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013 Mattias Andrée (m@maandree.se)
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
@@ -26,7 +26,7 @@ public class Test
System.out.println("Parent: " + ArgParser.parentName());
ArgParser parser = new ArgParser.Abbreviations("A test for argparser", "test [options] [files]",
- "Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n" +
+ "Copyright © 2013 Mattias Andrée (m@maandree.se)\n" +
"\n" +
"This library is free software: you can redistribute it and/or modify\n" +
"it under the terms of the GNU Affero General Public License as published by\n" +
diff --git a/src/argparser.bash b/src/argparser.bash
index 99711c3..5afa3b6 100644
--- a/src/argparser.bash
+++ b/src/argparser.bash
@@ -2,7 +2,7 @@
##
# argparser – command line argument parser library
#
-# Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)
+# Copyright © 2013 Mattias Andrée (m@maandree.se)
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/src/argparser.c b/src/argparser.c
index ed1a64d..1d21fad 100644
--- a/src/argparser.c
+++ b/src/argparser.c
@@ -1,7 +1,7 @@
/**
* argparser – command line argument parser library
*
- * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013 Mattias Andrée (m@maandree.se)
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/argparser.h b/src/argparser.h
index 9503737..6c62a65 100644
--- a/src/argparser.h
+++ b/src/argparser.h
@@ -1,7 +1,7 @@
/**
* argparser – command line argument parser library
*
- * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013 Mattias Andrée (m@maandree.se)
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/argparser.py b/src/argparser.py
index f9160da..44a82bb 100644
--- a/src/argparser.py
+++ b/src/argparser.py
@@ -3,7 +3,7 @@
'''
argparser – command line argument parser library
-Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)
+Copyright © 2013 Mattias Andrée (m@maandree.se)
This library is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
@@ -26,7 +26,7 @@ class ArgParser():
'''
Simple argument parser
- @author Mattias Andrée, maandree@member.fsf.org
+ @author Mattias Andrée, m@maandree.se
'''
diff --git a/src/argparser/ArgParser.java b/src/argparser/ArgParser.java
index b2b56a1..088c4cb 100644
--- a/src/argparser/ArgParser.java
+++ b/src/argparser/ArgParser.java
@@ -1,7 +1,7 @@
/**
* argparser – command line argument parser library
*
- * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013 Mattias Andrée (m@maandree.se)
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
@@ -25,7 +25,7 @@ import java.io.*;
/**
* Simple argument parser
*
- * @author Mattias Andrée, <a href="mailto:maandree@member.fsf.org">maandree@member.fsf.org</a>
+ * @author Mattias Andrée, <a href="mailto:m@maandree.se">m@maandree.se</a>
*/
public class ArgParser
{
diff --git a/src/libargparser/argparser.c b/src/libargparser/argparser.c
index ba3d606..2004420 100644
--- a/src/libargparser/argparser.c
+++ b/src/libargparser/argparser.c
@@ -1,7 +1,7 @@
/**
* argparser – command line argument parser library
*
- * Copyright © 2013, 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014 Mattias Andrée (m@maandree.se)
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/libargparser/argparser.h b/src/libargparser/argparser.h
index 51feace..0691ffe 100644
--- a/src/libargparser/argparser.h
+++ b/src/libargparser/argparser.h
@@ -1,7 +1,7 @@
/**
* argparser – command line argument parser library
*
- * Copyright © 2013, 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014 Mattias Andrée (m@maandree.se)
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/test.bash b/src/test.bash
index fc44eec..94c8eba 100755
--- a/src/test.bash
+++ b/src/test.bash
@@ -2,7 +2,7 @@
##
# argparser – command line argument parser library
#
-# Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)
+# Copyright © 2013 Mattias Andrée (m@maandree.se)
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
@@ -25,7 +25,7 @@ echo "Parent: $(args_parent_name)"
long=$(cat <<.
argparser – command line argument parser library
-Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)
+Copyright © 2013 Mattias Andrée (m@maandree.se)
This library is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/src/test.c b/src/test.c
index 8fdbe8b..737ba60 100644
--- a/src/test.c
+++ b/src/test.c
@@ -1,7 +1,7 @@
/**
* argparser – command line argument parser library
*
- * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013 Mattias Andrée (m@maandree.se)
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
@@ -28,7 +28,7 @@ int main(int argc, char** argv)
free(pname);
args_init("A test for argparser", "test [options] [files]",
- "Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n"
+ "Copyright © 2013 Mattias Andrée (m@maandree.se)\n"
"\n"
"This library is free software: you can redistribute it and/or modify\n"
"it under the terms of the GNU Affero General Public License as published by\n"
diff --git a/src/test.py b/src/test.py
index 0cfd242..998a10a 100755
--- a/src/test.py
+++ b/src/test.py
@@ -3,7 +3,7 @@
'''
argparser – command line argument parser library
-Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)
+Copyright © 2013 Mattias Andrée (m@maandree.se)
This library is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
@@ -24,7 +24,7 @@ from argparser import *
print('Parent: ' + ArgParser.parent_name())
parser = ArgParser('A test for argparser', 'test [options] [files]',
- 'Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n'
+ 'Copyright © 2013 Mattias Andrée (m@maandree.se)\n'
'\n'
'This library is free software: you can redistribute it and/or modify\n'
'it under the terms of the GNU Affero General Public License as published by\n'