summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterwebcontent.cpp
AgeCommit message (Collapse)Author
2018-04-16MAINT-8453 FIXED The "Reload page" button is displayed for some time after ↵maxim_productengine
opening media browser
2018-02-12MAINT-8276 Arrows 'Navigate back' and 'Navigate forward' have wrong stateAndrey Kleshchev
2016-08-20MAINT-6663 [Win LibVLC] test video buttons still appearing in searchAndreyL ProductEngine
2016-07-22Polish web content floater - rename to reflect it now does all media. remove ↵Callum Linden
developer options when Develop menu closed. start at google home page by default.
2016-05-23Automated merge with tip of viewer-releasecallum_linden
2016-05-10working test button in web browser floater - video invertedcallum_linden
2015-11-10remove execute permission from many files that should not have itOz Linden
2014-09-05MAINT-3440 (Refix) Viewer freezes and not responding after trying to open 5 ↵callum_linden
new media browsers tabs directed to yahoo.com link
2014-06-24Pull downstream viewer-tiger and become version 3.7.11simon
2014-06-24Merge viewer-release and become version 3.7.11simon
2014-06-18Merge downstream codesimon
2014-06-17Pull merge from lindenlab/viewer-releaseMerov Linden
2014-06-17Merge viewer-release and become version 3.7.9simon
2014-05-15MAINT-3440 FIX Viewer freezes and not responding after trying to open 5 new ↵Callum Prentice
media browsers tabs directed to yahoo.com link
2014-05-13sunshine-external merge WIPBrad Payne (Vir Linden)
2014-05-07Merge downstream version 3.7.8 codesimon
2014-05-06Pull merge from lindenlab/viewer-release. Fixed some conflicts and compile ↵Merov Linden
errors
2014-03-03MAINT-2902 FIXED Browser secure session indicator should be prominentmaksymsproductengine
2014-02-24mergeBrad Payne (Vir Linden)
2014-02-19Merge with releaseRichard Linden
2014-02-10Pull merge ACME-1317 emergency fixMerov Linden
2014-02-11Hack to fix ACME-1317Cho
2013-12-12Pull merge from lindenlab/viewer-releaseMerov Linden
2013-12-05mergeBrad Payne (Vir Linden)
2013-12-04ACME-1043 : Fixed! Added an argument to force a clean full feature browser ↵Merov Linden
window in some situations
2013-12-04ACME-1043 : WIP : Add an argument to open trusted content with js and other ↵Merov Linden
enabled options, bypassing prefs
2013-11-20BUILDFIX: forgot template parameterRichard Linden
2013-11-11Automated merge with http://bitbucket.org/lindenlab/viewer-releaseRichard Linden
2013-11-06merge with releaseRichard Linden
2013-11-06separated web floaters for Facebook, Flickr, and Twitter to fix ACME-1151Cho
2013-11-02added Flickr floater for ACME-1136, ACME-1137, ACME-1138, ACME-1140, and ↵Cho
ACME-1141
2013-10-29Merge viewer-release => sunshine-internalDon Kjer
2013-09-26ACME-946 : Do not force set the focus on the web element, that messes things ↵Merov Linden
up badly...
2013-10-23Merge latest viewer-release with FBCsimon
2013-08-09second phase summer cleaningRichard Linden
replace llinfos, lldebugs, etc with new LL_INFOS(), LL_DEBUGS(), etc.
2013-08-02ACME-796 : Do not flip the fbc state to failure while connecting through web ↵Merov Linden
browser. Handle the dismiss case as best as possible.
2013-08-02MAINT-2902 FIXED Browser secure session indicator should be prominentmaksymsproductengine
2013-07-23ACME-734 : Fix issues with the lock icon when editing the address bar. ↵Merov Linden
Generalize the secure browsing UI.
2013-07-22ACME-734 : Fix: Do not log empty URLs, refocus on page if the focus was thereMerov Linden
2013-07-21ACME-734 : Fix : Factorize and clean up web browsing address, log and ↵Merov Linden
history code
2013-07-19ACME-734 : Fix : Feed browsing history but without the query partMerov Linden
2013-07-19ACME-734 : Fix : Continue to log but just skip the query partsMerov Linden
2013-07-19ACME-734 : Suppress the green https experiment, prevent logging urls when ↵Merov Linden
skipping history, allow temporary url for display purposes
2013-07-18ACME-734 : WIP : Implemented changes for https URL in the address bar and ↵Merov Linden
added options to web floater to hide history and disable buttons
2013-05-21mergeBrad Payne (Vir Linden)
2013-03-29Update Mac and Windows breakpad builds to latestGraham Madarasz
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.
2012-03-06EXP-1767 WIP Received Items panel state does not persist between sessionsRichard Linden
ensure that layout stack has updated its layout before manually resizing one of its elements (which was causing the manual resize to be stomped on by the newly triggered layout update) made layout stack animation occur even when layout stack not visible (inventory will appear in proper open/closed state) LLView::setShape() now only calls handleReshape() when dimensions change removed extraneous calls to LLLayoutStack::updateClass() so that it should be called only once per frame now, allowing it to limit animation updates to layout stacks to one per frame. fixed rendering glitches arising from reshaping LLFolderView while in the middle of its draw() method
2011-12-12merge changes for vmrg-204Oz Linden
2011-12-06EXP-1577 FOLLOWUP Implemented new requirements on size of profile floaters.Vadim ProductEngine
Implemented new requirements from XD: "Profile window should keep last size, regardless of whether it was own profile or another users'. If multiple windows open, last one touched is the size we store."