Procházet zdrojové kódy

Cleaning up project-wide copyright notices.

tags/v0.1^2
Ben Kurtovic před 12 roky
rodič
revize
6be8fb48dd
62 změnil soubory, kde provedl 63 přidání a 63 odebrání
  1. +1
    -1
      LICENSE
  2. +1
    -1
      docs/conf.py
  3. +2
    -2
      earwigbot/__init__.py
  4. +1
    -1
      earwigbot/bot.py
  5. +1
    -1
      earwigbot/commands/__init__.py
  6. +1
    -1
      earwigbot/commands/afc_pending.py
  7. +1
    -1
      earwigbot/commands/afc_report.py
  8. +1
    -1
      earwigbot/commands/afc_status.py
  9. +1
    -1
      earwigbot/commands/afc_submissions.py
  10. +1
    -1
      earwigbot/commands/calc.py
  11. +1
    -1
      earwigbot/commands/chanops.py
  12. +1
    -1
      earwigbot/commands/crypt.py
  13. +1
    -1
      earwigbot/commands/ctcp.py
  14. +1
    -1
      earwigbot/commands/editcount.py
  15. +1
    -1
      earwigbot/commands/geolocate.py
  16. +1
    -1
      earwigbot/commands/git.py
  17. +1
    -1
      earwigbot/commands/help.py
  18. +1
    -1
      earwigbot/commands/langcode.py
  19. +1
    -1
      earwigbot/commands/link.py
  20. +1
    -1
      earwigbot/commands/notes.py
  21. +1
    -1
      earwigbot/commands/praise.py
  22. +1
    -1
      earwigbot/commands/quit.py
  23. +1
    -1
      earwigbot/commands/registration.py
  24. +1
    -1
      earwigbot/commands/remind.py
  25. +1
    -1
      earwigbot/commands/replag.py
  26. +1
    -1
      earwigbot/commands/rights.py
  27. +1
    -1
      earwigbot/commands/test.py
  28. +1
    -1
      earwigbot/commands/threads.py
  29. +1
    -1
      earwigbot/commands/time.py
  30. +1
    -1
      earwigbot/commands/trout.py
  31. +1
    -1
      earwigbot/config.py
  32. +1
    -1
      earwigbot/exceptions.py
  33. +1
    -1
      earwigbot/irc/__init__.py
  34. +1
    -1
      earwigbot/irc/connection.py
  35. +1
    -1
      earwigbot/irc/data.py
  36. +1
    -1
      earwigbot/irc/frontend.py
  37. +1
    -1
      earwigbot/irc/rc.py
  38. +1
    -1
      earwigbot/irc/watcher.py
  39. +1
    -1
      earwigbot/managers.py
  40. +1
    -1
      earwigbot/tasks/__init__.py
  41. +1
    -1
      earwigbot/tasks/afc_catdelink.py
  42. +1
    -1
      earwigbot/tasks/afc_copyvios.py
  43. +1
    -1
      earwigbot/tasks/afc_dailycats.py
  44. +1
    -1
      earwigbot/tasks/afc_history.py
  45. +1
    -1
      earwigbot/tasks/afc_statistics.py
  46. +1
    -1
      earwigbot/tasks/afc_undated.py
  47. +1
    -1
      earwigbot/tasks/blp_tag.py
  48. +1
    -1
      earwigbot/tasks/image_display_resize.py
  49. +1
    -1
      earwigbot/tasks/wikiproject_tagger.py
  50. +1
    -1
      earwigbot/tasks/wrong_mime.py
  51. +1
    -1
      earwigbot/util.py
  52. +1
    -1
      earwigbot/wiki/__init__.py
  53. +1
    -1
      earwigbot/wiki/category.py
  54. +1
    -1
      earwigbot/wiki/constants.py
  55. +1
    -1
      earwigbot/wiki/page.py
  56. +1
    -1
      earwigbot/wiki/site.py
  57. +1
    -1
      earwigbot/wiki/sitesdb.py
  58. +1
    -1
      earwigbot/wiki/user.py
  59. +1
    -1
      setup.py
  60. +1
    -1
      tests/__init__.py
  61. +1
    -1
      tests/test_calc.py
  62. +1
    -1
      tests/test_test.py

+ 1
- 1
LICENSE Zobrazit soubor

@@ -1,4 +1,4 @@
Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>


Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
docs/conf.py Zobrazit soubor

@@ -41,7 +41,7 @@ master_doc = 'index'


# General information about the project. # General information about the project.
project = u'EarwigBot' project = u'EarwigBot'
copyright = u'2009, 2010, 2011, 2012 by Ben Kurtovic'
copyright = u'2009, 2010, 2011, 2012 Ben Kurtovic'


# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the


+ 2
- 2
earwigbot/__init__.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # 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" __author__ = "Ben Kurtovic"
__copyright__ = "Copyright (C) 2009, 2010, 2011, 2012 by Ben Kurtovic"
__copyright__ = "Copyright (C) 2009, 2010, 2011, 2012 Ben Kurtovic"
__license__ = "MIT License" __license__ = "MIT License"
__version__ = "0.1.dev" __version__ = "0.1.dev"
__email__ = "ben.kurtovic@verizon.net" __email__ = "ben.kurtovic@verizon.net"


+ 1
- 1
earwigbot/bot.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/__init__.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/afc_pending.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/afc_report.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/afc_status.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/afc_submissions.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/calc.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/chanops.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/crypt.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/ctcp.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/editcount.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/geolocate.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/git.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/help.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/langcode.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/link.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/notes.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/praise.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/quit.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/registration.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/remind.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/replag.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/rights.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/test.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/threads.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/time.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/commands/trout.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/config.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/exceptions.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/irc/__init__.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/irc/connection.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/irc/data.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/irc/frontend.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/irc/rc.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/irc/watcher.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/managers.py Zobrazit soubor

@@ -1,7 +1,7 @@
#! /usr/bin/env python #! /usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/tasks/__init__.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/tasks/afc_catdelink.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/tasks/afc_copyvios.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/tasks/afc_dailycats.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/tasks/afc_history.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/tasks/afc_statistics.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/tasks/afc_undated.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/tasks/blp_tag.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/tasks/image_display_resize.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/tasks/wikiproject_tagger.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/tasks/wrong_mime.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/util.py Zobrazit soubor

@@ -1,7 +1,7 @@
#! /usr/bin/env python #! /usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/wiki/__init__.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/wiki/category.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/wiki/constants.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/wiki/page.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/wiki/site.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/wiki/sitesdb.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
earwigbot/wiki/user.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
setup.py Zobrazit soubor

@@ -1,7 +1,7 @@
#! /usr/bin/env python #! /usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
tests/__init__.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
tests/test_calc.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
tests/test_test.py Zobrazit soubor

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Copyright (C) 2009-2012 by Ben Kurtovic <ben.kurtovic@verizon.net>
# Copyright (C) 2009-2012 Ben Kurtovic <ben.kurtovic@verizon.net>
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal


Načítá se…
Zrušit
Uložit