summaryrefslogtreecommitdiff
path: root/indra/newview/llpreviewscript.cpp
AgeCommit message (Collapse)Author
2016-03-17MergeRider Linden
2015-12-21MAINT-1017 FIXED Disable checkbox during saving process to avoid glitch.Mnikolenko ProductEngine
2015-10-19Merge from viewer release.Rider Linden
2015-09-03Changes from code review with NatRider Linden
2015-09-02Move associated experience fetching into the ExperienceCache as a coro ↵Rider Linden
remove the responder.
2015-09-01MAINT-5575: Convert the Experience cache into a coro based singleton.Rider Linden
--HG-- branch : MAINT-5575
2015-08-27Convert LSL script preview compilation exp requestRider Linden
2015-08-18MAINT-5506: Fix ugly timing bug in llurlentry static initialization.Nat Goodspeed
The problem was that class-static LLUrlEntryParcel::sRegionHost was being initialized by copying class-static LLHost::invalid. Naturally, these two statics are initialized in different source files. Since C++ makes no promises about the relative order in which objects in different object files are initialized, it seems we hit a case in which we were trying to initialize sRegionHost by copying a completely uninitialized LLHost::invalid. In general we might attempt to address such cross-translation-unit issues by introducing an LLSingleton. But in this particular case, the punch line is that LLHost::invalid is explicitly constructed identically to a default-constructed LLHost! In other words, LLHost::invalid provides nothing we couldn't get from LLHost(). All it gives us is an opportunity for glitches such as the above. Remove LLHost::invalid and all references, replacing with LLHost().
2015-07-29MAINT-5376 FIXED Sort experiences by name in the LSL editor experience ↵Mnikolenko ProductEngine
chooser drop down list
2015-07-23Remove unused code and llassetuploadresponders files.Rider Linden
2015-07-17LSL Compile and upload from task object. Fix auto open when finished on all ↵Rider Linden
uploads...
2015-07-15LSL Script upload from inventory.Rider Linden
2015-07-01Merge from viewer-relese and become version 3.8.1andreykproductengine
2015-06-08merge changes for 3.7.29-releaseOz Linden
2015-05-22MAINT-999 FIXED Clear message when clicking Save button.Mnikolenko ProductEngine
2015-04-15Merge viewer-releasesimon
2015-04-13merge changes for 3.7.27-releaseOz Linden
2015-01-13merge changes for 3.7.24-releaseOz Linden
2014-12-19merge with 3.7.23-releasemaksymsproductengine
2014-11-05MAINT-202 FIXED Can't open scripts in copied objects individually on the viewer2andreykproductengine
2014-10-20Update to build on Xcode 6.0: Large (and final) collection of fixes for ↵callum_linden
unused variables, unused const-variables, unused member variables & functions etc. Also removed flags from CMake
2014-10-09Mergedolphin
2014-08-21Show experiences with blank names as (untitled experience) in experience ↵Cho
search, script editor, and allowed/trusted/blocked lists for ACME-1585
2014-08-20mergeCho
2014-08-20Added tooltip to > button in script editor for ACME-1588Cho
2014-08-06Merge with 3.7.13-releasedolphin
2014-07-09Merge with 3.7.11-releasedolphin
2014-07-23MAINT-4238 FIXED Accept new types of tokens/delimiters as well as TT_WORDMnikolenko ProductEngine
2014-07-07Merge viewer-release and become version 3.7.12simon
2014-07-07Merge downstream code and become 3.7.12simon
2014-06-24Updated all experience responders for LLCurl::Responder interface changes ↵Cho
for ACME-1535 and ACME-1536
2014-06-24Updated ExperienceResponder in llpreviewscript.cpp to use new ↵Cho
LLCurl::Responder interface for ACME-1534
2014-06-09Greatly simplify LLSyntaxIdLSL:Cinder
* Move file fetched callback to the singleton and handle all syntax id changes within the singleton * Remove a fair number of bool checks and method relying more on callbacks to drive syntax changes. * Don't pretty print the cache file to conserve space and to speed up xml to llsd parsing * Clean up includes
2014-06-05MergeRicky Curtice
2014-05-27ACME-1495: Fxied mergedolphin
2014-05-20Merge with 3.7.8-releasedolphin
2014-05-12Eliminate updateKeywords()Cinder
2014-05-12STORM-2027 - Fix syntax highlighting on subsequent opening of scripts.Cinder
This could use more refactoring, but it fixes it.
2014-05-11Fix callback signal, Eliminate some unnecessary staticsCinder
2014-05-07Merge up.Cinder
2014-05-07Code policyCinder
2014-05-07Merge downstream version 3.7.8 codesimon
2014-05-07Merge with 3.7.7-releasedolphin
2014-05-07Pull and merge viewer-release as version 3.7.8simon
2014-05-07Merge downstream version 3.7.8 codesimon
2014-05-07merge changes for 3.7.7-releaseOz Linden
2014-05-06Let's get started: some code policy cleanup, reference arguments where we ↵Cinder
can, correct spelling
2014-04-18Remove clearHighlights()Cinder
2014-04-18Move some more script editor functions from LLTextEditor to LLScriptEditorCinder
2014-04-18Begin moving script editor portions of LLTextEditor to their own derived class.Cinder
This should fix the run off segment bugs by not overriding LLTextBase::clearSegments() in LLTextEditor TODO: Move the rest of the script stuff out of LLTextEditor for simplicity sake