aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/UserConfig.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* Fix the user and password defaults int he remote console setupMelanie2009-08-211-2/+2
|
* Add rest console support to the user server. Will ask new questions atMelanie2009-08-191-0/+14
| | | | | | startup. To use, run it normally once, answering the questions, then run again with -console=rest. Also now supports -console=basic for a console that reads stdin
* Formatting cleanup.Jeff Ames2009-06-101-1/+1
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* * Moved the DefaultConfig settings into already-existing ConfigSettingslbsa712009-04-171-7/+7
|
* * Some more work on refactoring configs;lbsa712009-04-171-28/+25
| | | | | | | * Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
* * Since that was seemingly an false alarm, reverting the revert.lbsa712009-04-161-1/+1
|
* * bizarrely, two reports that that last commit broke script engine startup ↵lbsa712009-04-161-1/+1
| | | | (!) on linux - reverting until we can investigate further.
* * Started arduous config refactoring task with babystep introduction of ↵lbsa712009-04-161-1/+1
| | | | common baseclass for backend configs.
* Added the hg login procedure to the user server.diva2009-03-271-2/+30
|
* * optimized usings.lbsa712009-02-121-1/+2
|
* * Apply http://opensimulator.org/mantis/view.php?id=2927 with some changesJustin Clarke Casey2008-12-291-1/+10
| | | | | | | | | * This allows configuration of the assetset and library control file paths to be other than ./inventory/Libraries.xml and ./assets/AssetSets.xml * This is controlled via the LibrariesXMLFile and AssetSetsXMLFile configuration settings in [StandAlone] in OpenSim.ini (in standalone) and via the user and asset config xml files for grid mode * Thanks to SirKimba for the patch
* Mantis#2340. Thank you kindly, Sacha Magne for a patch that:Charles Krinke2008-10-061-2/+11
| | | | | | adding default_loginLevel in USerServer.xml to set a default login level to acces to the grid. Fixing one bug in login_reset
* * Reinstate grid receive and send keys to user server configJustin Clarke Casey2008-08-091-0/+12
| | | | | | | * Looks like these weren't so unused after all - oops! * Remove message from grid server config
* * minor: oops, forgot the code that actually ends up eliminating the unused ↵Justin Clarke Casey2008-08-091-12/+0
| | | | configuration elements from the last checkin
* * Refactored some heavily duplicated RequestSimProfileData functionslbsa712008-07-291-6/+19
| | | | | * Changed InventoryUrl and GridServerURL type to Uri instead of string - to address '/' issues.
* * Added safeguard to ensure valid inventoryserver uri.lbsa712008-07-271-3/+16
|
* small console message change related to last revisionMW2008-07-081-1/+1
|
* Added option to userserver config, to be able disable/enable the LLSD Login ↵MW2008-07-081-0/+7
| | | | support. As far as I know, the LLSD login method is currently only used by libsl based clients/bots. So could be useful to be able to disable this if a grid comes under a griefing attack from libsl bots.
* * This update enables grid wide presence updates.Teravus Ovares2008-06-021-0/+4
| | | | | | | * You'll need to start-up the MessageingServer and set it up. It sets up like any of the other grid servers. * All user presence data is kept in memory for speed, while the agent is online. That means if you shutdown the messaging server or the messaging server crashes, it forgets who's online/offline. * Occasionally the region-cache will get stale if regions move around a lot. if it gets stale, run clear-cache on the messaging server console to clear the region cache.
* plumb in connection string to the user database paths. mysql and mssqlSean Dague2008-05-021-0/+6
| | | | | | | just ignore this for now, but it lets us get connect strings to sqlite and nhibernate.
* * Spring cleaning.Adam Frisby2008-04-291-15/+11
| | | | | * Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-1/+0
| | | | (this took a while to run).
* changing more references to OpenSim.DataSean Dague2008-04-021-1/+1
|
* Formatting cleanup.Jeff Ames2008-03-181-27/+26
|
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* Converted logging to use log4net.Jeff Ames2008-02-051-0/+1
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Mother of all commits:Adam Frisby2008-01-151-6/+8
| | | | | | | * 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.
* *Added ability to skip any use of the console when configuring and assume ↵mingchen2008-01-041-1/+1
| | | | default value. This is useful when the server is running by itself and a new region request is added without sufficient information
* * Optimized usingslbsa712007-12-271-5/+6
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* removed some duplicate hard-coded port numbers. changed ports to uint.Jeff Ames2007-12-061-1/+1
|
* * Added SSL Support to HttpListenerAdam Frisby2007-12-041-0/+7
| | | | | | | * Added SSL Option to User Server to allow logins to be done via SSL. * Added sane handling for when Remote Admin Plugin configuration is not found * Added some performance boosts to an area of libTerrain which was highlighted in profiling.
* Initial working Grid Inventory server. Only been tested on a very small ↵MW2007-12-011-0/+10
| | | | | | | grid, so likely to have problems on a larger grid with more people? To use , both the user server and Inventory server need to be running this latest revision. (older regions should be able to still be used, just the user won't have inventory on them). Also and HERE IS THE BIG BREAK ISSUE, currently, so that the initial inventory details for a user are added to the inventory db , you need to recreate the accounts using the user server "create user" feature. It should be quite easy to manual populate the inventory database instead but I someone else will need to look into that) Also I've only tested using SQLite as the database provider, there is a Mysql inventory provider but I don't know if it works (SQLite is set as default, so you will need to change it in the inventory server config.xml)
* Added new configuration item to User Server: X and Y of region to send user ↵Brian McBee2007-11-251-0/+12
| | | | to if their logon region is down. Known good region, sort of.
* * Moved OpenSim/Framework/General to OpenSim/Framework for great justice.lbsa712007-10-311-0/+103