<?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>Davs Rants and Random Thoughts &#187; yui</title>
	<atom:link href="http://blog.davglass.com/category/yui/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.davglass.com</link>
	<description></description>
	<lastBuildDate>Wed, 18 Nov 2009 06:30:20 +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>YUI 3 Gallery &#8211; Hidden Features</title>
		<link>http://blog.davglass.com/2009/11/yui-3-gallery-hidden-features/</link>
		<comments>http://blog.davglass.com/2009/11/yui-3-gallery-hidden-features/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 19:55:35 +0000</pubDate>
		<dc:creator>Dav Glass</dc:creator>
				<category><![CDATA[Yahoo!]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://blog.davglass.com/?p=225</guid>
		<description><![CDATA[Today the YUI Team announced the little project I have been working on for the last couple of months. The YUI 3 Gallery.
So I figured I would write a little post to show a few of the &#8220;hidden&#8221; features of the Gallery and how you can use them.
JS Lint:
Every module that we push to the [...]]]></description>
			<content:encoded><![CDATA[<p>Today the <a href="http://www.yuiblog.com/blog/2009/11/04/introducing-the-yui-3-gallery/">YUI Team announced</a> the little project I have been working on for the last couple of months. The <a href="http://yuilibrary.com/gallery/">YUI 3 Gallery</a>.</p>
<p>So I figured I would write a little post to show a few of the <em>&#8220;hidden&#8221;</em> features of the Gallery and how you can use them.</p>
<p><strong>JS Lint:</strong><br />
Every module that we push to the CDN has to go through our build system that uses the <a href="http://yuilibrary.com/projects/builder/">YUI Builder Tool</a>. The Builder concatenates files, then compresses them with <a href="http://developer.yahoo.com/yui/compressor/">YUICompressor</a> and runs <a href="http://jslint.org/">JSLint</a> on them a couple of times. We include this output on every build, so you as the end-user can see that output and use it to determine if you want to use the module in your application. If you look at my <a href="http://yuilibrary.com/gallery/show/yql">YQL Module</a> and click the link for the <a href="http://yuilibrary.com/gallery/buildtag/yql/gallery-2009.10.27">Build Tag</a> <em>(Which is the stamp we give each CDN push)</em>, you will see the code that is required to load this module on your page. Just below that you can see a link called &#8220;[Show Build Output]&#8220;. Clicking that link will show you the raw output generated by the build system.</p>
<p><strong>Loader</strong><br />
Some people have asked why they have to include the config in their <code>YUI</code> instance, to make a Gallery item work.</p>
<p><img src="http://img.skitch.com/20091104-kuxd7ccxfndd6yte5jyj9m9k9y.jpg" alt="Code Snippet" /></p>
<p>The short answer is: <em>We didn&#8217;t want to release a YUI 3.0.1 just to add a couple of lines to one file.</em><br />
The longer answer is: When we release YUI 3.1.0, this will be built into the <code>Loader</code> module. And it will be done for you automatically. Since the files are hosted on the CDN, but are not in the same directory as the YUI files are, we had to modify <code>Loader</code> to know about Gallery modules and make it smart enough to change directories to use the CDN.</p>
<p>However, I have built an API into the Gallery to help with this.</p>
<p><img src="http://img.skitch.com/20091104-quse8jssfmu1j43e6mr74c23b2.jpg" alt="Loader Code" /></p>
<p><a href="http://davglass.github.com/gallery/loader/">This example</a> shows how you can load a single js file from YUILibrary.com and plug it into your <code>YUI</code> instance and have access to all the gallery modules that are currently on the CDN.</p>
<p><strong>API</strong><br />
The Gallery was designed with a pretty robust API exposed to help developers and users get the most out of the data inside the Gallery.<br />
Here is the list of valid API endpoints:</p>
<ul>
<li><a href="http://yuilibrary.com/gallery/api/loader">http://yuilibrary.com/gallery/api/loader</a></li>
<li><a href="http://yuilibrary.com/gallery/api/user/davglass">http://yuilibrary.com/gallery/api/user/davglass</a> <em>(works for any username)</em></li>
<li><a href="http://yuilibrary.com/gallery/api/show/yql">http://yuilibrary.com/gallery/api/show/yql</a> <em>(works for any module name)</em></li>
<li><a href="http://yuilibrary.com/gallery/api/random">http://yuilibrary.com/gallery/api/random</a></li>
<li><a href="http://yuilibrary.com/gallery/api/oncdn">http://yuilibrary.com/gallery/api/oncdn</a></li>
<li><a href="http://yuilibrary.com/gallery/api/featured">http://yuilibrary.com/gallery/api/featured</a></li>
<li><a href="http://yuilibrary.com/gallery/api/popular">http://yuilibrary.com/gallery/api/popular</a></li>
</ul>
<p><strong>Command Line</strong><br />
Last, but not least, my <code>yui-git</code> command line tool has support for the Gallery now.<br />
You can query all the items in the Pending CDN Queue and check them out into a branch to test them before they are on the CDN.</p>
<p>That&#8217;s about it for now, hope you all enjoy the new Gallery &#038; I hope to see lots of new modules in there soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davglass.com/2009/11/yui-3-gallery-hidden-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GitHub @ Yahoo! &#8211; YUI Theater scoop!</title>
		<link>http://blog.davglass.com/2009/08/github-yahoo-yui-theater-scoop/</link>
		<comments>http://blog.davglass.com/2009/08/github-yahoo-yui-theater-scoop/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 21:57:42 +0000</pubDate>
		<dc:creator>Dav Glass</dc:creator>
				<category><![CDATA[Yahoo!]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://blog.davglass.com/?p=214</guid>
		<description><![CDATA[A few weeks ago, the awesome GitHub crew (Chris, Tom &#038; Scott) dropped by Yahoo! to give a tech talk. They talk about Git, GitHub, Social Coding and more. And you get to see the video before it hits YUI Theater!!

]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, the awesome <a href="http://github.com">GitHub</a> crew (<a href="http://github.com/defunkt">Chris</a>, <a href="http://github.com/mojombo">Tom</a> &#038; <a href="http://github.com/schacon">Scott</a>) dropped by Yahoo! to give a tech talk. They talk about Git, GitHub, Social Coding and more. And you get to see the video before it hits YUI Theater!!</p>
<div style=" width: 640; height=360;margin:2em;">
<object width="640" height="360" allowFullScreen="true"><param name="movie" value="http://cosmos.bcst.yahoo.com/up/ypp/default/player.swf"></param><param name="flashVars" value="vid=15004396&#038;autoPlay=0&#038;thumbnailUrl=http://yuiblog.com/assets/prestonwerner-github-20090810-104435.jpg"</param><param name="wmode" value="transparent"></param>
 <embed width="640" height="360" allowFullScreen="true" src="http://cosmos.bcst.yahoo.com/up/ypp/default/player.swf" type="application/x-shockwave-flash" flashvars="vid=15004396&#038;autoPlay=0&#038;thumbnailUrl=http://yuiblog.com/assets/prestonwerner-github-20090810-104435.jpg"></embed></object>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.davglass.com/2009/08/github-yahoo-yui-theater-scoop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>3 Years Ago&#8230;</title>
		<link>http://blog.davglass.com/2009/07/3-years-ago/</link>
		<comments>http://blog.davglass.com/2009/07/3-years-ago/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 14:09:23 +0000</pubDate>
		<dc:creator>Dav Glass</dc:creator>
				<category><![CDATA[Yahoo!]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://blog.davglass.com/?p=196</guid>
		<description><![CDATA[Three years ago today, I posted my first YUI example to the ydn-javascript list.
Here is the message:

#first_code { border: 1px solid black; background-color: #ccc; margin: 1em; padding: 1em;  }

You can use a simple addListener like so:

YAHOO.util.Event.addListener([HTMLObject], 'contextmenu', CallBackFunction);

You can see a working example here:

http://blog.davglass.com/files/yahoo/index.html

FYI, I am also using the YAHOO.namespace in the example.
The link [...]]]></description>
			<content:encoded><![CDATA[<p>Three years ago today, I posted my first <a href="http://developer.yahoo.com">YUI</a> example to the <a href="http://tech.groups.yahoo.com/group/ydn-javascript">ydn-javascript</a> list.</p>
<p>Here is the <a href="http://tech.groups.yahoo.com/group/ydn-javascript/message/3206">message</a>:</p>
<style>
#first_code { border: 1px solid black; background-color: #ccc; margin: 1em; padding: 1em;  }
</style>
<pre id="first_code">You can use a simple addListener like so:

YAHOO.util.Event.addListener([HTMLObject], 'contextmenu', CallBackFunction);

You can see a working example here:

http://blog.davglass.com/files/yahoo/index.html

FYI, I am also using the YAHOO.namespace in the example.</pre>
<p>The <a href="http://blog.davglass.com/files/yahoo/index.html">link to that code still works</a> <img src='http://blog.davglass.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>After reading a few of the old posts I thought I would do a little data collection &#038; here&#8217;s what I came up with. In the last 3 years:</p>
<ul>
<li>17,747 lines of YUI code w/comments</li>
<li>2,130 posts to ydn-javascript</li>
<li>432 public bugs fixed</li>
<li>222 posts to the new <a href="http://yuilibrary.com/forum/">YUILibrary.com</a> forum</li>
<li><a href="http://blog.davglass.com/2006/06/yui-code-samples/">211 public examples</a></li>
<li>15 talks</li>
<li><a href="http://developer.yahoo.com/yui/editor/">1 Video</a></li>
</ul>
<p>Wow, it&#8217;s been an awesome 3 years.. Here&#8217;s to 3 more with YUI 3 !!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davglass.com/2009/07/3-years-ago/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Git helper for YUI Contributors v1</title>
		<link>http://blog.davglass.com/2009/04/git-helper-for-yui-contributors-v1/</link>
		<comments>http://blog.davglass.com/2009/04/git-helper-for-yui-contributors-v1/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 22:37:59 +0000</pubDate>
		<dc:creator>Dav Glass</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://blog.davglass.com/?p=171</guid>
		<description><![CDATA[Last week I started working on a little helper utility to aid YUI Contributors with GitHub and git.
Currently it is quite usable and ready for people to start using and providing some feedback.
The full source is available on GitHub: http://github.com/davglass/yui-git/
This helper app is an addition to the already awesome git porcelain (meaning pretty, not brittle). [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I started working on a little helper utility to aid <a href="http://developer.yahoo.com/yui/community/">YUI Contributors</a> with <a href="http://github.com/">GitHub</a> and git.</p>
<p>Currently it is quite usable and ready for people to start using and providing some feedback.</p>
<p>The full source is available on GitHub: <a href="http://github.com/davglass/yui-git/" target="_blank">http://github.com/davglass/yui-git/</a></p>
<p>This helper app is an addition to the already awesome git porcelain (meaning pretty, not brittle). When you place the <code>git-yui</code> file in your path, you will now have access to the <code>git yui</code> set of sub commands.</p>
<p>The commands that are currently supported are:</p>
<ul>
<li><code>git yui up</code></li>
<li><code>git yui merge</code></li>
<li><code>git yui sync</code></li>
<li><code>git yui build</code></li>
<li><code>git yui docs</code></li>
<li><code>git yui lint</code></li>
<li><code>git yui network</code></li>
<li><code>git yui pullrequest</code></li>
<li><code>git yui commits</code></li>
<li><code>git yui create</code></li>
<li><code>git yui log</code></li>
</ul>
<p>The above commands are explained in full here:<a href="http://wiki.github.com/davglass/yui-git"> http://wiki.github.com/davglass/yui-git</a></p>
<p>Each of these commands are specific to YUI projects (yui2, yui3, yuidoc, builder). Some are only for yui2 and yui3: docs/build.</p>
<p>Hopefully these tools will help when contributing code.</p>
<p>Let me know what everyone thinks and please feel free to ask for feature requests <img src='http://blog.davglass.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davglass.com/2009/04/git-helper-for-yui-contributors-v1/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Opening my examples..</title>
		<link>http://blog.davglass.com/2008/11/opening-my-examples/</link>
		<comments>http://blog.davglass.com/2008/11/opening-my-examples/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 04:01:21 +0000</pubDate>
		<dc:creator>Dav Glass</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://blog.davglass.com/2008/11/opening-my-examples/</guid>
		<description><![CDATA[I just finished the first scrub of my YUI examples, as of tonight I have 268!!
And it gets better  
Tonight I have pushed the full batch to GitHub.
The full source to all of my examples are now available for cloning via git.
For more information on Git, see the guides section on GitHub.
I will be [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished the first scrub of my YUI examples, as of tonight I have 268!!</p>
<p>And it gets better <img src='http://blog.davglass.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Tonight I have pushed the full batch to <a title="GitHub Source View" target="_blank" href="http://github.com/davglass/yui-examples/tree/master">GitHub</a>.</p>
<p>The full source to all of my examples are now available for cloning via git.</p>
<p>For more information on Git, see the <a title="Git Guides" href="http://github.com/guides/home">guides section on GitHub</a>.</p>
<p>I will be happy to accept updates/additions or fixes for any and all examples, so feel free to clone and update the repository.</p>
<p>I am in the process of moving to a new web host that supports git on the server, so it may take a little bit for me to catchup with any changes you make.</p>
<p>On another note, my <a title="Tools Package on GitHub" href="http://github.com/davglass/yui-tools/tree">Tools</a> and <a title="HTML Forms on GitHub" href="http://github.com/davglass/yui-dhtml-forms/tree">DHTML Forms</a> packages are also available via git.</p>
<p><em>Update:</em> Just added my <a title="Dav's Effects Package on GitHub" href="http://github.com/davglass/yui-effects/tree/master">Effects</a> package as well..</p></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davglass.com/2008/11/opening-my-examples/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>YUI Local Combo Handler</title>
		<link>http://blog.davglass.com/2008/11/yui-local-combo-handler/</link>
		<comments>http://blog.davglass.com/2008/11/yui-local-combo-handler/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 16:52:31 +0000</pubDate>
		<dc:creator>Dav Glass</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://blog.davglass.com/2008/11/yui-local-combo-handler/</guid>
		<description><![CDATA[There have been several questions on how to use the Yahoo! combo handler to serve YUI files over SSL. The Yahoo! combo handler doesn&#8217;t support SSL, so I needed another option.
I have written an example what shows how to setup a local combo handler and configure YUI 2.6.0 to use it.
Currently the example doesn&#8217;t work [...]]]></description>
			<content:encoded><![CDATA[<p>There have been several questions on how to use the Yahoo! combo handler to serve YUI files over SSL. The Yahoo! combo handler doesn&#8217;t support SSL, so I needed another option.</p>
<p><a href="http://blog.davglass.com/files/yui/combo/">I have written an example</a> what shows how to setup a local combo handler and configure YUI 2.6.0 to use it.</p>
<p>Currently the example doesn&#8217;t work for YUI 3.0.0pr1 but it will once YUI 3.0.0pr2 is released.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davglass.com/2008/11/yui-local-combo-handler/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RTE Tech Talk Video</title>
		<link>http://blog.davglass.com/2008/04/rte-tech-talk-video/</link>
		<comments>http://blog.davglass.com/2008/04/rte-tech-talk-video/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 21:40:55 +0000</pubDate>
		<dc:creator>Dav Glass</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://blog.davglass.com/2008/04/rte-tech-talk-video/</guid>
		<description><![CDATA[It&#8217;s been almost a year since I joined the YUI team and today I welcome my first YUI video. Last week I gave a presentation about the YUI RTE and it&#8217;s now available online in the YUI Theater. You can find all of the presentation slides here on my site.
Let me know what you think [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://video.yahoo.com/watch/2359450/7378948"><img  alt="Play The Video" title="Play The Video" style="border: 1px solid black; margin: 10px; width: 250px; height: 170px;" src="http://yuiblog.com/assets/davglass-techtalk.jpg" align="right"></a>It&#8217;s been almost a year since I joined the YUI team and today I welcome my first YUI video. Last week I gave a presentation about the YUI RTE and it&#8217;s now available online in the <a title="YUI Blog Post" target="_blank" href="http://yuiblog.com/blog/2008/04/14/video-glass-rte/">YUI Theater</a>. You can find all of the <a title="Presentation Slides" href="http://blog.davglass.com/files/yui/rtetalk/">presentation slides here on my site</a>.</p>
<p>Let me know what you think of my rookie debut on video <img src='http://blog.davglass.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davglass.com/2008/04/rte-tech-talk-video/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Screenshots of my Complex Example on an iPhone</title>
		<link>http://blog.davglass.com/2008/03/screenshots-of-my-complex-example-on-an-iphone/</link>
		<comments>http://blog.davglass.com/2008/03/screenshots-of-my-complex-example-on-an-iphone/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 01:42:06 +0000</pubDate>
		<dc:creator>Dav Glass</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[pics]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://blog.davglass.com/2008/03/screenshots-of-my-complex-example-on-an-iphone/</guid>
		<description><![CDATA[Here are a few screenshots of my Complex Example rendering on an iPhone. 
]]></description>
			<content:encoded><![CDATA[<p>Here are a few screenshots of my <a target="_blank" href="http://developer.yahoo.com/yui/examples/layout/adv_layout_source.html">Complex Example</a> rendering on an iPhone. <a href="http://www.flickr.com/photos/davglass/sets/72157604111000792/"><img  alt="YUI Layout Manager - Complex Example - Home" src="http://static.flickr.com/3147/2332358978_c03a4f470e_m.jpg" title="YUI Layout Manager - Complex Example - Home" align="right"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davglass.com/2008/03/screenshots-of-my-complex-example-on-an-iphone/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>More YUI/AIR goodness</title>
		<link>http://blog.davglass.com/2008/03/more-yuiair-goodness/</link>
		<comments>http://blog.davglass.com/2008/03/more-yuiair-goodness/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 19:24:23 +0000</pubDate>
		<dc:creator>Dav Glass</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://blog.davglass.com/2008/03/more-yuiair-goodness/</guid>
		<description><![CDATA[I have been working on some more AIR apps with YUI and figured I would share them here. The first one is a port of my YUI CSS GridBuilder. The addition to this little app is the ability to save the layout to a file.
The second app, is an offline doc browser for the YUI [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.davglass.com/files/yui/air2/"><img  alt="" style="border: 1px solid black; margin: 10px;" src="http://blog.davglass.com/files/yui/air2/grids.jpg" align="right"></a><a href="http://blog.davglass.com/files/yui/air3/"><img  alt="" style="border: 1px solid black; margin: 10px;" src="http://blog.davglass.com/files/yui/air3/docs.jpg" align="right"></a>I have been working on some more AIR apps with YUI and figured I would share them here. The first one is a port of my <a target="_blank" href="http://developer.yahoo.com/yui/grids/builder/">YUI CSS GridBuilder</a>. The addition to this <a href="http://blog.davglass.com/files/yui/air2/">little app</a> is the ability to save the layout to a file.</p>
<p>The <a href="http://blog.davglass.com/files/yui/air3/">second app</a>, is an offline doc browser for the <a href="http://developer.yahoo.com/yui/docs">YUI docs</a>.</p>
<p>Hope you enjoy them <img src='http://blog.davglass.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davglass.com/2008/03/more-yuiair-goodness/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>YUI and Adobe AIR &#8211; Sample App</title>
		<link>http://blog.davglass.com/2008/02/yui-and-adobe-air-sample-app/</link>
		<comments>http://blog.davglass.com/2008/02/yui-and-adobe-air-sample-app/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 14:53:52 +0000</pubDate>
		<dc:creator>Dav Glass</dc:creator>
				<category><![CDATA[Yahoo!]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://blog.davglass.com/2008/02/yui-and-adobe-air-sample-app/</guid>
		<description><![CDATA[With the release of Adobe AIR 1.0 today, I figured I should package a sample AIR app using the latest YUI release. And what better example of showing YUI 2.5.0 in all it&#8217;s glory than to convert my Complex Application example. 
This example contains a patched version of the YUI Editor that makes the Editor [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.davglass.com/files/yui/air1/"><img  alt="" style="border: 1px solid black; margin: 10px; height: 100px;" src="http://blog.davglass.com/files/yui/air1/yui.jpg" align="right"></a>With the release of Adobe AIR 1.0 today, I figured I should package a sample AIR app using the latest YUI release. And what better example of showing YUI 2.5.0 in all it&#8217;s glory than to convert my <a target="_blank" href="http://developer.yahoo.com/yui/examples/layout/adv_layout_source.html">Complex Application example</a>. </p>
<p><em>This example contains a <strong>patched</strong> version of the <a target="_blank" href="http://developer.yahoo.com/yui/editor/">YUI Editor</a> that makes the Editor render inside of AIR. The Editor contained in this app is not a fully functional version of the Editor Control (I am still working on that).</em></p>
<p>You can download and install the <a href="http://blog.davglass.com/files/yui/air1/">AIR app from here</a>.</p>
<p>So you can see what I have done, I have included the source for the <a href="http://blog.davglass.com/files/yui/air1/yui_complex.tar.gz">AIR app here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.davglass.com/2008/02/yui-and-adobe-air-sample-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
