aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Move most bookending startup/shutdown messages to BaseOpenSimServer so ↵Justin Clarke Casey2008-06-011-15/+0
| | | | they appear in non-console servers too
* * Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey2008-06-015-7/+14
| | | | | | | | must remember to nant clean * Hook all server startups into base opensim server startup method
* * Propogate OpenSimMain hack to stop mono-addins scanning warnings to the ↵Justin Clarke Casey2008-05-311-0/+7
| | | | | | | | grid managing * This hack just temporarily sends console output to /dev/null when we make the relevant addins calls, restoring it afterwards
* * Implements UserServer logoff in a few situationsTeravus Ovares2008-05-313-0/+170
| | | | | | | * User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
* let Grid Servers specify a connect string in their configuration.Sean Dague2008-05-282-4/+4
|
* spring cleaning, remove a bit of db4o grid serverSean Dague2008-05-282-229/+0
| | | | | | code that was still in tree.
* Formatting cleanup.Jeff Ames2008-05-281-4/+4
|
* updating URL for LSL status.Dr Scofield2008-05-271-1/+1
|
* I'm dropping the ISimChat interface as that has now been Dr Scofield2008-05-271-1/+0
| | | | | | | | | | | | | | replaced by EventManager events. also, i've added instructions to README.txt about running runprebuild.sh and on how to report bugs. plus some minor fixes (dropping m_log statement left over from debugging llOwnerSay, nicer catch of exception in IRCBridgeModule
* This cleans up a merge mess from the earlier checkin and implements ↵Dr Scofield2008-05-263-14/+19
| | | | | | | | llOwnerSay() via the newly created Scene.SimBroadcast() call.
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-255-12/+17
|
* * Fix circular dependency from last checkin by passing version as a ↵Justin Clarke Casey2008-05-221-1/+1
| | | | | | | | parameter to Scene rather than referencing VersionInfo directly * Butt ugly solution
* i'm extending the RestStreamHandler.Handler(...) signature to actually Dr Scofield2008-05-202-7/+23
| | | | | | | | | | | provide OSHttpRequest and OSHttpResponse to our REST handler. also, this adds proper RestPlugin.IsGod() checking against the X-OpenSim-Godkey HTTP request header. last, i added XML doc comments to RestPlugin.cs
* i can haz pantz?Sean Dague2008-05-191-1/+7
| | | | | | | | | | | | | | You sure can. This change set restores pants (and the rest of the default appearance) in grid mode. The root issue had to do with serializing multi-faced textures to the grid server. This also restores the lookup path through the avatar factory module, as that seems the reasonable place to have it live. Some clean up patches are coming later as well, plus testing on standalone, but this should be in a good kicking around state for grid users.
* adding OSHttpRequest and OSHttpResponse which wrap HttpListenerRequest and ↵Dr Scofield2008-05-192-4/+10
| | | | | | | | | HttpListenerResponse respectively. enhancing IStreamHandler and IStreamedHandler interfaces so that OSHttp{Request,Response} get passed in, allowing RestHandlers to set response status code, redirections, etc.
* Formatting cleanup.Jeff Ames2008-05-171-2/+2
|
* in theory implement the backend of appearance for grid.Sean Dague2008-05-162-0/+46
| | | | | | testers encouraged so I can track down issues.
* * Minor: For no particularly good reason, make all console prompts conform ↵Justin Clarke Casey2008-05-166-6/+6
| | | | to the same prompt scheme
* Minor cleanup.Jeff Ames2008-05-161-1/+1
|
* Formatting cleanup.Jeff Ames2008-05-1629-231/+231
|
* * Refactored IConfigSource into Physics plug-ins and Scene. We can get rid ↵Teravus Ovares2008-05-141-2/+4
| | | | | | | of some of the parameters we pass to it's constructor now like, 'm_allowPhysicalPrim', 'seeIntoOtherRegions', etc.. so on * The main purpose of this is to provide configuration options for ODE and other physics plug-ins that are advanced enough to be able to be configured.
* * Refactor additional stats collection common code into base opensim serverJustin Clarke Casey2008-05-142-18/+4
| | | | | | * If extra stats not sent to the viewer are available on an opensim server, they are now uniformly accessible using the 'show stats' command
* More formatting cleanup. Minor refactoring.Jeff Ames2008-05-144-10/+20
|
* More formatting cleanup.Jeff Ames2008-05-149-100/+76
|
* Formatting cleanup.Jeff Ames2008-05-1410-42/+43
|
* * Remove old historical grid inventory codeJustin Clarke Casey2008-05-132-212/+1
|
* * As part of the region registration process, the grid service now requests ↵Justin Clarke Casey2008-05-132-11/+57
| | | | | | | | | | | | the status of the region using the region http uri just passed in * If the status cannot be retrieved, then the region startup will terminate. * The aim of this is for earlier detection of situations where the region can send messages out but cannot accept incoming requests (often due to firewall issues) * This is currently an extremely simplistic check which completely trusts whatever http uri is given by the region * This contact may be problematic, though since the user service needs to be able to contact the region http uri, it doesn't seem unreasonable for the grid to have to be able to do so too at this stage * This change will require a prebuild
* * Refactor: Creating grid login exceptions to try and break up a large method. Justin Clarke Casey2008-05-121-71/+109
| | | | | | | * This in preparation for further login validation to check that the region logging in is properly contactable. * Also increase verbosity of some error messages
* * Minor: Make some direct grid server console output into logged messages ↵Justin Clarke Casey2008-05-121-7/+10
| | | | instead
* * If a region running in grid mode fails to login to the grid service, ↵Justin Clarke Casey2008-05-121-1/+1
| | | | startup will now terminate instead of carrying on (and thus burying the error message)
* * Minor: Change 'delete region' message to region logout messageJustin Clarke Casey2008-05-121-1/+2
|
* * Minor: Commenting out message detailing all individual map information ↵Justin Clarke Casey2008-05-121-2/+1
| | | | dispatch for now
* * Minor: Initial cleaning up of some of the grid sim login messagesJustin Clarke Casey2008-05-121-22/+25
|
* * Removing polling delay for non-CAPS inventory fetch if the client has not ↵Justin Clarke Casey2008-05-091-1/+4
| | | | | | | | yet received data from the inventory service * Replaced instead with the system now used by other requests where the fetch request is placed on a queue and service when the data comes in
* * Fix opensim region server shutdown.Justin Clarke Casey2008-05-093-3/+3
|
* * Reduced sleep durations in a number of files.Adam Frisby2008-05-081-6/+1
|
* * Some refactorings.Adam Frisby2008-05-081-1/+1
| | | | | * Added shell of new Python scripting engine. Similar in design to the one used by Rex, but will be structured at a region rather than object level, also is a region module.
* * Move shutdown processing to base OpenSimServer, overriding the method ↵Justin Clarke Casey2008-05-076-55/+18
| | | | | | | | where appropriate * This also means that the command quit (as well as shutdown) will now close down grid servers (instead of only being in place for the region server)
* * Refactor: Break out permissions code into a separate region PermissionsModuleJustin Clarke Casey2008-05-051-2/+2
|
* * Add ability to defer item actions for AddItem() and DeleteItem(). This ↵Justin Clarke Casey2008-05-031-1/+1
| | | | won't be useful until we let the client cache (again?)
* * Refactor RemoveItem()Justin Clarke Casey2008-05-031-1/+1
|
* * Refactor: move UpdateFolder into CachedUserInfoJustin Clarke Casey2008-05-031-1/+1
|
* * Refactor: Move bulk of CreateFolder from UserProfileCacheService into ↵Justin Clarke Casey2008-05-031-58/+8
| | | | | | | | CachedUserInfo * Remove unused/superseded methods from GridInventoryService
* plumb in connection string to the user database paths. mysql and mssqlSean Dague2008-05-021-1/+1
| | | | | | | just ignore this for now, but it lets us get connect strings to sqlite and nhibernate.
* * Refactor: Remove the unused userID parameter that was being passed into ↵Justin Clarke Casey2008-05-012-88/+6
| | | | | | | | almost every inventory method * This allows lots of redundant inventory methods with only slightly different names to be eliminated.
* * Rolled back a few changes.Adam Frisby2008-05-0134-674/+648
|
* * Cleaning code still.Adam Frisby2008-05-0134-648/+674
|
* * Breaking all the code, breaking all the code..!Adam Frisby2008-05-014-18/+7
| | | | | * Made a bunch more members static, removed some dead code, general cleaning.
* * Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby2008-05-015-10/+9
| | | | with namespaces.
* * Assorted spring cleanings.Adam Frisby2008-05-012-2/+1
|