<?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=Dante+Linden</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=Dante+Linden"/>
	<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/wiki/Special:Contributions/Dante_Linden"/>
	<updated>2026-06-27T00:41:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlAddToLandPassList&amp;diff=517673</id>
		<title>LlAddToLandPassList</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlAddToLandPassList&amp;diff=517673"/>
		<updated>2009-10-06T00:10:59Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: include the maximum value of hours in the caveat section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function/avatar|avatar}}{{LSL_Function&lt;br /&gt;
|func=llAddToLandPassList&lt;br /&gt;
|sort=AddToLandPassList&lt;br /&gt;
|func_id=240|func_sleep=0.1|func_energy=10.0&lt;br /&gt;
|p1_type=key|p1_name=avatar&lt;br /&gt;
|p2_type=float|p2_name=hours&lt;br /&gt;
|func_desc=Add &#039;&#039;&#039;avatar&#039;&#039;&#039; to the land pass list for &#039;&#039;&#039;hours&#039;&#039;&#039;, or indefinitely if &#039;&#039;&#039;hours&#039;&#039;&#039; is zero.&lt;br /&gt;
|return_text&lt;br /&gt;
|spec&lt;br /&gt;
|caveats=* The maximum usable value for &#039;&#039;&#039;hours&#039;&#039;&#039; is 144.  Any value greater than 144 will be silently reduced to 144.&lt;br /&gt;
|examples=&amp;lt;lsl&amp;gt;// This is not a complete solution, requires full avatar names to work - even for unbanning someone!&lt;br /&gt;
// This is meant only as an example of the land ban and pass management functions.&lt;br /&gt;
// free to copy, use, modify, distribute - just don&#039;t ask me to debug your modified code. ;-)&lt;br /&gt;
// &lt;br /&gt;
// Commands are:&lt;br /&gt;
//   /5 ban:full_avatar_name&lt;br /&gt;
//   /5 tempban:full_avatar_name&lt;br /&gt;
//   /5 unban:full_avatar_name&lt;br /&gt;
//   /5 pass:full_avatar_name&lt;br /&gt;
//   /5 unpass:full_avatar_name&lt;br /&gt;
//   /5 clearban&lt;br /&gt;
//   /5 clearpass&lt;br /&gt;
&lt;br /&gt;
string command;&lt;br /&gt;
&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        llListen(5, &amp;quot;&amp;quot;, llGetOwner(), &amp;quot;&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    on_rez(integer param)&lt;br /&gt;
    {&lt;br /&gt;
        llResetScript();&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    listen(integer chan, string name, key id, string message)&lt;br /&gt;
    {&lt;br /&gt;
        if (command != &amp;quot;&amp;quot;)&lt;br /&gt;
        {&lt;br /&gt;
            llOwnerSay(&amp;quot;Sorry, still processing last command, try again in a second.&amp;quot;);&lt;br /&gt;
        }&lt;br /&gt;
        &lt;br /&gt;
        list args = llParseString2List(message,[&amp;quot;:&amp;quot;],[]);&lt;br /&gt;
        command = llToLower(llList2String(args,0));&lt;br /&gt;
        &lt;br /&gt;
        if (command == &amp;quot;clearbans&amp;quot;)&lt;br /&gt;
        {&lt;br /&gt;
            llResetLandBanList();&lt;br /&gt;
        }&lt;br /&gt;
        if (command == &amp;quot;clearpass&amp;quot;)&lt;br /&gt;
        {&lt;br /&gt;
            llResetLandPassList();&lt;br /&gt;
        }&lt;br /&gt;
        else&lt;br /&gt;
        {&lt;br /&gt;
            llSensor(llList2String(args,1),NULL_KEY,AGENT,96,PI);&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    no_sensor()&lt;br /&gt;
    {&lt;br /&gt;
        command = &amp;quot;&amp;quot;;&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    sensor(integer num)&lt;br /&gt;
    {&lt;br /&gt;
        integer i;&lt;br /&gt;
        for (i=0; i&amp;lt; num; ++i)&lt;br /&gt;
        {&lt;br /&gt;
            if (command == &amp;quot;ban&amp;quot;)&lt;br /&gt;
            {&lt;br /&gt;
                // Ban indefinetely &lt;br /&gt;
                llAddToLandBanList(llDetectedKey(i),0.0);&lt;br /&gt;
            }&lt;br /&gt;
            if (command == &amp;quot;tempban&amp;quot;)&lt;br /&gt;
            {&lt;br /&gt;
                // Ban for 1 hour.&lt;br /&gt;
                llAddToLandBanList(llDetectedKey(i),1.0);&lt;br /&gt;
            }&lt;br /&gt;
            if (command == &amp;quot;unban&amp;quot;)&lt;br /&gt;
            {&lt;br /&gt;
                llRemoveFromLandBanList(llDetectedKey(i));&lt;br /&gt;
            }&lt;br /&gt;
            if (command == &amp;quot;pass&amp;quot;)&lt;br /&gt;
            {&lt;br /&gt;
                // Add to land pass list for 1 hour&lt;br /&gt;
                llAddToLandPassList(llDetectedKey(i),1.0);&lt;br /&gt;
            }&lt;br /&gt;
            if (command == &amp;quot;unpass&amp;quot;)&lt;br /&gt;
            {&lt;br /&gt;
                llRemoveFromLandPassList(llDetectedKey(i));&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
        command = &amp;quot;&amp;quot;;&lt;br /&gt;
    }&lt;br /&gt;
}&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|related&lt;br /&gt;
|also_functions=&lt;br /&gt;
{{LSL DefineRow||[[llAddToLandBanList]]|}}&lt;br /&gt;
{{LSL DefineRow||[[llRemoveFromLandBanList]]|}}&lt;br /&gt;
{{LSL DefineRow||[[llRemoveFromLandPassList]]|}}&lt;br /&gt;
{{LSL DefineRow||[[llResetLandBanList]]|}}&lt;br /&gt;
{{LSL DefineRow||[[llResetLandPassList]]|}}&lt;br /&gt;
|also_events&lt;br /&gt;
|also_tests&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes&lt;br /&gt;
|cat1=Security&lt;br /&gt;
|cat2=Parcel&lt;br /&gt;
|cat3&lt;br /&gt;
|cat4}}&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.30&amp;diff=491383</id>
		<title>Release Notes/Second Life Server/1.30</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.30&amp;diff=491383"/>
		<updated>2009-09-16T14:04:11Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: added notes for 1.30.0.133265&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 1.30.0.133265 (2009-09-16)==&lt;br /&gt;
&lt;br /&gt;
* {{jira|VWR-12525}}: llAttachToAvatar can cause parentless attachments that can subsequently crash the client when selected&lt;br /&gt;
* Re-enable teleport throttle after the following fixes:&lt;br /&gt;
** Intra-region TP was blocked by inter-region TP throttle&lt;br /&gt;
** Teleport throttle blocks prematurely when agent teleports back and forth between 2 regions&lt;br /&gt;
** As well as an issue fixed in [https://wiki.secondlife.com/wiki/Release_Notes/Second_Life_Server/1.27 1.27] where a single, failed teleport would trigger the throttle&lt;br /&gt;
* {{jira|SVC-4342}} Vanishing Regions/Sims&lt;br /&gt;
* Stability improvements and back-end fixes&lt;br /&gt;
* Misc other changes&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Agni_Pilot_Regions&amp;diff=491373</id>
		<title>Agni Pilot Regions</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Agni_Pilot_Regions&amp;diff=491373"/>
		<updated>2009-09-16T13:51:04Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: added Think Kink and Euterpe Bay&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Background =&lt;br /&gt;
&lt;br /&gt;
The process of deploying code to Agni (the grid that serves the consumer version of Second Life) usually involves at least three stages.  First, a pilot deployment is done to verify that there are no obvious bugs that arise in the production environment.  After a sufficient period of time has passed, a second, half-grid deployment is done.  Shortly afterward, a third deployment is done to the remainder of the Agni grid.&lt;br /&gt;
&lt;br /&gt;
Linden Lab has historically accepted requests from residents to have their regions included in the pilot deployments.  This page documents the process for getting your region added to or removed from the pilot region list, and it includes the current list of non-Linden regions in the pilot region list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Removal / Addition Process =&lt;br /&gt;
&lt;br /&gt;
To have your region added to or removed from the pilot region list, please make your request in the [[Talk:Agni Pilot Regions | Talk]] page.  &#039;&#039;&#039;When making your request, you must be logged into the wiki using the name that matches the owner of the region you&#039;re making the request for&#039;&#039;&#039;.  We&#039;ll look at the request in the page history to verify that the account name making the request matches the owner of the region.  If they match, we will proceed with making the requested change.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Region List =&lt;br /&gt;
&lt;br /&gt;
The owners of the following regions have requested that they be included in any pilot deploys to Agni: &lt;br /&gt;
&lt;br /&gt;
* Alien Island&lt;br /&gt;
* JADED&lt;br /&gt;
* Morpheus&lt;br /&gt;
* Quantum&lt;br /&gt;
* Snark&lt;br /&gt;
* Zynadu&lt;br /&gt;
* Pure Combat&lt;br /&gt;
* Kentucky&lt;br /&gt;
* Triple Labs&lt;br /&gt;
* Kitten island&lt;br /&gt;
* Kitten house&lt;br /&gt;
* Solarian Republic&lt;br /&gt;
* Dust&lt;br /&gt;
* New Script&lt;br /&gt;
* Animation Factory&lt;br /&gt;
* Think Kink&lt;br /&gt;
* Euterpe Bay&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Talk:Agni_Pilot_Regions&amp;diff=490953</id>
		<title>Talk:Agni Pilot Regions</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Talk:Agni_Pilot_Regions&amp;diff=490953"/>
		<updated>2009-09-15T20:17:20Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: added Animation Factory&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Discussions ==&lt;br /&gt;
* Hope you don&#039;t mind Dante, added some formatting to allow for more use if needed and to hopefully keep things easy to read. [[User:Gordon_Wendt|&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;&#039;&#039;GW&#039;&#039;&amp;lt;/font&amp;gt;]] &amp;lt;sup&amp;gt;&amp;lt;small&amp;gt;([[User talk:Gordon_Wendt|&amp;lt;Font color=&amp;quot;red&amp;quot;&amp;gt;T&amp;lt;/font&amp;gt;]]|[[Special:Contributions/Gordon Wendt|&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;C&amp;lt;/font&amp;gt;]])&amp;lt;/small&amp;gt;&amp;lt;/sup&amp;gt; -- 06:05, 22 August 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Addition and Removal Requests ==&lt;br /&gt;
Place requests for region addition/removal below.  Thanks. [[User:Dante Linden|Dante Linden]] 23:54, 21 August 2009 (UTC)&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;!-- place at the bottom of the list on a new line preceded by an asterisk (*) --&amp;gt;&lt;br /&gt;
* Animation Factory - assuming /any/ region can sign on, sorry if I was mistaken in that (Sylva Petrov)&lt;br /&gt;
** Added - [[User:Dante Linden|Dante Linden]] 20:17, 15 September 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Agni_Pilot_Regions&amp;diff=490933</id>
		<title>Agni Pilot Regions</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Agni_Pilot_Regions&amp;diff=490933"/>
		<updated>2009-09-15T20:00:58Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: added Animation Factory at owner&amp;#039;s request&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Background =&lt;br /&gt;
&lt;br /&gt;
The process of deploying code to Agni (the grid that serves the consumer version of Second Life) usually involves at least three stages.  First, a pilot deployment is done to verify that there are no obvious bugs that arise in the production environment.  After a sufficient period of time has passed, a second, half-grid deployment is done.  Shortly afterward, a third deployment is done to the remainder of the Agni grid.&lt;br /&gt;
&lt;br /&gt;
Linden Lab has historically accepted requests from residents to have their regions included in the pilot deployments.  This page documents the process for getting your region added to or removed from the pilot region list, and it includes the current list of non-Linden regions in the pilot region list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Removal / Addition Process =&lt;br /&gt;
&lt;br /&gt;
To have your region added to or removed from the pilot region list, please make your request in the [[Talk:Agni Pilot Regions | Talk]] page.  &#039;&#039;&#039;When making your request, you must be logged into the wiki using the name that matches the owner of the region you&#039;re making the request for&#039;&#039;&#039;.  We&#039;ll look at the request in the page history to verify that the account name making the request matches the owner of the region.  If they match, we will proceed with making the requested change.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Region List =&lt;br /&gt;
&lt;br /&gt;
The owners of the following regions have requested that they be included in any pilot deploys to Agni: &lt;br /&gt;
&lt;br /&gt;
* Alien Island&lt;br /&gt;
* JADED&lt;br /&gt;
* Morpheus&lt;br /&gt;
* Quantum&lt;br /&gt;
* Snark&lt;br /&gt;
* Zynadu&lt;br /&gt;
* Pure Combat&lt;br /&gt;
* Kentucky&lt;br /&gt;
* Triple Labs&lt;br /&gt;
* Kitten island&lt;br /&gt;
* Kitten house&lt;br /&gt;
* Solarian Republic&lt;br /&gt;
* Dust&lt;br /&gt;
* New Script&lt;br /&gt;
* Animation Factory&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.30&amp;diff=481433</id>
		<title>Release Notes/Second Life Beta Server/1.30</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.30&amp;diff=481433"/>
		<updated>2009-09-04T20:58:46Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: added notes for 1.30.0.132665&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes for Beta Versions]]&lt;br /&gt;
&lt;br /&gt;
== 1.30.0.132665 (2009-00-04) ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|VWR-12525}}: llAttachToAvatar can cause parentless attachments that can subsequently crash the client when selected&lt;br /&gt;
* Misc other changes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.30.0.132292 (2009-09-01) ==&lt;br /&gt;
&lt;br /&gt;
* Re-enable teleport throttle after the following fixes:&lt;br /&gt;
** Intra-region TP was blocked by inter-region TP throttle&lt;br /&gt;
** Teleport throttle blocks prematurely when agent teleports back and forth between 2 regions&lt;br /&gt;
** As well as an issue fixed in [https://wiki.secondlife.com/wiki/Release_Notes/Second_Life_Server/1.27 1.27] where a single, failed teleport would trigger the throttle&lt;br /&gt;
* {{jira|SVC-4342}} Vanishing Regions/Sims&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.30.0.129991 (2009-08-09) ==&lt;br /&gt;
&lt;br /&gt;
* Stability improvements and back-end fixes&lt;br /&gt;
&lt;br /&gt;
See also: [[Release_Notes/Second_Life_Beta_Server/1.30_Beta_Test]]&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.30&amp;diff=477613</id>
		<title>Release Notes/Second Life Beta Server/1.30</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.30&amp;diff=477613"/>
		<updated>2009-09-02T05:17:59Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: added notes for 1.30.0.132292&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 1.30.0.132292 (2009-09-01) ==&lt;br /&gt;
&lt;br /&gt;
* Re-enable teleport throttle after the following fixes:&lt;br /&gt;
** Intra-region TP was blocked by inter-region TP throttle&lt;br /&gt;
** Teleport throttle blocks prematurely when agent teleports back and forth between 2 regions&lt;br /&gt;
** As well as an issue fixed in [https://wiki.secondlife.com/wiki/Release_Notes/Second_Life_Server/1.27 1.27] where a single, failed teleport would trigger the throttle&lt;br /&gt;
* {{jira|SVC-4342}} Vanishing Regions/Sims&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.30.0.129991 (2009-08-09) ==&lt;br /&gt;
&lt;br /&gt;
* Stability improvements and back-end fixes&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Talk:Agni_Pilot_Regions&amp;diff=469843</id>
		<title>Talk:Agni Pilot Regions</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Talk:Agni_Pilot_Regions&amp;diff=469843"/>
		<updated>2009-08-21T23:54:29Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: Created page with &amp;#039;Place requests for region addition/removal below.  Thanks. ~~~~&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Place requests for region addition/removal below.  Thanks. [[User:Dante Linden|Dante Linden]] 23:54, 21 August 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Agni_Pilot_Regions&amp;diff=469833</id>
		<title>Agni Pilot Regions</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Agni_Pilot_Regions&amp;diff=469833"/>
		<updated>2009-08-21T23:53:40Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: Protected &amp;quot;Agni Pilot Regions&amp;quot; ([edit=sysop] (indefinite) [move=sysop] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Background =&lt;br /&gt;
&lt;br /&gt;
The process of deploying code to Agni (the grid that serves the consumer version of Second Life) usually involves at least three stages.  First, a pilot deployment is done to verify that there are no obvious bugs that arise in the production environment.  After a sufficient period of time has passed, a second, half-grid deployment is done.  Shortly afterward, a third deployment is done to the remainder of the Agni grid.&lt;br /&gt;
&lt;br /&gt;
Linden Lab has historically accepted requests from residents to have their regions included in the pilot deployments.  This page documents the process for getting your region added to or removed from the pilot region list, and it includes the current list of non-Linden regions in the pilot region list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Removal / Addition Process =&lt;br /&gt;
&lt;br /&gt;
To have your region added to or removed from the pilot region list, please make your request in the [[Talk:Agni Pilot Regions | Talk]] page.  &#039;&#039;&#039;When making your request, you must be logged into the wiki using the name that matches the owner of the region you&#039;re making the request for&#039;&#039;&#039;.  We&#039;ll look at the request in the page history to verify that the account name making the request matches the owner of the region.  If they match, we will proceed with making the requested change.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Region List =&lt;br /&gt;
&lt;br /&gt;
The owners of the following regions have requested that they be included in any pilot deploys to Agni: &lt;br /&gt;
&lt;br /&gt;
* Alien Island&lt;br /&gt;
* JADED&lt;br /&gt;
* Morpheus&lt;br /&gt;
* Quantum&lt;br /&gt;
* Snark&lt;br /&gt;
* Zynadu&lt;br /&gt;
* Pure Combat&lt;br /&gt;
* Kentucky&lt;br /&gt;
* Triple Labs&lt;br /&gt;
* Kitten island&lt;br /&gt;
* Kitten house&lt;br /&gt;
* Solarian Republic&lt;br /&gt;
* Dust&lt;br /&gt;
* New Script&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Agni_Pilot_Regions&amp;diff=469823</id>
		<title>Agni Pilot Regions</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Agni_Pilot_Regions&amp;diff=469823"/>
		<updated>2009-08-21T23:51:42Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: Created page with &amp;#039;= Background =  The process of deploying code to Agni (the grid that serves the consumer version of Second Life) usually involves at least three stages.  First, a pilot deploymen...&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Background =&lt;br /&gt;
&lt;br /&gt;
The process of deploying code to Agni (the grid that serves the consumer version of Second Life) usually involves at least three stages.  First, a pilot deployment is done to verify that there are no obvious bugs that arise in the production environment.  After a sufficient period of time has passed, a second, half-grid deployment is done.  Shortly afterward, a third deployment is done to the remainder of the Agni grid.&lt;br /&gt;
&lt;br /&gt;
Linden Lab has historically accepted requests from residents to have their regions included in the pilot deployments.  This page documents the process for getting your region added to or removed from the pilot region list, and it includes the current list of non-Linden regions in the pilot region list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Removal / Addition Process =&lt;br /&gt;
&lt;br /&gt;
To have your region added to or removed from the pilot region list, please make your request in the [[Talk:Agni Pilot Regions | Talk]] page.  &#039;&#039;&#039;When making your request, you must be logged into the wiki using the name that matches the owner of the region you&#039;re making the request for&#039;&#039;&#039;.  We&#039;ll look at the request in the page history to verify that the account name making the request matches the owner of the region.  If they match, we will proceed with making the requested change.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Region List =&lt;br /&gt;
&lt;br /&gt;
The owners of the following regions have requested that they be included in any pilot deploys to Agni: &lt;br /&gt;
&lt;br /&gt;
* Alien Island&lt;br /&gt;
* JADED&lt;br /&gt;
* Morpheus&lt;br /&gt;
* Quantum&lt;br /&gt;
* Snark&lt;br /&gt;
* Zynadu&lt;br /&gt;
* Pure Combat&lt;br /&gt;
* Kentucky&lt;br /&gt;
* Triple Labs&lt;br /&gt;
* Kitten island&lt;br /&gt;
* Kitten house&lt;br /&gt;
* Solarian Republic&lt;br /&gt;
* Dust&lt;br /&gt;
* New Script&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.30&amp;diff=458402</id>
		<title>Release Notes/Second Life Beta Server/1.30</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.30&amp;diff=458402"/>
		<updated>2009-08-13T18:21:29Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: beginning of 1.30 release notes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 1.30.0.129991 (2009-08-09) ==&lt;br /&gt;
&lt;br /&gt;
* Stability improvements and back-end fixes&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=451083</id>
		<title>Release Notes/Second Life Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=451083"/>
		<updated>2009-08-06T21:15:27Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: added notes for 1.27.2.129782&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes]]&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
&lt;br /&gt;
== 1.27.2.129782 (2009-08-06) ==&lt;br /&gt;
&lt;br /&gt;
* Resolved a security issue &lt;br /&gt;
* {{jira|SVC-4060}}: Two transaction notifications on upload&lt;br /&gt;
* {{jira|SVC-4457}}: Error: Unable to upload asset(s) errors&lt;br /&gt;
* Resolved an issue with teleports where a single failed teleport could trigger the teleport throttle&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.1.128449 (2009-07-29) ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-4444}}: Objects become fully permissive when rezzed - with repro&lt;br /&gt;
** Note that this will only fix the behavior of the bulk permissions feature when applied to a selection. It will *not* retroactively fix incorrect permissions on existing objects.&lt;br /&gt;
* {{jira|SVC-4577}}: Search malfunction - Searching for places doesn&#039;t work - None found with random keywords&lt;br /&gt;
* {{jira|SVC-4457}}: Upload error-message right after login&lt;br /&gt;
* {{jira|SVC-4560}}: SimName in the [[PlacesReply]] [[message]] is now blank (in some cases?)&lt;br /&gt;
* {{jira|SVC-4565}}: Some prim types, like tube or ring, do not get the right data on each face, when the number of faces on that prim changes (after changing &#039;cut&#039; or &#039;skew&#039; properties)&lt;br /&gt;
* {{jira|SVC-4142}}: Giving out group tags - give out Assigned Roles and all Tags are given as Everyone yet they have the ability to go to Active Title and change it to the Assigned Role given&lt;br /&gt;
* Improvements to region crossing and neighbor issues&lt;br /&gt;
* Relaxed teleport [[limits|throttle]] threshold from 3/15s to 10/15s&lt;br /&gt;
* Misc crash fixes&lt;br /&gt;
* Added more group chat logging&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.127440 (2009-07-16) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Features and changes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* LSL HTTP-In &lt;br /&gt;
** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
* Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
* Improved login handling for SL blogs, SL wiki and PJIRA&lt;br /&gt;
* Remove &amp;quot;Save Object Back to My Inventory&amp;quot; features&lt;br /&gt;
* Throttle teleports to stop abusive bot and weapons activity&lt;br /&gt;
* Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
** Note: these changes will be enabled in stages after the full 1.27 deploy is complete&lt;br /&gt;
* Server-side support for baked texture upload capability&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fixes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Reverted group chat code back to a more stable version&lt;br /&gt;
* Fixed server error spam that caused client crash&lt;br /&gt;
* Fixed crash caused by invalid request data &lt;br /&gt;
* As an Estate Manager, having the debug option &#039;view admin options&#039; checked no longer prevents you from being able to manage the estate&lt;br /&gt;
* {{jira|SVC-3495}}: Peculiar behaviour in [[for]] loop compiled under mono&lt;br /&gt;
* {{jira|SVC-3760}}: Unicode behaviour of [[llToUpper]]() and [[llToLower]]() is inconsistent between the old LSL VM and Mono (and [[llToUpper]]() is broken on both)&lt;br /&gt;
* {{jira|SVC-3140}}: Crashed mono scripts consuming much time according to Top Scripts&lt;br /&gt;
* &amp;quot;Can&#039;t rez object&amp;quot; error displays original name of a renamed object&lt;br /&gt;
* {{jira|SVC-4153}}: Objects on group land are returned to creator instead of the owner&lt;br /&gt;
* {{jira|SVC-4436}}: Topscripts showing many duplicates&lt;br /&gt;
* {{jira|SVC-3146}}: Server is not sending enough data for texture discard levels&lt;br /&gt;
* Other misc improvements to server texture downloads&lt;br /&gt;
* {{JIRA|SVC-369}}: &#039;Sell objects with the Land&#039; option only transfers ownership of the root prims.&lt;br /&gt;
* {{JIRA|SVC-1390}}: [[llGetAgentInfo]] doesn&#039;t set [[AGENT_CROUCHING]] flag if [[AGENT_WALKING]] set&lt;br /&gt;
* {{JIRA|SVC-3837}}: Shift copying any copyable object you&#039;re NOT the creator of resets creation date.&lt;br /&gt;
* {{JIRA|VWR-6226}}: Moving the root prim, then undoing the move to that single prim, will return the prim to its previous location but also move the entire linked set the same distance X, Y or Z&lt;br /&gt;
* {{JIRA|VWR-9943}}: Camera rotation is jaggy (not smooth anymore)&lt;br /&gt;
* Avatar disappears in others&#039; viewers due to animation bug while holding down Page Down (or C) and pressing forward&lt;br /&gt;
* Script errors and warning are still appearing in local chat even&lt;br /&gt;
* Animation Request errors spam user causing client crash&lt;br /&gt;
* Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
* Many back end scalability fixes&lt;br /&gt;
* Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
* Refined simulator frame profiling logging&lt;br /&gt;
* Fix to sim crash in LLInterestList fixed &lt;br /&gt;
* Several internal fixes&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{jira|SVC-3120}}: {{LSLGC|Collision|Collision Events}} Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{jira|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{jira|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=443053</id>
		<title>Release Notes/Second Life Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=443053"/>
		<updated>2009-07-29T17:52:28Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: add note about svc-4444&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes]]&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
&lt;br /&gt;
== 1.27.1.128449 (2009-07-29) ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-4444}}: Objects become fully permissive when rezzed - with repro&lt;br /&gt;
** Note that this will only fix the behavior of the bulk permissions feature when applied to a selection. It will *not* retroactively fix incorrect permissions on existing objects.&lt;br /&gt;
* {{jira|SVC-4577}}: Search malfunction - Searching for places doesn&#039;t work - None found with random keywords&lt;br /&gt;
* {{jira|SVC-4457}}: Upload error-message right after login&lt;br /&gt;
* {{jira|SVC-4560}}: SimName in the [[PlacesReply]] [[message]] is now blank (in some cases?)&lt;br /&gt;
* {{jira|SVC-4565}}: Some prim types, like tube or ring, do not get the right data on each face, when the number of faces on that prim changes (after changing &#039;cut&#039; or &#039;skew&#039; properties)&lt;br /&gt;
* {{jira|SVC-4142}}: Giving out group tags - give out Assigned Roles and all Tags are given as Everyone yet they have the ability to go to Active Title and change it to the Assigned Role given&lt;br /&gt;
* Improvements to region crossing and neighbor issues&lt;br /&gt;
* Relaxed teleport [[limits|throttle]] threshold from 3/15s to 10/15s&lt;br /&gt;
* Misc crash fixes&lt;br /&gt;
* Added more group chat logging&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.127440 (2009-07-16) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Features and changes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* LSL HTTP-In &lt;br /&gt;
** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
* Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
* Improved login handling for SL blogs, SL wiki and PJIRA&lt;br /&gt;
* Remove &amp;quot;Save Object Back to My Inventory&amp;quot; features&lt;br /&gt;
* Throttle teleports to stop abusive bot and weapons activity&lt;br /&gt;
* Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
** Note: these changes will be enabled in stages after the full 1.27 deploy is complete&lt;br /&gt;
* Server-side support for baked texture upload capability&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fixes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Reverted group chat code back to a more stable version&lt;br /&gt;
* Fixed server error spam that caused client crash&lt;br /&gt;
* Fixed crash caused by invalid request data &lt;br /&gt;
* As an Estate Manager, having the debug option &#039;view admin options&#039; checked no longer prevents you from being able to manage the estate&lt;br /&gt;
* {{jira|SVC-3495}}: Peculiar behaviour in for loop compiled under mono&lt;br /&gt;
* {{jira|SVC-3760}}: Unicode behaviour of [[llToUpper]]() and [[llToLower]]() is inconsistent between the old LSL VM and Mono (and [[llToUpper]]() is broken on both)&lt;br /&gt;
* {{jira|SVC-3140}}: Crashed mono scripts consuming much time according to Top Scripts&lt;br /&gt;
* &amp;quot;Can&#039;t rez object&amp;quot; error displays original name of a renamed object&lt;br /&gt;
* {{jira|SVC-4153}}: Objects on group land are returned to creator instead of the owner&lt;br /&gt;
* {{jira|SVC-4436}}: Topscripts showing many duplicates&lt;br /&gt;
* {{jira|SVC-3146}}: Server is not sending enough data for texture discard levels&lt;br /&gt;
* Other misc improvements to server texture downloads&lt;br /&gt;
* {{JIRA|SVC-369}}: &#039;Sell objects with the Land&#039; option only transfers ownership of the root prims.&lt;br /&gt;
* {{JIRA|SVC-1390}}: [[llGetAgentInfo]] doesn&#039;t set [[AGENT_CROUCHING]] flag if [[AGENT_WALKING]] set&lt;br /&gt;
* {{JIRA|SVC-3837}}: Shift copying any copyable object you&#039;re NOT the creator of resets creation date.&lt;br /&gt;
* {{JIRA|VWR-6226}}: Moving the root prim, then undoing the move to that single prim, will return the prim to its previous location but also move the entire linked set the same distance X, Y or Z&lt;br /&gt;
* {{JIRA|VWR-9943}}: Camera rotation is jaggy (not smooth anymore)&lt;br /&gt;
* Avatar disappears in others&#039; viewers due to animation bug while holding down Page Down (or C) and pressing forward&lt;br /&gt;
* Script errors and warning are still appearing in local chat even&lt;br /&gt;
* Animation Request errors spam user causing client crash&lt;br /&gt;
* Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
* Many back end scalability fixes&lt;br /&gt;
* Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
* Refined simulator frame profiling logging&lt;br /&gt;
* Fix to sim crash in LLInterestList fixed &lt;br /&gt;
* Several internal fixes&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{jira|SVC-3120}}: {{LSLGC|Collision|Collision Events}} Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{jira|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{jira|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=442502</id>
		<title>Release Notes/Second Life Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=442502"/>
		<updated>2009-07-28T18:35:07Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: added release notes for 1.27.1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes]]&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
&lt;br /&gt;
== 1.27.1.128449 (2009-07-29) ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-4444}}: Objects become fully permissive when rezzed - with repro&lt;br /&gt;
* {{jira|SVC-4577}}: Search malfunction - Searching for places doesn&#039;t work - None found with random keywords&lt;br /&gt;
* {{jira|SVC-4457}}: Upload error-message right after login&lt;br /&gt;
* {{jira|SVC-4560}}: SimName in the PlacesReply message is now blank (in some cases?)&lt;br /&gt;
* {{jira|SVC-4565}}: Some prim types, like tube or ring, do not get the right data on each face, when the number of faces on that prim changes (after changing &#039;cut&#039; or &#039;skew&#039; properties)&lt;br /&gt;
* {{jira|SVC-4142}}: Giving out group tags - give out Assigned Roles and all Tags are given as Everyone yet they have the ability to go to Active Title and change it to the Assigned Role given&lt;br /&gt;
* Improvements to region crossing and neighbor issues&lt;br /&gt;
* Relaxed teleport throttle threshold from 3/15s to 10/15s&lt;br /&gt;
* Misc crash fixes&lt;br /&gt;
* Added more group chat logging&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.127440 (2009-07-16) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Features and changes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* LSL HTTP-In &lt;br /&gt;
** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
* Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
* Improved login handling for SL blogs, SL wiki and PJIRA&lt;br /&gt;
* Remove &amp;quot;Save Object Back to My Inventory&amp;quot; features&lt;br /&gt;
* Throttle teleports to stop abusive bot and weapons activity&lt;br /&gt;
* Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
** Note: these changes will be enabled in stages after the full 1.27 deploy is complete&lt;br /&gt;
* Server-side support for baked texture upload capability&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fixes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Reverted group chat code back to a more stable version&lt;br /&gt;
* Fixed server error spam that caused client crash&lt;br /&gt;
* Fixed crash caused by invalid request data &lt;br /&gt;
* As an Estate Manager, having the debug option &#039;view admin options&#039; checked no longer prevents you from being able to manage the estate&lt;br /&gt;
* {{jira|SVC-3495}}: Peculiar behaviour in for loop compiled under mono&lt;br /&gt;
* {{jira|SVC-3760}}: Unicode behaviour of [[llToUpper]]() and [[llToLower]]() is inconsistent between the old LSL VM and Mono (and [[llToUpper]]() is broken on both)&lt;br /&gt;
* {{jira|SVC-3140}}: Crashed mono scripts consuming much time according to Top Scripts&lt;br /&gt;
* &amp;quot;Can&#039;t rez object&amp;quot; error displays original name of a renamed object&lt;br /&gt;
* {{jira|SVC-4153}}: Objects on group land are returned to creator instead of the owner&lt;br /&gt;
* {{jira|SVC-4436}}: Topscripts showing many duplicates&lt;br /&gt;
* {{jira|SVC-3146}}: Server is not sending enough data for texture discard levels&lt;br /&gt;
* Other misc improvements to server texture downloads&lt;br /&gt;
* {{JIRA|SVC-369}}: &#039;Sell objects with the Land&#039; option only transfers ownership of the root prims.&lt;br /&gt;
* {{JIRA|SVC-1390}}: [[llGetAgentInfo]] doesn&#039;t set [[AGENT_CROUCHING]] flag if [[AGENT_WALKING]] set&lt;br /&gt;
* {{JIRA|SVC-3837}}: Shift copying any copyable object you&#039;re NOT the creator of resets creation date.&lt;br /&gt;
* {{JIRA|VWR-6226}}: Moving the root prim, then undoing the move to that single prim, will return the prim to its previous location but also move the entire linked set the same distance X, Y or Z&lt;br /&gt;
* {{JIRA|VWR-9943}}: Camera rotation is jaggy (not smooth anymore)&lt;br /&gt;
* Avatar disappears in others&#039; viewers due to animation bug while holding down Page Down (or C) and pressing forward&lt;br /&gt;
* Script errors and warning are still appearing in local chat even&lt;br /&gt;
* Animation Request errors spam user causing client crash&lt;br /&gt;
* Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
* Many back end scalability fixes&lt;br /&gt;
* Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
* Refined simulator frame profiling logging&lt;br /&gt;
* Fix to sim crash in LLInterestList fixed &lt;br /&gt;
* Several internal fixes&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{jira|SVC-3120}}: {{LSLGC|Collision|Collision Events}} Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{jira|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{jira|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=437493</id>
		<title>Release Notes/Second Life Beta Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=437493"/>
		<updated>2009-07-23T23:50:48Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: added notes for 1.27.1.128181&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes for Beta Versions]]&lt;br /&gt;
&lt;br /&gt;
== 1.27.1.128181 (2009-07-23) ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-4444}}: Objects become fully permissive when rezzed - with repro&lt;br /&gt;
* {{jira|SVC-4577}}: Search malfunction - Searching for places doesn&#039;t work - None found with random keywords (like &#039;land&#039; under residential what should give a billion hits)&lt;br /&gt;
* {{jira|SVC-4457}}: Upload error-message right after login&lt;br /&gt;
* Relaxed teleport throttle threshold from 3/15s to 10/15s&lt;br /&gt;
* Misc crash fixes&lt;br /&gt;
* Added more group chat logging&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.1.127795 (2009-07-20) ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-4560}}: SimName in the PlacesReply message is now blank (in some cases?)&lt;br /&gt;
* {{jira|SVC-4565}}: Some prim types, like tube or ring, do not get the right data on each face, when the number of faces on that prim changes (after changing &#039;cut&#039; or &#039;skew&#039; properties)&lt;br /&gt;
* {{jira|SVC-4142}}: Giving out group tags - give out Assigned Roles and all Tags are given as Everyone yet they have the ability to go to Active Title and change it to the Assigned Role given&lt;br /&gt;
* {{jira|SVC-4444}}: Objects become fully permissive when rezzed - with repro&lt;br /&gt;
* Improvements to region crossing and neighbor issues&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.127126 (2009-07-15) ==&lt;br /&gt;
&#039;&#039;&#039;Fixed:&#039;&#039;&#039;&lt;br /&gt;
* {{jira|SVC-4539}}: llSetText is not working with special characters.&lt;br /&gt;
* {{jira|SVC-4530}}: no object entry parcels failing in 1.27&lt;br /&gt;
* {{jira|SVC-4494}}: Timer with return breaks in Mono and fails to compile in LSL on Beta server 1.27&lt;br /&gt;
* {{jira|SVC-3495}}: Peculiar behaviour in for loop compiled under mono&lt;br /&gt;
* Fixed HTTP-in related crash&lt;br /&gt;
* Group chat improvements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125824 on 2009-06-30 ==&lt;br /&gt;
&lt;br /&gt;
* Fixed server error spam that caused client crash&lt;br /&gt;
* Fixed crash caused by invalid request data &lt;br /&gt;
* Several internal fixes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125429 on 2009-06-25 ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Feature changes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Remove &amp;quot;Save Object Back to My Inventory&amp;quot; features&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fixed&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Throttle teleports to stop abusive bot and weapons activity&lt;br /&gt;
* As an Estate Manager, having the debug option &#039;view admin options&#039; checked no longer prevents you from being able to manage the estate&lt;br /&gt;
* {{jira|SVC-3760}}: Unicode behaviour of [[llToUpper]]() and [[llToLower]]() is inconsistent between the old LSL VM and Mono (and [[llToUpper]]() is broken on both)&lt;br /&gt;
* {{jira|SVC-3140}}: Crashed mono scripts consuming much time according to Top Scripts&lt;br /&gt;
* &amp;quot;Can&#039;t rez object&amp;quot; error displays original name of a renamed object&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125251 on 2009-06-24 ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-4153}}: Objects on group land are returned to creater instead of the owner&lt;br /&gt;
* {{jira|SVC-4436}}: Topscripts showing many duplicates&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-3146}}: Server is not sending enough data for texture discard levels&lt;br /&gt;
* Other misc improvements to server texture downloads &lt;br /&gt;
&lt;br /&gt;
== 1.27.0.124190 on 2009-06-16 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-369}}: &#039;Sell objects with the Land&#039; option only transfers ownership of the root prims.&lt;br /&gt;
** {{JIRA|SVC-1390}}: [[llGetAgentInfo]] doesn&#039;t set [[AGENT_CROUCHING]] flag if [[AGENT_WALKING]] set&lt;br /&gt;
** {{JIRA|SVC-3837}}: Shift copying any copyable object you&#039;re NOT the creator of resets creation date.&lt;br /&gt;
** {{JIRA|VWR-6226}}: Moving the root prim, then undoing the move to that single prim, will return the prim to its previous location but also move the entire linked set the same distance X, Y or Z&lt;br /&gt;
** {{JIRA|VWR-9943}}: Camera rotation is jaggy (not smooth anymore)&lt;br /&gt;
** Avatar disappears in others&#039; viewers due to animation bug while holding down Page Down (or C) and pressing forward&lt;br /&gt;
** Script errors and warning are still appearing in local chat even&lt;br /&gt;
** Animation Request errors spam user causing client crash&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122984 on 2009-06-08 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-4234}}: Server 1.27 &amp;gt; [[llGetInventoryName]] returns null string&lt;br /&gt;
** Improved crash reporter&lt;br /&gt;
** Miscellaneous internal fixes&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122427 on 2009-06-02 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-3120}}: Collision Events Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{JIRA|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{JIRA|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
** Number of cpus the launcher uses for simulators is now configurable on a per class-of-machine basis &lt;br /&gt;
** Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
*** Note: these changes will be enabled in stages.&lt;br /&gt;
** Server-side support for baked texture upload capability&lt;br /&gt;
** Many back end scalability fixes&lt;br /&gt;
** Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
** Refined simulator frame profiling logging&lt;br /&gt;
** Fix to sim crash in LLInterestList fixed &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Features:&#039;&#039;&#039;&lt;br /&gt;
** LSL HTTP-In &lt;br /&gt;
*** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
*** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
** Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
** Improved login handling for SL blogs, SL wiki and PJIRA&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User_talk:Dante_Linden&amp;diff=435612</id>
		<title>User talk:Dante Linden</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User_talk:Dante_Linden&amp;diff=435612"/>
		<updated>2009-07-21T19:22:53Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: /* Protected */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Protected ==&lt;br /&gt;
&lt;br /&gt;
I noticed you protected the [[Release Notes/Second Life Server/1.27]], I think this overkill. We rarely get vandalism on the wiki and when we do it doesn&#039;t go unnoticed. I&#039;m pretty much the only one who does any edits to the Release Notes, I go through and add links and categories, mostly linking them into the rest of the wiki, creating new synapses as it were. For the LSL documentation it helps us keep track of bugs and when they are fixed; we can use the &amp;quot;What link here&amp;quot; page to see which release notes link back to the articles. By protecting the page it&#039;s akin to a little pocket of dead gray matter; or a little black hole, links go in but they don&#039;t come out. We can&#039;t predict what the future will bring, it might bring vandalism or it might bring a higher order of understanding and organization. I beg you please, unprotect the page. -- &#039;&#039;&#039;[[User:Strife_Onizuka|Strife]]&#039;&#039;&#039; &amp;lt;sup&amp;gt;&amp;lt;small&amp;gt;([[User talk:Strife_Onizuka|talk]]|[[Special:Contributions/Strife_Onizuka|contribs]])&amp;lt;/small&amp;gt;&amp;lt;/sup&amp;gt; 00:44, 15 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Agreed, for all reasons explained by Strife --[[User:Opensource Obscure|oobscure]] 10:16, 16 July 2009 (UTC)&lt;br /&gt;
::Unprotected.  I initially didn&#039;t have privileges to protect any pages and was using that page to test my new privileges.  I didn&#039;t realize others added to that page and agree that vandalism is easily caught. [[User:Dante Linden|Dante Linden]] 19:22, 21 July 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=435602</id>
		<title>Release Notes/Second Life Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=435602"/>
		<updated>2009-07-21T19:16:35Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: Unprotected &amp;quot;Release Notes/Second Life Server/1.27&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes]]&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.127440 (2009-07-16) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Features and changes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* LSL HTTP-In &lt;br /&gt;
** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
* Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
* Improved login handling for SL blogs, SL wiki and PJIRA&lt;br /&gt;
* Remove &amp;quot;Save Object Back to My Inventory&amp;quot; features&lt;br /&gt;
* Throttle teleports to stop abusive bot and weapons activity&lt;br /&gt;
* Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
** Note: these changes will be enabled in stages after the full 1.27 deploy is complete&lt;br /&gt;
* Server-side support for baked texture upload capability&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fixes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Reverted group chat code back to a more stable version&lt;br /&gt;
* Fixed server error spam that caused client crash&lt;br /&gt;
* Fixed crash caused by invalid request data &lt;br /&gt;
* As an Estate Manager, having the debug option &#039;view admin options&#039; checked no longer prevents you from being able to manage the estate&lt;br /&gt;
* {{jira|SVC-3495}}: Peculiar behaviour in for loop compiled under mono&lt;br /&gt;
* {{jira|SVC-3760}}: Unicode behaviour of [[llToUpper]]() and [[llToLower]]() is inconsistent between the old LSL VM and Mono (and [[llToUpper]]() is broken on both)&lt;br /&gt;
* {{jira|SVC-3140}}: Crashed mono scripts consuming much time according to Top Scripts&lt;br /&gt;
* &amp;quot;Can&#039;t rez object&amp;quot; error displays original name of a renamed object&lt;br /&gt;
* {{jira|SVC-4153}}: Objects on group land are returned to creator instead of the owner&lt;br /&gt;
* {{jira|SVC-4436}}: Topscripts showing many duplicates&lt;br /&gt;
* {{jira|SVC-3146}}: Server is not sending enough data for texture discard levels&lt;br /&gt;
* Other misc improvements to server texture downloads&lt;br /&gt;
* {{JIRA|SVC-369}}: &#039;Sell objects with the Land&#039; option only transfers ownership of the root prims.&lt;br /&gt;
* {{JIRA|SVC-1390}}: [[llGetAgentInfo]] doesn&#039;t set [[AGENT_CROUCHING]] flag if [[AGENT_WALKING]] set&lt;br /&gt;
* {{JIRA|SVC-3837}}: Shift copying any copyable object you&#039;re NOT the creator of resets creation date.&lt;br /&gt;
* {{JIRA|VWR-6226}}: Moving the root prim, then undoing the move to that single prim, will return the prim to its previous location but also move the entire linked set the same distance X, Y or Z&lt;br /&gt;
* {{JIRA|VWR-9943}}: Camera rotation is jaggy (not smooth anymore)&lt;br /&gt;
* Avatar disappears in others&#039; viewers due to animation bug while holding down Page Down (or C) and pressing forward&lt;br /&gt;
* Script errors and warning are still appearing in local chat even&lt;br /&gt;
* Animation Request errors spam user causing client crash&lt;br /&gt;
* Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
* Many back end scalability fixes&lt;br /&gt;
* Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
* Refined simulator frame profiling logging&lt;br /&gt;
* Fix to sim crash in LLInterestList fixed &lt;br /&gt;
* Several internal fixes&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{jira|SVC-3120}}: {{LSLGC|Collision|Collision Events}} Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{jira|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{jira|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=435592</id>
		<title>Release Notes/Second Life Beta Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=435592"/>
		<updated>2009-07-21T19:13:31Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: added notes for 1.27.1.127795&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes for Beta Versions]]&lt;br /&gt;
&lt;br /&gt;
== 1.27.1.127795 (2009-07-20) ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-4560}}: SimName in the PlacesReply message is now blank (in some cases?)&lt;br /&gt;
* {{jira|SVC-4565}}: Some prim types, like tube or ring, do not get the right data on each face, when the number of faces on that prim changes (after changing &#039;cut&#039; or &#039;skew&#039; properties)&lt;br /&gt;
* {{jira|SVC-4142}}: Giving out group tags - give out Assigned Roles and all Tags are given as Everyone yet they have the ability to go to Active Title and change it to the Assigned Role given&lt;br /&gt;
* {{jira|SVC-4444}}: Objects become fully permissive when rezzed - with repro&lt;br /&gt;
* Improvements to region crossing and neighbor issues&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.127126 (2009-07-15) ==&lt;br /&gt;
&#039;&#039;&#039;Fixed:&#039;&#039;&#039;&lt;br /&gt;
* {{jira|SVC-4539}}: llSetText is not working with special characters.&lt;br /&gt;
* {{jira|SVC-4530}}: no object entry parcels failing in 1.27&lt;br /&gt;
* {{jira|SVC-4494}}: Timer with return breaks in Mono and fails to compile in LSL on Beta server 1.27&lt;br /&gt;
* {{jira|SVC-3495}}: Peculiar behaviour in for loop compiled under mono&lt;br /&gt;
* Fixed HTTP-in related crash&lt;br /&gt;
* Group chat improvements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125824 on 2009-06-30 ==&lt;br /&gt;
&lt;br /&gt;
* Fixed server error spam that caused client crash&lt;br /&gt;
* Fixed crash caused by invalid request data &lt;br /&gt;
* Several internal fixes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125429 on 2009-06-25 ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Feature changes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Remove &amp;quot;Save Object Back to My Inventory&amp;quot; features&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fixed&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Throttle teleports to stop abusive bot and weapons activity&lt;br /&gt;
* As an Estate Manager, having the debug option &#039;view admin options&#039; checked no longer prevents you from being able to manage the estate&lt;br /&gt;
* {{jira|SVC-3760}}: Unicode behaviour of [[llToUpper]]() and [[llToLower]]() is inconsistent between the old LSL VM and Mono (and [[llToUpper]]() is broken on both)&lt;br /&gt;
* {{jira|SVC-3140}}: Crashed mono scripts consuming much time according to Top Scripts&lt;br /&gt;
* &amp;quot;Can&#039;t rez object&amp;quot; error displays original name of a renamed object&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125251 on 2009-06-24 ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-4153}}: Objects on group land are returned to creater instead of the owner&lt;br /&gt;
* {{jira|SVC-4436}}: Topscripts showing many duplicates&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-3146}}: Server is not sending enough data for texture discard levels&lt;br /&gt;
* Other misc improvements to server texture downloads &lt;br /&gt;
&lt;br /&gt;
== 1.27.0.124190 on 2009-06-16 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-369}}: &#039;Sell objects with the Land&#039; option only transfers ownership of the root prims.&lt;br /&gt;
** {{JIRA|SVC-1390}}: [[llGetAgentInfo]] doesn&#039;t set [[AGENT_CROUCHING]] flag if [[AGENT_WALKING]] set&lt;br /&gt;
** {{JIRA|SVC-3837}}: Shift copying any copyable object you&#039;re NOT the creator of resets creation date.&lt;br /&gt;
** {{JIRA|VWR-6226}}: Moving the root prim, then undoing the move to that single prim, will return the prim to its previous location but also move the entire linked set the same distance X, Y or Z&lt;br /&gt;
** {{JIRA|VWR-9943}}: Camera rotation is jaggy (not smooth anymore)&lt;br /&gt;
** Avatar disappears in others&#039; viewers due to animation bug while holding down Page Down (or C) and pressing forward&lt;br /&gt;
** Script errors and warning are still appearing in local chat even&lt;br /&gt;
** Animation Request errors spam user causing client crash&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122984 on 2009-06-08 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-4234}}: Server 1.27 &amp;gt; [[llGetInventoryName]] returns null string&lt;br /&gt;
** Improved crash reporter&lt;br /&gt;
** Miscellaneous internal fixes&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122427 on 2009-06-02 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-3120}}: Collision Events Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{JIRA|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{JIRA|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
** Number of cpus the launcher uses for simulators is now configurable on a per class-of-machine basis &lt;br /&gt;
** Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
*** Note: these changes will be enabled in stages.&lt;br /&gt;
** Server-side support for baked texture upload capability&lt;br /&gt;
** Many back end scalability fixes&lt;br /&gt;
** Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
** Refined simulator frame profiling logging&lt;br /&gt;
** Fix to sim crash in LLInterestList fixed &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Features:&#039;&#039;&#039;&lt;br /&gt;
** LSL HTTP-In &lt;br /&gt;
*** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
*** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
** Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
** Improved login handling for SL blogs, SL wiki and PJIRA&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=431883</id>
		<title>Release Notes/Second Life Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=431883"/>
		<updated>2009-07-14T16:37:47Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: Protected &amp;quot;Release Notes/Second Life Server/1.27&amp;quot; ([edit=sysop] (indefinite) [move=sysop] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes]]&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
&lt;br /&gt;
== 1.27.0 (2009-07-08) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Features and changes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* LSL HTTP-In &lt;br /&gt;
** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
* Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
* Improved login handling for SL blogs, SL wiki and PJIRA&lt;br /&gt;
* Remove &amp;quot;Save Object Back to My Inventory&amp;quot; features&lt;br /&gt;
* Throttle teleports to stop abusive bot and weapons activity&lt;br /&gt;
* Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
** Note: these changes will be enabled in stages after the full 1.27 deploy is complete&lt;br /&gt;
* Server-side support for baked texture upload capability&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fixes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Reverted group chat code back to a more stable version&lt;br /&gt;
* Fixed server error spam that caused client crash&lt;br /&gt;
* Fixed crash caused by invalid request data &lt;br /&gt;
* As an Estate Manager, having the debug option &#039;view admin options&#039; checked no longer prevents you from being able to manage the estate&lt;br /&gt;
* {{jira|SVC-3760}}: Unicode behaviour of [[llToUpper]]() and [[llToLower]]() is inconsistent between the old LSL VM and Mono (and [[llToUpper]]() is broken on both)&lt;br /&gt;
* {{jira|SVC-3140}}: Crashed mono scripts consuming much time according to Top Scripts&lt;br /&gt;
* &amp;quot;Can&#039;t rez object&amp;quot; error displays original name of a renamed object&lt;br /&gt;
* {{jira|SVC-4153}}: Objects on group land are returned to creator instead of the owner&lt;br /&gt;
* {{jira|SVC-4436}}: Topscripts showing many duplicates&lt;br /&gt;
* {{jira|SVC-3146}}: Server is not sending enough data for texture discard levels&lt;br /&gt;
* Other misc improvements to server texture downloads&lt;br /&gt;
* {{JIRA|SVC-369}}: &#039;Sell objects with the Land&#039; option only transfers ownership of the root prims.&lt;br /&gt;
* {{JIRA|SVC-1390}}: [[llGetAgentInfo]] doesn&#039;t set [[AGENT_CROUCHING]] flag if [[AGENT_WALKING]] set&lt;br /&gt;
* {{JIRA|SVC-3837}}: Shift copying any copyable object you&#039;re NOT the creator of resets creation date.&lt;br /&gt;
* {{JIRA|VWR-6226}}: Moving the root prim, then undoing the move to that single prim, will return the prim to its previous location but also move the entire linked set the same distance X, Y or Z&lt;br /&gt;
* {{JIRA|VWR-9943}}: Camera rotation is jaggy (not smooth anymore)&lt;br /&gt;
* Avatar disappears in others&#039; viewers due to animation bug while holding down Page Down (or C) and pressing forward&lt;br /&gt;
* Script errors and warning are still appearing in local chat even&lt;br /&gt;
* Animation Request errors spam user causing client crash&lt;br /&gt;
* Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
* Many back end scalability fixes&lt;br /&gt;
* Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
* Refined simulator frame profiling logging&lt;br /&gt;
* Fix to sim crash in LLInterestList fixed &lt;br /&gt;
* Several internal fixes&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{jira|SVC-3120}}: {{LSLGC|Collision|Collision Events}} Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{jira|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{jira|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=427373</id>
		<title>Release Notes/Second Life Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Server/1.27&amp;diff=427373"/>
		<updated>2009-07-09T06:02:04Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: Created page with &amp;#039;Category:Release Notes {{TOCright}}  == 1.27.0 (2009-07-08) ==  &amp;#039;&amp;#039;&amp;#039;Features and changes&amp;#039;&amp;#039;&amp;#039;:  * LSL HTTP-In  ** Allows prims to become mini web-servers. Objects acquire a url,...&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes]]&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
&lt;br /&gt;
== 1.27.0 (2009-07-08) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Features and changes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* LSL HTTP-In &lt;br /&gt;
** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
* Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
* Improved login handling for SL blogs, SL wiki and PJIRA&lt;br /&gt;
* Remove &amp;quot;Save Object Back to My Inventory&amp;quot; features&lt;br /&gt;
* Throttle teleports to stop abusive bot and weapons activity&lt;br /&gt;
* Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
** Note: these changes will be enabled in stages after the full 1.27 deploy is complete&lt;br /&gt;
* Server-side support for baked texture upload capability&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fixes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Reverted group chat code back to a more stable version&lt;br /&gt;
* Fixed server error spam that caused client crash&lt;br /&gt;
* Fixed crash caused by invalid request data &lt;br /&gt;
* As an Estate Manager, having the debug option &#039;view admin options&#039; checked no longer prevents you from being able to manage the estate&lt;br /&gt;
* {{jira|SVC-3760}}: Unicode behaviour of llToUpper() and llToLower() is inconsistent between the old LSL VM and Mono (and llToUpper() is broken on both)&lt;br /&gt;
* {{jira|SVC-3140}}: Crashed mono scripts consuming much time according to Top Scripts&lt;br /&gt;
* &amp;quot;Can&#039;t rez object&amp;quot; error displays original name of a renamed object&lt;br /&gt;
* {{jira|SVC-4153}}: Objects on group land are returned to creator instead of the owner&lt;br /&gt;
* {{jira|SVC-4436}}: Topscripts showing many duplicates&lt;br /&gt;
* {{jira|SVC-3146}}: Server is not sending enough data for texture discard levels&lt;br /&gt;
* Other misc improvements to server texture downloads&lt;br /&gt;
* {{JIRA|SVC-369}}: &#039;Sell objects with the Land&#039; option only transfers ownership of the root prims.&lt;br /&gt;
* {{JIRA|SVC-1390}}: llGetAgentInfo doesn&#039;t set AGENT_CROUCHING flag if AGENT_WALKING set&lt;br /&gt;
* {{JIRA|SVC-3837}}: Shift copying any copyable object you&#039;re NOT the creator of resets creation date.&lt;br /&gt;
* {{JIRA|VWR-6226}}: Moving the root prim, then undoing the move to that single prim, will return the prim to its previous location but also move the entire linked set the same distance X, Y or Z&lt;br /&gt;
* {{JIRA|VWR-9943}}: Camera rotation is jaggy (not smooth anymore)&lt;br /&gt;
* Avatar disappears in others&#039; viewers due to animation bug while holding down Page Down (or C) and pressing forward&lt;br /&gt;
* Script errors and warning are still appearing in local chat even&lt;br /&gt;
* Animation Request errors spam user causing client crash&lt;br /&gt;
* Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
* Many back end scalability fixes&lt;br /&gt;
* Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
* Refined simulator frame profiling logging&lt;br /&gt;
* Fix to sim crash in LLInterestList fixed &lt;br /&gt;
* Several internal fixes&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{jira&amp;gt;SVC-3120}}: Collision Events Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{jira|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{jira|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=419953</id>
		<title>Release Notes/Second Life Beta Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=419953"/>
		<updated>2009-07-01T22:57:15Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes for Beta Versions]]&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125824 on 2009-06-30 ==&lt;br /&gt;
&lt;br /&gt;
* Fixed server error spam that caused client crash&lt;br /&gt;
* Fixed crash caused by invalid request data &lt;br /&gt;
* Several internal fixes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125429 on 2009-06-25 ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Feature changes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Remove &amp;quot;Save Object Back to My Inventory&amp;quot; features&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fixed&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Throttle teleports to stop abusive bot and weapons activity&lt;br /&gt;
* As an Estate Manager, having the debug option &#039;view admin options&#039; checked no longer prevents you from being able to manage the estate&lt;br /&gt;
* {{jira|SVC-3760}}: Unicode behaviour of llToUpper() and llToLower() is inconsistent between the old LSL VM and Mono (and llToUpper() is broken on both)&lt;br /&gt;
* {{jira|SVC-3140}}: Crashed mono scripts consuming much time according to Top Scripts&lt;br /&gt;
* &amp;quot;Can&#039;t rez object&amp;quot; error displays original name of a renamed object&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125251 on 2009-06-24 ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-4153}}: Objects on group land are returned to creater instead of the owner&lt;br /&gt;
* {{jira|SVC-4436}}: Topscripts showing many duplicates&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-3146}}: Server is not sending enough data for texture discard levels&lt;br /&gt;
* Other misc improvements to server texture downloads &lt;br /&gt;
&lt;br /&gt;
== 1.27.0.124190 on 2009-06-16 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-369}}: &#039;Sell objects with the Land&#039; option only transfers ownership of the root prims.&lt;br /&gt;
** {{JIRA|SVC-1390}}: llGetAgentInfo doesn&#039;t set AGENT_CROUCHING flag if AGENT_WALKING set&lt;br /&gt;
** {{JIRA|SVC-3837}}: Shift copying any copyable object you&#039;re NOT the creator of resets creation date.&lt;br /&gt;
** {{JIRA|VWR-6226}}: Moving the root prim, then undoing the move to that single prim, will return the prim to its previous location but also move the entire linked set the same distance X, Y or Z&lt;br /&gt;
** {{JIRA|VWR-9943}}: Camera rotation is jaggy (not smooth anymore)&lt;br /&gt;
** Avatar disappears in others&#039; viewers due to animation bug while holding down Page Down (or C) and pressing forward&lt;br /&gt;
** Script errors and warning are still appearing in local chat even&lt;br /&gt;
** Animation Request errors spam user causing client crash&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122984 on 2009-06-08 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-4234}}: Server 1.27 &amp;gt; llGetInventoryName returns null string&lt;br /&gt;
** Improved crash reporter&lt;br /&gt;
** Miscellaneous internal fixes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122427 on 2009-06-02 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-3120}}: Collision Events Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{JIRA|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{JIRA|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
** Number of cpus the launcher uses for simulators is now configurable on a per class-of-machine basis &lt;br /&gt;
** Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
*** Note: these changes will be enabled in stages.&lt;br /&gt;
** Server-side support for baked texture upload capability&lt;br /&gt;
** Many back end scalability fixes&lt;br /&gt;
** Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
** Refined simulator frame profiling logging&lt;br /&gt;
** Fix to sim crash in LLInterestList fixed &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Features:&#039;&#039;&#039;&lt;br /&gt;
** LSL HTTP-In &lt;br /&gt;
*** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
*** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
** Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
** Improved login handling for SL blogs, SL wiki and PJIRA&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=409983</id>
		<title>Release Notes/Second Life Beta Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=409983"/>
		<updated>2009-06-25T22:35:04Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes for Beta Versions]]&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125429 on 2009-06-25 ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Feature changes&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Remove &amp;quot;Save Object Back to My Inventory&amp;quot; features&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fixed&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Throttle teleports to stop abusive bot and weapons activity&lt;br /&gt;
* As an Estate Manager, having the debug option &#039;view admin options&#039; checked no longer prevents you from being able to manage the estate&lt;br /&gt;
* {{jira|SVC-3760}}: Unicode behaviour of llToUpper() and llToLower() is inconsistent between the old LSL VM and Mono (and llToUpper() is broken on both)&lt;br /&gt;
* {{jira|SVC-3140}}: Crashed mono scripts consuming much time according to Top Scripts&lt;br /&gt;
* &amp;quot;Can&#039;t rez object&amp;quot; error displays original name of a renamed object&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125251 on 2009-06-24 ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-4153}}: Objects on group land are returned to creater instead of the owner&lt;br /&gt;
* {{jira|SVC-4436}}: Topscripts showing many duplicates&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-3146}}: Server is not sending enough data for texture discard levels&lt;br /&gt;
* Other misc improvements to server texture downloads &lt;br /&gt;
&lt;br /&gt;
== 1.27.0.124190 on 2009-06-16 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-369}}: &#039;Sell objects with the Land&#039; option only transfers ownership of the root prims.&lt;br /&gt;
** {{JIRA|SVC-1390}}: llGetAgentInfo doesn&#039;t set AGENT_CROUCHING flag if AGENT_WALKING set&lt;br /&gt;
** {{JIRA|SVC-3837}}: Shift copying any copyable object you&#039;re NOT the creator of resets creation date.&lt;br /&gt;
** {{JIRA|VWR-6226}}: Moving the root prim, then undoing the move to that single prim, will return the prim to its previous location but also move the entire linked set the same distance X, Y or Z&lt;br /&gt;
** {{JIRA|VWR-9943}}: Camera rotation is jaggy (not smooth anymore)&lt;br /&gt;
** Avatar disappears in others&#039; viewers due to animation bug while holding down Page Down (or C) and pressing forward&lt;br /&gt;
** Script errors and warning are still appearing in local chat even&lt;br /&gt;
** Animation Request errors spam user causing client crash&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122984 on 2009-06-08 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-4234}}: Server 1.27 &amp;gt; llGetInventoryName returns null string&lt;br /&gt;
** Improved crash reporter&lt;br /&gt;
** Miscellaneous internal fixes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122427 on 2009-06-02 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-3120}}: Collision Events Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{JIRA|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{JIRA|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
** Number of cpus the launcher uses for simulators is now configurable on a per class-of-machine basis &lt;br /&gt;
** Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
*** Note: these changes will be enabled in stages.&lt;br /&gt;
** Server-side support for baked texture upload capability&lt;br /&gt;
** Many back end scalability fixes&lt;br /&gt;
** Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
** Refined simulator frame profiling logging&lt;br /&gt;
** Fix to sim crash in LLInterestList fixed &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Features:&#039;&#039;&#039;&lt;br /&gt;
** LSL HTTP-In &lt;br /&gt;
*** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
*** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
** Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
** Improved login handling for SL blogs, SL wiki and PJIRA&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=405253</id>
		<title>Release Notes/Second Life Beta Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=405253"/>
		<updated>2009-06-24T23:18:44Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: added release notes for 1.27.0.125251&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes for Beta Versions]]&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.125251 (2009-06-24) ==&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-4153}}: Objects on group land are returned to creater instead of the owner&lt;br /&gt;
* {{jira|SVC-4436}}: Topscripts showing many duplicates&lt;br /&gt;
&lt;br /&gt;
* {{jira|SVC-3146}}: Server is not sending enough data for texture discard levels&lt;br /&gt;
* Other misc improvements to server texture downloads &lt;br /&gt;
&lt;br /&gt;
== 1.27.0.124190 on 2009-06-16 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-369}}: &#039;Sell objects with the Land&#039; option only transfers ownership of the root prims.&lt;br /&gt;
** {{JIRA|SVC-1390}}: llGetAgentInfo doesn&#039;t set AGENT_CROUCHING flag if AGENT_WALKING set&lt;br /&gt;
** {{JIRA|SVC-3837}}: Shift copying any copyable object you&#039;re NOT the creator of resets creation date.&lt;br /&gt;
** {{JIRA|VWR-6226}}: Moving the root prim, then undoing the move to that single prim, will return the prim to its previous location but also move the entire linked set the same distance X, Y or Z&lt;br /&gt;
** {{JIRA|VWR-9943}}: Camera rotation is jaggy (not smooth anymore)&lt;br /&gt;
** Avatar disappears in others&#039; viewers due to animation bug while holding down Page Down (or C) and pressing forward&lt;br /&gt;
** Script errors and warning are still appearing in local chat even&lt;br /&gt;
** Animation Request errors spam user causing client crash&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122984 on 2009-06-08 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-4234}}: Server 1.27 &amp;gt; llGetInventoryName returns null string&lt;br /&gt;
** Improved crash reporter&lt;br /&gt;
** Miscellaneous internal fixes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122427 on 2009-06-02 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-3120}}: Collision Events Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{JIRA|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{JIRA|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
** Number of cpus the launcher uses for simulators is now configurable on a per class-of-machine basis &lt;br /&gt;
** Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
*** Note: these changes will be enabled in stages.&lt;br /&gt;
** Server-side support for baked texture upload capability&lt;br /&gt;
** Many back end scalability fixes&lt;br /&gt;
** Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
** Refined simulator frame profiling logging&lt;br /&gt;
** Fix to sim crash in LLInterestList fixed &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Features:&#039;&#039;&#039;&lt;br /&gt;
** LSL HTTP-In &lt;br /&gt;
*** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
*** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
** Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
** Improved login handling for SL blogs, SL wiki and PJIRA&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=386223</id>
		<title>Release Notes/Second Life Beta Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=386223"/>
		<updated>2009-06-09T00:24:54Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes for Beta Versions]]&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122984 on 2009-06-08 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-4234}}: Server 1.27 &amp;gt; llGetInventoryName returns null string&lt;br /&gt;
** Improved crash reporter&lt;br /&gt;
** Miscellaneous internal fixes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122427 on 2009-06-02 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-3120}}: Collision Events Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{JIRA|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{JIRA|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
** Number of cpus the launcher uses for simulators is now configurable on a per class-of-machine basis &lt;br /&gt;
** Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
*** Note: these changes will be enabled in stages.&lt;br /&gt;
** Server-side support for baked texture upload capability&lt;br /&gt;
** Many back end scalability fixes&lt;br /&gt;
** Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
** Refined simulator frame profiling logging&lt;br /&gt;
** Fix to sim crash in LLInterestList fixed &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Features:&#039;&#039;&#039;&lt;br /&gt;
** LSL HTTP-In &lt;br /&gt;
*** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
*** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
** Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
** Improved login handling for SL blogs, SL wiki and PJIRA&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=386193</id>
		<title>Release Notes/Second Life Beta Server/1.27</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Release_Notes/Second_Life_Beta_Server/1.27&amp;diff=386193"/>
		<updated>2009-06-09T00:00:55Z</updated>

		<summary type="html">&lt;p&gt;Dante Linden: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Release Notes for Beta Versions]]&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122984 on 2009-06-08 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** Improved crash reporter&lt;br /&gt;
** Miscellaneous internal fixes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.27.0.122427 on 2009-06-02 ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Maintenance fixes to script engine: &#039;&#039;&#039;&lt;br /&gt;
** {{JIRA|SVC-3120}}: Collision Events Do Not Trigger (Blocked) with Avatar sitting on physical prim&lt;br /&gt;
** Fix to sim crashing script &lt;br /&gt;
** {{JIRA|SVC-3328}}: mono script : bad calculated   100*0.9 ==&amp;gt; 89 !&lt;br /&gt;
** {{JIRA|SVC-3400}}: Conditional key testing performs differently under Mono &lt;br /&gt;
** Fix to NullReference exception caused by stop starting scripts near reset and state change&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Changes and Fixes:&#039;&#039;&#039;&lt;br /&gt;
** Reduced the amount of time it takes the back end system to calculate parcel dwell&lt;br /&gt;
** Number of cpus the launcher uses for simulators is now configurable on a per class-of-machine basis &lt;br /&gt;
** Changes to inventory APIs and back end to improve reliability and performance&lt;br /&gt;
*** Note: these changes will be enabled in stages.&lt;br /&gt;
** Server-side support for baked texture upload capability&lt;br /&gt;
** Many back end scalability fixes&lt;br /&gt;
** Abandoned land description updated with message indicating the previous owner&lt;br /&gt;
** Refined simulator frame profiling logging&lt;br /&gt;
** Fix to sim crash in LLInterestList fixed &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Features:&#039;&#039;&#039;&lt;br /&gt;
** LSL HTTP-In &lt;br /&gt;
*** Allows prims to become mini web-servers. Objects acquire a url, and then process http requests for that url. &lt;br /&gt;
*** For details, see: http://wiki.secondlife.com/wiki/LSL_http_server&lt;br /&gt;
** Texture attribution including upload date, name of Resident uploading, and width and height if available &lt;br /&gt;
** Improved login handling for SL blogs, SL wiki and PJIRA&lt;/div&gt;</summary>
		<author><name>Dante Linden</name></author>
	</entry>
</feed>