diff options
author | Lynx Linden <lynx@lindenlab.com> | 2010-02-26 11:29:54 +0000 |
---|---|---|
committer | Lynx Linden <lynx@lindenlab.com> | 2010-02-26 11:29:54 +0000 |
commit | 31d4813a95fa731baec31ecc62da7d135e4a054f (patch) | |
tree | de242ef925dc4414de1cd4994b8c846e91936875 /indra/newview/app_settings | |
parent | 0faa004aa11cca9b60dfe8c176a0f407e880d809 (diff) |
EXT-5480: Send viewer version info to Search server.
Added the following query parameters to the URL that is sent to the
search web server. This will allow them to do version-specific content
if necessary (such as using secondlife:///app/region for viewer's that
support it).
* channel = the viewer channel name, e.g. "Second Life Beta Viewer"
* version = the full version string, e.g. "2.0.0.2001234"
* major = the viewer major version number, e.g., "2"
* minor = the viewer major version number, e.g., "0"
* patch = the viewer major version number, e.g., "0"
* build = the viewer major version number, e.g., "2001234"
Diffstat (limited to 'indra/newview/app_settings')
-rw-r--r-- | indra/newview/app_settings/settings.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 4210760223..f87cdbc43e 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -3607,7 +3607,7 @@ <key>Type</key> <string>String</string> <key>Value</key> - <string>https://viewer-sidebar.secondlife.com/sidebar.html?p=[AUTH_TOKEN]&lang=[LANGUAGE]&channel=[CHANNEL]&version=[VERSION]&major=[VERSION_MAJOR]&minor=[VERSION_MINOR]&firstlogin=[FIRST_LOGIN]</string> + <string>https://viewer-sidebar.secondlife.com/sidebar.html?p=[AUTH_TOKEN]&lang=[LANGUAGE]&channel=[CHANNEL]&version=[VERSION]&major=[VERSION_MAJOR]&minor=[VERSION_MINOR]&patch=[VERSION_PATCH]&build=[VERSION_BUILD]&firstlogin=[FIRST_LOGIN]</string> </map> <key>SearchURL</key> <map> @@ -3618,7 +3618,7 @@ <key>Type</key> <string>String</string> <key>Value</key> - <string>http://search.secondlife.com/viewer/[CATEGORY]?q=[QUERY]&p=[AUTH_TOKEN]&r=[MATURITY]&lang=[LANGUAGE]&g=[GODLIKE]&sid=[SESSION_ID]&rid=[REGION_ID]&pid=[PARCEL_ID]</string> + <string>http://search.secondlife.com/viewer/[CATEGORY]?q=[QUERY]&p=[AUTH_TOKEN]&r=[MATURITY]&lang=[LANGUAGE]&g=[GODLIKE]&sid=[SESSION_ID]&rid=[REGION_ID]&pid=[PARCEL_ID]&channel=[CHANNEL]&version=[VERSION]&major=[VERSION_MAJOR]&minor=[VERSION_MINOR]&patch=[VERSION_PATCH]&build=[VERSION_BUILD]</string> </map> <key>HighResSnapshot</key> <map> |