<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gellan+Glenelg</id>
	<title>Second Life Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gellan+Glenelg"/>
	<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/wiki/Special:Contributions/Gellan_Glenelg"/>
	<updated>2026-05-30T09:45:13Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlEmail&amp;diff=86879</id>
		<title>LlEmail</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlEmail&amp;diff=86879"/>
		<updated>2008-08-19T04:47:49Z</updated>

		<summary type="html">&lt;p&gt;Gellan Glenelg: Undo revision 86877 - not sure it works!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func_id=119|func_sleep=20.0|func_energy=10.0&lt;br /&gt;
|sort=Email|func=llEmail&lt;br /&gt;
|p1_type=string|p1_name=address&lt;br /&gt;
|p2_type=string|p2_name=subject&lt;br /&gt;
|p3_type=string|p3_name=message&lt;br /&gt;
|func_footnote=The entire message (including the address, subject and other miscellaneous fields) can&#039;t be longer than 4096 bytes combined.&lt;br /&gt;
|func_desc=Sends an email to &#039;&#039;&#039;address&#039;&#039;&#039; with &#039;&#039;&#039;subject&#039;&#039;&#039; and &#039;&#039;&#039;message&#039;&#039;&#039;.&lt;br /&gt;
|return_text&lt;br /&gt;
|spec=The &#039;&#039;&#039;message&#039;&#039;&#039; is prefixed with information about the prim sending the email.&lt;br /&gt;
{{{!}}{{Prettytable}}&lt;br /&gt;
{{!}}-{{Hl2}}&lt;br /&gt;
!Template&lt;br /&gt;
!Example&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}}&amp;lt;pre&amp;gt;&lt;br /&gt;
Object-Name: *prim*&lt;br /&gt;
Region: *simname* (*simpos.x*, *simpos.y*)&lt;br /&gt;
Local-Position: (*primpos.x*, *primpos.y*, *primpos.z*)&lt;br /&gt;
&lt;br /&gt;
*message*&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{!}}&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Object-Name: Object&lt;br /&gt;
Region: Gibson (254976, 256000)&lt;br /&gt;
Local-Position: (117, 129, 50)&lt;br /&gt;
&lt;br /&gt;
The real message starts here.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{!}}}&lt;br /&gt;
|caveats=* There is a limit to the number of email messages an object can send in a given amount of time. &lt;br /&gt;
* Due to the bug {{Jira|SVC-23}} (present since 2005), objects may stop receiving emails completely until either the region is restarted or the object crosses a region boundary (resetting the script doesn&#039;t help).  Emails sent may eventually be received after a restart/region-cross.  Hence, don&#039;t rely on this function for reliable inter-region messaging. &lt;br /&gt;
|constants&lt;br /&gt;
|examples=&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
string email_address = &amp;quot;somebody@example.com&amp;quot;; // who will receive the messages&lt;br /&gt;
 &lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry() {&lt;br /&gt;
 &lt;br /&gt;
        //Send an email to a normal email account&lt;br /&gt;
        llEmail( email_address, &amp;quot;Look it&#039;s an email subject line!&amp;quot;, &amp;quot;Testing 1 2 3&amp;quot; );&lt;br /&gt;
    }&lt;br /&gt;
 &lt;br /&gt;
    touch_start( integer num_detected ) {&lt;br /&gt;
        integer i = 0;&lt;br /&gt;
 &lt;br /&gt;
        // Send another email, telling who touched the prim.&lt;br /&gt;
        do&lt;br /&gt;
            llEmail( email_address, &amp;quot;No touching!&amp;quot;, &amp;quot;I was defiled by: &amp;quot; + llDetectedName(i) + &amp;quot;\nKey: &amp;quot; + (string) llDetectedKey(i) );&lt;br /&gt;
        while(++i &amp;lt; num_detected);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|helpers=&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
email( string time, string address, string subj, string message, integer num_left )&lt;br /&gt;
{&lt;br /&gt;
    if(llGetSubString(address, -19, -1) == &amp;quot;@lsl.secondlife.com&amp;quot;)//trim the header&lt;br /&gt;
        message = llDeleteSubString(message, 0, llSubStringIndex(message, &amp;quot;\n\n&amp;quot;) + 1);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|also_functions=*{{LSLG|llGetNextEmail}}&lt;br /&gt;
*{{LSLG|llMessageLinked}}&lt;br /&gt;
|also_events=*{{LSLG|email}}&lt;br /&gt;
*{{LSLG|link message}}&lt;br /&gt;
|also_tests=*[[llEmail]]&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes=* Because of the long delay on this function, it is often called from a second script triggered by {{LSLG|link message}}.&lt;br /&gt;
* If you are sending email to a prim within Second Life, its address is &#039;&#039;[key]&#039;&#039;@lsl.secondlife.com&lt;br /&gt;
** Which means if the key returned by [[llGetKey]] is &amp;quot;a2e76fcd-9360-4f6d-a924-000000000003&amp;quot;, then its email address is &amp;quot;a2e76fcd-9360-4f6d-a924-000000000003@lsl.secondlife.com&amp;quot;.&lt;br /&gt;
** Agents do not have fixed email addresses, use [[llInstantMessage]] or [[llOwnerSay]].&lt;br /&gt;
|permission&lt;br /&gt;
|negative_index&lt;br /&gt;
|cat1=Communications&lt;br /&gt;
|cat2=Email&lt;br /&gt;
|cat3&lt;br /&gt;
|cat4&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;div id=&amp;quot;box&amp;quot;&amp;gt;&lt;br /&gt;
== Open Source Portal ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;padding: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
{{OSWikiFeatureNav}}&lt;br /&gt;
=== Feature Design Document ===&lt;br /&gt;
(none)&lt;br /&gt;
&lt;br /&gt;
=== Functional Spec ===&lt;br /&gt;
(none)&lt;br /&gt;
&lt;br /&gt;
=== Test scripts ===&lt;br /&gt;
[https://osiris.lindenlab.com/mediawiki/index.php/Email_Test internal test]&lt;br /&gt;
&lt;br /&gt;
=== Discussion for future improvements ===&lt;br /&gt;
(none)&lt;br /&gt;
&lt;br /&gt;
=== Relationship to other features ===&lt;br /&gt;
&amp;lt;b&amp;gt; List of features that need to be tested when this feature changes, and why. &amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[IM to email]] - verify IM -&amp;gt; email still works.&lt;br /&gt;
&lt;br /&gt;
[[Postcards]] - Postcards use email out?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== User Guides ===&lt;br /&gt;
[http://lslwiki.net/lslwiki/wakka.php?wakka=llemail llEmail on LSLwiki.net]&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gellan Glenelg</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlEmail&amp;diff=86877</id>
		<title>LlEmail</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlEmail&amp;diff=86877"/>
		<updated>2008-08-19T04:35:49Z</updated>

		<summary type="html">&lt;p&gt;Gellan Glenelg: Added note for aditi addresses&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func_id=119|func_sleep=20.0|func_energy=10.0&lt;br /&gt;
|sort=Email|func=llEmail&lt;br /&gt;
|p1_type=string|p1_name=address&lt;br /&gt;
|p2_type=string|p2_name=subject&lt;br /&gt;
|p3_type=string|p3_name=message&lt;br /&gt;
|func_footnote=The entire message (including the address, subject and other miscellaneous fields) can&#039;t be longer than 4096 bytes combined.&lt;br /&gt;
|func_desc=Sends an email to &#039;&#039;&#039;address&#039;&#039;&#039; with &#039;&#039;&#039;subject&#039;&#039;&#039; and &#039;&#039;&#039;message&#039;&#039;&#039;.&lt;br /&gt;
|return_text&lt;br /&gt;
|spec=The &#039;&#039;&#039;message&#039;&#039;&#039; is prefixed with information about the prim sending the email.&lt;br /&gt;
{{{!}}{{Prettytable}}&lt;br /&gt;
{{!}}-{{Hl2}}&lt;br /&gt;
!Template&lt;br /&gt;
!Example&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}}&amp;lt;pre&amp;gt;&lt;br /&gt;
Object-Name: *prim*&lt;br /&gt;
Region: *simname* (*simpos.x*, *simpos.y*)&lt;br /&gt;
Local-Position: (*primpos.x*, *primpos.y*, *primpos.z*)&lt;br /&gt;
&lt;br /&gt;
*message*&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{!}}&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Object-Name: Object&lt;br /&gt;
Region: Gibson (254976, 256000)&lt;br /&gt;
Local-Position: (117, 129, 50)&lt;br /&gt;
&lt;br /&gt;
The real message starts here.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
{{!}}}&lt;br /&gt;
|caveats=* There is a limit to the number of email messages an object can send in a given amount of time. &lt;br /&gt;
* Due to the bug {{Jira|SVC-23}} (present since 2005), objects may stop receiving emails completely until either the region is restarted or the object crosses a region boundary (resetting the script doesn&#039;t help).  Emails sent may eventually be received after a restart/region-cross.  Hence, don&#039;t rely on this function for reliable inter-region messaging. &lt;br /&gt;
|constants&lt;br /&gt;
|examples=&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
string email_address = &amp;quot;somebody@example.com&amp;quot;; // who will receive the messages&lt;br /&gt;
 &lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry() {&lt;br /&gt;
 &lt;br /&gt;
        //Send an email to a normal email account&lt;br /&gt;
        llEmail( email_address, &amp;quot;Look it&#039;s an email subject line!&amp;quot;, &amp;quot;Testing 1 2 3&amp;quot; );&lt;br /&gt;
    }&lt;br /&gt;
 &lt;br /&gt;
    touch_start( integer num_detected ) {&lt;br /&gt;
        integer i = 0;&lt;br /&gt;
 &lt;br /&gt;
        // Send another email, telling who touched the prim.&lt;br /&gt;
        do&lt;br /&gt;
            llEmail( email_address, &amp;quot;No touching!&amp;quot;, &amp;quot;I was defiled by: &amp;quot; + llDetectedName(i) + &amp;quot;\nKey: &amp;quot; + (string) llDetectedKey(i) );&lt;br /&gt;
        while(++i &amp;lt; num_detected);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|helpers=&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
email( string time, string address, string subj, string message, integer num_left )&lt;br /&gt;
{&lt;br /&gt;
    if(llGetSubString(address, -19, -1) == &amp;quot;@lsl.secondlife.com&amp;quot;)//trim the header&lt;br /&gt;
        message = llDeleteSubString(message, 0, llSubStringIndex(message, &amp;quot;\n\n&amp;quot;) + 1);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|also_functions=*{{LSLG|llGetNextEmail}}&lt;br /&gt;
*{{LSLG|llMessageLinked}}&lt;br /&gt;
|also_events=*{{LSLG|email}}&lt;br /&gt;
*{{LSLG|link message}}&lt;br /&gt;
|also_tests=*[[llEmail]]&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes=* Because of the long delay on this function, it is often called from a second script triggered by {{LSLG|link message}}.&lt;br /&gt;
* If you are sending email to a prim within Second Life, its address is &#039;&#039;[key]&#039;&#039;@lsl.secondlife.com&lt;br /&gt;
** Which means if the key returned by [[llGetKey]] is &amp;quot;a2e76fcd-9360-4f6d-a924-000000000003&amp;quot;, then its email address is &amp;quot;a2e76fcd-9360-4f6d-a924-000000000003@lsl.secondlife.com&amp;quot;.&lt;br /&gt;
** Agents do not have fixed email addresses, use [[llInstantMessage]] or [[llOwnerSay]].&lt;br /&gt;
* If you are sending email to a prim on the Second Life Preview Grid (Aditi), its address is &#039;&#039;[key]&#039;&#039;@lsl.aditi.lindenlab.com {{Jira|SVC-2873}}&lt;br /&gt;
|permission&lt;br /&gt;
|negative_index&lt;br /&gt;
|cat1=Communications&lt;br /&gt;
|cat2=Email&lt;br /&gt;
|cat3&lt;br /&gt;
|cat4&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;div id=&amp;quot;box&amp;quot;&amp;gt;&lt;br /&gt;
== Open Source Portal ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;padding: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
{{OSWikiFeatureNav}}&lt;br /&gt;
=== Feature Design Document ===&lt;br /&gt;
(none)&lt;br /&gt;
&lt;br /&gt;
=== Functional Spec ===&lt;br /&gt;
(none)&lt;br /&gt;
&lt;br /&gt;
=== Test scripts ===&lt;br /&gt;
[https://osiris.lindenlab.com/mediawiki/index.php/Email_Test internal test]&lt;br /&gt;
&lt;br /&gt;
=== Discussion for future improvements ===&lt;br /&gt;
(none)&lt;br /&gt;
&lt;br /&gt;
=== Relationship to other features ===&lt;br /&gt;
&amp;lt;b&amp;gt; List of features that need to be tested when this feature changes, and why. &amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[IM to email]] - verify IM -&amp;gt; email still works.&lt;br /&gt;
&lt;br /&gt;
[[Postcards]] - Postcards use email out?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== User Guides ===&lt;br /&gt;
[http://lslwiki.net/lslwiki/wakka.php?wakka=llemail llEmail on LSLwiki.net]&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Gellan Glenelg</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Bug_triage/2008-08-04&amp;diff=82709</id>
		<title>Bug triage/2008-08-04</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Bug_triage/2008-08-04&amp;diff=82709"/>
		<updated>2008-08-04T18:35:21Z</updated>

		<summary type="html">&lt;p&gt;Gellan Glenelg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Edit below to add or change issues.  To update the future formatting and text of this page, change [[Template:Triage Template]] instead. --&amp;gt;{{Bug triage}}&lt;br /&gt;
&lt;br /&gt;
Next meeting: 2008-08-04 at 12 PM SLT at {{SLurl|region=Hippotropolis|x=241|y=27|z=23|title=Hippotropolis Meeting area}}.  See [[Bug triage]] for details.&lt;br /&gt;
&lt;br /&gt;
== Fast Track Import ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|VWR-380}} - Votes: 10 - Resized Flexible Prims Render Improperly - {{User|Khamon Fate}}&lt;br /&gt;
** Was supposedly fixed in 1.20.3 but still happening in 1.20.15&lt;br /&gt;
* {{jira|SVC-2712}} - Votes: 2 - Content loss in 1.23.4 sim - {{User|trodden miles}}&lt;br /&gt;
&lt;br /&gt;
== Hot by Vote ==&lt;br /&gt;
[http://www.sljirastats.com/jira_search.php?search=33&amp;amp;output=wiki High Voted Bugs]&lt;br /&gt;
&lt;br /&gt;
* {{jira|VWR-7156}} - Votes: 12 - Zoom doesn&#039;t work in Flycam mode - {{User|tenebrous pau}}&lt;br /&gt;
* {{jira|SVC-2596}} - Votes: 12 - Script dataserver events become permanently blocked until sim restart - {{User|Cenji Neutra}}&lt;br /&gt;
* {{jira|SVC-2723}} - Votes: 18 - Change in llPushObject strength cap behavior 1.22 -&amp;gt; 1.23 simulator release - {{User|Chalice Yao}}&lt;br /&gt;
&lt;br /&gt;
== Patches ==&lt;br /&gt;
[http://www.sljirastats.com/jira_search.php?search=34&amp;amp;output=wiki Patches]&lt;br /&gt;
&lt;br /&gt;
* {{jira|VWR-1366}} - Votes: 9 - Analog Joystick support - {{User|Lucy Zelmanov}}&lt;br /&gt;
&lt;br /&gt;
== Misc Pool ==&lt;br /&gt;
[http://www.sljirastats.com/jira_search.php?search=35&amp;amp;output=wiki Misc Pool]&lt;br /&gt;
&lt;br /&gt;
* {{jira|VWR-8474}} - Votes: 2 - Blog info not showing on the new login screen - {{User|scarlett glenelg}}&lt;br /&gt;
* {{jira|SVC-2740}} - Votes: 0 - Attachment is attached in viewer, detached on server after TP with high attached prim count - {{User|Maggie Darwin}}&lt;br /&gt;
* {{jira|VWR-8456}} - Votes: 0 - Mac client bug in &amp;quot;&amp;quot;Find Friends&amp;quot;&amp;quot; - {{User|Regulus Darkstone}}&lt;br /&gt;
* {{jira|VWR-8017}} - Votes: 0 - ATI driver crash with Windows XP - {{User|Al Supercharge}}&lt;br /&gt;
* {{jira|VWR-8301}} - Votes: 0 - Animation preview does not play animations after end of loop - {{User|Doris Haller}}&lt;br /&gt;
* {{jira|VWR-7846}} - Votes: 0 - English Client cannot send IM&#039;s, Notecards, teleports etc to a french client - {{User|dania daviau}}&lt;br /&gt;
* {{jira|SVC-2611}} - Votes: 0 - Group invitation failed and spam mail of group invitation. - {{User|Naonao Watanabe}}&lt;br /&gt;
* {{jira|VWR-6740}} - Votes: 2 - SpaceNavigator input cross-talk to other apps - {{User|Whichway Janus}}&lt;br /&gt;
* {{jira|VWR-6970}} - Votes: 1 - Crash on Advanced &amp;gt; Character &amp;gt; Display Agent Target - {{User|Day Oh}}&lt;br /&gt;
* {{jira|SVC-1684}} - Votes: 0 - Build rezzers experiencing problems on havok4 servers only. - {{User|cal corleone}}&lt;br /&gt;
* {{jira|VWR-7157}} - Votes: 0 - llDetectedGrab() returns bad results for certain viewer window sizes - {{User|Lex Neva}}&lt;br /&gt;
* {{jira|VWR-7011}} - Votes: 0 - Camera locks into top of head view - {{User|WarKirby Magojiro}}&lt;br /&gt;
* {{jira|SVC-1847}} - Votes: 0 - llStringLength won&#039;t diferentiate between single and multiple byte characters, while the cap for chat will - {{User|TigroSpottystripes Katsu}}&lt;br /&gt;
* {{jira|SVC-1685}} - Votes: 0 - Teens unable to use the beta grid. - {{User|Liny Odell}}&lt;br /&gt;
* {{jira|VWR-7416}} - Votes: 0 - Display wobbles at altitudes higher than 650m - {{User|Vinco DeCuir}}&lt;br /&gt;
* {{jira|SVC-996}} - Votes: 0 - Five minute wait due to &amp;quot;&amp;quot;System Logging You Out&amp;quot;&amp;quot; happens everytime when wearing scripted HUD - {{User|Chase Marellan}}&lt;br /&gt;
* {{jira|SVC-250}} - Votes: 5 - llHTTPRequest does not deliver results on URLs connecting to non standard ports - {{User|BlckCobra Shikami}}&lt;br /&gt;
* {{jira|WEB-600}} - Votes: 0 - When event fails to submit and needs corrections, Location select box does not remember initial choice - {{User|Blue Revolution}}&lt;br /&gt;
* {{jira|VWR-5773}} - Votes: 0 - When Basic Shaders is selected in Graphics settings, it causes a fog bar along the right side of the screen also visible in photos. In viewer 1.19.1 - {{User|cherie parker}}&lt;br /&gt;
* {{jira|VWR-5090}} - Votes: 0 - Landing on a Mega Prim in Havok 4 fails and causes the avvie to float as if in Zero Gravity - {{User|Corsi Mousehold}}&lt;br /&gt;
* {{jira|VWR-7769}} - Votes: 0 - Exit out of Mouselook, shattered the viewer into broken pieces, like a shattered mirror - {{User|Marc Montague}}&lt;br /&gt;
* {{jira|VWR-2964}} - Votes: 3 - Land terrain textures displayed inconsistently with current release (1.18.3.5) - {{User|Jonas Ingrassia}}&lt;br /&gt;
* {{jira|MISC-1394}} - Votes: 0 - Group Invite not being received in world, but received later as offline email - {{User|Mynx Carroll}}&lt;br /&gt;
* {{jira|WEB-374}} - Votes: 0 - Land Auction Search To Restrictive - {{User|Munchy Yost}}&lt;br /&gt;
* {{jira|SVC-1568}} - Votes: 0 - Havok4 scripts - {{User|yikes lopez}}&lt;br /&gt;
* {{jira|VWR-7819}} - Votes: 0 - SL crashes when trying to save or upload a picture - {{User|Rowana Rolland}}&lt;br /&gt;
&lt;br /&gt;
== Pre-meeting activity ==&lt;br /&gt;
&lt;br /&gt;
Some issues will be resolved in the course of building this agenda.  Rather than deleting them from the proposed agenda, move the issue and associated discussion into the appropriate section below.&lt;br /&gt;
&lt;br /&gt;
=== Imported ===&lt;br /&gt;
&lt;br /&gt;
=== Resolved ===&lt;br /&gt;
&lt;br /&gt;
== Transcript ==&lt;br /&gt;
Transcript is/will be at [[{{PAGENAME}}/Transcript]]&lt;br /&gt;
&lt;br /&gt;
== Creating An Agenda ==&lt;br /&gt;
{{Bug List Instructions}}&lt;/div&gt;</summary>
		<author><name>Gellan Glenelg</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Bug_triage/2008-08-04&amp;diff=82707</id>
		<title>Bug triage/2008-08-04</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Bug_triage/2008-08-04&amp;diff=82707"/>
		<updated>2008-08-04T18:29:46Z</updated>

		<summary type="html">&lt;p&gt;Gellan Glenelg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Edit below to add or change issues.  To update the future formatting and text of this page, change [[Template:Triage Template]] instead. --&amp;gt;{{Bug triage}}&lt;br /&gt;
&lt;br /&gt;
Next meeting: 2008-08-04 at 12 PM SLT at {{SLurl|region=Hippotropolis|x=241|y=27|z=23|title=Hippotropolis Meeting area}}.  See [[Bug triage]] for details.&lt;br /&gt;
&lt;br /&gt;
== Fast Track Import ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|VWR-380}} - Votes: 10 - Resized Flexible Prims Render Improperly - {{User|Khamon Fate}}&lt;br /&gt;
** Was supposedly fixed in 1.20.3 but still happening in 1.20.15&lt;br /&gt;
* {{jira|SVC-2712}} - Votes: 2 - Content loss in 1.23.4 sim - {{User|trodden miles}}&lt;br /&gt;
&lt;br /&gt;
== Hot by Vote ==&lt;br /&gt;
[http://www.sljirastats.com/jira_search.php?search=33&amp;amp;output=wiki High Voted Bugs]&lt;br /&gt;
&lt;br /&gt;
* {{jira|VWR-7156}} - Votes: 12 - Zoom doesn&#039;t work in Flycam mode - {{User|tenebrous pau}}&lt;br /&gt;
* {{jira|SVC-2596}} - Votes: 12 - Script dataserver events become permanently blocked until sim restart - {{User|Cenji Neutra}}&lt;br /&gt;
* {{jira|SVC-2723}} - Votes: 18 - Change in llPushObject strength cap behavior 1.22 -&amp;gt; 1.23 simulator release - {{User|Chalice Yao}}&lt;br /&gt;
&lt;br /&gt;
== Patches ==&lt;br /&gt;
[http://www.sljirastats.com/jira_search.php?search=34&amp;amp;output=wiki Patches]&lt;br /&gt;
&lt;br /&gt;
* {{jira|VWR-1366}} - Votes: 9 - Analog Joystick support - {{User|Lucy Zelmanov}}&lt;br /&gt;
&lt;br /&gt;
== Misc Pool ==&lt;br /&gt;
[http://www.sljirastats.com/jira_search.php?search=35&amp;amp;output=wiki Misc Pool]&lt;br /&gt;
&lt;br /&gt;
* {{jira|VWR-8474}} - Votes: 1 - Blog info not showing on the new login screen - {{User|scarlett glenelg}}&lt;br /&gt;
* {{jira|SVC-2740}} - Votes: 0 - Attachment is attached in viewer, detached on server after TP with high attached prim count - {{User|Maggie Darwin}}&lt;br /&gt;
* {{jira|VWR-8456}} - Votes: 0 - Mac client bug in &amp;quot;&amp;quot;Find Friends&amp;quot;&amp;quot; - {{User|Regulus Darkstone}}&lt;br /&gt;
* {{jira|VWR-8017}} - Votes: 0 - ATI driver crash with Windows XP - {{User|Al Supercharge}}&lt;br /&gt;
* {{jira|VWR-8301}} - Votes: 0 - Animation preview does not play animations after end of loop - {{User|Doris Haller}}&lt;br /&gt;
* {{jira|VWR-7846}} - Votes: 0 - English Client cannot send IM&#039;s, Notecards, teleports etc to a french client - {{User|dania daviau}}&lt;br /&gt;
* {{jira|SVC-2611}} - Votes: 0 - Group invitation failed and spam mail of group invitation. - {{User|Naonao Watanabe}}&lt;br /&gt;
* {{jira|VWR-6740}} - Votes: 2 - SpaceNavigator input cross-talk to other apps - {{User|Whichway Janus}}&lt;br /&gt;
* {{jira|VWR-6970}} - Votes: 1 - Crash on Advanced &amp;gt; Character &amp;gt; Display Agent Target - {{User|Day Oh}}&lt;br /&gt;
* {{jira|SVC-1684}} - Votes: 0 - Build rezzers experiencing problems on havok4 servers only. - {{User|cal corleone}}&lt;br /&gt;
* {{jira|VWR-7157}} - Votes: 0 - llDetectedGrab() returns bad results for certain viewer window sizes - {{User|Lex Neva}}&lt;br /&gt;
* {{jira|VWR-7011}} - Votes: 0 - Camera locks into top of head view - {{User|WarKirby Magojiro}}&lt;br /&gt;
* {{jira|SVC-1847}} - Votes: 0 - llStringLength won&#039;t diferentiate between single and multiple byte characters, while the cap for chat will - {{User|TigroSpottystripes Katsu}}&lt;br /&gt;
* {{jira|SVC-1685}} - Votes: 0 - Teens unable to use the beta grid. - {{User|Liny Odell}}&lt;br /&gt;
* {{jira|VWR-7416}} - Votes: 0 - Display wobbles at altitudes higher than 650m - {{User|Vinco DeCuir}}&lt;br /&gt;
* {{jira|SVC-996}} - Votes: 0 - Five minute wait due to &amp;quot;&amp;quot;System Logging You Out&amp;quot;&amp;quot; happens everytime when wearing scripted HUD - {{User|Chase Marellan}}&lt;br /&gt;
* {{jira|SVC-250}} - Votes: 5 - llHTTPRequest does not deliver results on URLs connecting to non standard ports - {{User|BlckCobra Shikami}}&lt;br /&gt;
* {{jira|WEB-600}} - Votes: 0 - When event fails to submit and needs corrections, Location select box does not remember initial choice - {{User|Blue Revolution}}&lt;br /&gt;
* {{jira|VWR-5773}} - Votes: 0 - When Basic Shaders is selected in Graphics settings, it causes a fog bar along the right side of the screen also visible in photos. In viewer 1.19.1 - {{User|cherie parker}}&lt;br /&gt;
* {{jira|VWR-5090}} - Votes: 0 - Landing on a Mega Prim in Havok 4 fails and causes the avvie to float as if in Zero Gravity - {{User|Corsi Mousehold}}&lt;br /&gt;
* {{jira|VWR-7769}} - Votes: 0 - Exit out of Mouselook, shattered the viewer into broken pieces, like a shattered mirror - {{User|Marc Montague}}&lt;br /&gt;
* {{jira|VWR-2964}} - Votes: 3 - Land terrain textures displayed inconsistently with current release (1.18.3.5) - {{User|Jonas Ingrassia}}&lt;br /&gt;
* {{jira|MISC-1394}} - Votes: 0 - Group Invite not being received in world, but received later as offline email - {{User|Mynx Carroll}}&lt;br /&gt;
* {{jira|WEB-374}} - Votes: 0 - Land Auction Search To Restrictive - {{User|Munchy Yost}}&lt;br /&gt;
* {{jira|SVC-1568}} - Votes: 0 - Havok4 scripts - {{User|yikes lopez}}&lt;br /&gt;
* {{jira|VWR-7819}} - Votes: 0 - SL crashes when trying to save or upload a picture - {{User|Rowana Rolland}}&lt;br /&gt;
&lt;br /&gt;
== Pre-meeting activity ==&lt;br /&gt;
&lt;br /&gt;
Some issues will be resolved in the course of building this agenda.  Rather than deleting them from the proposed agenda, move the issue and associated discussion into the appropriate section below.&lt;br /&gt;
&lt;br /&gt;
=== Imported ===&lt;br /&gt;
&lt;br /&gt;
=== Resolved ===&lt;br /&gt;
&lt;br /&gt;
== Transcript ==&lt;br /&gt;
Transcript is/will be at [[{{PAGENAME}}/Transcript]]&lt;br /&gt;
&lt;br /&gt;
== Creating An Agenda ==&lt;br /&gt;
{{Bug List Instructions}}&lt;/div&gt;</summary>
		<author><name>Gellan Glenelg</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlCSV2List&amp;diff=65821</id>
		<title>LlCSV2List</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlCSV2List&amp;diff=65821"/>
		<updated>2008-05-02T18:46:20Z</updated>

		<summary type="html">&lt;p&gt;Gellan Glenelg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|func_id=196|func_sleep=0.0|func_energy=10.0&lt;br /&gt;
|func=llCSV2List|return_type=list|p1_type=string|p1_name=src&lt;br /&gt;
|func_footnote=&lt;br /&gt;
Do not confuse this function with the {{Wikipedia|CSV|CSV}} format, it is &#039;&#039;not&#039;&#039; the CSV format.&lt;br /&gt;
|func_desc&lt;br /&gt;
|return_text=made from &#039;&#039;&#039;src&#039;&#039;&#039; as comma separated values.&lt;br /&gt;
|spec=Anything between &amp;quot;&amp;lt;&amp;quot; and &amp;quot;&amp;gt;&amp;quot; is considered a single value regardless of the existence of a comma between. For every &amp;quot;&amp;lt;&amp;quot; there needs to be a corresponding &amp;quot;&amp;gt;&amp;quot;.&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
llCSV2List(&amp;quot;&amp;lt;&amp;gt;,&amp;gt;,a&amp;quot;)   == [&amp;quot;&amp;lt;&amp;gt;&amp;quot;, &amp;quot;&amp;gt;&amp;quot;, &amp;quot;a&amp;quot;]; //didn&#039;t match the last &amp;quot;&amp;gt;&amp;quot;&lt;br /&gt;
llCSV2List(&amp;quot;&amp;lt;&amp;lt;&amp;gt;,&amp;gt;,a&amp;quot;)  == [&amp;quot;&amp;lt;&amp;lt;&amp;gt;,&amp;gt;&amp;quot;, &amp;quot;a&amp;quot;];   //matched everything&lt;br /&gt;
llCSV2List(&amp;quot;&amp;lt;&amp;lt;&amp;lt;&amp;gt;,&amp;gt;,a&amp;quot;) == [&amp;quot;&amp;lt;&amp;lt;&amp;lt;&amp;gt;,&amp;gt;,a&amp;quot;];     //didn&#039;t match the last &amp;quot;&amp;lt;&amp;quot;&lt;br /&gt;
&amp;lt;/lsl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|caveats=*It eats leading and trailing spaces from values.&lt;br /&gt;
* Anything between &amp;quot;&amp;lt;&amp;quot; and &amp;quot;&amp;gt;&amp;quot; is considered a single value, see [[#Specification|Specification]] for further details.&lt;br /&gt;
** This is done so that the function can handle [[vector]]s and [[rotation]]s without extra parsing.&lt;br /&gt;
* All items in the returned list are strings until [[typecast]].&lt;br /&gt;
* llCSV2List(&amp;quot;&amp;quot;) returns [&amp;quot;&amp;quot;], not []&lt;br /&gt;
|constants&lt;br /&gt;
|examples=&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        string csv = &amp;quot;first,second,third&amp;quot;;&lt;br /&gt;
        list my_list = llCSV2List(csv);&lt;br /&gt;
        llOwnerSay(&amp;quot;CSV: &amp;quot; + csv);&lt;br /&gt;
        integer i;&lt;br /&gt;
        for (i=0; i&amp;lt;llGetListLength(my_list); ++i)&lt;br /&gt;
        {&lt;br /&gt;
            llOwnerSay(&amp;quot;my_list[&amp;quot; + (string)i + &amp;quot;]: &amp;quot; + llList2String(my_list,i));&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_functions={{LSL DefineRow||[[llList2CSV]]|}}&lt;br /&gt;
{{LSL DefineRow||[[llDumpList2String]]|}}&lt;br /&gt;
{{LSL DefineRow||[[llParseString2List]]|}}&lt;br /&gt;
{{LSL DefineRow||[[llParseStringKeepNulls]]|}}&lt;br /&gt;
|also_events&lt;br /&gt;
|also_tests&lt;br /&gt;
|also_articles={{LSL DefineRow||[[Typecast]]|}}&lt;br /&gt;
|notes&lt;br /&gt;
|permission&lt;br /&gt;
|negative_index&lt;br /&gt;
|sort=CSV2List&lt;br /&gt;
|cat1=List&lt;br /&gt;
|cat2=String&lt;br /&gt;
|cat3=Data Conversion&lt;br /&gt;
|cat4=CSV&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Gellan Glenelg</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:Gellan_Glenelg&amp;diff=46207</id>
		<title>User:Gellan Glenelg</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:Gellan_Glenelg&amp;diff=46207"/>
		<updated>2007-12-27T18:52:34Z</updated>

		<summary type="html">&lt;p&gt;Gellan Glenelg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Jira Reporter}}&lt;br /&gt;
Gellan&#039;s Page&lt;/div&gt;</summary>
		<author><name>Gellan Glenelg</name></author>
	</entry>
</feed>