diff options
author | Jacek Antonelli | 2008-08-15 23:45:11 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:11 -0500 |
commit | 215f423cbe18fe9ca14a26caef918d303bad28ff (patch) | |
tree | 0743442b286216cc8e19aa487c26f4e9345ffd64 /linden/scripts | |
parent | Second Life viewer sources 1.18.3.5-RC (diff) | |
download | meta-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.msg | 27 | ||||
-rwxr-xr-x | linden/scripts/setup-path.py | 57 | ||||
-rwxr-xr-x | linden/scripts/template_verifier.py | 55 |
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 | # | 5 | to 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 | 9 | Copyright (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 | 11 | Second Life Viewer Source Code |
12 | # ("Other License"), formally executed by you and Linden Lab. Terms of | 12 | The 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 | 13 | to 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 | 16 | the 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 | 17 | online 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 | 19 | There are special exceptions to the terms and conditions of the GPL as |
20 | # | 20 | it is applied to this Source Code. View the full text of the exception |
21 | # By copying, modifying or distributing this software, you acknowledge | 21 | in the file doc/FLOSS-exception.txt in this software distribution, or |
22 | # that you have read and understood your obligations described above, | 22 | online at http://secondlife.com/developers/opensource/flossexception |
23 | # and agree to abide by those obligations. | 23 | |
24 | # | 24 | By copying, modifying or distributing this software, you acknowledge |
25 | # ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | 25 | that you have read and understood your obligations described above, |
26 | # WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | 26 | and agree to abide by those obligations. |
27 | # COMPLETENESS OR PERFORMANCE. | 27 | |
28 | ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | ||
29 | WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | ||
30 | COMPLETENESS OR PERFORMANCE. | ||
31 | $/LicenseInfo$ | ||
32 | """ | ||
28 | 33 | ||
29 | import sys | 34 | import sys |
30 | from os.path import realpath, dirname, join | 35 | from 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 | 8 | Copyright (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 | 10 | Second Life Viewer Source Code |
11 | # ("Other License"), formally executed by you and Linden Lab. Terms of | 11 | The 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 | 12 | to 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 | 15 | the 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 | 16 | online 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 | 18 | There are special exceptions to the terms and conditions of the GPL as |
19 | # | 19 | it is applied to this Source Code. View the full text of the exception |
20 | # By copying, modifying or distributing this software, you acknowledge | 20 | in the file doc/FLOSS-exception.txt in this software distribution, or |
21 | # that you have read and understood your obligations described above, | 21 | online at http://secondlife.com/developers/opensource/flossexception |
22 | # and agree to abide by those obligations. | 22 | |
23 | # | 23 | By copying, modifying or distributing this software, you acknowledge |
24 | # ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | 24 | that you have read and understood your obligations described above, |
25 | # WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | 25 | and agree to abide by those obligations. |
26 | # COMPLETENESS OR PERFORMANCE. | 26 | |
27 | ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | ||
28 | WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | ||
29 | COMPLETENESS 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 |
29 | current repository message template with the "master" message template, accessible | 34 | current repository message template with the "master" message template, accessible |