aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Avatar/Inventory (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Attempt at restoring inventory access after TPs/crossings. RemoveClient in ↵diva2008-12-151-0/+9
| | | | | | | | Scene was being too aggressive at nixing the user out of the cache. We're now relying on NeedSceneCacheClear to decide whether to nix it or not. All other mods in other files are for better debugging messages.
* * Enable agent to agent transfer of inventory foldersJustin Clarke Casey2008-12-091-5/+0
| | | | | | * It should now be possible to give an entire folder to another avatar instead of just single items at a time
* * minor: Take out some of the test log output I accidentally left in a ↵Justin Clarke Casey2008-12-041-1/+1
| | | | couple of commits ago
* * Put in the code necessary to allow inventory transfer of whole folders ↵Justin Clarke Casey2008-12-041-35/+92
| | | | | | | | (and their contents) between agents, not just single items * However, this is not currently activated since it's not absolutely fully tested and there's a bug lurking in there to do with the sending of the BulkInventoryUpdate packets
* Make a couple log4net instances static readonly.Jeff Ames2008-12-031-1/+1
|
* * minor: A few tiny bits of documentation and log message cleanup before ↵Justin Clarke Casey2008-12-011-1/+1
| | | | starting something different
* Prevent a null reference when giving items.Melanie Thielker2008-11-211-0/+6
|
* Use the message transfer module to pass items across the grid via the profileMelanie Thielker2008-11-171-9/+16
|
* Megapatch. Completely remove the multiparameter IM methods. Remove the insecureMelanie Thielker2008-11-161-24/+25
| | | | | | fromAgentSession field.
* Revamp inventory transfer module, step 1. Inventory will now be saved ifMelanie Thielker2008-11-121-99/+117
| | | | | | | | destination user is offline/out of range. No more eternal cache is needed for tracking IDs. Code cleanup. Removed some casts from IScene to Scene. Decline now properly places item in trash rather than deleting it outright.
* Reintroduce transactionID to the parameter list for SendInstantMessage.Melanie Thielker2008-11-091-3/+3
| | | | | | | It is required by group IM and also for a proper implementation of item give, group notice attachments and offline IM.
* * Added IClientIM to IClientCore interfacesAdam Frisby2008-11-081-3/+3
| | | | | | * Changed SendInstantMessage, dropped fromAgentSession and imSessionID as security precaution, see http://opensimulator.org/wiki/OpenSim_0.6_IClientAPI#Porting_Guide for details on porting. * Removed unused usings from Framework.*
* Make the inventory transfer module replacable in config.Melanie Thielker2008-11-011-0/+9
|
* A few more bots to yesterday's plumbing: change instant message methodMelanie Thielker2008-10-251-3/+3
| | | | | | signature
* * Restore loaded inventory items to the given folderJustin Clarke Casey2008-10-191-10/+47
| | | | | | | * Among many other deficiencies, currently a cache clear and relog is needed to see them, which is highly unsatisfactory * No user funcionality yet
* * move command line parsing code from inventory archive modules to opensim ↵Justin Clarke Casey2008-10-192-25/+24
| | | | | | | | | | server * use default inventory archive name if none is given * other minor cleanups * this facility is not useable yet
* * minor: remove warningsJustin Clarke Casey2008-09-291-3/+3
|
* * reactor: move inventory archive classes into separate Inventory/Archiver ↵Justin Clarke Casey2008-09-292-4/+4
| | | | | | | | directory * This is not yet a real module (and is arguably not a region module anyway)
* * refactor: Rename InventoryModule to InventoryTransferModuleJustin Clarke Casey2008-09-291-2/+2
|
* * Move existing inventory module into a 'Transfer' namespace, since that is ↵Justin Clarke Casey2008-09-291-1/+1
| | | | the functional it actually fulfills
* * check in missing files that caused the previous build breakJustin Clarke Casey2008-09-292-0/+487
|
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-12/+12
| | | | | | | * 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.
* Make the check on inventory cache clearing more robust. AddressesMelanie Thielker2008-08-271-0/+36
| | | | | | | Mantis #1975 in a broader way. This may or may not prop up secure inventory a bit better, but I still recommend to disable it
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-191-1/+1
|
* Fix region crossings and access to inventory after changing regions withinMelanie Thielker2008-08-191-3/+25
| | | | | | the same simulator
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-171-1/+1
|
* Add the IInventoryModule interface and a sample method callMelanie Thielker2008-08-171-13/+23
| | | | | | to Scene.INventory.cs
* Formatting cleanup.Jeff Ames2008-05-161-1/+1
|
* * Rolled back a few changes.Adam Frisby2008-05-011-1/+1
|
* * Spring cleaning on Region.Environment. Adam Frisby2008-05-011-1/+1
| | | | | | | * Converted a large number of read-only fields to be actually, readonly. * Reformatted code sections. * Removed redundant code.
* Update svn properties. Minor formatting cleanup.Jeff Ames2008-05-011-219/+219
|
* * Cruft removal step #1. Cleaning Modules directory.Adam Frisby2008-04-301-50/+54
|
* * Refactored Environment/Modules directory - modules now reside in their own ↵Adam Frisby2008-04-301-0/+216
directory with any associated module-specific classes. * Each module directory is currently inside one of the following category folders: Agent (Anything relating to do with Client<->Server communications.), Avatar (Anything to do with the avatar or presence inworld), Framework (Classes modules can use), Grid (Grid traffic, new OGS2 grid comms), Scripting (Scripting functions, etc), World (The enrivonment/scene, IE Sun/Tree modules.) * This should be moved into a seperate project file.