2008-09-16 06:26:17 +00:00
|
|
|
"""
|
|
|
|
|
@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$
|
|
|
|
|
"""
|
|
|
|
|
|
2008-08-01 13:50:11 +00:00
|
|
|
from pkg_resources import resource_stream, resource_string
|
2008-07-16 15:21:03 +00:00
|
|
|
|
2008-07-16 17:17:04 +00:00
|
|
|
msg_tmpl = resource_stream(__name__, 'message_template.msg')
|
2008-08-01 13:50:11 +00:00
|
|
|
msg_details = resource_string(__name__, 'message.xml')
|