From c1665cfe9c02f9f8dcf5ff97afe1cf8bba4fa39a Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Thu, 3 Feb 2011 22:34:10 +0000
Subject: Make UUID 3a367d1c-bef1-6d43-7595-e88c1e3aadb3 reference a full alpha
texture.
SL's viewer and some downstream projects assume that this UUID points to a full alpha texture, as per
http://opensimulator.org/mantis/bug_view_advanced_page.php?bug_id=4751 and
http://forums.kokuaviewer.org/viewtopic.php?f=8&t=1323
If the request isn't satified, some viewers will continuously make the request.
---
bin/assets/TexturesAssetSet/TexturesAssetSet.xml | 9 +++++++++
1 file changed, 9 insertions(+)
(limited to 'bin')
diff --git a/bin/assets/TexturesAssetSet/TexturesAssetSet.xml b/bin/assets/TexturesAssetSet/TexturesAssetSet.xml
index 5484ee2..3af9c99 100644
--- a/bin/assets/TexturesAssetSet/TexturesAssetSet.xml
+++ b/bin/assets/TexturesAssetSet/TexturesAssetSet.xml
@@ -413,6 +413,15 @@
+
+
+
+
--
cgit v1.1
From f5a3eb9fd547df043b00a2934d891dcfff3142ab Mon Sep 17 00:00:00 2001
From: Diva Canto
Date: Fri, 4 Feb 2011 17:05:45 -0800
Subject: Added a config var to HGInventoryAccessModule called
OutboundPermission that controls whether the sim lets asset POSTs happen to
foreign grids or not. It's True by default. If ppl want to allow foreign
visitors but don't want to allow any assets out of their grid, they should
set this to False. This is the beginning of policies for these things...
---
bin/config-include/GridCommon.ini.example | 4 ++++
bin/config-include/HyperSimianGrid.ini | 11 +++++++++++
bin/config-include/StandaloneCommon.ini.example | 4 ++++
3 files changed, 19 insertions(+)
(limited to 'bin')
diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example
index 761e5eb..e1bcf00 100644
--- a/bin/config-include/GridCommon.ini.example
+++ b/bin/config-include/GridCommon.ini.example
@@ -88,6 +88,10 @@
; accessible from other grids
;
ProfileServerURI = "http://mygridserver.com:8002/user"
+ ;; If you want to protect your assets from being copied by foreign visitors
+ ;; uncomment the next line. You may want to do this on sims that have licensed content.
+ ; OutboundPermission = False
+
[Modules]
;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists.
diff --git a/bin/config-include/HyperSimianGrid.ini b/bin/config-include/HyperSimianGrid.ini
index 0b01116..89d6be7 100644
--- a/bin/config-include/HyperSimianGrid.ini
+++ b/bin/config-include/HyperSimianGrid.ini
@@ -82,3 +82,14 @@
[Profiles]
Module = "SimianProfiles"
+
+[HGInventoryAccessModule]
+ ;
+ ; === HG ONLY ===
+ ; Change this to your profile server
+ ; accessible from other grids
+ ;
+ ProfileServerURI = "http://mygridserver.com:8002/user"
+ ;; If you want to protect your assets from being copied by foreign visitors
+ ;; uncomment the next line. You may want to do this on sims that have licensed content.
+ ; OutboundPermission = False
diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example
index 4956bc3..213219c 100644
--- a/bin/config-include/StandaloneCommon.ini.example
+++ b/bin/config-include/StandaloneCommon.ini.example
@@ -33,6 +33,10 @@
[HGInventoryAccessModule]
ProfileServerURI = "http://127.0.0.1:9000/profiles"
+ ;; If you want to protect your assets from being copied by foreign visitors
+ ;; uncomment the next line. You may want to do this on sims that have licensed content.
+ ; OutboundPermission = False
+
[Modules]
;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists.
--
cgit v1.1