summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorymodel.cpp
AgeCommit message (Collapse)Author
2017-06-14MAINT-7489 FIXED Viewer may silently empty trash without the users request ↵Mnikolenko Productengine
under obscure inventory folder states
2017-05-24MAINT-7436 FIXED [viewer-neko] Crash occurs when trying to highlight ↵Mnikolenko Productengine
non-existent(or removed item) using SLURI
2017-05-19MAINT-7424 Fixed number of items in the Trash not calculating correctlyandreykproductengine
2017-05-08MAINT-7354 correction to misbehaving 'purge' and notification spam.andreykproductengine
2017-05-04MAINT-7383 Revise notification for Empty Trash / Purge trash action to ↵Mnikolenko Productengine
include number of items being deleted.
2017-04-28MAINT-7354 Trash alert should display trash, not prompt to purge it allandreykproductengine
2017-02-15MAINT-7118 Swapping legacy people API with new cacheandreykproductengine
2017-01-17MAINT-6959 Ability to set custom folders for uploading itemsandreykproductengine
2016-07-29MAINT-1660 Don't hide script editor floater immediately after removing ↵Mnikolenko Productengine
script from inventory.
2016-07-25MAINT-4146 - [Griefing] Folders from muted avatars not sent to trash at loginandreykproductengine
2016-07-25MAINT-6568 Detached Object Ends up in Root of InventoryMnikolenko Productengine
2016-07-07Merged in lindenlab/viewer-lynxAndreyL ProductEngine
2016-06-17MAINT-6490 Newly created inventory reports version mismatchandreykproductengine
2016-05-20Merged in lindenlab/viewer-releaseAndreyL ProductEngine
2016-05-06Merged in lindenlab/viewer-releaseAndreyL ProductEngine
2016-05-06merge 4.0.4-release and MAINT-5974Oz Linden
2016-04-04merge with 4.0.3-releaseOz Linden
2016-04-01MAINT-6272 Viewer inventory cache bugandreykproductengine
2016-04-01Merged in lindenlab/viewer-bearAndreyL ProductEngine
2016-04-01Merged in lindenlab/viewer-releaseAndreyL ProductEngine
2016-03-31Faster to copy changes than merge branches.Aura Linden
2016-03-31MAINT-6238 Warn user if Trash is overflowingAndreyL ProductEngine
2016-03-17MergeRider Linden
2016-03-16merge changes for DRTVWR-417Oz Linden
2016-02-18MAINT-6119 Viewer needs a few NULL uuid checksMnikolenko ProductEngine
2015-12-07MAINT-5933 FIXED When a new library avatar folder is created in Clothing ↵andreykproductengine
folder, folder rename is grayed out until relog
2015-11-10remove execute permission from many files that should not have itOz Linden
2015-10-14MAINT-5732: Change to the way event polling handles error conditions and ↵Rider Linden
cancel calls. Refactor any remaining LLCore::HTTPHandlers to use boost::shared_ptr Started minor refactor in the materials manager into coroutines (unfinished)
2015-09-18Set consistent terminology for yield/wait -> suspend for coroutines.Rider Linden
2015-08-11MergeRider Linden
2015-07-10Merge restore of more selfless changesNat Goodspeed
2015-07-10Backed out changeset bab1000e1b2d: restore 'selfless' changesNat Goodspeed
2015-07-08Change HttpOptions::ptr_t to be shared_ptr<> rather than intrusive.Rider Linden
2015-07-08Convert LLCore::HttpHeaders to use shared_ptr<> rather than an ↵Rider Linden
intrusive_ptr<> for refrence counting.
2015-07-07Backout selfles merge 738255dbbfd679d9e615baab3398e5e345bbb3c5Rider Linden
2015-07-01MAINT-5351: Remove 'self' parameter from coroutine functions.Nat Goodspeed
lleventcoro_test.cpp runs clean (as modified for new API), and all the rest builds clean, but the resulting viewer is as yet untested.
2015-06-04Default headers added.Rider Linden
Group manager finished conversion. Outfit folders coverted.
2015-05-01DD-379 : React on update for both listing and version foldersMerov Linden
2015-04-09DD-384, DD-388 : Do not trust cached values for stock folders, do not ↵Merov Linden
consider a non fetched stock folder empty
2015-04-02DD-291 : Use a heavier but more resilient test for listing updatesMerov Linden
2015-04-01DD-291 : Fix code path on category update in the SLM update caseMerov Linden
2015-03-28DD-291 : Trigger a GET /listing when receiving a category updateMerov Linden
2014-11-11Pull merge from lindenlanb/viewer-releaseMerov Linden
2014-10-06BUG-7454 Viewer crashes while logging with a turned off "HTTP Inventory"Monty Brandenberg
The HttpRequest objects used in inventory ops are created lazily when needed. The update() operation didn't protect against their not being created. Added some guard tests around the update() operations and we're good.
2014-09-22Tuning and documentation. Use a fast poll frequency (0.05S)Monty Brandenberg
on the HTTP requests for inventory. We'll benchmark with that and see how it goes. Document some of the history of the background fetcher for future devs. Suggest some future projects to make things faster. Pointers on using LLSD with the llcorehttp library in the readme. And restructured the LLSD onCompleted() processing phases using do{}while(false) which produced a code flow that is fairly attractive.
2014-09-19Cleanup work. Use http constants for content-type andMonty Brandenberg
accept headers in mesh and textures. For texture metrics reporting, use the AP_INVENTORY policy class which is non-pipelined and pointing (usually) in the right direction. Use a do-while(false) structure to manage common exit path code in onCompleted() methods. Identical to a 'goto' but might amuse the pedantic. Tuning on background fetch to have it cycle faster. This is experimental. I suspect with HTTP balancing in llcorehttp, we can do away with the timers here.
2014-09-09Cleanup pass. Documentation. Get older llcorehttp-usingMonty Brandenberg
code to use utils for any LLSD interfaces.
2014-08-26Bring better error handling to inventory item and folder fetching.Monty Brandenberg
First, introduced some LLSD-based interfaces to the llcorehttp code using utils classes (in llcorehttputil). I've kept LLSD out of the llcorehttp library up to now and will continue to do that. Functions provide a requestPost based on LLSD body and conversion utils for HttpResponse-to-LLSD and HttpResponse-to-string conversions. Inventory fetch operations now do more thorough error checking including 200-with-error status checking. Still do retry forever on folders though I don't like that.
2014-08-22Add an HTTP policy class for inventory operations using four (4)Monty Brandenberg
connections. Convert background and foreground fetches, both items and folders/inventory and library, to use new HTTP. Non-fetch inventory operations continue to use LLHTTPClient (at least for now). Error handling and retry on fetches wasn't 100% previously and that's still the case. I'll rip through this again to clean that up. Cleaned up logging in much of the inventory code with consistent labels on logging events and correct macros (removed deprecation warnings). This started as an attempt to get libcurl to do pipelining on POSTs and PUTs. Discovered that this is going to be very difficult to support in general in libcurl. May look at that again in the future.
2014-06-04DD-84 : Final clean up for this fixMerov Linden