aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-03-18* Just inserting some exploratory comments into inventory codeJustin Clarke Casey1-0/+12
2008-03-18Formatting cleanup.Jeff Ames1-27/+26
2008-03-15Part 2 of fixing inventory for client 1.19.1 (RC), inventory items should ↵MW1-0/+60
now show up. Most likely still some problems and most like needs some more work (and still a couple of things to finish off).
2008-02-13Clean up more unnecessary String.Format callsJeff Ames1-8/+5
2008-02-12* Add missing locking to mysql inventory pluginJustin Clarke Casey1-0/+3
* Should resolve mantis 542
2008-02-10Clean up logging calls using String.Format explicitlyJeff Ames1-1/+1
2008-02-05Converted logging to use log4net.Jeff Ames1-11/+15
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2007-12-27* Optimized usingslbsa711-18/+19
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-23Yet more inventory debugging messagesJustin Clarke Casey1-9/+30
2007-12-23Miscellaneous small tweaks and more logging messages to move towards ↵Justin Clarke Casey1-2/+5
resolving inventory problems
2007-12-21Refix bug where inventory textures don't appear in prim edit texture ↵Justin Clarke Casey1-6/+15
selection box unless previously expanded in inventory.
2007-12-15Grid Inventory feature upgrade: renaming folders should now be correct, ↵Brian McBee1-7/+25
subfolders work, moving folders works. Tested only in MYSQL, but may work in MSSQL and sqlite. Probably not working in standalone mode.
2007-12-11Implementing updateinventoryfolder: Should now be able to rename folders in ↵Brian McBee1-0/+20
inventory
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames1-1/+1
notice of doom
2007-12-08hackish code to allow emptying of trash. This really should be done on the ↵Brian McBee1-1/+21
inventory server, and not from the region. Also: it appeared to work the first try, so I have probably done something horribly wrong.
2007-12-02Attempt to fix mantis issue #82, taking prims into inventory and then ↵MW1-0/+9
rezzing them in another region.
2007-12-02Some refactoring , mainly on Inventory code. MW1-2/+2
2007-12-02New Inventory folder should now be stored to the inventory server/database. ↵MW1-1/+8
This also seems to fix the problem of Body parts not being persisted properly.
2007-11-30Patch for mantis 0000015: Textures don't display in the objectSean Dague1-7/+16
properties window From Justin Casey (IBM)
2007-11-18first stab at implementation of CopyInventoryItemJeff Ames1-1/+4
2007-11-01* Diuerse beavtificatemslbsa711-3/+3
2007-10-31* Took a stab at #500 by making sure there is only one place stuff gets ↵lbsa711-77/+37
added, and that that place is thread-aware. * Refactored it to TryGetValue instead of Contains
2007-10-30* Optimized usingslbsa711-37/+35
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-2/+2
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
2007-10-26* Added prototypical AvatarFactory module interface to load avatar parameterslbsa711-12/+11
* Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to
2007-10-21* Added a lock to the user profile cache to prevent simultaneous duplicate ↵Adam Frisby1-10/+14
additions to the database. (Attempting to fix bug reported by nebadon)
2007-10-05== The "right name and place" commit ==lbsa711-1/+1
* Moved InventoryData to Framework.Types/InventoryItemBase.cs * Moved UserData to Framework.Interfaces/IUserData.cs * Moved UserProfileData to Framework/Types/UserProfileData.cs * Deleted ass-backwards Framework dependency on Framework.Data (now it's the other way round) * Changed some namespaces to reflect file structure
2007-09-27Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa711-28/+4
Tleiades patch 444 and 445.
2007-09-27* Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa711-4/+28
* updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)
2007-09-24* Started major restructusing of comms to prepare for better grid and region ↵lbsa711-3/+3
functionality * Working towards one shared set of services * Killed off two projects with very little functionality
2007-09-10mass update of urls in source code to new websiteSean Dague1-1/+1
2007-08-27Deleted a few old files that are no longer used.MW1-1/+1
Deleted the GridInterfaces projects, and for now moved the old local asset server into Framework.Communications, as we prepare to rewrite the asset cache and asset server. Deleted Framework.manager as I am sure this is no longer in use.
2007-08-21Can now turn on/off server side permission checking (on prim editing etc) ↵MW1-11/+0
from the opensim.ini file. Just add a line to the Startup section like : serverside_object_permissions = true Changes /editing that are made to clothing/ body parts in your inventory should now be saved between logins/ restarts.
2007-08-14Start of inventory items, when you upload a texture the data will now be ↵MW1-1/+1
stored in the inventory database and you will still have that texture in inventory on later logins (Again only in standalone mode with authentication.) Also there might be some problems if you upload textures in other regions to the start one (due to us not updating the CAPS url properly).
2007-08-14More inventory work, should be able to now create new inventory folders and ↵MW1-23/+36
them be stored in database (so are there on next login). Again only works in standalone mode with Account/password authentication turned on. [Creating new inventory items should be working very soon.] The test is to make sure that it hasn't broke grid mode at all.
2007-08-14Start of Inventory service, currently only (partially) functional in ↵MW1-3/+3
standalone mode and using sqlite). In standalone mode, if you have account authenticate turned on (setting in opensim.ini) then when you create a new account, a set of inventory is created for that account and stored in database (currently only a set of empty folders). Then during login the database is search for that set and sent to the client in the login response. More functions will be added soon, like creating new folders (and a bit later items) from the client inventory window.
2007-07-29Commit 1/2Adam Frisby1-1/+1
* DB4o no longer crashes the sim on Startup * DB4o now crashes the sim on shutdown. * Variety of console verbosity fixes.
2007-07-26More work on inventory and opensim library.MW1-0/+5
Fixed a number of bugs in the AssetCache related to asset downloading.
2007-07-25Start of the OpenSim library , for now only contains a few textures. MW1-170/+216
2007-07-22Think I've recovered my deleted files, so hopefully it works now. MW1-0/+170