summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterregioninfo.cpp
AgeCommit message (Collapse)Author
2015-05-14Make generic callback version of trivial GET/PUT methods. Make message use ↵Rider Linden
these methods.
2015-05-12Added trivial case GET and POST to the CoreHTTP UtilsRider Linden
converted llfloaterregioninfo to use coroutine's and new LLCore::HTTP
2014-09-08Merge with 3.7.15-releasedolphin
2014-08-06merge changes for STORM-2030Oz Linden
2014-06-24Updated all experience responders for LLCurl::Responder interface changes ↵Cho
for ACME-1535 and ACME-1536
2014-06-20Updated LLExperienceCache::LLExperienceResponder to work with updated ↵Cho
LLCurl::Responder interface, to fix ACME-1532 and ACME-1525
2014-06-19Updated LLRegionExperienceResponder and LLExperienceSearchResponder to use ↵Cho
new interface
2014-06-17Merge with 3.7.9-releasedolphin
2014-05-31Fixed ACME-1436 and ACME-1501Cho
2014-05-30Added a popup for choosing this or all estates when adding/removing an ↵Cho
experience in the Region/Estate floater for ACME-1436
2014-05-27ACME-1496: Fixed typo in estate floaterdolphin
2014-05-20Merge with 3.7.8-releasedolphin
2014-05-19mergeBrad Payne (Vir Linden)
2014-05-16ACME-1459: Experience tab added to the about land tab for editing parcel ↵dolphin
Experiences
2014-05-13ACME-1474: Prevent the viewer from trying to add or remove the default ↵dolphin
experience.
2014-05-13sunshine-external merge WIPBrad Payne (Vir Linden)
2014-05-12STORM-2030 Rapidly clicking the refresh button in selected floaters may ↵Jonathan Yap
result in duplicate entries
2014-05-07removed deprecated logging macrosdolphin
2014-05-07Merge with 3.7.7-releasedolphin
2014-05-07Pull and merge viewer-release as version 3.7.8simon
2014-05-01Added counter of experiences in trusted/allowed/blocked lists in ↵Cho
Region/Estate floater for ACME-1435
2014-04-24Refactored to share code between experience search floater and panel for ↵Cho
ACME-1420
2014-04-16Fix linux builddolphin
2014-04-16Removed filtering of existing estate experiences from the estate ↵dolphin
exxperiences panel
2014-04-04Changed estate experience editing to use sendEstateOwnerMessagedolphin
2014-02-26Moved the experience acquire code to the experiences paneldolphin
2014-02-26Updated purchase UI for experiences.dolphin
2014-02-12Merge with 3.7.0dolphin
2014-02-12merge with releaseRichard Linden
2014-02-11mergeBrad Payne (Vir Linden)
2014-02-10Merge downstream code with viewer-releasesimon
2014-02-04Remove linden experiences from the blocked list.dolphin
2014-02-04Added an experience tab to the region floaterdolphin
2013-12-06MAINT-3530 : Add viewer checkbox to extend parcel entry limits to a higher ↵simon
ceiling
2013-11-27MAINT-3495 FIXED Improve discoverability of Region Debug floatermaksymsproductengine
2013-11-19STORM-1980 Merge changes Oz made (new way of detecting an agent has changed ↵Jonathan Yap
regions) Modify code to make use of the changed callback
2013-11-19replace uses of LLEnvManagerNew::setRegionChangeCallback with ↵Oz Linden
LLAgent::addRegionChangedCallback
2013-11-15STORM-1980 Added a floater displaying a countdown timer.Jonathan Yap
Removed most of the previous changes.
2013-11-06merge with releaseRichard Linden
2013-10-29Merge viewer-release => sunshine-internalDon Kjer
2013-08-14merge changes for STORM-1932Oz Linden
2013-08-09second phase summer cleaningRichard Linden
replace llinfos, lldebugs, etc with new LL_INFOS(), LL_DEBUGS(), etc.
2013-06-05merge with viewer-releaseRichard Linden
2013-05-21mergeBrad Payne (Vir Linden)
2013-05-10SH-3931 WIP Interesting: Add graphs to visualize scene load metricsRichard Linden
renamed LLView::handleVisibilityChange to onVisibilityChange to reflect standard naming conventions for handlers vs. reactors
2013-04-19merge changes for DRTVWR-294Oz Linden
2013-03-29Update Mac and Windows breakpad builds to latestGraham Madarasz
2013-03-13Merging LLCURL::Responder changes with CHUI changes. Fixed gcc 4.6 compile ↵Don Kjer
failures
2013-03-13Large 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-11Viewer-chui mergeprep