diff options
| -rw-r--r-- | indra/newview/llviewernetwork.cpp | 26 | ||||
| -rw-r--r-- | indra/newview/tests/llviewernetwork_test.cpp | 8 | 
2 files changed, 29 insertions, 5 deletions
diff --git a/indra/newview/llviewernetwork.cpp b/indra/newview/llviewernetwork.cpp index a160572f7a..7812867667 100644 --- a/indra/newview/llviewernetwork.cpp +++ b/indra/newview/llviewernetwork.cpp @@ -108,6 +108,26 @@ void LLGridManager::initialize(const std::string& grid_file)  				  "https://login.aruna.lindenlab.com/cgi-bin/login.cgi",                     				  "http://aruna-secondlife.webdev.lindenlab.com/helpers/",  				  DEFAULT_LOGIN_PAGE); +	addSystemGrid("Bharati",                                                                                             +				  "util.bharati.lindenlab.com",                                               +				  "https://login.bharati.lindenlab.com/cgi-bin/login.cgi",                    +				  "http://bharati-secondlife.webdev.lindenlab.com/helpers/", +				  DEFAULT_LOGIN_PAGE); +	addSystemGrid("Chandra",                                                                                             +				  "util.chandra.lindenlab.com",                                               +				  "https://login.chandra.lindenlab.com/cgi-bin/login.cgi",                    +				  "http://chandra-secondlife.webdev.lindenlab.com/helpers/", +				  DEFAULT_LOGIN_PAGE); +	addSystemGrid("Damballah",                                                                                             +				  "util.damballah.lindenlab.com",                                               +				  "https://login.damballah.lindenlab.com/cgi-bin/login.cgi",                    +				  "http://damballah-secondlife.webdev.lindenlab.com/helpers/", +				  DEFAULT_LOGIN_PAGE); +	addSystemGrid("Danu",                                                                                             +				  "util.danu.lindenlab.com",                                               +				  "https://login.danu.lindenlab.com/cgi-bin/login.cgi",                    +				  "http://danu-secondlife.webdev.lindenlab.com/helpers/", +				  DEFAULT_LOGIN_PAGE);  	addSystemGrid("Durga",                                                                                              				  "util.durga.lindenlab.com",                                                				  "https://login.durga.lindenlab.com/cgi-bin/login.cgi",                    @@ -133,6 +153,11 @@ void LLGridManager::initialize(const std::string& grid_file)  				  "https://login.nandi.lindenlab.com/cgi-bin/login.cgi",                     				  "http://nandi-secondlife.webdev.lindenlab.com/helpers/",  				  DEFAULT_LOGIN_PAGE); +	addSystemGrid("Parvati",                                                                                             +				  "util.parvati.lindenlab.com",                                               +				  "https://login.parvati.lindenlab.com/cgi-bin/login.cgi",                    +				  "http://parvati-secondlife.webdev.lindenlab.com/helpers/", +				  DEFAULT_LOGIN_PAGE);  	addSystemGrid("Radha",                                                                                              				  "util.radha.lindenlab.com",                                                				  "https://login.radha.lindenlab.com/cgi-bin/login.cgi",                    @@ -158,7 +183,6 @@ void LLGridManager::initialize(const std::string& grid_file)  				  "https://login.soma.lindenlab.com/cgi-bin/login.cgi",                      				  "http://soma-secondlife.webdev.lindenlab.com/helpers/",  				  DEFAULT_LOGIN_PAGE); -	  	addSystemGrid("Uma",                                                                                                				  "util.uma.lindenlab.com",                                                  				  "https://login.uma.lindenlab.com/cgi-bin/login.cgi",                      diff --git a/indra/newview/tests/llviewernetwork_test.cpp b/indra/newview/tests/llviewernetwork_test.cpp index 025b570be2..d819b44564 100644 --- a/indra/newview/tests/llviewernetwork_test.cpp +++ b/indra/newview/tests/llviewernetwork_test.cpp @@ -143,7 +143,7 @@ namespace tut  		manager->initialize("grid_test.xml");  		// validate that some of the defaults are available.  		std::map<std::string, std::string> known_grids = manager->getKnownGrids(); -		ensure_equals("Known grids is a string-string map of size 18", known_grids.size(), 18); +		ensure_equals("Known grids is a string-string map of size 23", known_grids.size(), 23);  		ensure_equals("Agni has the right name and label",   					  known_grids[std::string("util.agni.lindenlab.com")], std::string("Agni"));  		ensure_equals("None exists", known_grids[""], "None"); @@ -184,7 +184,7 @@ namespace tut  		LLGridManager::getInstance()->initialize("grid_test.xml");  		std::map<std::string, std::string> known_grids = LLGridManager::getInstance()->getKnownGrids();  		ensure_equals("adding a grid via a grid file increases known grid size",  -					  known_grids.size(), 19); +					  known_grids.size(), 24);  		ensure_equals("Agni is still there after we've added a grid via a grid file",   					  known_grids["util.agni.lindenlab.com"], std::string("Agni")); @@ -250,7 +250,7 @@ namespace tut  		// with single login uri specified.  		std::map<std::string, std::string> known_grids = LLGridManager::getInstance()->getKnownGrids();  		ensure_equals("adding a command line grid increases known grid size",  -					  known_grids.size(), 19); +					  known_grids.size(), 24);  		ensure_equals("Command line grid is added to the list of grids",   					  known_grids["my.login.uri"], std::string("my.login.uri"));  		LLSD grid = LLGridManager::getInstance()->getGridInfo("my.login.uri"); @@ -279,7 +279,7 @@ namespace tut  		LLGridManager::getInstance()->initialize("grid_test.xml");  		known_grids = LLGridManager::getInstance()->getKnownGrids();  		ensure_equals("adding a command line grid with custom name increases known grid size",  -					  known_grids.size(), 19); +					  known_grids.size(), 24);  		ensure_equals("Custom Command line grid is added to the list of grids",   					  known_grids["mycustomgridchoice"], std::string("mycustomgridchoice"));  		grid = LLGridManager::getInstance()->getGridInfo("mycustomgridchoice");  | 
