summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelplaces.cpp
AgeCommit message (Collapse)Author
2022-10-27DRTVWR-570 Mac build fix: unused variables cleanupAndrey Lihatskiy
2022-05-31SL-15312 Tweaks and fixesAndrey Kleshchev
- Allowed resizing text fields for classifieds in profiles - Fixed mislabeled floater from picks to classifieds - Fixed classified floater's title - Added support to see multiple classifieds - Removed obsolete panels - Fixed pick requests for various menus - Fixed pick creation from landmarks - Improved online status handling - Updated headers in files
2021-06-25Merge branch 'master' into DRTVWR-527-maintAndrey Lihatskiy
# Conflicts: # indra/newview/llinventorypanel.cpp
2021-04-23SL-14842 Tooltip for clear historyAndrey Kleshchev
2021-04-23SL-15144 FIXED The "Remove" button is enabled with no selectionMnikolenko Productengine
2021-04-22SL-14842 Clear history should be it's own buttonAndrey Kleshchev
2021-03-25SL-14855 Disable edit button for uneditable itemsAndrey Kleshchev
2021-03-23SL-14900 new Landmark creation flowMnikolenko Productengine
2021-03-16SL-14938 Remove Library and Inventory from Places floaterMnikolenko Productengine
2021-02-25SL-14901 Add a button on the Landmarks bar to open the Places floaterMnikolenko Productengine
2021-02-24SL-14842 Apply toolstrip layout to Places floater Part #3Andrey Kleshchev
Removed unused buttons, moved some UI elements to be more in line with each other
2021-02-24SL-14842 Apply toolstrip layout to Places floater Part #2Andrey Kleshchev
Hide buttons
2021-02-24SL-14842 Apply toolstrip layout to Places floater Part #1Andrey Kleshchev
Menus
2021-02-19SL-14797 Normalize right-click - favorites panel, part #4Andrey Kleshchev
2021-02-05SL-14797 Normalize right-click menus on Landmarks & Picks Part#2Andrey Kleshchev
2021-02-05SL-14797 Normalize right-click menus on Landmarks & Picks Part#1Andrey Kleshchev
2020-05-26SL-13279 Changes in Landmarks view UI - clarify that Notes are editableMnikolenko Productengine
2019-11-12Downstream merge from 494-maint-wassailAndreyL ProductEngine
2019-09-06SL-11894 FIXED Crash: SecondLifeViewer!LLPanelPlaces::onShowOnMapButtonClickedmaxim_productengine
2019-08-10DRTVWR-493 LLUI to LLParamSingletonandreykproductengine
2017-12-11MAINT-2177 User was able to create a landmark for remote locationandreykproductengine
2017-01-05MAINT-7029 Pop-up menu isn't shown in Place profile if all menu items are ↵Mnikolenko Productengine
disabled
2016-12-30MAINT-7026 Teleport history info panel is shown when it shouldn't be after ↵Mnikolenko Productengine
certain actions
2016-10-20MAINT-6830 Newly created & renamed favorite landmarks were displaying old nameandreykproductengine
2015-11-10remove execute permission from many files that should not have itOz Linden
2015-06-10MAINT-797 FIXED Hide Place profile panel and related buttons when opening ↵Mnikolenko ProductEngine
pick panel.
2014-10-20Update to build on Xcode 6.0: removal of some unused variablescallum_linden
2014-05-13sunshine-external merge WIPBrad Payne (Vir Linden)
2014-03-12mergeBrad Payne (Vir Linden)
2014-03-12merge with releaseRichard Linden
2014-02-12merge with releaseRichard Linden
2014-02-11mergeBrad Payne (Vir Linden)
2014-02-05MAINT-3555 crash in LLPanel::~LLPanel() on shutdown:maksymsproductengine
- memory leaks fixing;
2013-11-18add callbacks to LLAgent for Region and Parcel changesOz Linden
2013-11-01SH-4595 WIP - reworked descendents of LLInventoryAddedObserver to use ↵Brad Payne (Vir Linden)
gInventory.getAddedIDs(). LLInventoryAddedObserver isn't really needed anymore, but leaving it in as a debugging point at least for now.
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-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-08-09MAINT-712 FIXED Set "isLandmarkEditModeOn" to "false" before updating verbs ↵maxim_productengine
for Landmark tab
2011-11-02EXP-1473 : FIX. Added an onOpen key to open directly on the Landmarks list. ↵Merov Linden
Used this from the favorites toolbar Open Landmark. Also fixed the ugly stretching of the overflow button in edit landmark panel.
2011-09-29EXP-1209 FIXED Sidetray removed.Paul ProductEngine
- Removed all sidetray dependencies and the sidetray itself. - Also removed LLFloaterSidetrayTab and LLSidetrayListener as unused.
2011-09-22EXP-1223 FIXED (Create and register a floater for Places side tab)Paul ProductEngine
- Added xml for a new floater and registred it in the floaterreg - Removed side tray dependencies - Added static helper method: LLFloaterSidePanelContainer::showPanel
2011-06-15STORM-1339 FIXED Making a preventive fix for a crash in ↵Vadim ProductEngine
LLPanelPlaces::onTeleportButtonClicked().
2011-05-03EXP-624 Place profile floater may be opened by SLAppLeyla Farazha
2010-12-20STORM-411 FIXED The most of additional options in the Teleport History ↵Paul Guslisty
profile are always disabled - Deleted unimplemented menu items from XML - Hide "Make a Landmark" menu item in case "Teleport History Place Profile" panel is opened
2010-12-10Merge from viewer-developmentMonroe Linden
2010-12-09STORM-727 : Pull into viewer-developmentMerov Linden