aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix moving folders.Mike Mazur2009-03-052-4/+9
| | | | | | | Casting from base class to inherited class is a no-no, and we must preserve the folder type when moving folders, otherwise it gets set to a Texture folder (type 0).
* Fix creating inventory items and folders.Mike Mazur2009-03-052-6/+9
| | | | | | The order of deserialization needed to be changed. Also corrected a bug that caused no inventory items to be returned on login.
* Implemented all Inventory frontend handlers.Mike Mazur2009-03-053-512/+719
| | | | | | This doesn't mean they all work as expected, though. More changes to come as testing unveils bugs.
* Implementing more inventory storage methods.Mike Mazur2009-03-052-314/+134
|
* Use Inventory{Item,Folder}Base in AssetInventoryServer.Mike Mazur2009-03-056-268/+235
| | | | | Also the first inventory storage methods are implemented.
* A couple cosmetic changes in inventory storage plugin.Mike Mazur2009-03-051-2/+5
|
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-03-013-6/+57
|
* Added GridServerPlugin class (which implements IGridPlugin) to ↵MW2009-02-273-91/+168
| | | | | | | | | OpenSim.Grid.GridServer.Modules. This class handles all the initialising of the grid server. And made GridServer into basically a generic server that just loads plugins. So this is a step towards having a generic server that loads service modules.
* svn attribute fixes so that we can play nice between windows and linuxSean Dague2009-02-268-570/+570
|
* Added a PostInitialise method to IApplicationPlugin, this allows us to do ↵MW2009-02-262-35/+2
| | | | | | | work in there knowing that all other ApplicationPlugins have been initialised by that time. Moved the loadRegions code in LoadRegionsPlugin to the PostInitialise method.
* * Got rid of concrete GridDBService referenceslbsa712009-02-262-4/+5
|
* * renamed IRegionProfileService to IRegionProfileRouter to better reflect ↵lbsa712009-02-262-3/+3
| | | | | | | | | | use (naming is a work in progress...) * introduced new IRegionProfileService that is going to be _one_ profileService * Had GridDBService inherit the IRegionProfileService (preparing for re-wiring things and de-duplicating eventually)
* Renamed IMessageUserServerService to IInterServiceUserService.csMW2009-02-255-229/+229
| | | | | Renamed MessageUserServerModule to InterMessageUserServerModule
* * minor: Remove most mono compiler warningsJustin Clarke Casey2009-02-256-9/+11
|
* Renamed IUGAIMCore to IGridServiceCore, still not really happy with this ↵MW2009-02-2519-68/+69
| | | | name as it could be confused with the Grid Server namespace or with the IGridService in the region servers.
* Added IGridServiceModule to be the base interface for the Service Modules ↵MW2009-02-251-0/+13
| | | | for the Grid, User and Messaging servers.
* More refactoring of the Grid, User and Messaging servers. MW2009-02-2514-215/+394
|
* A few updates necessary for load balancer.Mike Mazur2009-02-251-0/+3
| | | | | | | | | - handle GetUser request for nonexistent user gracefully - include throttle levels in ClientInfo - code to save/restore throttles in client stack - only update/send updates to active clients - make animation classes serializable
* Setting svn:eol-style=native on new files.Mike Mazur2009-02-2427-6122/+6122
|
* More work on modulising the User Server. MW2009-02-243-35/+99
|
* Removed the additions from the last revision for the "ShowHelp" delegate ↵MW2009-02-245-41/+1
| | | | handling, as it seems that system isn't in use anymore.
* More refactoring of the Grid/user/messaging servers.MW2009-02-245-17/+61
|
* Same treatment for the MessagingServer... added ↵MW2009-02-2411-1341/+1342
| | | | OpenSim.Grid.MessagingServer.Modules for the modules/components of it.
* Added OpenSim.Grid.GridServer.Modules, for the GridServer modules/components. MW2009-02-245-1612/+1613
|
* First step in separating out the Userserver console command handling to a ↵MW2009-02-2410-2510/+2562
| | | | | | | "module". Added OpenSim.Grid.UserServer.Modules project/dll which now contains the components of the userserver. With the OpenSim.Grid.UserServer being the setup and initiate exe.
* Deleted the files from Messagingserver that are now in OpenSim.Grid.FrameworkMW2009-02-244-228/+0
|
* Updated MessagingServer to use OpenSim.Grid.FrameworkMW2009-02-248-5/+12
|
* Some cleaning up in the MesssagingServer and GridServer.MW2009-02-246-165/+113
|
* Added OpenSim.Grid.Framework project.MW2009-02-2410-2/+164
| | | | | Changed the Gridserver so it uses/references OpenSim.Grid.Framework
* More refactoring of the UserServer.MW2009-02-247-229/+529
|
* Renamed IGridMessagingModule to IGridMessagingMapper.MW2009-02-233-54/+75
| | | | | Plus some general cleanup of the GridMessagingModule.
* more refactoring of the Grid server, to separate them into modulesMW2009-02-232-5/+14
|
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-02-237-574/+655
|
* Load default assets when AssetInventory starts.Mike Mazur2009-02-232-0/+15
|
* Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-224-5/+9
| | | | | | | | | * Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
* First step in giving the messaging server the modular refactoring treatment. ↵MW2009-02-228-289/+643
| | | | As with the other two servers, this is very much a work in progress.
* Part 1 of refactoring the userserver. Changed it so instead of subclassing ↵MW2009-02-223-46/+107
| | | | the User dataBase access class (UserManagerBase) and then adding the http handlers to that. There is now a UserDataBaseService that is passed to the other classes so they can access the db. This should make it easier to have multiple "modules" that can register http handlers and access the db.
* Addresses some issues with appearance after TPs. Appearance.Owner was not ↵diva2009-02-221-1/+1
| | | | being set, and that's what's being used in SendAppearanceToOtherAgent. Mantis #3204.
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-02-226-1605/+1659
|
* More Grid server refactoringMW2009-02-216-23/+61
|
* A small improvement in the UserLoginService, hence the User Server: users ↵diva2009-02-211-2/+5
| | | | are now being given a default appearance if there is none in the user database. This issue affected newly created accounts, which aren't given an appearance at time of creation. May address some of the issues reported in mantis #3204 (but the incompatibility with pre-8447 is unaffected and continues to exist).
* Some more refactoring of GridServer.MW2009-02-212-23/+23
|
* Added missing header to a file (before chi11ken does it)MW2009-02-212-2/+29
|
* Added a check to GridServerBase.RegisterInterface<T>(T iface), so that it ↵MW2009-02-211-1/+4
| | | | can't try to add duplicate interfaces and cause a exception.
* A bit more refactoring of the GridServer. To make the "modules" share a ↵MW2009-02-214-19/+22
| | | | common Initialise method.
* Refactored the GridServer into a GridDBService and a set of "modules". MW2009-02-217-1323/+1621
| | | | | Currently they aren't plugin modules as the support for dynamically loading them isn't complete.
* * Upped VersionInfo to 0.6.3 and in the process, changed assemblyinfo to ↵lbsa712009-02-205-15/+15
| | | | 0.6.3.* to better track down dll ref and overwrite problems.
* * Another stab at removing AssetServer.exe dependencieslbsa712009-02-201-156/+0
|
* * Reverted the AssetServer fix, apparently something was dependent on ↵lbsa712009-02-191-0/+156
| | | | IAssetDataPlugin being in OpenSim.Data
* * Moved the AssetStreamHandlers to OpenSim.Framework.Serverslbsa712009-02-192-138/+0
| | | | | | | | * And there, all refs to OpenSim.Grid.AssetServer.exe gone. /me takes a bow.