summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-01-20moved LLSDParam to llcommon so that LLSD<->Param Block conversion are usable ↵Richard Linden
by everyone
2012-01-20Automated merge with ↵Xiaohong Bao
https://bitbucket.org/VirLinden/viewer-development-shining-fixes
2012-01-20trivial: remove debug code for SH-2828 [crashhunters] Crash in ↵Xiaohong Bao
LLRefCount::unref(), bad stacks
2012-01-20SH-2889 Add visual auto-muting controlsDave Parks
2012-01-20removed LLXUIXML libraryRichard Linden
moved LLInitParam, and LLRegistry to llcommon moved LLUIColor, LLTrans, and LLXUIParser to llui reviewed by Nat
2012-01-20EXP-1799 FIX -- Replace and Add to Outfit options appear as grayed out in ↵Leslie Linden
Inventory * Modified build context menu code to not disable items that are invisible so secondary background fetch can coalesce menu options with proper state. * Removed "Move to Merchant Outbox" context menu option.
2012-01-20fix for SH-2823 and SH-2824: LLCurl crash inside LLBufferArray::countAfter() ↵Xiaohong Bao
and LLBufferArray::copyIntoBuffers
2012-01-19fixed buildRichard Linden
2012-01-19made layoutPanels have constant user_resize and auto_resize attributesRichard Linden
2012-01-19Automated merge with ssh://hg.lindenlab.com/richard/viewer-experience-merge/Richard Linden
2012-01-19EXP-1824 FIX Received Items panel does not collapse correct when Height of ↵Richard Linden
panel is maximized in Inventory window
2012-01-19EXP-1829 FIX -- Selecting a valid item last allows other selected invalid ↵Leslie Linden
items to be copied to Outbox with context menu option * Updated context menu default enabled state to use the last state rather than TRUE. Once per frame, the states are all reset to TRUE so this has the effect of AND'ing together successive buildContextMenu functions rather than ignoring previous states.
2012-01-19EXP-1828 FIX -- Drag and drop to an open folder in the outbox causes it to ↵Leslie Linden
close automatically * Updated auto-open behavior to ignore items that are already open.
2012-01-19To grow std::string by a char, use push_back() instead of append().Nat Goodspeed
2012-01-19* Added member variables to avoid several per-frame getChild calls.Leslie Linden
2012-01-19EXP-1827 FIX -- Drag area in outbox does not always highlight green when ↵Leslie Linden
indicating a top level drop * Updated the outbox drop area highlight to include top level drops within the outbox inventory panel itself.
2012-01-19Try to fix argument quoting on Windows.Nat Goodspeed
Despite LLProcessLauncher's list-of-argument-strings API, on Windows it must ram them all into a single command-line string anyway. This means that if arguments contain spaces (or anything else that would confuse Windows command- line parsing), the target process won't receive the intended arguments. Introduce double quotes for any arguments not already double-quoted by caller.
2012-01-19SH-2794 Fix for bad textures on some hardware when vbo mapping disabled ↵Dave Parks
(always use GL_STREAM_DRAW as the usage hint when mapping is disabled as geometry will be uploaded again and again)
2012-01-19mergeDebi King (Dessie)
2012-01-19reconciled .hgtagsDebi King (Dessie)
2012-01-19Added tag DRTVWR-111_3.2.7-beta1, 3.2.7-beta1 for changeset 3d75c836d178Debi King (Dessie)
2012-01-19SH-2779 Fix for some transparent rigged attachments not being rendered ↵Dave Parks
correctly.
2012-01-19mergeDave Parks
2012-01-19SH-2885 Add mesh requests pending/processing line to "Show Render Info"Dave Parks
2012-01-18Fix a Linux compilation failureMerov Linden
2012-01-18Automated merge with ↵Xiaohong Bao
https://bitbucket.org/VirLinden/viewer-development-shining-fixes
2012-01-18fix for SH-2827: [crashhunters] Crash in LLPipeline::generateWaterReflection()Xiaohong Bao
2012-01-18Merge with latestLeslie Linden
2012-01-18EXP-1704 FIX -- Updated text for Empty Received Items panel in ViewerLeslie Linden
* Updated to latest text per Leo's comment in the JIRA.
2012-01-18EXP-1550 FIX -- New tag shown and not removed on click when rezzing an item ↵Leslie Linden
from Received Items panel and taking back into inventory. * Inventory folder creation dates are now only set once, rather than being updated every time a new item is added.
2012-01-18SH-2598 Fix for crash when rendering mesh silhouette (workaround driver bug ↵Dave Parks
by rendering from client memory instead of using face VBO).
2012-01-18removed some invalid attributesRichard Linden
2012-01-18EXP-1816 FIX -- Drag area in outbox can remain highlighted after drag and ↵Leslie Linden
drop ends * Added handleHover function to clear highlight
2012-01-18EXP-1125 FIX -- New tags always shown in Received Items inbox when Inventory ↵Leslie Linden
window is detached from side panel EXP-1578 FIX -- received items folder shows shadows of content when scrolling through lots of folders in same window * Put in guard to prevent the inventory panel from being created multiple times
2012-01-18EXP-1812 FIX Cannot resize location bar / favorites in top navigation bar in ↵Richard Linden
viewer
2012-01-18mergeDave Parks
2012-01-18SH-2794 Map buffer now performs as well as buffersubdataDave Parks
2012-01-18Make embedded Python scripts compatible with Python 2.5 *SIGH*Nat Goodspeed
Apparently our TeamCity build machines are still not up to Python 2.6.
2012-01-18Add tests for implicit-kill-on-destroy, also orphan() method.Nat Goodspeed
2012-01-18Introduce static LLProcessLauncher::isRunning(ll_pid_t) method.Nat Goodspeed
typedef LLProcessLauncher::ll_pid_t to be HANDLE on Windows, pid_t elsewhere. Then we can define getProcessID() returning ll_pid_t on all platforms, retaining getProcessHandle() for hypothetical existing consumers... of which there are none in practice. This lets us define isRunning(ll_pid_t) to encapsulate the platform-specific logic to actually check on a running child process, turning non-static isRunning() into a fairly trivial wrapper.
2012-01-17add more exception handlings for llcurl fix.Xiaohong Bao
2012-01-17Add tests for child-process args management and for kill() method.Nat Goodspeed
2012-01-17Refactor llprocesslauncher_test.cpp for better code reuse.Nat Goodspeed
Instead of free python() and python_out() functions containing a local temporary LLProcessLauncher instance, with a 'tweak' callback param to "do stuff" to that inaccessible object, change to a PythonProcessLauncher class that sets up a (public) LLProcessLauncher member, then allows you to run() or run() and then readfile() the output. Now you can construct an instance and tweak to your heart's content -- without funky callback syntax -- before running the script. Move all such helpers from TUT fixture struct to namespace scope. While fixture-struct methods can freely call one another, introducing a nested class gets awkward: constructor must explicitly require and bind a fixture-struct pointer or reference. Namespace scope solves this. (Truthfully, I only put them in the fixture struct originally because I thought it necessary for calling ensure() et al. But ensure() and friends are free functions; need only qualify them with tut:: namespace.)
2012-01-17EXP-1811 FIX Login progress floater has smaller than expected sizeRichard Linden
made minimum size reflect default size for 1024 width window of old layout stack no way to match behavior
2012-01-17Any proper RAII class must either handle copying or be noncopyable.Nat Goodspeed
NamedTempFile makes no attempt to deal with copying, therefore make it noncopyable.
2012-01-17more exception handlings for llcurl fixes.Xiaohong Bao
2012-01-17EXP-1809 FIX Buttons in right toolbar clipped and can be out of positionRichard Linden
2012-01-17Automated merge with ssh://hg.lindenlab.com/richard/viewer-experience-merge/Richard Linden
2012-01-17EXP-1810 FIX Cannot resize Received items panel in Inventory windowRichard Linden
2012-01-17Add first couple of LLProcessLauncher tests.Nat Goodspeed
Run INTEGRATION_TEST_llprocesslauncher using setpython.py so we can find the Python interpreter of interest. Introduce python() function to run a Python script specified using NamedTempFile conventions. Introduce a convention by which we can read output from a Python script using only the limited pre-January-2012 LLProcessLauncher API. Introduce python_out() function to leverage that convention. Exercise a couple of LLProcessLauncher methods using all the above.