aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Changed various modules to not initialize timers unless the module is ↵John Hurliman2009-10-231-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
* * Unregister Mono.Addins event handlers in PluginLoader.Dispose() and always ↵John Hurliman2009-10-231-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
* Implemented a Watchdog class. Do not manually create Thread objects anymore, ↵John Hurliman2009-10-221-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
* * Changed the misc. methods calling ThreadPool.UnsafeQueueUserWorkItem() to ↵John Hurliman2009-10-211-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
* * Removed OpenSim.Data.NHibernateJohn Hurliman2009-10-191-1/+1
| | | | * Replaced calls to ThreadPool.QueueUserWorkItem() with ThreadPool.UnsafeQueueUserWorkItem() since OpenSim does not use Code Access Security sandboxing
* Better error handling to diagnose login problems.Diva Canto2009-10-031-0/+1
|
* Fixed interface between the Messaging server and the grid server.Diva Canto2009-10-031-42/+29
|
* Catch and print exceptions in MessagingService, to diagnose mysterious ↵Diva Canto2009-10-011-35/+51
| | | | disappearances of the Messaging server.
* Formatting cleanup.Jeff Ames2009-10-016-11/+11
|
* Fixed bug in HG that was causing secondlife:// refs to bomb the client.Diva Canto2009-09-281-3/+2
| | | | Also fiddled a bit more with the initial CAP in the user server.
* Fixed bug in user server related to region's serverURI.Diva Canto2009-09-281-1/+1
|
* Fixed small bug in having to deal with RegionInfo's ServerURI, which wasn't ↵Diva Canto2009-09-271-0/+1
| | | | being set.
* Fixed the connection from User server to GridServer.Diva Canto2009-09-271-32/+30
|
* re-enable registration of user service authentication method I accidentally ↵Justin Clark-Casey (justincc)2009-09-241-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
* Allow load/save iar password checks to be done in grid modeJustin Clark-Casey (justincc)2009-09-241-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.
* minor: remove double initialization of user appearance module in ↵Justin Clark-Casey (justincc)2009-09-231-4/+0
| | | | Grid.UserServer.Main
* Remove The legacy inventory and asset servers. Bump interface version to 6Melanie2009-09-176-1299/+0
|
* The stubs for an authorization service, at the moment the service will ↵Rob Smart2009-09-101-0/+1
| | | | always grant access to an avatar entering the region if requested.
* * Lock timers when Calling Start() and Stop() when the Thread Context is ↵Teravus Ovares (Dan Olivares)2009-09-091-1/+2
| | | | murky. This affects Mono only.
* A slightly modified version ofTeravus Ovares (Dan Olivares)2009-08-251-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.
* Changed the namespace of old InventoryServiceBase amd AuthedSessionCache.Diva Canto2009-08-222-2/+4
|
* Moved AuthedSessionCache to where it is used -- Grid/InventoryServer.Diva Canto2009-08-222-0/+650
|
* Fix Messaging server so -xmlfile actually worksMelanie2009-08-211-0/+1
|
* Add -xmlfile= option to UGM, to let the files be outside bin if desiredMelanie2009-08-214-3/+11
|
* Remove the AssetInventory server from core. It has fallen behind bothMelanie2009-08-2023-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.
* Fixing a spot I missed in assets. Switching Grid to the new naming schema ↵Kunnis2009-08-191-3/+3
| | | | with Store/Get
* * Switching IAssetData to follow the new naming schema, removing the ↵Kunnis2009-08-192-5/+5
| | | | separate insert and update methods.
* Graft the REST console onto the message server as well. What a dirty hack!Melanie2009-08-191-20/+59
| | | | Works the same as the others.
* Graft the REST console onto the grid server. Same procedure as withMelanie2009-08-193-3/+37
| | | | the user server.
* Add rest console support to the user server. Will ask new questions atMelanie2009-08-191-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
* Last piece of cleaning up old inventory. Old IInventoryServices and ↵Diva Canto2009-08-102-6/+0
| | | | ISecureInventoryService interfaces removed.
* Re-removing 2 lines that got added back on Melanie's commits. git hickup.Diva Canto2009-08-091-2/+0
|
* Rename UserData to UserAccount dataMelanie2009-08-091-0/+2
|
* Removed HGInventory out of core. This is part of HG2, which it now being ↵Diva Canto2009-08-091-2/+0
| | | | developed outside.
* Fixed bug in AvatarCreationModule, where during the cloning of a folder it ↵MW2009-07-121-0/+5
| | | | would report it was unsuccessful if the folder was empty.
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-101-1/+1
| | | | | | Change all uses of the HttpServer properties to use the new singleton
* * Corrected CAPS namespacesArthur Valadares2009-06-182-2/+2
| | | | | * "luke, use the sed"
* InterServiceInventoryService references *almost* completely removed from the ↵diva2009-06-112-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 :)
* Comment out unused variables / private fields to avoid compiler warnings.Jeff Ames2009-06-041-4/+4
|
* Comment out unused private functions to avoid compiler warnings.Jeff Ames2009-06-041-53/+53
|
* Thank you kindly, jonc, for a patch that:Charles Krinke2009-06-021-2/+2
| | | | | | | | Grid mode only. Serialization and deserialization of byte representing Access Level is failing unless byte is ToString'd first on Grid Server.
* Fixed AvatarCreationModule (I think)MW2009-06-011-1/+1
|
* trying to get panda to be able to read the AvatarCreationModule MW2009-06-011-544/+544
|
* part 1 of trying to get panda to be able to read the AvatarCreationModule MW2009-06-011-545/+545
|
* Some changes to the AvatarCreationModule to reduce the number of database ↵MW2009-06-011-69/+86
| | | | reads/writes. Still requires more work in this area.
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-0154-54/+54
| | | | LICENSE.txt.
* Update svn properties.Jeff Ames2009-05-311-528/+528
|
* Added option (on my default) to the clone avatar function so that the ↵MW2009-05-301-122/+141
| | | | | | | clothes and attachments that the target avatar is wearing, to begin with, are removed. So the end result isn't a merger of those clothes/attachments and the ones the template avatar is wearing. Added IPAddress ListenIPAddress property to BaseHttpServer so that the listening/binding IP can be set.
* Made it so ( by default) the Clone avatar function, propagates the ↵MW2009-05-301-21/+28
| | | | permissions on the cloned items. This needs further testing to make sure all permissions are set correctly.
* a few small changes to AvatarCreationModuleMW2009-05-301-14/+17
|