Push All Scripts

This commit is contained in:
Fred Beckhusen
2015-08-07 10:38:47 -05:00
parent 2ad9795428
commit ce47ec2f3e
8079 changed files with 2442776 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<Project name="DHTML__Javascript__bootstrapping" guid="D859B22B-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D859B321-6C00-1014-B904-200204C60A89">
<Script name="DHTML__Javascript__bootstrapping_1.lsl" guid="D859D556-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,83 @@
// :CATEGORY:Viewer 2
// :NAME:DHTML__Javascript__bootstrapping
// :AUTHOR:Tali Rosca
// :CREATED:2010-09-02 11:02:40.067
// :EDITED:2013-09-18 15:38:51
// :ID:230
// :NUM:316
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Tali Rosca made this code to render the output of HTTP-In directly. Kelly Linden wrapped her magic into the build_url and build_response functions in the example below. This example renders a page that is around 3.5k bytes - well past the 1k limit of urls.
// Pros:
//
// * Navigation is much smoother and feels more natural
// * Only limited by script memory
//
// Cons:
//
// * Links are extremely large: 296 bytes for a link to just the base http-in url.
// :CODE:
string url; // Our base http-in url
integer r; // Used for uniqueness in PrimMedia urls
integer page; // The page number.
show(string html)
{
html += "<span " + (string)((++r) % 10) + "/>";
llSetPrimMediaParams(0, // Side to display the media on.
[PRIM_MEDIA_AUTO_PLAY,TRUE, // Show this page immediately
PRIM_MEDIA_CURRENT_URL,html, // The url if they hit 'home'
PRIM_MEDIA_HOME_URL,html, // The url currently showing
PRIM_MEDIA_HEIGHT_PIXELS,512, // Height/width of media texture will be
PRIM_MEDIA_WIDTH_PIXELS,512]); // rounded up to nearest power of 2.
}
// This creates a data: url that will render the output of the http-in url
// given.
string build_url(string url)
{
return "data:text/html,"
+ llEscapeURL("<html><head><script src='" + url
+ "' type='text/javascript'></script></head><body onload='init()'></body></html>");
}
// This wraps the html you want to display so that it will be shown from links
// made with build_url
string build_response(string body)
{
return "function init() {document.getElementsByTagName('body')[0].innerHTML='" + body + "';}";
}