aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/InventoryService/XInventoryService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix various issues with http inventoryJustin Clark-Casey (justincc)2012-06-021-1/+1
| | | | | | | | 1) The return messages were being wrongly populated with the names of asset, inventory and sale types when their corresponding integers should have been used instead. 2) Folders with links were including the linked items in the descendents figure, when only the links should be included. 3) Links and linked items in link folders were not being included in the return data, and not in the correct order. Now that these issues have been addressed, outfits and attachments appear to work consistently when HTTP inventory is enabled (as is now the default).
* minor: extend commented out LinkInventoryItem log message for future useJustin Clark-Casey (justincc)2012-05-211-3/+3
|
* Fix bug where outfit folders could not be renamed.Justin Clark-Casey (justincc)2012-05-211-4/+13
| | | | Outfit folders are a type of system folder whose details are allowed to change.
* Fix issue where a new outfit folder is not created when a new outfit is ↵Justin Clark-Casey (justincc)2012-05-181-3/+9
| | | | | | saved if there are no previous outfits This was because AddFolder() was disallowing these though they are legal.
* refactor: Rename new DeleteFoldersEx/PurgeFoldersEx methods to ↵Justin Clark-Casey (justincc)2012-05-041-6/+7
| | | | | | DeleteFolders/PurgeFolders overloads as previously discussed with Oren - I think this makes more sense on balance These overloads are not publicly available on core connectors or IInventoryService.
* Allow deleting folders even if they're not in the TrashOren Hurvitz2012-05-041-4/+15
| | | | The functions DeleteFolders() and PurgeFolder() still work as before, i.e. they only allow deleting folders that are in the Trash. However, the functions DeleteFoldersEx() and PurgeFolderEx() can now be used to delete any folder.
* A few minor tweaks here and there in XInventoryService.Diva Canto2012-04-061-14/+48
|
* Reverse a conditional in XInventory that made updating system folder evrsion ↵Melanie2012-03-271-1/+1
| | | | numbers impossible
* Send the config section name up to the service classes themselves ↵Diva Canto2012-03-271-2/+10
| | | | (XInventory and Assets).
* Fix avatar parameter updating for viewer 3 and maybe 2.Justin Clark-Casey (justincc)2011-09-231-5/+9
| | | | | | | | | When a slider parameter is changed, the viewer uploads a new shape (or other asset) and the item is updated to point to it. Viewer 1 uploaded the data in the initial request itself, so the asset references was almost always correctly updated. However, viewer 3/2 always uploads data in a subsequent xfer, which exposed a race condition where the viewer would make the item update before the asset had uploaded. This commit shuffles the order of operations to avoid this race, the item is updated with the new asset id instead of the old one while the upload was still taking place. A second race had to be fixed where avatar appearance would also be updated with the old asset id rather than the new one. This was fixed by updating the avatar appearance ids when the appearance was actually saved, rather than when the wearables update was made.
* HG inventory transfers over the profile working.Diva Canto2011-05-271-5/+5
|
* fix bug where outfit folder links could not be deletedJustin Clark-Casey (justincc)2011-05-261-4/+4
|
* Allow item links to be deleted even when other deletes and purges are disabled.Justin Clark-Casey (justincc)2011-05-191-6/+28
| | | | | | | If these links are not deleted, then they will build up in the player's inventory until they can no longer log in. Accidental deletion of links due to bugs or other causes is potentially inconvenient but on a par with items being accidentally moved. When a link is deleted, the target of the link is never touched. This is a general solution that accounts for the use of links anywhere in the user's inventory.
* Accidentally committed too earlyJustin Clark-Casey (justincc)2011-05-181-24/+6
| | | | | | Revert "Allow item links to be deleted even when other deletes and purges are disabled." This reverts commit 491279f99afc65860d44765ee7829c7dd5e4e38e.
* Allow item links to be deleted even when other deletes and purges are disabled.Justin Clark-Casey (justincc)2011-05-171-6/+24
| | | | | | | If these links are not deleted, then they will build up in the player's inventory until they can no longer log in. Accidental deletion of links due to bugs or other causes is potentially inconvenient but on a par with items being accidentally moved. When a link is deleted, the target of the link is never touched. This is a general solution that accounts for the use of links anywhere in the user's inventory.
* Commented verbose debug message.Diva Canto2011-04-241-1/+1
|
* Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto2010-11-211-2/+2
| | | | | | 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).
* Fix cast issueMelanie2010-09-021-1/+1
|
* Allow increasing the version in system foldersMelanie2010-09-021-1/+7
|
* Update: Allow the version to increase onlyMelanie2010-09-021-1/+2
|
* Disallow modification of system folders. Prevent changing the type of foldersMelanie2010-09-021-1/+16
| | | | and prevent resetting the version number
* Fix bug in llGiveInventory() where items were disappearing on relogJustin Clark-Casey (justincc)2010-08-231-1/+13
| | | | | This was a regression - the code to look up the correct type folder was no longer being called if items were added without a parent folder set This may have been broken since commit bd49985a on 2010-05-02
* Remove various warnings and improve logging messages. No functional changes.Justin Clark-Casey (justincc)2010-08-231-1/+6
|
* Allow the trash folder itself to be passed to PurgeFolderMelanie Thielker2010-08-061-0/+3
|
* Add some optionsMelanie2010-07-241-0/+11
|
* Fix some inventory issuesMelanie2010-07-241-0/+29
|
* Fix obvious bug in XInventoryService.GetFolderItems() which was preventing ↵Justin Clark-Casey (justincc)2010-07-141-2/+4
| | | | the iar module from being able to save single item iars
* Buglet fix in HG inventory. Make sure that GetRootFolder for non-HG ↵Diva Canto2010-06-291-1/+8
| | | | xinventory is the folder "My Inventory". Also changed the Suitcase folder name to "My Suitcase".
* Changed XInventoryData's CreatorID to a string.Diva Canto2010-06-081-2/+2
|
* Fixes mantis #4691Diva Canto2010-05-161-1/+1
|
* Started redoing HGInventoryBroker for XInventory and with multi-protocol in ↵Diva Canto2010-04-291-3/+3
| | | | mind. Unfinished.
* XInventory connector/handler showing signs of life. Tested, but needs more ↵Diva Canto2010-04-271-4/+4
| | | | testing.
* Create root inventory folder with proper type (9) instead of -1Melanie2010-02-081-1/+1
|
* * Bug fix in XInventoryData -- groupOwned is an int in the DBDiva Canto2010-01-311-2/+8
| | | | * Bug fix in InventoryServerInConnector -- m_config
* * Added a few files that were missing in the repo.Diva Canto2010-01-311-25/+25
| | | | * New HGInventoryService which allows restricted access to inventory while outside
* Finish conversion if XInventoryServiceMelanie2010-01-041-12/+46
|
* First stage port of the XInventoryServiceMelanie2010-01-041-0/+474