aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/GridServerBase.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-03-24XmlRpcCommand refactoringJohan Berntsson1-1/+1
2008-03-24Added a plugin loader in GridServerJohan Berntsson1-1/+33
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
2008-03-12* made some privates protected lbsa711-2/+2
2008-03-12* Renamed Main.cs to GridServerBase.cslbsa711-2/+2
2008-03-12* Refactored out exe bit out of Grid Server for great justicelbsa711-54/+16
2008-03-12* Refactored some internals in Grid Server Mainlbsa711-24/+21
2008-03-12* Extracted RegionProfileData from Requestlbsa711-2/+1
* Introduced ValidateNewRegion and ValidateOverwrite
2008-03-04Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson1-0/+1
support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
2008-02-05Converted logging to use log4net.Jeff Ames1-16/+14
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-04* Rebase all current servers on common abstract BaseOpenSimServer classJustin Clarke Casey1-19/+15
* The immediate upshot is that "show uptime" from the console will now show uptime on all server types (user, asset, grid, etc) * DEV: This refactoring is far from complete - only just enough to makes the "show uptime" command common accross the servers. More is needed, but in this case it's somewhat like eating cabbage, which I prefer not to do all at once
2008-01-15* Mother of all commits:Adam Frisby1-4/+4
* 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.
2008-01-06* A few more Message Server comms related updatesTeravus Ovares1-0/+5
2007-12-27* Optimized usingslbsa711-2/+2
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames1-2/+2
notice of doom
2007-12-06removed some duplicate hard-coded port numbers. changed ports to uint.Jeff Ames1-1/+1
2007-12-04* Fixed a whole bunch of console messages.Adam Frisby1-3/+3
2007-10-30* Optimized usingslbsa711-22/+15
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-2/+2
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
2007-10-25apply http://bug.opensecondlife.org/view.php?id=512 from chillkenSean Dague1-1/+1
which cleans up the verbose logic
2007-09-14Can now set the http ports that grid server and user server use. MW1-1/+1
2007-09-10mass update of urls in source code to new websiteSean Dague1-1/+1
2007-08-03Changes to prepare for future possible configuration of separate logdir, ↵Brian McBee1-2/+8
configdir, datadir.
2007-07-24* Reduced a significant number of compiler warnings (back down to 9 for all ↵Adam Frisby1-1/+0
projects combined, all 'never used' things)
2007-07-21Re-added the ability to set the database provider (dll) in the config file ↵MW1-1/+1
for the userserver and gridserver.
2007-07-19*Moved XmlConfiguration to its own projectmingchen1-2/+2
*Made it possible to load a configuration interface by DLL *Deleted the 1024 config files until they are updated
2007-07-19* Removed yet more compiler warningsAdam Frisby1-1/+0
* Dropped old ILocalStorage storage engines.
2007-07-18*New Configuration System, much easier and less buggy compared to the ↵mingchen1-38/+4
original system in place *View RegionInfo.cs for an example on how it works! *This hopefully copies all the files over, but who knows :)
2007-07-16changed to native line ending encodingSean Dague1-258/+258
2007-07-05*Removed SimProfile.cs as it is no longer needed (in favor of SimProfileData)mingchen1-0/+1
*Added simulator_data_request XMLRPC method to request data from the grid server about a sim instead of faking its login *Login is progressing, now just getting an XML error (http://pastebin.com/942515) -- if you can fix this, throw MingChen in IRC a Private Message
2007-07-04* Removed AssetHttpServer, using BaseHttpServer insteadlbsa711-19/+10
* Removed legacy REST handling * Created two custom IStreamHandlers for asset up/download * Removed quite a lot of double and triple encodings, trying to work towards binary only and direct write into storage. * Introduced BaseStreamHandler with GetParam() and some other goodies
2007-07-03*Fixed storage issue as noted in last commit of the OGS1 GridServermingchen1-4/+4
*Reverted the default remote grid server port back to 8001 (from a port change to debug a previous issue)
2007-07-03*Removed GridInfo class as it has been previously replaced with the much ↵mingchen1-6/+7
better NetworkServersInfo class *Got the GridServer in OGS1 to go through with registering the region, but the actual storage of the region isnt working right now. **After this is fixed, grid mode should work!
2007-07-03*Renamed OGS1 XmlRpcLoginToSimulatorMethod to the more appropriate ↵mingchen1-1/+1
XmlRpcSimulatorLoginMethod *Attempt to fix the "sim not found" issue by adding sim if...well...not found (OGS1)
2007-07-03* Optimized usings (the 'LL ate my scripts' commit)lbsa711-10/+4
* added some licensing info
2007-07-02*OGS1 Key2Name/Name2Key worksmingchen1-1/+1
*OGS1 doesnt crash on startup anymore
2007-07-01Fixed SimpleApp - aka thankgoditssundaycommitlbsa711-1/+1
* Updated SimpleApp with various introduced dependencies * Extracted ScenePrescence creation in Scene * removed try-catchall from UserManagerBase (that actually hid a bug) * Refactored RegionInfo * handle is calculated * it will explode upon accessing x,y,ip,port,externalip if not explicitly initialized * Removed superfluous 'ref' keywords * Removed a shitload of 'catch Exception e' that causes build warnings * Lots of small refactorings, renames et c * Ignored some bins
2007-06-27*Fixed all renaming for OpenGridServices.sln, still a reference issue in ↵mingchen1-6/+6
prebuild.xml though