Teravus Ovares
f191f38a3e
* Fix a rare maptile shading error, terrain difference mod 1 = 0 + abs = oops.
2008-08-16 19:03:29 +00:00
Jeff Ames
6fa26f5b41
Update svn properties, minor formatting cleanup.
2008-08-16 17:26:25 +00:00
Teravus Ovares
80186a68df
* Adds Slightly better terrain shading to maptile generation.
2008-08-16 06:09:45 +00:00
Melanie Thielker
682ffef101
Reshuffle to eliminate prim owner lookups unless gridgods are enabled
2008-08-16 05:41:40 +00:00
Melanie Thielker
e5a7ba5df4
Guard against the null UUID being queried from the userserver
...
repeatedly.
2008-08-16 03:18:21 +00:00
Melanie Thielker
9807a86398
Guard against a null ref in the permissions module when a profile
...
fetch fails.
2008-08-16 02:57:47 +00:00
Charles Krinke
5ed5d0788b
Mantis#1890. Thank you kindly, Godfrey, for a patch that addresses:
...
llListSort() sorts integers and floats in ASCII order rather than numeric order
2008-08-16 02:39:46 +00:00
Charles Krinke
35f0e6f6f4
Mantis#1964. Thank you kindly, BlueWall for a patch that:
...
Parch adds PRIM_BUMP_SHINY handling to llSetPrimitiveParams
2008-08-16 02:33:26 +00:00
Melanie Thielker
1c40f4d951
Remove a project that had no buiness being in there
2008-08-16 02:31:58 +00:00
Charles Krinke
9a6bdd9701
Mantis#1963. Thank you kindly, Krtaylor for a patch that solves:
...
XEngine missing string constructor for LSLInteger and LSLFloat
2008-08-16 02:28:30 +00:00
Melanie Thielker
328ab79b78
Refactor a lot of direct calls to OGS1 to use the cached version instead.
...
Scripts can now no longer DOS the user server and there are a lot fewer
gratuitious lookups of user profile data.
2008-08-16 02:00:36 +00:00
Melanie Thielker
437b4a8aaa
Perils of copypaste. Missing references.
2008-08-15 23:35:01 +00:00
Melanie Thielker
32f90a028f
Fix repeated user profile info lookups. Redirect those lookups to cache.
2008-08-15 23:29:34 +00:00
Melanie Thielker
04488d9d38
Plumb in the partner and the account title fields for profile info.
2008-08-15 22:49:26 +00:00
Melanie Thielker
c1fa7592c7
Pantis #1957
...
Thank you, Leaf, for a patch that implements llGetAnimationList()
XEngine implementation added by myself.
2008-08-15 21:18:08 +00:00
Melanie Thielker
72b8c1af1c
Plumb the user flags all the way through to the profile. userFlags in
...
the database is now intepreted as follows: low byte = user flags.
Next byte, low nibble: Deternines the text (Resident, Lifetime, etc)
shown. No customn text support yet.
2008-08-15 19:19:24 +00:00
Melanie Thielker
63856f6330
Mantis #1951
...
Trigger a persistence save when only name or description have
changed.
2008-08-15 16:51:26 +00:00
Melanie Thielker
9f8ff36348
Mantis #1961
...
Thank you, BlueWall, for a patch that adds PRIM_GLOW
2008-08-15 16:26:56 +00:00
Melanie Thielker
3e7e0c8ced
Small fox in the database, god level was being overwritten with the user
...
flags value
2008-08-15 14:33:43 +00:00
Melanie Thielker
9f4a77e814
The missing option in OpenSim.ini.example...
2008-08-15 13:29:29 +00:00
Melanie Thielker
dfc553d0a4
Fix up master avatar handling for estate owners. Introduces a new
...
hierarchical rights structure. MasterAvatar: Owner of the region server
(may be null), net gods (users with GodLevel 200), Estate owner
(from database). Look at Opensim.ini.example to enable net gods.
Estate owner will default to master avatar.
2008-08-15 13:13:39 +00:00
Jeff Ames
53b0ef82b3
Minor formatting cleanup.
2008-08-15 10:29:17 +00:00
Melanie Thielker
6717839d65
Fixes a case where neighboring region info cannot be obtained
...
and the region server tries to output the region information
using the unobtainable RegionInfo.
Caused a crash in GS1GridServices.cs, line 928
2008-08-15 10:26:03 +00:00
Jeff Ames
dde21314e7
Update svn properties, formatting cleanup, fix a couple compiler warnings.
2008-08-15 10:24:04 +00:00
Melanie Thielker
e1620c5cc3
Fixes a case where, when inventory is not currently accessible due
...
to other issues, detaching an attachment would cause an exception.
2008-08-15 10:07:45 +00:00
Dr Scofield
d96701a0e4
From: Richard Alimi <ralimi@us.ibm.com>
...
The following patch allows an asset to be added via the REST interface.
2008-08-15 07:45:23 +00:00
Dr Scofield
08c5c71200
From: Richard Alimi <ralimi@us.ibm.com>
...
The following patch implements adding prims to a region using the Xml2
format.
2008-08-15 07:33:58 +00:00
Dr Scofield
9df18bb544
From: Richard Alimi <ralimi@us.ibm.com>
...
The following patch implements retrieving prims in Xml2 format via the REST
interface. For example:
http://localhost:9000/admin/regions/ <region-uuid>/prims/
It also allows an additional parameter which specifies a bounding box. If
this parameter is specified, only prims within the bounding box are
retrieved. For example:
http://localhost:9000/admin/regions/8cd759b4-e077-489d-9a34-e1ff70ef65dd/prims/0,0,0,128,128,128
will retrieve only the prims whose positions are in the bounding box with
corners (0,0,0) and (128,128,128).
2008-08-15 07:28:28 +00:00
Dr Scofield
8d479fe5af
From: Richard Alimi <ralimi@us.ibm.com>
...
The following patch makes some enhancements to loading/saving the Xml2
format.
- Add streamed version of functionality for saving prims to Xml2
format. The streamed version (optionally) allows for saving the
prims whose positions appear within a particular bounding box.
- Expose stream versions of LoadPrimsFromXml2 and SavePrimsToXml2 in
the Scene class
- Extend loading from Xml2 (the streamed version) to optionally start
scripts for the loaded scene objects)
2008-08-15 07:20:38 +00:00
Dr Scofield
8606a86d5c
From: Richard Alimi <ralimi@us.ibm.com>
...
The following patch allows spaces in usernames and passwords in HTTP Basic
authentication for REST services.
2008-08-15 07:14:17 +00:00
Dr Scofield
e6e01cee17
From: Richard Alimi <ralimi@us.ibm.com>
...
The following is a patch that disables the addition of the Content-Length
HTTP response header when a chunked response is being sent.
2008-08-15 07:09:48 +00:00
Mike Mazur
60acc370fc
Thanks, krtaylor, for a patch that fixes llListSort() and llListRandomize() failing with stride less than 1. Fix issue 1893.
2008-08-15 00:55:16 +00:00
Melanie Thielker
4041194db9
Refactor: Make the tree creation function take a UUID for the owner
...
Change the tree populator module to supply a sensible value
2008-08-14 21:31:38 +00:00
Melanie Thielker
7161689a97
Adds UserFlags and GodLevel to the user data store and plumbs then in.
...
This will have no effect unless both the UGAI and the region are
this revision or later
2008-08-14 19:59:32 +00:00
Melanie Thielker
c2f1771c63
Make the estate owner work. Changes permissions checks to allow the
...
estate owner user the ability to add and remove estate managers,
and have EM rights outside of that.
2008-08-14 18:08:22 +00:00
Melanie Thielker
35aeb9010a
Mantis #1953
...
Thank you, HomerHorwitz, for a patch that changes login location handling
to use the sim UUID if it has already been stored.
2008-08-14 16:48:51 +00:00
Melanie Thielker
17715da311
Add the UserStore migrations to the TP fixes patch
2008-08-14 11:15:11 +00:00
Dahlia Trimble
230c80be54
Thanks, BlueWall, for a patch that:
...
Binary distributions of OpenSim are not able to get the version info because they lack the ../.svn/entries file. This file exists in the ./bin./svn directory, which would be in a binary distribution. The included patch changes the path from ../.svn/entries to .svn/entries, which allows the version information to be show in "help/about"
2008-08-14 10:23:00 +00:00
Dahlia Trimble
1bf60fa1ac
updated some prim parameters to project maintained versions
2008-08-14 08:59:13 +00:00
Melanie Thielker
e3157e61aa
Mantis #1946
...
Thank you, HomerHorwitz, for a patch that corrects and improves TP
to landmark and home position handling.
2008-08-14 00:04:37 +00:00
Justin Clarke Casey
fb4eb05ae1
* minor: make it clear on the console when a client is being logged out because that client has not responded to pings
2008-08-13 21:45:17 +00:00
Melanie Thielker
0a18d544c5
Mantis #1936
...
Thank you, gsky, for a patch that corrects the threading model
to use the multithreaded apartment in the grid servers and
region server.
2008-08-13 19:22:32 +00:00
Charles Krinke
9f9e7d98ea
Mantis#1942. Thank you kindly, Tyre for a patch that:
...
updates llTriggerSound() so it accepts an object inventory name too
This adds the same functionality like Xantor's patch for llPlaySound()
2008-08-13 15:01:45 +00:00
Charles Krinke
4a2d5d92cc
Mantis#1941. Thank you kindly, Tyre for a patch that
...
makes progress in extracting the line number of LSL
script execution errors.
2008-08-13 14:58:26 +00:00
Charles Krinke
3278ab8397
Mantis#1856. Thank you kindly, HomerHorwitz for a patch that:
...
Fixes this Mantis bug with llTakeControls() & ControllingClient() API.
2008-08-13 14:52:14 +00:00
Melanie Thielker
dd1fc5e3fe
Add a Find(Predicate) method to the cache to look for items by data
...
other than LLUUID.
2008-08-13 14:34:33 +00:00
Charles Krinke
bf363c0ded
Mantis#1934. Thank you Tyre for a patch that:
...
This patch implements the LSL script function
llTeleportAgentHome()
2008-08-13 14:24:37 +00:00
Charles Krinke
9d93668a0a
mantis#1927. Thank you kindly, Leaf for a patch that:
...
Makes progress on fixing scripts in child prims of
attachments not being scheduled for execution.
2008-08-13 14:19:59 +00:00
Charles Krinke
323ada012d
Mantis#1931. Thank you kindly, Kinoc for a patch that:
...
* Yield Prolog 1.0.1 Released : it passes all but 9 of the
421 tests in the ISO Prolog test suite (97.8%) .
* support dynamic predicates and rules.
* support 'import' to use external static functions
improves connection to C# functions
* Matches Yield Prolog r831
2008-08-13 14:13:49 +00:00
Melanie Thielker
e46248ab17
Thank you, tyre, for a patch that fixes a null reference in LSL
...
function llOverMyLand().
2008-08-13 14:13:46 +00:00