Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Apply last two patches from http://opensimulator.org/mantis/view.php?id=3522 | Justin Clark-Casey (justincc) | 2010-02-12 | 1 | -3/+3 | |
| | | | | | | | | | | | | These patch should allow people using systems that do not have their locale set to En_US or similar to use OpenSim without suffering effects such as being a million miles up in the air on login. The problem was caused by parsing strings without forcing that parse to be En_US (hence different decimal and digit group symbols were causing problems). Thanks very much to VikingErik for doing the legwork on this fix and phacelia for spotting it in the first place. | |||||
* | | Merge branch 'master' into presence-refactor | Melanie | 2010-02-08 | 1 | -59/+63 | |
|\ \ | |/ | | | | | | | This was a large, heavily conflicted merge and things MAY have got broken. Please check! | |||||
| * | Console output no longer requires loglevel to be set to info; you can run ↵ | mbowman | 2010-01-20 | 1 | -61/+66 | |
| | | | | | | | | | | | | the simulator with log level WARN or ERROR and see the output of console commands Signed-off-by: Melanie <melanie@t-data.com> | |||||
* | | Cleaned up configuration. 'gridmode' and 'hypergrid' are gone, as well as ↵ | Diva Canto | 2010-01-31 | 1 | -12/+1 | |
| | | | | | | | | lots of other obsolete configs. | |||||
* | | Merge branch 'master' into presence-refactor | Melanie | 2010-01-16 | 1 | -49/+14 | |
|\ \ | |/ | | | | | | | This merge was very conflicted. I think I got them all, but I can't be sure. I had to merge to master or risk divergence to the point of unmergeability. | |||||
| * | Make console_port work. | Melanie | 2010-01-11 | 1 | -1/+3 | |
| | | ||||||
| * | Add a console_port setting to let the rest console use a different port | Melanie | 2010-01-11 | 1 | -1/+12 | |
| | | | | | | | | from the region server | |||||
| * | Remove "login disable", "login enable" and "login status" commands. | Melanie | 2010-01-10 | 1 | -48/+0 | |
| | | ||||||
* | | * General cleanup of Teleports, Crossings and Child agents. They are now in ↵ | Diva Canto | 2010-01-15 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | the new AgentTransferModule, in line with what MW started implementing back in May -- ITeleportModule. This has been renamed IAgentTransferModule, to be more generic. * HGSceneCommunicationService has been deleted * SceneCommunicationService will likely be deleted soon too | |||||
* | | Moved MainServer.Instance.AddStreamHandler(new OpenSim.SimStatusHandler()); ↵ | Diva Canto | 2010-01-11 | 1 | -2/+2 | |
| | | | | | | | | around, because it was crashing. Now it crashes elsewhere. | |||||
* | | Refactor. Instantiate sim status handlers in opensim base, not in a plugin | Melanie | 2010-01-11 | 1 | -0/+5 | |
| | | ||||||
* | | * Moved command reset password from OpenSim to UserAccountService. | Diva Canto | 2010-01-09 | 1 | -47/+0 | |
| | | ||||||
* | | * Added SetPassword to IAuthenticationService. | Diva Canto | 2010-01-09 | 1 | -74/+0 | |
|/ | | | | | * Added create user command to UserAccountService. Works. * Deleted create user command from OpenSim. | |||||
* | add agent position to output of "show users" console command | dahlia | 2009-11-30 | 1 | -4/+5 | |
| | ||||||
* | minor: remove some mono compiler warnings, add --merge load oar switch to ↵ | Justin Clark-Casey (justincc) | 2009-11-25 | 1 | -1/+1 | |
| | | | | help information | |||||
* | pass all command parameters to load/save oar, not just the filename | Justin Clark-Casey (justincc) | 2009-11-24 | 1 | -16/+2 | |
| | | | | unfortunately, these commands cannot yet be properly relocated to the region modules due to deficiencies in the region module infrastructure | |||||
* | Adding changes to previous patch to make it fit into core better | Melanie | 2009-10-28 | 1 | -19/+17 | |
| | ||||||
* | patch kill by UUID | Fredo Chaplin | 2009-10-28 | 1 | -0/+58 | |
| | | | | Signed-off-by: Melanie <melanie@t-data.com> | |||||
* | Removing the ClientManager reference from IScene and hiding it entirely ↵ | John Hurliman | 2009-10-26 | 1 | -2/+2 | |
| | | | | inside Scene as an implementation detail. This will reduce programming error and make it easier to refactor the avatar vs client vs presence mess later on | |||||
* | Implemented a Watchdog class. Do not manually create Thread objects anymore, ↵ | John Hurliman | 2009-10-22 | 1 | -0/+11 | |
| | | | | use Watchdog.StartThread(). While your thread is running call Watchdog.UpdateThread(). When it is shutting down call Watchdog.RemoveThread(). Most of the threads in OpenSim have been updated | |||||
* | * Allow SmartThreadPool to be initialized without setting max stack size ↵ | John Hurliman | 2009-10-22 | 1 | -1/+6 | |
| | | | | | | | (like the original implementation) * Only initialize Util's SmartThreadPool if it is actually being used * No longer initializing Util's SmartThreadPool with a custom max stack size. From MSDN: "Avoid using this constructor overload. The default stack size used by the Thread(ThreadStart) constructor overload is the recommended stack size for threads." | |||||
* | Merge branch 'melanie_test' into prioritization | Melanie | 2009-10-22 | 1 | -0/+2 | |
|\ | | | | | | | | | This makes SmartThreadPool configurable and also makes it the default, since the regular thread pool simply stinks. | |||||
| * | Reduce the default pool threads to 15 (from 30) and the minimum from 5 to 2 | Melanie | 2009-10-22 | 1 | -1/+1 | |
| | | ||||||
| * | Add MaxPoolThreads in startup to limit the size of the thread pool used | Melanie | 2009-10-22 | 1 | -0/+2 | |
| | | | | | | | | for FireAndForget. This lets us limit concurrency to make OpenSim play nice | |||||
* | | * Changed the misc. methods calling ThreadPool.UnsafeQueueUserWorkItem() to ↵ | John Hurliman | 2009-10-21 | 1 | -1/+8 | |
|/ | | | | | | Util.FireAndForget() * Changed Util.FireAndForget() to use any of five different methods set with async_call_method in the [Startup] section of OpenSim.ini. Look at the example config for possible values | |||||
* | Change "config save" to "config save <filename>", which is mandatory. | Melanie | 2009-10-20 | 1 | -2/+14 | |
| | | | | File name is enforced to NOT be OpenSim.ini | |||||
* | * Switched to a plain lock for the ClientManager collections and protected ↵ | John Hurliman | 2009-10-14 | 1 | -1/+1 | |
| | | | | | | the TryGetValues with try/catch instead of a lock * Added ClientManager.ForEachSync() for operations that need to run synchronously, such as "show connections" | |||||
* | * Added the "show connections" command to print out all of the currently ↵ | John Hurliman | 2009-10-14 | 1 | -1/+23 | |
| | | | | tracked IClientAPIs | |||||
* | Merge branch 'master' into diva-textures | Melanie | 2009-10-02 | 1 | -7/+7 | |
|\ | ||||||
| * | Formatting cleanup. | Jeff Ames | 2009-10-01 | 1 | -4/+4 | |
| | | ||||||
| * | Change command help text to show .ini in place of .xml when creating regions | Melanie | 2009-09-30 | 1 | -2/+2 | |
| | | ||||||
| * | First pass at the heart surgery for grid services. Compiles and runs ↵ | Diva Canto | 2009-09-26 | 1 | -5/+0 | |
| | | | | | | | | minimally. A few bugs to catch now. | |||||
| * | Moved the property RegionLoginsEnabled from GridComms to the Scene -- not ↵ | Diva Canto | 2009-09-25 | 1 | -1/+1 | |
| | | | | | | | | the scene itself but SceneCommunicationService, for now. Beginning to clear the code from using Region.Communications. grid stuff. | |||||
* | | Remove predecode-j2k and it's assoaciated logic | Melanie | 2009-09-30 | 1 | -20/+0 | |
|/ | ||||||
* | Add a using() block around the timer script | Melanie | 2009-09-11 | 1 | -6/+8 | |
| | ||||||
* | De-hardcode default home locations on create user (standalone). | Diva Canto | 2009-09-09 | 1 | -0/+8 | |
| | ||||||
* | Add the ability to use -console=rest to the region server. User | Melanie | 2009-08-17 | 1 | -2/+24 | |
| | | | | and pass are specified the same way as for the ROBUST server | |||||
* | * minor: Comments | Teravus Ovares (Dan Olivares) | 2009-08-12 | 1 | -1/+94 | |
| | ||||||
* | First pass at cleaning up old OGS1 and Local Inventory: removed ↵ | Diva Canto | 2009-08-10 | 1 | -1/+1 | |
| | | | | everything-inventory in CommsManager, which wasn't actively used anymore. | |||||
* | Removed IAssetCache. | Diva Canto | 2009-08-10 | 1 | -16/+2 | |
| | | | | WARNING: PLEASE MAKE SURE TO USE THIS NEW bin/OpenSim.addin.xml | |||||
* | Make the opensim.ini logfile option really work (port of a fix from ROBUST) | Melanie | 2009-08-07 | 1 | -0/+3 | |
| | ||||||
* | Now we are past revision 10000, I think its time to start to fix that ↵ | MW | 2009-07-10 | 1 | -1/+1 | |
| | | | | massive bug that was introduced in revision 1. So here is the first part of that fix. | |||||
* | Make create region save the new region to ini file format if the name | Melanie Thielker | 2009-06-25 | 1 | -10/+28 | |
| | | | | | | | specifies an ini file. If the ini file exists, the region will be added. | |||||
* | Thank you kindly, MattSetzer, for a patch that solves a Mantis: | Charles Krinke | 2009-06-02 | 1 | -2/+16 | |
| | | | | | | | | | | This appears to be due to the fact that no asset cache has been configured, possibly as a result of the configuration changes that have been made recently. I've attached a patch to display a message to that effect rather than throwing an error. | |||||
* | Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵ | Jeff Ames | 2009-06-01 | 1 | -1/+1 | |
| | | | | LICENSE.txt. | |||||
* | Implement .ini file includes. Anything that begins with "Include-" will be | Melanie Thielker | 2009-05-21 | 1 | -4/+1 | |
| | | | | | | | | | | treated as another ini source to load. For example: Include-Asset = AssetSetup.ini will load AssetSetup.ini after all other ini files are done. This works recursively, too | |||||
* | Remove the pre-log4net, discrete output methods from the consoles | Melanie Thielker | 2009-05-20 | 1 | -43/+42 | |
| | ||||||
* | * minor: another attempt at http://opensimulator.org/mantis/view.php?id=3191 | Justin Clarke Casey | 2009-05-18 | 1 | -20/+9 | |
| | | | | | | * didn't realize that we were getting back plain old exceptions | |||||
* | * Resolve http://opensimulator.org/mantis/view.php?id=3191 | Justin Clarke Casey | 2009-05-18 | 1 | -3/+7 | |
| | | | | | | * Catch directory exception on load oar as well as file exception | |||||
* | Thank you kindly, Patnad, for a patch that: | Charles Krinke | 2009-05-12 | 1 | -0/+25 | |
| | | | | | | | | This patch allow you to see region rating from the console. Type "show ratings" and it will show you the rating of all your regions. |