aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-03-22Add QueryItem method to secure inventory and HG inventory, change method sig toMelanie Thielker2-7/+16
provide additional information the HG needs.
2009-03-22Fox a null ref in the inventory give moduleMelanie Thielker1-0/+3
2009-03-22Moving the LoginAuth service up, so that it can be shared among standalones ↵diva1-0/+346
and the User Server.
2009-03-21Initial support for authentication/authorization keys in UserManagerBase, ↵diva2-1/+95
and use of it in HGStandaloneLoginService (producer of initial key for user, and of subsequent keys) and HGStandaloneInventoryService (consumer of a key). Keys are of the form http://<authority>/<random uuid> and they are sent over http header "authorization".
2009-03-21Add a QueryItem method to the inventory subsystem. Currently implemented forMelanie Thielker3-0/+64
MySQL only, stubs for the others. This allows updating the cache with a single item from the database.
2009-03-20* Normalized and pulled GetInventorySkeleton up.lbsa711-31/+79
2009-03-20* De-duplicated login service some morelbsa711-1/+32
* Normalized m_inventoryService * Pulled AddActiveGestures up
2009-03-19Moving GetInventoryItem up to InventoryServiceBase, since this seems like a ↵diva1-0/+10
pretty fundamental function.
2009-03-19* Group OpenSim.Framework.Servers interfaces togetherJustin Clarke Casey5-0/+4
2009-03-19* refactor: Create IHttpServer interface instead of accessing BaseHttpServer ↵Justin Clarke Casey5-67/+149
via CommunicationsManager directly
2009-03-19* Lock http handlers dictionary in other places as well to avoid race conditionsJustin Clarke Casey1-47/+56
* No adverse effects on a quick multi-machine grid test
2009-03-19* Add necessary locking to BaseHttpServer.RemoveHTTPHandler()Justin Clarke Casey1-7/+14
2009-03-19* Add documentation to BaseHttpServer.AddHTTPHandler()Justin Clarke Casey1-13/+41
2009-03-18Adds support for unlink-region command in hypergrid.diva1-0/+3
2009-03-16Rename OpenSim.Framework.Archive to OpenSim.Framework.SerializationMike Mazur3-3/+3
Update using statements and prebuild.xml. Also trim trailing whitespace.
2009-03-13Thank you, mcortez, for a patch that fixes a number of long standingMelanie Thielker1-0/+9
issues with the sun module. Fixes Mantis #3295
2009-03-13* Support loading empty folders in an iarJustin Clarke Casey2-3/+2
2009-03-13* Remove asset cache size and texture stat reports from ASSET STATS since ↵Justin Clarke Casey2-6/+41
these are now inaccurate * Correct count of assets in cache
2009-03-13Mark AssetBase.Metadata with [XmlIgnore]Mike Mazur1-9/+5
2009-03-12Update svn properties, formatting cleanup.Jeff Ames1-3/+3
2009-03-12* Another stab at refactoring up the CustomiseResponse function. Two fixes:lbsa712-10/+149
* Sometimes, null is a valid return value to indicate 'none found'. doh. * Sometimes, the Grid server does not send simURI - this you need to reconstruct yourself. Euw. (I believe) this solves mantis issue #3287
2009-03-12Move ArchiveConstants to OpenSim.Framework.ArchiveMike Mazur1-0/+133
- move a couple constants from InventoryArchiveConstants to ArchiveConstants, now only one of these is needed - change InventoryArchiveConstants references to ArchiveConstants - remove InventoryArchive AssetInventoryServer plugin dependency on OpenSim.Region.CodeModules - trim trailing whitespace
2009-03-12Moving TarArchive to OpenSim.Framework.ArchiveMike Mazur2-0/+435
We now build OpenSim.Framework.Archive.dll which aims to contain code used for archiving various things in OpenSim. Also remove trailing whitespace.
2009-03-12Minor bug fix. Thanks daTwitch.diva1-1/+2
2009-03-11* Reverted r8750 to do another round of debugging on mantis #3287lbsa711-141/+9
2009-03-11* fix build breakJustin Clarke Casey1-1/+2
2009-03-11* Make all coded defaults match settings in OpenSim.ini.exampleJustin Clarke Casey3-7/+11
* In most cases, the setting in OpenSim.ini.example is taken as the canonical one since this is the file virtually everyone ends up using * OpenSim will start up with a blank OpenSim.ini, in which case sqlite is the default database (as before)
2009-03-10* minor: reduce some code duplication in BaseHttpServerJustin Clarke Casey1-24/+17
2009-03-10fixing out-of-sync error in BaseHttpServerDr Scofield1-16/+19
2009-03-10*** POTENTIAL BREAKAGE ***lbsa711-9/+141
* Finally got to the point where I could pull up the CustomiseResponse function. Major de-duplication. * Introduced FromRegionInfo on RegionProfileData * This revision needs both grid and standalone testing galore. Work in progress!
2009-03-10* Re-aligned CustomiseResponse function for imminent up-pullinglbsa711-0/+3
2009-03-10* Refactored out Create() methods to ensure proper transformation between ↵lbsa711-0/+13
RegionProfileData and RegionInfo * Created ToRegionInfo method, still not using it pending peer review. * This is a preparatory commit for a subsequent login service refactoring.
2009-03-09* minor: remove some mono compiler warningsJustin Clarke Casey2-7/+7
2009-03-09* Add basic asset cache get testJustin Clarke Casey3-7/+93
2009-03-09* Move method documentation from AssetCache up to IAssetCacheJustin Clarke Casey2-85/+76
* No functional changes
2009-03-09* Address http://opensimulator.org/mantis/view.php?id=3207Justin Clarke Casey1-4/+1
* A saved archive now immediately expires the data in the asset cache that it used, rather than retaining all the assets (esp textures) in the cache. * This is an imperfect solution. Ideally we would only expire the assets newly requested for the archive (not existing ones). But doing that would require a lot more restructuring. * I don't believe there are any locking issues due to the locking performed by the underlying memory cache, but please report any issues.
2009-03-09* Added TXXX in front of unit tests to make sure they are running in the ↵Sean Dague1-7/+7
correct order. Although it might not make a difference here, this pattern should be followed to avoid further issues. From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
2009-03-09Refactor login test class.Mike Mazur1-115/+126
There were multiple tests in one test method (T011_Auth_Login). This test has been refactored into multiple tests. Common setup code was placed into a SetUp method executed before each test.
2009-03-09Fix tests broken in r8732.Mike Mazur1-0/+14
Recent changes in the code handling login_to_simulator XMLRPC method calls caused two tests to fail because not enough parameters were being supplied with the method call. The parameters added in this patch work, but I'm not sure whether they are actually correct or even relevant. Diva, please look over this.
2009-03-08Making the web_login_key code work, even if the LL Viewer doesn't support ↵diva1-4/+19
it. Other clients can launch the LL Viewer with something like this, for example: Process.Start("C:\\Program Files\\SecondLife\\SecondLife.exe", "-loginuri " + loginuri + "?web_login_key=" + web_login_key + " -login " + firstName + " " + lastName + " -multiple"); This requires a prior step for actually getting the key, which can be done like this: http://localhost:9000/?method=login&firstname=barak&lastname=obama&password=123&show_login_form=FALSE
2009-03-07* Adding application/x-oar to the list of content types to which the HTTP ↵Teravus Ovares1-1/+5
Server will return the response as if it was a binary file pending discussion on the [opensim-dev] mailing list to be initiated by dmiles.
2009-03-06* Protects RestClient from crashing with dictionary exception, which leads ↵Sean Dague1-2/+24
to the client thread crashing if uncaught.
2009-03-05Prevent ICommander-generated subcommand trees from generating an exceptionMelanie Thielker1-1/+6
when the tree root command is executes without another verb following it. Fixes Mantis #3258
2009-03-05* remove now unused serialization codeJustin Clarke Casey2-74/+27
2009-03-03Avoid NRE if client sends unrecognized packet type.Jeff Ames1-1/+8
2009-03-03Renamed ILoginRegionsConnector to ILoginServiceToRegionsConnector and moved ↵MW2-1/+43
it from OpenSim.Client.Linden to OpenSim.Framework.
2009-03-03Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW2-18/+115
There are two region modules in there LLStandaloneLoginModule (for standalone mode) and LLProxyLoginModule (for grid mode which just handles incoming expect_user and logoff_user messages from the remote login server) Changed OpenSim.Framework.Communications.Tests.LoginServiceTests to use the LLStandaloneLoginService (from the LLStandaloneLoginModule) rather than LocalLoginService. Really these login tests should most likely be somewhere else as they are testing specific implementations of login services. Commented out the old LocalLoginService as its no longer used, but want to check there are no problems before it gets deleted.
2009-03-03Refactoring of CreateCommsManagerPlugin.MW1-2/+1
Plus some general cleanup of a few other files (deleting excess blank lines etc)
2009-03-02Moved the SetupScene methods from RegionApplicationBase to OpenSimBase [Do ↵MW1-0/+1
we really still need RegionApplicationBase?] Added a flag (bool m_autoCreateLindenStack = true) which says if the ClientStack will be autocreated and initialised when creating regions. This helps with moving ClientStacks to Region modules. Currently this flag is hardcoded to true, as it is only for testing at the moment, so you need to change the value in the code if you want to turn off auto creating.
2009-03-01Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames3-5/+84