aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.SQLite/SQLiteInventoryStore.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-10-30* Optimized usingslbsa711-93/+96
* 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-15* Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa711-0/+29
2007-10-08Applied patch 485, inventory patch from tleiades (thanks again).MW1-3/+26
2007-10-06Applied Patch 473, Inventory Patch from Tleiades (many thanks).MW1-14/+74
2007-10-02* Moved setup of LocalInventoryService and LocalUserServices to the app layerlbsa711-7/+1
* Killed off 'parent' relation from LocalUserServices to CommunicationsLocal * Deleted obsolete project InventoryServiceBase * Deleted superfluous createCol function
2007-10-01revert working getInventoryFolder function because this seemsSean Dague1-6/+13
to break multi region environments.
2007-09-28negative code checkin. All these functions are in the baseSean Dague1-162/+1
class which we get for free now.
2007-09-28implement getInventoryItem and getInventoryFolder (notSean Dague1-5/+15
sure why these weren't implemented previously)
2007-09-27Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa711-37/+34
Tleiades patch 444 and 445.
2007-09-27oops, I broke the build. Fixed nowSean Dague1-3/+3
2007-09-27implement something in sqlite inventory that wasn't beforeSean Dague1-3/+7
not sure how we missed this function
2007-09-27* Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa711-31/+30
* updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)
2007-08-24it helps to actually call TestTables to get the new tables createdSean Dague1-0/+2
2007-08-24updated SQLite Inventory to newer model data definition,Sean Dague1-485/+644
and add automatic generating of the inventory table
2007-08-16Taking Prims (SceneObjectGroups) in and out of inventory should now work and ↵MW1-0/+17
if left in inventory will still be there after restarts. (as with the rest of inventory it will only fully work in standalone mode with account authentication turned on).
2007-08-14Start of inventory items, when you upload a texture the data will now be ↵MW1-4/+71
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-14Start of Inventory service, currently only (partially) functional in ↵MW1-0/+401
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.