aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/RemoteController (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-11-17Remove unnecessary ability to directly set InventoryItemBase.CreatorIdAsUuidJustin Clark-Casey (justincc)1-4/+0
This was necessary historically but hasn't been for many years. Can still get CreatorIdAsUuid, which is really just a UUID cached version of the string CreatorId
2012-11-15Revert "Merge master into teravuswork", it should have been avination, not ↵teravus1-12/+79
master. This reverts commit dfac269032300872c4d0dc507f4f9062d102b0f4, reversing changes made to 619c39e5144f15aca129d6d999bcc5c34133ee64.
2012-11-13Added a few more AssemblyInfos. (Plus added the one in OptionalModules, ↵Diva Canto1-0/+33
which had been forgotten.)
2012-09-29Get rid of some unnecessary casts in RemoteAdminPlugin.Justin Clark-Casey (justincc)1-5/+5
This was stopping http://code.google.com/p/opensimtools/wiki/RemoteAdminPHPClass from working with some methods (e.g. create_user). However, this casting has been around for at least 2 years so I'm puzzled that it worked in the first place, though it probably is extremely old sample code.
2012-09-22Remove deprecated parameters for region_id.Michelle Argus1-74/+0
Remove deprecated parameters for region_id as anounced in january 2012.
2012-09-14Support multi-region OAR filesOren Hurvitz1-0/+7
Merged ArchiveWriteRequestPreparation.cs and ArchiveWriteRequestExecution.cs. This simplifies the code, and it's faster to write each scene to the archive as it's found rather than all at once at the end.
2012-06-03When regions are set to shut down the instance, always send notifications toMelanie1-6/+30
all affected regions and disregard the region id parameter.
2012-05-28If a region is not found on a simulator, make the health query returnMelanie1-4/+13
0 to indicate it's still starting rather than an error. There are other methods that can discover the presence of a region and slow starting regions may cause the watchdog to kill them while they start,
2012-02-03Changed save oar and save iar parameter -p|--profile to -h|--home, including ↵Snoopy Pfeffer1-2/+2
corresponding RemoteAdmin parameter
2012-01-28Add the ability to abort a pending restart using the viewer UI or aMelanie1-1/+19
RemoteAdmin message
2012-01-06Allow RemoteAdmin to deal with all the different kinds of region id ↵Justin Clark-Casey (justincc)1-215/+191
parameter that have been used in different methods. See http://opensimulator.org/mantis/view.php?id=5814 Thanks Michelle Argus!
2011-12-19addresses mantis #5827nebadon1-1/+1
RAdmin - admin_save_oar fails if noassets parameter missing thanks Michelle Argus
2011-12-12Remove spammy log messages when querying sim healthMelanie1-8/+0
2011-12-08Remove a left over log outputMelanie1-2/+1
2011-12-08Remove superfluous try blockMelanie1-27/+14
2011-12-08Adapt to justincc's remote admin refactorMelanie1-1744/+1394
2011-12-07Remove warning in admin_save_oar xmlrpc method where noassets == true was ↵Justin Clark-Casey (justincc)1-1/+1
comparing against an object rather than a string
2011-12-07Have admin_load_heighmap and admin_save_heightmap xmlrpcadmin methods return ↵Justin Clark-Casey (justincc)1-2/+2
success = true on success rather than false
2011-12-07Refactor RemoteAdminPlugin so that every xmlrpc method calls a common block ↵Justin Clark-Casey (justincc)1-1711/+1370
of code to do password checks, etc., instead of copy/pasting this code into every method
2011-12-07Implement XMLRPCAdmin command admin_teleport_agent.Justin Clark-Casey (justincc)1-0/+113
This allows someone with access to this command on the XMLRPCAdmin interface to teleport an avatar to an arbitrary region and/or position.
2011-10-21RemoteAdmin - Added optional terrain loading on region create using ↵Michelle Argus1-21/+41
parameter heightmap_file to specify the terrain file to be loaded
2011-10-08Remove the inconsistently applied now pointless FailIfRemoteAdminDisabled() ↵Justin Clark-Casey (justincc)1-39/+1
check on XMLRPC RemoteAdmin handlers. If admin is disabled then the XMLRPC handlers are never registered, which means that they cannot be called anyway.
2011-10-08replace List used by m_accessIP in RemoteAdminPlugin with the more efficient ↵Justin Clark-Casey (justincc)1-5/+4
HashSet
2011-10-08Add option to allow only explicitly listed IPs to access RemoteAdmin facilities.Justin Clark-Casey (justincc)1-124/+116
Also adds password check to some functions where this was missing and fixes some parameter checking. This is a patch from http://opensimulator.org/mantis/view.php?id=5715 with a few small unrelated spacing tweaks from me. Thanks Michelle Argus.
2011-10-04When creating a new user on the comand line, give the option of allowing a ↵Justin Clark-Casey (justincc)1-1/+1
UUID to be specified to override the randomly generated one. This can be useful in some migration cases where recreating user accounts with known IDs will preserve region scene object ownership.
2011-10-04Turn off keepalives when commands are specifiedMic Bowman1-1/+1
2011-10-01Add ability to pass in the permissions option (perm) to save oar via RemoteAdminJustin Clark-Casey (justincc)1-1/+8
Applies patch in http://opensimulator.org/mantis/view.php?id=5686 Thanks Michelle Argus!
2011-09-16Reattaching a region was failing if the estate name had not changed (issue ↵Kevin Houlihan1-4/+13
5035). Using the RemoteAdmin API to close then recreate a region would fail if the estate name had not changed. If the estate name /was/ changed then the existing estate would be renamed rather than a new one being created. The problem really arose from a lack of distinction in the data storage layer between creating new estates and loading existing ones.
2011-09-09Added a check to the CreateRegion method of the RemoteAdmin module that the ↵Kevin Houlihan1-0/+13
specified user exists. A meaningful exception message is returned if the user is not found. Previously it was returning "Object not set..."
2011-07-02Add profile, merge, noassets and skip-assets options for loading/saving oars ↵Justin Clark-Casey (justincc)1-2/+39
via RemoteAdmin This is http://opensimulator.org/mantis/view.php?id=5453 Thanks Michelle Argus!
2011-04-17Mantis #5442: Add admin_save_heightmapMelanie1-0/+56
2011-04-15Make remote admin error messages more helpful on windows.Justin Clark-Casey (justincc)1-88/+73
Also, make log messages conform more with convention.
2011-04-15Thanks Snoopy for a patch that allows setting of perms on items given to new ↵BlueWall1-1/+34
avatars
2010-12-03Fix status responses in remote adminMelanie1-2/+2
2010-12-03Improve health reportingMelanie1-1/+5
2010-11-25Change all restarting to use the restart module. Remove hardcoded behaviorMelanie1-5/+12
2010-11-25Fix a bug caused by leftover codeMelanie1-4/+0
2010-11-25Fix up remote controller.Melanie1-8/+29
2010-11-21Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto1-1/+5
themselves. Tested. Seems to be working, main tests pass. Nothing done for IARs or HG transfers yet -- this only works for OARs for the time being. New migration in inventory table in order to make CreatorID varchar(255).
2010-11-08Formatting cleanup.Jeff Ames1-1/+1
2010-11-03Change the default of the new bind_ip_address RemoteAdmin option to 0.0.0.0Melanie1-1/+1
so it reflects the prior default. We are not in the habot of changing default behavior without good reason and making localhost the default would break most current use cases.
2010-11-03Admin Server can now bind to a private ip addressmores1-1/+3
Signed-off-by: Melanie <melanie@t-data.com>
2010-11-03Change the default of the new bind_ip_address RemoteAdmin option to 0.0.0.0Melanie1-1/+1
so it reflects the prior default. We are not in the habot of changing default behavior without good reason and making localhost the default would break most current use cases.
2010-11-03Admin Server can now bind to a private ip addressmores1-1/+3
Signed-off-by: Melanie <melanie@t-data.com>
2010-10-30READ CAREFULLY!!! This is a BROKEN commit. It is UNTESTED and INCOMPLETE.Melanie1-10/+8
It contains a major interface version bump and will NOT work with earlier grid services. This is preliminary work that will lead to layers support. Rest appearance services are commented out completely, they will have to be adapted by someone who actually uses them. Remote admin is working, but has no layers support. There is no layers support in the database. Login likely won't work. You have been warned.
2010-10-21First attempt to get multiple attachments working to support viewer2.Master ScienceSim1-4/+4
The attachment code appears to work correctly for 1.23 viewers so, in spite of some big changes in the internal representation, there don't appear to be regressions. That being said, I still can't get a viewer2 avatar to show correctly.
2010-10-20Major refactoring of appearance handling.Master ScienceSim1-18/+10
AvatarService -- add two new methods, GetAppearance and SetAppearance to get around the lossy encoding in AvatarData. Preseve the old functions to avoid changing the behavior for ROBUST services. AvatarAppearance -- major refactor, moved the various encoding methods used by AgentCircuitData, ClientAgentUpdate and ScenePresence into one location. Changed initialization. AvatarAttachments -- added a class specifically to handle attachments in preparation for additional functionality that will be needed for viewer 2. AvatarFactory -- removed a number of unused or methods duplicated in other locations. Moved in all appearance event handling from ScenePresence. Required a change to IClientAPI that propogated throughout all the IClientAPI implementations.
2010-10-15Made OARs use the new serialization procedure. (TPs/crossings still on the ↵Diva Canto1-1/+1
old one) Added an options argument down the pipeline. For the time being it takes --old-guids as an option to produce <Guid> instead of <UUID>.
2010-09-12* Added ISimulationDataService and IEstateDataServiceJohn Hurliman1-6/+6
* Removed StorageManager * CONFIG CHANGE: There are no more database settings in OpenSim.ini. Check the config-include configuration files for region store and estate store database settings
2010-09-04Move code that allows llGiveInvetory() to move item into appropriate system ↵Justin Clark-Casey (justincc)1-12/+11
folder up from connectors into Scene.Inventory.cs This fixes the problem for all architectures (hg as well as local and grid) and means we don't have to dupe code between connectors. Not ideal in that it becomes non-modular, but methods in Scene.Inventory.cs should eventually be modularized anyway.