Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-17 | SH-4344 FIX - return the lowest UUID for a child of root with the desired ↵ | Brad Payne (Vir Linden) | |
preferred type. Also removed some duplicate code between findCategoryUUIDForType and findLibraryCategoryUUIDForType | |||
2013-07-11 | Adding support for COPY methods to httpclient. Implementing viewer-side use ↵ | Don Kjer | |
of AISv3 COPY library folder operation. (SH-4304) | |||
2013-06-25 | SH-4305 WIP | Brad Payne (Vir Linden) | |
2013-06-24 | SH-4243 WIP - cleaned up callback structure for createNewCategory, modified ↵ | Brad Payne (Vir Linden) | |
makeNewOutfitLinks() to wait for category creation before populating. | |||
2013-06-17 | SH-4238 WIP - postpone calling notifyObservers until all deletes are processed. | Brad Payne (Vir Linden) | |
2013-06-07 | SH-4216 WIP - moved AISv3 commands and responders to llaisapi.* files | Brad Payne (Vir Linden) | |
2013-06-07 | SH-4216 WIP - broke up the onAISUpdateReceived monolith | Brad Payne (Vir Linden) | |
2013-06-06 | SH-4166 WIP - fix for a permissions issue that was preventing cof-created ↵ | Brad Payne (Vir Linden) | |
links from being reordered in outfits. | |||
2013-06-05 | SH-3635 WIP - logging cleanup, moved some big dumps into separate XML files | Brad Payne (Vir Linden) | |
2013-06-05 | SH-3635 WIP - COF slammer works in AISv3 regions. Extensive rework of ↵ | Brad Payne (Vir Linden) | |
onAISUpdateReceived. | |||
2013-05-24 | SH-4207 WIP - use item updates with callback when updating link ↵ | Brad Payne (Vir Linden) | |
descriptions. Reworked updateAppearanceFromCOF() cof-validation stages. | |||
2013-05-24 | SH-4027 WIP - initial implementation of item update via AIS. | Brad Payne (Vir Linden) | |
2013-05-20 | SH-4200 FIX - retry ais ops on 5xx errors, dialed back some verbose logging. | Brad Payne (Vir Linden) | |
2013-05-13 | SH-4168 WIP, SH-4155 WIP - update inventory model based on ais returns, try ↵ | Brad Payne (Vir Linden) | |
to maintain loading... string more consistently in folder bridge | |||
2013-05-09 | SH-4168 WIP - fixed some bugs in inventory deletion and lost-and-found handling. | Brad Payne (Vir Linden) | |
2013-05-07 | SH-4154 FIX - added a few more validity checks. Disabled by default so users ↵ | Brad Payne (Vir Linden) | |
won't have logs spammed. | |||
2013-05-01 | SH-4154 WIP - gInventory.validate() has inventory model internal consistency ↵ | Brad Payne (Vir Linden) | |
checks | |||
2013-04-25 | SH-4137 WIP - added callback-based support for purge descendents, remove ↵ | Brad Payne (Vir Linden) | |
category | |||
2013-04-24 | SH-4128 WIP - misc cleanup | Brad Payne (Vir Linden) | |
2013-04-24 | SH-4128 WIP - cleanup around item link removal and callbacks | Brad Payne (Vir Linden) | |
2013-04-24 | CHUI-849 WIP, SH-4116 WIP - added simpler match check in inventory for when ↵ | Brad Payne (Vir Linden) | |
we don't need the list of matches to be returned. | |||
2013-04-18 | SH-4116 WIP - removed follow_folder_links behavior, which was used nowhere ↵ | Brad Payne (Vir Linden) | |
and isn't really desirable currently | |||
2013-04-18 | SH-4128 WIP - avoid needless called to updateLinkedObjectsFromPurge() | Brad Payne (Vir Linden) | |
2013-04-08 | merge | prep | |
2013-04-05 | merge | Nyx Linden | |
2013-04-03 | SH-4058 - log spam reduction initiative. | Brad Payne (Vir Linden) | |
2013-03-13 | Merging LLCURL::Responder changes with CHUI changes. Fixed gcc 4.6 compile ↵ | Don Kjer | |
failures | |||
2013-03-13 | Large changes to the LLCurl::Responder API, as well as pulling in some ↵ | Don Kjer | |
changes to common libraries from the server codebase: * Additional error checking in http handlers. * Uniform log spam for http errors. * Switch to using constants for http heads and status codes. * Fixed bugs in incorrectly checking if parsing LLSD xml resulted in an error. * Reduced spam regarding LLSD parsing errors in the default completedRaw http handler. It should not longer be necessary to short-circuit completedRaw to avoid spam. * Ported over a few bug fixes from the server code. * Switch mode http status codes to use S32 instead of U32. * Ported LLSD::asStringRef from server code; avoids copying strings all over the place. * Ported server change to LLSD::asBinary; this always returns a reference now instead of copying the entire binary blob. * Ported server pretty notation format (and pretty binary format) to llsd serialization. * The new LLCurl::Responder API no longer has two error handlers to choose from. Overriding the following methods have been deprecated: ** error - use httpFailure ** errorWithContent - use httpFailure ** result - use httpSuccess ** completed - use httpCompleted ** completedHeader - no longer necessary; call getResponseHeaders() from a completion method to obtain these headers. * In order to 'catch' a completed http request, override one of these methods: ** httpSuccess - Called for any 2xx status code. ** httpFailure - Called for any non-2xx status code. ** httpComplete - Called for all status codes. Default implementation is to call either httpSuccess or httpFailure. * It is recommended to keep these methods protected/private in order to avoid triggering of these methods without using a 'push' method (see below). * Uniform error handling should followed whenever possible by calling a variant of this during httpFailure: ** llwarns << dumpResponse() << llendl; * Be sure to include LOG_CLASS(your_class_name) in your class in order for the log entry to give more context. * In order to 'push' a result into the responder, you should no longer call error, errorWithContent, result, or completed. * Nor should you directly call httpSuccess/Failure/Completed (unless passing a message up to a parent class). * Instead, you can set the internal content of a responder and trigger a corresponding method using the following methods: ** successResult - Sets results and calls httpSuccess ** failureResult - Sets results and calls httpFailure ** completedResult - Sets results and calls httpCompleted * To obtain information about a the response from a reponder method, use the following getters: ** getStatus - HTTP status code ** getReason - Reason string ** getContent - Content (Parsed body LLSD) ** getResponseHeaders - Response Headers (LLSD map) ** getHTTPMethod - HTTP method of the request ** getURL - URL of the request * It is still possible to override completeRaw if you want to manipulate data directly out of LLPumpIO. * See indra/llmessage/llcurl.h for more information. | |||
2013-03-12 | Removed unneeded code. | prep linden | |
2013-03-11 | merge | prep | |
2013-03-11 | merge | prep | |
2013-03-11 | Viewer-chui merge | prep | |
2013-03-05 | Fixing issues with not detecting when LLSD XML parsing fails. Changing most ↵ | Don Kjer | |
http error handlers to understand LLSD error responses. Fleshing out most http error handler message spam. | |||
2013-03-01 | SH-3860 WIP - fixes the cloud on initial login, still have a COF version rae ↵ | Brad Payne (Vir Linden) | |
condition due to creation of the base outfit link | |||
2013-02-27 | SH-3860 WIP - fixes for initial COF loading and config | Brad Payne (Vir Linden) | |
2013-02-25 | SH-3860 WIP, SH-3899 WIP - make folder version management more debuggable, ↵ | Brad Payne (Vir Linden) | |
log appearance request results | |||
2012-11-20 | Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-beta. | William Todd Stinson | |
2012-11-09 | Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-beta. | William Todd Stinson | |
2012-10-11 | Updating linux build to gcc4.6 | Don Kjer | |
2012-09-04 | CHUI-303: Problem was that the prior solution only updated (using ↵ | Gilbert Gonzales | |
dirtyFilter()) the inventory window that the paste occurred in. Resolution: Now each inventory window calls dirtyFilter(), which then determines visibility of the pasted item. | |||
2012-07-30 | CHUI-217 FIX Items are not visible in Merchant Outbox | Richard Linden | |
cleaned up a lot custom code for folder view item creation in inbox and outbox proper initialization of views from inventory panel starting folder | |||
2012-07-30 | merge | Brad Payne (Vir Linden) | |
2012-07-27 | Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-release. | Todd Stinson | |
2012-07-20 | CHUI-207 FIXED Emptying Lost and Found and Trash in inventory crashes viewer | AlexanderP ProductEngine | |
2012-07-19 | CHUI-236 : WIP : Places panel works for My Inventory but still empty lists ↵ | Merov Linden | |
for Favorites Bar, My Landmarks and Library. | |||
2012-07-19 | CHUI-236 : WIP : Modify the handling of FT_ROOT_INVENTORY which was creating ↵ | merov_linden | |
havoc in LLInventoryModel instantiation. Still, some of those hack will have to come back on. | |||
2012-06-22 | merge | Dave Parks | |
2012-06-21 | CHUI-101 WIP Make LLFolderview general purpose | Richard Linden | |
inventory item labels and icons displaying again | |||
2012-06-04 | merge | Brad Payne (Vir Linden) | |
2012-05-25 | Merge pull from lindenlab/viewer-development as requested by Oz for DRTVWR-148 | simon@Simon-PC.lindenlab.com | |