aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSim.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fixed/refactored the Get/Set Config console commands.MW2008-11-051-10/+15
|
* more startup/initialisation refactoringMW2008-11-051-2/+2
|
* Moved most of the configuration fields from Opensimbase to their own ↵MW2008-11-051-2/+2
| | | | Class... Framework/ConfigSettings.
* * refactor: move loadInv and saveInv command line param functions up to the ↵Justin Clarke Casey2008-10-191-0/+47
| | | | | | | | interactive OpenSim class * direct module import is temporary
* * minor: change m_debug to m_debugPacketLevel since that's what it isJustin Clarke Casey2008-10-141-2/+2
|
* * minor: Remove highly experimental tags from oar loading and saving functionsJustin Clarke Casey2008-10-101-6/+0
|
* * oops, fix region startup to be in the correct sequence (though it appeared ↵Justin Clarke Casey2008-10-031-2/+2
| | | | to work anyway)
* Allow create-region to load files from arbitrary locationsMelanie Thielker2008-09-301-1/+6
|
* * Apply http://opensimulator.org/mantis/view.php?id=2294Justin Clarke Casey2008-09-291-0/+4
| | | | | | | | * This is an initial basic experimental code for inventory import and export from the region server * Probably not yet ready for general use * Thanks Kayne!
* fixes future mantis from SachaMagne.Dr Scofield2008-09-291-1/+1
|
* adds support to delete a region completely and offers thatDr Scofield2008-09-181-14/+16
| | | | | | | | | | functionality via the console command "delete-region" and also via RemoteAdminPlugin. minor typo fix.
* * Complete refactoring accidentally left unfinished so that all server help ↵Justin Clarke Casey2008-09-151-45/+0
| | | | requests flow through the ShowHelp() method
* * Add "reset user password" command to standalone region consoleJustin Clarke Casey2008-09-151-0/+55
| | | | | | * Grid user server implementation to follow shortly
* Changed "show users" command to display only root agents, "show users full" toHomer Horwitz2008-09-121-6/+16
| | | | | | display root and child agents (mantis #2171).
* * some if inversions and added {}'s for readabilitylbsa712008-09-081-3/+5
|
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-2/+2
| | | | | | | * 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.
* Mantis#2105. Thank you kindly, HomerHorwitz for a patch that addresses:Charles Krinke2008-09-031-8/+9
| | | | | | | | | Due to the many problems with not cleaned up child-agents, I thought it might make sense to be able to see them on the console. 'show users' on the region-server's console now outputs root- and child-agents (with "root" or "child" column)
* create-region didn't know about regionload_regionsdir...Dr Scofield2008-08-281-1/+2
|
* * minor: refactor thread report into a method that returns a string rather ↵Justin Clarke Casey2008-08-251-1/+1
| | | | than displays information directly
* Update svn properties, formatting cleanup.Jeff Ames2008-08-191-8/+8
|
* * It appears that sometimes some IClientAPI reference is not being released, ↵Justin Clarke Casey2008-08-181-0/+47
| | | | | | | | | resulting in continual execution of the CheckConnectivity timer method * For now, just turn off this timer when we close the connection * Also some minor help refactoring creeps in to this revision.
* Formatting cleanup.Jeff Ames2008-08-181-46/+46
|
* * Insert a new 'set log level [level] command on the console'Justin Clarke Casey2008-08-161-0/+1
| | | | | | | | | * The primary immediate use is to provide a means of temporarily reducing log output on the console when executing console commands * Changing the log level on the console is not permanent and does not affect the log information being put into OpenSim.log * This could have been done by putting in a threshold level on the Console appeneder in OpenSim.exe.config and implementing config watching in the code. * But I think that it's a little more user friendly to make this doable via the console.
* * Try and make the contents of the region prompt more obvious by returning ↵Justin Clarke Casey2008-08-051-31/+18
| | | | to printing the selected region after a change attempt has been made.
* * Make currently selected region appear in the region console promptJustin Clarke Casey2008-08-051-3/+6
| | | | | | * This region is used for single region commands (such as save-xml2)
* * refactor: change method nameJustin Clarke Casey2008-08-051-3/+3
|
* * refactor: clean up code for selecting regions on the region consoleJustin Clarke Casey2008-08-051-35/+32
|
* Mantis#1877. Thank you kindly, Sache Magne for a patch that:Charles Krinke2008-08-021-1/+13
| | | | | | This patch allows the operator to see the region currently served. A message "Serving region : xxxxx" appears under help or any show commands.
* * find user on save-invJustin Clarke Casey2008-07-291-17/+1
|
* * minor: route create user through underlying super class method rather than ↵Justin Clarke Casey2008-07-291-1/+1
| | | | calling communications manager directly
* * refactor: move create user console command parsing down to OpenSim.cs from ↵Justin Clarke Casey2008-07-291-4/+67
| | | | CommunicationsManager
* * Put in stub code for inventory backup.Justin Clarke Casey2008-07-291-3/+24
| | | | | | * No user functionality yet (and not for quite some time)
* * minor: Make create user command appear on the region console only if the ↵Justin Clarke Casey2008-07-221-4/+14
| | | | region is running standalone
* * minor: add wiki link to archiving function invocationJustin Clarke Casey2008-07-211-2/+4
|
* * Minor: correct change-region typoJustin Clarke Casey2008-07-211-1/+1
|
* added region port number to output of "show regions" commandDahlia Trimble2008-07-181-1/+1
|
* * Change load-oar/save-oar status to highly experimental.Justin Clarke Casey2008-07-141-5/+7
| | | | | | | | | * See http://opensimulator.org/wiki/OpenSim_Archives for more details. * These commands can now be used on an experimental basis. save-oar saves the entire current region (prim data, assets, prim inventory items, terrain) to a single tar.gz file. * load-oar loads an opensim archive and entirely replaces the current region (at the moment).
* * refactor: Move xml/archive loading and saving code into separate methods ↵Justin Clarke Casey2008-07-121-79/+109
| | | | ready for future modularization
* * refactor: collapse scene debug settings into same format as packet debug ↵Justin Clarke Casey2008-07-121-20/+30
| | | | settings
* * Refactor: Minor cleanup of Debug method in OpenSim.csJustin Clarke Casey2008-07-121-5/+13
|
* * Hive off ConsolePluginCommand into its own framework classJustin Clarke Casey2008-07-121-109/+0
|
* * Move thread tracking code to base opensim server so that it's available ↵Justin Clarke Casey2008-07-111-28/+0
| | | | | | | | | for all servers (UGAIM as well as Region) * This will work as long as those servers are actually registering any threads they use (does not include stuff plucked from the thread pool) * command is now "show threads" rather than threads
* Added "save-prims-xml2 <PrimName> <FileName>", as we were lacking a method ↵MW2008-07-011-0/+11
| | | | to save a single primitive or small group of them. This command will save all prims in the current scene that name matches the "PrimName" parameter. The saved file is in standard xml2 format, so can be loaded using load-xml2
* more work on the support for multiple inventory servers. MW2008-06-281-0/+7
| | | | | | | | | | The Login service should now read/create new inventory on the inventory server that is set in a users profile. Also added "Add-InventoryHost" console command to add a support for a new server to a region. So it would be good if someone could test this. Set up the grid as normal, but then also run extra inventory server on a different computer (well actually it just has to be on a different network hostname, so one using "http://localhost:8004" and one using "http://127.0.0.1:8005" should work) then you need to manually edit the user profile database to set the new servers url in a user's "userInventoryURI" field. Then on a region server, use the Add-InventoryHost to add the new server url (always include the full url, including http, but don't add a final /) Login with that account and see if the inventory works. Of course these needs to be made more user friendly.
* small change to last commitMW2008-06-261-2/+2
|
* As per the suggestion on the mailing list, added support for a OpenSim.xml ↵MW2008-06-261-2/+2
| | | | | | | 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).
* Minor formatting cleanup.Jeff Ames2008-06-251-7/+7
|
* changed kickuser console command to use caseless compared substrings for ↵Dahlia Trimble2008-06-231-6/+2
| | | | first and last name parameters
* Changed the kickuser command to use the new console RegisterCmd feature.Dahlia Trimble2008-06-221-31/+33
|
* Added an experimental "kickuser" console command to log off a user by name.Dahlia Trimble2008-06-221-0/+31
|