aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTORS.txt90
-rw-r--r--OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql20
-rw-r--r--OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql22
-rw-r--r--OpenSim/Framework/Data.MySQL/Resources/CreateItemsTable.sql36
-rw-r--r--OpenSim/Framework/Data.MySQL/Resources/UpgradeFoldersTableToVersion2.sql8
-rw-r--r--OpenSim/Framework/Data.MySQL/Resources/UpgradeItemsTableToVersion2.sql18
-rw-r--r--ThirdPartyLicenses/Nini.txt46
-rw-r--r--ThirdPartyLicenses/XML-RPC.NET.txt52
-rw-r--r--bin/assets/Avatar/Newruth/Settings.txt240
-rwxr-xr-xset-eol-style.sh13
-rw-r--r--share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt16
11 files changed, 282 insertions, 279 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 53da7d6..73a46e7 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -1,45 +1,45 @@
1The following people have contributed to OpenSim (Thank you 1The following people have contributed to OpenSim (Thank you
2for your effort!) 2for your effort!)
3 3
4Add your name in here if you have committed to OpenSim 4Add your name in here if you have committed to OpenSim
5 5
6OpenSim Developers 6OpenSim Developers
7 7
8* MW 8* MW
9* Adam Frisby (DeepThink Pty Ltd) 9* Adam Frisby (DeepThink Pty Ltd)
10* MingChen (DeepThink Pty Ltd) 10* MingChen (DeepThink Pty Ltd)
11* lbsa71 11* lbsa71
12* sdague (International Business Machines Corp.) 12* sdague (International Business Machines Corp.)
13* Andy- 13* Andy-
14* Gareth 14* Gareth
15* MorphW 15* MorphW
16* CW 16* CW
17* Babblefrog 17* Babblefrog
18* Tedd 18* Tedd
19 19
20Patches 20Patches
21 21
22* BigFootAg 22* BigFootAg
23* Danx0r 23* Danx0r
24* Dalien 24* Dalien
25* Darok 25* Darok
26 26
27Testers 27Testers
28 28
29* Ckrinke 29* Ckrinke
30 30
31 31
32This software uses components from the following developers: 32This software uses components from the following developers:
33* Sleepycat Software (Berkeley DB) 33* Sleepycat Software (Berkeley DB)
34* DB4objects, Inc. (DB4o) 34* DB4objects, Inc. (DB4o)
35* SQLite (Public Domain) 35* SQLite (Public Domain)
36* XmlRpcCS (http://xmlrpccs.sf.net/) 36* XmlRpcCS (http://xmlrpccs.sf.net/)
37* MySQL, Inc. (MySQL Connector/NET) 37* MySQL, Inc. (MySQL Connector/NET)
38* AGEIA Inc. (PhysX) 38* AGEIA Inc. (PhysX)
39* Russel L. Smith (ODE) 39* Russel L. Smith (ODE)
40* Prebuild ( http://sourceforge.net/projects/dnpb/ ) 40* Prebuild ( http://sourceforge.net/projects/dnpb/ )
41 41
42In addition, we would like to thank: 42In addition, we would like to thank:
43* The Mono Project 43* The Mono Project
44* The NANT Developers 44* The NANT Developers
45* Microsoft (.NET, MSSQL-Adapters) 45* Microsoft (.NET, MSSQL-Adapters)
diff --git a/OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql b/OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql
index b9c1b97..2c750fe 100644
--- a/OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql
+++ b/OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql
@@ -1,11 +1,11 @@
1CREATE TABLE `assets` ( 1CREATE TABLE `assets` (
2 `id` binary(16) NOT NULL, 2 `id` binary(16) NOT NULL,
3 `name` varchar(64) NOT NULL, 3 `name` varchar(64) NOT NULL,
4 `description` varchar(64) NOT NULL, 4 `description` varchar(64) NOT NULL,
5 `assetType` tinyint(4) NOT NULL, 5 `assetType` tinyint(4) NOT NULL,
6 `invType` tinyint(4) NOT NULL, 6 `invType` tinyint(4) NOT NULL,
7 `local` tinyint(1) NOT NULL, 7 `local` tinyint(1) NOT NULL,
8 `temporary` tinyint(1) NOT NULL, 8 `temporary` tinyint(1) NOT NULL,
9 `data` longblob NOT NULL, 9 `data` longblob NOT NULL,
10 PRIMARY KEY (`id`) 10 PRIMARY KEY (`id`)
11) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 1'; \ No newline at end of file 11) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 1'; \ No newline at end of file
diff --git a/OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql b/OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql
index 2bb5553..b5bddde 100644
--- a/OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql
+++ b/OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql
@@ -1,11 +1,11 @@
1CREATE TABLE `inventoryfolders` ( 1CREATE TABLE `inventoryfolders` (
2 `folderID` varchar(36) NOT NULL default '', 2 `folderID` varchar(36) NOT NULL default '',
3 `agentID` varchar(36) default NULL, 3 `agentID` varchar(36) default NULL,
4 `parentFolderID` varchar(36) default NULL, 4 `parentFolderID` varchar(36) default NULL,
5 `folderName` varchar(64) default NULL, 5 `folderName` varchar(64) default NULL,
6 `type` smallint NOT NULL default 0, 6 `type` smallint NOT NULL default 0,
7 `version` int NOT NULL default 0, 7 `version` int NOT NULL default 0,
8 PRIMARY KEY (`folderID`), 8 PRIMARY KEY (`folderID`),
9 KEY `owner` (`agentID`), 9 KEY `owner` (`agentID`),
10 KEY `parent` (`parentFolderID`) 10 KEY `parent` (`parentFolderID`)
11) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 2'; 11) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 2';
diff --git a/OpenSim/Framework/Data.MySQL/Resources/CreateItemsTable.sql b/OpenSim/Framework/Data.MySQL/Resources/CreateItemsTable.sql
index 8c79483..53d2db0 100644
--- a/OpenSim/Framework/Data.MySQL/Resources/CreateItemsTable.sql
+++ b/OpenSim/Framework/Data.MySQL/Resources/CreateItemsTable.sql
@@ -1,18 +1,18 @@
1CREATE TABLE `inventoryitems` ( 1CREATE TABLE `inventoryitems` (
2 `inventoryID` varchar(36) NOT NULL default '', 2 `inventoryID` varchar(36) NOT NULL default '',
3 `assetID` varchar(36) default NULL, 3 `assetID` varchar(36) default NULL,
4 `assetType` int(11) default NULL, 4 `assetType` int(11) default NULL,
5 `parentFolderID` varchar(36) default NULL, 5 `parentFolderID` varchar(36) default NULL,
6 `avatarID` varchar(36) default NULL, 6 `avatarID` varchar(36) default NULL,
7 `inventoryName` varchar(64) default NULL, 7 `inventoryName` varchar(64) default NULL,
8 `inventoryDescription` varchar(64) default NULL, 8 `inventoryDescription` varchar(64) default NULL,
9 `inventoryNextPermissions` int(10) unsigned default NULL, 9 `inventoryNextPermissions` int(10) unsigned default NULL,
10 `inventoryCurrentPermissions` int(10) unsigned default NULL, 10 `inventoryCurrentPermissions` int(10) unsigned default NULL,
11 `invType` int(11) default NULL, 11 `invType` int(11) default NULL,
12 `creatorID` varchar(36) default NULL, 12 `creatorID` varchar(36) default NULL,
13 `inventoryBasePermissions` int(10) unsigned NOT NULL default 0, 13 `inventoryBasePermissions` int(10) unsigned NOT NULL default 0,
14 `inventoryEveryOnePermissions` int(10) unsigned NOT NULL default 0, 14 `inventoryEveryOnePermissions` int(10) unsigned NOT NULL default 0,
15 PRIMARY KEY (`inventoryID`), 15 PRIMARY KEY (`inventoryID`),
16 KEY `owner` (`avatarID`), 16 KEY `owner` (`avatarID`),
17 KEY `folder` (`parentFolderID`) 17 KEY `folder` (`parentFolderID`)
18) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 2'; 18) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 2';
diff --git a/OpenSim/Framework/Data.MySQL/Resources/UpgradeFoldersTableToVersion2.sql b/OpenSim/Framework/Data.MySQL/Resources/UpgradeFoldersTableToVersion2.sql
index 813c7c4..b5a7964 100644
--- a/OpenSim/Framework/Data.MySQL/Resources/UpgradeFoldersTableToVersion2.sql
+++ b/OpenSim/Framework/Data.MySQL/Resources/UpgradeFoldersTableToVersion2.sql
@@ -1,4 +1,4 @@
1ALTER TABLE `inventoryfolders` 1ALTER TABLE `inventoryfolders`
2 ADD COLUMN `type` smallint NOT NULL default 0, 2 ADD COLUMN `type` smallint NOT NULL default 0,
3 ADD COLUMN `version` int NOT NULL default 0, 3 ADD COLUMN `version` int NOT NULL default 0,
4COMMENT='Rev. 2'; 4COMMENT='Rev. 2';
diff --git a/OpenSim/Framework/Data.MySQL/Resources/UpgradeItemsTableToVersion2.sql b/OpenSim/Framework/Data.MySQL/Resources/UpgradeItemsTableToVersion2.sql
index c47786c..d1ef504 100644
--- a/OpenSim/Framework/Data.MySQL/Resources/UpgradeItemsTableToVersion2.sql
+++ b/OpenSim/Framework/Data.MySQL/Resources/UpgradeItemsTableToVersion2.sql
@@ -1,9 +1,9 @@
1ALTER TABLE `inventoryitems` 1ALTER TABLE `inventoryitems`
2 CHANGE COLUMN `type` `assetType` int(11) default NULL, 2 CHANGE COLUMN `type` `assetType` int(11) default NULL,
3 ADD COLUMN `invType` int(11) default NULL, 3 ADD COLUMN `invType` int(11) default NULL,
4 ADD COLUMN `creatorID` varchar(36) default NULL, 4 ADD COLUMN `creatorID` varchar(36) default NULL,
5 ADD COLUMN `inventoryBasePermissions` int(10) unsigned NOT NULL default 0, 5 ADD COLUMN `inventoryBasePermissions` int(10) unsigned NOT NULL default 0,
6 ADD COLUMN `inventoryEveryOnePermissions` int(10) unsigned NOT NULL default 0, 6 ADD COLUMN `inventoryEveryOnePermissions` int(10) unsigned NOT NULL default 0,
7COMMENT='Rev. 2'; 7COMMENT='Rev. 2';
8 8
9UPDATE `inventoryitems` SET invType=assetType; 9UPDATE `inventoryitems` SET invType=assetType;
diff --git a/ThirdPartyLicenses/Nini.txt b/ThirdPartyLicenses/Nini.txt
index 6de2d7f..fe38b62 100644
--- a/ThirdPartyLicenses/Nini.txt
+++ b/ThirdPartyLicenses/Nini.txt
@@ -1,23 +1,23 @@
1 1
2Nini Configuration Project. 2Nini Configuration Project.
3Copyright (c) 2006 Brent R. Matzelle 3Copyright (c) 2006 Brent R. Matzelle
4 4
5Permission is hereby granted, free of charge, to any person obtaining 5Permission is hereby granted, free of charge, to any person obtaining
6a copy of this software and associated documentation files (the 6a copy of this software and associated documentation files (the
7"Software"), to deal in the Software without restriction, including 7"Software"), to deal in the Software without restriction, including
8without limitation the rights to use, copy, modify, merge, publish, 8without limitation the rights to use, copy, modify, merge, publish,
9distribute, sublicense, and/or sell copies of the Software, and to 9distribute, sublicense, and/or sell copies of the Software, and to
10permit persons to whom the Software is furnished to do so, subject to 10permit persons to whom the Software is furnished to do so, subject to
11the following conditions: 11the following conditions:
12 12
13The above copyright notice and this permission notice shall be 13The above copyright notice and this permission notice shall be
14included in all copies or substantial portions of the Software. 14included in all copies or substantial portions of the Software.
15 15
16THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 23
diff --git a/ThirdPartyLicenses/XML-RPC.NET.txt b/ThirdPartyLicenses/XML-RPC.NET.txt
index d135523..2aff37f 100644
--- a/ThirdPartyLicenses/XML-RPC.NET.txt
+++ b/ThirdPartyLicenses/XML-RPC.NET.txt
@@ -1,27 +1,27 @@
1XML-RPC.NET - XML-RPC for .NET 1XML-RPC.NET - XML-RPC for .NET
2v2.1.0 2v2.1.0
3Copyright (C) 2001-2006 Charles Cook (chascook@gmail.com) 3Copyright (C) 2001-2006 Charles Cook (chascook@gmail.com)
4 4
5xmlrpcgen 5xmlrpcgen
6Copyright (C) 2003 Joe Bork 6Copyright (C) 2003 Joe Bork
7 7
8For more information about XML-RPC.NET visit http://www.xml-rpc.net. 8For more information about XML-RPC.NET visit http://www.xml-rpc.net.
9 9
10XML-RPC.NET is licensed with MIT X11 license. 10XML-RPC.NET is licensed with MIT X11 license.
11(see http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#6.12) 11(see http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#6.12)
12 12
13For more information about XML-RPC refer to http://www.xmlrpc.com/ 13For more information about XML-RPC refer to http://www.xmlrpc.com/
14 14
15 15
16PREQUISITES 16PREQUISITES
17----------- 17-----------
18Assembly CookComputing.XmlRpc.dll requires 1.0 .NET runtime and 18Assembly CookComputing.XmlRpc.dll requires 1.0 .NET runtime and
19runs on all later versions. 19runs on all later versions.
20 20
21Assembly CookComputing.XmlRpcV2.dll requires 2.0 .NET runtime. 21Assembly CookComputing.XmlRpcV2.dll requires 2.0 .NET runtime.
22 22
23 23
24DOCUMENTATION 24DOCUMENTATION
25------------- 25-------------
26For help on using XML-RPC.NET, see 26For help on using XML-RPC.NET, see
27http://www.xml-rpc.net/faq/xmlrpcnetfaq.html. \ No newline at end of file 27http://www.xml-rpc.net/faq/xmlrpcnetfaq.html. \ No newline at end of file
diff --git a/bin/assets/Avatar/Newruth/Settings.txt b/bin/assets/Avatar/Newruth/Settings.txt
index 58b2485..16bc5ad 100644
--- a/bin/assets/Avatar/Newruth/Settings.txt
+++ b/bin/assets/Avatar/Newruth/Settings.txt
@@ -1,120 +1,120 @@
1Sliders: 1Sliders:
2 2
3Shape 3Shape
4 4
5Body 5Body
6Height - 70 6Height - 70
7Thickness - 8 7Thickness - 8
8Body Fat - 3 8Body Fat - 3
9 9
10 10
11Head 11Head
12Head size - 67 12Head size - 67
13Head Stretch - 43 13Head Stretch - 43
14Head Shape - 55 14Head Shape - 55
15Egg Head - 72 15Egg Head - 72
16Head Length - 71 16Head Length - 71
17Face Shear - 50 17Face Shear - 50
18Forehead Angle - 61 18Forehead Angle - 61
19Brow Size - 4 19Brow Size - 4
20Upper Cheeks - 42 20Upper Cheeks - 42
21Lower Cheeks - 34 21Lower Cheeks - 34
22Cheekbones - 67 22Cheekbones - 67
23 23
24Eyes 24Eyes
25Eye size - 35 25Eye size - 35
26Eye opening - 59 26Eye opening - 59
27Eye spacing - 44 27Eye spacing - 44
28Outer Eye Corner - 58 28Outer Eye Corner - 58
29Inner Eye Corner - 0 29Inner Eye Corner - 0
30Eye Depth - 39 30Eye Depth - 39
31Upper Eyelid Fold - 14 31Upper Eyelid Fold - 14
32Eye bags - 0 32Eye bags - 0
33Puffy Eyelids - 6 33Puffy Eyelids - 6
34Eyelash Length - 0 34Eyelash Length - 0
35Eye Pop - 50 35Eye Pop - 50
36 36
37Ears 37Ears
38Ear Size - 39 38Ear Size - 39
39Ear Angle - 38 39Ear Angle - 38
40Attached Earlobes - 37 40Attached Earlobes - 37
41Ear Flaps - 6 41Ear Flaps - 6
42 42
43Nose 43Nose
44Nose size - 24 44Nose size - 24
45Nostril Width - 24 45Nostril Width - 24
46Nostril Division - 61 46Nostril Division - 61
47Nose thickness - 26 47Nose thickness - 26
48Upper Bridge - 18 48Upper Bridge - 18
49lower bridge - 64 49lower bridge - 64
50bridge width - 58 50bridge width - 58
51nose tip angle - 51 51nose tip angle - 51
52nose tip shape - 0 52nose tip shape - 0
53crooked nose - 50 53crooked nose - 50
54 54
55Mouth 55Mouth
56Lip width - 16 56Lip width - 16
57Lip fullness - 35 57Lip fullness - 35
58Lip thickness - 62 58Lip thickness - 62
59Lip ratio - 43 59Lip ratio - 43
60Mouth position - 43 60Mouth position - 43
61Mouth corner - 59 61Mouth corner - 59
62Lip cleft depth - 42 62Lip cleft depth - 42
63Lip cleft - 41 63Lip cleft - 41
64Shift mouth - 50 64Shift mouth - 50
65 65
66Chin 66Chin
67Chin angle - 22 67Chin angle - 22
68Jaw shape - 21 68Jaw shape - 21
69Chin depth - 26 69Chin depth - 26
70Jaw angle 0 64 70Jaw angle 0 64
71Jaw jut - 54 71Jaw jut - 54
72Jowls - 39 72Jowls - 39
73Chin cleft - 0 73Chin cleft - 0
74Upper chin cleft - 15 74Upper chin cleft - 15
75Chin Neck - 17 75Chin Neck - 17
76 76
77Torso 77Torso
78Torso muscles - 46 78Torso muscles - 46
79Neck thickness - 50 79Neck thickness - 50
80Neck length - 28 80Neck length - 28
81Shoulders - 57 81Shoulders - 57
82Breast size - 53 82Breast size - 53
83Breast buoyancy - 34 83Breast buoyancy - 34
84Breast Cleavage - 16 84Breast Cleavage - 16
85Arm length - 46 85Arm length - 46
86Hand size - 47 86Hand size - 47
87Torse length - 37 87Torse length - 37
88Love handles - 36 88Love handles - 36
89Belly size - 13 89Belly size - 13
90 90
91Legs 91Legs
92Leg muscles - 69 92Leg muscles - 69
93Leg length - 54 93Leg length - 54
94Hip width - 53 94Hip width - 53
95Butt size - 40 95Butt size - 40
96Saddle bags - 27 96Saddle bags - 27
97Knee angle - 44 97Knee angle - 44
98Foot size - 0 98Foot size - 0
99 99
100Hair 100Hair
101Color 101Color
102White hair - 11 102White hair - 11
103Rainbow color - 0 103Rainbow color - 0
104Blonde hair - 0 104Blonde hair - 0
105Red hair - 100 105Red hair - 100
106 106
107Style 107Style
108Hair volume - 45 108Hair volume - 45
109Hair front - 0 109Hair front - 0
110Hair sides - 27 110Hair sides - 27
111Hair Back - 100 111Hair Back - 100
112Big Hair Front - 61 112Big Hair Front - 61
113Big Hair Top - 90 113Big Hair Top - 90
114Big hair back - 12 114Big hair back - 12
115Front fringe - 33 115Front fringe - 33
116Side fringe - 24 116Side fringe - 24
117Back fringe - 9 117Back fringe - 9
118Full hair sides - 75 118Full hair sides - 75
119 119
120 120
diff --git a/set-eol-style.sh b/set-eol-style.sh
index 30c3e0f..af8887b 100755
--- a/set-eol-style.sh
+++ b/set-eol-style.sh
@@ -2,14 +2,17 @@
2 2
3set_eol_style() 3set_eol_style()
4{ 4{
5 for file in $*; do 5 IFS=$'\n'
6 svn_status=`svn propget svn:eol-style $file` 6 for file in `find . -iname \*\.$1`; do
7 if [ -z "${svn_status}" -o "${svn_status}" != "native" ]; then 7 eolstyle=`svn propget svn:eol-style $file`
8 if [ -z "${eolstyle}" -o "${eolstyle}" != "native" ]; then
8 svn propset svn:eol-style native $file 9 svn propset svn:eol-style native $file
9 fi 10 fi
10 done 11 done
11} 12}
12 13
13for file in `find OpenSim -name \*\.cs`; do 14EXTENSIONS="cs ini example txt sql"
14 set_eol_style $file 15
16for ext in ${EXTENSIONS}; do
17 set_eol_style $ext
15done 18done
diff --git a/share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt b/share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt
index f3afd43..75afcdf 100644
--- a/share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt
+++ b/share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt
@@ -1,9 +1,9 @@
1The remote region loading ability allows easier management of what regions a simulator run s from a webserver. 1The remote region loading ability allows easier management of what regions a simulator run s from a webserver.
2In OpenSim.ini, change the 'region_info_source = filesystem' under [Startup] to 'region_info_source = web'. 2In OpenSim.ini, change the 'region_info_source = filesystem' under [Startup] to 'region_info_source = web'.
3Then change the line 'regionload_webserver_url = ' to 'regionload_webserver_url = http://127.0.0.1/default.xml' 3Then change the line 'regionload_webserver_url = ' to 'regionload_webserver_url = http://127.0.0.1/default.xml'
4replacing 'http://127.0.0.1/default.xml' with the URL of the region XML file. 4replacing 'http://127.0.0.1/default.xml' with the URL of the region XML file.
5 5
6The XML file of a remote region is similar to the filesystem version, except it is in one file instead of multiple 6The XML file of a remote region is similar to the filesystem version, except it is in one file instead of multiple
7region_xxx.xml files. 7region_xxx.xml files.
8 8
9See example_web.xml for an example on how to make a web version for region loading. \ No newline at end of file 9See example_web.xml for an example on how to make a web version for region loading. \ No newline at end of file