Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-23 | Incomplete attempt to clean up Mercurial branch build | Nat Goodspeed | |
2009-06-22 | Switch to new unit test infrastructure | Bryan O'Sullivan | |
2009-06-22 | Merge with trunk | Bryan O'Sullivan | |
2009-06-22 | Merge with SVN trunk | Bryan O'Sullivan | |
2009-06-22 | Python 2.4 and 2.6 improvements | Bryan O'Sullivan | |
The sets module is no longer needed with Python 2.4, and causes a DeprecationWarning with 2.6, so drop it The md5 module causes a DeprecationWarning with 2.6, so try to import hashlib (its replacement) instead, else fall back Reviewed by Poppy. | |||
2009-06-22 | Merge with trunk | Bryan O'Sullivan | |
2009-06-22 | Merge with viewer-2.0.0-3 branch | Bryan O'Sullivan | |
2009-06-22 | Merge with SVN trunk | Bryan O'Sullivan | |
2009-06-22 | QAR-1383: convert new uses of Boost.Signals (arriving from other branches) to | Nat Goodspeed | |
Boost.Signals2 like the rest of the event-system-n code. | |||
2009-06-22 | trivial comment fixes for typos that were bugging me... | Adam Moss | |
2009-06-21 | Modified RecordToChatConsole to not construct LLFloaterChat if it doesn't ↵ | Steven Bennetts | |
already exist to avoid recursive floater construction. | |||
2009-06-21 | Fixed a shutdown crash. | Steven Bennetts | |
2009-06-21 | merge -r 124105-124625 skinning-13 -> viewer-2.0.0-3 | Steven Bennetts | |
2009-06-21 | merge -r 122421-124917 viewer-2.0.0-2 -> viewer-2.0.0-3 | Steven Bennetts | |
ignore-dead-branch | |||
2009-06-20 | svn merge -r124872:124873 | Adam Moss | |
svn+ssh://svn.lindenlab.com/svn/linden/branches/viewer/viewer-1.23.threefour-merge-1a QAR-1592 Merge of changes between 1.23 RC2 and 1.23 Final to trunk | |||
2009-06-19 | result of "svn merge -r123757:124890 ↵ | Paul Oppenheim | |
svn+ssh://svn.lindenlab.com/svn/linden/branches/improve-unit-testing/iface-04" for QAR-1496 | |||
2009-06-19 | DEV-31980: extract dispatch-by-string-name logic from LLAresListener to new | Nat Goodspeed | |
LLEventDispatcher and LLDispatchListener classes. See LLAresListener for example usage. | |||
2009-06-18 | First pieces of event host module (DEV-31978). | Brad Kittenbrink | |
Basically implements the spec nat decribed in the jira. Test coverage isn't yet complete though. mostly paired with nat. | |||
2009-06-17 | DEV-32777: tip won't even build on Windows without pacifying MSVC warning | Nat Goodspeed | |
2009-06-11 | Merge with SVN trunk | Bryan O'Sullivan | |
2009-06-10 | Added LLAPRSockStream class and associated LLAPRSockStreambuf class for | Brad Kittenbrink | |
DEV-31978 viewer event host socket module. reviewed by palmer+nat+mani. | |||
2009-06-04 | Fix one more license, add indra/newview/tests to exported tree | Christian Goetze | |
2009-06-04 | Fix licensing, also make the unzipping quieter, so that license error ↵ | Christian Goetze | |
messages are easier to see in the log. | |||
2009-06-04 | Merge of QAR-1383 event-system-7 into trunk. | Brad Kittenbrink | |
svn merge -r 121797:121853 svn+ssh://svn.lindenlab.com/svn/linden/branches/merge-event-system-7 | |||
2009-06-04 | DEV-32777: Use a canonical boost::coroutines::coroutine signature, relying on | Nat Goodspeed | |
boost::bind() to pass any other coroutine arguments. This allows us to remove the LLCoroBase and LLCoro constructs, directly storing a coroutine object in our ptr_map. It also allows us to remove the multiple launch() overloads for multiple arguments. Finally, it lets us move most launch() functionality into a non-template method. | |||
2009-06-04 | DEV-32777: When launching login coroutine, instead of binding _2, _3 | Nat Goodspeed | |
placeholders and then asking Boost.Coroutine to pass parameters to them, simply bind the desired values. | |||
2009-06-04 | DEV-32777: Make coroutine's top-level function accept value params, not | Nat Goodspeed | |
reference params. | |||
2009-06-03 | Remove -parallelizeTargets from xcodebuild invocation, it seems to not work ↵ | Christian Goetze | |
well enough | |||
2009-06-03 | DEV-32777: Introduce LLCoros, an LLSingleton registry of named coroutine | Nat Goodspeed | |
instances. LLCoros::launch() intends to address three issues: - ownership of coroutine instance - cleanup of coroutine instance when it terminates - central place to twiddle MSVC optimizations to bypass DEV-32777 crash. Initially coded on Mac; will address the third bullet on Windows. Adapt listenerNameForCoro() to consult LLCoros::getName() if applicable. Change LLLogin::Impl::connect() to use LLCoros::launch(). LLCoros::getName() relies on patch to boost::coroutines::coroutine::self to introduce get_id(). | |||
2009-06-02 | Merge with SVN trunk | Bryan O'Sullivan | |
2009-06-02 | Small braino | Bryan O'Sullivan | |
2009-05-29 | Merge with SVN trunk | Bryan O'Sullivan | |
2009-05-29 | Added new LL_COMMON_API dll export declaration for new llsd_equals function. | Brad Kittenbrink | |
2009-05-28 | DEV-31892: rev 119315 got lost somewhere along the way?! Reapplying. | Nat Goodspeed | |
2009-05-28 | DEV-32777: ensure that stack objects listening on persistent LLEventPumps get | Nat Goodspeed | |
properly disconnected when destroyed. Break out Debug class and associated macros from lleventcoro_test.cpp into test/debug.h. Add Debug output to lllogin_test. | |||
2009-05-27 | DEV-31979: Introduce LLReqID, a class to help individual event API listeners | Nat Goodspeed | |
implement the ["reqid"] convention. This convention dictates that a response LLSD from each such API should contain a ["reqid"] key whose value echoes the ["reqid"] value, if any, in the request LLSD. Add LLReqID support to LLAresListener's "rewriteURI" service, LLSDMessage, LLCapabilityListener and LLXMLRPCListener. | |||
2009-05-27 | Fix minor Mac build breakage (missing #include) | Nat Goodspeed | |
2009-05-27 | Fix for mac build errors following r121524 commit for DEV-27646. | Brad Kittenbrink | |
2009-05-26 | Add llsd_equals(), a function whose absence sorely puzzles me | Nat Goodspeed | |
2009-05-22 | DEV-27646 dll linkage for login module. | Brad Kittenbrink | |
Ok, finally got this to a point where it doesn't break the build and I can check in. llcommon can be built as a shared library (disabled but can be enabled with cmake cache var LLCOMMON_LINK_SHARED. reviewed by Mani on tuesday (I still need to get his suggested changes re-reviewed) | |||
2009-05-22 | svn merge -r121194:121210 | Adam Moss | |
svn+ssh://svn.lindenlab.com/svn/linden/branches/viewer/viewer-1.23.onetwo-merge-1 QAR-1531 viewer 1.23rc1+1.23rc2 merge to trunk | |||
2009-05-21 | Merge with SVN trunk | Bryan O'Sullivan | |
2009-05-21 | Put the os.environ["DISTCC"] = ... call into main() | Christian Goetze | |
2009-05-21 | Fix develop.py putenv bug, use new etch build-linux hosts for parabuild. | Christian Goetze | |
2009-05-20 | Merge with SVN trunk | Bryan O'Sullivan | |
2009-05-20 | Windows: make dbghelp.dll an installable package | Bryan O'Sullivan | |
Reviewed by Mani. | |||
2009-05-19 | Fix to develop.py to build on 64 bit windows. | Mark Palange | |
Added March 2009 DirectX SDK to cmake config. Reviewed by brad | |||
2009-05-19 | Merge with SVN trunk | Bryan O'Sullivan | |
2009-05-19 | Now that 1.27 has branched away, bumping the version number to 1.29 to | Robert Knop | |
mean "the development version between release versions 1.27 and 1.30". | |||
2009-05-19 | svn merge -r118673:120720 ↵ | Robert Knop | |
svn+ssh://svn.lindenlab.com/svn/linden/branches/server/server-1.26 Merging server-1.26 back to trunk. Two conflicts -- llversionserver.hh (kept the trunk version) and in llsimparcelmgr.cpp -- also kept the trunk version. There was some code in 1.26 that included error printing from RDW that says "we should really not be hitting this code", and that code was gone in trunk... so, went ahead and kept the trunk part of that one conflict in that file. |