aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/AssetInventoryServer (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove the AssetInventory server from core. It has fallen behind bothMelanie2009-08-2023-5707/+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.
* * Switching IAssetData to follow the new naming schema, removing the ↵Kunnis2009-08-191-4/+4
| | | | separate insert and update methods.
* Last piece of cleaning up old inventory. Old IInventoryServices and ↵Diva Canto2009-08-101-2/+0
| | | | ISecureInventoryService interfaces removed.
* Remove the pre-log4net, discrete output methods from the consolesMelanie Thielker2009-05-201-1/+1
|
* Thanks lulurun for a patch which addresses Mantis #3599: Exceptions when ↵Dahlia Trimble2009-05-081-1/+1
| | | | AssetInventoryServer receive a "DeleteItem" request
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-047-1/+7
|
* Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker2009-05-041-1/+1
| | | | | | | | console capable of processing commands. Create LocalConsole as a console that uses cursor control and context help. Precursor to a distributed console system for the new grid services. No functional change intended :)
* * refactor: move archive user inventory item serialization out to a separate ↵Justin Clarke Casey2009-04-231-67/+6
| | | | file
* Thank you kindly, TLaukkan for a patch that:Charles Krinke2009-04-211-11/+20
| | | | | | | | | 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.
* * Make it possible to store creator strings in user inventory items as well ↵Justin Clarke Casey2009-04-083-7/+5
| | | | | | | | | as UUIDs * All existing functionality should be unaffected. * Database schemas have not been changed.
* Moving GetInventoryItem up to InventoryServiceBase, since this seems like a ↵diva2009-03-191-10/+0
| | | | pretty fundamental function.
* * Group OpenSim.Framework.Servers interfaces togetherJustin Clarke Casey2009-03-191-0/+1
|
* Rename OpenSim.Framework.Archive to OpenSim.Framework.SerializationMike Mazur2009-03-161-1/+1
| | | | | Update using statements and prebuild.xml. Also trim trailing whitespace.
* Mark AssetBase.Metadata with [XmlIgnore]Mike Mazur2009-03-132-3/+3
|
* Move ArchiveConstants to OpenSim.Framework.ArchiveMike Mazur2009-03-121-3/+2
| | | | | | | | | | - 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-1/+1
| | | | | | | We now build OpenSim.Framework.Archive.dll which aims to contain code used for archiving various things in OpenSim. Also remove trailing whitespace.
* Adding AssetInventory InventoryArchive pluginMike Mazur2009-03-114-0/+283
| | | | | | | | | | | | | | This plugin exposes an HTTP handler on the AssetInventoryServer which serves a gzipped tar file containing the contents of a user's inventory. The assets referenced by the inventory are not yet archived. At the moment only export functionality is implemented, restore functionality is missing. prebuild.xml had to be shuffled around a bit in order for the plugin to build, as it has a dependency on OpenSim.Region.CoreModules. Also, close a MemoryStream in a few places.
* Implemented FetchAssetMetadataSet in DB backends.Mike Mazur2009-03-092-136/+97
| | | | | | | | | | | | | This method fetches metadata for a subset of the entries in the assets database. This functionality is used in the ForEach calls in the asset storage providers in AssetInventoryServer. With this implemented, frontends such as the BrowseFrontend should now work. - MySQL: implemented, sanity tested - SQLite: implemented, sanity tested - MSSQL: implemented, not tested - NHibernate: not implemented
* Add missing parameter to m_log.DebugFormat().Mike Mazur2009-03-061-1/+1
|
* Make DeserializeUUID explicitly private.Mike Mazur2009-03-051-1/+1
|
* Made the OpenSimInventoryFrontendPlugin.DeserializeUUID(Stream stream) ↵MW2009-03-051-1/+1
| | | | method static to get past the build errors. Mikem really needs to check this change over to see its the right approach for what he wanted.
* Fix moving folders.Mike Mazur2009-03-052-4/+9
| | | | | | | Casting from base class to inherited class is a no-no, and we must preserve the folder type when moving folders, otherwise it gets set to a Texture folder (type 0).
* Fix creating inventory items and folders.Mike Mazur2009-03-052-6/+9
| | | | | | The order of deserialization needed to be changed. Also corrected a bug that caused no inventory items to be returned on login.
* Implemented all Inventory frontend handlers.Mike Mazur2009-03-053-512/+719
| | | | | | This doesn't mean they all work as expected, though. More changes to come as testing unveils bugs.
* Implementing more inventory storage methods.Mike Mazur2009-03-052-314/+134
|
* Use Inventory{Item,Folder}Base in AssetInventoryServer.Mike Mazur2009-03-056-268/+235
| | | | | Also the first inventory storage methods are implemented.
* A couple cosmetic changes in inventory storage plugin.Mike Mazur2009-03-051-2/+5
|
* * minor: Remove most mono compiler warningsJustin Clarke Casey2009-02-251-2/+2
|
* Load default assets when AssetInventory starts.Mike Mazur2009-02-232-0/+15
|
* Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-221-1/+5
| | | | | | | | | * Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
* - remove the Metadata property from AssetBase and return all previousMike Mazur2009-02-172-8/+9
| | | | | | | | | 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
* - 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