<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ShinyLight Development &#187; JavaScript</title>
	<atom:link href="http://www.shinylight.com/category/languages/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shinylight.com</link>
	<description>Web Development and Other Goodness in the World of a Software Engineer.</description>
	<lastBuildDate>Mon, 09 Jan 2012 00:18:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Quick Simple Way to Show/Hide with a Checkbox using jQuery</title>
		<link>http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/</link>
		<comments>http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 23:52:49 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.shinylight.com/?p=918</guid>
		<description><![CDATA[Here&#8217;s a quick and simple way to do this. I often have to show and hide set of panels based on whether something is checked or not. jQuery code is pretty straightforward and it comes in handy.

$&#40; function&#40;&#41; &#123;    
&#160;
  function toggleCheckbox&#40; trigger, hidethese &#41;
  &#123;
    if [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick and simple way to do this. I often have to show and hide set of panels based on whether something is checked or not. jQuery code is pretty straightforward and it comes in handy.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>    
&nbsp;
  <span style="color: #003366; font-weight: bold;">function</span> toggleCheckbox<span style="color: #009900;">&#40;</span> trigger<span style="color: #339933;">,</span> hidethese <span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span> $<span style="color: #009900;">&#40;</span> trigger <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;checked&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
      $<span style="color: #009900;">&#40;</span> hidethese <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hide</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000066; font-weight: bold;">else</span>
    <span style="color: #009900;">&#123;</span>
      $<span style="color: #009900;">&#40;</span> hidethese <span style="color: #009900;">&#41;</span>.<span style="color: #660066;">show</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #006600; font-style: italic;">// jQuery object that has your checkbox</span>
  <span style="color: #003366; font-weight: bold;">var</span> triggerCheckbox <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">&quot;#showPreonDescription&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #006600; font-style: italic;">// jQuery object for collection of elements you want to hide</span>
  <span style="color: #006600; font-style: italic;">// For this example, I could've also just done #panel by itself</span>
  <span style="color: #006600; font-style: italic;">// to hide everything</span>
  <span style="color: #003366; font-weight: bold;">var</span> panelsToHide <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#subpanel,#maincontent,#nav&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  
&nbsp;
  <span style="color: #006600; font-style: italic;">// Call the function on click.</span>
  triggerCheckbox.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span>
    <span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
      toggleCheckbox<span style="color: #009900;">&#40;</span> triggerCheckbox<span style="color: #339933;">,</span> panelsToHide <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>I have <a href="/wp-content/uploads/2010/03/test.html">the demo</a> if you want the source as well. </p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em></em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/&amp;submitHeadline=Quick+Simple+Way+to+Show%2FHide+with+a+Checkbox+using+jQuery&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/&amp;title=Quick+Simple+Way+to+Show%2FHide+with+a+Checkbox+using+jQuery" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/&amp;title=Quick+Simple+Way+to+Show%2FHide+with+a+Checkbox+using+jQuery" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/&amp;title=Quick+Simple+Way+to+Show%2FHide+with+a+Checkbox+using+jQuery" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/&amp;bm_description=Quick+Simple+Way+to+Show%2FHide+with+a+Checkbox+using+jQuery" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/&amp;T=Quick+Simple+Way+to+Show%2FHide+with+a+Checkbox+using+jQuery" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/&amp;title=Quick+Simple+Way+to+Show%2FHide+with+a+Checkbox+using+jQuery" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/&amp;title=Quick+Simple+Way+to+Show%2FHide+with+a+Checkbox+using+jQuery" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Quick+Simple+Way+to+Show%2FHide+with+a+Checkbox+using+jQuery+@+http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/&amp;t=Quick+Simple+Way+to+Show%2FHide+with+a+Checkbox+using+jQuery" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.shinylight.com/2010/04/03/quick-simple-way-to-showhide-with-a-checkbox-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High Performance Websites</title>
		<link>http://www.shinylight.com/2010/01/11/high-performance-websites/</link>
		<comments>http://www.shinylight.com/2010/01/11/high-performance-websites/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 01:48:43 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.shinylight.com/?p=659</guid>
		<description><![CDATA[ This was a great read. Certainly learned a lot of useful lessons on front-end optimizations. Written by Steve Souders (previously lead Optimization efforts at Yahoo!), who also developed YSlow! &#8211; a Firefox add-on (actually an add-on to the Firefox add-on called Firebug) that gives your web pages a grade from A through F and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="High Performance Web Sites" src="http://covers.oreilly.com/images/9780596529307/cat.gif" alt="" width="180" height="236" /> This was a great read. Certainly learned a lot of useful lessons on front-end optimizations. <strong>Written by Steve Souders </strong>(previously lead Optimization efforts at Yahoo!), who also developed YSlow! &#8211; a Firefox add-on (actually an add-on to the Firefox add-on called Firebug) that gives your web pages a grade from A through F and tells you how to make it better.</p>
<p>If you have a build script, you may be able to automate a lot of these things, like combining JS and CSS files, and optimize PNG files (check out <a href="http://www.phpied.com/give-png-a-chance/" target="_blank">http://www.phpied.com/give-png-a-chance/</a> to see how to optimize from the command line). If you&#8217;re going to optimize JavaScript, I would recommend YUI Compressor (<a href="http://developer.yahoo.com/yui/compressor/" target="_blank">http://developer.yahoo.com/yui/compressor/</a>) since it&#8217;s not as greedy as Google&#8217;s Closure Compiler for JavaScript. The Closure compiler (<a href="http://code.google.com/closure/compiler/" target="_blank">http://code.google.com/closure/compiler/</a>) is relatively new and you may get even smaller files, but if your JavaScript is complex, it may have bugs because it&#8217;s a greedy compiler.</p>
<p>Anywhoot, here&#8217;s what I got from it:</p>
<ol>
<li>Reduce as many HTTP requests as possible.</li>
<li>Minify JavaScript (don&#8217;t obfuscate, because it&#8217;s more trouble than it&#8217;s worth for the benefits you get)</li>
<li>Minify CSS and optimize it (reduce duplication).</li>
<li>Future-expire resources for caching (PNG, JPG, GIF, JavaScript and CSS).</li>
<li>Minify HTML (get away from tables)</li>
<li>Put CSS at the top, put JavaScript at the bottom.</li>
<li>For design components (background images, button images, nav images), use CSS sprites.</li>
<li>Use PNG for design components (they compress better than GIF, have partial transparency, and can have greater color palettes).</li>
<li>Gzip non-binary data like HTML.</li>
<li>Combine CSS and JavaScript into single files to reduce HTTP requests.</li>
</ol>
<p>A summary of his optimization rules are found here, but of course, it&#8217;s not as detailed as the book: <a href="http://stevesouders.com/hpws/rules.php">http://stevesouders.com/hpws/rules.php</a> .</p>
<p>Stoyan Stefanov, another prominent developer who&#8217;s written tons on JavaScript and optimization, published 24 articles this month on optimization. I find these articles invaluable. It&#8217;s recent and he does actual optimization tests and tells you what tools he uses. Here&#8217;s the site: <a href="http://www.phpied.com/performance-advent-calendar-2009/" target="_blank">http://www.phpied.com/performance-advent-calendar-2009/</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em></em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.shinylight.com/2010/01/11/high-performance-websites/&amp;submitHeadline=High+Performance+Websites&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.shinylight.com/2010/01/11/high-performance-websites/&amp;title=High+Performance+Websites" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.shinylight.com/2010/01/11/high-performance-websites/&amp;title=High+Performance+Websites" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.shinylight.com/2010/01/11/high-performance-websites/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.shinylight.com/2010/01/11/high-performance-websites/&amp;title=High+Performance+Websites" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.shinylight.com/2010/01/11/high-performance-websites/&amp;bm_description=High+Performance+Websites" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.shinylight.com/2010/01/11/high-performance-websites/&amp;T=High+Performance+Websites" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.shinylight.com/2010/01/11/high-performance-websites/&amp;title=High+Performance+Websites" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.shinylight.com/2010/01/11/high-performance-websites/&amp;title=High+Performance+Websites" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.shinylight.com/2010/01/11/high-performance-websites/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.shinylight.com/2010/01/11/high-performance-websites/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+High+Performance+Websites+@+http://www.shinylight.com/2010/01/11/high-performance-websites/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.shinylight.com/2010/01/11/high-performance-websites/&amp;t=High+Performance+Websites" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.shinylight.com/2010/01/11/high-performance-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asynchronous Upload to Amazon S3 (S3)</title>
		<link>http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/</link>
		<comments>http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 23:25:50 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.shinylight.com/?p=1115</guid>
		<description><![CDATA[Requirements
Make sure you have an Amazon S3 Account (get it from tech). JavaScript is mandatory for this to work (to be able to POST to two different domains) upon user submission.
Summary of Problem
This is a summary outlining the solution used in a video uploader. It entailed a form that would leverage the user of our [...]]]></description>
			<content:encoded><![CDATA[<h3>Requirements</h3>
<p>Make sure you have an Amazon S3 Account (get it from tech). JavaScript is mandatory for this to work (to be able to POST to two different domains) upon user submission.</p>
<h3>Summary of Problem</h3>
<p>This is a summary outlining the solution used in a video uploader. It entailed a form that would leverage the user of our Amazon S3 (S3) account. In addition, because the video files could be large (and to avoid CF limitations), a critical requirement was to upload to that page S3 directly. At the same time, the form field information had to be saved to our database. This meant doing a double post – one to the XYZ domain, and the other to s3.amazon.com. This cross-domain POST could only be done via AJAX.</p>
<p>Here’s visualization:</p>
<p style="text-align: center;"><img class="size-full wp-image-1117 aligncenter" title="image001" src="http://www.shinylight.com/wp-content/uploads/2011/07/image0011-e1312062873641.png" alt="" width="500" height="268" /></p>
<p>As you can see, once the user clicks “Submit”, there’s an AJAX HTTP POST to XZY server to save the fields to the database, and then the JavaScript runs a form.submit() on the current form to submit the file via POST to S3.</p>
<h3>Introducing Amazon S3</h3>
<p>Amazon S3 (Simple Storage Service) is a cloud service whose sole purpose is to store files. To store files into it, one can use its REST API or Admin Web Console (AWS).</p>
<p style="text-align: center;"><img class="size-full wp-image-1119 aligncenter" title="image002" src="http://www.shinylight.com/wp-content/uploads/2011/07/image002-e1312063033864.png" alt="" width="550" height="320" /></p>
<p>Screenshot of the AWS console, with Amazon S3 tab selected.</p>
<p>One gets to the AWS console via an account (can get it from tech) and going to <a href="http://aws.amazon.com/s3/">http://aws.amazon.com/s3/</a> and clicking “Sign in.”</p>
<p>While S3 has many advantages, there are a set of drawbacks as well. To summarize, here’s a list:</p>
<p><strong>Benefits:</strong></p>
<ul>
<li>The max upload size for a file is 5GB. Plenty.</li>
<li>For all the times I’ve tested, uploads of different file sizes, everything has gone super smoothly – like butter – so definitely reliable.</li>
<li>Amazon is super scalable (as you may already know), so parallel uploading from one or many users is really no problem.</li>
<li>Would not affect performance of our servers &#8211; there could be many uploads, and they would go fast, without slowing down any other web sites on servers.</li>
<li>The speed of the upload is limited to the user’s computer’s specs and internet provider – much faster than our servers.</li>
<li>Files can be made secure and unreadable, not just through obscurity – this is sometimes tricky to implement in ColdFusion.</li>
</ul>
<p><strong>Drawbacks:</strong></p>
<p>To summarize, the reason for some of the drawbacks, is because it’s doing a POST request directly from one domain (us) to another (s3.amazonaws.com). It’s not being channeled through our CF servers.</p>
<p>There are two ways to interact with S3: the REST API, and doing a direct POST. With the REST API, the upload data has to be channeled through a server first before sending to Amazon – this was not what we were looking for, since our servers have issues with large files. So we looked into removing ourselves as the middleman and sending the data directly to S3 – via POST.</p>
<p>Here are the drawbacks, mainly three:</p>
<ul>
<li><strong>If S3 detected an error in the upload</strong>, e.g. if the file is too large, there’s no default error page, just a redirect to an XML document hosted on s3.amazonaws.com. There’s no way to set an error page – it’s on Amazon’s to-do list for future release. One can’t even customize the look and feel of the XML document you’re redirected to. Side note: if the upload was successful, it gets redirected to a page you specify (at least there’s some control here).</li>
<li><strong>Progress bar reusable code is scare</strong>. There’s tons of code out there to do this, however, I could not find one that could cross-domain post. With traditional AJAX, you’re only allowed to do a POST/GET if the URL you’re using is the same domain as the caller page. One could get the code for a progress bar plugin (as there are tons out there) and rewrite it to do a POST and work with Amazon S3 – but that would take a considerate amount of work.</li>
<li><strong>Lack of documentation</strong>. There’s not enough documentation for handling POST requests in the official Amazon Developer docs, which makes troubleshooting difficult. Doing POST submits is a relatively new feature of Amazon S3, compared to the rest of their APIs.</li>
</ul>
<p>So the <strong>largest hurdle is to code functionality to get around the error page</strong>, since some JavaScript magic has to be put in place. That would be another day or so of work just for that, I believe. I already have some code in place that I put together while testing. If we left it as-is, when the user uploads, and if there was an error, the user would see something like this:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image003.png"><img class="size-full wp-image-1120 aligncenter" title="image003" src="http://www.shinylight.com/wp-content/uploads/2011/07/image003-e1312063292511.png" alt="" width="550" height="101" /></a></p>
<p>Which would, of course, be nonsensical. If the file was too large, they would see a message that the file was too large within the message tags. The user would then have to hit back to return to the form.</p>
<p><strong>We can try another way, probably the easiest.</strong> When the user hits submits, it starts showing the animated spinner as it’s uploading. Also, we can tell the user that if he encounters an error page, just hit the back button. Also, keep in mind that there’ll be validation in place before the upload to check for file extension, at the very least. The only edge case to seeing that XML error message is if the file they submitted is over the limit *AND*  they have JavaScript turned off (that overrides the JavaScript file extension validation).</p>
<h3>Creating a Basic HTML that POSTs a File to Amazon</h3>
<p><strong>Step 1 – Create a Bucket / Folder / Object:</strong><br />
The first thing we need to do a is create a Bucket on S3. To do this the easy way, go to the AWS: <a href="https://console.aws.amazon.com/s3/home">https://console.aws.amazon.com/s3/home</a> and create a bucket:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image004.png"><img class="size-full wp-image-1121 aligncenter" title="image004" src="http://www.shinylight.com/wp-content/uploads/2011/07/image004.png" alt="" width="323" height="293" /></a></p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image005.png"><img class="size-full wp-image-1122 aligncenter" title="image005" src="http://www.shinylight.com/wp-content/uploads/2011/07/image005.png" alt="" width="355" height="290" /></a></p>
<p>Buckets are where you store your objects (i.e. your files of any format). You can create a folder for further organization:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image006.png"><img class="size-full wp-image-1123 aligncenter" title="image006" src="http://www.shinylight.com/wp-content/uploads/2011/07/image006.png" alt="" width="323" height="235" /></a></p>
<p>As you can see here, there are 4 folders here. We can double-click on step1_new_submissions folder and see the objects that are contained within this:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image007.png"><img class="size-full wp-image-1126 aligncenter" title="image007" src="http://www.shinylight.com/wp-content/uploads/2011/07/image007-e1312064739309.png" alt="" width="550" height="323" /></a></p>
<p>You can right-click on one of those objects (files) and click “Properties”:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image008.png"><img class="size-full wp-image-1127 aligncenter" title="image008" src="http://www.shinylight.com/wp-content/uploads/2011/07/image008.png" alt="" width="358" height="368" /></a></p>
<p>Notice that a Properties panel will expand below. To the right, you have three tabs: Details, Permissions, Metadata.</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image009.png"><img class="size-full wp-image-1128 aligncenter" title="image009" src="http://www.shinylight.com/wp-content/uploads/2011/07/image009-e1312064944102.png" alt="" width="570" height="242" /></a></p>
<p>If you click on the Permissions Tab you’ll notice that by default the file that was selected has following permissions set by user USERNAME:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image010.png"><img class="size-full wp-image-1129 aligncenter" title="image010" src="http://www.shinylight.com/wp-content/uploads/2011/07/image010.png" alt="" width="471" height="117" /></a></p>
<p>Go back to the details tab and click on the Link:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image011.png"><img class="size-full wp-image-1130 aligncenter" title="image011" src="http://www.shinylight.com/wp-content/uploads/2011/07/image011-e1312065059548.png" alt="" width="550" height="108" /></a></p>
<p>You’ll notice that you’ll be taken to an XML document in your browser that has the following:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image012.png"><img class="size-full wp-image-1131 aligncenter" title="image012" src="http://www.shinylight.com/wp-content/uploads/2011/07/image012.png" alt="" width="554" height="168" /></a></p>
<p>It’s because you have not let it public access. To give it public access, you click on the Permissions tab again, and click “Add more permissions” , set the Grantee to “Everyone” and choose Open/Download and Save.</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image013.png"><img class="size-full wp-image-1132 aligncenter" title="image013" src="http://www.shinylight.com/wp-content/uploads/2011/07/image013-e1312065139338.png" alt="" width="550" height="172" /></a></p>
<p>You can also set the make multiple objects public. Select an object, hold the SHIFT key, then select the other object to select the objects in between. Select “Make Public”:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image014.png"><img class="size-full wp-image-1133 aligncenter" title="image014" src="http://www.shinylight.com/wp-content/uploads/2011/07/image014.png" alt="" width="407" height="347" /></a></p>
<p>You can also upload an object manually via the “Upload” button:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image015.png"><img class="size-full wp-image-1134 aligncenter" title="image015" src="http://www.shinylight.com/wp-content/uploads/2011/07/image015.png" alt="" width="319" height="65" /></a></p>
<p>Then click “Add more files”</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image016.png"><img class="size-full wp-image-1135 aligncenter" title="image016" src="http://www.shinylight.com/wp-content/uploads/2011/07/image016.png" alt="" width="541" height="381" /></a></p>
<p>As the file starts uploading, you’ll see the bottom panel show details about the file transfer:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image017.png"><img class="size-full wp-image-1136 aligncenter" title="image017" src="http://www.shinylight.com/wp-content/uploads/2011/07/image017.png" alt="" width="484" height="131" /></a></p>
<h3>Step 2: Setting up the HTML Form</h3>
<p>The S3 REST API is very flexible, as long as you execute the proper method from your application, while at the same time sending the file over from your server to S3 (via a REST method with the correct URI). Traditionally, it would look like this:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image018.png"><img class="size-full wp-image-1137 aligncenter" title="image018" src="http://www.shinylight.com/wp-content/uploads/2011/07/image018.png" alt="" width="205" height="437" /></a></p>
<p>Notice how there’s a middle-man that serves as the captor of the data submitted by the form and the file. Then, it sends it long to S3. The middle-man here is crucial. Double the total bandwidth is spent here – the bandwidth to go from the user’s machine to the web server (in this case CF), and then the bandwidth spent transferring the file to S3.</p>
<p>The advantage to this layout is that because the web server acts as a middle-man server, it can modify the data, change its filename, and slice-and-dice anything within the file because the file submitted has to go through it first. Once the middle-man is done, then it sends it to the S3. Drawback is that there’s wasted resources from the middle-man, not to mention there may be limitations on the middle-man to handle large files &gt; 1GB .</p>
<p>As a solution, S3 has a POST method solution where you can POST the file directly to S3:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image019.png"><img class="size-full wp-image-1138 aligncenter" title="image019" src="http://www.shinylight.com/wp-content/uploads/2011/07/image019.png" alt="" width="241" height="443" /></a></p>
<h3>Setting up the Form tag</h3>
<p>Let’s see how we can cross-domain (a domain other than ours) to S3. Rather than doing the following (to post to the same domain):</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">action</span><span style="color: #66cc66;">=</span>”#CGI.SCRIPT_NAME#” <span style="color: #000066;">method</span><span style="color: #66cc66;">=</span>”post” <span style="color: #000066;">enctype</span><span style="color: #66cc66;">=</span>”multipart<span style="color: #66cc66;">/</span>form-<span style="color: #000066;">data</span>”&gt;</span></pre></div></div>

<p>We do the following:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">action</span><span style="color: #66cc66;">=</span>”http:<span style="color: #66cc66;">//</span>s3.amazonaws.com<span style="color: #66cc66;">/</span>PastaVideos” <span style="color: #000066;">method</span><span style="color: #66cc66;">=</span>”post” <span style="color: #000066;">enctype</span><span style="color: #66cc66;">=</span>”multipart<span style="color: #66cc66;">/</span>form-<span style="color: #000066;">data</span>”&gt;</span></pre></div></div>

<p>Where “PastaVideos” is the name of the bucket.</p>
<p>The format of the object URI is as follows:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image020.png"><img class="size-full wp-image-1139 aligncenter" title="image020" src="http://www.shinylight.com/wp-content/uploads/2011/07/image020-e1312065390896.png" alt="" width="550" height="127" /></a></p>
<h3>Step 3: Setting up the Other Form Fields</h3>
<p>This is where things get interesting. In order to set up an HTML form that can upload straight to S3, there’s a set of required input fields in the form. They are as follows:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/11.png"><img class="size-full wp-image-1154 aligncenter" title="1" src="http://www.shinylight.com/wp-content/uploads/2011/07/11-e1312066815159.png" alt="" width="550" height="827" /></a><br />
<a href="http://www.shinylight.com/wp-content/uploads/2011/07/2.png"><img class="alignnone size-full wp-image-1155" title="2" src="http://www.shinylight.com/wp-content/uploads/2011/07/2-e1312066868306.png" alt="" width="550" height="390" /></a></p>
<h3>Optional Form Fields</h3>
<p><span style="text-decoration: underline;"><strong>IMPORTANT</strong></span>: If you add any other additional form fields, it will throw an error. If there is in fact a need to add extra form fields, which will be pasted to another server, then you must append the prefix “x-ignore-“. Let’s say for example I have three input fields I want S3 to ignore, then do as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;x-ignore-lastname&quot;</span> <span style="color: #000066;">tabindex</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;textfield&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;x-ignore-address1&quot;</span> <span style="color: #000066;">tabindex</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;3&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;textfield&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;x-ignore-address2&quot;</span> <span style="color: #000066;">tabindex</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;4&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;textfield&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;x-ignore-city&quot;</span> <span style="color: #000066;">tabindex</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;5&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;textfield&quot;</span>&gt;</span></pre></div></div>

<p>This is completely legal and will not throw errors.</p>
<h3>Grabbing x-ignore- fields in ColdFusion</h3>
<p>If you want to grab these form variables via ColdFusion, do something like</p>

<div class="wp_syntax"><div class="code"><pre class="cfm" style="font-family:monospace;">Form.x-ignore-lastname</pre></div></div>

<p>Will not suffice <span style="text-decoration: underline;"><strong>because of the dashes</strong></span>. You’ll have use the bracket/quotes format:</p>

<div class="wp_syntax"><div class="code"><pre class="cfm" style="font-family:monospace;">Form[“x-ignore-lastname”]</pre></div></div>

<p>to grab them.</p>
<p>Also to check for existence or set a default value,</p>

<div class="wp_syntax"><div class="code"><pre class="cfm" style="font-family:monospace;"><span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #990000; font-weight: bold;">cfparam</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span>”form.x-ignore-lastname” <span style="color: #0000FF;">default</span><span style="color: #0000FF;">=</span>”parker” <span style="color: #0000FF;">/&gt;</span></span></pre></div></div>

<p>Or</p>

<div class="wp_syntax"><div class="code"><pre class="cfm" style="font-family:monospace;"><span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #990000; font-weight: bold;">cfparam</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span>”form<span style="color: #0000FF;">&#91;</span>“x-ignore-lastname” <span style="color: #0000FF;">default</span><span style="color: #0000FF;">=</span>”parker” <span style="color: #0000FF;">/&gt;</span></span></pre></div></div>

<p>will not work.</p>
<p>You’ll have to use StructKeyexists( Form, &#8220;x-ignore-termsagree&#8221; ) to check for existence.</p>
<h3>HTML Form Example</h3>
<p>Putting all variables together from the previous table, we get something something like as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="cfm" style="font-family:monospace;"><span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">input</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;hidden&quot;</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;key&quot;</span> <span style="color: #0000FF;">value</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;step1_new_submissions/9AAAAAAA-D633-0944-9FBCCCCC6CFB161B_${filename}&quot;</span> <span style="color: #0000FF;">/&gt;</span></span>  
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">input</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;hidden&quot;</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;acl&quot;</span> <span style="color: #0000FF;">value</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;private&quot;</span> <span style="color: #0000FF;">/&gt;</span></span>
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">input</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;hidden&quot;</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;AWSAccessKeyId&quot;</span> <span style="color: #0000FF;">value</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;0N16468ABC47JDAQ2902&quot;</span> <span style="color: #0000FF;">/&gt;</span></span>
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">input</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;hidden&quot;</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;policy&quot;</span> <span style="color: #0000FF;">value</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;eyJleHBpcmF0aW9uIjogIjIwMTgtMTAtMjFUMDA6MDA6MDBaIiwKICAiY29uZGl0aW9ucyI6IFsgCiAgICB7ImJ1Y2tldCI6lyZWN0IjogImh0dHA6Ly90ZXN0LXBhc3RhdmlkZW9zLm1pbGxlbm5pdW13ZWIuY29tL3RoYW5rcy5jZm0ifQogIF0KfQ==&quot;</span> <span style="color: #0000FF;">/&gt;</span></span>
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">input</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;hidden&quot;</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;signature&quot;</span> <span style="color: #0000FF;">value</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;2AAAA/BhWMg4CCCCC32fzQ=&quot;</span> <span style="color: #0000FF;">/&gt;</span></span>
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">input</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;hidden&quot;</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;content-type&quot;</span> <span style="color: #0000FF;">value</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;video/mov&quot;</span> <span style="color: #0000FF;">/&gt;</span></span>
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">input</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;hidden&quot;</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;success_action_redirect&quot;</span> <span style="color: #0000FF;">value</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;http://XYZ.com/thanks.cfm&quot;</span> <span style="color: #0000FF;">/&gt;</span></span>      
<span style="color: #808080; font-style: italic;">&lt;!--- Ignore All This Stuff... ---&gt;</span>
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">input</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;text&quot;</span> <span style="color: #0000FF;">id</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;x-ignore-firstname&quot;</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;x-ignore-firstname&quot;</span> <span style="color: #0000FF;">value</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;peter&quot;</span> <span style="color: #0000FF;">/&gt;</span></span>
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">input</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;text&quot;</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;x-ignore-lastname&quot;</span> <span style="color: #0000FF;">value</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;parker&quot;</span> <span style="color: #0000FF;">/&gt;</span></span></pre></div></div>

<h3>Using Amazon’s HTML POST Form Generator</h3>
<p>Because setting up the above HTML for the form could be tricky, Amazon has a tool that easily generates the HTML for the above code.</p>
<p>The following is a screenshot of the tool. The form can be found at: <a href="http://s3.amazonaws.com/doc/s3-example-code/post/post_sample.html">http://s3.amazonaws.com/doc/s3-example-code/post/post_sample.html</a></p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image025.png"><img class="size-full wp-image-1144 aligncenter" title="image025" src="http://www.shinylight.com/wp-content/uploads/2011/07/image025-e1312065715112.png" alt="" width="550" height="411" /></a><br />
<a href="http://www.shinylight.com/wp-content/uploads/2011/07/image026.png"><img class="alignnone size-full wp-image-1145" title="image026" src="http://www.shinylight.com/wp-content/uploads/2011/07/image026-e1312065751389.png" alt="" width="550" height="518" /></a></p>
<p>So the first thing you do is:</p>
<p><span style="text-decoration: underline;"><strong>1.</strong></span> Fill out the IDs:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image027.png"><img class="size-full wp-image-1146 aligncenter" title="image027" src="http://www.shinylight.com/wp-content/uploads/2011/07/image027.png" alt="" width="439" height="221" /></a></p>
<p>Where AWS ID = Access Key ID   and AWS Key = Secret Access Key</p>
<p><span style="text-decoration: underline;"><strong>2. </strong></span>The next thing we’ll do is fill in the POST URL:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image028.png"><img class="size-full wp-image-1147 aligncenter" title="image028" src="http://www.shinylight.com/wp-content/uploads/2011/07/image028.png" alt="" width="459" height="51" /></a></p>
<p><span style="text-decoration: underline;"><strong>3. </strong></span>The third step is the trickiest step. This is a JSON document that must adhere to the JSON spec. By default, there’s already a default boilerplate JSON document there. Let’s analyze what it means:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image029.png"><img class="size-full wp-image-1148 aligncenter" title="image029" src="http://www.shinylight.com/wp-content/uploads/2011/07/image029-e1312065859753.png" alt="" width="550" height="211" /></a></p>
<p>Let’s use one a real one from the test-pastavideos.XYZweb.com page:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image030.png"><img class="size-full wp-image-1149 aligncenter" title="image030" src="http://www.shinylight.com/wp-content/uploads/2011/07/image030-e1312065922847.png" alt="" width="550" height="160" /></a></p>
<p>You’ll notice that it has content-length-range, which checks the max size, in this case being 1 GB, and it also redirects to the index.cfm page when successful.</p>
<p>After you copy and paste that JSON policy, press “Add Policy”. Notice how the fields in the section “Sample Form Based on the Above Fields” has been populated.</p>
<p><strong><span style="text-decoration: underline;">4. </span></strong>The fields may look something like this:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image031.png"><img class="size-full wp-image-1150 aligncenter" title="image031" src="http://www.shinylight.com/wp-content/uploads/2011/07/image031-e1312065971851.png" alt="" width="452" height="304" /></a></p>
<p><strong><span style="text-decoration: underline;">5.</span></strong> Now click on Generate HTML:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image032.png"><img class="size-full wp-image-1151 aligncenter" title="image032" src="http://www.shinylight.com/wp-content/uploads/2011/07/image032-e1312066036974.png" alt="" width="455" height="228" /></a></p>
<p>Note that with the HTML code above, whatever the user uploads will be renamed to “testfile.txt” on S3. To retain the user’s filename, you have to switch it to value=”${filename}”</p>
<p><span style="text-decoration: underline;"><strong>6.</strong></span> You then copy that generated HTML and paste it into your page. Add any necessary optional fields with the x-ignore-prefixes.</p>
<p>That should give you a basic template for uploading to S3.</p>
<p><span style="text-decoration: underline;"><strong>NOTE</strong></span>: You cannot change the values of any &lt;input&gt; fields except except the key. More about this in the next section.</p>
<h3>Assigning the a unique ID to the object</h3>
<p>Keep in mind of these items when assigning a unique filename:</p>
<ul>
<li>You cannot change the user’s filename in JavaScript – once the user selects a file from his computer, you cannot append a GUID because JavaScript will not let you set the value of a file textbox, you can only read.</li>
<li>You cannot change append the GUID prefix after the form is submitted, because the filename will go to S3’s server, and there’s no way to run conditional logic once it’s on S3.</li>
</ul>
<p>To get around these limitations, you generate the GUID or rather a ColdFusion UUID, then append it to your filename. Let’s take a look at an example of the pasta video form:</p>
<p>First let’s show the JSON policy document:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;expiration&quot;</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;2018-10-21T00:00:00Z&quot;</span><span style="color: #339933;">,</span>
  <span style="color: #3366CC;">&quot;conditions&quot;</span><span style="color: #339933;">:</span> 
  <span style="color: #009900;">&#91;</span> 
    <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;bucket&quot;</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;PastaVideos&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> 
    <span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;starts-with&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;$key&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;step1_new_submissions/&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
    <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;acl&quot;</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;private&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
    <span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;starts-with&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;$Content-Type&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;video/mov&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
    <span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;content-length-range&quot;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">10737774</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
    <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;success_action_redirect&quot;</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;http://pastavideos.XYZ.com/index.cfm&quot;</span><span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#93;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>And now the HTML / ColdFusion code:</p>

<div class="wp_syntax"><div class="code"><pre class="cfm" style="font-family:monospace;"><span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #990000; font-weight: bold;">cfset</span> <span style="color: #0000FF;">Data</span>.videoUUID  <span style="color: #0000FF;">=</span> <span style="color: #0000FF;">CreateUUID</span><span style="color: #0000FF;">&#40;</span><span style="color: #0000FF;">&#41;</span> <span style="color: #0000FF;">/&gt;</span></span>        
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">form</span> <span style="color: #0000FF;">id</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;videoform&quot;</span> <span style="color: #0000FF;">action</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;http://www.XYZ.com/index.cfm&quot;</span> <span style="color: #0000FF;">method</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;get&quot;</span> <span style="color: #0000FF;">enctype</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;multipart/form-data&quot;</span><span style="color: #0000FF;">&gt;</span></span> 
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--- Start of Amazon S3 specific variables. ---&gt;</span>
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">input</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;hidden&quot;</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;key&quot;</span> <span style="color: #0000FF;">value</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;#Data.key##Data.videoUUIDXX#_${filename}&quot;</span> <span style="color: #0000FF;">/&gt;</span></span>   
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">input</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;hidden&quot;</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;acl&quot;</span> <span style="color: #0000FF;">value</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;#Data.acl#&quot;</span> <span style="color: #0000FF;">/&gt;</span></span></pre></div></div>

<p>In the code above, when the HTML is rendered, it will already have filename S3 will use when it’s finished uploading. <strong>Remember</strong>, this is not the value of the &lt;input type=”file” /&gt; box.  So the user uploads, it will look like this on the AWS Console:</p>
<p style="text-align: center;"><a href="http://www.shinylight.com/wp-content/uploads/2011/07/image033.png"><img class="size-full wp-image-1152 aligncenter" title="image033" src="http://www.shinylight.com/wp-content/uploads/2011/07/image033.png" alt="" width="497" height="208" /></a></p>
<p>Now why is the action set to http://www.XYZ.com/index.cfm and method set to get? The HTML has this set, but when the page is loaded, JavaScript immediately runs and changes action to http://s3.amazonaws.com/PastaVideos and method to post:</p>

<div class="wp_syntax"><div class="code"><pre class="cfm" style="font-family:monospace;"><span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #990000; font-weight: bold;">cfoutput</span><span style="color: #0000FF;">&gt;</span></span>
  <span style="color: #808080; font-style: italic;">&lt;!--- Only change the form variables if JavaScript is turned on.  ---&gt;</span>  
  $( &quot;##videoform&quot; ).attr( &quot;action&quot;, &quot;<span style="color: #0000FF;">#Variables.postURL#</span>&quot; ); 
  $( &quot;##videoform&quot; ).attr( &quot;method&quot;, &quot;post&quot; );     
<span style="color: #333333;"><span style="color: #0000FF;">&lt;/</span><span style="color: #990000; font-weight: bold;">cfoutput</span><span style="color: #0000FF;">&gt;</span></span></pre></div></div>

<p>This is so that if JavaScript is turned off, it doesn’t POST to S3.</p>
<h3>Other Sources of Information</h3>
<p><strong>Amazon S3 POST Example in HTML</strong></p>
<ul>
<li><a href="http://aws.amazon.com/code/Amazon%20S3/1093?_encoding=UTF8&amp;jiveRedirect=1">http://aws.amazon.com/code/Amazon%20S3/1093?_encoding=UTF8&amp;jiveRedirect=1</a></li>
</ul>
<p><strong>AWS</strong></p>
<ul>
<li><a href="http://aws.amazon.com/developertools/">http://aws.amazon.com/developertools/</a></li>
</ul>
<p><strong>Helpful Resources</strong></p>
<ul>
<li><a href="http://wiki.smartfrog.org/wiki/display/sf/Amazon+S3">http://wiki.smartfrog.org/wiki/display/sf/Amazon+S3</a></li>
<li><a href="http://docs.amazonwebservices.com/AmazonS3/latest/dev/index.html?AccessPolicyLanguage_UseCases_s3_a.html">http://docs.amazonwebservices.com/AmazonS3/latest/dev/index.html?AccessPolicyLanguage_UseCases_s3_a.html</a></li>
<li><a href="http://docs.amazonwebservices.com/AmazonS3/latest/gsg/">http://docs.amazonwebservices.com/AmazonS3/latest/gsg/</a></li>
<li><a href="http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?UsingHTTPPOST.html">http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?UsingHTTPPOST.html</a></li>
<li><a href="http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?HTTPPOSTExamples.html">http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?HTTPPOSTExamples.html</a></li>
<li><a href="http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?Introduction.html#S3_ACLs">http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?Introduction.html#S3_ACLs</a></li>
</ul>
<p><strong>Test Form</strong></p>
<ul>
<li><a href="http://s3.amazonaws.com/doc/s3-example-code/post/post_sample.html">http://s3.amazonaws.com/doc/s3-example-code/post/post_sample.html</a></li>
</ul>
<p><strong>Documentation Home Page</strong></p>
<ul>
<li><a href="http://aws.amazon.com/documentation/s3/">http://aws.amazon.com/documentation/s3/</a></li>
</ul>
<p><strong>Workflow using WS3 policies</strong></p>
<ul>
<li><a href="http://docs.amazonwebservices.com/AmazonS3/latest/dev/">http://docs.amazonwebservices.com/AmazonS3/latest/dev/</a></li>
</ul>
<p><strong>Helpful Posts</strong></p>
<ul>
<li><a href="http://aws.amazon.com/articles/1434?_encoding=UTF8&amp;jiveRedirect=1">http://aws.amazon.com/articles/1434?_encoding=UTF8&amp;jiveRedirect=1</a></li>
<li><a href="https://forums.aws.amazon.com/message.jspa?messageID=89017">https://forums.aws.amazon.com/message.jspa?messageID=89017</a></li>
<li><a href="https://forums.aws.amazon.com/message.jspa?messageID=88188">https://forums.aws.amazon.com/message.jspa?messageID=88188</a></li>
</ul>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2338px; width: 1px; height: 1px; overflow: hidden;">Asynchronous Upload to Amazon S3 (S3)</p>
<p>Last Updated: 11/29/2010</p>
<p>Author: Dan Romero</p>
<p>Table of Contents</p>
<p>Summary of Problem.. 2</p>
<p>Introducing Amazon S3. 2</p>
<p>Benefits: 3</p>
<p>Drawbacks: 3</p>
<p>Creating a Basic HTML that POSTs a File to Amazon. 5</p>
<p>Step 1 – Create a Bucket / Folder / Object: 5</p>
<p>Step 2: Setting up the HTML Form.. 9</p>
<p>Setting up the Form tag. 10</p>
<p>Step 3: Setting up the Other Form Fields. 11</p>
<p>Optional Form Fields. 13</p>
<p>Grabbing x-ignore- fields in ColdFusion. 13</p>
<p>HTML Form Example. 14</p>
<p>Using Amazon’s HTML POST Form Generator. 14</p>
<p>Assigning the a unique ID to the object. 18</p>
<p>Other Sources of Information. 19</p>
<p>Requirements</p>
<p>Make sure you have an Amazon S3 Account (get it from tech).</p>
<p>JavaScript is mandatory for this to work (to be able to POST to two different domains) upon user<br />
submission.</p>
<p>Summary of Problem</p>
<p>This is a summary outlining the solution used in a video uploader. It entailed a form that would leverage the user of our Amazon S3 (S3) account. In addition, because the video files could be large (and to avoid CF limitations), a critical requirement was to upload to that page S3 directly. At the same time, the form field information had to be saved to our database. This meant doing a double post – one to the XYZ domain, and the other to s3.amazon.com. This cross-domain POST could only be done via AJAX.</p>
<p>Here’s visualization:</p>
<p>As you can see, once the user clicks “Submit”, there’s an AJAX HTTP POST to<br />
XZY server to save the fields to the database, and then the JavaScript runs a<br />
form.submit() on the current form to submit the file via POST to S3.</p>
<p>Introducing Amazon S3</p>
<p>Amazon S3 (Simple Storage Service) is a cloud service whose sole purpose is to store files. To store files into it, one can use its REST API or Admin Web Console (AWS).</p>
<p>Screenshot of the AWS console, with Amazon S3 tab selected.</p>
<p>One gets to the AWS console via an account (can get it from tech) and going to http://aws.amazon.com/s3/ and clicking “Sign in.”</p>
<p>While S3 has many advantages, there are a set of drawbacks as well. To summarize, here’s a list:</p>
<p>Benefits:</p>
<p>The max upload size for a file is 5GB. Plenty.</p>
<p>For all the times I’ve tested, uploads of different file sizes, everything has gone super smoothly – like butter – so definitely reliable.</p>
<p>Amazon is super scalable (as you may already know), so parallel uploading from one or many users is really no problem.</p>
<p>Would not affect performance of our servers &#8211; there could be many uploads, and they would go fast, without slowing down any other web sites on servers.</p>
<p>The speed of the upload is limited to the user’s computer’s specs and internet provider – much faster than our servers.</p>
<p>Files can be made secure and unreadable, not just through obscurity – this is sometimes tricky to implement in ColdFusion.</p>
<p>Drawbacks:</p>
<p>To summarize, the reason for some of the drawbacks, is because it’s doing a POST request directly from one domain (us) to another (s3.amazonaws.com). It’s not being channeled through our CF servers.</p>
<p>There are two ways to interact with S3: the REST API, and doing a direct POST. With the REST API, the upload data has to be channeled through a server first before sending to Amazon – this was not what we were looking for, since our servers have issues with large files. So we looked into removing ourselves as the middleman and sending the data directly to S3 – via POST.</p>
<p>Here are the drawbacks, mainly three:</p>
<p>If S3 detected an error in the upload, e.g. if the file is too large, there’s no default error page, just a redirect to an XML document hosted on s3.amazonaws.com. There’s no way to set an error page – it’s on Amazon’s to-do list for future release. One can’t even customize the look and feel of the XML document you’re redirected to. Side note: if the upload was successful, it gets redirected to a page you specify (at least there’s some control here).</p>
<p>Progress bar reusable code is scare. There’s tons of code out there to do this, however, I could not find one that could cross-domain post. With traditional AJAX, you’re only allowed to do a POST/GET if the URL you’re using is the same domain as the caller page. One could get the code for a progress bar plugin (as there are tons out there) and rewrite it to do a POST and work with Amazon S3 – but that would take a considerate amount of work.</p>
<p>Lack of documentation. There’s not enough documentation for handling POST requests in the official Amazon Developer docs, which makes troubleshooting difficult. Doing POST submits is a relatively new feature of Amazon S3, compared to the rest of their APIs.</p>
<p>So the largest hurdle is to code functionality to get around the error page, since some JavaScript magic has to be put in place. That would be another day or so of work just for that, I believe. I already have some code in place that I put together while testing. If we left it as-is, when the user uploads, and if there was an error, the user would see something like this:</p>
<p>Which would, of course, be nonsensical. If the file was too large, they would see a message that the file was too large within the message tags. The user would then have to hit back to return to the form.</p>
<p>We can try another way, probably the easiest. When the user hits submits, it starts showing the animated spinner as it’s uploading. Also, we can tell the user that if he encounters an error page, just hit the back button. Also, keep in mind that there’ll be validation in place before the upload to check for file extension, at the very least. The only edge case to seeing that XML error message is if the file they submitted is over the limit *AND*  they have JavaScript turned off (that overrides the JavaScript file extension validation).</p>
<p>Creating a Basic HTML that POSTs a File to Amazon</p>
<p>Step 1 – Create a Bucket / Folder / Object:<br />
The first thing we need to do a is create a Bucket on S3. To do this the easy way, go to the AWS: https://console.aws.amazon.com/s3/home  and create a bucket:</p>
<p>Buckets are where you store your objects (i.e. your files of any format). You can create a folder for further organization:</p>
<p>As you can see here, there are 4 folders here. We can double-click on step1_new_submissions folder and see the objects that are contained within this:</p>
<p>You can right-click on one of those objects (files) and click “Properties”:</p>
<p>Notice that a Properties panel will expand below. To the right, you have three tabs: Details, Permissions, Metadata.</p>
<p>If you click on the Permissions Tab you’ll notice that by default the file that was selected has following permissions set by user USERNAME:</p>
<p>Go back to the details tab and click on the Link:</p>
<p>You’ll notice that you’ll be taken to an XML document in your browser that has the following:</p>
<p>It’s because you have not let it public access. To give it public access, you click on the Permissions tab again, and click “Add more permissions” , set the Grantee to “Everyone” and choose Open/Download and Save.</p>
<p>You can also set the make multiple objects public. Select an object, hold the SHIFT key, then select the other object to select the objects in between. Select “Make Public”:</p>
<p>You can also upload an object manually via the “Upload” button:</p>
<p>Then click “Add more files”</p>
<p>As the file starts uploading, you’ll see the bottom panel show details about the file transfer:</p>
<p>Step 2: Setting up the HTML Form</p>
<p>The S3 REST API is very flexible, as long as you execute the proper method from your application, while at the same time sending the file over from your server to S3 (via a REST method with the correct URI). Traditionally, it would look like this:</p>
<p>Notice how there’s a middle-man that serves as the captor of the data submitted by the form and the file. Then, it sends it long to S3. The middle-man here is crucial. Double the total bandwidth is spent here – the bandwidth to go from the user’s machine to the web server (in this case CF), and then the bandwidth spent transferring the file to S3.</p>
<p>The advantage to this layout is that because the web server acts as a middle-man server, it can modify the data, change its filename, and slice-and-dice anything within the file because the file submitted has to go through it first. Once the middle-man is done, then it sends it to the S3. Drawback is that there’s wasted resources from the middle-man, not to mention there may be limitations on the middle-man to handle large files &gt; 1GB .</p>
<p>As a solution, S3 has a POST method solution where you can POST the file directly to S3:</p>
<p>Setting up the Form tag</p>
<p>Let’s see how we can cross-domain (a domain other than ours) to S3. Rather than doing the following (to post to the same domain):</p>
<p>&lt;form action=”#CGI.SCRIPT_NAME#” method=”post” enctype=”multipart/form-data”&gt;</p>
<p>We do the following:</p>
<p>&lt;form action=”http://s3.amazonaws.com/PastaVideos” method=”post” enctype=”multipart/form-data”&gt;</p>
<p>Where “PastaVideos” is the name of the bucket.</p>
<p>The format of the object URI is as follows:</p>
<p>Step 3: Setting up the Other Form Fields</p>
<p>This is where things get interesting. In order to set up an HTML form that can upload straight to S3, there’s a set of required input fields in the form. They are as follows:</p>
<p>Tag<br />
Type<br />
Name<br />
Value</p>
<p>input<br />
hidden<br />
key<br />
The location of the object you’ll be uploading. You can consider it as the concatenation of the folder(s) and the filename (don’t use the bucket name):</p>
<p>step1_new_submissions/4059C3_${filename}</p>
<p>The ${filename} is the original filename of the file the user is uploading. The “4059C3_” is a made up ID that is concatenated to the ${filename} that will add uniqueness to the objects in the bucket, if multiple people are uploading to it.</p>
<p>input<br />
hidden<br />
acl<br />
The access control list. Can be set to:</p>
<p>private – Lets the public user upload a file, but not be able to access it once he uploads. To make it accessible, one has to go into the AWS console and change the rights.</p>
<p>public-read – Lets the public user see it after he has uploaded it or anyone else see it.</p>
<p>input<br />
hidden<br />
AWSAccessKeyId<br />
To get this key id, you need to access it by going to:</p>
<p>Then security credentials:</p>
<p>Get the Access Key ID. This id is also called the AWSAccessKeyId.</p>
<p>You should also grab the “Secret Access Key” by clicking on the “Show” on the adjacent column:</p>
<p>Keep the Secret Access Key private! Only the Access Key ID can be made public.</p>
<p>input<br />
hidden<br />
policy<br />
Policy is a Base64 encoded JSON document that outlines the privileges and details of the files being uploaded. More details about this in the next section.</p>
<p>input<br />
hidden<br />
signature<br />
The signature is the policy, HMAC-encrypted using the Secret Access Key.</p>
<p>input<br />
hidden<br />
content-type<br />
The content type is the what kind of mime content the file that will pass through the form will be.</p>
<p>input<br />
hidden<br />
success_action_redirect<br />
This is the URL of where to go when the upload succeeds. It could be any URL.  Also, when redirected, it will add the three additional URL variables:</p>
<p>bucket=PastaVideos</p>
<p>key=step1_new_submissions%2A192DCAE1-D625-0944-9FBCCD5C6CCB161B_ajax5-loader.mov</p>
<p>etag=%22356060aa56ce8955d38ed8c58661497a%22</p>
<p>Optional Form Fields</p>
<p>IMPORTANT: If you add any other additional form fields, it will throw an error. If there is in fact a need to add extra form fields, which will be pasted to another server, then you must append the prefix “x-ignore-“. Let’s say for example I have three input fields I want S3 to ignore, then do as follows:</p>
<p>&lt;input type=&#8221;text&#8221; name=&#8221;x-ignore-lastname&#8221; tabindex=&#8221;2&#8243; class=&#8221;textfield&#8221;&gt;</p>
<p>&lt;input type=&#8221;text&#8221; name=&#8221;x-ignore-address1&#8243; tabindex=&#8221;3&#8243; class=&#8221;textfield&#8221;&gt;</p>
<p>&lt;input type=&#8221;text&#8221; name=&#8221;x-ignore-address2&#8243; tabindex=&#8221;4&#8243; class=&#8221;textfield&#8221;&gt;</p>
<p>&lt;input type=&#8221;text&#8221; name=&#8221;x-ignore-city&#8221; tabindex=&#8221;5&#8243; class=&#8221;textfield&#8221;&gt;</p>
<p>This is completely legal and will not throw errors.</p>
<p>Grabbing x-ignore- fields in ColdFusion</p>
<p>If you want to grab these form variables via ColdFusion, do something like</p>
<p>Form.x-ignore-lastname</p>
<p>Will not suffice because of the dashes. You’ll have use the bracket/quotes format:</p>
<p>Form[“x-ignore-lastname”]</p>
<p>to grab them.</p>
<p>Also to check for existence or set a default value,</p>
<p>&lt;cfparam name=”form.x-ignore-lastname” default=”parker” /&gt;</p>
<p>Or</p>
<p>&lt;cfparam name=”form[“x-ignore-lastname” default=”parker” /&gt;</p>
<p>will not work.</p>
<p>You’ll have to use StructKeyexists( Form, "x-ignore-termsagree" ) to check for existence.</p>
<p>HTML Form Example</p>
<p>Putting all variables together from the previous table, we get something something like as follows:</p>
<p>&lt;input type="hidden" name="key" value="step1_new_submissions/9AAAAAAA-D633-0944-9FBCCCCC6CFB161B_${filename}" /&gt;</p>
<p>&lt;input type="hidden" name="acl" value="private" /&gt;</p>
<p>&lt;input type="hidden" name="AWSAccessKeyId" value="0N16468ABC47JDAQ2902" /&gt;</p>
<p>&lt;input type="hidden" name="policy" value="eyJleHBpcmF0aW9uIjogIjIwMTgtMTAtMjFUMDA6MDA6MDBaIiwKICAiY29uZGl0aW9ucyI6IFsgCiAgICB7ImJ1Y2tldCI6lyZWN0IjogImh0dHA6Ly90ZXN0LXBhc3RhdmlkZW9zLm1pbGxlbm5pdW13ZWIuY29tL3RoYW5rcy5jZm0ifQogIF0KfQ==" /&gt;</p>
<p>&lt;input type="hidden" name="signature" value="2AAAA/BhWMg4CCCCC32fzQ=" /&gt;</p>
<p>&lt;input type="hidden" name="content-type" value="video/mov" /&gt;</p>
<p>&lt;input type="hidden" name="success_action_redirect" value="http://XYZ.com/thanks.cfm" /&gt;</p>
<p>&lt;!--- Ignore All This Stuff... ---&gt;<br />
&lt;input type="text" id="x-ignore-firstname" name="x-ignore-firstname" value="peter" /&gt;</p>
<p>&lt;input type="text" name="x-ignore-lastname" value="parker" /&gt;</p>
<p>Using Amazon’s HTML POST Form Generator</p>
<p>Because setting up the above HTML for the form could be tricky, Amazon has a tool that easily generates the HTML for the above code.</p>
<p>The following is a screenshot of the tool. The form can be found at: http://s3.amazonaws.com/doc/s3-example-code/post/post_sample.html</p>
<p>So the first thing you do is:</p>
<p>1.       Fill out the IDs:</p>
<p>Where AWS ID = Access Key ID   and AWS Key = Secret Access Key</p>
<p>2.       The next thing we’ll do is fill in the POST URL:</p>
<p>3.       The third step is the trickiest step. This is a JSON document that must adhere to the JSON spec. By default, there’s already a default boilerplate JSON document there. Let’s analyze what it means:</p>
<p>Let’s use one a real one from the test-pastavideos.XYZweb.com page:</p>
<p>You’ll notice that it has content-length-range, which checks the max size, in this case being 1 GB, and it also redirects to the index.cfm page when successful.</p>
<p>After you copy and paste that JSON policy, press “Add Policy”. Notice how the fields in the section “Sample Form Based on the Above Fields” has been populated.</p>
<p>4.       The fields may look something like this:</p>
<p>5.       Now click on Generate HTML:</p>
<p>Note that with the HTML code above, whatever the user uploads will be renamed to “testfile.txt” on S3. To retain the user’s filename, you have to switch it to value=”${filename}”</p>
<p>6.       You then copy that generated HTML and paste it into your page. Add any necessary optional fields with the x-ignore-prefixes.</p>
<p>That should give you a basic template for uploading to S3.</p>
<p>NOTE: You cannot change the values of any &lt;input&gt; fields except except the key. More about this in the next section.</p>
<p>Assigning the a unique ID to the object</p>
<p>Keep in mind of these items when assigning a unique filename:</p>
<p>You cannot change the user’s filename in JavaScript – once the user selects a file from his computer, you cannot append a GUID because JavaScript will not let you set the value of a file textbox, you can only read.</p>
<p>You cannot change append the GUID prefix after the form is submitted, because the filename will go to S3’s server, and there’s no way to run conditional logic once it’s on S3.</p>
<p>To get around these limitations, you generate the GUID or rather a ColdFusion UUID, then append it to your filename. Let’s take a look at an example of the pasta video form:</p>
<p>First let’s show the JSON policy document:</p>
<p>{"expiration": "2018-10-21T00:00:00Z",</p>
<p>"conditions": [</p>
<p>{"bucket": "PastaVideos"},</p>
<p>["starts-with", "$key", "step1_new_submissions/"],</p>
<p>{&#8220;acl&#8221;: &#8220;private&#8221;},</p>
<p>["starts-with", "$Content-Type", "video/mov"],</p>
<p>["content-length-range", 0, 10737774],</p>
<p>{&#8220;success_action_redirect&#8221;: &#8220;http://pastavideos.XYZ.com/index.cfm&#8221;}</p>
<p>]</p>
<p>}</p>
<p>And now the HTML / ColdFusion code:</p>
<p>&lt;cfset Data.videoUUID  = CreateUUID() /&gt;</p>
<p>&lt;form id=&#8221;videoform&#8221; action=&#8221;http://www.XYZ.com/index.cfm&#8221; method=&#8221;get&#8221; enctype=&#8221;multipart/form-data&#8221;&gt;</p>
<p>&lt;!&#8212; Start of Amazon S3 specific variables. &#8212;&gt;</p>
<p>&lt;input type=&#8221;hidden&#8221; name=&#8221;key&#8221;</p>
<p>value=&#8221;#Data.key## Data.videoUUIDXX#_${filename}&#8221; /&gt;</p>
<p>&lt;input type=&#8221;hidden&#8221; name=&#8221;acl&#8221; value=&#8221;#Data.acl#&#8221; /&gt;</p>
<p>In the code above, when the HTML is rendered, it will already have filename S3 will use when it’s finished uploading. Remember, this is not the value of the &lt;input type=”file” /&gt; box.  So the user uploads, it will look like this on the AWS Console:</p>
<p>Now why is the action set to http://www.XYZ.com/index.cfm and method set to get? The HTML has this set, but when the page is loaded, JavaScript immediately runs and changes action to http://s3.amazonaws.com/PastaVideos and method to post:</p>
<p>&lt;cfoutput&gt;</p>
<p>&lt;!&#8212; Only change the form variables if JavaScript is turned on.  &#8212;&gt;</p>
<p>$( &#8220;##videoform&#8221; ).attr( &#8220;action&#8221;, &#8220;#Variables.postURL#&#8221; );</p>
<p>$( &#8220;##videoform&#8221; ).attr( &#8220;method&#8221;, &#8220;post&#8221; );</p>
<p>&lt;/cfoutput&gt;</p>
<p>This is so that if JavaScript is turned off, it doesn’t POST to S3.</p>
<p>Other Sources of Information</p>
<p>Amazon S3 POST Example in HTML</p>
<p>http://aws.amazon.com/code/Amazon%20S3/1093?_encoding=UTF8&amp;jiveRedirect=1</p>
<p>AWS</p>
<p>http://aws.amazon.com/developertools/</p>
<p>Helpful Resources</p>
<p>http://wiki.smartfrog.org/wiki/display/sf/Amazon+S3</p>
<p>http://docs.amazonwebservices.com/AmazonS3/latest/dev/index.html?AccessPolicyLanguage_UseCases_s3_a.html</p>
<p>http://docs.amazonwebservices.com/AmazonS3/latest/gsg/</p>
<p>http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?UsingHTTPPOST.html</p>
<p>http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?HTTPPOSTExamples.html</p>
<p>http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?Introduction.html#S3_ACLs</p>
<p>Test Form</p>
<p>http://s3.amazonaws.com/doc/s3-example-code/post/post_sample.html</p>
<p>Documentation Home Page</p>
<p>http://aws.amazon.com/documentation/s3/</p>
<p>Workflow using WS3 policies</p>
<p>http://docs.amazonwebservices.com/AmazonS3/latest/dev/</p>
<p>Helpful Posts</p>
<p>http://aws.amazon.com/articles/1434?_encoding=UTF8&amp;jiveRedirect=1</p>
<p>https://forums.aws.amazon.com/message.jspa?messageID=89017</p>
<p>https://forums.aws.amazon.com/message.jspa?messageID=88188</p>
</div>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em></em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/&amp;submitHeadline=Asynchronous+Upload+to+Amazon+S3+%28S3%29&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/&amp;title=Asynchronous+Upload+to+Amazon+S3+%28S3%29" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/&amp;title=Asynchronous+Upload+to+Amazon+S3+%28S3%29" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/&amp;title=Asynchronous+Upload+to+Amazon+S3+%28S3%29" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/&amp;bm_description=Asynchronous+Upload+to+Amazon+S3+%28S3%29" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/&amp;T=Asynchronous+Upload+to+Amazon+S3+%28S3%29" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/&amp;title=Asynchronous+Upload+to+Amazon+S3+%28S3%29" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/&amp;title=Asynchronous+Upload+to+Amazon+S3+%28S3%29" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Asynchronous+Upload+to+Amazon+S3+%28S3%29+@+http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/&amp;t=Asynchronous+Upload+to+Amazon+S3+%28S3%29" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.shinylight.com/2010/01/01/asynchronous-upload-to-amazon-s3-s3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Assigning Handlers on Load</title>
		<link>http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/</link>
		<comments>http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 01:15:24 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript ajax programming]]></category>

		<guid isPermaLink="false">http://www.shinylight.com/?p=501</guid>
		<description><![CDATA[Rather than assigning event handlers to elements inline from within HTML, like so:

&#60;a id=&#34;site&#34; href=&#34;http://www.shinylight.com&#34; onmouseover=&#34;Show()&#34;&#62;Go to my site!&#60;/a&#62;

You can assign the event handler programmatically via the onload event of the window object. Like so, in the script element:

window.onload = function&#40;&#41; 
&#123;
  document.getElementById&#40;&#34;linkcontent&#34;&#41;.onmouseover = Show;   
&#125;
&#160;
function Show&#40; &#41;
&#123;  
  alert&#40; [...]]]></description>
			<content:encoded><![CDATA[<p>Rather than assigning event handlers to elements inline from within HTML, like so:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;a id=&quot;site&quot; href=&quot;http://www.shinylight.com&quot; onmouseover=&quot;Show()&quot;&gt;Go to my site!&lt;/a&gt;</pre></div></div>

<p>You can assign the event handler programmatically via the onload event of the window object. Like so, in the script element:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">window.<span style="color: #000066;">onload</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> 
<span style="color: #009900;">&#123;</span>
  document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;linkcontent&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">onmouseover</span> <span style="color: #339933;">=</span> Show<span style="color: #339933;">;</span>   
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> Show<span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>  
  <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span> <span style="color: #3366CC;">&quot;Hey there, how are you?&quot;</span> <span style="color: #339933;">+</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">href</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Here&#8217;s the HTML:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;body&gt;
&nbsp;
&lt;div id=&quot;content&quot;&gt;
  &lt;a id=&quot;linkcontent&quot; href=&quot;http://www.shinylight.com?var=yes&quot;&gt;This is pretty cool&lt;/a&gt;
&lt;/div&gt;  
&nbsp;
&lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<p>This is just a great way to keep HTML code away from JavaScript. In this case, the handler for window.load will run when all web page resources have finished loading (the full HTML and JavaScript files). </p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em></em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/&amp;submitHeadline=Assigning+Handlers+on+Load&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/&amp;title=Assigning+Handlers+on+Load" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/&amp;title=Assigning+Handlers+on+Load" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/&amp;title=Assigning+Handlers+on+Load" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/&amp;bm_description=Assigning+Handlers+on+Load" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/&amp;T=Assigning+Handlers+on+Load" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/&amp;title=Assigning+Handlers+on+Load" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/&amp;title=Assigning+Handlers+on+Load" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Assigning+Handlers+on+Load+@+http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/&amp;t=Assigning+Handlers+on+Load" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.shinylight.com/2009/12/08/assigning-handlers-on-load/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Head First AJAX</title>
		<link>http://www.shinylight.com/2009/12/07/head-first-ajax/</link>
		<comments>http://www.shinylight.com/2009/12/07/head-first-ajax/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 06:37:57 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[ajax javascript programming]]></category>

		<guid isPermaLink="false">http://www.shinylight.com/?p=496</guid>
		<description><![CDATA[Currently reading a great AJAX book, Head First AJAX, by Rebecca Riordan. I was a little skeptical at first by the format of these &#8220;Head First&#8221; books. I had heard so much about these books that I decided to give it a shot. I have to say I&#8217;m very pleased. It makes the material very [...]]]></description>
			<content:encoded><![CDATA[<p>Currently reading a great AJAX book, <a href="http://www.amazon.com/Head-First-Ajax-Rebecca-Riordan/dp/0596515782/ref=ntt_at_ep_dpi_1">Head First AJAX</a>, by Rebecca Riordan. I was a little skeptical at first by the format of these &#8220;Head First&#8221; books. I had heard so much about these books that I decided to give it a shot. I have to say I&#8217;m very pleased. It makes the material very easy to understand, and I certainly need a good book to review my AJAX. </p>
<h3>So what is AJAX?</h3>
<p>At its core, AJAX is just making a part of the page do something else while not refreshing the entire page. So for example, you can press a button, and just the button alone would load data from the server and display it on another part of the page (maybe right above it) while not loading the entire page. This is benefit one. It uses the JavaScript XmlHttpRequest (XHR) object .</p>
<p>Benefit two, is that with that XHR object, you can make HTTP requests that traditional HTML pages cannot. An HTML page can make a GET or POST request (e.g. via a form). With an XHR object, you have all HTTP request methods available. </p>
<p>When AJAX first came out, it used just XML &#8211; the server side script (e.g. ASP page) would generate XML data and the XHR object would retrieve it. Now, you can use JSON (a native JavaScript data structure) or any form of data structure you want. So the &#8220;X&#8221; in AJAX really is any type of data structure you want to pass the data from the ASP page to the XHR object. </p>
<p>Some JavaScript frameworks make AJAX extremely easy to use. jQuery can make a GET request using one line of code (compared to the many in the example code from my site). Also, jQuery is part of the .NET framework (last I heard MS announcing it) and should be integrated into Visual Studio.NET.  </p>
<p>Here&#8217;s a great snippet that bundles the logic to return an XmlHttpRequest object if the browser can in fact create the object. I find it quiet useful.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> createRequest<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000066; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
    request <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> XMLHttpRequest<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span>tryMS<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000066; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
      request <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> ActiveXObject<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Msxml2.XMLHTTP&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span>otherMS<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000066; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
        request <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> ActiveXObject<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Microsoft.XMLHTTP&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span>failed<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        request <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">null</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span>	
  <span style="color: #000066; font-weight: bold;">return</span> request<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Some additional code, wrapped in functions, that sends the request object to the server, and fires the showUsernameStatus function. This is grabbed from the book site. Posting it here for my own benefit.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">window.<span style="color: #000066;">onload</span> <span style="color: #339933;">=</span> initPage<span style="color: #339933;">;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> initPage<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;username&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">onblur</span> <span style="color: #339933;">=</span> checkUsername<span style="color: #339933;">;</span>
  document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;register&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">disabled</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> checkUsername<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;username&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">className</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;thinking&quot;</span><span style="color: #339933;">;</span>
  request <span style="color: #339933;">=</span> createRequest<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>request <span style="color: #339933;">==</span> <span style="color: #003366; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span>
    <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Unable to create request&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> theName <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;username&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">value</span><span style="color: #339933;">;</span>
    <span style="color: #003366; font-weight: bold;">var</span> username <span style="color: #339933;">=</span> escape<span style="color: #009900;">&#40;</span>theName<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #003366; font-weight: bold;">var</span> url<span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;checkName.php?username=&quot;</span> <span style="color: #339933;">+</span> username<span style="color: #339933;">;</span>
    request.<span style="color: #660066;">onreadystatechange</span> <span style="color: #339933;">=</span> showUsernameStatus<span style="color: #339933;">;</span>
    request.<span style="color: #000066;">open</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;GET&quot;</span><span style="color: #339933;">,</span> url<span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    request.<span style="color: #660066;">send</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> showUsernameStatus<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>request.<span style="color: #660066;">readyState</span> <span style="color: #339933;">==</span> <span style="color: #CC0000;">4</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>request.<span style="color: #000066;">status</span> <span style="color: #339933;">==</span> <span style="color: #CC0000;">200</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>request.<span style="color: #660066;">responseText</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;okay&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;username&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">className</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;approved&quot;</span><span style="color: #339933;">;</span>
        document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;register&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">disabled</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
        document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;username&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">className</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;denied&quot;</span><span style="color: #339933;">;</span>
        document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;username&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">focus</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;username&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">select</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;register&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">disabled</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Here&#8217;s a simple way to read a text file (data.txt), barebones, on Firefox, without checking if XMLHttpRequest object exists or not.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">html</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">head</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">language</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;JavaScript&quot;</span>&gt;</span>  
ajax = new XMLHttpRequest();
&nbsp;
function ShowData()
{  
  ajax.open( &quot;GET&quot;, &quot;data.txt&quot;, true );  
  ajax.onreadystatechange = function() 
  {
    if ( ajax.readyState == 4 ) 
    {      
      document.getElementById(&quot;DataPanel&quot;).innerHTML = ajax.responseText;
    }
  }    
  ajax.send(null);
}  
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span>
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">title</span>&gt;</span>hey!<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">title</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">head</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">body</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">button</span> <span style="color: #000066;">onclick</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ShowData()&quot;</span>&gt;</span>Show Data<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">button</span>&gt;</span>   
  <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;DataPanel&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>  
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">body</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">html</span>&gt;</span></pre></div></div>

<p>This is data.txt, which is in the same directory as the html page above:</p>

<div class="wp_syntax"><div class="code"><pre class="txt" style="font-family:monospace;">05/12/2009  10:32 PM             1,024 .rnd
10/03/2009  12:55 AM               428 1.txt
05/11/2009  10:37 PM                 0 AUTOEXEC.BAT
09/29/2009  09:56 PM             5,256 bar.emf
05/11/2009  10:37 PM                 0 CONFIG.SYS
12/06/2009  12:43 AM    &lt;DIR&gt;          Dan
12/06/2009  12:45 AM                 0 data.txt
05/11/2009  11:00 PM    &lt;DIR&gt;          DELL
05/11/2009  10:40 PM    &lt;DIR&gt;          Documents and Settings
05/11/2009  11:28 PM    &lt;DIR&gt;          Intel
11/24/2009  11:53 PM    &lt;DIR&gt;          Program Files
07/18/2009  12:21 AM    &lt;DIR&gt;          temp
11/24/2009  11:57 PM    &lt;DIR&gt;          WINDOWS</pre></div></div>

<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em></em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.shinylight.com/2009/12/07/head-first-ajax/&amp;submitHeadline=Head+First+AJAX&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.shinylight.com/2009/12/07/head-first-ajax/&amp;title=Head+First+AJAX" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.shinylight.com/2009/12/07/head-first-ajax/&amp;title=Head+First+AJAX" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.shinylight.com/2009/12/07/head-first-ajax/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.shinylight.com/2009/12/07/head-first-ajax/&amp;title=Head+First+AJAX" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.shinylight.com/2009/12/07/head-first-ajax/&amp;bm_description=Head+First+AJAX" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.shinylight.com/2009/12/07/head-first-ajax/&amp;T=Head+First+AJAX" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.shinylight.com/2009/12/07/head-first-ajax/&amp;title=Head+First+AJAX" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.shinylight.com/2009/12/07/head-first-ajax/&amp;title=Head+First+AJAX" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.shinylight.com/2009/12/07/head-first-ajax/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.shinylight.com/2009/12/07/head-first-ajax/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Head+First+AJAX+@+http://www.shinylight.com/2009/12/07/head-first-ajax/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.shinylight.com/2009/12/07/head-first-ajax/&amp;t=Head+First+AJAX" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.shinylight.com/2009/12/07/head-first-ajax/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Use PHP Functions in JavaScript</title>
		<link>http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/</link>
		<comments>http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 03:14:00 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php javascript functions programming]]></category>

		<guid isPermaLink="false">http://www.shinylight.com/?p=471</guid>
		<description><![CDATA[PHP.JS is a great JavaScript library that I don&#8217;t often see in overwhelming lists of JS Libraries out there. A few folks decided to port many PHP functions to JavaScript. Wicked cool! I suggest you take a look at what&#8217;s ported so far &#8211; there&#8217;s a whole bunch. Definitely check it out!























]]></description>
			<content:encoded><![CDATA[<p><a href="http://phpjs.org/">PHP.JS is a great JavaScript library</a> that I don&#8217;t often see in overwhelming lists of JS Libraries out there. A few folks decided to port many PHP functions to JavaScript. Wicked cool! I suggest you take a look at what&#8217;s ported so far &#8211; there&#8217;s a whole bunch. Definitely check it out!</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em></em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/&amp;submitHeadline=Use+PHP+Functions+in+JavaScript&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/&amp;title=Use+PHP+Functions+in+JavaScript" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/&amp;title=Use+PHP+Functions+in+JavaScript" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/&amp;title=Use+PHP+Functions+in+JavaScript" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/&amp;bm_description=Use+PHP+Functions+in+JavaScript" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/&amp;T=Use+PHP+Functions+in+JavaScript" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/&amp;title=Use+PHP+Functions+in+JavaScript" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/&amp;title=Use+PHP+Functions+in+JavaScript" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Use+PHP+Functions+in+JavaScript+@+http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/&amp;t=Use+PHP+Functions+in+JavaScript" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.shinylight.com/2009/10/15/use-php-functions-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Code Playground</title>
		<link>http://www.shinylight.com/2009/10/11/google-code-playground/</link>
		<comments>http://www.shinylight.com/2009/10/11/google-code-playground/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 20:54:00 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[google tools javascript]]></category>

		<guid isPermaLink="false">http://www.shinylight.com/?p=463</guid>
		<description><![CDATA[Don&#8217;t know how long Google Code Playground has been around, but it&#8217;s a mini-editor that will let you code in JavaScript (with color coding!), interpret it on a bottom panel, and even show you results from various Google API snippets. Awesome tool.

























]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t know how long <a href="http://code.google.com/apis/ajax/playground/">Google Code Playground</a> has been around, but it&#8217;s a mini-editor that will let you code in JavaScript (with color coding!), interpret it on a bottom panel, and even show you results from various Google API snippets. Awesome tool.<br />
<br /><br />
<img src="http://www.shinylight.com/wp-content/uploads/2009/10/code-playground.jpg" alt="code-playground" title="code-playground" width="481" height="368" class="alignnone size-full wp-image-464" /></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em></em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.shinylight.com/2009/10/11/google-code-playground/&amp;submitHeadline=Google+Code+Playground&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.shinylight.com/2009/10/11/google-code-playground/&amp;title=Google+Code+Playground" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.shinylight.com/2009/10/11/google-code-playground/&amp;title=Google+Code+Playground" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.shinylight.com/2009/10/11/google-code-playground/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.shinylight.com/2009/10/11/google-code-playground/&amp;title=Google+Code+Playground" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.shinylight.com/2009/10/11/google-code-playground/&amp;bm_description=Google+Code+Playground" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.shinylight.com/2009/10/11/google-code-playground/&amp;T=Google+Code+Playground" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.shinylight.com/2009/10/11/google-code-playground/&amp;title=Google+Code+Playground" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.shinylight.com/2009/10/11/google-code-playground/&amp;title=Google+Code+Playground" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.shinylight.com/2009/10/11/google-code-playground/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.shinylight.com/2009/10/11/google-code-playground/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Google+Code+Playground+@+http://www.shinylight.com/2009/10/11/google-code-playground/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.shinylight.com/2009/10/11/google-code-playground/&amp;t=Google+Code+Playground" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.shinylight.com/2009/10/11/google-code-playground/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>JSDB from Aptana Studio</title>
		<link>http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/</link>
		<comments>http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 23:55:47 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript ide programming]]></category>

		<guid isPermaLink="false">http://www.shinylight.com/?p=438</guid>
		<description><![CDATA[Aptana Studio is a great free IDE for JavaScript. By default, you can use the its Jaxer engine to interpret your JavaScript code. However, if you prefer to use JSDB, a more console-oriented interpreted based on Mozilla SpiderMonkey, keep reading. This will set you up so that from Aptana Studio, you can write JS code, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aptana.org/studio">Aptana Studio is a great free IDE for JavaScript</a>. By default, you can use the its Jaxer engine to interpret your JavaScript code. However, if you prefer to use <a href="http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/">JSDB, a more console-oriented interpreted based on Mozilla SpiderMonkey</a>, keep reading. This will set you up so that from Aptana Studio, you can write JS code, and interpret it by hitting F5 and seeing results in the bottom panel.</p>
<p>1. Select External Tools</p>
<p><img class="alignnone size-full wp-image-439" title="1" src="http://www.shinylight.com/wp-content/uploads/2009/10/11.jpg" alt="1" width="543" height="409" /></p>
<p>2. Enter the following in the textboxes:</p>
<p><img class="alignnone size-full wp-image-440" title="2" src="http://www.shinylight.com/wp-content/uploads/2009/10/21.jpg" alt="2" width="564" height="436" /></p>
<p>Make sure the path to your project doesn&#8217;t have spaces! (bug with Eclipse)</p>
<p>3. Set the hotkey to F5 so it runs the external tool:</p>
<p><img class="alignnone size-full wp-image-441" title="3" src="http://www.shinylight.com/wp-content/uploads/2009/10/31.jpg" alt="3" width="623" height="463" /></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em></em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/&amp;submitHeadline=JSDB+from+Aptana+Studio&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/&amp;title=JSDB+from+Aptana+Studio" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/&amp;title=JSDB+from+Aptana+Studio" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/&amp;title=JSDB+from+Aptana+Studio" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/&amp;bm_description=JSDB+from+Aptana+Studio" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/&amp;T=JSDB+from+Aptana+Studio" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/&amp;title=JSDB+from+Aptana+Studio" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/&amp;title=JSDB+from+Aptana+Studio" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+JSDB+from+Aptana+Studio+@+http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/&amp;t=JSDB+from+Aptana+Studio" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.shinylight.com/2009/10/09/jsdb-from-aptana-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript for the Windows Command Console</title>
		<link>http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/</link>
		<comments>http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 02:33:06 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Automation / Scripting]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Systems]]></category>

		<guid isPermaLink="false">http://www.shinylight.com/?p=189</guid>
		<description><![CDATA[JSDB is a great JavaScript interpreter based on Mozilla&#8217;s Spidermonkey JavaScript engine. If you like working off the command console, I suggest you give it a go. Of course, not everything is supported, as there is no HTML/DOM context in the console. To compensate for it, the author of this tool has added some great [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jsdb.org/">JSDB is a great JavaScript </a>interpreter based on Mozilla&#8217;s Spidermonkey JavaScript engine. If you like working off the command console, I suggest you give it a go. Of course, not everything is supported, as there is no HTML/DOM context in the console. To compensate for it, the author of this tool has added some great features, like being able to connect to databases, use includes ( easily via the load(&#8220;file.js&#8221;) function ), and other network facilities, like fetching HTML content from other websites.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em></em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/&amp;submitHeadline=JavaScript+for+the+Windows+Command+Console&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/&amp;title=JavaScript+for+the+Windows+Command+Console" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/&amp;title=JavaScript+for+the+Windows+Command+Console" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/&amp;title=JavaScript+for+the+Windows+Command+Console" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/&amp;bm_description=JavaScript+for+the+Windows+Command+Console" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/&amp;T=JavaScript+for+the+Windows+Command+Console" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/&amp;title=JavaScript+for+the+Windows+Command+Console" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/&amp;title=JavaScript+for+the+Windows+Command+Console" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+JavaScript+for+the+Windows+Command+Console+@+http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/&amp;t=JavaScript+for+the+Windows+Command+Console" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.shinylight.com/2009/09/26/javascript-for-the-windows-command-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery JavaScript Encryption</title>
		<link>http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/</link>
		<comments>http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 06:27:10 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.shinylight.com/?p=142</guid>
		<description><![CDATA[
This is a neat way to encrypt form fields on the fly when submitting. Good way to add another layer of security. This is a jQuery plugin that uses the public-key algorithm of RSA.























]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.shinylight.com/wp-content/uploads/2009/09/jcryption.png" alt="jcryption" title="jcryption" width="210" height="92" class="alignnone size-full wp-image-143" /></p>
<p>This is a <a href="http://www.jcryption.org/"><strong>neat way to encrypt form fields</strong></a> on the fly when submitting. Good way to add another layer of security. This is a jQuery plugin that uses the public-key algorithm of RSA.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em></em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/&amp;submitHeadline=jQuery+JavaScript+Encryption&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/&amp;title=jQuery+JavaScript+Encryption" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/&amp;title=jQuery+JavaScript+Encryption" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/&amp;title=jQuery+JavaScript+Encryption" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/&amp;bm_description=jQuery+JavaScript+Encryption" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/&amp;T=jQuery+JavaScript+Encryption" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/&amp;title=jQuery+JavaScript+Encryption" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/&amp;title=jQuery+JavaScript+Encryption" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+jQuery+JavaScript+Encryption+@+http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/&amp;t=jQuery+JavaScript+Encryption" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.shinylight.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.shinylight.com/2009/09/20/jquery-javascript-encryption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

