aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-02-12Apply last two patches from http://opensimulator.org/mantis/view.php?id=3522Justin Clark-Casey (justincc)1-12/+12
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.
2010-01-10All grid servers deleted, including user server. They served us well.Diva Canto57-9761/+0
2010-01-10CommunicationsManager is practically empty. Only NetworkServersInfo is there.Diva Canto1-1/+0
2010-01-10Moved GridInfo service from where it was to Handlers/GridDiva Canto2-86/+0
2010-01-10Removed refs to OpenIdService in UserServer.Diva Canto1-8/+0
2010-01-10Moved OpenId authentication from user server to Server.Handlers.Authentication.Diva Canto1-338/+0
2010-01-10* Starting to clean the house...Diva Canto2-232/+0
* Fixed circular dependency
2009-12-30First pass at the new login service. Still incomplete, but doesn't disrupt ↵Diva Canto1-0/+1
the existing code.
2009-12-03if an xml rpc method throws an exception, log as an error to the console as ↵Justin Clark-Casey (justincc)1-0/+1
well as returning the exception to the caller
2009-11-11minor: remove some mono compiler warningsJustin Clark-Casey (justincc)1-1/+1
2009-11-10Stop OpenSim.Grid.GridServer.exe from building to reduce user/developer ↵Justin Clark-Casey (justincc)1-65/+0
confusion, since only the ROBUST grid service now works GridServer dll still building for now due to unresolved dependencies with the remaining OpenSim.Grid.UserServer.exe
2009-10-23* Changed various modules to not initialize timers unless the module is ↵John Hurliman1-1/+0
initialized. Ideally, the timers would not initialize unless the module was actually enabled, but Melanie's work on configuring module loading from a config file should make that unnecessary * Wrapped the Bitmap class used to generate the world map tile in a using statement to dispose of it after the JPEG2000 data is created
2009-10-23* Unregister Mono.Addins event handlers in PluginLoader.Dispose() and always ↵John Hurliman1-5/+5
handle PluginLoader with the using pattern. This freed up 121,634,796 bytes on my system * Avoid allocating an Action<IClientAPI> object every round of the OutgoingPacketHandler * Removed unnecessary semi-colon endings from OpenSim.ini.example [InterestManagement] section
2009-10-22Implemented a Watchdog class. Do not manually create Thread objects anymore, ↵John Hurliman1-4/+4
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
2009-10-21* Changed the misc. methods calling ThreadPool.UnsafeQueueUserWorkItem() to ↵John Hurliman1-2/+1
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
2009-10-19* Removed OpenSim.Data.NHibernateJohn Hurliman1-1/+1
* Replaced calls to ThreadPool.QueueUserWorkItem() with ThreadPool.UnsafeQueueUserWorkItem() since OpenSim does not use Code Access Security sandboxing
2009-10-03Better error handling to diagnose login problems.Diva Canto1-0/+1
2009-10-03Fixed interface between the Messaging server and the grid server.Diva Canto1-42/+29
2009-10-01Catch and print exceptions in MessagingService, to diagnose mysterious ↵Diva Canto1-35/+51
disappearances of the Messaging server.
2009-10-01Formatting cleanup.Jeff Ames6-11/+11
2009-09-28Fixed bug in HG that was causing secondlife:// refs to bomb the client.Diva Canto1-3/+2
Also fiddled a bit more with the initial CAP in the user server.
2009-09-28Fixed bug in user server related to region's serverURI.Diva Canto1-1/+1
2009-09-27Fixed small bug in having to deal with RegionInfo's ServerURI, which wasn't ↵Diva Canto1-0/+1
being set.
2009-09-27Fixed the connection from User server to GridServer.Diva Canto1-32/+30
2009-09-24re-enable registration of user service authentication method I accidentally ↵Justin Clark-Casey (justincc)1-1/+1
disabled a few commits ago load/save iar on a grid should now work, provided that the user service is this revision or newer
2009-09-24Allow load/save iar password checks to be done in grid modeJustin Clark-Casey (justincc)1-1/+55
This should allow load/save iar to work for grid mode as long as the grid user service is later than this revision Grid services of earlier revisions will always erroneously report incorrect password. This will be addressed shortly.
2009-09-23minor: remove double initialization of user appearance module in ↵Justin Clark-Casey (justincc)1-4/+0
Grid.UserServer.Main
2009-09-17Remove The legacy inventory and asset servers. Bump interface version to 6Melanie6-1299/+0
2009-09-10The stubs for an authorization service, at the moment the service will ↵Rob Smart1-0/+1
always grant access to an avatar entering the region if requested.
2009-09-09* Lock timers when Calling Start() and Stop() when the Thread Context is ↵Teravus Ovares (Dan Olivares)1-1/+2
murky. This affects Mono only.
2009-08-25A slightly modified version ofTeravus Ovares (Dan Olivares)1-1/+6
http://opensimulator.org/mantis/view.php?id=4040 by jhurliman. The patch didn't match up, so I winged it here. My effort to manually merge the patch seems to make sense, so I'm going to commit it.
2009-08-22Changed the namespace of old InventoryServiceBase amd AuthedSessionCache.Diva Canto2-2/+4
2009-08-22Moved AuthedSessionCache to where it is used -- Grid/InventoryServer.Diva Canto2-0/+650
2009-08-21Fix Messaging server so -xmlfile actually worksMelanie1-0/+1
2009-08-21Add -xmlfile= option to UGM, to let the files be outside bin if desiredMelanie4-3/+11
2009-08-20Remove the AssetInventory server from core. It has fallen behind bothMelanie23-5707/+0
upstream and the reference implementation to the point where it is no longer usable. It has no known users, and sinnce it doesn't work anymore, it is safe to assume that no one has used it in a long time.
2009-08-19Fixing a spot I missed in assets. Switching Grid to the new naming schema ↵Kunnis1-3/+3
with Store/Get
2009-08-19* Switching IAssetData to follow the new naming schema, removing the ↵Kunnis2-5/+5
separate insert and update methods.
2009-08-19Graft the REST console onto the message server as well. What a dirty hack!Melanie1-20/+59
Works the same as the others.
2009-08-19Graft the REST console onto the grid server. Same procedure as withMelanie3-3/+37
the user server.
2009-08-19Add rest console support to the user server. Will ask new questions atMelanie1-1/+38
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
2009-08-10Last piece of cleaning up old inventory. Old IInventoryServices and ↵Diva Canto2-6/+0
ISecureInventoryService interfaces removed.
2009-08-09Re-removing 2 lines that got added back on Melanie's commits. git hickup.Diva Canto1-2/+0
2009-08-09Rename UserData to UserAccount dataMelanie1-0/+2
2009-08-09Removed HGInventory out of core. This is part of HG2, which it now being ↵Diva Canto1-2/+0
developed outside.
2009-07-12Fixed bug in AvatarCreationModule, where during the cloning of a folder it ↵MW1-0/+5
would report it was unsuccessful if the folder was empty.
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker1-1/+1
Change all uses of the HttpServer properties to use the new singleton
2009-06-18* Corrected CAPS namespacesArthur Valadares2-2/+2
* "luke, use the sed"
2009-06-11InterServiceInventoryService references *almost* completely removed from the ↵diva2-2/+2
simulator. Only a couple left, not important. Also updated the login tests -- Justin, this time I was able to fix this by myself :)
2009-06-04Comment out unused variables / private fields to avoid compiler warnings.Jeff Ames1-4/+4