From 2da906109b41d724a552e7d5702b0d9351ee0967 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 15 Jan 2012 14:49:51 -0500 Subject: [PATCH] Copyright update for 2012. --- LICENSE | 2 +- bot.py | 2 +- earwigbot/__init__.py | 2 +- earwigbot/blowfish.py | 2 +- earwigbot/classes/__init__.py | 2 +- earwigbot/classes/base_command.py | 2 +- earwigbot/classes/base_task.py | 2 +- earwigbot/classes/connection.py | 2 +- earwigbot/classes/data.py | 2 +- earwigbot/classes/rc.py | 2 +- earwigbot/commands/__init__.py | 2 +- earwigbot/commands/afc_report.py | 2 +- earwigbot/commands/afc_status.py | 2 +- earwigbot/commands/calc.py | 2 +- earwigbot/commands/chanops.py | 2 +- earwigbot/commands/crypt.py | 2 +- earwigbot/commands/ctcp.py | 2 +- earwigbot/commands/editcount.py | 2 +- earwigbot/commands/git.py | 2 +- earwigbot/commands/help.py | 2 +- earwigbot/commands/link.py | 2 +- earwigbot/commands/praise.py | 2 +- earwigbot/commands/registration.py | 2 +- earwigbot/commands/remind.py | 2 +- earwigbot/commands/replag.py | 2 +- earwigbot/commands/rights.py | 2 +- earwigbot/commands/test.py | 2 +- earwigbot/commands/threads.py | 2 +- earwigbot/config.py | 2 +- earwigbot/frontend.py | 2 +- earwigbot/main.py | 2 +- earwigbot/rules.py | 2 +- earwigbot/runner.py | 2 +- earwigbot/tasks/__init__.py | 2 +- earwigbot/tasks/afc_catdelink.py | 2 +- earwigbot/tasks/afc_copyvios.py | 2 +- earwigbot/tasks/afc_dailycats.py | 2 +- earwigbot/tasks/afc_history.py | 2 +- earwigbot/tasks/afc_statistics.py | 2 +- earwigbot/tasks/afc_undated.py | 2 +- earwigbot/tasks/blptag.py | 2 +- earwigbot/tasks/feed_dailycats.py | 2 +- earwigbot/tasks/wrongmime.py | 2 +- earwigbot/tests/__init__.py | 2 +- earwigbot/tests/test_blowfish.py | 2 +- earwigbot/tests/test_calc.py | 2 +- earwigbot/tests/test_test.py | 2 +- earwigbot/watcher.py | 2 +- earwigbot/wiki/__init__.py | 2 +- earwigbot/wiki/category.py | 2 +- earwigbot/wiki/constants.py | 2 +- earwigbot/wiki/copyright.py | 2 +- earwigbot/wiki/exceptions.py | 2 +- earwigbot/wiki/functions.py | 2 +- earwigbot/wiki/page.py | 2 +- earwigbot/wiki/site.py | 2 +- earwigbot/wiki/user.py | 2 +- 57 files changed, 57 insertions(+), 57 deletions(-) diff --git a/LICENSE b/LICENSE index 5ebac08..829bb2a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +Copyright (C) 2009-2012 by Ben Kurtovic Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/bot.py b/bot.py index 246301a..d8f2d21 100755 --- a/bot.py +++ b/bot.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/__init__.py b/earwigbot/__init__.py index 83fb901..0da7679 100644 --- a/earwigbot/__init__.py +++ b/earwigbot/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/blowfish.py b/earwigbot/blowfish.py index e426211..4df8c75 100755 --- a/earwigbot/blowfish.py +++ b/earwigbot/blowfish.py @@ -3,7 +3,7 @@ # # blowfish.py # Copyright (C) 2002 Michael Gilfix -# Copyright (C) 2011 Ben Kurtovic +# Copyright (C) 2011, 2012 Ben Kurtovic # # This module is open source; you can redistribute it and/or # modify it under the terms of the GPL or Artistic License. diff --git a/earwigbot/classes/__init__.py b/earwigbot/classes/__init__.py index ef7f118..88adf84 100644 --- a/earwigbot/classes/__init__.py +++ b/earwigbot/classes/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/classes/base_command.py b/earwigbot/classes/base_command.py index c94d6ea..10ccbc8 100644 --- a/earwigbot/classes/base_command.py +++ b/earwigbot/classes/base_command.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/classes/base_task.py b/earwigbot/classes/base_task.py index 1a0d763..85229f2 100644 --- a/earwigbot/classes/base_task.py +++ b/earwigbot/classes/base_task.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/classes/connection.py b/earwigbot/classes/connection.py index f55df6c..5a45145 100644 --- a/earwigbot/classes/connection.py +++ b/earwigbot/classes/connection.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/classes/data.py b/earwigbot/classes/data.py index 19e6171..fae6a52 100644 --- a/earwigbot/classes/data.py +++ b/earwigbot/classes/data.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/classes/rc.py b/earwigbot/classes/rc.py index 557a0c4..7fc20cb 100644 --- a/earwigbot/classes/rc.py +++ b/earwigbot/classes/rc.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/__init__.py b/earwigbot/commands/__init__.py index 4f93b8d..fda7072 100644 --- a/earwigbot/commands/__init__.py +++ b/earwigbot/commands/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/afc_report.py b/earwigbot/commands/afc_report.py index e296891..fe3cd8d 100644 --- a/earwigbot/commands/afc_report.py +++ b/earwigbot/commands/afc_report.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/afc_status.py b/earwigbot/commands/afc_status.py index e502023..ab32259 100644 --- a/earwigbot/commands/afc_status.py +++ b/earwigbot/commands/afc_status.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/calc.py b/earwigbot/commands/calc.py index c23937c..4b3d25b 100644 --- a/earwigbot/commands/calc.py +++ b/earwigbot/commands/calc.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/chanops.py b/earwigbot/commands/chanops.py index 86e11f7..0a36966 100644 --- a/earwigbot/commands/chanops.py +++ b/earwigbot/commands/chanops.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/crypt.py b/earwigbot/commands/crypt.py index d873576..c0fb432 100644 --- a/earwigbot/commands/crypt.py +++ b/earwigbot/commands/crypt.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/ctcp.py b/earwigbot/commands/ctcp.py index 41541c7..5c0a352 100644 --- a/earwigbot/commands/ctcp.py +++ b/earwigbot/commands/ctcp.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/editcount.py b/earwigbot/commands/editcount.py index 72f635d..84101e7 100644 --- a/earwigbot/commands/editcount.py +++ b/earwigbot/commands/editcount.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/git.py b/earwigbot/commands/git.py index dcec4fc..e465e93 100644 --- a/earwigbot/commands/git.py +++ b/earwigbot/commands/git.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/help.py b/earwigbot/commands/help.py index 394294e..d0e2ba6 100644 --- a/earwigbot/commands/help.py +++ b/earwigbot/commands/help.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/link.py b/earwigbot/commands/link.py index ba6ea5a..24a4b7a 100644 --- a/earwigbot/commands/link.py +++ b/earwigbot/commands/link.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/praise.py b/earwigbot/commands/praise.py index 115c325..e82247c 100644 --- a/earwigbot/commands/praise.py +++ b/earwigbot/commands/praise.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/registration.py b/earwigbot/commands/registration.py index d6fed87..b21a6ac 100644 --- a/earwigbot/commands/registration.py +++ b/earwigbot/commands/registration.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/remind.py b/earwigbot/commands/remind.py index ddaf254..73a4a1e 100644 --- a/earwigbot/commands/remind.py +++ b/earwigbot/commands/remind.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/replag.py b/earwigbot/commands/replag.py index f71ebb6..8347dc7 100644 --- a/earwigbot/commands/replag.py +++ b/earwigbot/commands/replag.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/rights.py b/earwigbot/commands/rights.py index 465596f..31c56db 100644 --- a/earwigbot/commands/rights.py +++ b/earwigbot/commands/rights.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/test.py b/earwigbot/commands/test.py index 8975524..0c94fa7 100644 --- a/earwigbot/commands/test.py +++ b/earwigbot/commands/test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/commands/threads.py b/earwigbot/commands/threads.py index 346b4f5..c822691 100644 --- a/earwigbot/commands/threads.py +++ b/earwigbot/commands/threads.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/config.py b/earwigbot/config.py index 9374444..f62791d 100644 --- a/earwigbot/config.py +++ b/earwigbot/config.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/frontend.py b/earwigbot/frontend.py index 0bfcaab..f249c70 100644 --- a/earwigbot/frontend.py +++ b/earwigbot/frontend.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/main.py b/earwigbot/main.py index 7f0c6f7..a269e34 100644 --- a/earwigbot/main.py +++ b/earwigbot/main.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/rules.py b/earwigbot/rules.py index 784011d..9e5190b 100644 --- a/earwigbot/rules.py +++ b/earwigbot/rules.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/runner.py b/earwigbot/runner.py index 048c8b7..30c4dff 100644 --- a/earwigbot/runner.py +++ b/earwigbot/runner.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/__init__.py b/earwigbot/tasks/__init__.py index 8cb0bfb..75115e9 100644 --- a/earwigbot/tasks/__init__.py +++ b/earwigbot/tasks/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/afc_catdelink.py b/earwigbot/tasks/afc_catdelink.py index 17d9f9b..0708d49 100644 --- a/earwigbot/tasks/afc_catdelink.py +++ b/earwigbot/tasks/afc_catdelink.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/afc_copyvios.py b/earwigbot/tasks/afc_copyvios.py index 85a4895..adf7e9e 100644 --- a/earwigbot/tasks/afc_copyvios.py +++ b/earwigbot/tasks/afc_copyvios.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/afc_dailycats.py b/earwigbot/tasks/afc_dailycats.py index 99545e3..44bb093 100644 --- a/earwigbot/tasks/afc_dailycats.py +++ b/earwigbot/tasks/afc_dailycats.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/afc_history.py b/earwigbot/tasks/afc_history.py index 0e7d855..8abe5f5 100644 --- a/earwigbot/tasks/afc_history.py +++ b/earwigbot/tasks/afc_history.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/afc_statistics.py b/earwigbot/tasks/afc_statistics.py index 3c8c885..e52fd1f 100644 --- a/earwigbot/tasks/afc_statistics.py +++ b/earwigbot/tasks/afc_statistics.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/afc_undated.py b/earwigbot/tasks/afc_undated.py index 5282544..b947cee 100644 --- a/earwigbot/tasks/afc_undated.py +++ b/earwigbot/tasks/afc_undated.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/blptag.py b/earwigbot/tasks/blptag.py index 0ed70d0..c268b45 100644 --- a/earwigbot/tasks/blptag.py +++ b/earwigbot/tasks/blptag.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/feed_dailycats.py b/earwigbot/tasks/feed_dailycats.py index 4e83908..9798eff 100644 --- a/earwigbot/tasks/feed_dailycats.py +++ b/earwigbot/tasks/feed_dailycats.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tasks/wrongmime.py b/earwigbot/tasks/wrongmime.py index c7f0bca..6096c92 100644 --- a/earwigbot/tasks/wrongmime.py +++ b/earwigbot/tasks/wrongmime.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tests/__init__.py b/earwigbot/tests/__init__.py index 678b288..bd2c481 100644 --- a/earwigbot/tests/__init__.py +++ b/earwigbot/tests/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tests/test_blowfish.py b/earwigbot/tests/test_blowfish.py index dbb335f..767862f 100644 --- a/earwigbot/tests/test_blowfish.py +++ b/earwigbot/tests/test_blowfish.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tests/test_calc.py b/earwigbot/tests/test_calc.py index 240fcbe..ae613f2 100644 --- a/earwigbot/tests/test_calc.py +++ b/earwigbot/tests/test_calc.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/tests/test_test.py b/earwigbot/tests/test_test.py index 3aeaa23..7215613 100644 --- a/earwigbot/tests/test_test.py +++ b/earwigbot/tests/test_test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/watcher.py b/earwigbot/watcher.py index 8c9c4e3..670a7aa 100644 --- a/earwigbot/watcher.py +++ b/earwigbot/watcher.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/__init__.py b/earwigbot/wiki/__init__.py index c8c7e6b..03a8e9e 100644 --- a/earwigbot/wiki/__init__.py +++ b/earwigbot/wiki/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/category.py b/earwigbot/wiki/category.py index 0c279ed..c220674 100644 --- a/earwigbot/wiki/category.py +++ b/earwigbot/wiki/category.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/constants.py b/earwigbot/wiki/constants.py index eb094d6..22aef9c 100644 --- a/earwigbot/wiki/constants.py +++ b/earwigbot/wiki/constants.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/copyright.py b/earwigbot/wiki/copyright.py index 5af1fec..4a1fb3e 100644 --- a/earwigbot/wiki/copyright.py +++ b/earwigbot/wiki/copyright.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/exceptions.py b/earwigbot/wiki/exceptions.py index e88158f..41266df 100644 --- a/earwigbot/wiki/exceptions.py +++ b/earwigbot/wiki/exceptions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/functions.py b/earwigbot/wiki/functions.py index 9e05862..6fc0837 100644 --- a/earwigbot/wiki/functions.py +++ b/earwigbot/wiki/functions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/page.py b/earwigbot/wiki/page.py index 862da2b..8407108 100644 --- a/earwigbot/wiki/page.py +++ b/earwigbot/wiki/page.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/site.py b/earwigbot/wiki/site.py index 806d711..6b6c10b 100644 --- a/earwigbot/wiki/site.py +++ b/earwigbot/wiki/site.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/earwigbot/wiki/user.py b/earwigbot/wiki/user.py index f308569..880b804 100644 --- a/earwigbot/wiki/user.py +++ b/earwigbot/wiki/user.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009, 2010, 2011 by Ben Kurtovic +# Copyright (C) 2009-2012 by Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal