aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IUserData.cs
diff options
context:
space:
mode:
authorTeravus Ovares2007-11-13 22:48:19 +0000
committerTeravus Ovares2007-11-13 22:48:19 +0000
commit9f6b3e2357e76b9b85b447da189b4bf4163edd3c (patch)
tree7d9c39258e45e6271db953608e6868433f9ac70d /OpenSim/Framework/IUserData.cs
parentfirst pass on unlinking of objects. From Jay Clarke (IBM) (diff)
downloadopensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.zip
opensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.tar.gz
opensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.tar.bz2
opensim-SC_OLD-9f6b3e2357e76b9b85b447da189b4bf4163edd3c.tar.xz
* Added AvatarPicker in Standalone mode. Works for finding avatar to ban, manually trying to add a friend (with the add button) or useful to those who are curious which usernames have visited your standalone sim. Important for future development :D.
* Grid mode always returns 0 results until the Grid Communications portion is done.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IUserData.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Framework/IUserData.cs b/OpenSim/Framework/IUserData.cs
index cb2502a..6de9e08 100644
--- a/OpenSim/Framework/IUserData.cs
+++ b/OpenSim/Framework/IUserData.cs
@@ -26,6 +26,7 @@
26* 26*
27*/ 27*/
28using libsecondlife; 28using libsecondlife;
29using System.Collections.Generic;
29 30
30namespace OpenSim.Framework 31namespace OpenSim.Framework
31{ 32{
@@ -56,6 +57,8 @@ namespace OpenSim.Framework
56 /// <returns>The user data profile</returns> 57 /// <returns>The user data profile</returns>
57 UserProfileData GetUserByName(string fname, string lname); 58 UserProfileData GetUserByName(string fname, string lname);
58 59
60 List<OpenSim.Framework.AvatarPickerAvatar> GeneratePickerResults(LLUUID queryID, string query);
61
59 /// <summary> 62 /// <summary>
60 /// Returns the current agent for a user searching by it's UUID 63 /// Returns the current agent for a user searching by it's UUID
61 /// </summary> 64 /// </summary>
@@ -131,4 +134,13 @@ namespace OpenSim.Framework
131 /// </summary> 134 /// </summary>
132 void Initialise(); 135 void Initialise();
133 } 136 }
137 public class AvatarPickerAvatar
138 {
139 public LLUUID AvatarID;
140 public string firstName;
141 public string lastName;
142 public AvatarPickerAvatar()
143 {
144 }
145 }
134} \ No newline at end of file 146} \ No newline at end of file