aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/InventoryItemBase.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-55/+55
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-3/+6
2012-11-17Remove unnecessary ability to directly set InventoryItemBase.CreatorIdAsUuidJustin Clark-Casey (justincc)1-17/+5
This was necessary historically but hasn't been for many years. Can still get CreatorIdAsUuid, which is really just a UUID cached version of the string CreatorId
2010-11-23Initialize InventoryItemBase.creatorData properly. Could throw.Diva Canto1-1/+1
2010-11-21Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto1-0/+50
themselves. Tested. Seems to be working, main tests pass. Nothing done for IARs or HG transfers yet -- this only works for OARs for the time being. New migration in inventory table in order to make CreatorID varchar(255).
2009-10-01Formatting cleanup.Jeff Ames1-20/+20
2009-08-16IAvatarFactory.UpdateDatabase gets the assetID and not the object's inworld ↵Diva Canto1-0/+6
UUID.
2009-08-12Redirected all calls to CachedUserProfile methods to the inventory service. ↵Diva Canto1-1/+10
Redirection of the RootFolder property is still todo. This compiles but probably inventory will be inconsistent.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-25* reseparate inventory item creator id and creator uuidJustin Clarke Casey1-6/+18
* unfortunately, while the client requires uuids and we want to be able to have arbitrary string ids, these cannot be kept in sync * I think the problems last time were due to a serialization change * So the major inteface version has been bumped to take care of any lingering issues here. * This means that region servers beyond this revision can only connect to similarly uptodate grid services, and vice versa
2009-05-08another possible cause of some of the inventory wierdness is the 1/2 implementedSean Dague1-9/+5
OSP resolver, and the caching of the uuid seperate from the string that is a UUID. Change this behavior back to something that ensures the data for the 2 is the same. Put the 2 unit tests that depend on the new behavior into ignore state.
2009-05-05* Change automatic properties back to manual get/setJustin Clarke Casey1-22/+220
* Automatic properties are only supported after .Net 2.0, causing these to fail when building via nant on Windows (and probably visual c# 2005 too) * Hopefully these can be used once building support in Visual C# 2005 is dropped.
2009-05-05* If an item creator id contains an iar loaded name, create a temporary ↵Justin Clarke Casey1-20/+12
profile and hashed UUID to represent the user
2009-05-05* Fix http://opensimulator.org/mantis/view.php?id=3585Justin Clarke Casey1-16/+22
* Make public variables properties instead, as there is a difference
2009-05-05Add copyright header. Formatting cleanup. Ignore some generated files.Jeff Ames1-8/+8
2009-05-05Fix crash on loginMelanie Thielker1-1/+1
2009-05-04Fix the AsUuid thingyMelanie Thielker1-4/+4
2009-05-04Fox the InventoryItem.CreatorIdAsUuid propertyMelanie Thielker1-1/+13
2009-05-04* Insert profile references for creators for items saved into iarsJustin Clarke Casey1-43/+32
2009-05-04* minor: remove some mono compiler warnings, minor cleanupJustin Clarke Casey1-1/+12
2009-05-04* Refactor: Simplify InventoryFolderImpl. No functional change.Justin Clarke Casey1-168/+63
2009-04-08* Make it possible to store creator strings in user inventory items as well ↵Justin Clarke Casey1-4/+29
as UUIDs * All existing functionality should be unaffected. * Database schemas have not been changed.
2009-02-17* Establish InventoryArchiveSaved event for unit testsJustin Clarke Casey1-1/+1
* This is done on the inventory archiver module directly rather than Scene.EventManager - the module seems the more appropriate location
2009-02-11* Establish a common InventoryNodeBase class from InventoryItemBase and ↵Justin Clarke Casey1-32/+2
InventoryFolderBase
2008-11-14Add group permissions to agent inventory.Melanie Thielker1-0/+11
Contains a migration. May contain nuts. Please back up your inventory data store. This revision changes the interface version!! No older regions can connect to these new UGAIM, and the new regions can't connect to the old UGAIM. Fixes a long-standing issue of permissions loss Currently persisted on MySQL only.
2008-10-21Set a default creation date on inventory and task inventory itemsMelanie Thielker1-0/+6
2008-09-12reformat spacing on some property declarations. Take away the virtualSean Dague1-73/+33
attribute as that was a left over of an nhibernate approach that isn't used in the current nhibernate code anyway.
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-13/+13
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-06-25make lots of properties virtual, which lets nhibernate doSean Dague1-20/+20
some proxy object optimizations.
2008-05-16Formatting cleanup.Jeff Ames1-10/+10
2008-04-30* Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. ↵Teravus Ovares1-9/+109
Thanks A_Biondi and Melanie! * This builds but might not work. JustinCC will examine.. it may work out of the box.
2008-04-29* Spring cleaning.Adam Frisby1-118/+79
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
2008-04-24replace hard tabs with 4 spaces to be consistant in the source.Sean Dague1-78/+78
Please adjust your editors to not use hard tabs.
2008-04-23* Implement proper emptying of trashcan on standaloneJustin Clarke Casey1-2/+0
* On standalone, folders (and their items) should now be persistently deleted on trash emptying, as well as immediate child items * An implementation for grid mode will follow.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-3/+0
(this took a while to run).
2008-04-07Refactor InventoryItemBase to do the following:Sean Dague1-13/+132
* wrap fields as Properties * rename some fields/properties to more sensible names * set style to PropName to match more standard C# approach
2008-04-07break out the 5 classes that were Sean Dague1-197/+0
InventoryItemBase into seperate .cs files 1 per class
2008-03-28* Send full inventory folder skeleton to standalone client logins rather ↵Justin Clarke Casey1-0/+8
than just the root child folders * This may resolve some current problems with non root child folders on standalone installations. * A fix for the same problem in grid mode will come soon.
2008-03-18Formatting cleanup.Jeff Ames1-26/+26
2007-12-31Correctly output library inventory folder type and version informationJustin Clarke Casey1-2/+2
2007-12-27* Optimized usingslbsa711-1/+1
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-15Grid Inventory feature upgrade: renaming folders should now be correct, ↵Brian McBee1-0/+6
subfolders work, moving folders works. Tested only in MYSQL, but may work in MSSQL and sqlite. Probably not working in standalone mode.
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames1-1/+1
notice of doom
2007-12-08This patch fixes mantis 105. Basically, it stops the index exception whenSean Dague1-2/+2
no root folder is found and it makes the user server wait longer for the inventory server to do its work. From Justin Casey (IBM)
2007-12-01Initial working Grid Inventory server. Only been tested on a very small ↵MW1-0/+19
grid, so likely to have problems on a larger grid with more people? To use , both the user server and Inventory server need to be running this latest revision. (older regions should be able to still be used, just the user won't have inventory on them). Also and HERE IS THE BIG BREAK ISSUE, currently, so that the initial inventory details for a user are added to the inventory db , you need to recreate the accounts using the user server "create user" feature. It should be quite easy to manual populate the inventory database instead but I someone else will need to look into that) Also I've only tested using SQLite as the database provider, there is a Mysql inventory provider but I don't know if it works (SQLite is set as default, so you will need to change it in the inventory server config.xml)
2007-11-01* Diuerse beavtificatemslbsa711-12/+8
2007-10-31* Moved OpenSim/Framework/General to OpenSim/Framework for great justice.lbsa711-0/+0
2007-10-31set svn:eol-styleJeff Ames1-273/+273
2007-10-30Step one on the long march towards grid based inventory. Introduction of an ↵Tleiades Hax1-1/+29
InevntoryServer
2007-10-30* Optimized usingslbsa711-1/+18
* Shortened type references * Removed redundant 'this' qualifier