Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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-01-30 | Pull merge from lindenlab/viewer-developement | Merov Linden | |
2013-01-24 | merging in viewer-beta. | Nyx Linden | |
Most of the merge was clean, a couple conflicts. Brought over a couple patches manually for llpolymesh. | |||
2012-11-28 | SH-3563. Pull and merge from viewer-development. Modest code changes to fix ↵ | prep | |
alignment issue in llAppearance. | |||
2012-11-09 | Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-beta. | William Todd Stinson | |
2012-11-08 | Automated merge with http://bitbucket.org/lindenlab/viewer-development | Dave Parks | |
2012-11-02 | Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-beta. | William Todd Stinson | |
2012-11-02 | merge back fixes from 3.4.1-beta12 | Oz Linden | |
2012-10-31 | MAINT-646 Fix for leak introduced by optimizations. | Dave Parks | |
2012-10-11 | Updating linux build to gcc4.6 | Don Kjer | |
2012-09-23 | Removing unused gHeadlessClient code from viewer | Don Kjer | |
2012-09-20 | reapply 448b02f5b56f: MAINT-1147 Fix for frame stall on region crossing. | Dave Parks | |
2012-09-20 | reapply fde2ac0276e2: MAINT-646 Get rid of a hotspot in ↵ | Dave Parks | |
LLViewerObjectList::update, fix for error in llpolymorph | |||
2012-09-10 | Backing out the changes contributing to DRTVWR-167 and DRTVWR-179 from the ↵ | William Todd Stinson | |
repository. | |||
2012-08-24 | Automated merge with http://bitbucket.org/lindenlab/viewer-cat | Richard Linden | |
2012-08-08 | merge | Brad Payne (Vir Linden) | |
2012-08-06 | removed some duplicate fast timer declarations | Richard Linden | |
2012-07-31 | Merge in viewer-development | simon@Simon-PC.lindenlab.com | |
2012-07-26 | Merge viewer-development -> viewer-horde-fixes | Don Kjer | |
2012-07-24 | merge to viewer-developmento | Oz Linden | |
2012-07-23 | Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-release. | Todd Stinson | |
2012-07-17 | Merge viewer-development -> viewer-horde-fixes | Don Kjer | |
2012-07-16 | SH-3275 WIP Run viewer metrics for object update messages | Richard Linden | |
clean up of llstats stuff | |||
2012-07-12 | SH-3275 WIP Run viewer metrics for object update messages | Richard Linden | |
improved update logging API and output format | |||
2012-07-09 | Skipping shiftObject pipeline method in headless mode | Don Kjer | |
2012-08-01 | Merge back viewer-lion, which has viewer-development and down-stream fixes | simon@Simon-PC.lindenlab.com | |
2012-07-20 | MAINT-570 Remove unused memory tracking system LLMemType | Dave Parks | |
2012-06-28 | Merge | Dave Parks | |
2012-06-28 | MAINT-678 Fix for inconsistent data in physics shape display | Dave Parks | |
2012-06-28 | merge | Dave Parks | |
2012-06-22 | Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-release. | Todd Stinson | |
2012-06-22 | merge | Dave Parks | |
2012-06-20 | MAINT-794 Move flexi idleUpdate and texture animation to their own update ↵ | Dave Parks | |
queues. | |||
2012-06-19 | MAINT-794 Factor out a lot of CPU overhead around updating objects. | Dave Parks | |
2012-06-13 | MAINT-1147 Fix for frame stall on region crossing. | Dave Parks | |
2012-06-11 | MAINT-646 Get rid of a hotspot in LLViewerObjectList::update, fix for error ↵ | Dave Parks | |
in llpolymorph | |||
2012-05-07 | MAINT-753 : [crashhunters] crash at LLVOVolume::updateFaceFlags(). Null ↵ | simon@Simon-PC.lindenlab.com | |
pointer checks are good. Reviewed by Kelly | |||
2012-03-15 | added stats tracking for texture/object cache hit rates and texture cache ↵ | Richard Linden | |
read latency | |||
2012-02-28 | PATH-199: Cleaning up code related to object flags so that I can better use ↵ | Todd Stinson | |
the flags to managed pathfinding flags such as permanent and character. | |||
2011-09-14 | merge | Brad Payne (Vir Linden) | |
2011-09-07 | Reduced text spam on exit by not trying to set all objects to a NULL region. | Leslie Linden | |
Reviewed by Richard. | |||
2011-08-15 | merging latest viewer-mesh into nyx's sidebranch | Nyx (Neal Orman) | |
2011-08-10 | merge viewer-development to mesh-development | Brad Payne (Vir Linden) | |
2011-08-02 | Sh-2129 Viewer caps implementation for resource cost selected. Also cleanup ↵ | prep linden | |
of old code related to earlier accounting work. | |||
2011-07-26 | merge with latest mesh-dev | Nyx (Neal Orman) | |
2011-07-25 | merging latest viewer-development to mesh merge candidate. | Nyx (Neal Orman) | |
2011-07-21 | SH-2031 Fix for stall in "Cleanup" | Dave Parks | |