| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
|
|
|
| |
are now in CoreModules/ServiceConnectorsIn, where they belong.
|
|
|
|
| |
IGridServices, erroneously. Not sure when this is used, but now it is implemented in the new model of service connectors. Hopefully it works.
|
|
|
|
|
|
|
|
|
|
| |
objects, with changes:
- Set OwnerID = GroupID for deeded objects.
- Close a security loophole that would have allowed a user with deed rights in a group to deed ANY object to that group, even if it's not owned by them and/or not set to that group
- Set LastOwnerID correctly. Handle objects vs. prims correctly.
|
| |
|
|
|
|
| |
Region/CoreModules/ServiceConnectorsOut. No functional changes.
|
|
|
|
|
|
|
|
|
|
|
| |
(a) Implements the ICommandableModule interface to clean up the user interface
(b) Uses a specification for a 'copse' (collected group of trees) which permits via an xml file: Tree type; Tree Line (high and low), Seed point; Radius of Copse; Number of required trees; Initial size of seeded tree; maximum size of seeded tree; growth rate; freeze growth state
(c) Multiple Copse may be defined for a region
(d) Growth on individual copse may be frozen or restarted, or all growth disabled/enabled
(e) Copse definitions are persistant, they are reloaded from the trees present on a region restart
(f) All trees in a copse may be removed and the copse definition deleted in one command
|
| |
|
| |
|
| |
|
|
|
|
| |
get more functions as we go along. It's a very simple service and service connectors, and it served primarily to establish the design of services that dependent on Scenes and that must always have a local connector. More refactoring coming, as this showed how to do it right.
|
|
|
|
| |
http://opensimulator.org/mantis/view.php?id=3741 by disabling the loading of OAR creation information
|
| |
|
|
|
|
|
|
|
|
|
| |
from AddRegion()
* This is necessary to avoid a dependency problem where LLStandaloneLoginModule references IInventoryService before the LocalInventoryServiceConnector is registered
* Correct some copypasta log messages in LocalInventoryServiceConnector
|
|
|
|
|
|
|
| |
Changing the names of these methods because they were being picked up by
nunit as tests even though they were marked private. Naming them Check*
after the original Test*.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
don't accidentally go on to process them
|
| |
|
|
|
|
| |
failing
|
| |
|
|
|
|
| |
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 :)
|
|
|
|
| |
not being set in the cached profile. I suspect this bug has been around for a while.
|
| |
|
|
|
|
|
| |
SQLite error on creating user.
|
| |
|
|
|
|
| |
default
|
|
|
|
| |
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
|