aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/scripts
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:11 -0500
committerJacek Antonelli2008-08-15 23:45:11 -0500
commit215f423cbe18fe9ca14a26caef918d303bad28ff (patch)
tree0743442b286216cc8e19aa487c26f4e9345ffd64 /linden/scripts
parentSecond Life viewer sources 1.18.3.5-RC (diff)
downloadmeta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.zip
meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.gz
meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.bz2
meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.xz
Second Life viewer sources 1.18.4.0-RC
Diffstat (limited to '')
-rw-r--r--linden/scripts/messages/message_template.msg27
-rwxr-xr-xlinden/scripts/setup-path.py57
-rwxr-xr-xlinden/scripts/template_verifier.py55
3 files changed, 86 insertions, 53 deletions
diff --git a/linden/scripts/messages/message_template.msg b/linden/scripts/messages/message_template.msg
index 4572941..7aabb78 100644
--- a/linden/scripts/messages/message_template.msg
+++ b/linden/scripts/messages/message_template.msg
@@ -3038,7 +3038,7 @@ version 2.0
3038// and where someone you are tracking is located. They are -1 if not 3038// and where someone you are tracking is located. They are -1 if not
3039// applicable. 3039// applicable.
3040{ 3040{
3041 CoarseLocationUpdate Medium 6 Trusted Unencoded 3041 CoarseLocationUpdate Medium 6 Trusted Unencoded UDPDeprecated
3042 { 3042 {
3043 Location Variable 3043 Location Variable
3044 { X U8 } 3044 { X U8 }
@@ -3783,6 +3783,10 @@ version 2.0
3783 { GroupName Variable 1 } 3783 { GroupName Variable 1 }
3784 { GroupInsigniaID LLUUID } 3784 { GroupInsigniaID LLUUID }
3785 } 3785 }
3786 {
3787 NewGroupData Single
3788 { ListInProfile BOOL } // whether group displays in profile
3789 }
3786} 3790}
3787 3791
3788 3792
@@ -7823,6 +7827,10 @@ version 2.0
7823 { GroupID LLUUID } 7827 { GroupID LLUUID }
7824 { AcceptNotices BOOL } 7828 { AcceptNotices BOOL }
7825 } 7829 }
7830 {
7831 NewData Single
7832 { ListInProfile BOOL }
7833 }
7826} 7834}
7827 7835
7828// GroupRoleDataRequest 7836// GroupRoleDataRequest
@@ -8140,7 +8148,7 @@ version 2.0
8140// dataserver -> simulator -> viewer 8148// dataserver -> simulator -> viewer
8141// reliable 8149// reliable
8142{ 8150{
8143 AgentGroupDataUpdate Low 389 Trusted Zerocoded 8151 AgentGroupDataUpdate Low 389 Trusted Zerocoded UDPDeprecated
8144 { 8152 {
8145 AgentData Single 8153 AgentData Single
8146 { AgentID LLUUID } 8154 { AgentID LLUUID }
@@ -8763,3 +8771,18 @@ version 2.0
8763 } 8771 }
8764} 8772}
8765 8773
8774// ObjectIncludeInSearch
8775// viewer -> simulator
8776{
8777 ObjectIncludeInSearch Low 424 NotTrusted Unencoded
8778 {
8779 AgentData Single
8780 { AgentID LLUUID }
8781 { SessionID LLUUID }
8782 }
8783 {
8784 ObjectData Variable
8785 { ObjectLocalID U32 }
8786 { IncludeInSearch BOOL }
8787 }
8788}
diff --git a/linden/scripts/setup-path.py b/linden/scripts/setup-path.py
index 30048ba..87600e3 100755
--- a/linden/scripts/setup-path.py
+++ b/linden/scripts/setup-path.py
@@ -1,30 +1,35 @@
1#!/usr/bin/python 1#!/usr/bin/python
2# @file setup-path.py 2"""\
3# @brief Get the python library directory in the path, so we don't have 3@file setup-path.py
4# to screw with PYTHONPATH or symbolic links. 4@brief Get the python library directory in the path, so we don't have
5# 5to screw with PYTHONPATH or symbolic links.
6# Copyright (c) 2007-2007, Linden Research, Inc. 6
7# 7$LicenseInfo:firstyear=2007&license=viewergpl$
8# Second Life Viewer Source Code 8
9# The source code in this file ("Source Code") is provided by Linden Lab 9Copyright (c) 2007, Linden Research, Inc.
10# to you under the terms of the GNU General Public License, version 2.0 10
11# ("GPL"), unless you have obtained a separate licensing agreement 11Second Life Viewer Source Code
12# ("Other License"), formally executed by you and Linden Lab. Terms of 12The source code in this file ("Source Code") is provided by Linden Lab
13# the GPL can be found in doc/GPL-license.txt in this distribution, or 13to you under the terms of the GNU General Public License, version 2.0
14# online at http://secondlife.com/developers/opensource/gplv2 14("GPL"), unless you have obtained a separate licensing agreement
15# 15("Other License"), formally executed by you and Linden Lab. Terms of
16# There are special exceptions to the terms and conditions of the GPL as 16the GPL can be found in doc/GPL-license.txt in this distribution, or
17# it is applied to this Source Code. View the full text of the exception 17online at http://secondlife.com/developers/opensource/gplv2
18# in the file doc/FLOSS-exception.txt in this software distribution, or 18
19# online at http://secondlife.com/developers/opensource/flossexception 19There are special exceptions to the terms and conditions of the GPL as
20# 20it is applied to this Source Code. View the full text of the exception
21# By copying, modifying or distributing this software, you acknowledge 21in the file doc/FLOSS-exception.txt in this software distribution, or
22# that you have read and understood your obligations described above, 22online at http://secondlife.com/developers/opensource/flossexception
23# and agree to abide by those obligations. 23
24# 24By copying, modifying or distributing this software, you acknowledge
25# ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO 25that you have read and understood your obligations described above,
26# WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, 26and agree to abide by those obligations.
27# COMPLETENESS OR PERFORMANCE. 27
28ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
29WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
30COMPLETENESS OR PERFORMANCE.
31$/LicenseInfo$
32"""
28 33
29import sys 34import sys
30from os.path import realpath, dirname, join 35from os.path import realpath, dirname, join
diff --git a/linden/scripts/template_verifier.py b/linden/scripts/template_verifier.py
index 68d82ca..ac814ae 100755
--- a/linden/scripts/template_verifier.py
+++ b/linden/scripts/template_verifier.py
@@ -1,29 +1,34 @@
1#!/usr/bin/python 1#!/usr/bin/python
2# @file template_verifier.py 2"""\
3# @brief Message template compatibility verifier. 3@file template_verifier.py
4# 4@brief Message template compatibility verifier.
5# Copyright (c) 2007-2007, Linden Research, Inc. 5
6# 6$LicenseInfo:firstyear=2007&license=viewergpl$
7# Second Life Viewer Source Code 7
8# The source code in this file ("Source Code") is provided by Linden Lab 8Copyright (c) 2007, Linden Research, Inc.
9# to you under the terms of the GNU General Public License, version 2.0 9
10# ("GPL"), unless you have obtained a separate licensing agreement 10Second Life Viewer Source Code
11# ("Other License"), formally executed by you and Linden Lab. Terms of 11The source code in this file ("Source Code") is provided by Linden Lab
12# the GPL can be found in doc/GPL-license.txt in this distribution, or 12to you under the terms of the GNU General Public License, version 2.0
13# online at http://secondlife.com/developers/opensource/gplv2 13("GPL"), unless you have obtained a separate licensing agreement
14# 14("Other License"), formally executed by you and Linden Lab. Terms of
15# There are special exceptions to the terms and conditions of the GPL as 15the GPL can be found in doc/GPL-license.txt in this distribution, or
16# it is applied to this Source Code. View the full text of the exception 16online at http://secondlife.com/developers/opensource/gplv2
17# in the file doc/FLOSS-exception.txt in this software distribution, or 17
18# online at http://secondlife.com/developers/opensource/flossexception 18There are special exceptions to the terms and conditions of the GPL as
19# 19it is applied to this Source Code. View the full text of the exception
20# By copying, modifying or distributing this software, you acknowledge 20in the file doc/FLOSS-exception.txt in this software distribution, or
21# that you have read and understood your obligations described above, 21online at http://secondlife.com/developers/opensource/flossexception
22# and agree to abide by those obligations. 22
23# 23By copying, modifying or distributing this software, you acknowledge
24# ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO 24that you have read and understood your obligations described above,
25# WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, 25and agree to abide by those obligations.
26# COMPLETENESS OR PERFORMANCE. 26
27ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
28WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
29COMPLETENESS OR PERFORMANCE.
30$/LicenseInfo$
31"""
27 32
28"""template_verifier is a script which will compare the 33"""template_verifier is a script which will compare the
29current repository message template with the "master" message template, accessible 34current repository message template with the "master" message template, accessible