aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Seikel2011-02-26 05:26:28 +1000
committerDavid Seikel2011-02-26 05:26:28 +1000
commit100384f232733d112e7a3f14fa02c2c2c39d246c (patch)
tree5ae461bf4c5e4c8a3ee4fe0e1f299a22f593ddc4
parentIn the meta grid, staff members have the last name "Meta", the users are "met... (diff)
downloadmeta-impy-100384f232733d112e7a3f14fa02c2c2c39d246c.zip
meta-impy-100384f232733d112e7a3f14fa02c2c2c39d246c.tar.gz
meta-impy-100384f232733d112e7a3f14fa02c2c2c39d246c.tar.bz2
meta-impy-100384f232733d112e7a3f14fa02c2c2c39d246c.tar.xz
Unbranding word of the day is "Second Life".
-rw-r--r--linden/indra/llmessage/llinstantmessage.cpp1
-rw-r--r--linden/indra/llui/lluistring.h12
-rw-r--r--linden/indra/mac_crash_logger/mac_crash_logger.cpp2
-rw-r--r--linden/indra/newview/llappviewermacosx.cpp2
-rw-r--r--linden/indra/newview/llmediactrl.cpp2
-rw-r--r--linden/indra/newview/llviewertexteditor.h2
-rw-r--r--linden/indra/newview/skins/default/xui/en-us/floater_about.xml2
7 files changed, 12 insertions, 11 deletions
diff --git a/linden/indra/llmessage/llinstantmessage.cpp b/linden/indra/llmessage/llinstantmessage.cpp
index 44be3ae..30205d8 100644
--- a/linden/indra/llmessage/llinstantmessage.cpp
+++ b/linden/indra/llmessage/llinstantmessage.cpp
@@ -60,6 +60,7 @@ const S32 VOTE_UNANIMOUS = 2;
60const char EMPTY_BINARY_BUCKET[] = ""; 60const char EMPTY_BINARY_BUCKET[] = "";
61const S32 EMPTY_BINARY_BUCKET_SIZE = 1; 61const S32 EMPTY_BINARY_BUCKET_SIZE = 1;
62const U32 NO_TIMESTAMP = 0; 62const U32 NO_TIMESTAMP = 0;
63// Damn, this seems to be hard coded into the protocol.
63const std::string SYSTEM_FROM("Second Life"); 64const std::string SYSTEM_FROM("Second Life");
64const S32 IM_TTL = 1; 65const S32 IM_TTL = 1;
65 66
diff --git a/linden/indra/llui/lluistring.h b/linden/indra/llui/lluistring.h
index aedeca2..adc2e08 100644
--- a/linden/indra/llui/lluistring.h
+++ b/linden/indra/llui/lluistring.h
@@ -45,14 +45,14 @@
45// the correct result 45// the correct result
46 46
47// Example Usage: 47// Example Usage:
48// LLUIString mMessage("Welcome [USERNAME] to [SECONDLIFE]!"); 48// LLUIString mMessage("Welcome [USERNAME] to [GRIDNAME]!");
49// mMessage.setArg("[USERNAME]", "Steve"); 49// mMessage.setArg("[USERNAME]", "Steve");
50// mMessage.setArg("[SECONDLIFE]", "Second Life"); 50// mMessage.setArg("[GRIDNAME]", "This Grid");
51// llinfos << mMessage.getString() << llendl; // outputs "Welcome Steve to Second Life" 51// llinfos << mMessage.getString() << llendl; // outputs "Welcome Steve to This Grid"
52// mMessage.setArg("[USERNAME]", "Joe"); 52// mMessage.setArg("[USERNAME]", "Joe");
53// llinfos << mMessage.getString() << llendl; // outputs "Welcome Joe to Second Life" 53// llinfos << mMessage.getString() << llendl; // outputs "Welcome Joe to This Grid"
54// mMessage = "Recepci￳n a la [SECONDLIFE] [USERNAME]" 54// mMessage = "Recepci￳n a la [GRIDNAME] [USERNAME]"
55// mMessage.setArg("[SECONDLIFE]", "Segunda Vida"); 55// mMessage.setArg("[GRIDNAME]", "Segunda Vida");
56// llinfos << mMessage.getString() << llendl; // outputs "Recepci￳n a la Segunda Vida Joe" 56// llinfos << mMessage.getString() << llendl; // outputs "Recepci￳n a la Segunda Vida Joe"
57 57
58// Implementation Notes: 58// Implementation Notes:
diff --git a/linden/indra/mac_crash_logger/mac_crash_logger.cpp b/linden/indra/mac_crash_logger/mac_crash_logger.cpp
index 1f5663d..464cc5d 100644
--- a/linden/indra/mac_crash_logger/mac_crash_logger.cpp
+++ b/linden/indra/mac_crash_logger/mac_crash_logger.cpp
@@ -38,7 +38,7 @@ int main(int argc, char **argv)
38{ 38{
39 //time(&gLaunchTime); 39 //time(&gLaunchTime);
40 40
41 llinfos << "Starting Second Life Viewer Crash Reporter" << llendl; 41 llinfos << "Starting Crash Reporter" << llendl;
42 42
43 LLCrashLoggerMac app; 43 LLCrashLoggerMac app;
44 app.parseCommandOptions(argc, argv); 44 app.parseCommandOptions(argc, argv);
diff --git a/linden/indra/newview/llappviewermacosx.cpp b/linden/indra/newview/llappviewermacosx.cpp
index d81b6e3..5496e5b 100644
--- a/linden/indra/newview/llappviewermacosx.cpp
+++ b/linden/indra/newview/llappviewermacosx.cpp
@@ -300,7 +300,7 @@ static OSStatus CarbonEventHandler(EventHandlerCallRef inHandlerCallRef,
300void LLAppViewerMacOSX::handleCrashReporting(bool reportFreeze) 300void LLAppViewerMacOSX::handleCrashReporting(bool reportFreeze)
301{ 301{
302 // This used to use fork&exec, but is switched to LSOpenApplication to 302 // This used to use fork&exec, but is switched to LSOpenApplication to
303 // Make sure the crash reporter launches in front of the SL window. 303 // Make sure the crash reporter launches in front of the viewer window.
304 304
305 std::string command_str; 305 std::string command_str;
306 //command_str = "open Second Life.app/Contents/Resources/mac-crash-logger.app"; 306 //command_str = "open Second Life.app/Contents/Resources/mac-crash-logger.app";
diff --git a/linden/indra/newview/llmediactrl.cpp b/linden/indra/newview/llmediactrl.cpp
index cc9fec6..51b0929 100644
--- a/linden/indra/newview/llmediactrl.cpp
+++ b/linden/indra/newview/llmediactrl.cpp
@@ -888,7 +888,7 @@ void LLMediaCtrl::onClickLinkHref( LLPluginClassMedia* self )
888// const bool open_links_externally = false; 888// const bool open_links_externally = false;
889// LLFloaterHtml::getInstance()->show( 889// LLFloaterHtml::getInstance()->show(
890// event_in.mStringPayload, 890// event_in.mStringPayload,
891// "Second Life Browser", 891// "Viewer Browser",
892// open_links_externally, 892// open_links_externally,
893// mTrusted); 893// mTrusted);
894 } 894 }
diff --git a/linden/indra/newview/llviewertexteditor.h b/linden/indra/newview/llviewertexteditor.h
index c69b3f0..9d30e4f 100644
--- a/linden/indra/newview/llviewertexteditor.h
+++ b/linden/indra/newview/llviewertexteditor.h
@@ -85,7 +85,7 @@ public:
85 void setEmbeddedText(const std::string& instr); 85 void setEmbeddedText(const std::string& instr);
86 std::string getEmbeddedText(); 86 std::string getEmbeddedText();
87 87
88 // Appends Second Life time, small font, grey. 88 // Appends grid time, small font, grey.
89 // If this starts a line, you need to prepend a newline. 89 // If this starts a line, you need to prepend a newline.
90 std::string appendTime(bool prepend_newline); 90 std::string appendTime(bool prepend_newline);
91 91
diff --git a/linden/indra/newview/skins/default/xui/en-us/floater_about.xml b/linden/indra/newview/skins/default/xui/en-us/floater_about.xml
index ef02bfa..3485684 100644
--- a/linden/indra/newview/skins/default/xui/en-us/floater_about.xml
+++ b/linden/indra/newview/skins/default/xui/en-us/floater_about.xml
@@ -2,7 +2,7 @@
2<floater can_close="true" can_drag_on_left="false" can_minimize="true" 2<floater can_close="true" can_drag_on_left="false" can_minimize="true"
3 can_resize="false" height="440" min_height="100" min_width="100" 3 can_resize="false" height="440" min_height="100" min_width="100"
4 name="floater_about" rect_control="FloaterAboutRect" 4 name="floater_about" rect_control="FloaterAboutRect"
5 title="About Second Life" width="470"> 5 title="About grid viewer" width="470">
6 <text_editor bottom="-434" embedded_items="false" 6 <text_editor bottom="-434" embedded_items="false"
7 follows="left|top|right|bottom" font="SansSerifSmall" height="168" left="6" 7 follows="left|top|right|bottom" font="SansSerifSmall" height="168" left="6"
8 max_length="65536" mouse_opaque="true" name="credits_editor" width="458" 8 max_length="65536" mouse_opaque="true" name="credits_editor" width="458"