aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/AssetInventoryServer/Plugins/Simple (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-08-20Remove the AssetInventory server from core. It has fallen behind bothMelanie4-1002/+0
upstream and the reference implementation to the point where it is no longer usable. It has no known users, and sinnce it doesn't work anymore, it is safe to assume that no one has used it in a long time.
2009-03-13Mark AssetBase.Metadata with [XmlIgnore]Mike Mazur1-2/+2
2009-03-05Use Inventory{Item,Folder}Base in AssetInventoryServer.Mike Mazur1-41/+41
Also the first inventory storage methods are implemented.
2009-02-17- remove the Metadata property from AssetBase and return all previousMike Mazur1-7/+8
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
2009-02-16- replace existing license header in each source file inMike Mazur3-69/+63
AssetInventoryServer with the standard OpenSim license header - add note about Cable Beach to CONTRIBUTORS.txt - clean up AssetInventoryServer.ini.example
2009-02-16- add restrictions and error handling to plugin loading inMike Mazur2-2/+2
AssetInventoryServer - assign shorter names to each AssetInventory plugin - modify AssetInventoryServer.ini.example file so it works out of the box
2009-02-16Standardize logging messages.Mike Mazur2-18/+18
2009-02-16- removed OpenSim.Grid.AssetInventoryServer.Metadata class in favor ofMike Mazur1-42/+37
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
2009-02-16- clean up using references as well as References in prebuild.xmlMike Mazur2-4/+0
- comment out a bunch of stuff in OpenSimInventoryFrontendPlugin.cs to get rid of warnings
2009-02-16Name extension points a little clearer.Mike Mazur1-2/+2
2009-02-16- change AssetInventoryServer config from XML to INIMike Mazur2-18/+24
- convert AssetInventoryServer logging to OpenSim's log4net - updated AssetInventoryServer.ini.example file
2009-02-16- asset server functionality works with OpenSim's HttpServerMike Mazur1-3/+13
- start of removal of AssetInventoryServer.Metadata class
2009-02-16- add list for backend plugins and Dispose() all plugins on shutdownMike Mazur2-2/+0
- fix some plugin names - remove most references to ExtensionLoader - remove commented out AssetInventoryServer blobs from prebuild.xml
2009-02-16Add OpenSim & Simple inventory storage plugins and Null metrics plugin.Mike Mazur2-0/+630
2009-02-16- added Simple AssetInventoryServer plugin (asset storage only)Mike Mazur3-0/+372
- removed OpenSim storage and frontend classes in Extensions dir - put OpenSim plugins in OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim namespace