summaryrefslogtreecommitdiff
path: root/indra/newview/llpanellogin.cpp
AgeCommit message (Collapse)Author
2010-05-21Fix for EXT-5667 (support window.open() in shared media so google docs will ↵Monroe Linden
work). Moved the processing of clicks on _external and _blank targeted links from LLMediaCtrl to LLViewerMediaImpl. Removed LLMediaCtrl::setOpenInExternalBrowser() since that functionality is available through the use of the _external target attribute in web content. Removed LLMediaCtrl:: setOpenInInternalBrowser() since it was unimplemented and not used. Made the webkit media plugin set llqtwebkit's window open behavior to WOB_SIMULATE_BLANK_HREF_CLICK. This is #ifdefed out on Linux until we get a new Linux build of llqtwebkit.
2010-05-04Automated mergeRoxie Linden
2010-05-03EXT-6775 Remove support for full-screen mode in Viewer 2. reviewed by davep.Karl Stiefvater (qarl)
2010-04-29DEV-49491 - Multiple spaces between first and last name in username cause ↵Roxie Linden
failed login
2010-04-23automated mergeRoxie Linden
2010-04-22DEV-49332 - cryptic error message when typing in single username when ↵Roxie Linden
logging into maingrid. Needs to be changed when IE is checked in, of course. Now we check the expected credential formats for a given grid against the format that is typed in, and throw an error if it's invalid.
2010-04-21Remove diamondware and rearrange login panel to be like it is in the default ↵Roxie Linden
viewer 2 build
2010-04-21fixed EXT-6858 Corrupted timestamp for system notification about CAPSLOCK is onAlexei Arabadji
Removed useless sending notification "CapsKeyOn" since it doesn't fit actual design; reviewed by Vadim Savchuk https://codereview.productengine.com/secondlife/r/277/ --HG-- branch : product-engine
2010-04-21Show beta grids depending on a settings.xml setting. for SLE, this will be ↵Roxie Linden
turned off. For trunk, it's turned on. Also, fixed an issue with manual entry of locations into the location dropdown.
2010-04-07Backed out changeset 63b699f90efdTofu Linden
2010-04-06automated merge of DEV-48542Roxie Linden
2010-04-06DEV-48542 - CID-444/CID-445: missing break in switch, llpanellogin.cppRoxie Linden
Added missing breaks. CR: Josh
2010-03-29Automated mergeRoxie Linden
2010-03-26EXT-6517 Now updating the location value in refreshLocation.Mark Palange (Mani)
Reviewed by Richard
2010-03-08DEV-45976 Last Login Location Preference not rememberedRoxie Linden
2010-02-19Fixed normal bug EXT-5488(After login to specific region, next startup shows ↵Eugene Mutavchi
location box empty preventing login) --HG-- branch : product-engine
2010-02-05mergerichard
2010-02-05EXT-5025 - Tooltips block mouse clicksrichard
EXT-4547 [BSI] it is possible to highlight multiple layers of chat EXT-3844 Mouse wheel camera zoom is not reflected on View popup slider EXT-3103 Add an option to restrict entering non-ascii symbols in text editor. reviewed by Leyla
2010-02-05EXT-4237 Fixed ShowStartLocation behavior.Mark Palange (Mani)
Now the show don't show behavior is always dependent on the ShowStartLocation pref. ShowStartLocation defaults to off, but is automatically turned on after first successful login. Reviewed by Richard.
2010-02-04Backed out changeset: b579077ebc79Mark Palange (Mani)
I gave lynx a bad review. :( I didn't know about the setting FirstLoginThisInstall. I'm backing out lynx's change, then re-fixing EXT-4237.
2010-02-04EXT-4237: Don't show Start Up pulldown until successful login.Lynx Linden
Previously any login attempt, even a failed one, would cause the Start Up pulldown to appear. Now only a successful login will cause this to happen. Also renamed the setting FirstRunThisInstall to the more accurate HadFirstSuccessfulLogin (and inverted its logic). Reviewed by Mani.
2010-01-05Automated merge with ssh://rick@hg.lindenlab.com/viewer/viewer-2-0Rick Pasetto
2009-12-31EXT-3778 Fixed handling of url passed in on cmd line.Mark Palange (Mani)
The url from the cmd line was being overridden by the LoginLocation setting. (my bad!) Removed unnecessary llurlsimstring.h includes.
2009-12-18Fix slurl crashing, fix slurls highlighting objects, fix overlapping objects ↵Rick Pasetto
not "unhighlighting"
2009-12-18Automated merge with ssh://rick@hg.lindenlab.com/viewer/viewer-2-0/Rick Pasetto
2009-12-18Merge with viewer-2-0 again, to pick up avatar changesJames Cook
2009-12-17Made LLPanelLogin tell the browser plugin to clear its cache before opening ↵Monroe Linden
the login screen. Added clearCache() functions to LLViewerMediaImpl and LLMediaCtrl to facilitate this.
2009-12-16MergeJames Cook
2009-12-15Automated merge with http://demeter:8000Rick Pasetto
2009-12-15fixed enter not performing loginrichard
2009-12-15mergeRick Pasetto
2009-12-11Merge from default branch.Vadim Savchuk
--HG-- branch : product-engine
2009-12-11implemented EXT-2323 “Get rid from obsolete notification widgets”;Alexei Arabadji
--HG-- branch : product-engine
2009-12-10Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0/Nat Goodspeed
2009-12-10Add LL(URLDispatcher,CommandDispatcher,PanelLogin)ListenerNat Goodspeed
LLURLDispatcherListener accepts requests for LLURLDispatcher. LLCommandDispatcherListener accepts requests for LLCommandDispatcher. LLPanelLoginListener accepts requests specifically for LLPanelLogin. Initially it supports a simulated click to the "Log In" button.
2009-12-10DEV-43977: Changed pre-login help browser behavior.Lynx Linden
The special pre_login_help topic is now only displayed when the user clicks on the "Need help logging in?" link on the login screen, or selects the top-level Help > Second Life Help (F1) menu.
2009-12-10mergeLeyla Farazha
2009-12-10EXT-3047 "Block" item in "more verbs" menu of mini inspector isn't ↵Leyla Farazha
disabled when resident is blocked EXT-3358 Cannot toggle Grid pulldown on login screen reviewed by Richard
2009-12-10Automated merge with ssh://rick@hg.lindenlab.com/viewer/viewer-2-0Rick Pasetto
2009-12-08DEV-43439: Created new LLVersionInfo API.Lynx Linden
Renamed llviewerversion to llversioninfo, to avoid confusion with llversionviewer in llcommon (llversion is already used by llwindow). Created new LLVersionInfo class with the following methods: static S32 getMajor(); static S32 getMinor(); static S32 getPatch(); static S32 getBuild(); static const std::string &getVersion(); static const std::string &getShortVersion(); static const std::string &getChannel(); All viewer code has been updated to use this API. Viewer code no longer directly includes llversionviewer.h from llcommon.
2009-12-08EXT-2350: Added a help link to login panel.Lynx Linden
There is now a new "Need help logging in?" link on the right-hand side of the login panel. Clicking on this brings up the help browser with the pre_login_help topic (the same as pressing F1).
2010-03-01Automated merge with a few fixups for code review commentsRoxie Linden
2010-02-26automated mergeRoxie Linden
2010-02-26automated mergeRoxie Linden
2010-02-26automated mergeRoxie Linden
2009-12-07DEV-43439: Rename llviewerbuild.{cpp|h} -> llviewerversion.{cpp|h}Lynx Linden
This module now contains general viewer version routines, not just access to the viewer build number, so I've renamed it from llviewerbuild to llviewerversion.
2009-12-07DEV-43439: Added calls to query the viewer version.Lynx Linden
Rather than copy/paste the same version string formatting pattern again, I added new string-based version routines: /// return the full viewer version as a string like "2.0.0.200030" const std::string &llGetViewerVersion(); /// return the viewer version as a string like "2.0.0" const std::string &llGetViewerShortVersion(); /// return the viewer build version as a string, e.g., "200130" const std::string &llGetViewerBuildVersion();
2009-12-02Use new Erica-supplied login screen bottom image.James Cook
2009-11-30Add support for dropping a region SLURL on login page and populating the UIcallum
2009-11-25mergeMark Palange (Mani)