From 41440e184b1c12f1b83d894b2cd5b7b801b4ca38 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Tue, 19 Aug 2008 18:34:46 +0000 Subject: Attachment persistence (Mantis #1711) Change user server to handle attachment assets record properly. Ensure that attachments are not re-rezzed on region crossing. Persistence will NOT WORK with earliser UGAI!! Change region server to match. --- OpenSim/Data/SQLite/SQLiteUserData.cs | 37 ++++------------------------------- 1 file changed, 4 insertions(+), 33 deletions(-) (limited to 'OpenSim/Data/SQLite/SQLiteUserData.cs') diff --git a/OpenSim/Data/SQLite/SQLiteUserData.cs b/OpenSim/Data/SQLite/SQLiteUserData.cs index 08a97f09..beff2a4 100644 --- a/OpenSim/Data/SQLite/SQLiteUserData.cs +++ b/OpenSim/Data/SQLite/SQLiteUserData.cs @@ -583,39 +583,6 @@ namespace OpenSim.Data.SQLite } /// - /// Add an attachment item to an avatar - /// - /// the user UUID - /// the item UUID - /// DO NOTHING ? - override public void AddAttachment(LLUUID user, LLUUID item) - { - return; - } - - /// - /// Remove an attachement item from an avatar - /// - /// the user UUID - /// the item UUID - /// DO NOTHING ? - override public void RemoveAttachment(LLUUID user, LLUUID item) - { - return; - } - - /// - /// Get list of attached item - /// - /// the user UUID - /// List of attached item - /// DO NOTHING ? - override public List GetAttachments(LLUUID user) - { - return new List(); - } - - /// /// Returns the name of the storage provider /// /// Storage provider name @@ -1040,5 +1007,9 @@ namespace OpenSim.Data.SQLite // return true; } + + override public void ResetAttachments(LLUUID userID) + { + } } } -- cgit v1.1