Skip to content
Snippets Groups Projects
  1. Nov 10, 2015
  2. Mar 19, 2014
  3. Aug 09, 2013
  4. Apr 30, 2013
  5. Mar 29, 2013
  6. Mar 13, 2013
    • Don Kjer's avatar
      Large changes to the LLCurl::Responder API, as well as pulling in some changes... · f9454152
      Don Kjer authored
      Large changes to the LLCurl::Responder API, as well as pulling in some changes to common libraries from the server codebase:
      
      * Additional error checking in http handlers.
      * Uniform log spam for http errors.
      * Switch to using constants for http heads and status codes.
      * Fixed bugs in incorrectly checking if parsing LLSD xml resulted in an error.
      * Reduced spam regarding LLSD parsing errors in the default completedRaw http handler.  It should not longer be necessary to short-circuit completedRaw to avoid spam.
      * Ported over a few bug fixes from the server code.
      * Switch mode http status codes to use S32 instead of U32.
      * Ported LLSD::asStringRef from server code; avoids copying strings all over the place.
      * Ported server change to LLSD::asBinary; this always returns a reference now instead of copying the entire binary blob.
      * Ported server pretty notation format (and pretty binary format) to llsd serialization.
      
      * The new LLCurl::Responder API no longer has two error handlers to choose from.  Overriding the following methods have been deprecated:
      ** error - use httpFailure
      ** errorWithContent - use httpFailure
      ** result - use httpSuccess
      ** completed - use httpCompleted
      ** completedHeader - no longer necessary; call getResponseHeaders() from a completion method to obtain these headers.
      
      * In order to 'catch' a completed http request, override one of these methods:
      ** httpSuccess - Called for any 2xx status code.
      ** httpFailure - Called for any non-2xx status code.
      ** httpComplete - Called for all status codes.  Default implementation is to call either httpSuccess or httpFailure.
      * It is recommended to keep these methods protected/private in order to avoid triggering of these methods without using a 'push' method (see below).
      
      * Uniform error handling should followed whenever possible by calling a variant of this during httpFailure:
      ** llwarns << dumpResponse() << llendl;
      * Be sure to include LOG_CLASS(your_class_name) in your class in order for the log entry to give more context.
      
      * In order to 'push' a result into the responder, you should no longer call error, errorWithContent, result, or completed.
      * Nor should you directly call httpSuccess/Failure/Completed (unless passing a message up to a parent class).
      * Instead, you can set the internal content of a responder and trigger a corresponding method using the following methods:
      ** successResult - Sets results and calls httpSuccess
      ** failureResult - Sets results and calls httpFailure
      ** completedResult - Sets results and calls httpCompleted
      
      * To obtain information about a the response from a reponder method, use the following getters:
      ** getStatus - HTTP status code
      ** getReason - Reason string
      ** getContent - Content (Parsed body LLSD)
      ** getResponseHeaders - Response Headers (LLSD map)
      ** getHTTPMethod - HTTP method of the request
      ** getURL - URL of the request
      
      * It is still possible to override completeRaw if you want to manipulate data directly out of LLPumpIO.
      
      * See indra/llmessage/llcurl.h for more information.
      f9454152
  7. Mar 06, 2013
  8. Feb 01, 2012
  9. Oct 13, 2011
  10. Aug 17, 2011
  11. Aug 10, 2011
  12. Oct 13, 2010
  13. Sep 21, 2010
  14. Aug 13, 2010
  15. Feb 13, 2010
    • Tofu Linden's avatar
      CID-3 · 9fee359d
      Tofu Linden authored
      Checker: CHECKED_RETURN
      Function: LLImageDecodeThread::update(unsigned int)
      File: /indra/llimage/llimageworker.cpp
      9fee359d
  16. Sep 09, 2009
  17. Jan 07, 2009
  18. Dec 01, 2008
    • Andrew Meadows's avatar
      svn merge -r103586:104391... · de7d6cf4
      Andrew Meadows authored
      svn merge -r103586:104391 svn+ssh://svn.lindenlab.com/svn/linden/qa/maint-server/maint-server-4-sandbox-r103546
      
      Picking up the following bug fixes:
      DEV-19747 Flooding sim with bogus animation packets crashes sim
      DEV-20978 Investigate baked avatar texture caching in simulator - ids not properly stored
      DEV-5316 llsd-get .../runtime/top and "World:Region/Estate:Debug:Get Top Scripts" broken
      DEV-18807 SVC-2596: Script dataserver events become permanently blocked until sim restart
      DEV-19108 SVC-2616: Torus refuses to accept 180 degree texture rotation
      DEV-9944 Simulator crash failing to write simstate to file .tmp.tmp
      DEV-21439 Configure VFS file size via simulator.xml
      de7d6cf4
  19. Sep 05, 2008
  20. Jul 17, 2008
    • Josh Bell's avatar
      svn merge -r 91176:92383 svn+ssh://svn.lindenlab.com/svn/linden/branches/Branch_1-23-Server · 292627c0
      Josh Bell authored
      Backport fixes from the 1.23 Server branch
      
      * DEV-17223 remove the words slot and bets from dataserver.xml
      * DEV-17351 Unable to set estate manager
      * DEV-17138 users with god mode capabilities not able to join groups
      * DEV-17785 SVC-2633: Floating Text which was set before Server Update 1.23 does not do linebreaks anymore but one line instead
      * DEV-17863 Memory Leak in 1.23 (related to returning objects?)
      * DEV-17804 CSR tool showing old data on Summary page
      * DEV-17811 Ban list showing (???) (???) for names
      
      dataserver-is-deprecated
      292627c0
  21. Jun 25, 2008
  22. Jun 02, 2008
  23. Feb 07, 2008
    • Josh Bell's avatar
      svn merge -r 79445:79449 svn+ssh://svn.lindenlab.com/svn/linden/qa/maintenance-5-merge-79386 · 8bd6a0b3
      Josh Bell authored
      QAR-242 merge of maintenance-5 (QAR-203)
      * DEV-6548 Copy To Inventory fail to execute without any output feedback when Notecard has changes but not saved
      * DEV-7600 Deleting someone else's object in god mode crashes sim
      * DEV-5329 LLSD parsers should determine and set maximum parse sizes
      * DEV-7473 Resolve instant message crash report
      * DEV-2904 Presence Issues not (apparently) caused by scripted attachments
      * DEV-7083 Investigate Null Folder IDs Bug that caused 470K inventory items with Null Folder IDS on the Grid
      * DEV-2865 Textures/Snapshots in a notecard are opened again when you click copy to inventory.
      * DEV-6612 VWR-3290: Linux scons build script doesn't work with distcc
      * DEV-8002 c++ llsd notation parser accepts malformed data
      * DEV-8001 c++ xml parse returns wrong number of elements parsed
      * DEV-8089 Double delete in statc structured data parse functions
      * DEV-5326 Any viewer can request presence information for any agent
      * DEV-2378 python service builder does not sort query string
      * DEV-7872 Block teleport off teen grid sub-estates like Schome Park / Open University
      * DEV-4465 Add a "logfile" command line option to the sim to create log files
      8bd6a0b3
  24. Oct 04, 2007
  25. Jul 18, 2007
  26. Jun 21, 2007
  27. May 01, 2007
  28. Feb 15, 2007
  29. Jan 03, 2007
  30. Jan 02, 2007
Loading