diff options
author | Nathan Fritz <nathan@andyet.net> | 2010-03-26 14:32:16 -0700 |
---|---|---|
committer | Nathan Fritz <nathan@andyet.net> | 2010-03-26 14:32:16 -0700 |
commit | 935ee4d14e80899fa45bb3d9296e123f642cc413 (patch) | |
tree | 93cb9dc52bef78a7979dae1f48a7637614fdbeb3 /sleekxmpp/stanza | |
parent | bf5dc0f7b89dfd59f062b799cd830366003558c2 (diff) | |
download | slixmpp-935ee4d14e80899fa45bb3d9296e123f642cc413.tar.gz slixmpp-935ee4d14e80899fa45bb3d9296e123f642cc413.tar.bz2 slixmpp-935ee4d14e80899fa45bb3d9296e123f642cc413.tar.xz slixmpp-935ee4d14e80899fa45bb3d9296e123f642cc413.zip |
changed license to MITsleek-0.9RC10.9RC1
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 |