diff options
Diffstat (limited to 'sleekxmpp/stanza')
-rw-r--r-- | sleekxmpp/stanza/__init__.py | 7 | ||||
-rw-r--r-- | sleekxmpp/stanza/error.py | 7 | ||||
-rw-r--r-- | sleekxmpp/stanza/htmlim.py | 7 | ||||
-rw-r--r-- | sleekxmpp/stanza/iq.py | 7 | ||||
-rw-r--r-- | sleekxmpp/stanza/message.py | 7 | ||||
-rw-r--r-- | sleekxmpp/stanza/nick.py | 7 | ||||
-rw-r--r-- | sleekxmpp/stanza/presence.py | 7 | ||||
-rw-r--r-- | sleekxmpp/stanza/rootstanza.py | 7 | ||||
-rw-r--r-- | sleekxmpp/stanza/roster.py | 7 |
9 files changed, 63 insertions, 0 deletions
diff --git a/sleekxmpp/stanza/__init__.py b/sleekxmpp/stanza/__init__.py index 765748ca..c3d8a318 100644 --- a/sleekxmpp/stanza/__init__.py +++ b/sleekxmpp/stanza/__init__.py @@ -1 +1,8 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file license.txt for copying permission. +""" __all__ = ['presence'] diff --git a/sleekxmpp/stanza/error.py b/sleekxmpp/stanza/error.py index 4cb7310a..a1454d1e 100644 --- a/sleekxmpp/stanza/error.py +++ b/sleekxmpp/stanza/error.py @@ -1,3 +1,10 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file license.txt for copying permission. +""" from .. xmlstream.stanzabase import ElementBase, ET class Error(ElementBase): diff --git a/sleekxmpp/stanza/htmlim.py b/sleekxmpp/stanza/htmlim.py index 24b68592..d2ccfd6a 100644 --- a/sleekxmpp/stanza/htmlim.py +++ b/sleekxmpp/stanza/htmlim.py @@ -1,3 +1,10 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file license.txt for copying permission. +""" from .. xmlstream.stanzabase import ElementBase, ET class HTMLIM(ElementBase): diff --git a/sleekxmpp/stanza/iq.py b/sleekxmpp/stanza/iq.py index e76280b4..8d91c83e 100644 --- a/sleekxmpp/stanza/iq.py +++ b/sleekxmpp/stanza/iq.py @@ -1,3 +1,10 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file license.txt for copying permission. +""" from .. xmlstream.stanzabase import StanzaBase from xml.etree import cElementTree as ET from . error import Error diff --git a/sleekxmpp/stanza/message.py b/sleekxmpp/stanza/message.py index f57ddbe0..9c2bf30e 100644 --- a/sleekxmpp/stanza/message.py +++ b/sleekxmpp/stanza/message.py @@ -1,3 +1,10 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file license.txt for copying permission. +""" from .. xmlstream.stanzabase import StanzaBase from xml.etree import cElementTree as ET from . error import Error diff --git a/sleekxmpp/stanza/nick.py b/sleekxmpp/stanza/nick.py index 83f7a07b..92a523d6 100644 --- a/sleekxmpp/stanza/nick.py +++ b/sleekxmpp/stanza/nick.py @@ -1,3 +1,10 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file license.txt for copying permission. +""" from .. xmlstream.stanzabase import ElementBase, ET class Nick(ElementBase): diff --git a/sleekxmpp/stanza/presence.py b/sleekxmpp/stanza/presence.py index a6319820..1149456f 100644 --- a/sleekxmpp/stanza/presence.py +++ b/sleekxmpp/stanza/presence.py @@ -1,3 +1,10 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file license.txt for copying permission. +""" from .. xmlstream.stanzabase import StanzaBase from xml.etree import cElementTree as ET from . error import Error diff --git a/sleekxmpp/stanza/rootstanza.py b/sleekxmpp/stanza/rootstanza.py index 72ba5ca9..9c147e40 100644 --- a/sleekxmpp/stanza/rootstanza.py +++ b/sleekxmpp/stanza/rootstanza.py @@ -1,3 +1,10 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file license.txt for copying permission. +""" from .. xmlstream.stanzabase import StanzaBase from xml.etree import cElementTree as ET from . error import Error diff --git a/sleekxmpp/stanza/roster.py b/sleekxmpp/stanza/roster.py index d8b61a5b..1fefc180 100644 --- a/sleekxmpp/stanza/roster.py +++ b/sleekxmpp/stanza/roster.py @@ -1,3 +1,10 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file license.txt for copying permission. +""" from .. xmlstream.stanzabase import ElementBase, ET, JID import logging |