aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-17- remove the Metadata property from AssetBase and return all previousMike Mazur1-12/+12
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-12* optimized usings.lbsa711-13/+13
2009-02-04- add OpenSim.Framework.AssetMetadata class. AssetBase is now composed of itMike Mazur1-24/+24
- trim trailing whitespace
2009-01-21* More friendly OpenJpeg error handling.Teravus Ovares1-1/+19
* Often times now the only reason OpenJpeg doesn't work is because it requires Glibc 2.4 The error messages reflect that. * In J2kDecoder module, It stops trying to decode modules if it encounters a dllnotfound exception and instead sends a full resolution layer that causes the texture sender to only send the full resolution image. (big decrease in texture download speed, but it's better then nasty repeating error messages)
2008-12-01* Assume that asset data in a reset inventory post is not inlined by defaultJustin Clarke Casey1-3/+2
* This means that the xml of a get request can be used as the input with a few value tweaks, instead of having to explicitly put inline="false" in the output xml
2008-12-01* stop inventory item creation via REST falling over on any included assets ↵Justin Clarke Casey1-93/+93
that are not inline (UUID only) * make rest inventory item xml output use 'invtype' for inventory type rather than just 'type'. This makes it symmetrical with input xml
2008-12-01* minor: fix log message printed when unrecognized elements are found in ↵Justin Clarke Casey1-133/+119
inventory rest input xml
2008-11-14Add group permissions to agent inventory.Melanie Thielker1-0/+8
Contains a migration. May contain nuts. Please back up your inventory data store. This revision changes the interface version!! No older regions can connect to these new UGAIM, and the new regions can't connect to the old UGAIM. Fixes a long-standing issue of permissions loss Currently persisted on MySQL only.
2008-10-30From: Alan Webb (alan_webb@us.ibm.com)Dr Scofield1-11/+11
Cleanups in REST inventory and asset services.
2008-10-21Update svn properties, minor formatting cleanup.Jeff Ames1-9/+9
2008-10-20From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield1-11/+76
cleanups and assorted fixes to REST inventory, asset, and appearance services.
2008-09-30- a couple of minor code cleanups in RestInventoryServicesDr Scofield1-25/+25
- cleanups and more comments in ChatModule and IRCBridgeModule - adding Name support in ScenePresence
2008-09-26* minor: fix lolbug in RestInventoryService spotted by jhurlimanJustin Clarke Casey1-2/+2
2008-09-22cleanups in inventory REST code. also, disables digest authenticationsDr Scofield1-0/+3
for inventory REST calls for the time being, as firefox, curl, and also python's urllib2 cannot authenticate using digest auth. fix permission checking for prim inventory to be the same as for normal edit ops.
2008-09-18Update svn properties, minor formatting cleanup.Jeff Ames1-4/+4
2008-09-18Adds REST interface for setting avatar appearance. cleans up a coupleDr Scofield1-12/+17
of places in the REST inventory code.
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-48/+50
* 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.
2008-08-28Update svn properties, formatting cleanup.Jeff Ames1-200/+125
2008-08-20fixing Rest/Inventory stuff again. changes somehow got lost locally.Dr Scofield1-4/+5
2008-08-20From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield1-299/+617
cleanups of the REST inventory code.
2008-08-19Update svn properties, formatting cleanup.Jeff Ames1-4/+2
2008-08-18Formatting cleanup.Jeff Ames1-184/+116
2008-08-06From: alan webb <alan_webb@us.ibm.com>Dr Scofield1-2/+6
this adds image conversion features to the REST inventory/asset code.
2008-07-25From: awebbDr Scofield1-96/+199
Further improvements to the REST handlers.
2008-07-06Copyright notices and formatting cleanup.Jeff Ames1-2/+2
2008-07-02* Drop InvType from the assets table since it is no longer usedJustin Clarke Casey1-7/+0
* Migration should be automatic on sqlite and mysql * Migration is not automatic on mssql, you will need to drop the invType column manually * Migration should be fine, but as for any db change, I would recommend making sure you have backups before moving past this revision
2008-07-02From: Alan M Webb <awebb@vnet.ibm.com>Dr Scofield1-0/+1993
This adds REST services for inventory access. It also allows inventory uploads.