aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/RemoteController (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-12/+12
* 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-09-02fix: PostInitialise() not being called on script engines (nasty one that)Dr Scofield1-4/+0
cleanup: warnings, readability
2008-08-28adds XmlRcpLoadOAR support to RemoteAdminPlugin.csDr Scofield1-0/+96
2008-08-22bug fixes:Dr Scofield1-1/+1
- GridInfoServices was not paying attention to location of ini file - typo in RemoteAdminPlugin
2008-08-22- fixes a bug in RemoteAdminPlugin where CreateRegion would not payDr Scofield1-12/+27
attention to regionload_regionsdir from OpenSim.ini - fixes a type on RegionLoaderFileSystem
2008-08-21- corrects statement about {asset,user,inventory} source configurationDr Scofield1-3/+8
as those all work with MySQL (and are in fact required it seems); adds examples as well - adds region_file_template functionality for the create_region XmlRpc call of RemoteAdminPlugin - cleans up and fixes typo in UserProfileData
2008-08-18Formatting cleanup.Jeff Ames1-7/+7
2008-08-06Thanks, zaki, for a patch that embeds plugin manifest files into plugin ↵Mike Mazur1-0/+11
dlls. Fix issue 1876.
2008-07-23Thanks, sempuki, for a patch that moves control of Mono.Addins from source ↵Mike Mazur1-5/+0
attributes to external XML files. Fix issues 1682 and 1786.
2008-07-14adding support for Xml2 serialization format to XmlRpcLoadXMLMethod.Dr Scofield1-1/+20
2008-07-11Mantis#1682. Revert temporarily, Sempuki's mono addins patchCharles Krinke1-0/+5
while he studies the issues in Windows a little bit.
2008-07-10Mantis#1541. Thank you kindly, Phrearch for a patch that:Charles Krinke1-3/+3
Solves Remote Admin create_region type Casting failure.
2008-07-10Mantis#1682. Thank you kindly, Sempuki for a patch that:Charles Krinke1-5/+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
2008-07-04Renaming UserManagerBase.SetUserProfile(UserProfileData) to Dr Scofield1-0/+106
UserManager.UpdateUserProfile(UserProfileData). Adding UpdateUserProfile(UserProfileData) to IUserService interface. Adding RemoteAdminPlugin.XmlRpcUpdateUserAccountMethod(...) to provide a remote update capability.
2008-07-01making XmlRpcs of RemoteController more robust; this fixes mantis #1467Dr Scofield1-17/+23
2008-06-27Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke1-2/+15
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.
2008-06-26small change to last commitMW1-3/+3
2008-06-26As per the suggestion on the mailing list, added support for a OpenSim.xml ↵MW1-3/+3
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).
2008-06-01* Refactor: Split opensim background server into a separate classJustin Clarke Casey1-2/+2
2008-05-16Formatting cleanup.Jeff Ames1-48/+48
2008-05-01* Rolled back a few changes.Adam Frisby1-116/+100
2008-05-01* Cleaning code still.Adam Frisby1-100/+116
2008-05-01* In ur code. Making it static.Adam Frisby1-2/+2
* Converted a bunch of functions to static functions.
2008-05-01* Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby1-2/+2
with namespaces.
2008-04-30* Sometimes you know, you do something really stupid.Adam Frisby1-1/+1
* This is one of those times (should fix build)
2008-04-29From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey1-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
2008-04-28From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey1-21/+29
attached patch does a bit of reformatting and adds some more parameter checking to RemoteAdmin.
2008-04-21From: Dr Scofield <hud@zurich.ibm.com>Sean Dague1-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
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-3/+4
(this took a while to run).
2008-04-15From: dirk husemann <hud@zurich.ibm.com>Sean Dague1-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
2008-04-11* From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey1-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
2008-04-04From: Dr Scofield <hud@zurich.ibm.com>Sean Dague1-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.
2008-03-18Formatting cleanup.Jeff Ames1-1/+1
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
2008-03-06* Disabled ancient TerrainEngine.Adam Frisby1-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.
2008-03-04Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson1-1/+1
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.
2008-02-18More exception checks and crash hintsTedd Hansen1-1/+1
If no scriptengine is specified then don't try to load any.
2008-02-11From: Ansgar Schmidt <ANSI@de.ibm.com>Sean Dague1-0/+48
Here is a patch for Revision 3380. This patch adds the feature of loading XML prim specification via XML-RPC call on a given island. Call with Islandname and XMLPrim Filename.
2008-02-07Update version numbers to 0.5Jeff Ames1-1/+1
2008-02-05Converted logging to use log4net.Jeff Ames1-8/+10
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-01-29* Patch from Ansi (IBM)Justin Clarke Casey1-2/+54
* Allows the creation of a user via the RemoteAdminPlugin. * Many thanks!
2008-01-15* Mother of all commits:Adam Frisby1-7/+7
* Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
2008-01-12* For your enjoyment, some RAdmin improvements, namely a new LoadHeightmap ↵Adam Frisby1-0/+39
method.
2008-01-05Removed ModuleName because its like that and thats the way it is (according ↵Tedd Hansen1-5/+0
to Mono)
2008-01-05Implicit interface definitions (maybe Mono won't crash?)Tedd Hansen1-1/+1
2008-01-05Added ModuleName to /OpenSim/StartUp modules + debug messages during startupTedd Hansen1-0/+6
2007-12-27* Optimized usingslbsa711-40/+38
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-21*RemoteAdminPlugin can now be password protected. Add the password in the ↵mingchen1-70/+101
INI under [RemoteAdmin] with the name access_password *Removed a few more unneeded exceptions in land that has been fixed
2007-12-19Misc. cleanup:Jeff Ames1-2/+2
* added Util.Clip(value, min, max) * modified asset cache's numPackets calculation to use max packet size (600) instead of 1000 * removed a few magic numbers
2007-12-11added copyright noticesJeff Ames1-0/+28