aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/Rest/Regions (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-015-5/+5
| | | | LICENSE.txt.
* Hooked up the RestRegionPlugin Get Region/xxx/terrain so it outputs xml ↵MW2009-05-211-2/+6
| | | | | | | | containing the terrain heightmap rather than the old "terrain not implemented" message. The format of the terrain data is: the floats encoded in Base64 and serialised into xml. So I think far from ideal, but as the support for outputting that format was already there... Still need to hook up a method for remotely loading this data.
* fixing XmlWriter problemDr Scofield2009-05-183-72/+81
|
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-043-1/+4
|
* Adds a new REST service /admin/regioninfo/ --- will return aDr Scofield2009-04-172-0/+144
| | | | | | | | | | | | | | | | comprehensive list of all regions in one go (in contrast to the /admin/regions/ REST call). Example: % curl http://127.0.0.1:9000/admin/regioninfo/ <regions max="10" number="1"> <region avatars="0" external_hostname="127.0.0.1" ip="0.0.0.0:9000" master_name="Mr X" master_uuid="b757d5f9-7b36-4dda-8388-6e03dd59b326" name="London" objects="6" uuid="49253666-a42e-4f44-9026-d23f93af31d7" x="1000" y="1000"/> </regions>
* * Cleanup and CCC (Code Convention Conformance)lbsa712009-03-101-11/+13
|
* Add copyright headers. Minor formatting cleanup. Fix some compiler ↵Jeff Ames2009-02-131-1/+0
| | | | warnings. Fix some m_log declarations.
* * optimized usings.lbsa712009-02-124-53/+1
|
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-064-6/+6
| | | | | | | | | | | | | | | | | | | | OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
* minor: Remove some serialization module scene wrappersJustin Clarke Casey2008-12-192-2/+11
|
* 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)
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-064-15/+15
| | | | | | | * 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.
* Formatting cleanup.Jeff Ames2008-08-181-2/+2
|
* Fix up master avatar handling for estate owners. Introduces a newMelanie Thielker2008-08-151-1/+4
| | | | | | | | | hierarchical rights structure. MasterAvatar: Owner of the region server (may be null), net gods (users with GodLevel 200), Estate owner (from database). Look at Opensim.ini.example to enable net gods. Estate owner will default to master avatar.
* Update svn properties, formatting cleanup, fix a couple compiler warnings.Jeff Ames2008-08-151-3/+5
|
* From: Richard Alimi <ralimi@us.ibm.com>Dr Scofield2008-08-151-0/+29
| | | | | | | | The following patch implements adding prims to a region using the Xml2 format.
* From: Richard Alimi <ralimi@us.ibm.com>Dr Scofield2008-08-151-4/+35
| | | | | | | | | | | | | | | | The following patch implements retrieving prims in Xml2 format via the REST interface. For example: http://localhost:9000/admin/regions/<region-uuid>/prims/ It also allows an additional parameter which specifies a bounding box. If this parameter is specified, only prims within the bounding box are retrieved. For example: http://localhost:9000/admin/regions/8cd759b4-e077-489d-9a34-e1ff70ef65dd/prims/0,0,0,128,128,128 will retrieve only the prims whose positions are in the bounding box with corners (0,0,0) and (128,128,128).
* Thanks, zaki, for a patch that embeds plugin manifest files into plugin ↵Mike Mazur2008-08-061-0/+11
| | | | dlls. Fix issue 1876.
* Thanks, sempuki, for a patch that moves control of Mono.Addins from source ↵Mike Mazur2008-07-231-6/+0
| | | | attributes to external XML files. Fix issues 1682 and 1786.
* Mantis#1682. Revert temporarily, Sempuki's mono addins patchCharles Krinke2008-07-113-0/+8
| | | | | while he studies the issues in Windows a little bit.
* Mantis#1682. Thank you kindly, Sempuki for a patch that:Charles Krinke2008-07-103-8/+0
| | | | | | Move control of Mono.Addins from source attributes to external XML files. This removes a lot of coupling of the source with Mono.Addins
* * Refactor: Split opensim background server into a separate classJustin Clarke Casey2008-06-011-1/+1
|
* while investigating why IRCBridgeModule.Close() was having no effect, iDr Scofield2008-05-301-3/+6
| | | | | | | | | | | | | | | | | | | noticed that Scene.Close() will only call Close on non-shared region modules. i've now added code to SceneManager.Close() to collect all shared region module from each scene before calling Scene.Close() on it and then, once, all Scenes are closed, go through the list of collected shared region modules and close them as well. SceneManager.Close() is only called when we initiate a shutdown --- i've verified that a Scene restart does not trigger the shutdown of shared modules :-) also, this adds a couple of bug fixes to the IRCBridgeModule (which after all didn't take kindly to being closed) as well as a check to InterregionModule's Close() call. finally, this fixes the RestPlugin's XmlWriter so that it no longer includes the "xsd=..." and "xsi=..." junk.
* cleaning up returned XML REST doclet (no more xsi, xsd) Dr Scofield2008-05-293-2/+7
|
* Formatting cleanup.Jeff Ames2008-05-281-1/+1
|
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-254-131/+127
|
* here are further enhancements to the IHttpAgentHandler and to BaseHttpServer ↵Dr Scofield2008-05-223-15/+121
| | | | | | | | | | | | | (from awebb) i've added the OSHttpStatusCodes enumeration of HTTP status codes, have adapted BaseHttpServer to use those. then RestPlugin now has proper Failure handling returning proper HTTP status codes. Regions/POSTHandler is work-in-progress.
* renaming GETRestRegionPlugin to GETHandler as that's what it really is.Dr Scofield2008-05-211-0/+0
|
* i'm extending the RestStreamHandler.Handler(...) signature to actually Dr Scofield2008-05-201-2/+8
| | | | | | | | | | | provide OSHttpRequest and OSHttpResponse to our REST handler. also, this adds proper RestPlugin.IsGod() checking against the X-OpenSim-Godkey HTTP request header. last, i added XML doc comments to RestPlugin.cs
* fixing exception when RestPlugin not configured. refactors RestRegionPlugin, ↵Dr Scofield2008-05-193-67/+227
| | | | adds error checking.
* Formatting cleanup.Jeff Ames2008-05-162-10/+10
|
* Damn, forgot to manually add these as I keep forgetting thatSean Dague2008-05-152-0/+234
svn patches don't do adds. :(