| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Change all uses of the HttpServer properties to use the new singleton
|
| |
|
|
|
|
|
|
|
| |
reside in the economy module was lost in the shuffle when that was moved
to forge. Now it's where it belongs.
|
|
|
|
|
|
|
|
| |
Attached is a patch that changes the oar file saving of creation date/time to an integer
instead of a string. I did this after justincc emailed me saying there is a problem
with internationalisation doing it the old way and I said I'd fix it. Its been
tested with MySQL and I've made the changes for MSSQL but that hasn't been well tested.
|
|
|
|
|
|
|
| |
engine, caused by an "avatar infinite position" occurring under
heavy load.
- fixes "value too small" exception in ChatModule
|
|
|
|
|
|
|
| |
is only required when taing an object you don't own, now.
Fixes Mantis #3838
|
|
|
|
|
|
| |
connector and the glue code.
|
| |
|
| |
|
|
|
|
|
|
|
| |
or logoff. Regions come and go and we can't throw just because someone
took their region off the grid, or crashed.
|
|
|
|
|
|
|
|
|
| |
out which client connection has closed. So, in multi-region sims, things
can get messy fast.
This introduces a second parameters, which is a Scene object ref. Minor
adjustments to custom modules may be required due to this change.
|
|
|
|
| |
cache - Mantis #3819
|
|
|
|
| |
lowers Land
|
|
|
|
|
| |
* "luke, use the sed"
|
|
|
|
| |
making HGInventory (client access) work in standalone again. This is the refactoring of what was/is there, but done in the new model. Not complete yet, but key authentication works. It should be enough to make HGInventory work again soon.
|
| |
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
|
|
|
| |
don't accidentally go on to process them
|
| |
|
|
|
|
| |
failing
|
| |
|
|
|
|
| |
behavior, so they are still commented out.
|
|
|
|
| |
simulator. Only a couple left, not important. Also updated the login tests -- Justin, this time I was able to fix this by myself :)
|
| |
|
|
|
|
| |
default
|
|
|
|
| |
this new inventory model.
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
missing. Thank you mcortez!
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
| |
* Issue was that region server was silently dropping an XmlException caused by trying to deserialize the blank asset service response
* So make asset service return http status NOT FOUND rather than OK in accordance with REST
* and interpret this correctly in the async response so that a null object is sent back
* This means that this fix won't be active until both region simulator and server reach this revision
|