| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
behavior, so they are still commented out.
|
|
|
|
| |
(TestUpdateFolder)
|
|
|
|
|
|
|
| |
many. The composition of plugins can be done at the service and connector levels.
This fixes the unit tests that were failing yesterday, but I'm not committing those yet, because I'm seeing 2 of those tests having pass and fail outcomes randomly which suggests that the tests are buggy.
|
|
|
|
| |
simulator. Only a couple left, not important. Also updated the login tests -- Justin, this time I was able to fix this by myself :)
|
|
|
|
| |
incorrect.
|
|
|
|
| |
not being set in the cached profile. I suspect this bug has been around for a while.
|
| |
|
| |
|
|
|
|
|
| |
SQLite error on creating user.
|
| |
|
|
|
|
| |
again with zero configuration.
|
|
|
|
| |
default
|
|
|
|
| |
in libomv.
|
|
|
|
| |
this new inventory model.
|
| |
|
| |
|
| |
|
|
|
|
| |
fix them. The test setup is broken.
|
|
|
|
|
|
|
| |
Several improvements in the connectors themselves.
Several improvements in configurations.
Needed to add a hack in IUserService and UserManagerBase, to be removed when that service is refactored.
|
|
|
|
|
|
|
|
| |
Eat collision errors --- NOTE: this fix might be naive, it seems to
have helped us getting to 81 avatars (whereas we'd crash with 20
before), but it sure would benefit from some check-over by a person
skilled in the art of ODE physics.
|
| |
|
| |
|
|
|
|
|
| |
user does not exist or hasn't logged in yet.
|
| |
|
|
|
|
| |
missing. Thank you mcortez!
|
| |
|
| |
|
|
|
|
|
|
| |
this patch fixes RemoteAdminPlugin gratuitously updating the user
password even if no update was intended.
|
| |
|
|
|
|
|
|
|
|
| |
Applied with changes:
- removed spammy debug message
- corrected tab formatting
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change addresses two issues:
[1] It adds a flag field to the blendface call which allows the
caller to indicate whether or not the generated asset is
temporary, and whether or not the asset being replaced should
be explicitly retired fromt the memory cache. The decimal
values correspond to:
0 - Permanent asset, do not expire old asset
1 - Permanent asset, expire old asset
2 - Temporary asset, do not expire old asset
3 - Temporary asset, expire old asset
'3' corresponds to the default behavior seen today, and is
the continued behavior of the non-blendface calls.
[2] The dynamic texture routines are highly-asynchronous and can
be scheduled simultaneously on a multi-core machine. The nature
of the texture management interfaece is such that updates may
be lost, and the nature of asynchornous operation means that
they may be processed out of order. A lock has been added to
ensure that updates are at least atomic. No attempt has been
made to enforce ordering. The lock applies to the SceneObjectPart
being updated and is held for the lifetime of the TextureEntry
used to carry texture updates (the one instance carries all
faces supported by the prim).
Users of these services should remember that the dynamic texture
call is asynchronous and control will be returned *before* the
texture update has actually occurred. As a result, a isubsequent
GetTexture call may not return the expected asset id. A script
must wait for the corresponding TEXTURE_CHANGED event before
retrieving any texture information.
|
|
|
|
|
|
| |
Fixes Mantis #3784
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
But everything of inventory service is now checked in, first draft.
|
|
|
|
| |
are really necessary.
|
|
|
|
|
|
|
| |
handlers yet, this is just the OUT part for now. It's not active and nothing in the simulator uses this yet. Just checking it in to start sharing with others. There are a couple of interesting software design points that could use other devs opinions.
Hopefully I added all needed files.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
SL's LSL supports lone idents:
integer x;
x;
as well as lone idents in for-loop assignments:
for (x; x < 10; x++) { ... }
while those are errors in C# (MONO at least). This patch skips lone
idents in such places.
Fixes Mantis #3042.
|
|
|
|
|
|
|
|
|
|
|
|
| |
For loops with no assignment are no longer syntax errors. For example,
this is now valid:
for ( ; i < 10; i++) { ... }
Corresponding changes to lsl.{lexer,parser} in r99 in opensim-libs.
Fixes Mantis #2501. Fixes Mantis #2884.
|
|
|
|
|
|
|
| |
how the tests are structured.
(pt2)
|
|
|
|
|
|
|
| |
how the tests are structured.
(pt1)
|
|
|
|
|
|
|
|
| |
It seems overloading the method TestllAngleBetween confused nunit a bit
and caused it to try running the private TestllAngleBetween method. The
method's access modified prevented that from happening, and nunit
complained.
|
|
|
|
| |
grided sims. Made Cenome cache the default in standalone sims. More splitting in ini files, invisible to the user.
|
|
|
|
|
|
|
| |
local file. This caused llHttpRequest and llSetInventoryPermsMask to fail
on regions that load their config from a web server
|
|
|
|
|
|
| |
test commit with cygwin svn
|
| |
|
|
|
|
|
|
| |
* Hopefully now, the nre should not occur and the lock should be correctly unlocked during the initial save oar process
|