aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Objects/BuySell/BuySellModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-40/+52
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-15/+6
2011-09-15refactor: rename SOG/SOP.GetProperties() to SendPropertiesToClient() to ↵Justin Clark-Casey (justincc)1-2/+2
reflect what it actually does This also makes it consistent with some other methods that send data to the client.
2011-09-01Remove pointless cluttering SOP.ParentGroup != null checks.Justin Clark-Casey (justincc)1-4/+1
The only times when ParentGroup might be null is during regression tests (which might not be a valid thing) and when scene objects are being constructed from the database. At all other times it's not possible for a SOP not to have a SOG parent.
2011-01-12Fix direct item give permissionsMelanie1-1/+1
2010-11-21Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto1-0/+1
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).
2010-10-02Reapplying the parts of the prior revert that were not derived from theMelanie1-1/+1
original patch
2010-10-02Revert "Forward-port 0.6 fix"Melanie1-13/+1
This reverts commit 90b51dc7d67507e27c4baa529e979de19dce8de1.
2010-09-30Forward-port 0.6 fixMelanie1-1/+13
2010-09-25Fix a minor economy issueMelanie1-1/+4
2010-09-16Changed SceneObjectGroup to store parts with the fast and thread-safe ↵John Hurliman1-6/+1
MapAndArray collection
2010-09-12Formatting cleanup.Jeff Ames1-7/+7
2010-09-04Move code that allows llGiveInvetory() to move item into appropriate system ↵Justin Clark-Casey (justincc)1-1/+1
folder up from connectors into Scene.Inventory.cs This fixes the problem for all architectures (hg as well as local and grid) and means we don't have to dupe code between connectors. Not ideal in that it becomes non-modular, but methods in Scene.Inventory.cs should eventually be modularized anyway.
2010-08-26Improve consistency of locking for SOG.m_parts in order to avoid race ↵Justin Clark-Casey (justincc)1-1/+4
conditions in linking and unlinking
2010-08-13minor: remove mono compiler warningsJustin Clark-Casey (justincc)1-1/+1
2010-08-13refactor: move Scene.PerformObjectBuy into BuySellModuleJustin Clark-Casey (justincc)1-2/+167
2010-08-13Establish new Objects/BuySellModuleJustin Clark-Casey (justincc)1-58/+43
Move Scene.ObjectSaleInfo() to this
2010-01-31Cleaned up configuration. 'gridmode' and 'hypergrid' are gone, as well as ↵Diva Canto1-5/+0
lots of other obsolete configs.
2010-01-29Revert "Updates all IRegionModules to the new style region modules."Melanie1-1/+1
This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
2010-01-23Updates all IRegionModules to the new style region modules.Revolution1-1/+1
Signed-off-by: Melanie <melanie@t-data.com>
2009-10-06* Removed verbose debug messageDiva Canto1-1/+1
* Restored HG inventory access which had been lost upon adding a 3rd argument to inventory and asset server handlers * Fixed a stupid bug in the InventoryConnector which was making move items do things twice
2009-08-10Replace the Replaceable modules nameMelanie1-1/+1
2009-07-10Committing the interface change and the addition to the modules to getMelanie Thielker1-0/+5
the ball rolling on replacable modules. No user functionality yet
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker1-1/+1
Change all uses of the HttpServer properties to use the new singleton
2009-06-22Update svn properties.Jeff Ames1-113/+113
2009-06-15Renamed two of the in connector modules, to make things consistent.diva1-1/+1
2009-06-15Removing the OpenSim.SimulatorServices project. All of those region modules ↵diva1-103/+113
are now in CoreModules/ServiceConnectorsIn, where they belong.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-22Cleaning up a few HG things. HG Posts may now work in grids, but if the home ↵diva1-1/+3
grid is a standalone, this still doesn't work -- something wrong with RegionAssetService's DB connection.
2009-05-19Refactor RegionAssetService to load the service connector rather thanMelanie Thielker1-48/+26
duplicating it's functionality
2009-05-18Refactor: Change "Servers" to "Server", since the can only be one. BreakMelanie Thielker1-1/+1
the handlers out of the asset server context into a generic scope.
2009-05-17Update svn properties.Jeff Ames1-123/+123
2009-05-15Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva1-138/+123
-- 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
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker1-1/+1
2009-04-27Thanks Tommil for a patch that adds a caching option to ↵diva1-5/+18
GetAssetStreamHandler. It is used in the RegionAssetService.
2009-04-26Bug fix in initialization of RegionAssetServer/MXP. Sometimes the MXP ↵diva1-3/+3
section in ini doesn't exist.
2009-04-21Thank you kindly, TLaukkan for a patch that:Charles Krinke1-1/+3
Added support for loading bare asset binaries (as opposed to xml encoded asset base) to both sandbox asset service and cable beach. * Added support for enabling region asset service when mxp is enabled. * Moved base http server content type defaulting before invocation of request handle method to allow for variable content type in the response.
2009-04-05* Fixed copyright headers on HyperGrid source files. (Now match the rest of ↵Adam Frisby1-23/+22
OpenSim, license text is unchanged) * Added Bitmap[,] to IParcel for MRM
2009-03-27svn:eol-style property set.diva1-123/+124
2009-03-24* minor: remove mono compiler warningsJustin Clarke Casey1-6/+5
2009-03-21Minor changes in names inside.diva1-74/+2
2009-03-21Moving HGStandaloneAssetService to a new place, and giving it a more generic ↵diva1-196/+196
name. MXP is going to use it too.
2009-03-19* refactor: Create IHttpServer interface instead of accessing BaseHttpServer ↵Justin Clarke Casey1-1/+2
via CommunicationsManager directly
2009-02-20* Another stab at removing AssetServer.exe dependencieslbsa711-1/+0
2009-02-19* Reverted the AssetServer fix, apparently something was dependent on ↵lbsa711-0/+2
IAssetDataPlugin being in OpenSim.Data
2009-02-19* moved the Get/PostAssetStreamHandler to the Servers namespace... slowly ↵lbsa711-1/+0
getting there...
2009-02-19* Extracted IAssetData and moved it to OpenSim.Framework to prepare to get ↵lbsa711-1/+0
rid of ugly CoreModules dependency on AssetServer.exe * And yes, the IAssetDataPlugin is misnomed, which became apparent on extracting it.
2009-02-16* refactor: remove AssetCache field hanging off SceneJustin Clarke Casey1-1/+2
* This is always available at Scene.CommsManager.AssetCache
2009-02-12large scale fix for svn props after "the great refactor"Sean Dague1-13/+13
2009-02-12* optimized usings.lbsa711-19/+13