Re-rename ProductName back to it's original RegionType
parent
72b96bcd84
commit
a95741cdd6
|
@ -303,7 +303,7 @@ namespace OpenSim.Framework
|
||||||
private int m_physPrimMax = 0;
|
private int m_physPrimMax = 0;
|
||||||
private bool m_clampPrimSize = false;
|
private bool m_clampPrimSize = false;
|
||||||
private int m_objectCapacity = 0;
|
private int m_objectCapacity = 0;
|
||||||
private string m_productName = String.Empty;
|
private string m_regionType = String.Empty;
|
||||||
|
|
||||||
|
|
||||||
// Apparently, we're applying the same estatesettings regardless of whether it's local or remote.
|
// Apparently, we're applying the same estatesettings regardless of whether it's local or remote.
|
||||||
|
@ -479,9 +479,9 @@ namespace OpenSim.Framework
|
||||||
get { return (byte)Util.ConvertMaturityToAccessLevel((uint)RegionSettings.Maturity); }
|
get { return (byte)Util.ConvertMaturityToAccessLevel((uint)RegionSettings.Maturity); }
|
||||||
}
|
}
|
||||||
|
|
||||||
public string ProductName
|
public string RegionType
|
||||||
{
|
{
|
||||||
get { return m_productName; }
|
get { return m_regionType; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetEndPoint(string ipaddr, int port)
|
public void SetEndPoint(string ipaddr, int port)
|
||||||
|
@ -660,7 +660,7 @@ namespace OpenSim.Framework
|
||||||
|
|
||||||
MasterAvatarAssignedUUID = new UUID(masterAvatarUUID);
|
MasterAvatarAssignedUUID = new UUID(masterAvatarUUID);
|
||||||
|
|
||||||
m_productName = config.GetString("ProductName", String.Empty);
|
m_regionType = config.GetString("RegionType", String.Empty);
|
||||||
|
|
||||||
// Prim stuff
|
// Prim stuff
|
||||||
//
|
//
|
||||||
|
@ -728,8 +728,8 @@ namespace OpenSim.Framework
|
||||||
if (ScopeID != UUID.Zero)
|
if (ScopeID != UUID.Zero)
|
||||||
config.Set("ScopeID", ScopeID.ToString());
|
config.Set("ScopeID", ScopeID.ToString());
|
||||||
|
|
||||||
if (ProductName != String.Empty)
|
if (RegionType != String.Empty)
|
||||||
config.Set("ProductName", ProductName);
|
config.Set("RegionType", RegionType);
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool ignoreIncomingConfiguration(string configuration_key, object configuration_result)
|
public bool ignoreIncomingConfiguration(string configuration_key, object configuration_result)
|
||||||
|
@ -820,8 +820,8 @@ namespace OpenSim.Framework
|
||||||
configMember.addConfigurationOption("scope_id", ConfigurationOption.ConfigurationTypes.TYPE_UUID,
|
configMember.addConfigurationOption("scope_id", ConfigurationOption.ConfigurationTypes.TYPE_UUID,
|
||||||
"Scope ID for this region", ScopeID.ToString(), true);
|
"Scope ID for this region", ScopeID.ToString(), true);
|
||||||
|
|
||||||
configMember.addConfigurationOption("product_name", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
|
configMember.addConfigurationOption("region_type", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
|
||||||
"Product Name", String.Empty, true);
|
"Region Type", String.Empty, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void loadConfigurationOptions()
|
public void loadConfigurationOptions()
|
||||||
|
@ -886,8 +886,8 @@ namespace OpenSim.Framework
|
||||||
configMember.addConfigurationOption("scope_id", ConfigurationOption.ConfigurationTypes.TYPE_UUID,
|
configMember.addConfigurationOption("scope_id", ConfigurationOption.ConfigurationTypes.TYPE_UUID,
|
||||||
"Scope ID for this region", UUID.Zero.ToString(), true);
|
"Scope ID for this region", UUID.Zero.ToString(), true);
|
||||||
|
|
||||||
configMember.addConfigurationOption("product_name", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
|
configMember.addConfigurationOption("region_type", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
|
||||||
"Product Name", String.Empty, true);
|
"Region Type", String.Empty, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool shouldMasterAvatarDetailsBeAsked(string configuration_key)
|
public bool shouldMasterAvatarDetailsBeAsked(string configuration_key)
|
||||||
|
@ -968,8 +968,8 @@ namespace OpenSim.Framework
|
||||||
case "scope_id":
|
case "scope_id":
|
||||||
ScopeID = (UUID)configuration_result;
|
ScopeID = (UUID)configuration_result;
|
||||||
break;
|
break;
|
||||||
case "product_name":
|
case "region_type":
|
||||||
m_productName = (string)configuration_result;
|
m_regionType = (string)configuration_result;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1006,8 +1006,8 @@ namespace OpenSim.Framework
|
||||||
args["allow_alt_ports"] = OSD.FromBoolean(m_allow_alternate_ports);
|
args["allow_alt_ports"] = OSD.FromBoolean(m_allow_alternate_ports);
|
||||||
if ((proxyUrl != null) && !proxyUrl.Equals(""))
|
if ((proxyUrl != null) && !proxyUrl.Equals(""))
|
||||||
args["proxy_url"] = OSD.FromString(proxyUrl);
|
args["proxy_url"] = OSD.FromString(proxyUrl);
|
||||||
if (ProductName != String.Empty)
|
if (RegionType != String.Empty)
|
||||||
args["product_name"] = OSD.FromString(ProductName);
|
args["region_type"] = OSD.FromString(RegionType);
|
||||||
|
|
||||||
return args;
|
return args;
|
||||||
}
|
}
|
||||||
|
@ -1055,8 +1055,8 @@ namespace OpenSim.Framework
|
||||||
m_allow_alternate_ports = args["allow_alt_ports"].AsBoolean();
|
m_allow_alternate_ports = args["allow_alt_ports"].AsBoolean();
|
||||||
if (args["proxy_url"] != null)
|
if (args["proxy_url"] != null)
|
||||||
proxyUrl = args["proxy_url"].AsString();
|
proxyUrl = args["proxy_url"].AsString();
|
||||||
if (args["product_name"] != null)
|
if (args["region_type"] != null)
|
||||||
m_productName = args["product_name"].AsString();
|
m_regionType = args["region_type"].AsString();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static RegionInfo Create(UUID regionID, string regionName, uint regX, uint regY, string externalHostName, uint httpPort, uint simPort, uint remotingPort, string serverURI)
|
public static RegionInfo Create(UUID regionID, string regionName, uint regX, uint regY, string externalHostName, uint httpPort, uint simPort, uint remotingPort, string serverURI)
|
||||||
|
|
Loading…
Reference in New Issue