aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins (follow)
Commit message (Collapse)AuthorAgeFilesLines
* minor: Remove some serialization module scene wrappersJustin Clarke Casey2008-12-192-2/+11
|
* * refactor: Remove archiver module scene wrappersJustin Clarke Casey2008-12-191-4/+13
|
* Minor formatting cleanup.Jeff Ames2008-12-061-7/+7
|
* killing warnings, reformatting RemoteAdminPluginDr Scofield2008-12-051-12/+17
|
* Minor formatting cleanup.Jeff Ames2008-12-031-7/+7
|
* * Locked some RemoteAdmin methods due to racing condition bad behavior.Sean Dague2008-12-031-392/+407
| | | | | | | | | | * Methods locked: CreateRegion, DeleteRegion, CreateUser, CreateUserMethodEmail, UpdateUserAccountMethod, LoadOARMethod, LoadXMLMethod * An example of bad behavior was multiple region creation where same UUID and grid location was possible, by running multiple XMLRPC threads. From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* * minor: A few tiny bits of documentation and log message cleanup before ↵Justin Clarke Casey2008-12-011-1/+0
| | | | starting something different
* * Assume that asset data in a reset inventory post is not inlined by defaultJustin Clarke Casey2008-12-011-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
* * stop inventory item creation via REST falling over on any included assets ↵Justin Clarke Casey2008-12-011-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
* * minor: fix log message printed when unrecognized elements are found in ↵Justin Clarke Casey2008-12-012-135/+119
| | | | inventory rest input xml
* * refactor: rename UserServiceAdmin to UserAdminServiceJustin Clarke Casey2008-11-281-3/+3
|
* * refactor: move CreateUser into UserServiceAdminJustin Clarke Casey2008-11-281-3/+9
|
* Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke2008-11-231-3/+101
| | | | | | | | This patch adds the option of adding the email when you create a new user. This works in Gridmode as none Gridmode. This option is also added to RemoteAdminPlugin. With a new handler you can create a user with a email.
* Add group permissions to agent inventory.Melanie Thielker2008-11-141-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.
* minor: remove mono compiler warningsJustin Clarke Casey2008-11-101-1/+2
|
* this changeset adds an option to RemoteAdmin to limit the number ofDr Scofield2008-11-101-0/+7
| | | | | | | | | regions that XmlRpcCreateRegion will create: if region_limit is != 0 then XmlRpcCreateRegion will only create a new region if the number of regions already existing is below region_limit.
* Refactoring: Moved component creation to "ComponentFactory" as dictated by ↵Tedd Hansen2008-11-093-101/+148
| | | | convention
* * "Fixed" a NRE with the new script engine Tedd committedAdam Frisby2008-11-081-8/+14
| | | | | * Tedd will need to fix properly.
* Work in progress on SECS stuff. Have been holding it off until after 0.6 ↵Tedd Hansen2008-11-0813-632/+182
| | | | release. Still messy as hell and doesn't really work yet. Will undergo dramatic changes. AND MOST IMPORTANTLY: Will be conformed to work in coop with todays DNE and XEngine, hopefully one day providing a common interface for all components.
* adding region_port field to /admin/rest/regions/UUID/ to convey theDr Scofield2008-11-071-0/+4
| | | | | | | port of the region (used for region planning)
* Update svn properties, minor formatting cleanup.Jeff Ames2008-11-011-2/+2
|
* From: Alan Webb (alan_webb@us.ibm.com)Dr Scofield2008-10-302-12/+18
| | | | | | | Cleanups in REST inventory and asset services.
* From: Alan Webb (alan_webb@us.ibm.com)Dr Scofield2008-10-301-8/+29
| | | | | | | | Adding support to set start region and lookat for an avatar via XmlRpc.
* adding documentation for region_master_uuid to XML doc commentsDr Scofield2008-10-231-0/+2
|
* fix: allowing explicit setting of UUID for master avatar inDr Scofield2008-10-231-7/+18
| | | | | | | CreateRegion (and documenting it).
* fix: recent patch to XmlRpcCreateRegionMethod introduced master avatarDr Scofield2008-10-231-5/+23
| | | | | | | | | | UUID parameter without checking for it at the method entry. this patch adds logic to obtain the master UUID via the user profile service, and, if the master avatar does not exist, will create the user. in any case the UUID is then the one supplied by the user profile service.
* Adding AddXmlRpcHandler(name, method, bool) to selectively disableDr Scofield2008-10-231-14/+14
| | | | | | | | | | | | | KeepAlive for certain XmlRpc handlers. Making use of new AddXmlRpcHandler method in RemoteAdminPlugin to avoid clients waiting indefinitely for response. taking note of BaseHttpServer parameter in CommunicationsManager constructor (was passed it but then just ignored so far).
* Update svn properties, minor formatting cleanup.Jeff Ames2008-10-214-18/+18
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2008-10-207-63/+152
| | | | | | | | cleanups and assorted fixes to REST inventory, asset, and appearance services.
* actually enabling SaveOAR XmlRpc ;-)Dr Scofield2008-10-201-4/+93
|
* Add the beginnings of a sim health check (through remote admin)Melanie Thielker2008-10-101-0/+56
|
* Small remote admin cleanups/additionsMelanie Thielker2008-10-091-0/+4
|
* cleaning up OSHttpResponse: note that read access to extra headerDr Scofield2008-10-061-40/+32
| | | | | | | | | | | | | | | fields is GONE (HttpServer does not support that), you can read the "normal" HTTP headers available via properties, and you can add headers. also, it is now possible to set a timeout for KeepAlive (for those clients that pay attention to it). this also fixes the broken REST inventory/assets/appearance services, they should be working again. testcase for OSHttpResponse will follow.
* adds admin_exists_user XmlRpc call.Dr Scofield2008-10-061-0/+74
|
* - a couple of minor code cleanups in RestInventoryServicesDr Scofield2008-09-301-25/+25
| | | | | | | - cleanups and more comments in ChatModule and IRCBridgeModule - adding Name support in ScenePresence
* Update svn properties. Minor formatting cleanup. Fix a compiler warning. ↵Jeff Ames2008-09-281-1/+1
| | | | Fix a UUID vs null comparison.
* * Patch from JHurlimanTeravus Ovares2008-09-262-32/+32
| | | | | | | | | * Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
* * minor: fix lolbug in RestInventoryService spotted by jhurlimanJustin Clarke Casey2008-09-261-2/+2
|
* * minor: remove warningsJustin Clarke Casey2008-09-261-2/+2
|
* From: alan webb (alan_webb@us.ibm.com)Dr Scofield2008-09-241-60/+60
| | | | | | cleanups.
* cleanups, fixing REST appearance services.Dr Scofield2008-09-242-110/+128
|
* Update svn properties, formatting cleanup.Jeff Ames2008-09-232-9/+9
|
* this add POST support for asset services (howto forthcoming) and fixesDr Scofield2008-09-231-9/+109
| | | | | | | a couple of minor bugs.
* cleanups in inventory REST code. also, disables digest authenticationsDr Scofield2008-09-226-9/+38
| | | | | | | | | | | 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.
* * minor: warnings removalJustin Clarke Casey2008-09-213-17/+17
|
* bugfix for shutdownTedd Hansen2008-09-211-2/+9
|
* Update svn properties, minor formatting cleanup.Jeff Ames2008-09-2111-788/+788
|
* Fix an exception in new ScriptEngine loader where a region wouldMelanie Thielker2008-09-211-1/+2
| | | | | | throw on quit if there was no script engine loaded by the loader
* More locks, try's and disable some things in SEC - maybe it won't crash now. :)Tedd Hansen2008-09-213-14/+27
|
* Some error handling to avoid errors in SECTedd Hansen2008-09-212-18/+40
|