diff options
author | Jeff Ames | 2008-06-26 20:14:33 +0000 |
---|---|---|
committer | Jeff Ames | 2008-06-26 20:14:33 +0000 |
commit | 9fae975a53fbb852dfbaf811dca259ddd4f74f4c (patch) | |
tree | 7273987bd5c30c4fabca6fa68b43ce25304a703a /OpenSim/Data/RegionProfileData.cs | |
parent | Update svn properties. Minor formatting cleanup. (diff) | |
download | opensim-SC_OLD-9fae975a53fbb852dfbaf811dca259ddd4f74f4c.zip opensim-SC_OLD-9fae975a53fbb852dfbaf811dca259ddd4f74f4c.tar.gz opensim-SC_OLD-9fae975a53fbb852dfbaf811dca259ddd4f74f4c.tar.bz2 opensim-SC_OLD-9fae975a53fbb852dfbaf811dca259ddd4f74f4c.tar.xz |
Apply patch from bug #1605 -- Documentation for Data/SQLite. Thanks kerunix_Flan!
Diffstat (limited to 'OpenSim/Data/RegionProfileData.cs')
-rw-r--r-- | OpenSim/Data/RegionProfileData.cs | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/OpenSim/Data/RegionProfileData.cs b/OpenSim/Data/RegionProfileData.cs index 897dcbf..12f3927 100644 --- a/OpenSim/Data/RegionProfileData.cs +++ b/OpenSim/Data/RegionProfileData.cs | |||
@@ -130,13 +130,16 @@ namespace OpenSim.Data | |||
130 | /// </summary> | 130 | /// </summary> |
131 | public LLUUID originUUID; | 131 | public LLUUID originUUID; |
132 | 132 | ||
133 | |||
133 | /// <summary> | 134 | /// <summary> |
134 | /// Get Sim profile data from grid server when in grid mode | 135 | /// Request sim profile information from a grid server, by Region UUID |
135 | /// </summary> | 136 | /// </summary> |
136 | /// <param name="region_uuid"></param> | 137 | /// <param name="region_uuid">The region UUID to look for</param> |
137 | /// <param name="gridserver_url"></param> | 138 | /// <param name="gridserver_url"></param> |
138 | /// <param name="?"></param> | 139 | /// <param name="gridserver_sendkey"></param> |
139 | /// <returns></returns> | 140 | /// <param name="gridserver_recvkey"></param> |
141 | /// <returns>The sim profile. Null if there was a request failure</returns> | ||
142 | /// <remarks>This method should be statics</remarks> | ||
140 | public RegionProfileData RequestSimProfileData(LLUUID region_uuid, string gridserver_url, | 143 | public RegionProfileData RequestSimProfileData(LLUUID region_uuid, string gridserver_url, |
141 | string gridserver_sendkey, string gridserver_recvkey) | 144 | string gridserver_sendkey, string gridserver_recvkey) |
142 | { | 145 | { |
@@ -172,9 +175,9 @@ namespace OpenSim.Data | |||
172 | } | 175 | } |
173 | 176 | ||
174 | /// <summary> | 177 | /// <summary> |
175 | /// Request sim profile information from a grid server | 178 | /// Request sim profile information from a grid server, by Region Handle |
176 | /// </summary> | 179 | /// </summary> |
177 | /// <param name="region_handle"></param> | 180 | /// <param name="region_handle">the region handle to look for</param> |
178 | /// <param name="gridserver_url"></param> | 181 | /// <param name="gridserver_url"></param> |
179 | /// <param name="gridserver_sendkey"></param> | 182 | /// <param name="gridserver_sendkey"></param> |
180 | /// <param name="gridserver_recvkey"></param> | 183 | /// <param name="gridserver_recvkey"></param> |
@@ -214,9 +217,9 @@ namespace OpenSim.Data | |||
214 | } | 217 | } |
215 | 218 | ||
216 | /// <summary> | 219 | /// <summary> |
217 | /// Request sim profile information from a grid server | 220 | /// Request sim profile information from a grid server, by Region Name |
218 | /// </summary> | 221 | /// </summary> |
219 | /// <param name="region_handle"></param> | 222 | /// <param name="region_handle">the region name to look for</param> |
220 | /// <param name="gridserver_url"></param> | 223 | /// <param name="gridserver_url"></param> |
221 | /// <param name="gridserver_sendkey"></param> | 224 | /// <param name="gridserver_sendkey"></param> |
222 | /// <param name="gridserver_recvkey"></param> | 225 | /// <param name="gridserver_recvkey"></param> |