aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Seikel2011-02-13 14:37:44 +1000
committerDavid Seikel2011-02-13 14:37:44 +1000
commite68da291f855b1d8dd0012af67f172a2244936c2 (patch)
tree3e53b84b4ffa856e152cf05b00d2f3db582dd66e
parentRevert "Comment out the server tellinsg us what the search URL is, seems the ... (diff)
downloadmeta-impy-e68da291f855b1d8dd0012af67f172a2244936c2.zip
meta-impy-e68da291f855b1d8dd0012af67f172a2244936c2.tar.gz
meta-impy-e68da291f855b1d8dd0012af67f172a2244936c2.tar.bz2
meta-impy-e68da291f855b1d8dd0012af67f172a2244936c2.tar.xz
UNBRANDING! Conservativley remove references to "second life", replacing them with something generic.
Diffstat (limited to '')
-rw-r--r--linden/indra/cmake/00-Common.cmake2
-rw-r--r--linden/indra/cmake/Variables.cmake6
-rw-r--r--linden/indra/lib/python/indra/ipc/servicebuilder.py4
-rw-r--r--linden/indra/llaudio/llstreamingaudio_fmod.cpp2
-rwxr-xr-xlinden/indra/llcrashlogger/llcrashlogger.cpp2
-rw-r--r--linden/indra/llmessage/llloginflags.h2
-rw-r--r--linden/indra/llvfs/lldir.cpp2
-rw-r--r--linden/indra/llvfs/lldir.h6
-rw-r--r--linden/indra/llwindow/llwindowmacosx.cpp16
-rw-r--r--linden/indra/llwindow/llwindowsdl.cpp13
-rw-r--r--linden/indra/llwindow/llwindowwin32.cpp14
-rw-r--r--linden/indra/lscript/lscript_library/lscript_library.cpp2
-rw-r--r--linden/indra/mac_updater/mac_updater.cpp4
-rw-r--r--linden/indra/newview/app_settings/settings.xml12
-rw-r--r--linden/indra/newview/dronesettings.xml2
-rwxr-xr-xlinden/indra/newview/linux_tools/handle_secondlifeprotocol.sh2
-rw-r--r--linden/indra/newview/llappviewer.cpp2
-rw-r--r--linden/indra/newview/llappviewer.h2
-rw-r--r--linden/indra/newview/llappviewerwin32.cpp2
-rw-r--r--linden/indra/newview/llfloaterfriends.cpp2
-rw-r--r--linden/indra/newview/llimpanel.cpp2
-rw-r--r--linden/indra/newview/llviewermedia.h2
-rw-r--r--linden/indra/newview/llviewerwindow.cpp2
-rw-r--r--linden/indra/newview/llviewerwindow.h2
-rw-r--r--linden/indra/newview/skins/default/html/en-us/loading-error/index.html4
-rw-r--r--linden/indra/newview/skins/default/xui/en-us/notifications.xml2
-rw-r--r--linden/indra/newview/skins/default/xui/en-us/panel_avatar.xml8
-rw-r--r--linden/indra/newview/skins/default/xui/en-us/panel_preferences_web.xml2
-rw-r--r--linden/indra/newview/skins/default/xui/en-us/panel_status_bar.xml2
-rw-r--r--linden/indra/newview/skins/default/xui/ja/panel_avatar.xml4
-rw-r--r--linden/indra/test/llsdserialize_tut.cpp20
-rw-r--r--linden/indra/test/lluri_tut.cpp2
-rw-r--r--linden/indra/win_updater/updater.cpp2
33 files changed, 65 insertions, 88 deletions
diff --git a/linden/indra/cmake/00-Common.cmake b/linden/indra/cmake/00-Common.cmake
index 05d6175..3120534 100644
--- a/linden/indra/cmake/00-Common.cmake
+++ b/linden/indra/cmake/00-Common.cmake
@@ -1,6 +1,6 @@
1# -*- cmake -*- 1# -*- cmake -*-
2# 2#
3# Compilation options shared by all Second Life components. 3# Compilation options shared by all components.
4 4
5include(Variables) 5include(Variables)
6 6
diff --git a/linden/indra/cmake/Variables.cmake b/linden/indra/cmake/Variables.cmake
index 37e77ae..18f3cdd 100644
--- a/linden/indra/cmake/Variables.cmake
+++ b/linden/indra/cmake/Variables.cmake
@@ -1,6 +1,6 @@
1# -*- cmake -*- 1# -*- cmake -*-
2# 2#
3# Definitions of variables used throughout the Second Life build 3# Definitions of variables used throughout the build
4# process. 4# process.
5# 5#
6# Platform variables: 6# Platform variables:
@@ -73,14 +73,14 @@ endif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
73# Default deploy grid 73# Default deploy grid
74set(GRID agni CACHE STRING "Target Grid") 74set(GRID agni CACHE STRING "Target Grid")
75 75
76set(VIEWER ON CACHE BOOL "Build Second Life viewer.") 76set(VIEWER ON CACHE BOOL "Build the viewer.")
77set(VIEWER_CHANNEL "meta-impy" CACHE STRING "Viewer Channel Name") 77set(VIEWER_CHANNEL "meta-impy" CACHE STRING "Viewer Channel Name")
78set(VIEWER_LOGIN_CHANNEL ${VIEWER_CHANNEL} CACHE STRING "Fake login channel for A/B Testing") 78set(VIEWER_LOGIN_CHANNEL ${VIEWER_CHANNEL} CACHE STRING "Fake login channel for A/B Testing")
79 79
80set(STANDALONE OFF CACHE BOOL "Do not use meta-impy-supplied prebuilt libraries.") 80set(STANDALONE OFF CACHE BOOL "Do not use meta-impy-supplied prebuilt libraries.")
81 81
82if (NOT STANDALONE AND EXISTS ${CMAKE_SOURCE_DIR}/llphysics) 82if (NOT STANDALONE AND EXISTS ${CMAKE_SOURCE_DIR}/llphysics)
83 set(SERVER ON CACHE BOOL "Build Second Life server software.") 83 set(SERVER ON CACHE BOOL "Build the server software.")
84endif (NOT STANDALONE AND EXISTS ${CMAKE_SOURCE_DIR}/llphysics) 84endif (NOT STANDALONE AND EXISTS ${CMAKE_SOURCE_DIR}/llphysics)
85 85
86if (LINUX AND SERVER AND VIEWER) 86if (LINUX AND SERVER AND VIEWER)
diff --git a/linden/indra/lib/python/indra/ipc/servicebuilder.py b/linden/indra/lib/python/indra/ipc/servicebuilder.py
index 04ccee7..c28bea3 100644
--- a/linden/indra/lib/python/indra/ipc/servicebuilder.py
+++ b/linden/indra/lib/python/indra/ipc/servicebuilder.py
@@ -43,10 +43,10 @@ def build(name, context={}, **kwargs):
43 """ Convenience method for using a global, singleton, service builder. Pass arguments either via a dict or via python keyword arguments, or both! 43 """ Convenience method for using a global, singleton, service builder. Pass arguments either via a dict or via python keyword arguments, or both!
44 44
45 Example use: 45 Example use:
46 > context = {'channel':'Second Life Release', 'version':'1.18.2.0'} 46 > context = {'channel':'Grid Viewer Release', 'version':'1.18.2.0'}
47 > servicebuilder.build('version-manager-version', context) 47 > servicebuilder.build('version-manager-version', context)
48 'http://int.util.vaak.lindenlab.com/channel/Second%20Life%20Release/1.18.2.0' 48 'http://int.util.vaak.lindenlab.com/channel/Second%20Life%20Release/1.18.2.0'
49 > servicebuilder.build('version-manager-version', channel='Second Life Release', version='1.18.2.0') 49 > servicebuilder.build('version-manager-version', channel='Grid Viewer Release', version='1.18.2.0')
50 'http://int.util.vaak.lindenlab.com/channel/Second%20Life%20Release/1.18.2.0' 50 'http://int.util.vaak.lindenlab.com/channel/Second%20Life%20Release/1.18.2.0'
51 > servicebuilder.build('version-manager-version', context, version='1.18.1.2') 51 > servicebuilder.build('version-manager-version', context, version='1.18.1.2')
52 'http://int.util.vaak.lindenlab.com/channel/Second%20Life%20Release/1.18.1.2' 52 'http://int.util.vaak.lindenlab.com/channel/Second%20Life%20Release/1.18.1.2'
diff --git a/linden/indra/llaudio/llstreamingaudio_fmod.cpp b/linden/indra/llaudio/llstreamingaudio_fmod.cpp
index a71a872..238b213 100644
--- a/linden/indra/llaudio/llstreamingaudio_fmod.cpp
+++ b/linden/indra/llaudio/llstreamingaudio_fmod.cpp
@@ -69,7 +69,7 @@ LLStreamingAudio_FMOD::LLStreamingAudio_FMOD() :
69 mGain(1.0f) 69 mGain(1.0f)
70{ 70{
71 // Number of milliseconds of audio to buffer for the audio card. 71 // Number of milliseconds of audio to buffer for the audio card.
72 // Must be larger than the usual Second Life frame stutter time. 72 // Must be larger than the usual frame stutter time.
73 FSOUND_Stream_SetBufferSize(200); 73 FSOUND_Stream_SetBufferSize(200);
74 74
75 // Here's where we set the size of the network buffer and some buffering 75 // Here's where we set the size of the network buffer and some buffering
diff --git a/linden/indra/llcrashlogger/llcrashlogger.cpp b/linden/indra/llcrashlogger/llcrashlogger.cpp
index aac5592..69e0adb 100755
--- a/linden/indra/llcrashlogger/llcrashlogger.cpp
+++ b/linden/indra/llcrashlogger/llcrashlogger.cpp
@@ -201,7 +201,7 @@ void LLCrashLogger::gatherFiles()
201 } 201 }
202 else 202 else
203 { 203 {
204 // Figure out the filename of the second life log 204 // Figure out the filename of the viewer log
205 LLCurl::setCAFile(gDirUtilp->getCAFile()); 205 LLCurl::setCAFile(gDirUtilp->getCAFile());
206 mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"meta-impy.log"); 206 mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"meta-impy.log");
207 mFileMap["SettingsXml"] = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS,"settings.xml"); 207 mFileMap["SettingsXml"] = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS,"settings.xml");
diff --git a/linden/indra/llmessage/llloginflags.h b/linden/indra/llmessage/llloginflags.h
index 6f119e7..ceade87 100644
--- a/linden/indra/llmessage/llloginflags.h
+++ b/linden/indra/llmessage/llloginflags.h
@@ -33,7 +33,7 @@
33#ifndef LL_LLLOGINFLAGS_H 33#ifndef LL_LLLOGINFLAGS_H
34#define LL_LLLOGINFLAGS_H 34#define LL_LLLOGINFLAGS_H
35 35
36// Is this your first login to Second Life? 36// Is this your first login to the grid?
37const U32 LOGIN_FLAG_FIRST_LOGIN = (1 << 0); 37const U32 LOGIN_FLAG_FIRST_LOGIN = (1 << 0);
38 38
39// Is this a trial account? 39// Is this a trial account?
diff --git a/linden/indra/llvfs/lldir.cpp b/linden/indra/llvfs/lldir.cpp
index dbb057f..81de54f 100644
--- a/linden/indra/llvfs/lldir.cpp
+++ b/linden/indra/llvfs/lldir.cpp
@@ -628,7 +628,6 @@ void LLDir::setSkinFolder(const std::string &skin_folder)
628 mSkinDir += skin_folder; 628 mSkinDir += skin_folder;
629 629
630 // user modifications to current skin 630 // user modifications to current skin
631 // e.g. c:\documents and settings\users\username\application data\second life\skins\dazzle
632 mUserSkinDir = getOSUserAppDir(); 631 mUserSkinDir = getOSUserAppDir();
633 mUserSkinDir += mDirDelimiter; 632 mUserSkinDir += mDirDelimiter;
634 mUserSkinDir += "skins"; 633 mUserSkinDir += "skins";
@@ -636,7 +635,6 @@ void LLDir::setSkinFolder(const std::string &skin_folder)
636 mUserSkinDir += skin_folder; 635 mUserSkinDir += skin_folder;
637 636
638 // base skin which is used as fallback for all skinned files 637 // base skin which is used as fallback for all skinned files
639 // e.g. c:\program files\secondlife\skins\default
640 mDefaultSkinDir = getAppRODataDir(); 638 mDefaultSkinDir = getAppRODataDir();
641 mDefaultSkinDir += mDirDelimiter; 639 mDefaultSkinDir += mDirDelimiter;
642 mDefaultSkinDir += "skins"; 640 mDefaultSkinDir += "skins";
diff --git a/linden/indra/llvfs/lldir.h b/linden/indra/llvfs/lldir.h
index 766f351..8f8ac77 100644
--- a/linden/indra/llvfs/lldir.h
+++ b/linden/indra/llvfs/lldir.h
@@ -101,9 +101,9 @@ class LLDir
101 const std::string &getCAFile() const; // File containing TLS certificate authorities 101 const std::string &getCAFile() const; // File containing TLS certificate authorities
102 const std::string &getDirDelimiter() const; // directory separator for platform (ie. '\' or '/' or ':') 102 const std::string &getDirDelimiter() const; // directory separator for platform (ie. '\' or '/' or ':')
103 const std::string &getSkinDir() const; // User-specified skin folder. 103 const std::string &getSkinDir() const; // User-specified skin folder.
104 const std::string &getUserSkinDir() const; // User-specified skin folder with user modifications. e.g. c:\documents and settings\username\application data\second life\skins\curskin 104 const std::string &getUserSkinDir() const; // User-specified skin folder with user modifications.
105 const std::string &getDefaultSkinDir() const; // folder for default skin. e.g. c:\program files\second life\skins\default 105 const std::string &getDefaultSkinDir() const; // folder for default skin.
106 const std::string getSkinBaseDir() const; // folder that contains all installed skins (not user modifications). e.g. c:\program files\second life\skins 106 const std::string getSkinBaseDir() const; // folder that contains all installed skins (not user modifications).
107 const std::string &getLLPluginDir() const; // Directory containing plugins and plugin shell 107 const std::string &getLLPluginDir() const; // Directory containing plugins and plugin shell
108 108
109 // Expanded filename 109 // Expanded filename
diff --git a/linden/indra/llwindow/llwindowmacosx.cpp b/linden/indra/llwindow/llwindowmacosx.cpp
index 99daa4d..9cbc949 100644
--- a/linden/indra/llwindow/llwindowmacosx.cpp
+++ b/linden/indra/llwindow/llwindowmacosx.cpp
@@ -71,17 +71,17 @@ BOOL check_for_card(const char* RENDERER, const char* bad_card)
71 if (!strnicmp(RENDERER, bad_card, strlen(bad_card))) 71 if (!strnicmp(RENDERER, bad_card, strlen(bad_card)))
72 { 72 {
73 std::string buffer = llformat( 73 std::string buffer = llformat(
74 "Your video card appears to be a %s, which Second Life does not support.\n" 74 "Your video card appears to be a %s, which this viewer does not support.\n"
75 "\n" 75 "\n"
76 "Second Life requires a video card with 32 Mb of memory or more, as well as\n" 76 "This viewer requires a video card with 32 Mb of memory or more, as well as\n"
77 "multitexture support. We explicitly support nVidia GeForce 2 or better, \n" 77 "multitexture support. We explicitly support nVidia GeForce 2 or better, \n"
78 "and ATI Radeon 8500 or better.\n" 78 "and ATI Radeon 8500 or better.\n"
79 "\n" 79 "\n"
80 "If you own a supported card and continue to receive this message, try \n" 80 "If you own a supported card and continue to receive this message, try \n"
81 "updating to the latest video card drivers. Otherwise look in the\n" 81 "updating to the latest video card drivers. Otherwise look in the\n"
82 "secondlife.com support section or e-mail technical support\n" 82 "web site support section or e-mail technical support\n"
83 "\n" 83 "\n"
84 "You can try to run Second Life, but it will probably crash or run\n" 84 "You can try to run this viewer, but it will probably crash or run\n"
85 "very slowly. Try anyway?", 85 "very slowly. Try anyway?",
86 bad_card); 86 bad_card);
87 S32 button = OSMessageBox(buffer.c_str(), "Unsupported video card", OSMB_YESNO); 87 S32 button = OSMessageBox(buffer.c_str(), "Unsupported video card", OSMB_YESNO);
@@ -302,7 +302,7 @@ LLWindowMacOSX::LLWindowMacOSX(const std::string& title, const std::string& name
302 if (!gGLManager.initGL()) 302 if (!gGLManager.initGL())
303 { 303 {
304 setupFailure( 304 setupFailure(
305 "Second Life is unable to run because your video card drivers\n" 305 "This viewer is unable to run because your video card drivers\n"
306 "are out of date or unsupported. Please make sure you have\n" 306 "are out of date or unsupported. Please make sure you have\n"
307 "the latest video card drivers installed.\n" 307 "the latest video card drivers installed.\n"
308 "If you continue to receive this message, contact customer service.", 308 "If you continue to receive this message, contact customer service.",
@@ -748,10 +748,10 @@ BOOL LLWindowMacOSX::createContext(int x, int y, int width, int height, int bits
748 { 748 {
749 close(); 749 close();
750 setupFailure( 750 setupFailure(
751 "Second Life requires True Color (32-bit) to run in a window.\n" 751 "This viewer requires True Color (32-bit) to run in a window.\n"
752 "Please go to Control Panels -> Display -> Settings and\n" 752 "Please go to Control Panels -> Display -> Settings and\n"
753 "set the screen to 32-bit color.\n" 753 "set the screen to 32-bit color.\n"
754 "Alternately, if you choose to run fullscreen, Second Life\n" 754 "Alternately, if you choose to run fullscreen, this viewer\n"
755 "will automatically adjust the screen each time it runs.", 755 "will automatically adjust the screen each time it runs.",
756 "Error", 756 "Error",
757 OSMB_OK); 757 OSMB_OK);
@@ -762,7 +762,7 @@ BOOL LLWindowMacOSX::createContext(int x, int y, int width, int height, int bits
762 { 762 {
763 close(); 763 close();
764 setupFailure( 764 setupFailure(
765 "Second Life is unable to run because it can't get an 8 bit alpha\n" 765 "This viewer is unable to run because it can't get an 8 bit alpha\n"
766 "channel. Usually this is due to video card driver issues.\n" 766 "channel. Usually this is due to video card driver issues.\n"
767 "Please make sure you have the latest video card drivers installed.\n" 767 "Please make sure you have the latest video card drivers installed.\n"
768 "Also be sure your monitor is set to True Color (32-bit) in\n" 768 "Also be sure your monitor is set to True Color (32-bit) in\n"
diff --git a/linden/indra/llwindow/llwindowsdl.cpp b/linden/indra/llwindow/llwindowsdl.cpp
index 1933888..ff27a4b 100644
--- a/linden/indra/llwindow/llwindowsdl.cpp
+++ b/linden/indra/llwindow/llwindowsdl.cpp
@@ -698,16 +698,14 @@ BOOL LLWindowSDL::createContext(int x, int y, int width, int height, int bits, B
698 close(); 698 close();
699 setupFailure( 699 setupFailure(
700#if LL_SOLARIS && defined(__sparc) 700#if LL_SOLARIS && defined(__sparc)
701 "Second Life requires at least 24-bit color on SPARC to run in a window.\n" 701 "This viewer requires at least 24-bit color on SPARC to run in a window.\n"
702 "Please use fbconfig to set your default color depth to 24 bits.\n" 702 "Please use fbconfig to set your default color depth to 24 bits.\n"
703 "You may also need to adjust the X11 setting in SMF. To do so use\n" 703 "You may also need to adjust the X11 setting in SMF. To do so use\n"
704 " 'svccfg -s svc:/application/x11/x11-server setprop options/default_depth=24'\n" 704 " 'svccfg -s svc:/application/x11/x11-server setprop options/default_depth=24'\n"
705#else 705#else
706 "Second Life requires True Color (32-bit) to run in a window.\n" 706 "This viewer requires True Color (32-bit) to run in a window.\n"
707 "Please go to Control Panels -> Display -> Settings and\n"
708 "set the screen to 32-bit color.\n"
709#endif 707#endif
710 "Alternately, if you choose to run fullscreen, Second Life\n" 708 "Alternately, if you choose to run fullscreen, this viewer\n"
711 "will automatically adjust the screen each time it runs.", 709 "will automatically adjust the screen each time it runs.",
712 "Error", 710 "Error",
713 OSMB_OK); 711 OSMB_OK);
@@ -719,11 +717,10 @@ BOOL LLWindowSDL::createContext(int x, int y, int width, int height, int bits, B
719 { 717 {
720 close(); 718 close();
721 setupFailure( 719 setupFailure(
722 "Second Life is unable to run because it can't get an 8 bit alpha\n" 720 "This viewer is unable to run because it can't get an 8 bit alpha\n"
723 "channel. Usually this is due to video card driver issues.\n" 721 "channel. Usually this is due to video card driver issues.\n"
724 "Please make sure you have the latest video card drivers installed.\n" 722 "Please make sure you have the latest video card drivers installed.\n"
725 "Also be sure your monitor is set to True Color (32-bit) in\n" 723 "Also be sure your monitor is set to True Color (32-bit)n"
726 "Control Panels -> Display -> Settings.\n"
727 "If you continue to receive this message, contact customer service.", 724 "If you continue to receive this message, contact customer service.",
728 "Error", 725 "Error",
729 OSMB_OK); 726 OSMB_OK);
diff --git a/linden/indra/llwindow/llwindowwin32.cpp b/linden/indra/llwindow/llwindowwin32.cpp
index 7bc9a3b..3fdef30 100644
--- a/linden/indra/llwindow/llwindowwin32.cpp
+++ b/linden/indra/llwindow/llwindowwin32.cpp
@@ -1052,10 +1052,10 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO
1052 { 1052 {
1053 close(); 1053 close();
1054 OSMessageBox( 1054 OSMessageBox(
1055 "Second Life requires True Color (32-bit) to run in a window.\n" 1055 "This viewer requires True Color (32-bit) to run in a window.\n"
1056 "Please go to Control Panels -> Display -> Settings and\n" 1056 "Please go to Control Panels -> Display -> Settings and\n"
1057 "set the screen to 32-bit color.\n" 1057 "set the screen to 32-bit color.\n"
1058 "Alternately, if you choose to run fullscreen, Second Life\n" 1058 "Alternately, if you choose to run fullscreen, this viewer\n"
1059 "will automatically adjust the screen each time it runs.", 1059 "will automatically adjust the screen each time it runs.",
1060 "Error", 1060 "Error",
1061 OSMB_OK); 1061 OSMB_OK);
@@ -1066,7 +1066,7 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO
1066 { 1066 {
1067 close(); 1067 close();
1068 OSMessageBox( 1068 OSMessageBox(
1069 "Second Life is unable to run because it can't get an 8 bit alpha\n" 1069 "This viewer is unable to run because it can't get an 8 bit alpha\n"
1070 "channel. Usually this is due to video card driver issues.\n" 1070 "channel. Usually this is due to video card driver issues.\n"
1071 "Please make sure you have the latest video card drivers installed.\n" 1071 "Please make sure you have the latest video card drivers installed.\n"
1072 "Also be sure your monitor is set to True Color (32-bit) in\n" 1072 "Also be sure your monitor is set to True Color (32-bit) in\n"
@@ -1314,10 +1314,10 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO
1314 { 1314 {
1315 close(); 1315 close();
1316 OSMessageBox( 1316 OSMessageBox(
1317 "Second Life requires True Color (32-bit) to run in a window.\n" 1317 "This viewer requires True Color (32-bit) to run in a window.\n"
1318 "Please go to Control Panels -> Display -> Settings and\n" 1318 "Please go to Control Panels -> Display -> Settings and\n"
1319 "set the screen to 32-bit color.\n" 1319 "set the screen to 32-bit color.\n"
1320 "Alternately, if you choose to run fullscreen, Second Life\n" 1320 "Alternately, if you choose to run fullscreen, this viewer\n"
1321 "will automatically adjust the screen each time it runs.", 1321 "will automatically adjust the screen each time it runs.",
1322 "Error", 1322 "Error",
1323 OSMB_OK); 1323 OSMB_OK);
@@ -1328,7 +1328,7 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO
1328 { 1328 {
1329 close(); 1329 close();
1330 OSMessageBox( 1330 OSMessageBox(
1331 "Second Life is unable to run because it can't get an 8 bit alpha\n" 1331 "This viewer is unable to run because it can't get an 8 bit alpha\n"
1332 "channel. Usually this is due to video card driver issues.\n" 1332 "channel. Usually this is due to video card driver issues.\n"
1333 "Please make sure you have the latest video card drivers installed.\n" 1333 "Please make sure you have the latest video card drivers installed.\n"
1334 "Also be sure your monitor is set to True Color (32-bit) in\n" 1334 "Also be sure your monitor is set to True Color (32-bit) in\n"
@@ -1357,7 +1357,7 @@ BOOL LLWindowWin32::switchContext(BOOL fullscreen, const LLCoordScreen &size, BO
1357 { 1357 {
1358 close(); 1358 close();
1359 OSMessageBox( 1359 OSMessageBox(
1360 "Second Life is unable to run because your video card drivers\n" 1360 "This viewer is unable to run because your video card drivers\n"
1361 "did not install properly, are out of date, or are for unsupported\n" 1361 "did not install properly, are out of date, or are for unsupported\n"
1362 "hardware. Please make sure you have the latest video card drivers\n" 1362 "hardware. Please make sure you have the latest video card drivers\n"
1363 "and even if you do have the latest, try reinstalling them.\n\n" 1363 "and even if you do have the latest, try reinstalling them.\n\n"
diff --git a/linden/indra/lscript/lscript_library/lscript_library.cpp b/linden/indra/lscript/lscript_library/lscript_library.cpp
index cc56119..59f1824 100644
--- a/linden/indra/lscript/lscript_library/lscript_library.cpp
+++ b/linden/indra/lscript/lscript_library/lscript_library.cpp
@@ -156,7 +156,7 @@ void LLScriptLibrary::init()
156 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetVel", "v", NULL, "vector llGetVel()\ngets the velocity")); 156 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetVel", "v", NULL, "vector llGetVel()\ngets the velocity"));
157 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetAccel", "v", NULL, "vector llGetAccel()\ngets the acceleration")); 157 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetAccel", "v", NULL, "vector llGetAccel()\ngets the acceleration"));
158 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetOmega", "v", NULL, "vector llGetOmega()\ngets the omega")); 158 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetOmega", "v", NULL, "vector llGetOmega()\ngets the omega"));
159 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetTimeOfDay", "f", "", "float llGetTimeOfDay()\ngets the time in seconds since Second Life server midnight (or since server up-time; whichever is smaller)")); 159 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetTimeOfDay", "f", "", "float llGetTimeOfDay()\ngets the time in seconds since server midnight (or since server up-time; whichever is smaller)"));
160 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetWallclock", "f", "", "float llGetWallclock()\ngets the time in seconds since midnight")); 160 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetWallclock", "f", "", "float llGetWallclock()\ngets the time in seconds since midnight"));
161 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetTime", "f", NULL, "float llGetTime()\ngets the time in seconds since creation")); 161 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetTime", "f", NULL, "float llGetTime()\ngets the time in seconds since creation"));
162 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llResetTime", NULL, NULL, "llResetTime()\nsets the time to zero")); 162 addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llResetTime", NULL, NULL, "llResetTime()\nsets the time to zero"));
diff --git a/linden/indra/mac_updater/mac_updater.cpp b/linden/indra/mac_updater/mac_updater.cpp
index 64afff8..1542a16 100644
--- a/linden/indra/mac_updater/mac_updater.cpp
+++ b/linden/indra/mac_updater/mac_updater.cpp
@@ -669,7 +669,7 @@ static bool isFSRefViewerBundle(FSRef *targetRef)
669 return result; 669 return result;
670} 670}
671 671
672// Search through the directory specified by 'parent' for an item that appears to be a Second Life viewer. 672// Search through the directory specified by 'parent' for an item that appears to be a viewer.
673static OSErr findAppBundleOnDiskImage(FSRef *parent, FSRef *app) 673static OSErr findAppBundleOnDiskImage(FSRef *parent, FSRef *app)
674{ 674{
675 FSIterator iterator; 675 FSIterator iterator;
@@ -756,7 +756,7 @@ void *updatethreadproc(void*)
756 756
757 try 757 try
758 { 758 {
759 // Attempt to get a reference to the Second Life application bundle containing this updater. 759 // Attempt to get a reference to the viewer application bundle containing this updater.
760 // Any failures during this process will cause us to default to updating /Applications/Second Life.app 760 // Any failures during this process will cause us to default to updating /Applications/Second Life.app
761 { 761 {
762 FSRef myBundle; 762 FSRef myBundle;
diff --git a/linden/indra/newview/app_settings/settings.xml b/linden/indra/newview/app_settings/settings.xml
index 67df287..24f4d9a 100644
--- a/linden/indra/newview/app_settings/settings.xml
+++ b/linden/indra/newview/app_settings/settings.xml
@@ -980,7 +980,7 @@
980 <key>SearchURLDefault</key> 980 <key>SearchURLDefault</key>
981 <map> 981 <map>
982 <key>Comment</key> 982 <key>Comment</key>
983 <string>URL to load for empty Second Life searches</string> 983 <string>URL to load for empty searches</string>
984 <key>Persist</key> 984 <key>Persist</key>
985 <integer>1</integer> 985 <integer>1</integer>
986 <key>HideFromEditor</key> 986 <key>HideFromEditor</key>
@@ -1006,7 +1006,7 @@
1006 <key>SearchURLQuery</key> 1006 <key>SearchURLQuery</key>
1007 <map> 1007 <map>
1008 <key>Comment</key> 1008 <key>Comment</key>
1009 <string>URL to use for Second Life searches</string> 1009 <string>URL to use for searches</string>
1010 <key>Persist</key> 1010 <key>Persist</key>
1011 <integer>1</integer> 1011 <integer>1</integer>
1012 <key>HideFromEditor</key> 1012 <key>HideFromEditor</key>
@@ -1032,7 +1032,7 @@
1032 <key>SearchURLSuffix2</key> 1032 <key>SearchURLSuffix2</key>
1033 <map> 1033 <map>
1034 <key>Comment</key> 1034 <key>Comment</key>
1035 <string>Parameters added to end of Second Life search queries</string> 1035 <string>Parameters added to end of search queries</string>
1036 <key>Persist</key> 1036 <key>Persist</key>
1037 <integer>1</integer> 1037 <integer>1</integer>
1038 <key>HideFromEditor</key> 1038 <key>HideFromEditor</key>
@@ -1080,7 +1080,7 @@
1080 <key>ShowcaseURLDefault</key> 1080 <key>ShowcaseURLDefault</key>
1081 <map> 1081 <map>
1082 <key>Comment</key> 1082 <key>Comment</key>
1083 <string>URL to load for the Showcase tab in Second Life</string> 1083 <string>URL to load for the Showcase tab</string>
1084 <key>Persist</key> 1084 <key>Persist</key>
1085 <integer>1</integer> 1085 <integer>1</integer>
1086 <key>Type</key> 1086 <key>Type</key>
@@ -8347,7 +8347,7 @@
8347 <key>NumSessions</key> 8347 <key>NumSessions</key>
8348 <map> 8348 <map>
8349 <key>Comment</key> 8349 <key>Comment</key>
8350 <string>Number of successful logins to Second Life</string> 8350 <string>Number of successful logins to grids</string>
8351 <key>Persist</key> 8351 <key>Persist</key>
8352 <integer>1</integer> 8352 <integer>1</integer>
8353 <key>Type</key> 8353 <key>Type</key>
@@ -11170,7 +11170,7 @@
11170 <key>SkyUseClassicClouds</key> 11170 <key>SkyUseClassicClouds</key>
11171 <map> 11171 <map>
11172 <key>Comment</key> 11172 <key>Comment</key>
11173 <string>Whether to use the old Second Life particle clouds or not</string> 11173 <string>Whether to use the old particle clouds or not</string>
11174 <key>Persist</key> 11174 <key>Persist</key>
11175 <integer>1</integer> 11175 <integer>1</integer>
11176 <key>Type</key> 11176 <key>Type</key>
diff --git a/linden/indra/newview/dronesettings.xml b/linden/indra/newview/dronesettings.xml
index 8a41280..db5749e 100644
--- a/linden/indra/newview/dronesettings.xml
+++ b/linden/indra/newview/dronesettings.xml
@@ -32,7 +32,7 @@
32 <LastName value="Tester"/> 32 <LastName value="Tester"/>
33 <!--Version number of last instance of the viewer that you ran--> 33 <!--Version number of last instance of the viewer that you ran-->
34 <LastRunVersion value="1.7.0"/> 34 <LastRunVersion value="1.7.0"/>
35 <!--Number of successful logins to Second Life--> 35 <!--Number of successful logins to grids-->
36 <NumSessions value="27"/> 36 <NumSessions value="27"/>
37 <!--Query current hardware configuration on application startup--> 37 <!--Query current hardware configuration on application startup-->
38 <ProbeHardwareOnStartup value="FALSE"/> 38 <ProbeHardwareOnStartup value="FALSE"/>
diff --git a/linden/indra/newview/linux_tools/handle_secondlifeprotocol.sh b/linden/indra/newview/linux_tools/handle_secondlifeprotocol.sh
index 6b0433a..78e9bcd 100755
--- a/linden/indra/newview/linux_tools/handle_secondlifeprotocol.sh
+++ b/linden/indra/newview/linux_tools/handle_secondlifeprotocol.sh
@@ -1,6 +1,6 @@
1#!/bin/bash 1#!/bin/bash
2 2
3# Send a URL of the form secondlife://... to Second Life. 3# Send a URL of the form secondlife://... to the grid.
4# 4#
5 5
6URL="$1" 6URL="$1"
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp
index 7555c87..d7b6814 100644
--- a/linden/indra/newview/llappviewer.cpp
+++ b/linden/indra/newview/llappviewer.cpp
@@ -1803,7 +1803,7 @@ bool LLAppViewer::initConfiguration()
1803 if(!loadSettingsFromDirectory("Default", set_defaults)) 1803 if(!loadSettingsFromDirectory("Default", set_defaults))
1804 { 1804 {
1805 std::ostringstream msg; 1805 std::ostringstream msg;
1806 msg << "Second Life could not load its default settings file. \n" 1806 msg << "This viewer could not load its default settings file. \n"
1807 << "The installation may be corrupted. \n"; 1807 << "The installation may be corrupted. \n";
1808 1808
1809 OSMessageBox( 1809 OSMessageBox(
diff --git a/linden/indra/newview/llappviewer.h b/linden/indra/newview/llappviewer.h
index 7b3230a..7c9fe89 100644
--- a/linden/indra/newview/llappviewer.h
+++ b/linden/indra/newview/llappviewer.h
@@ -100,7 +100,7 @@ public:
100 100
101 bool getPurgeCache() const { return mPurgeCache; } 101 bool getPurgeCache() const { return mPurgeCache; }
102 102
103 const std::string& getSecondLifeTitle() const; // The Second Life title. 103 const std::string& getSecondLifeTitle() const; // The viewer title.
104 const std::string& getWindowTitle() const; // The window display name. 104 const std::string& getWindowTitle() const; // The window display name.
105 105
106 void forceDisconnect(const std::string& msg); // Force disconnection, with a message to the user. 106 void forceDisconnect(const std::string& msg); // Force disconnection, with a message to the user.
diff --git a/linden/indra/newview/llappviewerwin32.cpp b/linden/indra/newview/llappviewerwin32.cpp
index 343c1f1..0fc273e 100644
--- a/linden/indra/newview/llappviewerwin32.cpp
+++ b/linden/indra/newview/llappviewerwin32.cpp
@@ -153,7 +153,7 @@ LONG WINAPI viewer_windows_exception_handler(struct _EXCEPTION_POINTERS *excepti
153// Create app mutex creates a unique global windows object. 153// Create app mutex creates a unique global windows object.
154// If the object can be created it returns true, otherwise 154// If the object can be created it returns true, otherwise
155// it returns false. The false result can be used to determine 155// it returns false. The false result can be used to determine
156// if another instance of a second life app (this vers. or later) 156// if another instance of a viewer app (this vers. or later)
157// is running. 157// is running.
158// *NOTE: Do not use this method to run a single instance of the app. 158// *NOTE: Do not use this method to run a single instance of the app.
159// This is intended to help debug problems with the cross-platform 159// This is intended to help debug problems with the cross-platform
diff --git a/linden/indra/newview/llfloaterfriends.cpp b/linden/indra/newview/llfloaterfriends.cpp
index c33deae..0b4610c 100644
--- a/linden/indra/newview/llfloaterfriends.cpp
+++ b/linden/indra/newview/llfloaterfriends.cpp
@@ -748,7 +748,7 @@ void LLPanelFriends::requestFriendshipDialog(const LLUUID& id,
748 LLSD payload; 748 LLSD payload;
749 payload["id"] = id; 749 payload["id"] = id;
750 payload["name"] = name; 750 payload["name"] = name;
751 // Look for server versions like: Second Life Server 1.24.4.95600 751 // Look for server versions like: Grid Server 1.24.4.95600
752 if (gLastVersionChannel.find(" 1.24.") != std::string::npos) 752 if (gLastVersionChannel.find(" 1.24.") != std::string::npos)
753 { 753 {
754 // Old and busted server version, doesn't support friend 754 // Old and busted server version, doesn't support friend
diff --git a/linden/indra/newview/llimpanel.cpp b/linden/indra/newview/llimpanel.cpp
index 41727f2..d1e6139 100644
--- a/linden/indra/newview/llimpanel.cpp
+++ b/linden/indra/newview/llimpanel.cpp
@@ -1595,7 +1595,7 @@ void LLFloaterIMPanel::addHistoryLine(const std::string &utf8msg, const LLColor4
1595 // 'name' is a sender name that we want to hotlink so that clicking on it opens a profile. 1595 // 'name' is a sender name that we want to hotlink so that clicking on it opens a profile.
1596 if (!name.empty()) // If name exists, then add it to the front of the message. 1596 if (!name.empty()) // If name exists, then add it to the front of the message.
1597 { 1597 {
1598 // Don't hotlink any messages from the system (e.g. "Second Life:"), so just add those in plain text. 1598 // Don't hotlink any messages from the system, so just add those in plain text.
1599 if (name == SYSTEM_FROM) 1599 if (name == SYSTEM_FROM)
1600 { 1600 {
1601 mHistoryEditor->appendColoredText(name,false,prepend_newline,color); 1601 mHistoryEditor->appendColoredText(name,false,prepend_newline,color);
diff --git a/linden/indra/newview/llviewermedia.h b/linden/indra/newview/llviewermedia.h
index afda426..43895c9 100644
--- a/linden/indra/newview/llviewermedia.h
+++ b/linden/indra/newview/llviewermedia.h
@@ -156,7 +156,7 @@ public:
156 static LLPluginClassMedia* newSourceFromMediaType(std::string media_type, LLPluginClassMediaOwner *owner /* may be NULL */, S32 default_width, S32 default_height); 156 static LLPluginClassMedia* newSourceFromMediaType(std::string media_type, LLPluginClassMediaOwner *owner /* may be NULL */, S32 default_width, S32 default_height);
157 157
158 // Internally set our desired browser user agent string, including 158 // Internally set our desired browser user agent string, including
159 // the Second Life version and skin name. Used because we can 159 // the viewer version and skin name. Used because we can
160 // switch skins without restarting the app. 160 // switch skins without restarting the app.
161 static void updateBrowserUserAgent(); 161 static void updateBrowserUserAgent();
162 162
diff --git a/linden/indra/newview/llviewerwindow.cpp b/linden/indra/newview/llviewerwindow.cpp
index 920d42e..6a33aba 100644
--- a/linden/indra/newview/llviewerwindow.cpp
+++ b/linden/indra/newview/llviewerwindow.cpp
@@ -2172,7 +2172,7 @@ void LLViewerWindow::draw()
2172 2172
2173 if( gShowOverlayTitle && !mOverlayTitle.empty() ) 2173 if( gShowOverlayTitle && !mOverlayTitle.empty() )
2174 { 2174 {
2175 // Used for special titles such as "Second Life - Special E3 2003 Beta" 2175 // Used for special titles such as "MyViewer - Special E3 2003 Beta"
2176 const S32 DIST_FROM_TOP = 20; 2176 const S32 DIST_FROM_TOP = 20;
2177 LLFontGL::getFontSansSerifBig()->renderUTF8( 2177 LLFontGL::getFontSansSerifBig()->renderUTF8(
2178 mOverlayTitle, 0, 2178 mOverlayTitle, 0,
diff --git a/linden/indra/newview/llviewerwindow.h b/linden/indra/newview/llviewerwindow.h
index d26d820..53d346b 100644
--- a/linden/indra/newview/llviewerwindow.h
+++ b/linden/indra/newview/llviewerwindow.h
@@ -418,7 +418,7 @@ protected:
418 LLRect mPickScreenRegion; // area of frame buffer for rendering pick frames (generally follows mouse to avoid going offscreen) 418 LLRect mPickScreenRegion; // area of frame buffer for rendering pick frames (generally follows mouse to avoid going offscreen)
419 LLTimer mPickTimer; // timer for scheduling n picks per second 419 LLTimer mPickTimer; // timer for scheduling n picks per second
420 420
421 std::string mOverlayTitle; // Used for special titles such as "Second Life - Special E3 2003 Beta" 421 std::string mOverlayTitle; // Used for special titles such as "MyViewer - Special E3 2003 Beta"
422 422
423 BOOL mIgnoreActivate; 423 BOOL mIgnoreActivate;
424 424
diff --git a/linden/indra/newview/skins/default/html/en-us/loading-error/index.html b/linden/indra/newview/skins/default/html/en-us/loading-error/index.html
index 71f9c86..9898149 100644
--- a/linden/indra/newview/skins/default/html/en-us/loading-error/index.html
+++ b/linden/indra/newview/skins/default/html/en-us/loading-error/index.html
@@ -19,10 +19,10 @@ a:hover {color:#ff7900;text-decoration:underline;}
19<div id="infobox"> 19<div id="infobox">
20 <img src="../../unabletoconnect.png"><br/> 20 <img src="../../unabletoconnect.png"><br/>
21 <p> 21 <p>
22 Second Life can't establish a connection to the login server. 22 This viewer can't establish a connection to the login server.
23 </p> 23 </p>
24 <p> 24 <p>
25 Please check your internet connection. If your computer or network is protected by a firewall or proxy, make sure that Second Life is permitted to access the network. 25 Please check your internet connection. If your computer or network is protected by a firewall or proxy, make sure that this viewer is permitted to access the network.
26 </p> 26 </p>
27 <div id="submitbtn"> 27 <div id="submitbtn">
28 <input class="input_over" type="submit" value="Try Again" onclick="document.location='secondlife:///app/login_refresh'; this.className='pressed';" onmouseover="this.className='input_over';" onmouseout="this.className='input_off';" /> 28 <input class="input_over" type="submit" value="Try Again" onclick="document.location='secondlife:///app/login_refresh'; this.className='pressed';" onmouseover="this.className='input_over';" onmouseout="this.className='input_off';" />
diff --git a/linden/indra/newview/skins/default/xui/en-us/notifications.xml b/linden/indra/newview/skins/default/xui/en-us/notifications.xml
index 36a8f93..be29df8 100644
--- a/linden/indra/newview/skins/default/xui/en-us/notifications.xml
+++ b/linden/indra/newview/skins/default/xui/en-us/notifications.xml
@@ -3686,7 +3686,7 @@ Default: off
3686 label="Max Inventory Items To Transfer" 3686 label="Max Inventory Items To Transfer"
3687 name="HelpMaxInventoryItemsTransfer" 3687 name="HelpMaxInventoryItemsTransfer"
3688 type="alertmodal"> 3688 type="alertmodal">
3689This box controls how many objects can be transfered between clients at a time. -1 sets no limit on the amount of objects. Default Second Life setting is 42. 3689This box controls how many objects can be transfered between clients at a time. -1 sets no limit on the amount of objects. Default setting is 42.
3690 3690
3691Default: -1 3691Default: -1
3692</notification> 3692</notification>
diff --git a/linden/indra/newview/skins/default/xui/en-us/panel_avatar.xml b/linden/indra/newview/skins/default/xui/en-us/panel_avatar.xml
index 0df65e7..38c5a98 100644
--- a/linden/indra/newview/skins/default/xui/en-us/panel_avatar.xml
+++ b/linden/indra/newview/skins/default/xui/en-us/panel_avatar.xml
@@ -103,7 +103,7 @@
103 bottom_delta="-25" drop_shadow_visible="true" follows="left|top" 103 bottom_delta="-25" drop_shadow_visible="true" follows="left|top"
104 font="SansSerifSmall" h_pad="0" halign="left" height="16" right="-12" 104 font="SansSerifSmall" h_pad="0" halign="left" height="16" right="-12"
105 mouse_opaque="true" name="partner_label" 105 mouse_opaque="true" name="partner_label"
106 tool_tip="Second Life partner. For more info on how to set, see www.secondlife.com/partner" 106 tool_tip="In world partner."
107 v_pad="0" width="145"> 107 v_pad="0" width="145">
108 Partner: 108 Partner:
109 </text> 109 </text>
@@ -118,7 +118,7 @@
118 border_thickness="1" bottom_delta="-19" enabled="true" follows="left|top" 118 border_thickness="1" bottom_delta="-19" enabled="true" follows="left|top"
119 font="SansSerifSmall" height="18" is_unicode="false" right="-12" 119 font="SansSerifSmall" height="18" is_unicode="false" right="-12"
120 max_length="254" mouse_opaque="false" name="partner_edit" 120 max_length="254" mouse_opaque="false" name="partner_edit"
121 tool_tip="Second Life partner. For more info on how to set, see www.secondlife.com/partner" 121 tool_tip="In world partner."
122 width="145"> 122 width="145">
123 [FIRST] [LAST] 123 [FIRST] [LAST]
124 </line_editor> 124 </line_editor>
@@ -295,7 +295,7 @@
295 bottom="-20" drop_shadow_visible="true" follows="left|top" 295 bottom="-20" drop_shadow_visible="true" follows="left|top"
296 font="SansSerifSmall" h_pad="0" halign="left" height="16" left="114" 296 font="SansSerifSmall" h_pad="0" halign="left" height="16" left="114"
297 mouse_opaque="true" 297 mouse_opaque="true"
298 name="Tell everyone about your favorite places in Second Life." v_pad="0" 298 name="Tell everyone about your favorite places in world." v_pad="0"
299 width="302"> 299 width="302">
300 Tell everyone about your favorite places. 300 Tell everyone about your favorite places.
301 </text> 301 </text>
@@ -321,7 +321,7 @@
321 bottom="-20" drop_shadow_visible="true" follows="left|top" 321 bottom="-20" drop_shadow_visible="true" follows="left|top"
322 font="SansSerifSmall" h_pad="0" halign="left" height="16" left="114" 322 font="SansSerifSmall" h_pad="0" halign="left" height="16" left="114"
323 mouse_opaque="true" 323 mouse_opaque="true"
324 name="Place an ad in Second Life&apos;s classified listings." v_pad="0" 324 name="Place an ad in the classified listings." v_pad="0"
325 width="302"> 325 width="302">
326 Place an ad in the current grid&apos;s classified listings. 326 Place an ad in the current grid&apos;s classified listings.
327 </text> 327 </text>
diff --git a/linden/indra/newview/skins/default/xui/en-us/panel_preferences_web.xml b/linden/indra/newview/skins/default/xui/en-us/panel_preferences_web.xml
index 46283bb..e077ca1 100644
--- a/linden/indra/newview/skins/default/xui/en-us/panel_preferences_web.xml
+++ b/linden/indra/newview/skins/default/xui/en-us/panel_preferences_web.xml
@@ -9,7 +9,7 @@
9 Use external web browser (Firefox, Safari, Internet Explorer) 9 Use external web browser (Firefox, Safari, Internet Explorer)
10 </radio_item> 10 </radio_item>
11 <radio_item bottom="-40" height="20" left="0" name="internal" width="480" 11 <radio_item bottom="-40" height="20" left="0" name="internal" width="480"
12 tool_tip="Use the built-in web browser for help, web links, etc. This browser opens as a new window inside Second Life."> 12 tool_tip="Use the built-in web browser for help, web links, etc. This browser opens as a new window inside the viewer.">
13 Use built-in web browser 13 Use built-in web browser
14 </radio_item> 14 </radio_item>
15 </radio_group> 15 </radio_group>
diff --git a/linden/indra/newview/skins/default/xui/en-us/panel_status_bar.xml b/linden/indra/newview/skins/default/xui/en-us/panel_status_bar.xml
index 46ba64a..0169f38 100644
--- a/linden/indra/newview/skins/default/xui/en-us/panel_status_bar.xml
+++ b/linden/indra/newview/skins/default/xui/en-us/panel_status_bar.xml
@@ -101,7 +101,7 @@
101 <button bottom="-17" enabled="true" follows="right|bottom" font="SansSerifSmall" 101 <button bottom="-17" enabled="true" follows="right|bottom" font="SansSerifSmall"
102 halign="center" height="16" image_unselected="status_search_btn.png" image_selected="status_search_btn_pressed.png" image_disabled_selected="status_search_btn_pressed.png" image_disabled="status_search_btn.png" 102 halign="center" height="16" image_unselected="status_search_btn.png" image_selected="status_search_btn_pressed.png" image_disabled_selected="status_search_btn_pressed.png" image_disabled="status_search_btn.png"
103 label="" label_selected="" left="-16" mouse_opaque="true" name="search_btn" 103 label="" label_selected="" left="-16" mouse_opaque="true" name="search_btn"
104 tool_tip="Search Second Life" width="16" scale_image="false"/> 104 tool_tip="Search the grid" width="16" scale_image="false"/>
105 <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" 105 <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
106 bottom="-16" enabled="false" follows="right|bottom" font="SansSerifSmall" 106 bottom="-16" enabled="false" follows="right|bottom" font="SansSerifSmall"
107 halign="center" height="12" left="-20" mouse_opaque="true" 107 halign="center" height="12" left="-20" mouse_opaque="true"
diff --git a/linden/indra/newview/skins/default/xui/ja/panel_avatar.xml b/linden/indra/newview/skins/default/xui/ja/panel_avatar.xml
index 147a5f6..3cbb74b 100644
--- a/linden/indra/newview/skins/default/xui/ja/panel_avatar.xml
+++ b/linden/indra/newview/skins/default/xui/ja/panel_avatar.xml
@@ -138,7 +138,7 @@
138 </panel> 138 </panel>
139 <panel label="ピック" name="Picks"> 139 <panel label="ピック" name="Picks">
140 <tab_container name="picks tab" /> 140 <tab_container name="picks tab" />
141 <text name="Tell everyone about your favorite places in Second Life."> 141 <text name="Tell everyone about your favorite places in world.">
142 Second Lifeのお気入りの場所を皆に教えてください 142 Second Lifeのお気入りの場所を皆に教えてください
143 </text> 143 </text>
144 <button label="新規..." label_selected="新規..." name="New..."/> 144 <button label="新規..." label_selected="新規..." name="New..."/>
@@ -149,7 +149,7 @@
149 </panel> 149 </panel>
150 <panel label="広告" name="Classified"> 150 <panel label="広告" name="Classified">
151 <tab_container name="classified tab" /> 151 <tab_container name="classified tab" />
152 <text name="Place an ad in Second Life&apos;s classified listings."> 152 <text name="Place an ad in the classified listings.">
153 SecondLifeのクラシファイドリストに広告を載せます。 153 SecondLifeのクラシファイドリストに広告を載せます。
154 </text> 154 </text>
155 <button label="新規..." label_selected="新規..." name="New..."/> 155 <button label="新規..." label_selected="新規..." name="New..."/>
diff --git a/linden/indra/test/llsdserialize_tut.cpp b/linden/indra/test/llsdserialize_tut.cpp
index 6fcbe4b..3e9e4b8 100644
--- a/linden/indra/test/llsdserialize_tut.cpp
+++ b/linden/indra/test/llsdserialize_tut.cpp
@@ -315,25 +315,7 @@ namespace tut
315 checkRoundTrip(msg + " non-empty string", v); 315 checkRoundTrip(msg + " non-empty string", v);
316 316
317 v = 317 v =
318"Second Life is a 3-D virtual world entirely built and owned by its residents. " 318"Welcome to this grid. We look forward to seeing you in-world!\n"
319"Since opening to the public in 2003, it has grown explosively and today is "
320"inhabited by nearly 100,000 people from around the globe.\n"
321"\n"
322"From the moment you enter the World you'll discover a vast digital continent, "
323"teeming with people, entertainment, experiences and opportunity. Once you've "
324"explored a bit, perhaps you'll find a perfect parcel of land to build your "
325"house or business.\n"
326"\n"
327"You'll also be surrounded by the Creations of your fellow residents. Because "
328"residents retain the rights to their digital creations, they can buy, sell "
329"and trade with other residents.\n"
330"\n"
331"The Marketplace currently supports millions of US dollars in monthly "
332"transactions. This commerce is handled with the in-world currency, the Linden "
333"dollar, which can be converted to US dollars at several thriving online "
334"currency exchanges.\n"
335"\n"
336"Welcome to Second Life. We look forward to seeing you in-world!\n"
337 ; 319 ;
338 checkRoundTrip(msg + " long string", v); 320 checkRoundTrip(msg + " long string", v);
339 321
diff --git a/linden/indra/test/lluri_tut.cpp b/linden/indra/test/lluri_tut.cpp
index 2ee15be..5f0d4e5 100644
--- a/linden/indra/test/lluri_tut.cpp
+++ b/linden/indra/test/lluri_tut.cpp
@@ -306,7 +306,7 @@ namespace tut
306 void URITestObject::test<17>() 306 void URITestObject::test<17>()
307 { 307 {
308 // do some round-trip tests with very long strings. 308 // do some round-trip tests with very long strings.
309 escapeRoundTrip("Welcome to Second Life.We hope you'll have a richly rewarding experience, filled with creativity, self expression and fun.The goals of the Community Standards are simple: treat each other with respect and without harassment, adhere to local standards as indicated by simulator ratings, and refrain from any hate activity which slurs a real-world individual or real-world community. Behavioral Guidelines - The Big Six"); 309 escapeRoundTrip("Welcome to this grid.We hope you'll have a richly rewarding experience, filled with creativity, self expression and fun. The goals of the Community Standards are simple: treat each other with respect and without harassment, adhere to local standards as indicated by simulator ratings, and refrain from any hate activity which slurs a real-world individual or real-world community.");
310 escapeRoundTrip( 310 escapeRoundTrip(
311 "'asset_data':b(12100){'task_id':ucc706f2d-0b68-68f8-11a4-f1043ff35ca0}\n{\n\tname\tObject|\n\tpermissions 0\n\t{\n\t\tbase_mask\t7fffffff\n\t\towner_mask\t7fffffff\n\t\tgroup_mask\t00000000\n\t\teveryone_mask\t00000000\n\t\tnext_owner_mask\t7fffffff\n\t\tcreator_id\t13fd9595-a47b-4d64-a5fb-6da645f038e0\n\t\towner_id\t3c115e51-04f4-523c-9fa6-98aff1034730\n\t\tlast_owner_id\t3c115e51-04f4-523c-9fa6-98aff1034730\n\t\tgroup_id\t00000000-0000-0000-0000-000000000000\n\t}\n\tlocal_id\t217444921\n\ttotal_crc\t323\n\ttype\t2\n\ttask_valid\t2\n\ttravel_access\t13\n\tdisplayopts\t2\n\tdisplaytype\tv\n\tpos\t-0.368634403\t0.00781063363\t-0.569040775\n\toldpos\t150.117996\t25.8658009\t8.19664001\n\trotation\t-0.06293071806430816650390625\t-0.6995697021484375\t-0.7002241611480712890625\t0.1277817934751510620117188\n\tchildpos\t-0.00499999989\t-0.0359999985\t0.307999998\n\tchildrot\t-0.515492737293243408203125\t-0.46601200103759765625\t0.529055416584014892578125\t0.4870323240756988525390625\n\tscale" 311 "'asset_data':b(12100){'task_id':ucc706f2d-0b68-68f8-11a4-f1043ff35ca0}\n{\n\tname\tObject|\n\tpermissions 0\n\t{\n\t\tbase_mask\t7fffffff\n\t\towner_mask\t7fffffff\n\t\tgroup_mask\t00000000\n\t\teveryone_mask\t00000000\n\t\tnext_owner_mask\t7fffffff\n\t\tcreator_id\t13fd9595-a47b-4d64-a5fb-6da645f038e0\n\t\towner_id\t3c115e51-04f4-523c-9fa6-98aff1034730\n\t\tlast_owner_id\t3c115e51-04f4-523c-9fa6-98aff1034730\n\t\tgroup_id\t00000000-0000-0000-0000-000000000000\n\t}\n\tlocal_id\t217444921\n\ttotal_crc\t323\n\ttype\t2\n\ttask_valid\t2\n\ttravel_access\t13\n\tdisplayopts\t2\n\tdisplaytype\tv\n\tpos\t-0.368634403\t0.00781063363\t-0.569040775\n\toldpos\t150.117996\t25.8658009\t8.19664001\n\trotation\t-0.06293071806430816650390625\t-0.6995697021484375\t-0.7002241611480712890625\t0.1277817934751510620117188\n\tchildpos\t-0.00499999989\t-0.0359999985\t0.307999998\n\tchildrot\t-0.515492737293243408203125\t-0.46601200103759765625\t0.529055416584014892578125\t0.4870323240756988525390625\n\tscale"
312 "\t0.074629\t0.289956\t0.01\n\tsit_offset\t0\t0\t0\n\tcamera_eye_offset\t0\t0\t0\n\tcamera_at_offset\t0\t0\t0\n\tsit_quat\t0\t0\t0\t1\n\tsit_hint\t0\n\tstate\t160\n\tmaterial\t3\n\tsoundid\t00000000-0000-0000-0000-000000000000\n\tsoundgain\t0\n\tsoundradius\t0\n\tsoundflags\t0\n\ttextcolor\t0 0 0 1\n\tselected\t0\n\tselector\t00000000-0000-0000-0000-000000000000\n\tusephysics\t0\n\trotate_x\t1\n\trotate_y\t1\n\trotate_z\t1\n\tphantom\t0\n\tremote_script_access_pin\t0\n\tvolume_detect\t0\n\tblock_grabs\t0\n\tdie_at_edge\t0\n\treturn_at_edge\t0\n\ttemporary\t0\n\tsandbox\t0\n\tsandboxhome\t0\t0\t0\n\tshape 0\n\t{\n\t\tpath 0\n\t\t{\n\t\t\tcurve\t16\n\t\t\tbegin\t0\n\t\t\tend\t1\n\t\t\tscale_x\t1\n\t\t\tscale_y\t1\n\t\t\tshear_x\t0\n\t\t\tshear_y\t0\n\t\t\ttwist\t0\n\t\t\ttwist_begin\t0\n\t\t\tradius_offset\t0\n\t\t\ttaper_x\t0\n\t\t\ttaper_y\t0\n\t\t\trevolutions\t1\n\t\t\tskew\t0\n\t\t}\n\t\tprofile 0\n\t\t{\n\t\t\tcurve\t1\n\t\t\tbegin\t0\n\t\t\tend\t1\n\t\t\thollow\t0\n\t\t}\n\t}\n\tf" 312 "\t0.074629\t0.289956\t0.01\n\tsit_offset\t0\t0\t0\n\tcamera_eye_offset\t0\t0\t0\n\tcamera_at_offset\t0\t0\t0\n\tsit_quat\t0\t0\t0\t1\n\tsit_hint\t0\n\tstate\t160\n\tmaterial\t3\n\tsoundid\t00000000-0000-0000-0000-000000000000\n\tsoundgain\t0\n\tsoundradius\t0\n\tsoundflags\t0\n\ttextcolor\t0 0 0 1\n\tselected\t0\n\tselector\t00000000-0000-0000-0000-000000000000\n\tusephysics\t0\n\trotate_x\t1\n\trotate_y\t1\n\trotate_z\t1\n\tphantom\t0\n\tremote_script_access_pin\t0\n\tvolume_detect\t0\n\tblock_grabs\t0\n\tdie_at_edge\t0\n\treturn_at_edge\t0\n\ttemporary\t0\n\tsandbox\t0\n\tsandboxhome\t0\t0\t0\n\tshape 0\n\t{\n\t\tpath 0\n\t\t{\n\t\t\tcurve\t16\n\t\t\tbegin\t0\n\t\t\tend\t1\n\t\t\tscale_x\t1\n\t\t\tscale_y\t1\n\t\t\tshear_x\t0\n\t\t\tshear_y\t0\n\t\t\ttwist\t0\n\t\t\ttwist_begin\t0\n\t\t\tradius_offset\t0\n\t\t\ttaper_x\t0\n\t\t\ttaper_y\t0\n\t\t\trevolutions\t1\n\t\t\tskew\t0\n\t\t}\n\t\tprofile 0\n\t\t{\n\t\t\tcurve\t1\n\t\t\tbegin\t0\n\t\t\tend\t1\n\t\t\thollow\t0\n\t\t}\n\t}\n\tf"
diff --git a/linden/indra/win_updater/updater.cpp b/linden/indra/win_updater/updater.cpp
index 2e78296..117b8e8 100644
--- a/linden/indra/win_updater/updater.cpp
+++ b/linden/indra/win_updater/updater.cpp
@@ -482,7 +482,7 @@ WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nSho
482 //char params[256]; /* Flawfinder: ignore */ 482 //char params[256]; /* Flawfinder: ignore */
483 //sprintf(params, "/S"); /* Flawfinder: ignore */ 483 //sprintf(params, "/S"); /* Flawfinder: ignore */
484 //MessageBox(gWindow, 484 //MessageBox(gWindow,
485 // L"Updating Second Life.\n\nSecond Life will automatically start once the update is complete. This may take a minute...", 485 // L"Updating grid viewer.\n\n The grid viewer will automatically start once the update is complete. This may take a minute...",
486 // L"Download Complete", 486 // L"Download Complete",
487 // MB_OK); 487 // MB_OK);
488 488