aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Capabilities (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Drop InvType from the assets table since it is no longer usedJustin Clarke Casey2008-07-021-1/+0
| | | | | | | | * Migration should be automatic on sqlite and mysql * Migration is not automatic on mssql, you will need to drop the invType column manually * Migration should be fine, but as for any db change, I would recommend making sure you have backups before moving past this revision
* dr scofield's warning safari:Dr Scofield2008-06-271-5/+5
| | | | | | | | | | * commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables
* save_assets_to_file path shouldn't always assume uploaded Sean Dague2008-06-131-1/+8
| | | | | | content are images and use .jp2 for the file extension.
* * Split the World Map code into a module.Teravus Ovares2008-06-121-4/+5
| | | | | * Implemented a hack so regions beyond the 10,000m range will show the map without having to click on the map before they'll start to show. The hack shows regions around the one you're in, but it won't show the one you're in.. you still need to click on the map to get that (not sure why yet). Additionally, the map still only shows pictures for regions that are hosted on the same instance (no change).
* Minor formatting cleanup.Jeff Ames2008-06-061-1/+1
|
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-252-4/+4
|
* i'm extending the RestStreamHandler.Handler(...) signature to actually Dr Scofield2008-05-201-3/+10
| | | | | | | | | | | provide OSHttpRequest and OSHttpResponse to our REST handler. also, this adds proper RestPlugin.IsGod() checking against the X-OpenSim-Godkey HTTP request header. last, i added XML doc comments to RestPlugin.cs
* adding OSHttpRequest and OSHttpResponse which wrap HttpListenerRequest and ↵Dr Scofield2008-05-191-1/+3
| | | | | | | | | HttpListenerResponse respectively. enhancing IStreamHandler and IStreamedHandler interfaces so that OSHttp{Request,Response} get passed in, allowing RestHandlers to set response status code, redirections, etc.
* * Applying patch in mantis 0001293: [PATCH] Fix a bug that corrupts uploaded ↵Teravus Ovares2008-05-161-0/+2
| | | | assets on disk write from Melane. Thanks Melanie!
* Formatting cleanup.Jeff Ames2008-05-1610-101/+101
|
* Formatting cleanup.Jeff Ames2008-05-142-2/+2
|
* * Revert caps fetch inventory service back to UDP for nowJustin Clarke Casey2008-05-091-2/+14
| | | | | | | * Linden client 1.19.1.4 appears to be happy using UDP for this request again, and Linden's own servers (1.21) don't appear to be supplying the CAPS version currently * This should for now fix the bug where texture selection in the edit window both shows only already open textures, and later stops subsequent inventory requests from working.
* From: Michael Osias <mosias@us.ibm.com>Justin Clarke Casey2008-05-091-0/+20
| | | | | | Stop .net generating ambiguous operator errors when two integers are compared for equality in LSL
* * Minor: Insert utility function to format raw xml strings into indented xml ↵Justin Clarke Casey2008-05-091-3/+4
| | | | for debugging purposes
* * Breaking all the code, breaking all the code..!Adam Frisby2008-05-011-4/+4
| | | | | * Made a bunch more members static, removed some dead code, general cleaning.
* * Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby2008-05-0123-56/+46
| | | | with namespaces.
* From: Dr Scofield <hud@zurich.ibm.com>Sean Dague2008-04-211-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | the attached patch set is centered around RemoteAdminPlugin and focuses mainly on making it more robust (i.e. more parameter checking and better error reporting) but also we've re-implemented the LoadTerrain stuff that got disabled during the terrain code reworking: * missing PostInitialize() calls on region modules that were loaded for regions created via RemoteAdmin's CreateRegion XmlRpc call * re-implements RemoteAdmin's LoadTerrain XmlRpc call (probably lost during the TerrainModule rework) * adds lots more parameter checking and error reporting to RemoteAdmin * adds a read-only property to RegionApplicationBase so that we can access the CommsManager * adds Exceptions to TerrainModule so that we get better error case feedback (and can report more meaningful errors in turn) * adds a CheckForTerrainUpdate() call to TerrainModule.LoadFromFile() to make terrain changes effective * adds TryGetCurrentScene(LLUUID) to SceneManager so that we can retrieve Scenes not only by name but also by LLUUID cheers, dr scofield
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-218-24/+14
| | | | (this took a while to run).
* * Re-Fixed caps Teravus Ovares2008-04-172-1/+10
| | | | | * This fixes chi11ken's/OpenViewer's libsl cap issue.
* From: Dr Scofield <hud@zurich.ibm.com>Sean Dague2008-04-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | ansgar and i have been working on an asterisk voice module that will allow us to couple opensim with an asterisk VoIP gateway. the patch below consists of * AsteriskVoiceModule region module: alternative to the plain-vanilla VoiceModule, will make XmlRpc calls out to an asterisk-opensim frontend * asterisk-opensim.py frontend, living in share/python/asterisk, takes XmlRpc calls from the AsteriskVoiceModule * account_update: to update/create a new SIP account (on ProvisionVoiceAccountRequest) * region_update: to update/create a new "region" conference call (on ParcelVoiceInfo) * a asterisk-opensim test client, living in share/python/asterisk, to exercise astersik-opensim.py this still does not give us voice in OpenSim, but it's another step on this path...
* * Working towards notifying the client if the inventory service has failed, ↵Justin Clarke Casey2008-04-141-3/+32
| | | | | | | | | rather than simply returning 0 items. * This is very early support which would only be triggered in a rather unlikely case (if the user server correctly received an inventory skeleton, but later on failed to return the whole inventory in a timely manner. Also, this only applies to the 1.19.1.4 client onwards * Code cleanup and support for other failure cases (failure of inventory caching on region crossing, failure to actually add a folder/item, etc, should follow.
* * Correct comment from previous patch - I'm not reversing mantis #912 at ↵Justin Clarke Casey2008-04-131-1/+1
| | | | all, which was in an entirely different location
* * Reverse mantis #912 since it was causing inventory to disappear from the ↵Justin Clarke Casey2008-04-131-1/+10
| | | | | | | | root folder on 1.19.1.4 non-cache clear relog. * The folder version numbers probably do need to be non-zero, but there is a further subtlety of the protocol to understand first
* Thank you kindly, A_Biondi for a patch that:Charles Krinke2008-04-101-0/+13
| | | | | | Handles the CreateItem cap request for all wearables, setting the proper value in inType and assType.
* * Update code to use patched libsecondlife.dll which removes the problem ↵Justin Clarke Casey2008-04-081-10/+1
| | | | | | | | | where the AssetType enum was 'Primitive' rather than 'Object' * The libsecondlife patch was also applied to libsecondlife itself in r1714 * Many, many thanks to Dr Schofield (IBM) for his help on this :)
* Refactor InventoryItemBase to do the following:Sean Dague2008-04-071-23/+23
| | | | | | | | * wrap fields as Properties * rename some fields/properties to more sensible names * set style to PropName to match more standard C# approach
* * Make objects appear in 1.19.1.4 inventory againJustin Clarke Casey2008-04-041-6/+19
| | | | | | | * You will probably need to clear your client's cache before this will take effect * The problem was that the underlying libsecondlife.AssetType was returning "primitive" rather than "object". This fix is in lieu of correcting/updating our libsecondlife.dll
* * Fixed up some documentation regarding the inventory descendants method ↵Teravus Ovares2008-04-041-3/+17
| | | | XML. Cleaned up an error report. Noted at the top, why the two unused caps path variables must stay.
* * Fixes CAPS InventoryDescendants and the notorious ↵Teravus Ovares2008-04-041-9/+46
| | | | | | | 'LLSDParseException:expected </llsd>' error. * Objects folder still exhibits strange behavior.
* * Fixing permissions on items returned via CAPS based inventoryTeravus Ovares2008-04-041-1/+2
|
* Update svn properties.Jeff Ames2008-04-031-144/+144
|
* * From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-033-193/+192
| | | | | | | * This patch removes voice code into a region module. This required the implementation of events and other code to allow region modules to register their own caps handlers, and should allow different voice module implementations. * CAVEAT: This does not provide complete voice support, it merely provides the hooks so that it can be plugged in.
* * Attempt to resolve mantis 873 by placing caps removal operations in a ↵Justin Clarke Casey2008-04-021-1/+1
| | | | critical section
* * From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-03-313-74/+159
| | | | | | | | | * (and Ansgar/Ansi) * Fleshes out the voice stubs to better interact with the viewer CAPS requests - no actual voice support yet! * In his own words "the attached patch enhances the existing voice support by returning a proper voice account user and password and is preparing the config file so that we can specify a SIP server (not yet working). currently the SIP is hardcoded. the next step is to refactor voice support into a region module. working on that. "
* * Remove old CAPS http listeners when a client logs out from a sceneJustin Clarke Casey2008-03-251-21/+39
| | | | | | * Not yet removing listeners when a client leaves a region without logging out
* * On Ray casting. Now returning the face normal of the collision face.Teravus Ovares2008-03-251-2/+2
|
* * Committing some voice related caps with hard coded responses so more ↵Teravus Ovares2008-03-252-1/+102
| | | | debugging can occur.
* * Converted a large number of ASCII encodings to UTF8.Adam Frisby2008-03-211-1/+1
| | | | | | | * We should not be using ASCII anywhere except for legacy compatibility reasons. * A large number of UTF8 Encoders are being used in places where we should be using Util.StringToField instead. These have been tagged with // ENCODING FAULT * This should fix Mantis#799 - Japanese Profile Text does not work.
* * First draft resolution of mantis 777, 734, 389 - scripts do not save in ↵Justin Clarke Casey2008-03-201-1/+10
| | | | | | | | | | | | non-home regions * Should work in multi-region standalone and grid modes * This should also solve other non-home region caps issues (map requests, RC client inventory requests, etc) * We now pass CAPS information on to the destination region on region crossing, and set up a CAPS object when an agent becomes a master * Current limitation is that this will only work if your http_listener_port is 9000 * This is a very early code cut (lots of bad practice, hard coding and inefficiency). However, I wanted to get this out there for feedback and my own sanity. Next few patches will clean up the mess.
* Added back a fix that lbsa71 did aqes ago to fix a buffer overflow in the ↵MW2008-03-201-1/+0
| | | | packetpool, which somewhere through time got lost/reverted
* Another poxy patch which consists mainly of logging changes (some already ↵Justin Clarke Casey2008-03-202-1/+7
| | | | commented out) to find out what CAPS is doing
* Formatting cleanup.Jeff Ames2008-03-1820-538/+529
|
* Added copyright messages. Set svn:eol-style. Minor cleanup.Jeff Ames2008-03-181-1/+28
|
* Part 2 of fixing inventory for client 1.19.1 (RC), inventory items should ↵MW2008-03-152-17/+65
| | | | | | | now show up. Most likely still some problems and most like needs some more work (and still a couple of things to finish off).
* Part 1 of making inventory work again in the 1.19.1 (RC) client. Implemented ↵MW2008-03-154-3/+129
| | | | | | | | | the FetchInventoryDescendents CAPS handler. But currently returning empty folder details. So this commit doesn't actually fix inventory in that client, it just stops the "loading" message being displayed forever next to a folder, and instead shows empty folders. Next part will be to fill in the details of the items in the folders.
* Fix Mantis 636Sean Dague2008-03-141-1/+1
|
* Just a few commentsJustin Clarke Casey2008-03-131-4/+2
|
* Applied patch from mantis #610, fixed invalid filenames with ↵MW2008-03-121-1/+1
| | | | dump_assets_to_file set to true. thanks tyre.
* Change handler001 through handler009 to moreCharles Krinke2008-03-021-12/+12
| | | | | | | | appropriate names consisten with their use. All done with all 94 handlers from handler001 through handler094. Hopefully we can move forward without numbered handlers.
* * Moved all events except gridcomms and regioncomms over to Event Delegate ↵Teravus Ovares2008-02-221-8/+14
| | | | instances to prevent event race conditions