aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Capabilities/Caps.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-06-18Moved OpenSim/Framework/Communications/Capabilities up to ↵diva1-1212/+0
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-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-22cleaning out warnings.Dr Scofield1-1/+1
NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that?
2009-05-15Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva1-3/+4
-- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
2009-05-13Disabling WebFetchInventoryDescendents CAPs for the time being as itDr Scofield1-2/+4
seems to screw up standalone mode.
2009-05-10Small asset cache addition. Comment a debug output left in CAPSMelanie Thielker1-3/+3
2009-05-09Fixed handling of inventory a bitHomer Horwitz1-3/+11
- AssetType isn't InventoryType. Those enums contain different numbers. Use AssetType for the asset type, InventoryType for the inventory type. - The ToString method (or ToLower) of AssetType/InventoryType doesn't necessarily return the correct LLSD string. - Replaced several magic numbers by their corresponding enum. - Fixed the invType for gestures and animations in the library. This should fix Mantis #3610 and the non-terminating inventory loading
2009-05-08fix up the comments a littleSean Dague1-3/+2
From: Sean Dague <sdague@gmail.com>
2009-05-08added WebFetchInventoryDescendents CAPSean Dague1-5/+81
From: Robert Smart <smartrob@uk.ibm.com>
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker1-1/+1
2009-04-08* Make it possible to store creator strings in user inventory items as well ↵Justin Clarke Casey1-2/+2
as UUIDs * All existing functionality should be unaffected. * Database schemas have not been changed.
2009-04-03Added one more delegate to Caps, and a few guards, so that these objects can ↵diva1-14/+28
be used from more than just Scenes. Added the NewFileAgentInvengory cap to HGInventoryService.
2009-03-26Forgot to comment an unnecessary log message on my last commit.diva1-2/+2
2009-03-26Notecard updates bypassing the regions. (HGStandalone only)diva1-1/+7
2009-03-26Small refactoring in Caps, no functional changes.diva1-5/+25
2009-03-19* refactor: Create IHttpServer interface instead of accessing BaseHttpServer ↵Justin Clarke Casey1-8/+9
via CommunicationsManager directly
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-2/+2
* Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
2009-02-17- remove the Metadata property from AssetBase and return all previousMike Mazur1-4/+4
properties as before - prefix private variables with m_ in AssetBase.cs - related to Mantis #3122, as mentioned in https://lists.berlios.de/pipermail/opensim-dev/2009-February/005088.html - all services will likely need to be upgraded after this commit
2009-02-12* optimized usings.lbsa711-3/+2
2009-02-09From Alan Webb <awebb@linux.vnet.ibm.com>Sean Dague1-2/+2
These changes replace all direct references to the AssetCache with IAssetCache. There is no change to functionality. Everything works as before. This is laying the groundwork for making it possible to register alternative asset caching mechanisms without disrupting other parts of OpenSim or their dependencies upon AssetCache functionality.
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield1-1/+1
OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
2009-02-04- add OpenSim.Framework.AssetMetadata class. AssetBase is now composed of itMike Mazur1-9/+9
- trim trailing whitespace
2009-01-21* refactor: Extract caps related code from scene and put into a region moduleJustin Clarke Casey1-1/+1
* No functional changes in this revision
2009-01-06* prune and regrade log messages relating to client login and logoutJustin Clarke Casey1-4/+8
2008-12-21Small null check in DeregisterHandlers.diva1-2/+5
2008-12-06Send the creation-date of items to the viewer. This fixes Mantis#2769.Homer Horwitz1-1/+1
2008-11-19Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the newMelanie Thielker1-8/+8
libOMV.
2008-11-19Reverting the texture sending patch and the new libOMV. This makes thisMelanie Thielker1-8/+8
release a direct descendant of the stable 7364, with all the features and none of the issues. This omits the following patch chain: r7383 r7382 r7381 r7377 r7375 r7373 r7372 r7370 r7369 r7368 r7367 r7366
2008-11-17* Update libOMV to r2359. This is necessary for the progressive texture patchJustin Clarke Casey1-8/+8
* Update libopenjpeg as well for this patch. * Appears to be okay on a very short sniff test * Source code will be placed in opensim-libs shortly
2008-10-18- Fix Util.UnixTimeSinceEpoch:Homer Horwitz1-0/+1
* Unix epoch starts at midnight, not at 8:00am * All date/time handling should be done in UTC in the server, not in the local timezone. * Refactor out repeated computation of a constant value - Added setting of CreationTime to some places where inventoryitems are created This fixes Mantis#2390.
2008-10-16Fixed (mono-)script handling for SL viewer 1.21:Homer Horwitz1-0/+2
- Added two missing caps (UpdateScriptAgent, UpdateScriptTask) - Added one missing EventQueue event (ScriptRunningReply) - Changed DNE and XEngine to use this new event As we only use the mono engine anyway, the "Mono" checkbox is set by default but doesn't have any function.
2008-10-05* Fixes the last snag with the EventQueue. The situation where the seedcap ↵Teravus Ovares1-0/+1
gets lost on teleport.
2008-09-21Completely revert the notecard uploading changes I made, since theyMelanie Thielker1-2/+0
appear to break script saves in prims for some.
2008-09-20And re-reverse the names from last commitMelanie Thielker1-2/+2
2008-09-20Remove CAPS notecard updating, as LL isn't supporting it and the viewerMelanie Thielker1-1/+2
is not playing nice
2008-09-20Partially implement notecard saves in task inventory. Still makes theMelanie Thielker1-1/+2
notecard go read-only, but changes are saved.
2008-09-14* Made Seed CAP response respect the SSL setting.Teravus Ovares1-4/+40
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-38/+38
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-28Update svn properties, formatting cleanup.Jeff Ames1-2/+2
2008-08-23Thank you, salahzar, for a patch that adds llGetNumberOfSides and willMelanie Thielker1-1/+1
also enable LSLconformance on some texture functions as well. Applied the part of the patch in Shared/. The part for Common/ needs to be reworked to remove the reference into Shared/
2008-08-23Some complex re-ordering to make prebuild do what needed to be done.Melanie Thielker1-3/+2
It is now possible to use module interfaces without referencing Scene. Place those interfaces in OpenSim/Region/Interfaces. They may not use any refs from OpenSim.Region.Environment as parameters. This resolves a circular library ref introduced in r5949
2008-08-23Patch #9171Melanie Thielker1-0/+26
Disallow bulk uploads if money module is present and upload cost is set and the user hasn't got sufficient funds.
2008-08-18Formatting cleanup.Jeff Ames1-2/+2
2008-08-16Mantis#1965. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-1/+3
Places touched: - Added two events for in-packets to LLCLientView: RegionHandleRequest and ParcelInfoRequest - Added sending of two out-packets to LLCLientView: RegionIDAndHandleReply and ParcelInfoReply. - Scene handles the RegionHandleRequest, LandManagementModule the ParcelInfoRequest - Added inter-region request for LandData by RegionHandle and local position. This was implemented as XML-RPC request. The returned LandData isn't complete, it only contains the data necessary for answering the ParcelInfoRequest - Added new CAPS (0009) for RemoteParcelRequest and some methods for LandData handling to LandManagementModule - Added methods for fake parcelID creation and parsing to Util - Fixed missing implementation of interface methods. - Added new file: OpenSim/Framework/Communications/Capabilities/LLSDRemoteParcelResponse.cs NOTE: This is part of the patch, too. Due to the many places touched, I would consider this patch as experimental.
2008-07-02* Drop InvType from the assets table since it is no longer usedJustin Clarke Casey1-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
2008-06-27dr scofield's warning safari:Dr Scofield1-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
2008-06-13save_assets_to_file path shouldn't always assume uploaded Sean Dague1-1/+8
content are images and use .jp2 for the file extension.
2008-06-12* Split the World Map code into a module.Teravus Ovares1-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).
2008-05-25Update svn properties. Formatting cleanup.Jeff Ames1-3/+3
2008-05-20i'm extending the RestStreamHandler.Handler(...) signature to actually Dr Scofield1-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