From f43a64805251dfbb2e24abc481b8b59c062d452e Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 28 Dec 2009 09:22:35 -0800 Subject: * Added the new modules to Resources, making them active. * Added their configs to standalone for testing. This crashes, because the DB is still not ready. --- bin/config-include/Standalone.ini | 3 +++ bin/config-include/StandaloneHypergrid.ini | 4 ++++ 2 files changed, 7 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index cdfdf4b..c4cffb9 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -13,6 +13,7 @@ NeighbourServices = "LocalNeighbourServicesConnector" AuthorizationServices = "LocalAuthorizationServicesConnector" GridServices = "LocalGridServicesConnector" + PresenceServices ="LocalPresenceServicesConnector" LibraryModule = true [AssetService] @@ -28,3 +29,5 @@ LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" Realm = "regions" +[PresenceService] + LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 909286c..bd9de33 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -16,6 +16,7 @@ NeighbourServices = "RemoteNeighbourServicesConnector" AuthorizationServices = "LocalAuthorizationServicesConnector" GridServices = "HGGridServicesConnector" + PresenceServices ="LocalPresenceServicesConnector" InventoryServiceInConnector = true AssetServiceInConnector = true HGAuthServiceInConnector = true @@ -52,3 +53,6 @@ ; LocalGridServicesConnector needs this LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" Realm = "regions" + +[PresenceService] + LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" -- cgit v1.1 From 88d2df597e499600357c86ad0b1a755a13e9c6b1 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Tue, 29 Dec 2009 16:34:02 -0800 Subject: * Fixed names. * Added configs for Standalone * Changed UserSericeBase to use useraccounts instead of user --- bin/config-include/Standalone.ini | 6 +++++- bin/config-include/StandaloneHypergrid.ini | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index c4cffb9..3eb68a0 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -13,7 +13,8 @@ NeighbourServices = "LocalNeighbourServicesConnector" AuthorizationServices = "LocalAuthorizationServicesConnector" GridServices = "LocalGridServicesConnector" - PresenceServices ="LocalPresenceServicesConnector" + PresenceServices = "LocalPresenceServicesConnector" + UserAccountServices = "LocalUserAccountServicesConnector" LibraryModule = true [AssetService] @@ -31,3 +32,6 @@ [PresenceService] LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" + +[UserAccountService] + LocalServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index bd9de33..4efc301 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -16,7 +16,8 @@ NeighbourServices = "RemoteNeighbourServicesConnector" AuthorizationServices = "LocalAuthorizationServicesConnector" GridServices = "HGGridServicesConnector" - PresenceServices ="LocalPresenceServicesConnector" + PresenceServices = "LocalPresenceServicesConnector" + UserAccountServices = "LocalUserAccountServicesConnector" InventoryServiceInConnector = true AssetServiceInConnector = true HGAuthServiceInConnector = true @@ -56,3 +57,6 @@ [PresenceService] LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" + +[UserAccountService] + LocalServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" -- cgit v1.1 From be2f0336269e36fd987392209c8d5bf382a043f5 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Tue, 29 Dec 2009 17:21:16 -0800 Subject: More renames to make everything consistent. This is the UserAccountService. --- bin/config-include/Standalone.ini | 2 +- bin/config-include/StandaloneHypergrid.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index 3eb68a0..e881e30 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -34,4 +34,4 @@ LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" [UserAccountService] - LocalServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" + LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 4efc301..c3ed754 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -59,4 +59,4 @@ LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" [UserAccountService] - LocalServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" + LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" -- cgit v1.1 From b29ae7246076126e8e39827564438db6e53eac8a Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Wed, 30 Dec 2009 21:00:16 -0800 Subject: First pass at the new login service. Still incomplete, but doesn't disrupt the existing code. --- bin/config-include/StandaloneHypergrid.ini | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index c3ed754..7b1d43d 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -60,3 +60,11 @@ [UserAccountService] LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" + +[LoginService] + LocalServiceModule = "OpenSim.Services.LLoginService.dll:LLLoginService" + UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" + AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" + InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" + PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" + -- cgit v1.1 From 1387919c204eb66ab6a37eb0fdf0f3c38f0a6813 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Thu, 31 Dec 2009 20:51:35 -0800 Subject: Yes! First test of new login service done still in 2009! Bombs in auth, because the data migration is missing. Will fix it next year... * HAPPY NEW YEAR! --- bin/config-include/StandaloneHypergrid.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 7b1d43d..ac514ba 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -24,6 +24,7 @@ HypergridServiceInConnector = true NeighbourServiceInConnector = true LibraryModule = true + LLLoginServiceInConnector = true [AssetService] ; For the AssetServiceInConnector @@ -62,7 +63,7 @@ LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" [LoginService] - LocalServiceModule = "OpenSim.Services.LLoginService.dll:LLLoginService" + LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" -- cgit v1.1 From 4240f2dec6f7348a99aea0d1b040fca6ea9d493b Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Fri, 1 Jan 2010 16:54:24 -0800 Subject: New LL login service is working! -- tested in standalone only. Things still missing from response, namely Library and Friends. Appearance service is also missing. --- bin/config-include/StandaloneHypergrid.ini | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index ac514ba..6a9c3bf 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -14,6 +14,7 @@ AssetServices = "HGAssetBroker" InventoryServices = "HGInventoryBroker" NeighbourServices = "RemoteNeighbourServicesConnector" + AuthenticationServices = "LocalAuthenticationServicesConnector" AuthorizationServices = "LocalAuthorizationServicesConnector" GridServices = "HGGridServicesConnector" PresenceServices = "LocalPresenceServicesConnector" @@ -46,8 +47,7 @@ LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" [AuthenticationService] - ; For the HGAuthServiceInConnector - LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:HGAuthenticationService" + LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" [GridService] ; for the HGGridServicesConnector to instantiate @@ -68,4 +68,5 @@ AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" + GridService = "OpenSim.Services.GridService.dll:GridService" -- cgit v1.1 From ec53301e637b479edc00526d3d946814f63a02d1 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Fri, 1 Jan 2010 18:59:54 -0800 Subject: Forgotten modules in prior commit. --- bin/config-include/StandaloneHypergrid.ini | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 6a9c3bf..96c25e6 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -70,3 +70,6 @@ PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" GridService = "OpenSim.Services.GridService.dll:GridService" + DefaultRegion = "OpenSim Test" + WelcomeMessage = "Welcome, Avatar!" + -- cgit v1.1 From 8a9677a5319793ff630d0761e204ae8961f375aa Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Fri, 1 Jan 2010 21:12:46 -0800 Subject: The Library Service is now working. UserProfileCacheService.LibraryRoot is obsolete. Didn't delete it yet to avoid merge conflicts later -- want to stay out of core as much as possible. --- bin/config-include/StandaloneHypergrid.ini | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 96c25e6..d89029f 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -43,6 +43,11 @@ LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" +[LibraryService] + LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" + LibraryName = "OpenSim Library" + DefaultLibrary = "./inventory/Libraries.xml" + [AuthorizationService] LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" -- cgit v1.1 From c268e342d19b6cc5969b1c1d94f20a3f4eb844ef Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 3 Jan 2010 09:35:12 -0800 Subject: * Changed ISimulation interface to take a GridRegion as input arg instead of a regionHandle. * Added the RemoteSimulationConnectorModule, which is the replacement for RESTComms. Scenes is not using this yet, only (standalone) Login uses these region modules for now. * Completed SimulationServiceConnector and corresponding handlers. --- bin/config-include/StandaloneHypergrid.ini | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index d89029f..5e54cde 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -19,6 +19,7 @@ GridServices = "HGGridServicesConnector" PresenceServices = "LocalPresenceServicesConnector" UserAccountServices = "LocalUserAccountServicesConnector" + SimulationServices = "RemoteSimulationConnectorModule" InventoryServiceInConnector = true AssetServiceInConnector = true HGAuthServiceInConnector = true -- cgit v1.1 From 99efa99585639c94fdb484681663ac7b6f03538e Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 3 Jan 2010 11:44:57 -0800 Subject: Successfully logged into a grid. --- bin/config-include/GridCommon.ini.example | 18 ++++++++++++++++++ bin/config-include/GridHypergrid.ini | 19 ++++++++++++++----- 2 files changed, 32 insertions(+), 5 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example index 6da0f1e..6a65523 100644 --- a/bin/config-include/GridCommon.ini.example +++ b/bin/config-include/GridCommon.ini.example @@ -21,6 +21,24 @@ ; GridServerURI = "http://mygridserver.com:8003" +[PresenceService] + ; + ; change this to your grid-wide presence server + ; + PresenceServerURI = "http://mygridserver.com:8003" + +[UserAccountService] + ; + ; change this to your grid-wide user accounts server + ; + UserAccountServerURI = "http://mygridserver.com:8003" + +[AuthenticationService] + ; + ; change this to your grid-wide authentication server + ; + AuthenticationServerURI = "http://mygridserver.com:8003" + [Modules] ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists. ;; Copy the config .example file into your own .ini file and change configs there diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index a5fe6e9..94b9f69 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -13,12 +13,21 @@ [Modules] AssetServices = "HGAssetBroker" InventoryServices = "HGInventoryBroker" - NeighbourServices = "RemoteNeighbourServicesConnector" GridServices = "HGGridServicesConnector" - NeighbourServiceInConnector = true + NeighbourServices = "RemoteNeighbourServicesConnector" + AuthenticationServices = "RemoteAuthenticationServicesConnector" + AuthorizationServices = "LocalAuthorizationServicesConnector" + PresenceServices = "RemotePresenceServicesConnector" + UserAccountServices = "RemoteUserAccountServicesConnector" + SimulationServices = "RemoteSimulationConnectorModule" LandServiceInConnector = true + NeighbourServiceInConnector = true HypergridServiceInConnector = true - LLProxyLoginModule = true + SimulationServiceInConnector = true + InventoryServiceInConnector = false + AssetServiceInConnector = false + LibraryModule = false + LLLoginServiceInConnector = false [AssetService] LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector" @@ -30,8 +39,8 @@ [GridService] ; for the HGGridServicesConnector to instantiate - GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:RemoteGridServicesConnector" + GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:RemoteGridServicesConnector" ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector, ; which in turn uses this - LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" + LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" -- cgit v1.1 From add8d5df4cbcb3301860fdabc3691232bbe598be Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 3 Jan 2010 20:06:06 -0800 Subject: Config for non-HG grided sims. --- bin/config-include/Grid.ini | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index 5b19130..0cc7f92 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -10,15 +10,18 @@ [Modules] AssetServices = "RemoteAssetServicesConnector" InventoryServices = "RemoteInventoryServicesConnector" - AuthorizationServices = "RemoteAuthorizationServicesConnector" - NeighbourServices = "RemoteNeighbourServicesConnector" GridServices = "RemoteGridServicesConnector" - NeighbourServiceInConnector = true + NeighbourServices = "RemoteNeighbourServicesConnector" + AuthorizationServices = "RemoteAuthorizationServicesConnector" + PresenceServices = "RemotePresenceServicesConnector" + UserAccountServices = "RemoteUserAccountServicesConnector" + SimulationServices = "RemoteSimulationConnectorModule" LandServiceInConnector = true - LLProxyLoginModule = true + NeighbourServiceInConnector = true + SimulationServiceInConnector = true [GridService] - LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" - ; for the LocalGridServicesConnector which is used by the Remote one + LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" + ; for the LocalGridServicesConnector which is used by the Remote one StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" \ No newline at end of file -- cgit v1.1 From 1ac36bb5d9e6e67c2b157264aeeb397b9a1b55fd Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 4 Jan 2010 07:45:20 -0800 Subject: Forgot to add these to the grid configs, so that logins work. --- bin/config-include/Grid.ini | 5 ++++- bin/config-include/GridHypergrid.ini | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index 0cc7f92..ef8008c 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -24,4 +24,7 @@ LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" ; for the LocalGridServicesConnector which is used by the Remote one StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" - \ No newline at end of file + +; Temporary... +[Communications] + InterregionComms = "LocalComms" \ No newline at end of file diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 94b9f69..512e88f 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -44,3 +44,7 @@ ; which in turn uses this LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" + +; Temporary... +[Communications] + InterregionComms = "LocalComms" \ No newline at end of file -- cgit v1.1 From 96ecdcf9c5ba35e589a599ad37cc6ce1a83f46f1 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sat, 9 Jan 2010 18:04:50 -0800 Subject: * Added SetPassword to IAuthenticationService. * Added create user command to UserAccountService. Works. * Deleted create user command from OpenSim. --- bin/config-include/StandaloneHypergrid.ini | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 5e54cde..feca115 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -67,7 +67,11 @@ [UserAccountService] LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" - + ;; These are for creating new accounts + AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" + PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" + GridService = "OpenSim.Services.GridService.dll:GridService" + [LoginService] LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" -- cgit v1.1 From 6998668bbcf6479f0ea0728024f24666c8cb0f8a Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 10 Jan 2010 14:12:03 -0800 Subject: * Last reference to CommsManager.UserProfileCacheService removed * Grided-sims added the Library module --- bin/config-include/Grid.ini | 2 ++ bin/config-include/GridHypergrid.ini | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index ef8008c..ebddfd5 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -19,6 +19,8 @@ LandServiceInConnector = true NeighbourServiceInConnector = true SimulationServiceInConnector = true + LibraryModule = true + [GridService] LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 512e88f..5dadace 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -24,9 +24,9 @@ NeighbourServiceInConnector = true HypergridServiceInConnector = true SimulationServiceInConnector = true + LibraryModule = true InventoryServiceInConnector = false AssetServiceInConnector = false - LibraryModule = false LLLoginServiceInConnector = false [AssetService] -- cgit v1.1 From 4dd523b45d1e635c66eb4e556764fabe29dbfc58 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 10 Jan 2010 15:34:56 -0800 Subject: * Changed IPresenceService Logout, so that it takes a position and a lookat * CommsManager.AvatarService rerouted --- bin/config-include/Standalone.ini | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index e881e30..bf3237b 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -15,7 +15,9 @@ GridServices = "LocalGridServicesConnector" PresenceServices = "LocalPresenceServicesConnector" UserAccountServices = "LocalUserAccountServicesConnector" + SimulationServices = "LocalSimulationConnectorModule" LibraryModule = true + LLLoginServiceInConnector = true [AssetService] LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" @@ -23,6 +25,11 @@ [InventoryService] LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" +[LibraryService] + LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" + LibraryName = "OpenSim Library" + DefaultLibrary = "./inventory/Libraries.xml" + [AuthorizationService] LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" @@ -35,3 +42,18 @@ [UserAccountService] LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" + ;; These are for creating new accounts + AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" + PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" + GridService = "OpenSim.Services.GridService.dll:GridService" + +[LoginService] + LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" + UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" + AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" + InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" + PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" + GridService = "OpenSim.Services.GridService.dll:GridService" + + DefaultRegion = "OpenSim Test" + WelcomeMessage = "Welcome, Avatar!" -- cgit v1.1 From 77e43f480154b0a950d9d5f54df5c225fc64e77a Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 11 Jan 2010 17:30:05 -0800 Subject: Fixed a couple of bugs with Appearance. Appearance is all good now. --- bin/config-include/StandaloneHypergrid.ini | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index feca115..277d05a 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -20,6 +20,7 @@ PresenceServices = "LocalPresenceServicesConnector" UserAccountServices = "LocalUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" + AvatarServices = "LocalAvatarServicesConnector"; InventoryServiceInConnector = true AssetServiceInConnector = true HGAuthServiceInConnector = true @@ -44,6 +45,10 @@ LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" +[AvatarService] + ; For the InventoryServiceInConnector + LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" + [LibraryService] LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" LibraryName = "OpenSim Library" @@ -79,6 +84,7 @@ InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" GridService = "OpenSim.Services.GridService.dll:GridService" + AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" DefaultRegion = "OpenSim Test" WelcomeMessage = "Welcome, Avatar!" -- cgit v1.1 From 66920a9047b54db947d02f252e17409b7fc32ef0 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Tue, 12 Jan 2010 09:22:58 -0800 Subject: Fixed more appearance woes that showed up using remote connectors. Appearance is now being passed with AgentCircuitData, as it should be. --- bin/config-include/GridHypergrid.ini | 4 ---- 1 file changed, 4 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 5dadace..a64fa37 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -44,7 +44,3 @@ ; which in turn uses this LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" - -; Temporary... -[Communications] - InterregionComms = "LocalComms" \ No newline at end of file -- cgit v1.1 From fa272e752189655b039a027d12fcc21b9d177bcb Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Wed, 13 Jan 2010 09:44:20 -0800 Subject: Updated configs. --- bin/config-include/Grid.ini | 8 +++++--- bin/config-include/GridCommon.ini.example | 6 ++++++ bin/config-include/GridHypergrid.ini | 5 +++++ 3 files changed, 16 insertions(+), 3 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index ebddfd5..6bf493b 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -12,6 +12,7 @@ InventoryServices = "RemoteInventoryServicesConnector" GridServices = "RemoteGridServicesConnector" NeighbourServices = "RemoteNeighbourServicesConnector" + AuthenticationServices = "RemoteAuthenticationServicesConnector" AuthorizationServices = "RemoteAuthorizationServicesConnector" PresenceServices = "RemotePresenceServicesConnector" UserAccountServices = "RemoteUserAccountServicesConnector" @@ -27,6 +28,7 @@ ; for the LocalGridServicesConnector which is used by the Remote one StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" -; Temporary... -[Communications] - InterregionComms = "LocalComms" \ No newline at end of file +[LibraryService] + LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" + LibraryName = "OpenSim Library" + DefaultLibrary = "./inventory/Libraries.xml" diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example index 6a65523..4d94ccd 100644 --- a/bin/config-include/GridCommon.ini.example +++ b/bin/config-include/GridCommon.ini.example @@ -21,6 +21,12 @@ ; GridServerURI = "http://mygridserver.com:8003" +[AvatarService] + ; + ; change this to your grid-wide grid server + ; + AvatarServerURI = "http://mygridserver.com:8003" + [PresenceService] ; ; change this to your grid-wide presence server diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index a64fa37..1a68362 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -44,3 +44,8 @@ ; which in turn uses this LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" + +[LibraryService] + LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" + LibraryName = "OpenSim Library" + DefaultLibrary = "./inventory/Libraries.xml" -- cgit v1.1 From d939668d6a54bb25cbc56ec840058c08992fe536 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Wed, 13 Jan 2010 10:15:14 -0800 Subject: Bug fix in create user: create inventory was missing. --- bin/config-include/StandaloneHypergrid.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 277d05a..a3e0547 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -72,10 +72,11 @@ [UserAccountService] LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" - ;; These are for creating new accounts + ;; These are for creating new accounts by the service AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" GridService = "OpenSim.Services.GridService.dll:GridService" + InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" [LoginService] LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" -- cgit v1.1 From 14ab9b04c4883f75ccae0225c91429e39af14991 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Wed, 13 Jan 2010 15:28:46 -0800 Subject: LL Login now uses default regions if the desired start location is not found. --- bin/config-include/StandaloneCommon.ini.example | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example index 1679f93..ea03bed 100644 --- a/bin/config-include/StandaloneCommon.ini.example +++ b/bin/config-include/StandaloneCommon.ini.example @@ -39,6 +39,11 @@ ;;--- For MySql region storage (alternative) ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData" ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;" + ;; Next, we can specify properties of regions, including default and fallback regions + ;; The syntax is: Region_ = "" + ;; where can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut + ;; For example: + Region_WelcomeArea = "DefaultRegion, FallbackRegion" [LibraryModule] ; Set this if you want to change the name of the OpenSim Library -- cgit v1.1 From 283ff593b127bea95f276b430a3e6bf43b9a1625 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Wed, 13 Jan 2010 18:30:33 -0800 Subject: Make use of Fallback regions when the desired start region is having problems. --- bin/config-include/StandaloneCommon.ini.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example index ea03bed..0d54b4d 100644 --- a/bin/config-include/StandaloneCommon.ini.example +++ b/bin/config-include/StandaloneCommon.ini.example @@ -43,7 +43,7 @@ ;; The syntax is: Region_ = "" ;; where can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut ;; For example: - Region_WelcomeArea = "DefaultRegion, FallbackRegion" + Region_Welcome_Area = "DefaultRegion, FallbackRegion" [LibraryModule] ; Set this if you want to change the name of the OpenSim Library -- cgit v1.1 From daa9866a9adf591c6b32f992d189f6a1189a1677 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Wed, 13 Jan 2010 19:25:33 -0800 Subject: Omit AuthorizationService from the default configurations, because the service doesn't exist in the distribution. --- bin/config-include/Grid.ini | 1 - bin/config-include/GridHypergrid.ini | 1 - bin/config-include/StandaloneHypergrid.ini | 1 - 3 files changed, 3 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index 6bf493b..27e5cfb 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -13,7 +13,6 @@ GridServices = "RemoteGridServicesConnector" NeighbourServices = "RemoteNeighbourServicesConnector" AuthenticationServices = "RemoteAuthenticationServicesConnector" - AuthorizationServices = "RemoteAuthorizationServicesConnector" PresenceServices = "RemotePresenceServicesConnector" UserAccountServices = "RemoteUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 1a68362..3089598 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -16,7 +16,6 @@ GridServices = "HGGridServicesConnector" NeighbourServices = "RemoteNeighbourServicesConnector" AuthenticationServices = "RemoteAuthenticationServicesConnector" - AuthorizationServices = "LocalAuthorizationServicesConnector" PresenceServices = "RemotePresenceServicesConnector" UserAccountServices = "RemoteUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index a3e0547..682170c 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -15,7 +15,6 @@ InventoryServices = "HGInventoryBroker" NeighbourServices = "RemoteNeighbourServicesConnector" AuthenticationServices = "LocalAuthenticationServicesConnector" - AuthorizationServices = "LocalAuthorizationServicesConnector" GridServices = "HGGridServicesConnector" PresenceServices = "LocalPresenceServicesConnector" UserAccountServices = "LocalUserAccountServicesConnector" -- cgit v1.1 From f5fb14ff52f2088d5a489cef69edb5a675e067f7 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Wed, 13 Jan 2010 19:57:41 -0800 Subject: * Added the missing AvatarServices module. --- bin/config-include/Grid.ini | 1 + bin/config-include/GridHypergrid.ini | 1 + 2 files changed, 2 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index 27e5cfb..4892306 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -11,6 +11,7 @@ AssetServices = "RemoteAssetServicesConnector" InventoryServices = "RemoteInventoryServicesConnector" GridServices = "RemoteGridServicesConnector" + AvatarServices = "RemoteAvatarServicesConnector" NeighbourServices = "RemoteNeighbourServicesConnector" AuthenticationServices = "RemoteAuthenticationServicesConnector" PresenceServices = "RemotePresenceServicesConnector" diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 3089598..9077e73 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -14,6 +14,7 @@ AssetServices = "HGAssetBroker" InventoryServices = "HGInventoryBroker" GridServices = "HGGridServicesConnector" + AvatarServices = "RemoteAvatarServicesConnector" NeighbourServices = "RemoteNeighbourServicesConnector" AuthenticationServices = "RemoteAuthenticationServicesConnector" PresenceServices = "RemotePresenceServicesConnector" -- cgit v1.1 From f1c30784ac767bf5f62e81748984b76d85d71f6a Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Fri, 15 Jan 2010 15:11:58 -0800 Subject: * General cleanup of Teleports, Crossings and Child agents. They are now in the new AgentTransferModule, in line with what MW started implementing back in May -- ITeleportModule. This has been renamed IAgentTransferModule, to be more generic. * HGSceneCommunicationService has been deleted * SceneCommunicationService will likely be deleted soon too --- bin/config-include/Grid.ini | 1 + bin/config-include/GridHypergrid.ini | 1 + bin/config-include/Standalone.ini | 1 + bin/config-include/StandaloneHypergrid.ini | 3 ++- 4 files changed, 5 insertions(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index 4892306..1a9ac72 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -17,6 +17,7 @@ PresenceServices = "RemotePresenceServicesConnector" UserAccountServices = "RemoteUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" + AgentTransferModule = "AgentTransferModule" LandServiceInConnector = true NeighbourServiceInConnector = true SimulationServiceInConnector = true diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 9077e73..1275a60 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -20,6 +20,7 @@ PresenceServices = "RemotePresenceServicesConnector" UserAccountServices = "RemoteUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" + AgentTransferModule = "AgentTransferModule" LandServiceInConnector = true NeighbourServiceInConnector = true HypergridServiceInConnector = true diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index bf3237b..c9d483b 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -16,6 +16,7 @@ PresenceServices = "LocalPresenceServicesConnector" UserAccountServices = "LocalUserAccountServicesConnector" SimulationServices = "LocalSimulationConnectorModule" + AgentTransferModule = "AgentTransferModule" LibraryModule = true LLLoginServiceInConnector = true diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 682170c..20c5d10 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -19,7 +19,8 @@ PresenceServices = "LocalPresenceServicesConnector" UserAccountServices = "LocalUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" - AvatarServices = "LocalAvatarServicesConnector"; + AvatarServices = "LocalAvatarServicesConnector" + AgentTransferModule = "AgentTransferModule" InventoryServiceInConnector = true AssetServiceInConnector = true HGAuthServiceInConnector = true -- cgit v1.1 From bd6d1a24448dafea5be7ddbcd591b352040e4412 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sat, 16 Jan 2010 07:46:07 -0800 Subject: Moved prim crossing to EntityTransferModule. Not complete yet. --- bin/config-include/Grid.ini | 2 +- bin/config-include/GridHypergrid.ini | 2 +- bin/config-include/Standalone.ini | 2 +- bin/config-include/StandaloneHypergrid.ini | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index 1a9ac72..5aae1bc 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -17,7 +17,7 @@ PresenceServices = "RemotePresenceServicesConnector" UserAccountServices = "RemoteUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" - AgentTransferModule = "AgentTransferModule" + EntityTransferModule = "BasicEntityTransferModule" LandServiceInConnector = true NeighbourServiceInConnector = true SimulationServiceInConnector = true diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 1275a60..4b6bc17 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -20,7 +20,7 @@ PresenceServices = "RemotePresenceServicesConnector" UserAccountServices = "RemoteUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" - AgentTransferModule = "AgentTransferModule" + EntityTransferModule = "BasicEntityTransferModule" LandServiceInConnector = true NeighbourServiceInConnector = true HypergridServiceInConnector = true diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index c9d483b..452b9e9 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -16,7 +16,7 @@ PresenceServices = "LocalPresenceServicesConnector" UserAccountServices = "LocalUserAccountServicesConnector" SimulationServices = "LocalSimulationConnectorModule" - AgentTransferModule = "AgentTransferModule" + EntityTransferModule = "BasicEntityTransferModule" LibraryModule = true LLLoginServiceInConnector = true diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 20c5d10..7f44bb7 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -20,7 +20,7 @@ UserAccountServices = "LocalUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" AvatarServices = "LocalAvatarServicesConnector" - AgentTransferModule = "AgentTransferModule" + EntityTransferModule = "BasicEntityTransferModule" InventoryServiceInConnector = true AssetServiceInConnector = true HGAuthServiceInConnector = true -- cgit v1.1 From 04e29c1bacbc1e2df980ae15896a847ce7535da2 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sat, 16 Jan 2010 21:42:44 -0800 Subject: Beginning of rewriting HG. Compiles, and runs, but HG functions not restored yet. --- bin/config-include/StandaloneHypergrid.ini | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 7f44bb7..cd09091 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -63,9 +63,22 @@ [GridService] ; for the HGGridServicesConnector to instantiate GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:LocalGridServicesConnector" + HypergridService = "OpenSim.Services.HypergridService.dll:HypergridService" ; LocalGridServicesConnector needs this LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" Realm = "regions" + +[HypergridService] + GridService = "OpenSim.Region.CoreModules.dll:LocalGridServicesConnector" + AssetService = "OpenSim.Services.AssetService.dll:AssetService" + +[GatekeeperService] + LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" + ;; for the service + UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" + PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" + GridService = "OpenSim.Services.GridService.dll:GridService" + AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" [PresenceService] LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" -- cgit v1.1 From a7309d90dacf503b0170ad911289c33e9ab42821 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 17 Jan 2010 08:40:05 -0800 Subject: * Added ServiceURLs to AgentCircuitData. * Fixed a configuration buglet introduced yesterday in StandaloneHypergrid.ini. --- bin/config-include/StandaloneHypergrid.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index cd09091..79a8775 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -69,7 +69,7 @@ Realm = "regions" [HypergridService] - GridService = "OpenSim.Region.CoreModules.dll:LocalGridServicesConnector" + GridService = "OpenSim.Services.GridService.dll:GridService" AssetService = "OpenSim.Services.AssetService.dll:AssetService" [GatekeeperService] -- cgit v1.1 From f276ba57bf5bd732fbc6a255213c9bb7f5f5f148 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 17 Jan 2010 11:33:47 -0800 Subject: HG agent transfers are starting to work. Gatekeeper handlers are missing. --- bin/config-include/StandaloneHypergrid.ini | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 79a8775..3d05d51 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -20,7 +20,7 @@ UserAccountServices = "LocalUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" AvatarServices = "LocalAvatarServicesConnector" - EntityTransferModule = "BasicEntityTransferModule" + EntityTransferModule = "HGEntityTransferModule" InventoryServiceInConnector = true AssetServiceInConnector = true HGAuthServiceInConnector = true @@ -28,6 +28,8 @@ NeighbourServiceInConnector = true LibraryModule = true LLLoginServiceInConnector = true + ;; err, temporary + SimulationServiceInConnector = true [AssetService] ; For the AssetServiceInConnector @@ -103,3 +105,8 @@ DefaultRegion = "OpenSim Test" WelcomeMessage = "Welcome, Avatar!" + HomeURI = "http://127.0.0.1:9000" + GatewayURI = "http://127.0.0.1:9000" + InventoryServerURI = "http://127.0.0.1:9000" + AssetServerURI = "http://127.0.0.1:9000" + -- cgit v1.1 From b2e6ec9e12ad07eb08496ebe8ca0476b793017d5 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 17 Jan 2010 18:04:55 -0800 Subject: Agent gets there through the Gatekeeper, but still a few quirks to fix. --- bin/config-include/StandaloneHypergrid.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 3d05d51..67714cf 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -28,8 +28,7 @@ NeighbourServiceInConnector = true LibraryModule = true LLLoginServiceInConnector = true - ;; err, temporary - SimulationServiceInConnector = true + AuthenticationServiceInConnector = true [AssetService] ; For the AssetServiceInConnector -- cgit v1.1 From b5fcb5e872ec138ff7138906bffae193b6dae1a6 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 17 Jan 2010 20:10:42 -0800 Subject: HG teleports through gatekeeper are working. --- bin/config-include/StandaloneHypergrid.ini | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 67714cf..eb887a6 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -29,6 +29,7 @@ LibraryModule = true LLLoginServiceInConnector = true AuthenticationServiceInConnector = true + SimulationServiceInConnector = true [AssetService] ; For the AssetServiceInConnector -- cgit v1.1 From 3d536944153d4931cf891d6a788a47484f3e6f4d Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 18 Jan 2010 16:34:23 -0800 Subject: Go Home works. With security!! --- bin/config-include/StandaloneHypergrid.ini | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index eb887a6..28b9d47 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -82,6 +82,9 @@ GridService = "OpenSim.Services.GridService.dll:GridService" AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" +[HGEntityTransferModule] + HomeUsersSecurityService = "OpenSim.Services.HypergridService.dll:HomeUsersSecurityService" + [PresenceService] LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" -- cgit v1.1 From 9fbcceb1db84e62eedb75b2bd43f5e59142ec6c8 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 18 Jan 2010 20:35:59 -0800 Subject: * Towards enabling hyperlinks at grid-level. * Updated grid configs --- bin/config-include/GridHypergrid.ini | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 4b6bc17..4885a41 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -17,18 +17,17 @@ AvatarServices = "RemoteAvatarServicesConnector" NeighbourServices = "RemoteNeighbourServicesConnector" AuthenticationServices = "RemoteAuthenticationServicesConnector" + AuthorizationServices = "LocalAuthorizationServicesConnector" PresenceServices = "RemotePresenceServicesConnector" UserAccountServices = "RemoteUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" - EntityTransferModule = "BasicEntityTransferModule" + EntityTransferModule = "HGEntityTransferModule" LandServiceInConnector = true NeighbourServiceInConnector = true - HypergridServiceInConnector = true SimulationServiceInConnector = true LibraryModule = true InventoryServiceInConnector = false AssetServiceInConnector = false - LLLoginServiceInConnector = false [AssetService] LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector" @@ -41,12 +40,12 @@ [GridService] ; for the HGGridServicesConnector to instantiate GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:RemoteGridServicesConnector" + HypergridService = "OpenSim.Services.HypergridService.dll:HypergridService" ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector, ; which in turn uses this LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" -[LibraryService] - LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" - LibraryName = "OpenSim Library" - DefaultLibrary = "./inventory/Libraries.xml" +[HypergridService] + GridService = "OpenSim.Services.GridService.dll:GridService" + AssetService = "OpenSim.Services.AssetService.dll:AssetService" -- cgit v1.1 From 48b03c2c61a422c3ac9843892a2ae93b29a9f7b8 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 24 Jan 2010 14:30:48 -0800 Subject: Integrated the hyperlinking with the GridService. --- bin/config-include/StandaloneHypergrid.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 28b9d47..af502db 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -65,7 +65,7 @@ [GridService] ; for the HGGridServicesConnector to instantiate GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:LocalGridServicesConnector" - HypergridService = "OpenSim.Services.HypergridService.dll:HypergridService" + AssetService = "OpenSim.Services.AssetService.dll:AssetService" ; LocalGridServicesConnector needs this LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" Realm = "regions" -- cgit v1.1 From 8ddf787cfd090fc8f2715a6f2a5329348a12e28b Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 24 Jan 2010 16:00:28 -0800 Subject: Hypergrid map search back on, this time with a config var in the grid service. --- bin/config-include/StandaloneHypergrid.ini | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index af502db..0be7bab 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -70,6 +70,8 @@ LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" Realm = "regions" + AllowHypergridMapSearch = true + [HypergridService] GridService = "OpenSim.Services.GridService.dll:GridService" AssetService = "OpenSim.Services.AssetService.dll:AssetService" -- cgit v1.1 From 7c00469cd210cfdda3dd835867469159d4c8b9d9 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Wed, 27 Jan 2010 08:00:29 -0800 Subject: Added ExternalName config on Gatekeeper. --- bin/config-include/StandaloneHypergrid.ini | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 0be7bab..98e37e3 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -83,6 +83,8 @@ PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" GridService = "OpenSim.Services.GridService.dll:GridService" AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" + ; how does the outside world reach me? This acts as public key too. + ExternalName = "http://127.0.0.1:9000" [HGEntityTransferModule] HomeUsersSecurityService = "OpenSim.Services.HypergridService.dll:HomeUsersSecurityService" -- cgit v1.1 From 00f7d622cbc2c2e61d2efaacd8275da3f9821d8b Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Thu, 28 Jan 2010 19:19:42 -0800 Subject: HG 1.5 is in place. Tested in standalone only. --- bin/config-include/StandaloneHypergrid.ini | 38 ++++++++++++++++-------------- 1 file changed, 20 insertions(+), 18 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 98e37e3..9897149 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -72,23 +72,6 @@ AllowHypergridMapSearch = true -[HypergridService] - GridService = "OpenSim.Services.GridService.dll:GridService" - AssetService = "OpenSim.Services.AssetService.dll:AssetService" - -[GatekeeperService] - LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" - ;; for the service - UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" - PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" - GridService = "OpenSim.Services.GridService.dll:GridService" - AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" - ; how does the outside world reach me? This acts as public key too. - ExternalName = "http://127.0.0.1:9000" - -[HGEntityTransferModule] - HomeUsersSecurityService = "OpenSim.Services.HypergridService.dll:HomeUsersSecurityService" - [PresenceService] LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" @@ -100,9 +83,11 @@ GridService = "OpenSim.Services.GridService.dll:GridService" InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" + [LoginService] LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" + UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" @@ -113,7 +98,24 @@ WelcomeMessage = "Welcome, Avatar!" HomeURI = "http://127.0.0.1:9000" - GatewayURI = "http://127.0.0.1:9000" + GatekeeperURI = "http://127.0.0.1:9000" InventoryServerURI = "http://127.0.0.1:9000" AssetServerURI = "http://127.0.0.1:9000" +[GatekeeperService] + LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" + ;; for the service + UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" + UserAgentService = "OpenSim.Services.Hypergrid.dll:UserAgentService" + PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" + GridService = "OpenSim.Services.GridService.dll:GridService" + AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" + ; how does the outside world reach me? This acts as public key too. + ExternalName = "http://127.0.0.1:9000" + +[UserAgentService] + LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService" + ;; for the service + PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" + GridService = "OpenSim.Services.GridService.dll:GridService" + -- cgit v1.1 From c9e64d578de718aca77e250e8ddd8ecb5026d202 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Thu, 28 Jan 2010 19:36:42 -0800 Subject: Fixed broken dll name. --- bin/config-include/StandaloneHypergrid.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 9897149..0f8483b 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -106,7 +106,7 @@ LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" ;; for the service UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" - UserAgentService = "OpenSim.Services.Hypergrid.dll:UserAgentService" + UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" GridService = "OpenSim.Services.GridService.dll:GridService" AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" -- cgit v1.1 From 0c81966c0a8f69474fb542d7b4df1780ef756519 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Fri, 29 Jan 2010 09:12:22 -0800 Subject: Works for grid login. --- bin/config-include/GridHypergrid.ini | 4 ---- 1 file changed, 4 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 4885a41..6c7e32e 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -40,12 +40,8 @@ [GridService] ; for the HGGridServicesConnector to instantiate GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:RemoteGridServicesConnector" - HypergridService = "OpenSim.Services.HypergridService.dll:HypergridService" ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector, ; which in turn uses this LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" -[HypergridService] - GridService = "OpenSim.Services.GridService.dll:GridService" - AssetService = "OpenSim.Services.AssetService.dll:AssetService" -- cgit v1.1 From 5001f61c08fea2ebfcb2590be69073d04d129d70 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Fri, 29 Jan 2010 18:59:41 -0800 Subject: * HGGridConnector is no longer necessary. * Handle logout properly. This needed an addition to IClientAPI, because of how the logout packet is currently being handled -- the agent is being removed from the scene before the different event handlers are executed, which is broken. --- bin/config-include/GridHypergrid.ini | 5 ++--- bin/config-include/StandaloneHypergrid.ini | 7 ++----- 2 files changed, 4 insertions(+), 8 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 6c7e32e..015ced0 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -13,7 +13,7 @@ [Modules] AssetServices = "HGAssetBroker" InventoryServices = "HGInventoryBroker" - GridServices = "HGGridServicesConnector" + GridServices = "RemoteGridServicesConnector" AvatarServices = "RemoteAvatarServicesConnector" NeighbourServices = "RemoteNeighbourServicesConnector" AuthenticationServices = "RemoteAuthenticationServicesConnector" @@ -38,10 +38,9 @@ HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" [GridService] - ; for the HGGridServicesConnector to instantiate - GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:RemoteGridServicesConnector" ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector, ; which in turn uses this LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" + AllowHypergridMapSearch = true diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 0f8483b..395537d 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -13,9 +13,9 @@ [Modules] AssetServices = "HGAssetBroker" InventoryServices = "HGInventoryBroker" - NeighbourServices = "RemoteNeighbourServicesConnector" + NeighbourServices = "LocalNeighbourServicesConnector" AuthenticationServices = "LocalAuthenticationServicesConnector" - GridServices = "HGGridServicesConnector" + GridServices = "LocalGridServicesConnector" PresenceServices = "LocalPresenceServicesConnector" UserAccountServices = "LocalUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" @@ -63,9 +63,6 @@ LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" [GridService] - ; for the HGGridServicesConnector to instantiate - GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:LocalGridServicesConnector" - AssetService = "OpenSim.Services.AssetService.dll:AssetService" ; LocalGridServicesConnector needs this LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" Realm = "regions" -- cgit v1.1 From 42f978a478093da579907e15dc29680a3711b27e Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sat, 30 Jan 2010 09:23:07 -0800 Subject: * HGScene is no more. * Moved a few key inventory access methods from Scene.Inventory to an IInventoryAccessModule module --- bin/config-include/StandaloneHypergrid.ini | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 395537d..686d2a4 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -21,6 +21,7 @@ SimulationServices = "RemoteSimulationConnectorModule" AvatarServices = "LocalAvatarServicesConnector" EntityTransferModule = "HGEntityTransferModule" + InventoryAccessModule = "HGInventoryAccessModule" InventoryServiceInConnector = true AssetServiceInConnector = true HGAuthServiceInConnector = true -- cgit v1.1 From a2096f58cedc3a225e01b300dedc64e2ea59b778 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sat, 30 Jan 2010 17:41:01 -0800 Subject: Updated gridhypergrid config. --- bin/config-include/GridHypergrid.ini | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/config-include') diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 015ced0..4d40766 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -22,6 +22,7 @@ UserAccountServices = "RemoteUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" EntityTransferModule = "HGEntityTransferModule" + InventoryAccessModule = "HGInventoryAccessModule" LandServiceInConnector = true NeighbourServiceInConnector = true SimulationServiceInConnector = true -- cgit v1.1 From 40d8e91008b7d76ce6b9398484c591eb51c85bdb Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 31 Jan 2010 11:10:57 -0800 Subject: * Added a few files that were missing in the repo. * New HGInventoryService which allows restricted access to inventory while outside --- bin/config-include/StandaloneHypergrid.ini | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 686d2a4..f36b0c4 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -33,7 +33,6 @@ SimulationServiceInConnector = true [AssetService] - ; For the AssetServiceInConnector LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" ; For HGAssetBroker @@ -41,7 +40,6 @@ HypergridAssetService = "OpenSim.Services.Connectors.dll:HGAssetServiceConnector" [InventoryService] - ; For the InventoryServiceInConnector LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" ; For HGInventoryBroker @@ -49,7 +47,6 @@ HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" [AvatarService] - ; For the InventoryServiceInConnector LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" [LibraryService] @@ -117,3 +114,8 @@ PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" GridService = "OpenSim.Services.GridService.dll:GridService" +;; The interface that local users get when they are in other grids +;; This greatly restricts the inventory operations while in other grids +[HGInventoryService] + ; For the InventoryServiceInConnector + LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService" -- cgit v1.1 From 041594ed075049f804fc157700a6d78e54194c0b Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 31 Jan 2010 13:01:23 -0800 Subject: Cleaned up configuration. 'gridmode' and 'hypergrid' are gone, as well as lots of other obsolete configs. --- bin/config-include/Grid.ini | 1 + bin/config-include/GridHypergrid.ini | 5 ----- bin/config-include/StandaloneHypergrid.ini | 3 --- 3 files changed, 1 insertion(+), 8 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index 5aae1bc..56c76c6 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -18,6 +18,7 @@ UserAccountServices = "RemoteUserAccountServicesConnector" SimulationServices = "RemoteSimulationConnectorModule" EntityTransferModule = "BasicEntityTransferModule" + InventoryAccessModule = "BasicInventoryAccessModule" LandServiceInConnector = true NeighbourServiceInConnector = true SimulationServiceInConnector = true diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 4d40766..7391278 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -7,9 +7,6 @@ [Includes] Include-Common = "config-include/GridCommon.ini" -[Startup] - hypergrid = true - [Modules] AssetServices = "HGAssetBroker" InventoryServices = "HGInventoryBroker" @@ -27,8 +24,6 @@ NeighbourServiceInConnector = true SimulationServiceInConnector = true LibraryModule = true - InventoryServiceInConnector = false - AssetServiceInConnector = false [AssetService] LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector" diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index f36b0c4..63ea832 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -6,9 +6,6 @@ [Includes] Include-Common = "config-include/StandaloneCommon.ini" - -[Startup] - hypergrid = true [Modules] AssetServices = "HGAssetBroker" -- cgit v1.1 From 67b0fcf806b0f246fd4386410d445b9ac3e29aea Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 31 Jan 2010 13:07:13 -0800 Subject: * Added OpenSim.Server.HG.ini as an add-on to OpenSim.Server.ini * Cleaned up standalone configs --- bin/config-include/StandaloneCommon.ini.example | 14 +++++++++++++- bin/config-include/StandaloneHypergrid.ini | 9 --------- 2 files changed, 13 insertions(+), 10 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example index 0d54b4d..b4db6dc 100644 --- a/bin/config-include/StandaloneCommon.ini.example +++ b/bin/config-include/StandaloneCommon.ini.example @@ -47,4 +47,16 @@ [LibraryModule] ; Set this if you want to change the name of the OpenSim Library - ;LibraryName = "My World's Library" \ No newline at end of file + ;LibraryName = "My World's Library" + +[LoginService] + DefaultRegion = "OpenSim Test" + WelcomeMessage = "Welcome, Avatar!" + + HomeURI = "http://127.0.0.1:9000" + GatekeeperURI = "http://127.0.0.1:9000" + InventoryServerURI = "http://127.0.0.1:9000" + AssetServerURI = "http://127.0.0.1:9000" + +[GatekeeperService] + ExternalName = "http://127.0.0.1:9000" diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 63ea832..06f1898 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -86,14 +86,6 @@ GridService = "OpenSim.Services.GridService.dll:GridService" AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" - DefaultRegion = "OpenSim Test" - WelcomeMessage = "Welcome, Avatar!" - - HomeURI = "http://127.0.0.1:9000" - GatekeeperURI = "http://127.0.0.1:9000" - InventoryServerURI = "http://127.0.0.1:9000" - AssetServerURI = "http://127.0.0.1:9000" - [GatekeeperService] LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" ;; for the service @@ -103,7 +95,6 @@ GridService = "OpenSim.Services.GridService.dll:GridService" AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" ; how does the outside world reach me? This acts as public key too. - ExternalName = "http://127.0.0.1:9000" [UserAgentService] LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService" -- cgit v1.1 From 35a245b67a44eaa62dbf7951646ad9818caa8b02 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 31 Jan 2010 22:35:23 -0800 Subject: Assorted bug fixes related to hyperlinking --- bin/config-include/GridCommon.ini.example | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/config-include') diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example index 4d94ccd..a62868e 100644 --- a/bin/config-include/GridCommon.ini.example +++ b/bin/config-include/GridCommon.ini.example @@ -20,6 +20,7 @@ ; change this to your grid-wide grid server ; GridServerURI = "http://mygridserver.com:8003" + ;AllowHypergridMapSearch = true [AvatarService] ; -- cgit v1.1 From df3ab04e0ca202f9457339a048343b87578d7c2b Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Tue, 2 Feb 2010 16:28:41 -0800 Subject: Removed useless config. --- bin/config-include/StandaloneCommon.ini.example | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example index b4db6dc..8e21a8c 100644 --- a/bin/config-include/StandaloneCommon.ini.example +++ b/bin/config-include/StandaloneCommon.ini.example @@ -50,9 +50,8 @@ ;LibraryName = "My World's Library" [LoginService] - DefaultRegion = "OpenSim Test" WelcomeMessage = "Welcome, Avatar!" - + HomeURI = "http://127.0.0.1:9000" GatekeeperURI = "http://127.0.0.1:9000" InventoryServerURI = "http://127.0.0.1:9000" -- cgit v1.1 From b18e95b3a228e0ca74e9c90ae191e09022ab35f1 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 8 Feb 2010 07:49:14 -0800 Subject: Added missing configs to Standalone.ini --- bin/config-include/Standalone.ini | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index 452b9e9..171611e 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -11,12 +11,14 @@ AssetServices = "LocalAssetServicesConnector" InventoryServices = "LocalInventoryServicesConnector" NeighbourServices = "LocalNeighbourServicesConnector" - AuthorizationServices = "LocalAuthorizationServicesConnector" + AuthenticationServices = "LocalAuthenticationServicesConnector" GridServices = "LocalGridServicesConnector" PresenceServices = "LocalPresenceServicesConnector" UserAccountServices = "LocalUserAccountServicesConnector" SimulationServices = "LocalSimulationConnectorModule" + AvatarServices = "LocalAvatarServicesConnector" EntityTransferModule = "BasicEntityTransferModule" + InventoryAccessModule = "BasicInventoryAccessModule" LibraryModule = true LLLoginServiceInConnector = true @@ -31,15 +33,20 @@ LibraryName = "OpenSim Library" DefaultLibrary = "./inventory/Libraries.xml" +[AvatarService] + LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" + [AuthorizationService] LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" [GridService] LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" Realm = "regions" + StorageProvider = "OpenSim.Data.Null.dll" [PresenceService] LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" + StorageProvider = "OpenSim.Data.Null.dll" [UserAccountService] LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" @@ -55,6 +62,6 @@ InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" GridService = "OpenSim.Services.GridService.dll:GridService" - - DefaultRegion = "OpenSim Test" + AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" + WelcomeMessage = "Welcome, Avatar!" -- cgit v1.1 From 9f5b39300a729ffb27cdf908e0d12f9576f38b78 Mon Sep 17 00:00:00 2001 From: Melanie Date: Mon, 8 Feb 2010 20:26:47 +0000 Subject: Add InventoryService to default standalone config --- bin/config-include/Standalone.ini | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index 171611e..0c74ea4 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -54,6 +54,7 @@ AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" GridService = "OpenSim.Services.GridService.dll:GridService" + InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" [LoginService] LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" -- cgit v1.1 From dc197856727c06b0b06488ab839409831af84865 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 14 Feb 2010 16:57:02 -0800 Subject: Added UserAccount, Avatar and Authentication to Data.Null, so that OpenSim can run out-of-the-box. #WaitingForSQLite --- bin/config-include/Standalone.ini | 6 ++++++ bin/config-include/StandaloneHypergrid.ini | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index 0c74ea4..bd90df4 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -35,10 +35,15 @@ [AvatarService] LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" + StorageProvider = "OpenSim.Data.Null.dll" [AuthorizationService] LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" +[AuthenticationService] + LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" + StorageProvider = "OpenSim.Data.Null.dll" + [GridService] LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" Realm = "regions" @@ -50,6 +55,7 @@ [UserAccountService] LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" + StorageProvider = "OpenSim.Data.Null.dll" ;; These are for creating new accounts AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 06f1898..a4fa5be 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -45,6 +45,7 @@ [AvatarService] LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" + StorageProvider = "OpenSim.Data.Null.dll" [LibraryService] LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" @@ -56,19 +57,23 @@ [AuthenticationService] LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" - + StorageProvider = "OpenSim.Data.Null.dll" + [GridService] ; LocalGridServicesConnector needs this LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" Realm = "regions" + StorageProvider = "OpenSim.Data.Null.dll" AllowHypergridMapSearch = true [PresenceService] LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" + StorageProvider = "OpenSim.Data.Null.dll" [UserAccountService] LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" + StorageProvider = "OpenSim.Data.Null.dll" ;; These are for creating new accounts by the service AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" -- cgit v1.1 From 0ab6aac05255078a9d190f6623b2d86d5253d955 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sat, 20 Feb 2010 17:52:38 -0800 Subject: Added UserAccountData and auth to the SQLite connector. Compiles, runs, but access to these tables doesn't work. --- bin/config-include/Standalone.ini | 8 +++++--- bin/config-include/StandaloneHypergrid.ini | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index bd90df4..b9a9462 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -4,9 +4,6 @@ ;; which you can copy and change. ;; -[Includes] - Include-Common = "config-include/StandaloneCommon.ini" - [Modules] AssetServices = "LocalAssetServicesConnector" InventoryServices = "LocalInventoryServicesConnector" @@ -72,3 +69,8 @@ AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" WelcomeMessage = "Welcome, Avatar!" + + +;; This should always be the very last thing on this file +[Includes] + Include-Common = "config-include/StandaloneCommon.ini" diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index a4fa5be..9ad6d1c 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -3,9 +3,6 @@ ;; All optional settings are in StandaloneCommon.ini.example, ;; which you can copy and change. ;; - -[Includes] - Include-Common = "config-include/StandaloneCommon.ini" [Modules] AssetServices = "HGAssetBroker" @@ -112,3 +109,8 @@ [HGInventoryService] ; For the InventoryServiceInConnector LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService" + + +;; This should always be the very last thing on this file +[Includes] + Include-Common = "config-include/StandaloneCommon.ini" -- cgit v1.1 From 552e9e8c7832f41f5a53666d9c3ece62f57be4ba Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 21 Feb 2010 09:09:35 -0800 Subject: * Added SQlite connector for AvatarData. Tested -- works. * Small bug fix in debug message * Set default standalone configs to use SQLite across the board --- bin/config-include/Standalone.ini | 6 +++--- bin/config-include/StandaloneHypergrid.ini | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index b9a9462..06333d8 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -32,14 +32,14 @@ [AvatarService] LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" - StorageProvider = "OpenSim.Data.Null.dll" + ConnectionString = "URI=file:avatars.db,version=3" [AuthorizationService] LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" [AuthenticationService] LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" - StorageProvider = "OpenSim.Data.Null.dll" + ConnectionString = "URI=file:auth.db,version=3" [GridService] LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" @@ -52,7 +52,7 @@ [UserAccountService] LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" - StorageProvider = "OpenSim.Data.Null.dll" + ConnectionString = "URI=file:userprofiles.db,version=3" ;; These are for creating new accounts AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 9ad6d1c..04a2356 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -42,7 +42,7 @@ [AvatarService] LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" - StorageProvider = "OpenSim.Data.Null.dll" + ConnectionString = "URI=file:avatars.db,version=3" [LibraryService] LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" @@ -54,7 +54,7 @@ [AuthenticationService] LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" - StorageProvider = "OpenSim.Data.Null.dll" + ConnectionString = "URI=file:auth.db,version=3" [GridService] ; LocalGridServicesConnector needs this @@ -70,7 +70,7 @@ [UserAccountService] LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" - StorageProvider = "OpenSim.Data.Null.dll" + ConnectionString = "URI=file:userprofiles.db,version=3" ;; These are for creating new accounts by the service AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" -- cgit v1.1 From e6c869ddfc73af3cdb01b1232932db81cf6d0621 Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Mon, 22 Feb 2010 13:18:11 +0900 Subject: Minor formatting cleanup. --- bin/config-include/Standalone.ini | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index cdfdf4b..35ee01e 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -20,11 +20,10 @@ [InventoryService] LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" - + [AuthorizationService] LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" [GridService] - LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" + LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" Realm = "regions" - -- cgit v1.1 From 679ad9575083370204a6d83e9933323c9f60ae45 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Thu, 25 Feb 2010 16:11:04 -0800 Subject: List of friends now retrieved upon login. Configured and tested in standalone only. --- bin/config-include/Standalone.ini | 4 ++++ bin/config-include/StandaloneHypergrid.ini | 10 +++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index 06333d8..ce77b3f 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -59,6 +59,9 @@ GridService = "OpenSim.Services.GridService.dll:GridService" InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" +[Friends] + Connector = "OpenSim.Services.FriendsService.dll" + [LoginService] LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" @@ -67,6 +70,7 @@ PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" GridService = "OpenSim.Services.GridService.dll:GridService" AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" + FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" WelcomeMessage = "Welcome, Avatar!" diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 04a2356..ecdd6f7 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -77,6 +77,8 @@ GridService = "OpenSim.Services.GridService.dll:GridService" InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" +[Friends] + Connector = "OpenSim.Services.FriendsService.dll" [LoginService] LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" @@ -87,16 +89,18 @@ PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" GridService = "OpenSim.Services.GridService.dll:GridService" AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" + FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" [GatekeeperService] LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" - ;; for the service + ;; for the service UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" - UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" + UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" GridService = "OpenSim.Services.GridService.dll:GridService" AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" - ; how does the outside world reach me? This acts as public key too. + SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector" + WelcomeMessage = "Welcome, Avatar!" [UserAgentService] LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService" -- cgit v1.1 From c745df007d1730e59fbdb4ebf8440654d1675ade Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Thu, 25 Feb 2010 17:42:51 -0800 Subject: Added server-side Friends in connector. Untested. --- bin/config-include/Grid.ini | 3 +++ bin/config-include/GridHypergrid.ini | 3 +++ 2 files changed, 6 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index 56c76c6..a656e7b 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -34,3 +34,6 @@ LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" LibraryName = "OpenSim Library" DefaultLibrary = "./inventory/Libraries.xml" + +[Friends] + Connector = "OpenSim.Services.Connectors.dll:FriendsServiceConnector" diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 7391278..36cefdc 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -40,3 +40,6 @@ StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" AllowHypergridMapSearch = true + +[Friends] + Connector = "OpenSim.Services.Connectors.dll:FriendsServiceConnector" -- cgit v1.1 From cc05bdf6aba5d74202cb5863a5d0f5950540e7bd Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Fri, 26 Feb 2010 08:46:30 -0800 Subject: * Friends out connector completed. Grid login retrieves friends correctly. * Added friends configs to grid .inis --- bin/config-include/Grid.ini | 2 +- bin/config-include/GridCommon.ini.example | 7 +++++++ bin/config-include/GridHypergrid.ini | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) (limited to 'bin/config-include') diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index a656e7b..9dff325 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini @@ -36,4 +36,4 @@ DefaultLibrary = "./inventory/Libraries.xml" [Friends] - Connector = "OpenSim.Services.Connectors.dll:FriendsServiceConnector" + Connector = "OpenSim.Services.Connectors.dll:FriendsServicesConnector" diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example index a62868e..4717561 100644 --- a/bin/config-include/GridCommon.ini.example +++ b/bin/config-include/GridCommon.ini.example @@ -46,6 +46,13 @@ ; AuthenticationServerURI = "http://mygridserver.com:8003" +[FriendsService] + ; + ; change this to your grid-wide friends server + ; + FriendsServerURI = "http://mygridserver.com:8003" + + [Modules] ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists. ;; Copy the config .example file into your own .ini file and change configs there diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index 36cefdc..b567817 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini @@ -42,4 +42,4 @@ AllowHypergridMapSearch = true [Friends] - Connector = "OpenSim.Services.Connectors.dll:FriendsServiceConnector" + Connector = "OpenSim.Services.Connectors.dll:FriendsServicesConnector" -- cgit v1.1 From 774958bbbf639090e73204be1d5b6d5c7653441a Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 28 Feb 2010 16:09:06 -0800 Subject: Added FriendsData to both Null storage and SQLite. Untested. --- bin/config-include/Standalone.ini | 4 ++++ bin/config-include/StandaloneHypergrid.ini | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'bin/config-include') diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index ce77b3f..b35f8a5 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini @@ -59,6 +59,10 @@ GridService = "OpenSim.Services.GridService.dll:GridService" InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" +[FriendsService] + LocalServiceModule = "OpenSim.Services.FriendsService.dll" + ConnectionString = "URI=file:friends.db,version=3" + [Friends] Connector = "OpenSim.Services.FriendsService.dll" diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index ecdd6f7..ee84c81 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini @@ -77,6 +77,10 @@ GridService = "OpenSim.Services.GridService.dll:GridService" InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" +[FriendsService] + LocalServiceModule = "OpenSim.Services.FriendsService.dll" + ConnectionString = "URI=file:friends.db,version=3" + [Friends] Connector = "OpenSim.Services.FriendsService.dll" -- cgit v1.1