Skip to content
Snippets Groups Projects
  1. May 30, 2017
  2. Mar 29, 2013
  3. Jun 14, 2012
  4. Jun 11, 2012
  5. Mar 13, 2012
  6. Mar 08, 2012
  7. Jan 07, 2011
  8. Oct 23, 2010
    • Kyle Ambroff's avatar
      ER-219: Add an asynchronous api for the region debug console · 9b97fc3f
      Kyle Ambroff authored
      Add support for a new capability, SimConsoleAsync. This is a replacement for
      the deprecated SimConsole capability that provides an asynchronous API. The old
      API is still supported, but the simulator will never support both.
      
      For the new API, commands will be sent via HTTP POST to the SimConsoleAsync
      capability, same as before. But the resulting output will be pushed to the
      viewer view the event-poll, using the newly added SimConsoleResponse LLSD
      message.
      
      Will review with Simon or Falcon.
      9b97fc3f
  9. Sep 21, 2010
  10. Sep 07, 2010
  11. Apr 22, 2010
  12. Mar 26, 2010
  13. Mar 23, 2010
  14. Feb 02, 2010
  15. Jan 19, 2010
  16. Sep 30, 2009
  17. Aug 27, 2009
  18. Aug 09, 2009
    • Kyle Ambroff's avatar
      svn merge -r128876:129999... · 27e3db24
      Kyle Ambroff authored
      svn merge -r128876:129999 svn+ssh://svn.lindenlab.com/svn/linden/branches/server/server-1.30 --> trunk
      
      QAR-1775: Merging changes 1.27.2 and 1.30 fixes from server-1.30.
      
      Conflicts (trivial, kept trunk for both):
      C    indra/llcommon/llversionserver.h
      C    scripts/automated_build_scripts/opensource.sh
      
      1.27.2 Changes:
      * DEV-37308: First agent-to-agent L$ transaction following dataserver restart
        fails with LindenDollar_BadClockSkew.
      * DEV-36758 (SVC-4644): login.cgi script calculates AO support based on viewer
        version, and gets it wrong.
      * DEV-20331 (VWR-7062): Script runtime errors aren't using DEBUG_CHANNEL any
        more
      * DEV-25483 (SVC-4457): Blacklisting flakey UploadBakedTexture capabability.
      * DEV-33171: Preventing apache from loading extraneous modules
      * DEV-37200: changed teleport_throttle_interval to -1 to disable TP throttle
      * DEV-30064 (SVC-4060): Two transaction notifications on upload
      * DEV-32766: fix --all-centrals option for make_deploy_group.py
      * DEV-35714: If a region has no agents, don't bother giving a 5 minute warning.
      * Fix inaccurate multiagent-chat metrics.
      * Automated build system fixes.
      
      1.30 Changes:
      * DEV-35714: If a region has no agents, don't bother giving a 5 minute warning.
      * DEV-37435: farm_distribute should remove hosts that report ssh problems from
        the group_maps.
      * DEV-8159: farm_deploy now skips hosts it can't ssh to, saving about 34 seconds
        per down host.
      * DEV-35967: farm will validate that a given deploy group is valid XML and do a
        little more input validation.
      * DEV-37426: farm now supports --deploy-to-host and won't accept some
        conflicting options.
      * DEV-32772: farm now logs all output to a script file by default
      * DEV-32852: farm_upgrade_schema should have a manual way to mark a schema
        change as applied.
      * Various deploy tool fixes.
      27e3db24
  19. May 04, 2009
  20. Mar 24, 2009
  21. Mar 20, 2009
  22. Feb 25, 2009
    • Robert Knop's avatar
      svn merge -r108815:112761 svn+ssh://svn.lindenlab.com/svn/linden/branches/server/server-1.26 · c88b470a
      Robert 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) { }
      c88b470a
  23. Sep 30, 2008
  24. Sep 16, 2008
  25. Jul 31, 2008
  26. Jul 18, 2008
  27. Apr 28, 2008
    • Josh Bell's avatar
      svn merge -r 84911:86069... · a089a401
      Josh Bell authored
      svn merge -r 84911:86069 svn+ssh://svn.lindenlab.com/svn/linden/branches/Branch_1-21-Server --> release
      
      Backport fixes made in the production branch to the trunk now that it is live on the grid:
      * DEV-14443 Launcher not producing colo prefix when looking up sim class
      * DEV-10840 "/etc/init.d/backbone stop" returns before all child backbones exited; "backbone restart" results in defunct children
      * DEV-12558: Able to make anyone's object shout error messages
      * QAR-483 user start location migration prelude
      * QAR-490 havok4-6
      * Revert havok4-5/4-6 code changes causing parcel access check issues
      * Revert QAR-277 sqlite-backbone
      * DEV-12357 SEC-53: Script that crashes regions
      * QAR-486 New proc and query for Web Classifieds Fix
      a089a401
  28. Apr 10, 2008
  29. Apr 08, 2008
  30. Mar 25, 2008
    • Josh Bell's avatar
      svn merge -r 82869:83166... · 11a35896
      Josh Bell authored
      svn merge -r 82869:83166 svn+ssh://svn.lindenlab.com/svn/linden/branches/Branch_1-19-2-Server --> release
      
      Includes:
      DEV-12492 "new" regAPI fails on php-framework-2
      DEV-11540 Show browser HUD for A/B test users coming from SL.com.
      DEV-11730 LLSD parser changes
      PHP logs to syslog
      DEV-12146 php llsd_UUID does not pass the IsUUID() validation function
      DEV-12356 oldstyle FetchInventoryDescendents should be TEMPLATE not LLSD
      steve's fix to setting the proxy option in curl
      11a35896
  31. Mar 20, 2008
    • Josh Bell's avatar
      svn merge -r 82563:82869... · 9fd4dfa5
      Josh Bell authored
      svn merge -r 82563:82869 svn+ssh://svn.lindenlab.com/svn/linden/branches/Branch_1-19-2-Server --> release
      
      DEV-12326 DEV-12232 fix for strange string crashes.
      web dataservices: fixed issue with non-selects not returning affected rows, also cleaned up log messages and unit tests
      DEV-12232 fix for crash bug.
      DEV-12105 Setting a music URL which is too long creates many problems
      Adding streambase log message for login failures.
      Changed URL for FetchInventoryDescendents to use new webservice when we're ready.
      DEV-12140 - Mapserver crashes in 1.19.2 Server
      QAR-390 - Add log_viewer_stats syslog writes
      need to deploy vault_control.pl central services, for reg
      DEV-11104 - Don't chew up memory profiling everything in pay-stipends.pl
      web dataservices: minor changes: logging added, mailer host changed to localhost per Ops
      9fd4dfa5
  32. Mar 18, 2008
    • Josh Bell's avatar
      svn merge -r 82263:82563... · 2d9afdaa
      Josh Bell authored
      svn merge -r 82263:82563 svn+ssh://svn.lindenlab.com/svn/linden/branches/Branch_1-19-2-Server --> release
      
      Sprinkle "--location" pixie dust into farm curl calls
      QAR-387 - pull in fix for missing abuse report snapshots (asset-id --> asset_id) / DEV-11758
      comment --> template comment tweak by yoz for postcards
      QAR-351 - Event queuing modifications
      DEV-11639 - fix for llsdhttp.py to work with newer eventlet API
      Rotating log_text_message is now part of the cron jobs
      2d9afdaa
  33. Mar 13, 2008
  34. Feb 28, 2008
    • Josh Bell's avatar
      svn merge -r 80357:80990... · 2fdd7c35
      Josh Bell authored
      svn merge -r 80357:80990 svn+ssh://svn.lindenlab.com/svn/linden/branches/Branch_1-19-1-Server --> release
      
      Merge patches from 1.19.1 Server branch:
      
      * QAR-293 Fix for hardcoded TTLs in web dataservices
      * DEV-10826 fix for busted binary and notation parse if handed an unlimited parse size
      * Bounce apache2 processes before starting backbone/dataserver/simulator
      * Changing web-ds TTL in a way that any query that has 0 < ttl <=60 will have ttl = 61.
      * Partial reversion of multiagent-chat to 1.19.0 to address fast memory leak
      * Fixed minor, non user facing bug in multiagentchat
      * set-classified-stats: Rewrote to use new MDB2 query reformatting syntax
      * Fixed possible bad conversion of vivox data
      * DEV-550, caching changes to DirClassifieds Query
      * QAR-240 (DEV-8488) Prevent residents from purging stuff that isn't trash on the backend
      * More mem leak fixes for multiagent-chat
      * QAR-274 Fetch inventory descendents over TCP (via HTTP cap) instead of UDP
      * DEV-10151: Sometimes group IMs appear to be person to person IMs
      * QAR-321 Changes to crash_reporter
      * DEV-11004 Speed up people search query using FORCE INDEX (PRIMARY) on the username table if the first-name query fragment is >= 3 chars
      * DEV-11004 Speed up people search query using FORCE INDEX (PRIMARY).  Web service version of this, must use two named queries because we need to change the query based on input string length.
      2fdd7c35
  35. Feb 13, 2008
Loading