diff --git a/docs/conf.py b/docs/conf.py index 552f339..4f639e4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,3 +1,23 @@ +""" +@file conf.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + # -*- coding: utf-8 -*- # # pyogp.lib.base documentation build configuration file, created by diff --git a/pyogp/__init__.py b/pyogp/__init__.py index f48ad10..44decae 100644 --- a/pyogp/__init__.py +++ b/pyogp/__init__.py @@ -1,3 +1,23 @@ +""" +@file __init__.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + # See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages try: __import__('pkg_resources').declare_namespace(__name__) diff --git a/pyogp/lib/__init__.py b/pyogp/lib/__init__.py index f48ad10..44decae 100644 --- a/pyogp/lib/__init__.py +++ b/pyogp/lib/__init__.py @@ -1,3 +1,23 @@ +""" +@file __init__.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + # See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages try: __import__('pkg_resources').declare_namespace(__name__) diff --git a/pyogp/lib/base/OGPLogin.py b/pyogp/lib/base/OGPLogin.py index 20d7f82..8dfd232 100644 --- a/pyogp/lib/base/OGPLogin.py +++ b/pyogp/lib/base/OGPLogin.py @@ -1,3 +1,23 @@ +""" +@file OGPLogin.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from pyogp.lib.base.credentials import PlainPasswordCredential from pyogp.lib.base.agentdomain import AgentDomain from pyogp.lib.base.regiondomain import Region diff --git a/pyogp/lib/base/__init__.py b/pyogp/lib/base/__init__.py index e69de29..eaf494e 100644 --- a/pyogp/lib/base/__init__.py +++ b/pyogp/lib/base/__init__.py @@ -0,0 +1,20 @@ +""" +@file __init__.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + diff --git a/pyogp/lib/base/agent.py b/pyogp/lib/base/agent.py index f250f96..90907e6 100644 --- a/pyogp/lib/base/agent.py +++ b/pyogp/lib/base/agent.py @@ -1,3 +1,23 @@ +""" +@file agent.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from zope.interface import implements from zope.component import adapts diff --git a/pyogp/lib/base/agentdomain.py b/pyogp/lib/base/agentdomain.py index 956ae99..4e997af 100644 --- a/pyogp/lib/base/agentdomain.py +++ b/pyogp/lib/base/agentdomain.py @@ -1,3 +1,23 @@ +""" +@file agentdomain.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + # std lib import urllib2 from logging import getLogger, CRITICAL, ERROR, WARNING, INFO, DEBUG diff --git a/pyogp/lib/base/api.py b/pyogp/lib/base/api.py index 68297b8..b187321 100644 --- a/pyogp/lib/base/api.py +++ b/pyogp/lib/base/api.py @@ -1,3 +1,23 @@ +""" +@file api.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + """ High level API """ diff --git a/pyogp/lib/base/avatar.py b/pyogp/lib/base/avatar.py index 1f8ebec..365f8d7 100644 --- a/pyogp/lib/base/avatar.py +++ b/pyogp/lib/base/avatar.py @@ -1,3 +1,23 @@ +""" +@file avatar.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + class Avatar(object): """an avatar - the agent representation in 3D on a region""" diff --git a/pyogp/lib/base/caps.py b/pyogp/lib/base/caps.py index 57a6216..b49dbb0 100644 --- a/pyogp/lib/base/caps.py +++ b/pyogp/lib/base/caps.py @@ -1,3 +1,23 @@ +""" +@file caps.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + # std lib import urllib2 from logging import getLogger, CRITICAL, ERROR, WARNING, INFO, DEBUG diff --git a/pyogp/lib/base/credentials.py b/pyogp/lib/base/credentials.py index 86da020..0007aec 100644 --- a/pyogp/lib/base/credentials.py +++ b/pyogp/lib/base/credentials.py @@ -1,3 +1,23 @@ +""" +@file credentials.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from zope.interface import implements from zope.component import adapts diff --git a/pyogp/lib/base/example.py b/pyogp/lib/base/example.py index 13014ef..89856b2 100644 --- a/pyogp/lib/base/example.py +++ b/pyogp/lib/base/example.py @@ -1,3 +1,23 @@ +""" +@file example.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + import uuid from threading import Thread import signal diff --git a/pyogp/lib/base/exc.py b/pyogp/lib/base/exc.py index d8c3e84..79d77ca 100644 --- a/pyogp/lib/base/exc.py +++ b/pyogp/lib/base/exc.py @@ -1,3 +1,23 @@ +""" +@file exc.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + """ Exceptions for the pyogp library diff --git a/pyogp/lib/base/interfaces.py b/pyogp/lib/base/interfaces.py index e6e7b2b..3f57678 100644 --- a/pyogp/lib/base/interfaces.py +++ b/pyogp/lib/base/interfaces.py @@ -1,3 +1,23 @@ +""" +@file interfaces.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from zope.interface import Interface, Attribute class ICredential(Interface): diff --git a/pyogp/lib/base/message/__init__.py b/pyogp/lib/base/message/__init__.py index f3f4482..52d0e61 100644 --- a/pyogp/lib/base/message/__init__.py +++ b/pyogp/lib/base/message/__init__.py @@ -1,3 +1,23 @@ +""" +@file __init__.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from interfaces import IUDPDispatcher from udpdispatcher import UDPDispatcher from zope.component import provideUtility diff --git a/pyogp/lib/base/message/circuit.py b/pyogp/lib/base/message/circuit.py index 9783be4..72b6344 100644 --- a/pyogp/lib/base/message/circuit.py +++ b/pyogp/lib/base/message/circuit.py @@ -1,3 +1,23 @@ +""" +@file circuit.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + import grokcore.component as grok from zope.interface import implements diff --git a/pyogp/lib/base/message/data/__init__.py b/pyogp/lib/base/message/data/__init__.py index 1536705..f378e25 100644 --- a/pyogp/lib/base/message/data/__init__.py +++ b/pyogp/lib/base/message/data/__init__.py @@ -1,3 +1,23 @@ +""" +@file __init__.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from pkg_resources import resource_stream, resource_string msg_tmpl = resource_stream(__name__, 'message_template.msg') diff --git a/pyogp/lib/base/message/data_packer.py b/pyogp/lib/base/message/data_packer.py index 27b988f..53679c4 100644 --- a/pyogp/lib/base/message/data_packer.py +++ b/pyogp/lib/base/message/data_packer.py @@ -1,3 +1,23 @@ +""" +@file data_packer.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + import struct from types import MsgType, EndianType diff --git a/pyogp/lib/base/message/data_unpacker.py b/pyogp/lib/base/message/data_unpacker.py index 272ccb9..91275e0 100644 --- a/pyogp/lib/base/message/data_unpacker.py +++ b/pyogp/lib/base/message/data_unpacker.py @@ -1,3 +1,23 @@ +""" +@file data_unpacker.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + import struct from uuid import UUID diff --git a/pyogp/lib/base/message/factory.py b/pyogp/lib/base/message/factory.py index c4d1ef1..95c10ad 100644 --- a/pyogp/lib/base/message/factory.py +++ b/pyogp/lib/base/message/factory.py @@ -1,3 +1,23 @@ +""" +@file factory.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + class MessageFactory(object): #not here, this goes somewhere else diff --git a/pyogp/lib/base/message/interfaces.py b/pyogp/lib/base/message/interfaces.py index 9efdbfa..e2fa451 100644 --- a/pyogp/lib/base/message/interfaces.py +++ b/pyogp/lib/base/message/interfaces.py @@ -1,3 +1,23 @@ +""" +@file interfaces.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from zope.interface import Interface, Attribute class ITemplateDictionary(Interface): diff --git a/pyogp/lib/base/message/llsd_builder.py b/pyogp/lib/base/message/llsd_builder.py index 56450b4..5ba0b06 100644 --- a/pyogp/lib/base/message/llsd_builder.py +++ b/pyogp/lib/base/message/llsd_builder.py @@ -1,3 +1,23 @@ +""" +@file llsd_builder.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #third party from zope.interface import implements diff --git a/pyogp/lib/base/message/llsd_sender.py b/pyogp/lib/base/message/llsd_sender.py index f90d588..3fdded8 100644 --- a/pyogp/lib/base/message/llsd_sender.py +++ b/pyogp/lib/base/message/llsd_sender.py @@ -1 +1,21 @@ +""" +@file llsd_sender.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #implentations of the HTTPSender diff --git a/pyogp/lib/base/message/message.py b/pyogp/lib/base/message/message.py index 6e90bcb..7f73327 100644 --- a/pyogp/lib/base/message/message.py +++ b/pyogp/lib/base/message/message.py @@ -1,3 +1,23 @@ +""" +@file message.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from template import MsgData, MsgBlockData, MsgVariableData #NOTE: right now there is no checking with the template diff --git a/pyogp/lib/base/message/packet.py b/pyogp/lib/base/message/packet.py index d3dc31d..a8b494f 100644 --- a/pyogp/lib/base/message/packet.py +++ b/pyogp/lib/base/message/packet.py @@ -1,3 +1,23 @@ +""" +@file packet.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + import grokcore.component as grok from types import PackFlags diff --git a/pyogp/lib/base/message/template_dict.py b/pyogp/lib/base/message/template_dict.py index 4b01bbc..24f319f 100644 --- a/pyogp/lib/base/message/template_dict.py +++ b/pyogp/lib/base/message/template_dict.py @@ -1,3 +1,23 @@ +""" +@file template_dict.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from types import MsgFrequency from interfaces import ITemplateDictionary import grokcore.component as grok diff --git a/pyogp/lib/base/message/template_parser.py b/pyogp/lib/base/message/template_parser.py index 1511e40..cf04640 100644 --- a/pyogp/lib/base/message/template_parser.py +++ b/pyogp/lib/base/message/template_parser.py @@ -1,3 +1,23 @@ +""" +@file template_parser.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #standard libraries import struct import string diff --git a/pyogp/lib/base/message/tests/__init__.py b/pyogp/lib/base/message/tests/__init__.py index e69de29..eaf494e 100644 --- a/pyogp/lib/base/message/tests/__init__.py +++ b/pyogp/lib/base/message/tests/__init__.py @@ -0,0 +1,20 @@ +""" +@file __init__.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + diff --git a/pyogp/lib/base/message/tests/packet_test.py b/pyogp/lib/base/message/tests/packet_test.py index 568678a..0c3cdaf 100644 --- a/pyogp/lib/base/message/tests/packet_test.py +++ b/pyogp/lib/base/message/tests/packet_test.py @@ -1,3 +1,23 @@ +""" +@file packet_test.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + import unittest class PacketTest(unittest.TestCase): diff --git a/pyogp/lib/base/message/tests/test_circuits.py b/pyogp/lib/base/message/tests/test_circuits.py index 2ba285d..f00350c 100644 --- a/pyogp/lib/base/message/tests/test_circuits.py +++ b/pyogp/lib/base/message/tests/test_circuits.py @@ -1,3 +1,23 @@ +""" +@file test_circuits.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #standard libraries import unittest, doctest import pprint diff --git a/pyogp/lib/base/message/tests/test_llsd_builder.py b/pyogp/lib/base/message/tests/test_llsd_builder.py index aaca2b5..621fe73 100644 --- a/pyogp/lib/base/message/tests/test_llsd_builder.py +++ b/pyogp/lib/base/message/tests/test_llsd_builder.py @@ -1,3 +1,23 @@ +""" +@file test_llsd_builder.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #standard libraries import unittest, doctest diff --git a/pyogp/lib/base/message/tests/test_message_wrapper.py b/pyogp/lib/base/message/tests/test_message_wrapper.py index 49d6c07..fc1a247 100644 --- a/pyogp/lib/base/message/tests/test_message_wrapper.py +++ b/pyogp/lib/base/message/tests/test_message_wrapper.py @@ -1,3 +1,23 @@ +""" +@file test_message_wrapper.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #standard libraries import unittest, doctest from uuid import UUID diff --git a/pyogp/lib/base/message/tests/test_packetdata.py b/pyogp/lib/base/message/tests/test_packetdata.py index 0601ca5..c8ca250 100644 --- a/pyogp/lib/base/message/tests/test_packetdata.py +++ b/pyogp/lib/base/message/tests/test_packetdata.py @@ -1,3 +1,23 @@ +""" +@file test_packetdata.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #standard libraries import unittest, doctest import pprint diff --git a/pyogp/lib/base/message/tests/test_template_parser.py b/pyogp/lib/base/message/tests/test_template_parser.py index ff6c9b5..6977508 100644 --- a/pyogp/lib/base/message/tests/test_template_parser.py +++ b/pyogp/lib/base/message/tests/test_template_parser.py @@ -1,3 +1,23 @@ +""" +@file test_template_parser.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #standard libraries import unittest, doctest diff --git a/pyogp/lib/base/message/tests/test_udp_deserializer.py b/pyogp/lib/base/message/tests/test_udp_deserializer.py index 6a95b7a..c165326 100644 --- a/pyogp/lib/base/message/tests/test_udp_deserializer.py +++ b/pyogp/lib/base/message/tests/test_udp_deserializer.py @@ -1,3 +1,23 @@ +""" +@file test_udp_deserializer.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #standard libraries import unittest, doctest from uuid import UUID diff --git a/pyogp/lib/base/message/tests/test_udp_serializer.py b/pyogp/lib/base/message/tests/test_udp_serializer.py index 3235647..65f6446 100644 --- a/pyogp/lib/base/message/tests/test_udp_serializer.py +++ b/pyogp/lib/base/message/tests/test_udp_serializer.py @@ -1,3 +1,23 @@ +""" +@file test_udp_serializer.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #standard libraries import unittest, doctest from uuid import UUID diff --git a/pyogp/lib/base/message/tests/test_udpconnection.py b/pyogp/lib/base/message/tests/test_udpconnection.py index f59b478..1221d78 100644 --- a/pyogp/lib/base/message/tests/test_udpconnection.py +++ b/pyogp/lib/base/message/tests/test_udpconnection.py @@ -1,3 +1,23 @@ +""" +@file test_udpconnection.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #standard libraries import unittest, doctest import pprint diff --git a/pyogp/lib/base/message/types.py b/pyogp/lib/base/message/types.py index 8d2a82b..c4e41de 100644 --- a/pyogp/lib/base/message/types.py +++ b/pyogp/lib/base/message/types.py @@ -1,3 +1,23 @@ +""" +@file types.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #represents how much of a message is taken up by packet ID things, such as #the packet flags and the sequence number. After the ID, then comes the header diff --git a/pyogp/lib/base/message/udpdeserializer.py b/pyogp/lib/base/message/udpdeserializer.py index f448fef..ab204ce 100644 --- a/pyogp/lib/base/message/udpdeserializer.py +++ b/pyogp/lib/base/message/udpdeserializer.py @@ -1,3 +1,23 @@ +""" +@file udpdeserializer.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #standard libs import struct diff --git a/pyogp/lib/base/message/udpdispatcher.py b/pyogp/lib/base/message/udpdispatcher.py index d6f6332..5b8edb4 100644 --- a/pyogp/lib/base/message/udpdispatcher.py +++ b/pyogp/lib/base/message/udpdispatcher.py @@ -1,3 +1,23 @@ +""" +@file udpdispatcher.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from zope.interface import implements from zope.component import getUtility from pyogp.lib.base.network.interfaces import IUDPClient diff --git a/pyogp/lib/base/message/udpserializer.py b/pyogp/lib/base/message/udpserializer.py index 6d9500c..5f94979 100644 --- a/pyogp/lib/base/message/udpserializer.py +++ b/pyogp/lib/base/message/udpserializer.py @@ -1,3 +1,23 @@ +""" +@file udpserializer.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + #standard libs import struct import grokcore.component as grok diff --git a/pyogp/lib/base/network/__init__.py b/pyogp/lib/base/network/__init__.py index 6c8c582..5953335 100644 --- a/pyogp/lib/base/network/__init__.py +++ b/pyogp/lib/base/network/__init__.py @@ -1,3 +1,23 @@ +""" +@file __init__.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from stdlib_client import StdLibClient from mockup_client import MockupClient diff --git a/pyogp/lib/base/network/exc.py b/pyogp/lib/base/network/exc.py index 206503f..61bd1fe 100644 --- a/pyogp/lib/base/network/exc.py +++ b/pyogp/lib/base/network/exc.py @@ -1,3 +1,23 @@ +""" +@file exc.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + class HTTPError(Exception): """an HTTP error""" diff --git a/pyogp/lib/base/network/interfaces.py b/pyogp/lib/base/network/interfaces.py index e9698ac..4a77aef 100644 --- a/pyogp/lib/base/network/interfaces.py +++ b/pyogp/lib/base/network/interfaces.py @@ -1,3 +1,23 @@ +""" +@file interfaces.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from zope.interface import Interface, Attribute class IUDPClient(Interface): diff --git a/pyogp/lib/base/network/mockup_client.py b/pyogp/lib/base/network/mockup_client.py index 6971668..b497fcd 100644 --- a/pyogp/lib/base/network/mockup_client.py +++ b/pyogp/lib/base/network/mockup_client.py @@ -1,3 +1,23 @@ +""" +@file mockup_client.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from zope.interface import implements import urlparse diff --git a/pyogp/lib/base/network/mockup_net.py b/pyogp/lib/base/network/mockup_net.py index 7c6cb91..a745a1d 100644 --- a/pyogp/lib/base/network/mockup_net.py +++ b/pyogp/lib/base/network/mockup_net.py @@ -1,3 +1,23 @@ +""" +@file mockup_net.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + import socket import random diff --git a/pyogp/lib/base/network/net.py b/pyogp/lib/base/network/net.py index 849a5d4..f530b20 100644 --- a/pyogp/lib/base/network/net.py +++ b/pyogp/lib/base/network/net.py @@ -1,3 +1,23 @@ +""" +@file net.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + import socket from zope.interface import implements diff --git a/pyogp/lib/base/network/stdlib_client.py b/pyogp/lib/base/network/stdlib_client.py index 49ea776..a041bd9 100644 --- a/pyogp/lib/base/network/stdlib_client.py +++ b/pyogp/lib/base/network/stdlib_client.py @@ -1,3 +1,23 @@ +""" +@file stdlib_client.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from zope.interface import implements import urllib2 diff --git a/pyogp/lib/base/network/tests/__init__.py b/pyogp/lib/base/network/tests/__init__.py index e69de29..eaf494e 100644 --- a/pyogp/lib/base/network/tests/__init__.py +++ b/pyogp/lib/base/network/tests/__init__.py @@ -0,0 +1,20 @@ +""" +@file __init__.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + diff --git a/pyogp/lib/base/network/tests/testDocTests.py b/pyogp/lib/base/network/tests/testDocTests.py index f22fe0b..49a4d05 100644 --- a/pyogp/lib/base/network/tests/testDocTests.py +++ b/pyogp/lib/base/network/tests/testDocTests.py @@ -1,3 +1,23 @@ +""" +@file testDocTests.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + import unittest import doctest diff --git a/pyogp/lib/base/regiondomain.py b/pyogp/lib/base/regiondomain.py index 4a92c8b..253fad1 100644 --- a/pyogp/lib/base/regiondomain.py +++ b/pyogp/lib/base/regiondomain.py @@ -1,3 +1,23 @@ +""" +@file regiondomain.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + # std lib from logging import getLogger, CRITICAL, ERROR, WARNING, INFO, DEBUG diff --git a/pyogp/lib/base/registration.py b/pyogp/lib/base/registration.py index b4d4c2c..d7eeb47 100644 --- a/pyogp/lib/base/registration.py +++ b/pyogp/lib/base/registration.py @@ -1,3 +1,23 @@ +""" +@file registration.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from zope.configuration.xmlconfig import xmlconfig def init(): diff --git a/pyogp/lib/base/tests/__init__.py b/pyogp/lib/base/tests/__init__.py index e69de29..eaf494e 100644 --- a/pyogp/lib/base/tests/__init__.py +++ b/pyogp/lib/base/tests/__init__.py @@ -0,0 +1,20 @@ +""" +@file __init__.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + diff --git a/pyogp/lib/base/tests/base.py b/pyogp/lib/base/tests/base.py index 8cc952c..12635d2 100644 --- a/pyogp/lib/base/tests/base.py +++ b/pyogp/lib/base/tests/base.py @@ -1,3 +1,23 @@ +""" +@file base.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + import BaseHTTPServer from indra.base import llsd from webob import Request, Response diff --git a/pyogp/lib/base/tests/testDocTests.py b/pyogp/lib/base/tests/testDocTests.py index 643d757..8d4c02c 100644 --- a/pyogp/lib/base/tests/testDocTests.py +++ b/pyogp/lib/base/tests/testDocTests.py @@ -1,3 +1,23 @@ +""" +@file testDocTests.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + import unittest import doctest diff --git a/setup.cfg b/setup.cfg index 01bb954..ea15afe 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,23 @@ +""" +@file setup.cfg +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + [egg_info] tag_build = dev tag_svn_revision = true diff --git a/setup.py b/setup.py index f708a44..9613b4c 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,23 @@ +""" +@file setup.py +@date 2008-09-16 +Contributors can be viewed at: +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt + +$LicenseInfo:firstyear=2008&license=apachev2$ + +Copyright 2008, Linden Research, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 +or in +http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt + +$/LicenseInfo$ +""" + from setuptools import setup, find_packages import os