aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins (follow)
Commit message (Collapse)AuthorAgeFilesLines
* dropping GridInfo prototype, now properly implemented asDr Scofield2008-07-281-122/+0
| | | | | | | GridInfoService.
* oops. forgot to add addin.xml for GridInfoPlugin. also, slightDr Scofield2008-07-251-1/+2
| | | | | | | | | reordering of plugin initialisation to ensure that it will return base information about grid, even if [GridInfo] config section is not there.
* first cut at a GridInfo plugin (mantis #1825). Currently just spitsDr Scofield2008-07-251-0/+121
| | | | | | | | | | | | | | out everything in the [GridInfo] section :-D Also, not yet LLSD but XmlRpc, LLSD via GET will follow. OpenSim.ini.example contains sample values and explanation. Oh, and default values provided are platform: OpenSim mode: standalone | grid have fun.
* From: awebbDr Scofield2008-07-252-0/+284
| | | | | | test code for REST handlers.
* From: awebbDr Scofield2008-07-256-308/+620
| | | | | | Further improvements to the REST handlers.
* Thanks, sempuki, for a patch that moves control of Mono.Addins from source ↵Mike Mazur2008-07-235-29/+0
| | | | attributes to external XML files. Fix issues 1682 and 1786.
* * eliminated some warnings and added some const and readonlieslbsa712008-07-211-1/+1
| | | | | | | | | * refactored some member names for readability and ccc (code convention conformance) * took away two refs from Rest.Inventory since * System.IO is part of System * System.Xml.Serialization is part of System.Xml
* adding support for Xml2 serialization format to XmlRpcLoadXMLMethod.Dr Scofield2008-07-141-1/+20
|
* Mantis#1682. Revert temporarily, Sempuki's mono addins patchCharles Krinke2008-07-117-0/+31
| | | | | while he studies the issues in Windows a little bit.
* Mantis#1541. Thank you kindly, Phrearch for a patch that:Charles Krinke2008-07-101-3/+3
| | | | | Solves Remote Admin create_region type Casting failure.
* Mantis#1682. Thank you kindly, Sempuki for a patch that:Charles Krinke2008-07-107-31/+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
* Copyright notices and formatting cleanup.Jeff Ames2008-07-063-4/+4
|
* Renaming UserManagerBase.SetUserProfile(UserProfileData) to Dr Scofield2008-07-041-0/+106
| | | | | | | | | | | UserManager.UpdateUserProfile(UserProfileData). Adding UpdateUserProfile(UserProfileData) to IUserService interface. Adding RemoteAdminPlugin.XmlRpcUpdateUserAccountMethod(...) to provide a remote update capability.
* * Drop InvType from the assets table since it is no longer usedJustin Clarke Casey2008-07-022-8/+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
* From: Alan M Webb <awebb@vnet.ibm.com>Dr Scofield2008-07-026-0/+4524
| | | | | | | This adds REST services for inventory access. It also allows inventory uploads.
* making XmlRpcs of RemoteController more robust; this fixes mantis #1467Dr Scofield2008-07-011-17/+23
|
* Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke2008-06-273-4/+46
| | | | | | | | | | Currently module loading is done ad-hoc. I propose creating a simple loader class that leverages Mono.Addins (and perhaps the new .NET addins when they become available in mono). Attached is a basic patch for review that compiles into HEAD, but doesn't yet replace any existing ad-hoc loaders.
* small change to last commitMW2008-06-263-9/+9
|
* As per the suggestion on the mailing list, added support for a OpenSim.xml ↵MW2008-06-263-9/+9
| | | | | | | config file, instead of a ini file. INI files still work the same as they did before, just now if a ini file isn't found, it looks for a OpenSim.xml file (of course in xml format) and if found uses that. Includes a OpenSim.Example.xml for reference (the default settings saved as a xml file).
* * Refactor: Split opensim background server into a separate classJustin Clarke Casey2008-06-014-8/+8
|
* while investigating why IRCBridgeModule.Close() was having no effect, iDr Scofield2008-05-302-3/+14
| | | | | | | | | | | | | | | | | | | 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-295-4/+66
|
* Formatting cleanup.Jeff Ames2008-05-282-3/+3
|
* cleaning up: coding style guidelines violation in RestPlugin.cs. Dr Scofield2008-05-271-1/+2
| | | | | | adding support for enabled = true|false for IRCBridgeModule
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-255-172/+167
|
* here are further enhancements to the IHttpAgentHandler and to BaseHttpServer ↵Dr Scofield2008-05-224-24/+172
| | | | | | | | | | | | | (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-202-6/+62
| | | | | | | | | | | 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
* i'm dropping VerifyGod() and adding IsGod(OSHttpRequest) instead, which ↵Dr Scofield2008-05-191-5/+11
| | | | | | | | | | | actually now takes a look at the HTTP request header and retrieves x-opensim-godkey (if it exists) and compares that against the godkey from OpenSim.ini. also, this makes AddStreamHandler() virtual so that it can be overridden.
* fixing exception when RestPlugin not configured. refactors RestRegionPlugin, ↵Dr Scofield2008-05-194-80/+288
| | | | adds error checking.
* Formatting cleanup.Jeff Ames2008-05-165-75/+75
|
* Damn, forgot to manually add these as I keep forgetting thatSean Dague2008-05-153-0/+480
| | | | | | svn patches don't do adds. :(
* * Refactored IConfigSource into Physics plug-ins and Scene. We can get rid ↵Teravus Ovares2008-05-141-0/+1
| | | | | | | of some of the parameters we pass to it's constructor now like, 'm_allowPhysicalPrim', 'seeIntoOtherRegions', etc.. so on * The main purpose of this is to provide configuration options for ODE and other physics plug-ins that are advanced enough to be able to be configured.
* * Rolled back a few changes.Adam Frisby2008-05-012-118/+102
|
* * Cleaning code still.Adam Frisby2008-05-012-102/+118
|
* * In ur code. Making it static.Adam Frisby2008-05-011-2/+2
| | | | | * Converted a bunch of functions to static functions.
* * Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby2008-05-011-2/+2
| | | | with namespaces.
* * Sometimes you know, you do something really stupid.Adam Frisby2008-04-301-1/+1
| | | | | * This is one of those times (should fix build)
* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-291-17/+14
| | | | | | | | | * Fixes the admin_shutdown xmlrpc method * Adds a share/python/console/shutdown.py script for shutting down a background OpenSim * For more details see http://xyzzyxyzzy.net/2008/04/29/console-less-opensim/ * There should also be instructions in the opensimulator wiki soon as well
* * Little more spring cleaning.Adam Frisby2008-04-292-9/+15
|
* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-281-21/+29
| | | | | | | attached patch does a bit of reformatting and adds some more parameter checking to RemoteAdmin.
* From: Dr Scofield <hud@zurich.ibm.com>Sean Dague2008-04-211-60/+100
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | the attached patch set is centered around RemoteAdminPlugin and focuses mainly on making it more robust (i.e. more parameter checking and better error reporting) but also we've re-implemented the LoadTerrain stuff that got disabled during the terrain code reworking: * missing PostInitialize() calls on region modules that were loaded for regions created via RemoteAdmin's CreateRegion XmlRpc call * re-implements RemoteAdmin's LoadTerrain XmlRpc call (probably lost during the TerrainModule rework) * adds lots more parameter checking and error reporting to RemoteAdmin * adds a read-only property to RegionApplicationBase so that we can access the CommsManager * adds Exceptions to TerrainModule so that we get better error case feedback (and can report more meaningful errors in turn) * adds a CheckForTerrainUpdate() call to TerrainModule.LoadFromFile() to make terrain changes effective * adds TryGetCurrentScene(LLUUID) to SceneManager so that we can retrieve Scenes not only by name but also by LLUUID cheers, dr scofield
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-212-7/+10
| | | | (this took a while to run).
* From: dirk husemann <hud@zurich.ibm.com>Sean Dague2008-04-151-21/+40
| | | | | | | | | | | | | | | | | attached is a patch set that * adds further robustness checks for the CreateUser and CreateRegion XmlRpc * fixes SceneManager.TryGetScene(IPEndPoint, Scene) --- contrary to my expectation IPEndPoint.Address is not sufficient for a comparision, IPEndPoint.Address.Address (the long representation) does work however. * add [RemoteAdmin] section to OpenSim.ini.example * fixes XML doc comments good night, dirk
* * From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-111-33/+64
| | | | | | | | * This patch adds support for saving a dynamically generated region to the filesystem (as a region xml file) * Also adds some error checknig to make sure the dynamically generated region name, id or location are not already taken. * Thanks Dr Scofield
* From: Dr Scofield <hud@zurich.ibm.com>Sean Dague2008-04-041-103/+231
| | | | | | | | | | ansgar and i have done a bit of clean up for the "create user" and "create region" XmlRpc methods in RemoteController (contributed earlier by ansgar), this add a bit of consistency checking, more error checking and also documentation of the expected XmlRpc parameters.
* Formatting cleanup.Jeff Ames2008-03-181-1/+1
|
* Formatting cleanup.Jeff Ames2008-03-183-78/+75
|
* * Disabled ancient TerrainEngine.Adam Frisby2008-03-061-1/+1
| | | | | | | * Enabled new TerrainModule. (The king is dead, long live the king!) * Use the console command: "script terrain save file.r32" / "script terrain load file.r32" to load/save terrain. Now uses the extension to determine file format. * MANY of the old terrain features do not have a replacement function in the new module yet, this needs to be corrected, but has not been done so far. This being said, the new module is faster and more efficient and should be a good replacement.
* Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson2008-03-042-3/+3
| | | | support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.