diff options
author | Jeff Ames | 2008-05-16 01:22:11 +0000 |
---|---|---|
committer | Jeff Ames | 2008-05-16 01:22:11 +0000 |
commit | 65c5efe43b68700bad94076d4cd421160203c5de (patch) | |
tree | 589b56649ed02f4942671fd6e51c6dc43f682e0d /OpenSim/Data/RegionProfileData.cs | |
parent | Thank you very much, mjm for : (diff) | |
download | opensim-SC_OLD-65c5efe43b68700bad94076d4cd421160203c5de.zip opensim-SC_OLD-65c5efe43b68700bad94076d4cd421160203c5de.tar.gz opensim-SC_OLD-65c5efe43b68700bad94076d4cd421160203c5de.tar.bz2 opensim-SC_OLD-65c5efe43b68700bad94076d4cd421160203c5de.tar.xz |
Formatting cleanup.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/RegionProfileData.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Data/RegionProfileData.cs b/OpenSim/Data/RegionProfileData.cs index 000a500..897dcbf 100644 --- a/OpenSim/Data/RegionProfileData.cs +++ b/OpenSim/Data/RegionProfileData.cs | |||
@@ -120,7 +120,7 @@ namespace OpenSim.Data | |||
120 | public LLUUID regionMapTextureID = new LLUUID("00000000-0000-1111-9999-000000000006"); | 120 | public LLUUID regionMapTextureID = new LLUUID("00000000-0000-1111-9999-000000000006"); |
121 | 121 | ||
122 | /// <summary> | 122 | /// <summary> |
123 | /// this particular mod to the file provides support within the spec for RegionProfileData for the | 123 | /// this particular mod to the file provides support within the spec for RegionProfileData for the |
124 | /// owner_uuid for the region | 124 | /// owner_uuid for the region |
125 | /// </summary> | 125 | /// </summary> |
126 | public LLUUID owner_uuid = LLUUID.Zero; | 126 | public LLUUID owner_uuid = LLUUID.Zero; |
@@ -128,7 +128,7 @@ namespace OpenSim.Data | |||
128 | /// <summary> | 128 | /// <summary> |
129 | /// OGS/OpenSim Specific original ID for a region after move/split | 129 | /// OGS/OpenSim Specific original ID for a region after move/split |
130 | /// </summary> | 130 | /// </summary> |
131 | public LLUUID originUUID; | 131 | public LLUUID originUUID; |
132 | 132 | ||
133 | /// <summary> | 133 | /// <summary> |
134 | /// Get Sim profile data from grid server when in grid mode | 134 | /// Get Sim profile data from grid server when in grid mode |
@@ -163,7 +163,7 @@ namespace OpenSim.Data | |||
163 | simData.serverPort = Convert.ToUInt32((string) responseData["sim_port"]); | 163 | simData.serverPort = Convert.ToUInt32((string) responseData["sim_port"]); |
164 | simData.httpPort = Convert.ToUInt32((string) responseData["http_port"]); | 164 | simData.httpPort = Convert.ToUInt32((string) responseData["http_port"]); |
165 | simData.remotingPort = Convert.ToUInt32((string) responseData["remoting_port"]); | 165 | simData.remotingPort = Convert.ToUInt32((string) responseData["remoting_port"]); |
166 | simData.serverURI = (string)responseData["server_uri"]; | 166 | simData.serverURI = (string)responseData["server_uri"]; |
167 | simData.httpServerURI = "http://" + simData.serverIP + ":" + simData.httpPort.ToString() + "/"; | 167 | simData.httpServerURI = "http://" + simData.serverIP + ":" + simData.httpPort.ToString() + "/"; |
168 | simData.UUID = new LLUUID((string) responseData["region_UUID"]); | 168 | simData.UUID = new LLUUID((string) responseData["region_UUID"]); |
169 | simData.regionName = (string) responseData["region_name"]; | 169 | simData.regionName = (string) responseData["region_name"]; |
@@ -206,7 +206,7 @@ namespace OpenSim.Data | |||
206 | simData.httpPort = Convert.ToUInt32((string) responseData["http_port"]); | 206 | simData.httpPort = Convert.ToUInt32((string) responseData["http_port"]); |
207 | simData.remotingPort = Convert.ToUInt32((string) responseData["remoting_port"]); | 207 | simData.remotingPort = Convert.ToUInt32((string) responseData["remoting_port"]); |
208 | simData.httpServerURI = "http://" + simData.serverIP + ":" + simData.httpPort.ToString() + "/"; | 208 | simData.httpServerURI = "http://" + simData.serverIP + ":" + simData.httpPort.ToString() + "/"; |
209 | simData.serverURI = (string)responseData["server_uri"]; | 209 | simData.serverURI = (string)responseData["server_uri"]; |
210 | simData.UUID = new LLUUID((string) responseData["region_UUID"]); | 210 | simData.UUID = new LLUUID((string) responseData["region_UUID"]); |
211 | simData.regionName = (string) responseData["region_name"]; | 211 | simData.regionName = (string) responseData["region_name"]; |
212 | 212 | ||