diff options
-rw-r--r-- | CONTRIBUTORS.txt | 90 | ||||
-rw-r--r-- | OpenSim/Framework/Data.MySQL/Resources/CreateAssetsTable.sql | 20 | ||||
-rw-r--r-- | OpenSim/Framework/Data.MySQL/Resources/CreateFoldersTable.sql | 22 | ||||
-rw-r--r-- | OpenSim/Framework/Data.MySQL/Resources/CreateItemsTable.sql | 36 | ||||
-rw-r--r-- | OpenSim/Framework/Data.MySQL/Resources/UpgradeFoldersTableToVersion2.sql | 8 | ||||
-rw-r--r-- | OpenSim/Framework/Data.MySQL/Resources/UpgradeItemsTableToVersion2.sql | 18 | ||||
-rw-r--r-- | ThirdPartyLicenses/Nini.txt | 46 | ||||
-rw-r--r-- | ThirdPartyLicenses/XML-RPC.NET.txt | 52 | ||||
-rw-r--r-- | bin/assets/Avatar/Newruth/Settings.txt | 240 | ||||
-rwxr-xr-x | set-eol-style.sh | 13 | ||||
-rw-r--r-- | share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt | 16 |
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 @@ | |||
1 | The following people have contributed to OpenSim (Thank you | 1 | The following people have contributed to OpenSim (Thank you |
2 | for your effort!) | 2 | for your effort!) |
3 | 3 | ||
4 | Add your name in here if you have committed to OpenSim | 4 | Add your name in here if you have committed to OpenSim |
5 | 5 | ||
6 | OpenSim Developers | 6 | OpenSim 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 | ||
20 | Patches | 20 | Patches |
21 | 21 | ||
22 | * BigFootAg | 22 | * BigFootAg |
23 | * Danx0r | 23 | * Danx0r |
24 | * Dalien | 24 | * Dalien |
25 | * Darok | 25 | * Darok |
26 | 26 | ||
27 | Testers | 27 | Testers |
28 | 28 | ||
29 | * Ckrinke | 29 | * Ckrinke |
30 | 30 | ||
31 | 31 | ||
32 | This software uses components from the following developers: | 32 | This 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 | ||
42 | In addition, we would like to thank: | 42 | In 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 @@ | |||
1 | CREATE TABLE `assets` ( | 1 | CREATE 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 @@ | |||
1 | CREATE TABLE `inventoryfolders` ( | 1 | CREATE 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 @@ | |||
1 | CREATE TABLE `inventoryitems` ( | 1 | CREATE 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 @@ | |||
1 | ALTER TABLE `inventoryfolders` | 1 | ALTER 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, |
4 | COMMENT='Rev. 2'; | 4 | COMMENT='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 @@ | |||
1 | ALTER TABLE `inventoryitems` | 1 | ALTER 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, |
7 | COMMENT='Rev. 2'; | 7 | COMMENT='Rev. 2'; |
8 | 8 | ||
9 | UPDATE `inventoryitems` SET invType=assetType; | 9 | UPDATE `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 | ||
2 | Nini Configuration Project. | 2 | Nini Configuration Project. |
3 | Copyright (c) 2006 Brent R. Matzelle | 3 | Copyright (c) 2006 Brent R. Matzelle |
4 | 4 | ||
5 | Permission is hereby granted, free of charge, to any person obtaining | 5 | Permission is hereby granted, free of charge, to any person obtaining |
6 | a copy of this software and associated documentation files (the | 6 | a 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 |
8 | without limitation the rights to use, copy, modify, merge, publish, | 8 | without limitation the rights to use, copy, modify, merge, publish, |
9 | distribute, sublicense, and/or sell copies of the Software, and to | 9 | distribute, sublicense, and/or sell copies of the Software, and to |
10 | permit persons to whom the Software is furnished to do so, subject to | 10 | permit persons to whom the Software is furnished to do so, subject to |
11 | the following conditions: | 11 | the following conditions: |
12 | 12 | ||
13 | The above copyright notice and this permission notice shall be | 13 | The above copyright notice and this permission notice shall be |
14 | included in all copies or substantial portions of the Software. | 14 | included in all copies or substantial portions of the Software. |
15 | 15 | ||
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
19 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | 19 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
20 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | 20 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | 21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
22 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | 22 | WITH 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 @@ | |||
1 | XML-RPC.NET - XML-RPC for .NET | 1 | XML-RPC.NET - XML-RPC for .NET |
2 | v2.1.0 | 2 | v2.1.0 |
3 | Copyright (C) 2001-2006 Charles Cook (chascook@gmail.com) | 3 | Copyright (C) 2001-2006 Charles Cook (chascook@gmail.com) |
4 | 4 | ||
5 | xmlrpcgen | 5 | xmlrpcgen |
6 | Copyright (C) 2003 Joe Bork | 6 | Copyright (C) 2003 Joe Bork |
7 | 7 | ||
8 | For more information about XML-RPC.NET visit http://www.xml-rpc.net. | 8 | For more information about XML-RPC.NET visit http://www.xml-rpc.net. |
9 | 9 | ||
10 | XML-RPC.NET is licensed with MIT X11 license. | 10 | XML-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 | ||
13 | For more information about XML-RPC refer to http://www.xmlrpc.com/ | 13 | For more information about XML-RPC refer to http://www.xmlrpc.com/ |
14 | 14 | ||
15 | 15 | ||
16 | PREQUISITES | 16 | PREQUISITES |
17 | ----------- | 17 | ----------- |
18 | Assembly CookComputing.XmlRpc.dll requires 1.0 .NET runtime and | 18 | Assembly CookComputing.XmlRpc.dll requires 1.0 .NET runtime and |
19 | runs on all later versions. | 19 | runs on all later versions. |
20 | 20 | ||
21 | Assembly CookComputing.XmlRpcV2.dll requires 2.0 .NET runtime. | 21 | Assembly CookComputing.XmlRpcV2.dll requires 2.0 .NET runtime. |
22 | 22 | ||
23 | 23 | ||
24 | DOCUMENTATION | 24 | DOCUMENTATION |
25 | ------------- | 25 | ------------- |
26 | For help on using XML-RPC.NET, see | 26 | For help on using XML-RPC.NET, see |
27 | http://www.xml-rpc.net/faq/xmlrpcnetfaq.html. \ No newline at end of file | 27 | http://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 @@ | |||
1 | Sliders: | 1 | Sliders: |
2 | 2 | ||
3 | Shape | 3 | Shape |
4 | 4 | ||
5 | Body | 5 | Body |
6 | Height - 70 | 6 | Height - 70 |
7 | Thickness - 8 | 7 | Thickness - 8 |
8 | Body Fat - 3 | 8 | Body Fat - 3 |
9 | 9 | ||
10 | 10 | ||
11 | Head | 11 | Head |
12 | Head size - 67 | 12 | Head size - 67 |
13 | Head Stretch - 43 | 13 | Head Stretch - 43 |
14 | Head Shape - 55 | 14 | Head Shape - 55 |
15 | Egg Head - 72 | 15 | Egg Head - 72 |
16 | Head Length - 71 | 16 | Head Length - 71 |
17 | Face Shear - 50 | 17 | Face Shear - 50 |
18 | Forehead Angle - 61 | 18 | Forehead Angle - 61 |
19 | Brow Size - 4 | 19 | Brow Size - 4 |
20 | Upper Cheeks - 42 | 20 | Upper Cheeks - 42 |
21 | Lower Cheeks - 34 | 21 | Lower Cheeks - 34 |
22 | Cheekbones - 67 | 22 | Cheekbones - 67 |
23 | 23 | ||
24 | Eyes | 24 | Eyes |
25 | Eye size - 35 | 25 | Eye size - 35 |
26 | Eye opening - 59 | 26 | Eye opening - 59 |
27 | Eye spacing - 44 | 27 | Eye spacing - 44 |
28 | Outer Eye Corner - 58 | 28 | Outer Eye Corner - 58 |
29 | Inner Eye Corner - 0 | 29 | Inner Eye Corner - 0 |
30 | Eye Depth - 39 | 30 | Eye Depth - 39 |
31 | Upper Eyelid Fold - 14 | 31 | Upper Eyelid Fold - 14 |
32 | Eye bags - 0 | 32 | Eye bags - 0 |
33 | Puffy Eyelids - 6 | 33 | Puffy Eyelids - 6 |
34 | Eyelash Length - 0 | 34 | Eyelash Length - 0 |
35 | Eye Pop - 50 | 35 | Eye Pop - 50 |
36 | 36 | ||
37 | Ears | 37 | Ears |
38 | Ear Size - 39 | 38 | Ear Size - 39 |
39 | Ear Angle - 38 | 39 | Ear Angle - 38 |
40 | Attached Earlobes - 37 | 40 | Attached Earlobes - 37 |
41 | Ear Flaps - 6 | 41 | Ear Flaps - 6 |
42 | 42 | ||
43 | Nose | 43 | Nose |
44 | Nose size - 24 | 44 | Nose size - 24 |
45 | Nostril Width - 24 | 45 | Nostril Width - 24 |
46 | Nostril Division - 61 | 46 | Nostril Division - 61 |
47 | Nose thickness - 26 | 47 | Nose thickness - 26 |
48 | Upper Bridge - 18 | 48 | Upper Bridge - 18 |
49 | lower bridge - 64 | 49 | lower bridge - 64 |
50 | bridge width - 58 | 50 | bridge width - 58 |
51 | nose tip angle - 51 | 51 | nose tip angle - 51 |
52 | nose tip shape - 0 | 52 | nose tip shape - 0 |
53 | crooked nose - 50 | 53 | crooked nose - 50 |
54 | 54 | ||
55 | Mouth | 55 | Mouth |
56 | Lip width - 16 | 56 | Lip width - 16 |
57 | Lip fullness - 35 | 57 | Lip fullness - 35 |
58 | Lip thickness - 62 | 58 | Lip thickness - 62 |
59 | Lip ratio - 43 | 59 | Lip ratio - 43 |
60 | Mouth position - 43 | 60 | Mouth position - 43 |
61 | Mouth corner - 59 | 61 | Mouth corner - 59 |
62 | Lip cleft depth - 42 | 62 | Lip cleft depth - 42 |
63 | Lip cleft - 41 | 63 | Lip cleft - 41 |
64 | Shift mouth - 50 | 64 | Shift mouth - 50 |
65 | 65 | ||
66 | Chin | 66 | Chin |
67 | Chin angle - 22 | 67 | Chin angle - 22 |
68 | Jaw shape - 21 | 68 | Jaw shape - 21 |
69 | Chin depth - 26 | 69 | Chin depth - 26 |
70 | Jaw angle 0 64 | 70 | Jaw angle 0 64 |
71 | Jaw jut - 54 | 71 | Jaw jut - 54 |
72 | Jowls - 39 | 72 | Jowls - 39 |
73 | Chin cleft - 0 | 73 | Chin cleft - 0 |
74 | Upper chin cleft - 15 | 74 | Upper chin cleft - 15 |
75 | Chin Neck - 17 | 75 | Chin Neck - 17 |
76 | 76 | ||
77 | Torso | 77 | Torso |
78 | Torso muscles - 46 | 78 | Torso muscles - 46 |
79 | Neck thickness - 50 | 79 | Neck thickness - 50 |
80 | Neck length - 28 | 80 | Neck length - 28 |
81 | Shoulders - 57 | 81 | Shoulders - 57 |
82 | Breast size - 53 | 82 | Breast size - 53 |
83 | Breast buoyancy - 34 | 83 | Breast buoyancy - 34 |
84 | Breast Cleavage - 16 | 84 | Breast Cleavage - 16 |
85 | Arm length - 46 | 85 | Arm length - 46 |
86 | Hand size - 47 | 86 | Hand size - 47 |
87 | Torse length - 37 | 87 | Torse length - 37 |
88 | Love handles - 36 | 88 | Love handles - 36 |
89 | Belly size - 13 | 89 | Belly size - 13 |
90 | 90 | ||
91 | Legs | 91 | Legs |
92 | Leg muscles - 69 | 92 | Leg muscles - 69 |
93 | Leg length - 54 | 93 | Leg length - 54 |
94 | Hip width - 53 | 94 | Hip width - 53 |
95 | Butt size - 40 | 95 | Butt size - 40 |
96 | Saddle bags - 27 | 96 | Saddle bags - 27 |
97 | Knee angle - 44 | 97 | Knee angle - 44 |
98 | Foot size - 0 | 98 | Foot size - 0 |
99 | 99 | ||
100 | Hair | 100 | Hair |
101 | Color | 101 | Color |
102 | White hair - 11 | 102 | White hair - 11 |
103 | Rainbow color - 0 | 103 | Rainbow color - 0 |
104 | Blonde hair - 0 | 104 | Blonde hair - 0 |
105 | Red hair - 100 | 105 | Red hair - 100 |
106 | 106 | ||
107 | Style | 107 | Style |
108 | Hair volume - 45 | 108 | Hair volume - 45 |
109 | Hair front - 0 | 109 | Hair front - 0 |
110 | Hair sides - 27 | 110 | Hair sides - 27 |
111 | Hair Back - 100 | 111 | Hair Back - 100 |
112 | Big Hair Front - 61 | 112 | Big Hair Front - 61 |
113 | Big Hair Top - 90 | 113 | Big Hair Top - 90 |
114 | Big hair back - 12 | 114 | Big hair back - 12 |
115 | Front fringe - 33 | 115 | Front fringe - 33 |
116 | Side fringe - 24 | 116 | Side fringe - 24 |
117 | Back fringe - 9 | 117 | Back fringe - 9 |
118 | Full hair sides - 75 | 118 | Full 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 | ||
3 | set_eol_style() | 3 | set_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 | ||
13 | for file in `find OpenSim -name \*\.cs`; do | 14 | EXTENSIONS="cs ini example txt sql" |
14 | set_eol_style $file | 15 | |
16 | for ext in ${EXTENSIONS}; do | ||
17 | set_eol_style $ext | ||
15 | done | 18 | done |
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 @@ | |||
1 | The remote region loading ability allows easier management of what regions a simulator run s from a webserver. | 1 | The remote region loading ability allows easier management of what regions a simulator run s from a webserver. |
2 | In OpenSim.ini, change the 'region_info_source = filesystem' under [Startup] to 'region_info_source = web'. | 2 | In OpenSim.ini, change the 'region_info_source = filesystem' under [Startup] to 'region_info_source = web'. |
3 | Then change the line 'regionload_webserver_url = ' to 'regionload_webserver_url = http://127.0.0.1/default.xml' | 3 | Then change the line 'regionload_webserver_url = ' to 'regionload_webserver_url = http://127.0.0.1/default.xml' |
4 | replacing 'http://127.0.0.1/default.xml' with the URL of the region XML file. | 4 | replacing 'http://127.0.0.1/default.xml' with the URL of the region XML file. |
5 | 5 | ||
6 | The XML file of a remote region is similar to the filesystem version, except it is in one file instead of multiple | 6 | The XML file of a remote region is similar to the filesystem version, except it is in one file instead of multiple |
7 | region_xxx.xml files. | 7 | region_xxx.xml files. |
8 | 8 | ||
9 | See example_web.xml for an example on how to make a web version for region loading. \ No newline at end of file | 9 | See example_web.xml for an example on how to make a web version for region loading. \ No newline at end of file |