aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-07-10* minor: standardize some logging messagesJustin Clarke Casey1-7/+10
2009-07-10* minor: Make GridCommon.ini.example refer to inventory service rather than ↵Justin Clarke Casey1-9/+27
asset where appropriate * Send debug level notice to console if a user fails authentication
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker1-17/+3
Change all uses of the HttpServer properties to use the new singleton
2009-07-10Create a MainServer static class to access the regions server's HTTP serverMelanie Thielker1-0/+42
2009-07-07* Allowing LLSD logins to do silent logout of last hung session on ↵Arthur Valadares1-8/+17
standalone only, following the already implemented XMLRPC behavior
2009-07-04Fix previous commitMelanie Thielker1-0/+1
2009-07-04Add the new field agent_access_max. Without it being set to "A", viewers fromMelanie Thielker1-0/+9
1.23 prevent the removal of underwear.
2009-07-03- adding a Persistent flag to RegionInfoDr Scofield1-0/+3
- adding EstateSettings.Save() to RemoteAdmin ACL code (invoked only when region is persistent)
2009-07-01Restore the functionality that was removed in r9928. This lets the loadMelanie Thielker1-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.
2009-07-01add some more intuitive overloads for PrimitiveBaseShape SetPathRange and ↵Dahlia Trimble1-0/+12
SetProfileRange
2009-06-29From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague1-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.
2009-06-27Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble2-3/+3
this.
2009-06-26Enable the RemoteAdmin module to save regions as ini files rather than XMLMelanie Thielker1-0/+68
2009-06-26Make delete-region delete the section from an ini file. Will delete the wholeMelanie Thielker1-0/+6
file if it has no sections left.
2009-06-25Make create region save the new region to ini file format if the nameMelanie Thielker1-2/+10
specifies an ini file. If the ini file exists, the region will be added.
2009-06-25From this version onwards, all new region files created automatically willMelanie Thielker2-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.
2009-06-25Add a comment and an example region config fileMelanie Thielker1-1/+1
2009-06-25Allow the reading of ini files instead of xml files when reading regionMelanie Thielker2-50/+139
definitions from the file system
2009-06-22Committing the meat of the user server interface and the bones of the ↵Melanie Thielker1-0/+10
service implementation
2009-06-22Update svn properties.Jeff Ames26-3275/+3275
2009-06-19From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague1-1/+4
This patch ensures that the touch positions are set during touch_end events (currently only working for touch_start and touch events).
2009-06-18Applied patch from Mantis #3736 , which should stop the userserver crashing ↵MW1-1/+2
when a SL viewer version 1.23 logs in. Thanks StrawberryFride
2009-06-18* Corrected CAPS namespacesArthur Valadares28-29/+29
* "luke, use the sed"
2009-06-18Moved OpenSim/Framework/Communications/Capabilities up to ↵diva26-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.
2009-06-17Implementation of a simple authentication service + in connector in route to ↵diva1-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.
2009-06-12Give m_test* methods more reasonable namesMike Mazur1-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*.
2009-06-11Fixes mantis #3803. Thanks jhurliman.diva1-1/+1
2009-06-11* Reinstating UserProfileCacheServiceTests. One test still fails ↵Arthur Valadares1-54/+98
(TestUpdateFolder)
2009-06-11InterServiceInventoryService references *almost* completely removed from the ↵diva3-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 :)
2009-06-10Bug fix for creating users in standalone: the newly-created root folder was ↵diva1-0/+3
not being set in the cached profile. I suspect this bug has been around for a while.
2009-06-10Attempt at disabling the inventory unit tests, so I can figure out how to ↵diva1-6/+6
fix them. The test setup is broken.
2009-06-10Heart surgery no.2: the inventory service hooks. diva5-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.
2009-06-10Formatting cleanup.Jeff Ames12-18/+18
2009-06-09Formatting cleanup. Ignore some generated files.Jeff Ames3-174/+175
2009-06-09Update svn properties.Jeff Ames1-466/+466
2009-06-07First draft of inventory service connectors, and service implementation. No ↵diva1-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.
2009-06-05* Fix unit tests so that they correctly handle 404 missing asset responseJustin Clarke Casey2-5/+8
* I didn't think there were tests in this area - my bad
2009-06-05* Fix problem where known missing assets would stop save oar ever completingJustin Clarke Casey2-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
2009-06-05* Add oar saving timeoutJustin Clarke Casey2-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
2009-06-04Add copyright headers.Jeff Ames2-17/+52
2009-06-04Update svn properties.Jeff Ames4-3137/+3137
2009-06-03Make AssetMetadata [Serializable] to help in binary cachingMelanie Thielker1-0/+1
2009-06-03From: Chris Yeoh <yeohc@au1.ibm.com>Dr Scofield1-0/+24
This patch adds oar file date and time (UTC) meta data to an oar file when it is created. It also adds a unique ID, though this id does not in anyway identify the machine that the oar file was created on. When an oar file with this meta data is loaded this extra information is saved with the region settings and available via LSL through: - osLoadedCreationDate() - osLoadedCreationTime() - osLoadedCreationID() If there is no meta data these fields will be blank. Subsequent oar file loads will erase the information for the previous oar file load. Persistence has only been implemented for MySQL, the other backends need updating. Overall this allows us to much more easily identify the specific version of software that clients are using. Its very straightforward to edit the oar file to change the ID string to be something more human friendly. Included in the patch is a new file OpenSim/Data/MySQL/Resources/030_RegionStore.sql required for the MySQL DB migration. btw I had a chat with justincc about this a few weeks ago since he wrote the oar file import/export and he sounded happy to accept something that included date/time information but didn't want anything that would silently leak private information like machine names.
2009-06-03Thank you Imaze Rhiano for a patch that implements Cenome Memory Asset Cache ↵Dahlia Trimble4-0/+3137
(Mantis #3759) See the files: bin/config-include/GridCommon.ini.example and bin/config-include/StandaloneCommon.ini.example to configure and enable this caching method.
2009-06-03revert r9765 due to too many errors on some compilers. Affects Mantis #3759Dahlia Trimble4-3137/+0
2009-06-03add body to an empty getter/setterDahlia Trimble1-1/+8
2009-06-03fix a int[] declarationDahlia Trimble1-1/+1
2009-06-02Thank you Imaze Rhiano for a patch that implements Cenome Memory Asset Cache ↵Dahlia Trimble4-0/+3130
(Mantis #3759) See the files: bin/config-include/GridCommon.ini.example and bin/config-include/StandaloneCommon.ini.example to configure and enable this caching method.
2009-06-01* Removed some commented-out codelbsa711-1/+0
2009-06-01* Making silent logoff of old hung sessions for new connections default forArthur Valadares2-3/+5
StandAlone users. Not touching grid.