<feed xmlns='http://www.w3.org/2005/Atom'>
<title>viewer.git/indra/llmessage/llregionpresenceverifier.cpp, branch 26.1.1</title>
<subtitle>Megapahit's fork of the Second Life viewer.
</subtitle>
<id>https://megapahit.org/viewer.git/atom?h=26.1.1</id>
<link rel='self' href='https://megapahit.org/viewer.git/atom?h=26.1.1'/>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/'/>
<updated>2013-03-13T06:26:25Z</updated>
<entry>
<title>Large changes to the LLCurl::Responder API, as well as pulling in some changes to common libraries from the server codebase:</title>
<updated>2013-03-13T06:26:25Z</updated>
<author>
<name>Don Kjer</name>
<email>don@lindenlab.com</email>
</author>
<published>2013-03-13T06:26:25Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=f945415210f0e18c2c6d941fda6b7d45cb0f06f1'/>
<id>urn:sha1:f945415210f0e18c2c6d941fda6b7d45cb0f06f1</id>
<content type='text'>
* 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 &lt;&lt; dumpResponse() &lt;&lt; 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.
</content>
</entry>
<entry>
<title>Change license from GPL to LGPL (version 2.1)</title>
<updated>2010-08-13T11:24:57Z</updated>
<author>
<name>Oz Linden</name>
<email>oz@lindenlab.com</email>
</author>
<published>2010-08-13T11:24:57Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=06b0d72efa96b6a0ed665f7cd46f358c48929e7b'/>
<id>urn:sha1:06b0d72efa96b6a0ed665f7cd46f358c48929e7b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merged latest viewer/viewer-20 into login-api.</title>
<updated>2009-09-18T19:22:25Z</updated>
<author>
<name>brad kittenbrink</name>
<email>brad@lindenlab.com</email>
</author>
<published>2009-09-18T19:22:25Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=bb1d4592bdc83f23a60c864ef291c58912d93935'/>
<id>urn:sha1:bb1d4592bdc83f23a60c864ef291c58912d93935</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge from trunk</title>
<updated>2009-09-08T22:35:19Z</updated>
<author>
<name>Bryan O'Sullivan</name>
<email>bos@lindenlab.com</email>
</author>
<published>2009-09-08T22:35:19Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=cab31b572d1a3b717b7f8b9fdf2a49f0b2eb6995'/>
<id>urn:sha1:cab31b572d1a3b717b7f8b9fdf2a49f0b2eb6995</id>
<content type='text'>
</content>
</entry>
<entry>
<title>svn merge -r 129999:132607 svn+ssh://svn/svn/linden/branches/server/server-1.30 into trunk</title>
<updated>2009-09-04T02:27:28Z</updated>
<author>
<name>Don Kjer</name>
<email>don@lindenlab.com</email>
</author>
<published>2009-09-04T02:27:28Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=76d05a7e50bee33584f35f2f00f32ffe953752e6'/>
<id>urn:sha1:76d05a7e50bee33584f35f2f00f32ffe953752e6</id>
<content type='text'>
QAR-1863: Merge 525 changes from 1.27 -&gt; 1.30 -&gt; trunk

1.27 Changes:
* QAR-1721: Vivox Recurring Billing (ViRB)
* QAR-1743: 525 AO Classifieds
* DEV-37701: Fix cleanup_indra nightly script so that it doesn't fail, and so that we know if it does
* DEV-37926 - Fairmarket key roll 8/12/2009
* QAR-1744: 525 Landstore
* QAR-1797: disable web services for find_people
* QAR-1758: OpenID and Backup/recovery.
* QAR-1794: ViRB proc fix - proc/recurring_billing/GetLocaleCountryByPackageId.php
* Changing parameter name so the module signal could be used properly in the function below
* QAR-1808 : Self-Reported First Name and Self-Reported Last Name have duplicate entries in the registration table
* DEV-30204 : Moved the registration table from sequence to indra_aux.
* removed dungeon from banned keyword list
* DEV-30204 : Moved the registration table from sequence to indra_aux.  Reviewed by kelly, cg, jarv
* Merging new streambase dwell nightly to server-1.27
* Add update_parcel_dwell.py to serial_maintenance rule in the nightly.make Makefile, removing the dwell rule, since we don't want it running in parallel with other expensive nightly scripts.

1.30 Changes:
* DEV-27476: version-manager only works in Firefox
* DEV-27472: version-manager appears to load javascript from third party site.
* mulib r92 that supports If-Modified-Since header and prevents arbitrary
  filesystem access through host:12107/manager/mochi/..
* Trivial conductor change that prevents a traceback when no regions are
  available to start.
* Fixing "Out of Connections" error when running tests via SCUT
* DEV-37554 - farm_deploy should get its ssh timeout from farm.ini
* undo two lines of debugging changes that accidentally were checked in to farm
* Adding MochiKit to MANIFEST for version-manager.
* revised files for new parcel dwell process
* Changing vault from an 'http' svn extern to a 'svn+ssh' svn extern.
* DEV-38504 RPS map item queries are too verbose
* added --skip-grid-mode-prompt to main in farm
* DEV-38607: Region Presence Service includes disabled regions in estate responses, resulting in high slave query rate.
* DEV-34781 - enable use_space_server_for_map_items and set map_item_request throttle settings in simulator.xml
* DEV-38351 changes to ip_blacklist.xml file never get automatically picked up by the simulator
* DEV-35443 Region border crossing issues.
* DEV-35443 revert overzealous validity checking on neighbor messages.
* DEV-15998 changing settings to re-enable teleport throttle, following DEV-37200 fix
* QAR-1822 CPU Overrides update to indra.xml
* DEV-15998 changing settings to re-enable teleport throttle, following DEV-37200 fix
* DEV-34026 Update LLAgentInfo::forwardViewerStats() to make all viewer statistics
* DEV-38906 Teleport throttle blocks prematurely when agent teleports back and forth between 2 regions
* DEV-38861 Intra-region TP is blocked by inter-region TP throttl
* DEV-38504 RPS map item queries are too verbose
* initial import of deploy_to_dev_grid.sh
</content>
</entry>
<entry>
<title>Merge with trunk</title>
<updated>2009-08-31T20:47:47Z</updated>
<author>
<name>Bryan O'Sullivan</name>
<email>bos@lindenlab.com</email>
</author>
<published>2009-08-31T20:47:47Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=30ff6cabd61f2f083df5df1e6e70cc94742af477'/>
<id>urn:sha1:30ff6cabd61f2f083df5df1e6e70cc94742af477</id>
<content type='text'>
</content>
</entry>
<entry>
<title>svn merge -r125825:125901 svn+ssh://svn.lindenlab.com/svn/user/cg/qar-1654</title>
<updated>2009-07-01T00:22:05Z</updated>
<author>
<name>Christian Goetze</name>
<email>cg@lindenlab.com</email>
</author>
<published>2009-07-01T00:22:05Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=e588d1f28419745ee1e1ee98dc1852e0364a4088'/>
<id>urn:sha1:e588d1f28419745ee1e1ee98dc1852e0364a4088</id>
<content type='text'>
QAR-1654 merge completed.
</content>
</entry>
<entry>
<title>merge -r 122421-124917 viewer-2.0.0-2 -&gt; viewer-2.0.0-3</title>
<updated>2009-06-21T08:04:56Z</updated>
<author>
<name>Steven Bennetts</name>
<email>steve@lindenlab.com</email>
</author>
<published>2009-06-21T08:04:56Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=9ec432034dc3c45d7ce763eb02dae4cc7f6b8da8'/>
<id>urn:sha1:9ec432034dc3c45d7ce763eb02dae4cc7f6b8da8</id>
<content type='text'>
ignore-dead-branch
</content>
</entry>
<entry>
<title>DEV-27646 dll linkage for login module.</title>
<updated>2009-05-22T23:27:16Z</updated>
<author>
<name>Brad Kittenbrink</name>
<email>brad@lindenlab.com</email>
</author>
<published>2009-05-22T23:27:16Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=01d390825a5d9ba37715b80cd0aa7aede022dcec'/>
<id>urn:sha1:01d390825a5d9ba37715b80cd0aa7aede022dcec</id>
<content type='text'>
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)
</content>
</entry>
<entry>
<title>merge trunk@116587 skinning-7@119389 -&gt; viewer-2.0.0-skinning-7</title>
<updated>2009-05-08T07:43:08Z</updated>
<author>
<name>Steven Bennetts</name>
<email>steve@lindenlab.com</email>
</author>
<published>2009-05-08T07:43:08Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=a4000c3744e42fcbb638e742f3b63fa31a0dee15'/>
<id>urn:sha1:a4000c3744e42fcbb638e742f3b63fa31a0dee15</id>
<content type='text'>
</content>
</entry>
</feed>
