From 22f25dfcab4a5c0d4df0a3df74a6337ab80c5ee8 Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Sat, 16 Jun 2012 03:32:47 +0100
Subject: Implement max_external_urls_per_simulator setting in [LL-Functions]
to allow configuration of how many urls can be set up by llRequestURL()
Defaults remains as 100.
This setting is per simulator instead of per region due to how the url script module is structured.
---
bin/OpenSimDefaults.ini | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
(limited to 'bin')
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini
index 1b8a4b6..ededdc05 100644
--- a/bin/OpenSimDefaults.ini
+++ b/bin/OpenSimDefaults.ini
@@ -1168,7 +1168,9 @@
; Maximum number of llListen events we allow per script
; Set this to 0 to have no limit imposed.
max_listens_per_script = 64
-
+
+ ; Maximum number of external urls that scripts can set up in this simulator (e.g. via llRequestURL())
+ max_external_urls_per_simulator = 100
[DataSnapshot]
; The following set of configs pertains to search.
--
cgit v1.1
From 2ed768cbf5734f6b0c8825beecc4347bf9537f6f Mon Sep 17 00:00:00 2001
From: BlueWall
Date: Sat, 16 Jun 2012 06:25:12 -0400
Subject: Adjust Robust*.ini.examples V3 webprofile entries
---
bin/Robust.HG.ini.example | 14 +++++++++-----
bin/Robust.ini.example | 10 +++++++---
2 files changed, 16 insertions(+), 8 deletions(-)
(limited to 'bin')
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example
index 9887ab5..63a13d7 100644
--- a/bin/Robust.HG.ini.example
+++ b/bin/Robust.HG.ini.example
@@ -237,12 +237,16 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
WelcomeMessage = "Welcome, Avatar!"
AllowRemoteSetLoginLevel = "false"
-
- ; For V2 map
- MapTileURL = "http://127.0.0.1:8002";
- ; For WebProfiles (V3)
- ProfileServerURL = "http://127.0.0.1/profiles/[AGENT_NAME]"
+ ; For V2/3 Web Profiles
+ ; Work in progress: The ProfileServerURL/OpenIDServerURL are
+ ; being used in a development viewer as support for webprofiles
+ ; is being developed across the componets
+ ;
+ ; ProfileServerURL = "http://127.0.0.1/profiles/[AGENT_NAME]"
+ ;
+ ; For V2/V3 webapp authentication SSO
+ ; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/"
; If you run this login server behind a proxy, set this to true
; HasProxy = false
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example
index f70d13b..5a9d613 100644
--- a/bin/Robust.ini.example
+++ b/bin/Robust.ini.example
@@ -225,10 +225,14 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
MapTileURL = "http://127.0.0.1:8002";
; For V2/3 Web Profiles
- ProfileServerURL = "http://127.0.0.1/profiles/[AGENT_NAME]"
-
+ ; Work in progress: The ProfileServerURL/OpenIDServerURL are
+ ; being used in a development viewer as support for webprofiles
+ ; is being developed across the componets
+ ;
+ ; ProfileServerURL = "http://127.0.0.1/profiles/[AGENT_NAME]"
+ ;
; For V2/V3 webapp authentication SSO
- OpenIDServerURL = "http://127.0.0.1/openid/openidserver/"
+ ; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/"
; If you run this login server behind a proxy, set this to true
; HasProxy = false
--
cgit v1.1
From 5c5b359bcb80e8bdea2086cae117312541083787 Mon Sep 17 00:00:00 2001
From: BlueWall
Date: Sat, 16 Jun 2012 07:24:27 -0400
Subject: Oops! putting back the entry for map urls
---
bin/Robust.HG.ini.example | 3 +++
1 file changed, 3 insertions(+)
(limited to 'bin')
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example
index 63a13d7..3eecdd9 100644
--- a/bin/Robust.HG.ini.example
+++ b/bin/Robust.HG.ini.example
@@ -238,6 +238,9 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
WelcomeMessage = "Welcome, Avatar!"
AllowRemoteSetLoginLevel = "false"
+ ; For V2 map
+ MapTileURL = "http://127.0.0.1:8002";
+
; For V2/3 Web Profiles
; Work in progress: The ProfileServerURL/OpenIDServerURL are
; being used in a development viewer as support for webprofiles
--
cgit v1.1
From 4cfaa01c0a5e36f4414141a38541067460121a9b Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Wed, 20 Jun 2012 01:06:55 +0100
Subject: Remove STARTUP COMPLETE message from the startuplogo.txt file and
into main logging
---
bin/startuplogo.txt | 1 -
1 file changed, 1 deletion(-)
(limited to 'bin')
diff --git a/bin/startuplogo.txt b/bin/startuplogo.txt
index 0d11e77..e69de29 100644
--- a/bin/startuplogo.txt
+++ b/bin/startuplogo.txt
@@ -1 +0,0 @@
-STARTUP COMPLETE
--
cgit v1.1
From 7b6c0232a54c4c083e16c028fd475121b20b8bff Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Wed, 20 Jun 2012 01:10:18 +0100
Subject: Change default logging level for XEngine to WARN instead of DEBUG.
This is to reduce log spam from script loading, which is especially spammy for avatar movements with scripted attachments.
All important messages are at warn or above.
If you still want/need to see these messages, set in the section of OpenSim.exe.config.
This affects no other package logs, which still output at the root configured level (currently DEBUG by default).
---
bin/OpenSim.exe.config | 5 +++++
1 file changed, 5 insertions(+)
(limited to 'bin')
diff --git a/bin/OpenSim.exe.config b/bin/OpenSim.exe.config
index 4a49fc5..f1e3709 100755
--- a/bin/OpenSim.exe.config
+++ b/bin/OpenSim.exe.config
@@ -31,5 +31,10 @@
+
+
+
+
+
--
cgit v1.1