aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
authorDiva Canto2011-06-12 15:37:42 -0700
committerDiva Canto2011-06-12 15:37:42 -0700
commitfd57c91b4a10cf7ee1e94dc8fe4e81eb0d5bae3d (patch)
tree55907fbcea5962638275453301482190c4b989b0 /bin
parentA few more cleanups on the way to close http://opensimulator.org/mantis/view.... (diff)
downloadopensim-SC_OLD-fd57c91b4a10cf7ee1e94dc8fe4e81eb0d5bae3d.zip
opensim-SC_OLD-fd57c91b4a10cf7ee1e94dc8fe4e81eb0d5bae3d.tar.gz
opensim-SC_OLD-fd57c91b4a10cf7ee1e94dc8fe4e81eb0d5bae3d.tar.bz2
opensim-SC_OLD-fd57c91b4a10cf7ee1e94dc8fe4e81eb0d5bae3d.tar.xz
First pass at making the V2 map work. Standalones only for now. There are some issues with the zoom level -- TBD.
Diffstat (limited to 'bin')
-rw-r--r--bin/config-include/Standalone.ini7
-rw-r--r--bin/config-include/StandaloneCommon.ini.example3
-rw-r--r--bin/config-include/StandaloneHypergrid.ini11
3 files changed, 19 insertions, 2 deletions
diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini
index 4ff1a26..bf89d0b 100644
--- a/bin/config-include/Standalone.ini
+++ b/bin/config-include/Standalone.ini
@@ -17,10 +17,12 @@
17 AvatarServices = "LocalAvatarServicesConnector" 17 AvatarServices = "LocalAvatarServicesConnector"
18 EntityTransferModule = "BasicEntityTransferModule" 18 EntityTransferModule = "BasicEntityTransferModule"
19 InventoryAccessModule = "BasicInventoryAccessModule" 19 InventoryAccessModule = "BasicInventoryAccessModule"
20 MapImageService = "MapImageServiceModule"
20 21
21 LibraryModule = true 22 LibraryModule = true
22 LLLoginServiceInConnector = true 23 LLLoginServiceInConnector = true
23 GridInfoServiceInConnector = true 24 GridInfoServiceInConnector = true
25 MapImageServiceInConnector = true
24 26
25[Profile] 27[Profile]
26 Module = "BasicProfileModule" 28 Module = "BasicProfileModule"
@@ -91,6 +93,11 @@
91 93
92 WelcomeMessage = "Welcome, Avatar!" 94 WelcomeMessage = "Welcome, Avatar!"
93 95
96[MapImageService]
97 LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
98 ; in minutes
99 RefreshTime = 60
100
94;; This should always be the very last thing on this file 101;; This should always be the very last thing on this file
95[Includes] 102[Includes]
96 Include-Common = "config-include/StandaloneCommon.ini" 103 Include-Common = "config-include/StandaloneCommon.ini"
diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example
index 7359bba..69349d2 100644
--- a/bin/config-include/StandaloneCommon.ini.example
+++ b/bin/config-include/StandaloneCommon.ini.example
@@ -99,6 +99,9 @@
99 SRV_FriendsServerURI = "http://127.0.0.1:9000" 99 SRV_FriendsServerURI = "http://127.0.0.1:9000"
100 SRV_IMServerURI = "http://127.0.0.1:9000" 100 SRV_IMServerURI = "http://127.0.0.1:9000"
101 101
102 ;; For Viewer 2
103 MapTileURL = "http://127.0.0.1:9000"
104
102 ;; Regular expressions for controlling which client versions are accepted/denied. 105 ;; Regular expressions for controlling which client versions are accepted/denied.
103 ;; An empty string means nothing is checked. 106 ;; An empty string means nothing is checked.
104 ;; 107 ;;
diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini
index 8480a77..719df5c 100644
--- a/bin/config-include/StandaloneHypergrid.ini
+++ b/bin/config-include/StandaloneHypergrid.ini
@@ -18,9 +18,10 @@
18 GridUserServices = "LocalGridUserServicesConnector" 18 GridUserServices = "LocalGridUserServicesConnector"
19 SimulationServices = "RemoteSimulationConnectorModule" 19 SimulationServices = "RemoteSimulationConnectorModule"
20 AvatarServices = "LocalAvatarServicesConnector" 20 AvatarServices = "LocalAvatarServicesConnector"
21 MapImageService = "MapImageServiceModule"
21 EntityTransferModule = "HGEntityTransferModule" 22 EntityTransferModule = "HGEntityTransferModule"
22 InventoryAccessModule = "HGInventoryAccessModule" 23 InventoryAccessModule = "HGInventoryAccessModule"
23 FriendsModule = "HGFriendsModule" 24 FriendsModule = "HGFriendsModule"
24 25
25 InventoryServiceInConnector = true 26 InventoryServiceInConnector = true
26 AssetServiceInConnector = true 27 AssetServiceInConnector = true
@@ -31,6 +32,7 @@
31 GridInfoServiceInConnector = true 32 GridInfoServiceInConnector = true
32 AuthenticationServiceInConnector = true 33 AuthenticationServiceInConnector = true
33 SimulationServiceInConnector = true 34 SimulationServiceInConnector = true
35 MapImageServiceInConnector = true
34 36
35[Profile] 37[Profile]
36 Module = "BasicProfileModule" 38 Module = "BasicProfileModule"
@@ -116,7 +118,12 @@
116 GridService = "OpenSim.Services.GridService.dll:GridService" 118 GridService = "OpenSim.Services.GridService.dll:GridService"
117 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" 119 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
118 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" 120 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
119 121
122[MapImageService]
123 LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
124 ; in minutes
125 RefreshTime = 60
126
120[GatekeeperService] 127[GatekeeperService]
121 LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" 128 LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
122 ;; for the service 129 ;; for the service