| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
| |
* 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.
|
|
|
|
| |
to printing the selected region after a change attempt has been made.
|
|
|
|
|
|
| |
* This region is used for single region commands (such as save-xml2)
|
| |
|
| |
|
|
|
|
|
|
| |
This patch allows the operator to see the region currently served.
A message "Serving region : xxxxx" appears under help or any show commands.
|
| |
|
|
|
|
| |
calling communications manager directly
|
|
|
|
| |
CommunicationsManager
|
|
|
|
|
|
| |
* No user functionality yet (and not for quite some time)
|
|
|
|
| |
region is running standalone
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
* 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).
|
|
|
|
| |
ready for future modularization
|
|
|
|
| |
settings
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
| |
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).
|
| |
|
|
|
|
| |
first and last name parameters
|
| |
|
| |
|
|
|
|
|
|
|
| |
solves an incorectly spliting and rejoining the passed in
string[] cmdArgs and losing the double quoted separation
of command arguments.
|
|
|
|
|
|
| |
Add a .Trim() that was forgotten in a previous patch titled:
[PATCH] Adds an API for for plugins to create new Console commands and Help
|
| |
|
|
|
|
|
|
|
| |
was incorrectly sending the command along with the args to the CommandDelegate
help was getting lost on top of normal help & help was getting missed except
in an exact match (and only returning the first)
|
|
|
|
|
|
| |
0001495: [PATCH] Adds an API for for plugins to create
new Console commands and Help
|
|
|
|
|
|
|
|
| |
must remember to nant clean
* Hook all server startups into base opensim server startup method
|
| |
|
|
|