aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra')
-rw-r--r--linden/indra/newview/app_settings/default_grids.xml14
-rw-r--r--linden/indra/newview/app_settings/settings.xml2
-rw-r--r--linden/indra/newview/hippoGridManager.cpp12
3 files changed, 6 insertions, 22 deletions
diff --git a/linden/indra/newview/app_settings/default_grids.xml b/linden/indra/newview/app_settings/default_grids.xml
index 13293cf..f11f513 100644
--- a/linden/indra/newview/app_settings/default_grids.xml
+++ b/linden/indra/newview/app_settings/default_grids.xml
@@ -10,20 +10,6 @@
10 <key>default_grids_version</key><string>0</string> 10 <key>default_grids_version</key><string>0</string>
11 </map> 11 </map>
12 12
13 <!-- Second Life -->
14 <map>
15 <key>gridnick</key><string>secondlife</string>
16 <key>gridname</key><string>Second Life</string>
17 <key>platform</key><string>SecondLife</string>
18 <key>loginuri</key><string>https://login.agni.lindenlab.com/cgi-bin/login.cgi</string>
19 <key>loginpage</key><string>http://secondlife.com/app/login/</string>
20 <key>helperuri</key><string>https://secondlife.com/helpers/</string>
21 <key>website</key><string>http://secondlife.com/</string>
22 <key>support</key><string>http://secondlife.com/support/</string>
23 <key>register</key><string>http://secondlife.com/registration/</string>
24 <key>password</key><string>http://secondlife.com/account/request.php</string>
25 </map>
26
27 <!-- Local Host --> 13 <!-- Local Host -->
28 <map> 14 <map>
29 <key>gridnick</key><string>localhost</string> 15 <key>gridnick</key><string>localhost</string>
diff --git a/linden/indra/newview/app_settings/settings.xml b/linden/indra/newview/app_settings/settings.xml
index 3026cc7..a7592c7 100644
--- a/linden/indra/newview/app_settings/settings.xml
+++ b/linden/indra/newview/app_settings/settings.xml
@@ -12730,7 +12730,7 @@
12730 <key>Type</key> 12730 <key>Type</key>
12731 <string>String</string> 12731 <string>String</string>
12732 <key>Value</key> 12732 <key>Value</key>
12733 <string>secondlife</string> 12733 <string>osgrid</string>
12734 </map> 12734 </map>
12735 <key>KeepAppearance</key> 12735 <key>KeepAppearance</key>
12736 <map> 12736 <map>
diff --git a/linden/indra/newview/hippoGridManager.cpp b/linden/indra/newview/hippoGridManager.cpp
index 9ff2d39..f96e3ec 100644
--- a/linden/indra/newview/hippoGridManager.cpp
+++ b/linden/indra/newview/hippoGridManager.cpp
@@ -485,13 +485,11 @@ std::string HippoGridInfo::sanitizeUri(std::string &uri)
485 485
486void HippoGridInfo::initFallback() 486void HippoGridInfo::initFallback()
487{ 487{
488 FALLBACK_GRIDINFO.mGridNick = "secondlife"; 488 FALLBACK_GRIDINFO.mGridNick = "localhost";
489 FALLBACK_GRIDINFO.setPlatform(PLATFORM_SECONDLIFE); 489 FALLBACK_GRIDINFO.setPlatform(PLATFORM_OPENSIM);
490 FALLBACK_GRIDINFO.setGridName("Second Life"); 490 FALLBACK_GRIDINFO.setGridName("Local Host");
491 FALLBACK_GRIDINFO.setLoginUri("https://login.agni.lindenlab.com/cgi-bin/login.cgi"); 491 FALLBACK_GRIDINFO.setLoginUri("http://127.0.0.1:9000/");
492 FALLBACK_GRIDINFO.setLoginPage("http://secondlife.com/app/login/"); 492 FALLBACK_GRIDINFO.setHelperUri("http://127.0.0.1:9000/");
493 FALLBACK_GRIDINFO.setHelperUri("https://secondlife.com/helpers/");
494 FALLBACK_GRIDINFO.setWebSite("http://secondlife.com/");
495} 493}
496 494
497 495