<feed xmlns='http://www.w3.org/2005/Atom'>
<title>viewer.git/indra/llui/tests/llurlentry_stub.cpp, branch 26.4</title>
<subtitle>Megapahit's fork of the Second Life viewer.
</subtitle>
<id>https://megapahit.org/viewer.git/atom?h=26.4</id>
<link rel='self' href='https://megapahit.org/viewer.git/atom?h=26.4'/>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/'/>
<updated>2026-01-07T19:14:29Z</updated>
<entry>
<title>Corrected file permissions, only permitting execution on .sh scripts and .py scripts with a shebang</title>
<updated>2026-01-07T19:14:29Z</updated>
<author>
<name>Hecklezz</name>
<email>tj8@live.com.au</email>
</author>
<published>2026-01-07T09:59:13Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=b56986e9b40a1a16e3cabb02efdc77a06795b520'/>
<id>urn:sha1:b56986e9b40a1a16e3cabb02efdc77a06795b520</id>
<content type='text'>
Signed-off-by: Hecklezz &lt;tj8@live.com.au&gt;
</content>
</entry>
<entry>
<title>Cleaned up unnecessary fake bool usage where appropriate</title>
<updated>2025-12-15T22:30:30Z</updated>
<author>
<name>Hecklezz</name>
<email>tj8@live.com.au</email>
</author>
<published>2025-12-12T15:16:26Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=59088a4824be5dc131b86ea355300a4c42b1670a'/>
<id>urn:sha1:59088a4824be5dc131b86ea355300a4c42b1670a</id>
<content type='text'>
Signed-off-by: Hecklezz &lt;tj8@live.com.au&gt;
</content>
</entry>
<entry>
<title>#824 Process source files in bulk: replace tabs with spaces, convert CRLF to LF, and trim trailing whitespaces as needed</title>
<updated>2024-04-29T04:56:09Z</updated>
<author>
<name>Andrey Lihatskiy</name>
<email>alihatskiy@productengine.com</email>
</author>
<published>2024-04-29T04:43:28Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=1b68f71348ecf3983b76b40d7940da8377f049b7'/>
<id>urn:sha1:1b68f71348ecf3983b76b40d7940da8377f049b7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Automated merge with ssh://bitbucket.org/lindenlab/viewer-release</title>
<updated>2016-08-30T15:36:06Z</updated>
<author>
<name>Nat Goodspeed</name>
<email>nat@lindenlab.com</email>
</author>
<published>2016-08-30T15:36:06Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=c92eb7e59198d37698c70b5e3be50503f5174cf3'/>
<id>urn:sha1:c92eb7e59198d37698c70b5e3be50503f5174cf3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>merge with 4.0.3-release</title>
<updated>2016-04-04T19:53:09Z</updated>
<author>
<name>Oz Linden</name>
<email>oz@lindenlab.com</email>
</author>
<published>2016-04-04T19:53:09Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=9be58e915a6c69de280ccabd3019e9ac40beed26'/>
<id>urn:sha1:9be58e915a6c69de280ccabd3019e9ac40beed26</id>
<content type='text'>
</content>
</entry>
<entry>
<title>remove execute permission from many files that should not have it</title>
<updated>2015-11-10T14:48:56Z</updated>
<author>
<name>Oz Linden</name>
<email>oz@lindenlab.com</email>
</author>
<published>2015-11-10T14:48:56Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=c8726aba303bcf1207b730a344536e25491420bc'/>
<id>urn:sha1:c8726aba303bcf1207b730a344536e25491420bc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MAINT-5506: Fix ugly timing bug in llurlentry static initialization.</title>
<updated>2015-08-18T21:05:29Z</updated>
<author>
<name>Nat Goodspeed</name>
<email>nat@lindenlab.com</email>
</author>
<published>2015-08-18T21:05:29Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=62527e6f18f0a035a234cf584e31f7eea93fd4a7'/>
<id>urn:sha1:62527e6f18f0a035a234cf584e31f7eea93fd4a7</id>
<content type='text'>
The problem was that class-static LLUrlEntryParcel::sRegionHost was being
initialized by copying class-static LLHost::invalid. Naturally, these two
statics are initialized in different source files. Since C++ makes no promises
about the relative order in which objects in different object files are
initialized, it seems we hit a case in which we were trying to initialize
sRegionHost by copying a completely uninitialized LLHost::invalid.
In general we might attempt to address such cross-translation-unit issues by
introducing an LLSingleton. But in this particular case, the punch line is
that LLHost::invalid is explicitly constructed identically to a
default-constructed LLHost! In other words, LLHost::invalid provides nothing
we couldn't get from LLHost(). All it gives us is an opportunity for glitches
such as the above.
Remove LLHost::invalid and all references, replacing with LLHost().
</content>
</entry>
<entry>
<title>MAINT-5232: Make gMessageSystem an LLPounceable&lt;LLMessageSystem*&gt;.</title>
<updated>2015-05-23T16:41:47Z</updated>
<author>
<name>Nat Goodspeed</name>
<email>nat@lindenlab.com</email>
</author>
<published>2015-05-23T16:41:47Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=430263746424bd0a7c6647d25d9d1db5eca2e8c0'/>
<id>urn:sha1:430263746424bd0a7c6647d25d9d1db5eca2e8c0</id>
<content type='text'>
This will permit other subsystems to use gMessageSystem.callWhenReady() to (e.g.)
register callbacks as soon as gMessageSystem is fully initialized.
</content>
</entry>
<entry>
<title>Update Mac and Windows breakpad builds to latest</title>
<updated>2013-03-29T14:50:08Z</updated>
<author>
<name>Graham Madarasz</name>
<email>graham@lindenlab.com</email>
</author>
<published>2013-03-29T14:50:08Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=bf6182daa8b4d7cea79310547f71d7a3155e17b0'/>
<id>urn:sha1:bf6182daa8b4d7cea79310547f71d7a3155e17b0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>CHUI-580 : Fixed : Clean up the use of display name. Allow the use of the legacy protocol in settings.xml</title>
<updated>2012-12-07T08:10:50Z</updated>
<author>
<name>Merov Linden</name>
<email>merov@lindenlab.com</email>
</author>
<published>2012-12-07T08:10:50Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=bb322a1cccd3fab28951ad4e11b5edcfc4e48140'/>
<id>urn:sha1:bb322a1cccd3fab28951ad4e11b5edcfc4e48140</id>
<content type='text'>
</content>
</entry>
</feed>
