aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiveReadRequest.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* minor: A further minor tweak to reduce iar load logging verbosityJustin Clark-Casey (justincc)2009-11-131-2/+2
|
* Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2009-11-091-3/+4
|\
| * Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJohn Hurliman2009-11-051-2/+11
| |\
| * | Changing the AssetBase constructors to avoid initializing assets with an ↵John Hurliman2009-11-051-3/+4
| | | | | | | | | | | | unknown asset type, and log an error if it ever does happen
* | | refactor out iar escapingJustin Clark-Casey (justincc)2009-11-091-8/+1
| | |
* | | minor: correct slightly over-enthusiastic load iar logging messageJustin Clark-Casey (justincc)2009-11-091-2/+1
| | |
* | | fix load iar regression accidentally introduced in last commitJustin Clark-Casey (justincc)2009-11-091-1/+1
| | |
* | | minor: tweak load iar messages to be slightly less verboseJustin Clark-Casey (justincc)2009-11-091-4/+5
| | |
* | | minor: provide updates on number of assets loaded while executing "load iar"Justin Clark-Casey (justincc)2009-11-091-2/+9
| | |
* | | refactor: break actual item load in iar into separate methodJustin Clark-Casey (justincc)2009-11-091-28/+46
| | |
* | | minor: remove some old commented out load iar codeJustin Clark-Casey (justincc)2009-11-091-30/+0
| |/ |/|
* | * Escape / character when saving items and folders in an iar so that the ↵Justin Clark-Casey (justincc)2009-11-051-2/+11
|/ | | | loader doesn't barf
* Formatting cleanup.Jeff Ames2009-10-011-6/+6
|
* Remove bug where iar created folders could not be deleted after relogJustin Clark-Casey (justincc)2009-09-111-2/+6
| | | | New folders need to be created with AssetType.Unknown rather than AssetType.Folder!
* fix spurious loading... messages on iar load by creating folders as version ↵Justin Clark-Casey (justincc)2009-09-101-1/+1
| | | | 1 rather than version 0
* Add test to check behaviour if an iar is loaded where no user profile exists ↵Justin Clark-Casey (justincc)2009-09-091-0/+2
| | | | | | for the creators Disable generation of temporary profiles for now, instead record loading user as creator
* extend load iar test to loading into a deeply nested directoryJustin Clark-Casey (justincc)2009-09-081-1/+1
| | | | correct bug associated with this
* refactor: change method argument nameJustin Clark-Casey (justincc)2009-09-081-22/+24
|
* change iar load to make discrete inventory service requests rather than the ↵Justin Clark-Casey (justincc)2009-09-061-25/+40
| | | | cache
* refactor: use direct scene reference in inventory archive read requestJustin Clark-Casey (justincc)2009-09-061-12/+14
|
* Re-enable TestReplicateArchivePathToUserInventory() but stop it failing on ↵Justin Clark-Casey (justincc)2009-08-111-0/+5
| | | | | | the NRE for now Add temporarily logging for diagnosis
* * Fixed a few more async calls. Still not uncommented, some asserts still ↵Arthur Valadares2009-06-111-0/+7
| | | | failing
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva2009-05-151-4/+7
| | | | | | | | | | | | -- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
* * If an item creator id contains an iar loaded name, create a temporary ↵Justin Clarke Casey2009-05-051-3/+3
| | | | profile and hashed UUID to represent the user
* * refactor: move OspResolver to a different namespaceJustin Clarke Casey2009-05-041-2/+3
|
* * Insert profile references for creators for items saved into iarsJustin Clarke Casey2009-05-041-1/+1
|
* * Add preliminary code for resolving iar profile namesJustin Clarke Casey2009-04-281-5/+8
| | | | | | * Not yet active
* * Refactor: break out loading of archive paths into inventory into a ↵Justin Clarke Casey2009-04-241-110/+139
| | | | separate method
* * correct spelling mistake in item seiralizationJustin Clarke Casey2009-04-241-1/+0
|
* * refactor: move archive user inventory item serialization out to a separate ↵Justin Clarke Casey2009-04-231-82/+15
| | | | file
* * Make it possible to store creator strings in user inventory items as well ↵Justin Clarke Casey2009-04-081-2/+2
| | | | | | | | | as UUIDs * All existing functionality should be unaffected. * Database schemas have not been changed.
* Rename OpenSim.Framework.Archive to OpenSim.Framework.SerializationMike Mazur2009-03-161-7/+7
| | | | | Update using statements and prebuild.xml. Also trim trailing whitespace.
* * Support loading empty folders in an iarJustin Clarke Casey2009-03-131-78/+90
|
* Move ArchiveConstants to OpenSim.Framework.ArchiveMike Mazur2009-03-121-46/+46
| | | | | | | | | | - move a couple constants from InventoryArchiveConstants to ArchiveConstants, now only one of these is needed - change InventoryArchiveConstants references to ArchiveConstants - remove InventoryArchive AssetInventoryServer plugin dependency on OpenSim.Region.CodeModules - trim trailing whitespace
* Moving TarArchive to OpenSim.Framework.ArchiveMike Mazur2009-03-121-0/+1
| | | | | | | We now build OpenSim.Framework.Archive.dll which aims to contain code used for archiving various things in OpenSim. Also remove trailing whitespace.
* * Add the abilty to load and save iar item nodes where folders have ↵Justin Clarke Casey2009-03-041-14/+77
| | | | identical names
* * Properly load items into correct folders when an iar is loadedJustin Clarke Casey2009-02-251-8/+12
| | | | | | | * At the moment, any existing folders with the same name are reused - will need an option to always create new folders * not yet ready for general use
* * Fix my own unit testJustin Clarke Casey2009-02-251-5/+16
| | | | | | * Disable folder iar creation code for now (though this wasn't actually causing the test failure)
* * Add InventoryArchiveConstants that I missed from last commitJustin Clarke Casey2009-02-251-6/+29
| | | | | | | * This commit also does a first pass at creating folders for an inventory archive (previously everything was dumped in the same destiantion folder). * This code might not work yet and nobody else should be using it yet anyway :)
* * Store inventory data in an 'inventory' directory rather than in the root ↵Justin Clarke Casey2009-02-251-9/+9
| | | | of an iar
* * Assign incoming items with a random UUID so that archives can be loaded ↵Justin Clarke Casey2009-02-171-11/+4
| | | | | | | | more than once * Also remove a duplicate write archive call in the unit test which might be causing test failures for people using mono 2.2 (though not 1.9.1, it would seem)
* - remove the Metadata property from AssetBase and return all previousMike Mazur2009-02-171-1/+1
| | | | | | | | | properties as before - prefix private variables with m_ in AssetBase.cs - related to Mantis #3122, as mentioned in https://lists.berlios.de/pipermail/opensim-dev/2009-February/005088.html - all services will likely need to be upgraded after this commit
* * Make it possible to load and save inventory archives while a user is not ↵Justin Clarke Casey2009-02-121-5/+18
| | | | | | | | logged in on standalone mode but not on grid mode * No user functionality yet
* large scale fix for svn props after "the great refactor"Sean Dague2009-02-121-14/+14
|
* * move userinfo for inventory archiving up to module class so that it only ↵Justin Clarke Casey2009-02-121-32/+12
| | | | has to be done once
* * optimized usings.lbsa712009-02-121-28/+26
|
* * When an inventory archive is loaded, immediately update the client's ↵Justin Clarke Casey2009-02-111-5/+16
| | | | | | | | inventory if that client is online at that region server * Not useable yet
* * Refactor inventory archive code to allow direct invocation in order to ↵Justin Clarke Casey2009-02-111-22/+45
| | | | | | | | support future unit tests * Add a file I missed out from the last commit (the build was probably fine without it)
* * More inventory archive invocation to a proper region moduleJustin Clarke Casey2009-02-111-5/+2
| | | | | | * Not ready for use yet