diff options
author | lbsa71 | 2009-04-08 19:59:37 +0000 |
---|---|---|
committer | lbsa71 | 2009-04-08 19:59:37 +0000 |
commit | e93b782f9d86e4049a28d7f90c691dc5d242f234 (patch) | |
tree | 892fcce074d5e5a817c0b14d2a5e4fefe1b692a9 /OpenSim/Region | |
parent | * Make it possible to store creator strings in user inventory items as well a... (diff) | |
download | opensim-SC_OLD-e93b782f9d86e4049a28d7f90c691dc5d242f234.zip opensim-SC_OLD-e93b782f9d86e4049a28d7f90c691dc5d242f234.tar.gz opensim-SC_OLD-e93b782f9d86e4049a28d7f90c691dc5d242f234.tar.bz2 opensim-SC_OLD-e93b782f9d86e4049a28d7f90c691dc5d242f234.tar.xz |
* Introduced some experimental code with regards to asset data substitution
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Communications/Hypergrid/HGUserServices.cs | 6 | ||||
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs b/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs index e9eb18c..6a39876 100644 --- a/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs +++ b/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs | |||
@@ -25,6 +25,7 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
28 | using System.Collections; | 29 | using System.Collections; |
29 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
30 | using OpenMetaverse; | 31 | using OpenMetaverse; |
@@ -57,6 +58,11 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
57 | return m_remoteUserServices.ConvertXMLRPCDataToUserProfile(data); | 58 | return m_remoteUserServices.ConvertXMLRPCDataToUserProfile(data); |
58 | } | 59 | } |
59 | 60 | ||
61 | public UserProfileData GetUserProfile(Uri uri) | ||
62 | { | ||
63 | throw new System.NotImplementedException(); | ||
64 | } | ||
65 | |||
60 | /// <summary> | 66 | /// <summary> |
61 | /// Get a user agent from the user server | 67 | /// Get a user agent from the user server |
62 | /// </summary> | 68 | /// </summary> |
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index 6235565..09c1d6a 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | |||
@@ -108,6 +108,11 @@ namespace OpenSim.Region.Communications.OGS1 | |||
108 | return userData; | 108 | return userData; |
109 | } | 109 | } |
110 | 110 | ||
111 | public UserProfileData GetUserProfile(Uri uri) | ||
112 | { | ||
113 | throw new System.NotImplementedException(); | ||
114 | } | ||
115 | |||
111 | /// <summary> | 116 | /// <summary> |
112 | /// Get a user agent from the user server | 117 | /// Get a user agent from the user server |
113 | /// </summary> | 118 | /// </summary> |