From 9f6b3e2357e76b9b85b447da189b4bf4163edd3c Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Tue, 13 Nov 2007 22:48:19 +0000 Subject: * 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. --- OpenSim/Framework/Data.DB4o/DB4oGridData.cs | 10 ++++++++++ OpenSim/Framework/Data.DB4o/DB4oUserData.cs | 8 +++++++- 2 files changed, 17 insertions(+), 1 deletion(-) (limited to 'OpenSim/Framework/Data.DB4o') diff --git a/OpenSim/Framework/Data.DB4o/DB4oGridData.cs b/OpenSim/Framework/Data.DB4o/DB4oGridData.cs index a96d9bd..a071543 100644 --- a/OpenSim/Framework/Data.DB4o/DB4oGridData.cs +++ b/OpenSim/Framework/Data.DB4o/DB4oGridData.cs @@ -27,6 +27,7 @@ */ using System; +using System.Collections.Generic; using libsecondlife; namespace OpenSim.Framework.Data.DB4o @@ -139,7 +140,16 @@ namespace OpenSim.Framework.Data.DB4o { manager = null; } + /// + /// // Returns a list of avatar and UUIDs that match the query + /// + public List GeneratePickerResults(LLUUID queryID, string query) + { + //Do nothing yet + List returnlist = new List(); + return returnlist; + } /// /// Returns the providers name /// diff --git a/OpenSim/Framework/Data.DB4o/DB4oUserData.cs b/OpenSim/Framework/Data.DB4o/DB4oUserData.cs index c7113bf..4c6d4b0 100644 --- a/OpenSim/Framework/Data.DB4o/DB4oUserData.cs +++ b/OpenSim/Framework/Data.DB4o/DB4oUserData.cs @@ -27,6 +27,7 @@ */ using System; using System.IO; +using System.Collections.Generic; using libsecondlife; namespace OpenSim.Framework.Data.DB4o @@ -131,7 +132,12 @@ namespace OpenSim.Framework.Data.DB4o return null; } } - + public List GeneratePickerResults(LLUUID queryID, string query) + { + //Do nothing yet + List returnlist = new List(); + return returnlist; + } /// /// Creates a new user profile /// -- cgit v1.1