aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - remove the Metadata property from AssetBase and return all previousMike Mazur2009-02-173-9/+10
| | | | | | | | | 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
* Major change to how appearance is managed, including changes in login and ↵diva2009-02-171-0/+10
| | | | user service/server. Appearance is now sent by the user service/server along with all other loginparams. Regions don't query the user service for appearance anymore. The appearance is passed along from region to region as the avie moves around. And, as before, it's stored back with the user service as the client changes the avie's appearance. Child agents have default appearances that are set to the actual appearance when the avie moves to that region. (as before, child agents are invisible and non-physical).
* - replace existing license header in each source file inMike Mazur2009-02-1617-391/+357
| | | | | | | AssetInventoryServer with the standard OpenSim license header - add note about Cable Beach to CONTRIBUTORS.txt - clean up AssetInventoryServer.ini.example
* - add restrictions and error handling to plugin loading inMike Mazur2009-02-1612-37/+61
| | | | | | | | AssetInventoryServer - assign shorter names to each AssetInventory plugin - modify AssetInventoryServer.ini.example file so it works out of the box
* Standardize logging messages.Mike Mazur2009-02-1613-92/+92
|
* - removed OpenSim.Grid.AssetInventoryServer.Metadata class in favor ofMike Mazur2009-02-168-1250/+1074
| | | | | | | | | | | | | | OpenSim.Framework.AssetMetadata and related updates in AssetInventory server - removed dependency on MySql.Data.MySqlClient - commented out the bulk of OpenSimInventoryStorage due to missing MySql.Data dependency - refactor asset creation in OpenSimAssetFrontend - commented out ForEach implementation, which also depended on MySql.Data, until it's supported by OpenSim backends - commented out some handlers in BrowseFrontend and ReferenceFrontend as they relied on either ForEach or the removed Metadata class
* We need to return a zero-length byte array from the Handle() routine.Mike Mazur2009-02-161-1/+1
|
* - clean up using references as well as References in prebuild.xmlMike Mazur2009-02-1615-305/+277
| | | | | | - comment out a bunch of stuff in OpenSimInventoryFrontendPlugin.cs to get rid of warnings
* Name extension points a little clearer.Mike Mazur2009-02-163-6/+6
|
* Fix dependency on non-OpenSim version of OpenMetaverse.StructuredData.dll.Mike Mazur2009-02-161-1/+1
|
* - change AssetInventoryServer config from XML to INIMike Mazur2009-02-1615-220/+300
| | | | | | - convert AssetInventoryServer logging to OpenSim's log4net - updated AssetInventoryServer.ini.example file
* - remove dependency on ExtensionLoader.dll (DBConnString.cs can go)Mike Mazur2009-02-165-229/+44
| | | | | | | - bring config system in line with other servers - add new plugin filter class which filters on ID - update AssetInventoryServer.ini file
* - asset server functionality works with OpenSim's HttpServerMike Mazur2009-02-164-104/+34
| | | | | - start of removal of AssetInventoryServer.Metadata class
* AssetInventoryServer now compiles while using the standard OpenSimMike Mazur2009-02-167-564/+796
| | | | | console and HttpServer. It doesn't work though.
* Update to new generic DataPluginFactory calls.Mike Mazur2009-02-162-2/+2
|
* - add list for backend plugins and Dispose() all plugins on shutdownMike Mazur2009-02-169-18/+25
| | | | | | | - fix some plugin names - remove most references to ExtensionLoader - remove commented out AssetInventoryServer blobs from prebuild.xml
* Move NullAuthentication and AuthorizeAll extensions to plugins.Mike Mazur2009-02-165-14/+74
|
* Move BrowseFrontend and ReferenceFrontend toMike Mazur2009-02-163-12/+70
| | | | | OpenSim/Grid/AssetInventoryServer/Plugins.
* Migrate OpenSim inventory frontend to load with Mono.Addins. EverythingMike Mazur2009-02-165-57/+60
| | | | | should compile and it seems even creating users works somehow.
* Add OpenSim & Simple inventory storage plugins and Null metrics plugin.Mike Mazur2009-02-168-52/+115
|
* - added Simple AssetInventoryServer plugin (asset storage only)Mike Mazur2009-02-1610-569/+148
| | | | | | | - removed OpenSim storage and frontend classes in Extensions dir - put OpenSim plugins in OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim namespace
* - implement and load NullMetrics module in AssetInventoryServerMike Mazur2009-02-166-187/+94
| | | | | - update AssetBase de/serialization in AssetInventoryServer
* - IAssetProviderPlugin was changed to IAssetDataPluginMike Mazur2009-02-162-15/+8
| | | | | - Use OpenSim.Data.DataPluginFactory to load data plugins
* Converted to Linux newlines.Mike Mazur2009-02-1622-5968/+5968
|
* Added OpenSim asset frontend plugin.Mike Mazur2009-02-164-47/+312
|
* Rename NewAssetServer AssetInventoryServer and fully qualify withMike Mazur2009-02-1623-92/+93
| | | | | OpenSim.Grid.AssetInventoryServer.
* AddingMike Mazur2009-02-1622-0/+5719
| | | | | | | - NewAssetServer code - NewAssetServer addin manifest - example AssetServer.ini file
* Add copyright headers. Minor formatting cleanup. Fix some compiler ↵Jeff Ames2009-02-131-1/+1
| | | | warnings. Fix some m_log declarations.
* * Renamed RegionProfileService to RegionProfileServiceProxy to better ↵lbsa712009-02-122-3/+3
| | | | | | | reflect actual use. * Added IRegionProfileService
* * Turned RegionProfileService non-staticlbsa712009-02-122-6/+9
|
* * Added RegionProfileService and moved RequestSimData to it.lbsa712009-02-121-4/+4
|
* * optimized usings.lbsa712009-02-1219-47/+21
|
* Add proper handling for shared vs. unshared modules to the commandMelanie Thielker2009-02-104-13/+15
| | | | | | | | interface. Shared modules will now only get added once, so the command handler is called once per module, not once per scene. Removal of scenes has no adverse effects. Nonshared modules will be called for each scene.
* The DataPluginFactory is now a set of generic methods instead ofMike Mazur2009-02-092-3/+3
| | | | | multiple duplicates of the same code.
* * Refactored UserLoginService.CustomiseResponse to be (almost) text-wide ↵lbsa712009-02-071-12/+36
| | | | identical to LocalLoginService.CustomiseResponse in order to be able to pull them up.
* Replace the console for all OpenSim apps with a new console featuring commandMelanie Thielker2009-02-075-88/+138
| | | | | | | | | line editing, context sensitive help (press ? at any time), command line history, a new plugin command system and new appender features thet let you type while the console is scrolling. Seamlessly integrates the ICommander interfaces.
* Thank you dslake for a patch that:lbsa712009-02-071-1/+1
| | | | | * fixes mantis #3092: User Server sets agent starting position to passed x/y/x instead of x/y/z
* - add OpenSim.Framework.AssetMetadata class. AssetBase is now composed of itMike Mazur2009-02-041-1/+1
| | | | | - trim trailing whitespace
* - moved data plugin loading code from various places toMike Mazur2009-02-032-39/+19
| | | | | | | | OpenSim/Data/DataPluginFactory.cs - removed dependencies on a few executable assemblies in bin/OpenSim.Data.addin.xml - trim trailing whitespace
* - move IAssetDataPlugin from OpenSim/Framework/IAssetProvider.cs toMike Mazur2009-02-032-1/+3
| | | | | | OpenSim/Data/IAssetData.cs - remove some trailing whitespace
* Rename IAssetProviderPlugin to IAssetDataPlugin aligning with the other data ↵Mike Mazur2009-02-032-8/+8
| | | | plugins.
* * Add a second logoffuser message with the region secret. Teravus Ovares2009-01-131-1/+32
| | | | | * This ensures that the user will be logged off successfully by a properly permissioned user server
* * Fix an invalid seed cap that could be causing issues.Teravus Ovares2009-01-131-0/+4
| | | | | | * CapsUtil.GetRandomCapsObjectPath(); contains a / and the regionInfo.httpServerURI contains a / so that makes * response.SeedCapability = regionInfo.httpServerURI + CapsUtil.GetCapsSeedPath(capsPath); contain two "//" leading to a seed caps path definition like //CAPS/f7ba4238-ec86-4a2b-b3f6-4d9b56070000/, which is wrong
* Commenting out the succesful REST message as under heavy use thereCharles Krinke2009-01-121-3/+7
| | | | | | | are multiple messages in a second and that is usually (in my experience) meaning the logging itself is slowing down the program. Leaving the unsuccesful message as we need to know about that path.
* * prune and regrade log messages relating to client login and logoutJustin Clarke Casey2009-01-061-1/+1
|
* * Rename GetRandomCapsPath() to GetRandomCapsObjectPath() to fit in with ↵Justin Clarke Casey2009-01-061-1/+1
| | | | | | | | terminology used elsewhere * Last build break was probably a Bamboo failure - hopefully this should succeed
* * Move common string aggregation for caps seed path to a method in CapsUtilJustin Clarke Casey2009-01-061-2/+1
|
* * minor: Move GetRandomCapsPath() to a CapsUtil classJustin Clarke Casey2009-01-061-1/+2
|
* * Extend stub to test the successful login of a user on the local login serviceJustin Clarke Casey2009-01-051-0/+1
| | | | | | * Test does not do authentication
* * Check in login service tests beachheadJustin Clarke Casey2009-01-051-0/+1
|