aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* * as per my e-mail to opensim-dev archive: ↵Teravus Ovares2009-07-251-1/+1
| | | | | | | | https://lists.berlios.de/pipermail/opensim-dev/2009-July/007223.html I'm bumping gridcomms interface version to 5. MajorInterfaceVersion = 5
* * Updates libOMV to version 0.7.0Teravus Ovares2009-07-252-10/+10
| | | | | | | | * Uses mantis #3811 as a base (thanks jhuliman) with changes. * E-mail regarding interface changes sent to the opensim-dev list * Archive: https://lists.berlios.de/pipermail/opensim-dev/2009-July/007219.html
* Formatting cleanup.Jeff Ames2009-07-231-6/+3
|
* * Updated C# WebServer to the latest available source download (r19869) and ↵Teravus Ovares2009-07-212-5/+45
| | | | | | | | | | applied a few mods from the old version (now up on opensim-libs (VS 3.5 project). * Made various changes to BaseHttpServer to accommodate the new interfaces. * This version has been significantly re-architected and may fail in unusual and insidious ways. * Please pay attention to any errors you get and post a Mantis if you can reproduce an issue with the HTTPServer. I'm including the pdb and having the http server compiled in debug for a few weeks so that when an error occurs, it'll print the pertenant data. * Once again, this is the full C# WebServer, not the lite branch that is included in LibOMV (we need SSL!)
* * Created a way that the OpenSimulator scene can ask the physics scene to do ↵Teravus Ovares2009-07-191-0/+1
| | | | | | | | | a raycast test safely. * Test for prim obstructions between the avatar and camera. If there are obstructions, inform the client to move the camera closer. This makes it so that walls and objects don't obstruct your view while you're moving around. Try walking inside a hollowed tori. You'll see how much easier it is now because your camera automatically moves closer so you can still see. * Created a way to know if the user's camera is alt + cammed or just following the avatar. * Changes IClientAPI interface by adding SendCameraConstraint(Vector4 CameraConstraint)
* fixed the bug where changing the rotation of a selection of prims in a ↵MW2009-07-171-0/+3
| | | | | | | | | linkset, made each of those prims rotate around its own centre rather than around the geometric centre of the selection like they should do (and like the client expects). This involved adding a new OnUpdatePrimSingleRotationPosition event to IClientAPI so that we can get the changed position from the client. Btw adding new events to IClientAPI is really tedious where you have to copy the change across to at least 5 or 6 other files. [Note this doesn't fix the bug where any rotation changes to the root prim (but not the whole linkset) cause rotation errors on the child prims.]
* minor: remove some mono compiler warningsJustin Clarke Casey2009-07-153-5/+4
|
* Bump version in Framework/Servers/VersionInfo to 0.6.6.Jeff Ames2009-07-151-1/+1
|
* Changed the DeRezObject event so it passes a list<uint> of localIDs in one ↵MW2009-07-121-1/+1
| | | | event trigger rather than triggering the event once for every localid in the derez packet.
* * minor format changes and message additionsJustin Clarke Casey2009-07-101-6/+20
|
* * minor: standardize some logging messagesJustin Clarke Casey2009-07-101-7/+10
|
* * minor: Make GridCommon.ini.example refer to inventory service rather than ↵Justin Clarke Casey2009-07-101-9/+27
| | | | | | | | asset where appropriate * Send debug level notice to console if a user fails authentication
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-101-17/+3
| | | | | | Change all uses of the HttpServer properties to use the new singleton
* Create a MainServer static class to access the regions server's HTTP serverMelanie Thielker2009-07-101-0/+42
|
* * Allowing LLSD logins to do silent logout of last hung session on ↵Arthur Valadares2009-07-071-8/+17
| | | | standalone only, following the already implemented XMLRPC behavior
* Fix previous commitMelanie Thielker2009-07-041-0/+1
|
* Add the new field agent_access_max. Without it being set to "A", viewers fromMelanie Thielker2009-07-041-0/+9
| | | | | | 1.23 prevent the removal of underwear.
* - adding a Persistent flag to RegionInfoDr Scofield2009-07-031-0/+3
| | | | | - adding EstateSettings.Save() to RemoteAdmin ACL code (invoked only when region is persistent)
* Restore the functionality that was removed in r9928. This lets the loadMelanie Thielker2009-07-011-1/+8
| | | | | | | | | balancer plugin work again. Create a new method, GetClientEP, to retrieve only the EndPoint for script usage. Marked the purpose of the method in IClientAPI.cs with a warning. Also restored the corresponding SetClientInfo functionality.
* add some more intuitive overloads for PrimitiveBaseShape SetPathRange and ↵Dahlia Trimble2009-07-011-0/+12
| | | | SetProfileRange
* From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague2009-06-291-7/+18
| | | | | | | | 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.
* Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble2009-06-272-3/+3
| | | | this.
* Enable the RemoteAdmin module to save regions as ini files rather than XMLMelanie Thielker2009-06-261-0/+68
|
* Make delete-region delete the section from an ini file. Will delete the wholeMelanie Thielker2009-06-261-0/+6
| | | | | | file if it has no sections left.
* Make create region save the new region to ini file format if the nameMelanie Thielker2009-06-251-2/+10
| | | | | | | specifies an ini file. If the ini file exists, the region will be added.
* From this version onwards, all new region files created automatically willMelanie Thielker2009-06-252-13/+117
| | | | | | | | | | be created as new style INI files. This doesn't yet affect create region, but it does affect first starts of OpenSim.exe Because master avatars are slated to be replaced by estate owners, this now allows regions to be created without any master avatar data.
* Add a comment and an example region config fileMelanie Thielker2009-06-251-1/+1
|
* Allow the reading of ini files instead of xml files when reading regionMelanie Thielker2009-06-252-50/+139
| | | | | | definitions from the file system
* Committing the meat of the user server interface and the bones of the ↵Melanie Thielker2009-06-221-0/+10
| | | | service implementation
* Update svn properties.Jeff Ames2009-06-2226-3275/+3275
|
* From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague2009-06-191-1/+4
| | | | | | This patch ensures that the touch positions are set during touch_end events (currently only working for touch_start and touch events).
* Applied patch from Mantis #3736 , which should stop the userserver crashing ↵MW2009-06-181-1/+2
| | | | when a SL viewer version 1.23 logs in. Thanks StrawberryFride
* * Corrected CAPS namespacesArthur Valadares2009-06-1828-29/+29
| | | | | * "luke, use the sed"
* Moved OpenSim/Framework/Communications/Capabilities up to ↵diva2009-06-1826-3275/+3275
| | | | OpenSim/Framework/Capabilities. Didn't change the namespace because VC# is not helping, and this would imply manually changing more than 50 files. So the namespace is still OpenSim.Framework.Communications.Capabilities, to be cleaned up later by someone with more energy.
* Implementation of a simple authentication service + in connector in route to ↵diva2009-06-171-0/+2
| | | | 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.
* Give m_test* methods more reasonable namesMike Mazur2009-06-121-25/+25
| | | | | | | 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*.
* Fixes mantis #3803. Thanks jhurliman.diva2009-06-111-1/+1
|
* * Reinstating UserProfileCacheServiceTests. One test still fails ↵Arthur Valadares2009-06-111-54/+98
| | | | (TestUpdateFolder)
* InterServiceInventoryService references *almost* completely removed from the ↵diva2009-06-113-8/+146
| | | | simulator. Only a couple left, not important. Also updated the login tests -- Justin, this time I was able to fix this by myself :)
* Bug fix for creating users in standalone: the newly-created root folder was ↵diva2009-06-101-0/+3
| | | | not being set in the cached profile. I suspect this bug has been around for a while.
* Attempt at disabling the inventory unit tests, so I can figure out how to ↵diva2009-06-101-6/+6
| | | | fix them. The test setup is broken.
* Heart surgery no.2: the inventory service hooks. diva2009-06-105-86/+61
| | | | | | | 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.
* Formatting cleanup.Jeff Ames2009-06-1012-18/+18
|
* Formatting cleanup. Ignore some generated files.Jeff Ames2009-06-093-174/+175
|
* Update svn properties.Jeff Ames2009-06-091-466/+466
|
* First draft of inventory service connectors, and service implementation. No ↵diva2009-06-071-470/+466
| | | | | | | 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.
* * Fix unit tests so that they correctly handle 404 missing asset responseJustin Clarke Casey2009-06-052-5/+8
| | | | | | * I didn't think there were tests in this area - my bad
* * Fix problem where known missing assets would stop save oar ever completingJustin Clarke Casey2009-06-052-13/+55
| | | | | | | | | * 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
* * Add oar saving timeoutJustin Clarke Casey2009-06-052-2/+10
| | | | | | | | | * If an oar save fails to get responses to all asset requests to the asset service then timeout after 60 seconds * Timeout executes abort, since missing assets in an OAR seems bad * This means that oar saves won't permanently hang and instead can be retried if something goes wrong with the asset service * This is not a solution to mantis 3714. Hopefully a fix will be along shortly since I can now consistently reproduce that problem
* Add copyright headers.Jeff Ames2009-06-042-17/+52
|