Cleanup some unused code and configuration entries
parent
40c579addf
commit
e19d1ecce8
|
@ -227,7 +227,7 @@ namespace OpenSim.Services.LLLoginService
|
||||||
public LLLoginResponse(UserAccount account, AgentCircuitData aCircuit, GridUserInfo pinfo,
|
public LLLoginResponse(UserAccount account, AgentCircuitData aCircuit, GridUserInfo pinfo,
|
||||||
GridRegion destination, List<InventoryFolderBase> invSkel, FriendInfo[] friendsList, ILibraryService libService,
|
GridRegion destination, List<InventoryFolderBase> invSkel, FriendInfo[] friendsList, ILibraryService libService,
|
||||||
string where, string startlocation, Vector3 position, Vector3 lookAt, List<InventoryItemBase> gestures, string message,
|
string where, string startlocation, Vector3 position, Vector3 lookAt, List<InventoryItemBase> gestures, string message,
|
||||||
GridRegion home, IPEndPoint clientIP, string mapTileURL, string profileURL, string openIDURL, string searchURL, string currency,
|
GridRegion home, IPEndPoint clientIP, string mapTileURL, string searchURL, string currency,
|
||||||
string DSTZone, string destinationsURL, string avatarsURL, string classifiedFee)
|
string DSTZone, string destinationsURL, string avatarsURL, string classifiedFee)
|
||||||
: this()
|
: this()
|
||||||
{
|
{
|
||||||
|
|
|
@ -77,8 +77,6 @@ namespace OpenSim.Services.LLLoginService
|
||||||
protected string m_GatekeeperURL;
|
protected string m_GatekeeperURL;
|
||||||
protected bool m_AllowRemoteSetLoginLevel;
|
protected bool m_AllowRemoteSetLoginLevel;
|
||||||
protected string m_MapTileURL;
|
protected string m_MapTileURL;
|
||||||
protected string m_ProfileURL;
|
|
||||||
protected string m_OpenIDURL;
|
|
||||||
protected string m_SearchURL;
|
protected string m_SearchURL;
|
||||||
protected string m_Currency;
|
protected string m_Currency;
|
||||||
protected string m_ClassifiedFee;
|
protected string m_ClassifiedFee;
|
||||||
|
@ -119,8 +117,6 @@ namespace OpenSim.Services.LLLoginService
|
||||||
m_GatekeeperURL = Util.GetConfigVarFromSections<string>(config, "GatekeeperURI",
|
m_GatekeeperURL = Util.GetConfigVarFromSections<string>(config, "GatekeeperURI",
|
||||||
new string[] { "Startup", "Hypergrid", "LoginService" }, String.Empty);
|
new string[] { "Startup", "Hypergrid", "LoginService" }, String.Empty);
|
||||||
m_MapTileURL = m_LoginServerConfig.GetString("MapTileURL", string.Empty);
|
m_MapTileURL = m_LoginServerConfig.GetString("MapTileURL", string.Empty);
|
||||||
m_ProfileURL = m_LoginServerConfig.GetString("ProfileServerURL", string.Empty);
|
|
||||||
m_OpenIDURL = m_LoginServerConfig.GetString("OpenIDServerURL", String.Empty);
|
|
||||||
m_SearchURL = m_LoginServerConfig.GetString("SearchURL", string.Empty);
|
m_SearchURL = m_LoginServerConfig.GetString("SearchURL", string.Empty);
|
||||||
m_Currency = m_LoginServerConfig.GetString("Currency", string.Empty);
|
m_Currency = m_LoginServerConfig.GetString("Currency", string.Empty);
|
||||||
m_ClassifiedFee = m_LoginServerConfig.GetString("ClassifiedFee", string.Empty);
|
m_ClassifiedFee = m_LoginServerConfig.GetString("ClassifiedFee", string.Empty);
|
||||||
|
@ -498,7 +494,7 @@ namespace OpenSim.Services.LLLoginService
|
||||||
= new LLLoginResponse(
|
= new LLLoginResponse(
|
||||||
account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService,
|
account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService,
|
||||||
where, startLocation, position, lookAt, gestures, m_WelcomeMessage, home, clientIP,
|
where, startLocation, position, lookAt, gestures, m_WelcomeMessage, home, clientIP,
|
||||||
m_MapTileURL, m_ProfileURL, m_OpenIDURL, m_SearchURL, m_Currency, m_DSTZone,
|
m_MapTileURL, m_SearchURL, m_Currency, m_DSTZone,
|
||||||
m_DestinationGuide, m_AvatarPicker, m_ClassifiedFee);
|
m_DestinationGuide, m_AvatarPicker, m_ClassifiedFee);
|
||||||
|
|
||||||
m_log.DebugFormat("[LLOGIN SERVICE]: All clear. Sending login response to {0} {1}", firstName, lastName);
|
m_log.DebugFormat("[LLOGIN SERVICE]: All clear. Sending login response to {0} {1}", firstName, lastName);
|
||||||
|
|
|
@ -372,16 +372,6 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset
|
||||||
; Url to search service
|
; Url to search service
|
||||||
; SearchURL = "http://127.0.0.1:8002/";
|
; SearchURL = "http://127.0.0.1:8002/";
|
||||||
|
|
||||||
; For V2/3 Web Profiles
|
|
||||||
; Work in progress: The ProfileServerURL/OpenIDServerURL are
|
|
||||||
; being used in a development viewer as support for webprofiles
|
|
||||||
; is being developed across the componets
|
|
||||||
;
|
|
||||||
; ProfileServerURL = "http://127.0.0.1/profiles/[AGENT_NAME]"
|
|
||||||
;
|
|
||||||
; For V2/V3 webapp authentication SSO
|
|
||||||
; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/"
|
|
||||||
|
|
||||||
; For V3 destination guide
|
; For V3 destination guide
|
||||||
; DestinationGuide = "http://127.0.0.1/guide"
|
; DestinationGuide = "http://127.0.0.1/guide"
|
||||||
|
|
||||||
|
|
|
@ -331,16 +331,6 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
|
||||||
; Url to search service
|
; Url to search service
|
||||||
; SearchURL = "http://127.0.0.1:8002/";
|
; SearchURL = "http://127.0.0.1:8002/";
|
||||||
|
|
||||||
; For V2/3 Web Profiles
|
|
||||||
; Work in progress: The ProfileServerURL/OpenIDServerURL are
|
|
||||||
; being used in a development viewer as support for webprofiles
|
|
||||||
; is being developed across the componets
|
|
||||||
;
|
|
||||||
; ProfileServerURL = "http://127.0.0.1/profiles/[AGENT_NAME]"
|
|
||||||
;
|
|
||||||
; For V2/V3 webapp authentication SSO
|
|
||||||
; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/"
|
|
||||||
|
|
||||||
; For V3 destination guide
|
; For V3 destination guide
|
||||||
; DestinationGuide = "http://127.0.0.1/guide"
|
; DestinationGuide = "http://127.0.0.1/guide"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue