From 0b7a13eca5042e814cd04d18abfbb5a37093c42b Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 17 Jan 2013 02:13:04 -0500 Subject: [PATCH] Update copyright notices for 2013. --- docs/conf.py | 2 +- earwigbot/__init__.py | 4 ++-- earwigbot/bot.py | 2 +- earwigbot/commands/__init__.py | 2 +- earwigbot/commands/access.py | 2 +- earwigbot/commands/calc.py | 2 +- earwigbot/commands/chanops.py | 2 +- earwigbot/commands/crypt.py | 2 +- earwigbot/commands/ctcp.py | 2 +- earwigbot/commands/dictionary.py | 2 +- earwigbot/commands/editcount.py | 2 +- earwigbot/commands/help.py | 2 +- earwigbot/commands/lag.py | 2 +- earwigbot/commands/langcode.py | 2 +- earwigbot/commands/link.py | 2 +- earwigbot/commands/notes.py | 2 +- earwigbot/commands/quit.py | 2 +- earwigbot/commands/registration.py | 2 +- earwigbot/commands/remind.py | 2 +- earwigbot/commands/rights.py | 2 +- earwigbot/commands/test.py | 2 +- earwigbot/commands/threads.py | 2 +- earwigbot/commands/time_command.py | 2 +- earwigbot/commands/trout.py | 2 +- earwigbot/config/__init__.py | 2 +- earwigbot/config/formatter.py | 2 +- earwigbot/config/node.py | 2 +- earwigbot/config/ordered_yaml.py | 2 +- earwigbot/config/permissions.py | 2 +- earwigbot/config/script.py | 2 +- earwigbot/exceptions.py | 2 +- earwigbot/irc/__init__.py | 2 +- earwigbot/irc/connection.py | 2 +- earwigbot/irc/data.py | 2 +- earwigbot/irc/frontend.py | 2 +- earwigbot/irc/rc.py | 2 +- earwigbot/irc/watcher.py | 2 +- earwigbot/lazy.py | 2 +- earwigbot/managers.py | 2 +- earwigbot/tasks/__init__.py | 2 +- earwigbot/tasks/wikiproject_tagger.py | 2 +- earwigbot/util.py | 2 +- earwigbot/wiki/__init__.py | 2 +- earwigbot/wiki/category.py | 2 +- earwigbot/wiki/constants.py | 2 +- earwigbot/wiki/copyvios/__init__.py | 2 +- earwigbot/wiki/copyvios/exclusions.py | 2 +- earwigbot/wiki/copyvios/markov.py | 2 +- earwigbot/wiki/copyvios/parsers.py | 2 +- earwigbot/wiki/copyvios/result.py | 2 +- earwigbot/wiki/copyvios/search.py | 2 +- earwigbot/wiki/page.py | 2 +- earwigbot/wiki/site.py | 2 +- earwigbot/wiki/sitesdb.py | 2 +- earwigbot/wiki/user.py | 2 +- 55 files changed, 56 insertions(+), 56 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 747d5c8..1a13c78 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,7 +41,7 @@ master_doc = 'index' # General information about the project. project = u'EarwigBot' -copyright = u'2009, 2010, 2011, 2012 Ben Kurtovic' +copyright = u'2009, 2010, 2011, 2012, 2013 Ben Kurtovic' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/earwigbot/__init__.py b/earwigbot/__init__.py index 256837c..15dfc94 100644 --- a/earwigbot/__init__.py +++ b/earwigbot/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 @@ -30,7 +30,7 @@ details. This documentation is also available `online """ __author__ = "Ben Kurtovic" -__copyright__ = "Copyright (C) 2009, 2010, 2011, 2012 Ben Kurtovic" +__copyright__ = "Copyright (C) 2009, 2010, 2011, 2012, 2013 Ben Kurtovic" __license__ = "MIT License" __version__ = "0.2.dev" __email__ = "ben.kurtovic@verizon.net" diff --git a/earwigbot/bot.py b/earwigbot/bot.py index 27dd9c0..9d95645 100644 --- a/earwigbot/bot.py +++ b/earwigbot/bot.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 ecb299c..3ebca25 100644 --- a/earwigbot/commands/__init__.py +++ b/earwigbot/commands/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/access.py b/earwigbot/commands/access.py index 1132348..0ca75c1 100644 --- a/earwigbot/commands/access.py +++ b/earwigbot/commands/access.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 de16202..1c7d532 100644 --- a/earwigbot/commands/calc.py +++ b/earwigbot/commands/calc.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 ea54500..ac2e300 100644 --- a/earwigbot/commands/chanops.py +++ b/earwigbot/commands/chanops.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 2072743..bd6222d 100644 --- a/earwigbot/commands/crypt.py +++ b/earwigbot/commands/crypt.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 0ed6412..a3ef267 100644 --- a/earwigbot/commands/ctcp.py +++ b/earwigbot/commands/ctcp.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/dictionary.py b/earwigbot/commands/dictionary.py index 407f5f3..54e68ea 100644 --- a/earwigbot/commands/dictionary.py +++ b/earwigbot/commands/dictionary.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 2adea14..be902cc 100644 --- a/earwigbot/commands/editcount.py +++ b/earwigbot/commands/editcount.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 7c9bd7f..6de7a3b 100644 --- a/earwigbot/commands/help.py +++ b/earwigbot/commands/help.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/lag.py b/earwigbot/commands/lag.py index cee0ee1..c2e8330 100644 --- a/earwigbot/commands/lag.py +++ b/earwigbot/commands/lag.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/langcode.py b/earwigbot/commands/langcode.py index 860c32e..d05736b 100644 --- a/earwigbot/commands/langcode.py +++ b/earwigbot/commands/langcode.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 858ff35..1f4c9a4 100644 --- a/earwigbot/commands/link.py +++ b/earwigbot/commands/link.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/notes.py b/earwigbot/commands/notes.py index a430ae7..d275561 100644 --- a/earwigbot/commands/notes.py +++ b/earwigbot/commands/notes.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/quit.py b/earwigbot/commands/quit.py index 0331d08..d5954b3 100644 --- a/earwigbot/commands/quit.py +++ b/earwigbot/commands/quit.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 74d2ce0..f45501c 100644 --- a/earwigbot/commands/registration.py +++ b/earwigbot/commands/registration.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 e8470cb..6018c16 100644 --- a/earwigbot/commands/remind.py +++ b/earwigbot/commands/remind.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 a54093a..749ee3c 100644 --- a/earwigbot/commands/rights.py +++ b/earwigbot/commands/rights.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 305ba74..32224ff 100644 --- a/earwigbot/commands/test.py +++ b/earwigbot/commands/test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 e878d09..9ac8b09 100644 --- a/earwigbot/commands/threads.py +++ b/earwigbot/commands/threads.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/time_command.py b/earwigbot/commands/time_command.py index b0dc657..3754986 100644 --- a/earwigbot/commands/time_command.py +++ b/earwigbot/commands/time_command.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/trout.py b/earwigbot/commands/trout.py index eb05db8..b8ea465 100644 --- a/earwigbot/commands/trout.py +++ b/earwigbot/commands/trout.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/__init__.py b/earwigbot/config/__init__.py index b89d310..9a91583 100644 --- a/earwigbot/config/__init__.py +++ b/earwigbot/config/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/formatter.py b/earwigbot/config/formatter.py index 561db21..cb74c0c 100644 --- a/earwigbot/config/formatter.py +++ b/earwigbot/config/formatter.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/node.py b/earwigbot/config/node.py index 82ffaa7..d3be3e5 100644 --- a/earwigbot/config/node.py +++ b/earwigbot/config/node.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/ordered_yaml.py b/earwigbot/config/ordered_yaml.py index 2c07b93..0fc1df6 100644 --- a/earwigbot/config/ordered_yaml.py +++ b/earwigbot/config/ordered_yaml.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/permissions.py b/earwigbot/config/permissions.py index 975f041..131fae2 100644 --- a/earwigbot/config/permissions.py +++ b/earwigbot/config/permissions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/script.py b/earwigbot/config/script.py index 0b35aed..35dfc38 100644 --- a/earwigbot/config/script.py +++ b/earwigbot/config/script.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/exceptions.py b/earwigbot/exceptions.py index c8389aa..546a9f9 100644 --- a/earwigbot/exceptions.py +++ b/earwigbot/exceptions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/irc/__init__.py b/earwigbot/irc/__init__.py index 4923c75..3fe86e9 100644 --- a/earwigbot/irc/__init__.py +++ b/earwigbot/irc/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/irc/connection.py b/earwigbot/irc/connection.py index 228b6a4..943823d 100644 --- a/earwigbot/irc/connection.py +++ b/earwigbot/irc/connection.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/irc/data.py b/earwigbot/irc/data.py index 2cf2dc8..6ff3213 100644 --- a/earwigbot/irc/data.py +++ b/earwigbot/irc/data.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/irc/frontend.py b/earwigbot/irc/frontend.py index b8582b0..ce63a6e 100644 --- a/earwigbot/irc/frontend.py +++ b/earwigbot/irc/frontend.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/irc/rc.py b/earwigbot/irc/rc.py index b913e7d..1c526b0 100644 --- a/earwigbot/irc/rc.py +++ b/earwigbot/irc/rc.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/irc/watcher.py b/earwigbot/irc/watcher.py index 22d15eb..469914f 100644 --- a/earwigbot/irc/watcher.py +++ b/earwigbot/irc/watcher.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/lazy.py b/earwigbot/lazy.py index b123e3c..5526478 100644 --- a/earwigbot/lazy.py +++ b/earwigbot/lazy.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/managers.py b/earwigbot/managers.py index c700e19..d72df54 100644 --- a/earwigbot/managers.py +++ b/earwigbot/managers.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 5e32f05..d3590a4 100644 --- a/earwigbot/tasks/__init__.py +++ b/earwigbot/tasks/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/wikiproject_tagger.py b/earwigbot/tasks/wikiproject_tagger.py index 1d7d30f..eecbff7 100644 --- a/earwigbot/tasks/wikiproject_tagger.py +++ b/earwigbot/tasks/wikiproject_tagger.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/util.py b/earwigbot/util.py index 2042f96..41f9eb6 100755 --- a/earwigbot/util.py +++ b/earwigbot/util.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 ba80570..7e1d0be 100644 --- a/earwigbot/wiki/__init__.py +++ b/earwigbot/wiki/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 33f4fd0..b8561a3 100644 --- a/earwigbot/wiki/category.py +++ b/earwigbot/wiki/category.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 b4adc36..39f1400 100644 --- a/earwigbot/wiki/constants.py +++ b/earwigbot/wiki/constants.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/copyvios/__init__.py b/earwigbot/wiki/copyvios/__init__.py index cd0d143..759f43c 100644 --- a/earwigbot/wiki/copyvios/__init__.py +++ b/earwigbot/wiki/copyvios/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/copyvios/exclusions.py b/earwigbot/wiki/copyvios/exclusions.py index 590f6ef..0cab1e3 100644 --- a/earwigbot/wiki/copyvios/exclusions.py +++ b/earwigbot/wiki/copyvios/exclusions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/copyvios/markov.py b/earwigbot/wiki/copyvios/markov.py index 6cf14ff..a785b6c 100644 --- a/earwigbot/wiki/copyvios/markov.py +++ b/earwigbot/wiki/copyvios/markov.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/copyvios/parsers.py b/earwigbot/wiki/copyvios/parsers.py index ec7fe68..30f0c7f 100644 --- a/earwigbot/wiki/copyvios/parsers.py +++ b/earwigbot/wiki/copyvios/parsers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/copyvios/result.py b/earwigbot/wiki/copyvios/result.py index d8da78f..94b2775 100644 --- a/earwigbot/wiki/copyvios/result.py +++ b/earwigbot/wiki/copyvios/result.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/copyvios/search.py b/earwigbot/wiki/copyvios/search.py index 91db646..1f2ac8c 100644 --- a/earwigbot/wiki/copyvios/search.py +++ b/earwigbot/wiki/copyvios/search.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 93a881b..ffcde15 100644 --- a/earwigbot/wiki/page.py +++ b/earwigbot/wiki/page.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 0d0cb0c..ec6002b 100644 --- a/earwigbot/wiki/site.py +++ b/earwigbot/wiki/site.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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/sitesdb.py b/earwigbot/wiki/sitesdb.py index 5b37f78..75cca0f 100644 --- a/earwigbot/wiki/sitesdb.py +++ b/earwigbot/wiki/sitesdb.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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 039b845..91bb523 100644 --- a/earwigbot/wiki/user.py +++ b/earwigbot/wiki/user.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2012 Ben Kurtovic +# Copyright (C) 2009-2013 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