- Apr 07, 2009
-
-
Bryan O'Sullivan authored
-
Bryan O'Sullivan authored
-
- Apr 01, 2009
-
-
Andrew Meadows authored
svn merge -r115879:116020 svn+ssh://svn.lindenlab.com/svn/linden/branches/dmcat/dmcat-5 no conflicts
-
- Mar 31, 2009
-
-
Bryan O'Sullivan authored
These files haven't been touched in years. Reviewed by Richard.
-
- Mar 27, 2009
-
-
Christian Goetze authored
-
Aaron Brashears authored
Result of svn merge -r115238:115240 svn+ssh://svn/svn/linden/branches/trivial-changes/trivial_slave_merge into trunk. In turn a result of svn merge -r113279:113280 svn+ssh://svn/svn/linden/branches/trivial-changes/trivial-changes-1 into trivial_slave_merge and svn merge -r107805:110030 svn+ssh://svn/svn/user/phoenix/slave-ds into trivial_slave_merge. QAR-1329
-
Bryan O'Sullivan authored
-
- Mar 26, 2009
-
-
Bryan O'Sullivan authored
This is much less painful than maintaining that list by hand, since we don't use those files for actual builds.
-
- Mar 24, 2009
-
-
Debi King authored
-
Aaron Brashears authored
Result of svn merge -r115023:115025 svn+ssh://svn/svn/linden/branches/no_free_uploads/merge_qa_2 into svn+ssh://svn/svn/linden/trunk for QAR-1220
-
- Mar 20, 2009
-
-
svn+ssh://svn.lindenlab.com/svn/linden/branches/server/server-1.26Dave Simmons authored
Merge latest 1.26 into trunk
-
- Mar 19, 2009
-
-
svn+ssh://svn.lindenlab.com/svn/linden/branches/qar-1361Monroe Williams authored
Merging in QAR-1361.
-
- Mar 13, 2009
-
-
Christian Goetze authored
-
Christian Goetze authored
svn merge -r114093:114412 svn+ssh://svn.lindenlab.com/svn/linden/branches/featurettes/featurettes-batch5-merge Melinda (coco): 5th and final batch of featurettes. My work here is done.
-
- Mar 09, 2009
-
-
Adam Moss authored
svn+ssh://svn.lindenlab.com/svn/linden/branches/moss/gst3-t113732 QAR-1333 linux gstreamer compatibility improvements and ADD_BUILD_TEST improvements - combo merge
-
- Mar 06, 2009
-
-
James Cook authored
Trivial stub installer cleanup - resized the dialog, pointed at final URL for slideshow, added final art, fixed UserAgent. Added 1-line comment to llstartup.cpp about updater URL. Going into trunk because it's not tied to a viewer release and the functional code has been through QA elsewhere. OK by Steve/Q. Reviewed with Kelly. svn merge -r113629:113831 svn+ssh://svn.lindenlab.com/svn/linden/branches/windows-setup/windows-setup-4
-
- Mar 05, 2009
-
-
Aaron Brashears authored
-
Aaron Brashears authored
bail if data_size is zero. crashes windows application since it throws an exception. undefined behavior is undefined. DEV-28045
-
- Mar 04, 2009
-
-
Mark Palange authored
svn merge -r112338-112378 svn+ssh://svn/lindenlab.com/svn/linden/branches/viewer/viewer_1-22 to trunk
-
Eric Tulla authored
No conflicts in the merge. Result of: svn merge -r113372:113479 $branches/avatar-pipeline/avatar-pipeline-merge-r113370 .
-
James Cook authored
Merging revisions 113619-113618 of svn+ssh://svn.lindenlab.com/svn/linden/trunk into E:\trunk, respecting ancestry
-
James Cook authored
Fix problem with code signing script (sign.py) not being invoked properly on some systems. Changed "sign.py filename" to "python sign.py filename". Reviewed with bos and kelly.
-
- Mar 02, 2009
-
-
Bryan O'Sullivan authored
-
Christian Goetze authored
-
- Feb 27, 2009
-
-
svn+ssh://svn.lindenlab.com/svn/linden/branches/merge-QAR-1323Monroe Williams authored
Merging in QAR-1323.
-
- Feb 26, 2009
-
-
Jim Purbrick authored
Actually coded by DaveH, reviewed by CG
-
Christian Goetze authored
Go a different route - do not include tut tests in open source builds and conditionally exclude the cmake macro upon availability of the source files. Reviewed by Scouse
-
- Feb 25, 2009
-
-
svn+ssh://svn.lindenlab.com/svn/linden/branches/server/server-1.26Robert Knop authored
The biggest things in this are Scalable Space Servers and Maint-Server-6 QAR-1209 : SSS QAR-1295 : maint-server-6 Conflicts resolved by prospero: C scripts/farm_distribute C scripts/automated_build_scripts/build-linux.sh : resolved by prospero, mostly kept the merge-right version in the conflict, but there was one block of repeated code from earlier that I removed. C scripts/automated_build_scripts/build-mac.sh : kept merge-right C indra/llcommon/llversionserver.h : svn revert C indra/newsim/llsimparcel.h : kept *both*... working had "setArea", merge-right had exportStream and importStream C indra/newsim/llsimparcel.cpp : see llsimparcel.h C indra/newsim/lltask.h : working had LLTask derived also from LLScriptResourceConsumer, merge-right had LLTask dervied also from LLAgentPosition. To resolve conflict, derive from both. C indra/newsim/lllslmanager.h : kept merge-right (had an added comment) C indra/llmessage/llhttpnode.h : kept working (added the definition of method LLHTTPNode::extendedResult) C indra/lscript/lscript_execute_mono/llscriptexecutemono.cpp C indra/lscript/lscript_execute_mono/llscriptexecutemono.h : These two were resolved by si, in consultation with daveh I also had to add the following stubs to indra/newsim/tests/llgodkickutils_test.cpp in order to get it to compile: // LLScriptResourceConsumer interface methods in LLTask LLScriptResource::LLScriptResource() { } LLScriptResourcePool::LLScriptResourcePool() { } LLScriptResourcePool LLScriptResourcePool::null; LLScriptResourceConsumer::LLScriptResourceConsumer() { } LLScriptResourcePool& LLScriptResourceConsumer::getScriptResourcePool() { return LLScriptResourcePool::null; } const LLScriptResourcePool& LLScriptResourceConsumer::getScriptResourcePool() const { return LLScriptResourcePool::null; } bool LLScriptResourceConsumer::switchScriptResourcePools(LLScriptResourcePool& new_pool) { return false; } bool LLScriptResourceConsumer::canUseScriptResourcePool(const LLScriptResourcePool& resource_pool) { return false; } bool LLScriptResourceConsumer::isInPool(const LLScriptResourcePool& resource_pool) { return false; } void LLScriptResourceConsumer::setScriptResourcePool(LLScriptResourcePool& pool) { } S32 LLTask::getUsedPublicURLs() const { return 0; } void LLTask::setScriptResourcePool(LLScriptResourcePool& pool) { }
-
- Feb 24, 2009
-
-
Bryan O'Sullivan authored
-
Bryan O'Sullivan authored
-
Paul Oppenheim authored
-
Bryan O'Sullivan authored
-
Bryan O'Sullivan authored
-
Kelly Washington authored
-
Bryan O'Sullivan authored
-
Bryan O'Sullivan authored
-
Mark Palange authored
svn merge -r109446-109676 -r109832-109921 -r109956 svn+ssh://svn.lindenlab.com/svn/linden/branches/viewer/viewer-1.22
-
Kelly Washington authored
-
- Feb 23, 2009
-
-
Mark Palange authored
svn merge -r112608 svn+ssh://svn.lindenlab.com/svn/linden/qa/qar-1274 to trunk.
-
- Feb 18, 2009
-
-
Brad Kittenbrink authored
Merge of QAR-1267 to trunk. This was a combo merge of QAR-1175 (maint-render-9) and QAR-1236 (dll-msvcrt-2) svn merge -r 109838:112264 svn+ssh://svn.lindenlab.com/svn/linden/branches/maint-render/maint-render-9-merge-r109833
-