<?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/"
	>

<channel>
	<title>Matthew Ausonio</title>
	<atom:link href="http://www.mausonio.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mausonio.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Tue, 10 Mar 2009 23:45:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Simple Tree View script with jQuery</title>
		<link>http://www.mausonio.com/posts/simple-tree-view-script-with-jquery/</link>
		<comments>http://www.mausonio.com/posts/simple-tree-view-script-with-jquery/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 18:07:40 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[css]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.mausonio.com/?p=159</guid>
		<description><![CDATA[
View Example Here
This is one of the first small scripts I wrote with jQuery way back when. It has been slightly modified over time, but the basis of how it works is the same.
The method for this requires slightly specific HTML. The &#8220;trigger&#8221; should be placed before the &#8220;container&#8221; to open in the DOM. Here [...]]]></description>
			<content:encoded><![CDATA[<div class="topImage"><a href="/posts/simple-tree-view-script-with-jquery/"><img title="jQuery - Write more. Do less." src="/wp-content/uploads/2009/02/jquery.jpg" alt="jQuery - Write more. Do less." /></a></div>
<p><a href="/examples/collapse/">View Example Here</a></p>
<p>This is one of the first small scripts I wrote with jQuery way back when. It has been slightly modified over time, but the basis of how it works is the same.<span id="more-159"></span></p>
<p>The method for this requires slightly specific HTML. The &#8220;trigger&#8221; should be placed before the &#8220;container&#8221; to open in the DOM. Here is the HTML from my example:</p>
<pre class="html">
<span class="htmlAnchorTag">&lt;a class=<span class="htmlAttributeValue">&quot;trigger&quot;</span> href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>July<span class="htmlAnchorTag">&lt;/a&gt;</span>
<span class="htmlOtherTag">&lt;ul&gt;</span>
	<span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Post 1<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
	<span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Post 2<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
	<span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Post 3<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
	<span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Post 4<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
	<span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Post 5<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
	<span class="htmlOtherTag">&lt;li&gt;</span><span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;#&quot;</span>&gt;</span>Post 6<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlOtherTag">&lt;/li&gt;</span>
<span class="htmlOtherTag">&lt;/ul&gt;</span>
</pre>
<p>My example also includes class names on the UL tags. But this is only for styling and is not required for the script to work. Here is the javascript from the example:</p>
<pre class="js">
$(document).ready(function(){
	$("a.trigger").click(function () {
		$(this).next().animate({
			 height: 'toggle', opacity: 'toggle'
		}, "slow");
		$(this).toggleClass("opened");
	});
	return false;
});
</pre>
<p>And that&#8217;s it in a nutshell. <a href="/examples/collapse/">My example</a> shows multiple levels done with this script. But remember that this is only a starting point for more of your own custom scripts. I just wanted to get you thinking. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mausonio.com/posts/simple-tree-view-script-with-jquery/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Live: mausonio.com v2</title>
		<link>http://www.mausonio.com/posts/mausoniocom-v2/</link>
		<comments>http://www.mausonio.com/posts/mausoniocom-v2/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 22:59:09 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[general]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://192.168.101.123:9002/?p=151</guid>
		<description><![CDATA[
Finally, it&#8217;s done.  This is proof that I haven&#8217;t been completely ignoring the blog.  It has taken quite a bit of time to finish version 2 of the site, and now that it&#8217;s done I can get back to writing more content. 
I plan to write about all the plugins and scripts I used in the [...]]]></description>
			<content:encoded><![CDATA[<div class="topImage"><img title="mausonio.com v2" src="/wp-content/uploads/2008/12/mausonio_v2.jpg" alt="mausonio.com v2" /></div>
<p>Finally, it&#8217;s done.  This is proof that I haven&#8217;t been completely ignoring the blog.  It has taken quite a bit of time to finish version 2 of the site, and now that it&#8217;s done I can get back to writing more content. </p>
<p>I plan to write about all the plugins and scripts I used in the new build.  Including all the personal tweaks I had to make to WordPress in the process and all the additions to the site in general.  I learned some interesting things that I can share. There is also the whole re-design aspect to talk about which will probably be kept separate from the technical side.</p>
<p>Anywho, it&#8217;s done&#8230;.mostly.  There are actually some additions I already have planned.  But it&#8217;s just not time for those things yet.  Feel free to celebrate with me by leaving a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mausonio.com/posts/mausoniocom-v2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Desktopography Exhibition 2008</title>
		<link>http://www.mausonio.com/posts/desktopography-exhibition-2008/</link>
		<comments>http://www.mausonio.com/posts/desktopography-exhibition-2008/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 18:19:19 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[general]]></category>

		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://localhost:9002/?p=85</guid>
		<description><![CDATA[
If you haven&#8217;t yet, you should go check out the 2008 exhibition from Desktopography.  It&#8217;s a great package to refresh your desktop collection. They have a few in there that look great on dual monitors as well.
]]></description>
			<content:encoded><![CDATA[<div class="topImage"><img class="alignleft" src="/wp-content/uploads/2008/12/desktopography.jpg" alt="desktopography 2008" title="desktopography 2008" /></div>
<p>If you haven&#8217;t yet, you should go check out the <a href="http://desk08.customize.org/exhibition/4">2008 exhibition from Desktopography</a>.  It&#8217;s a great package to refresh your desktop collection. They have a few in there that look great on dual monitors as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mausonio.com/posts/desktopography-exhibition-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I&#8217;m Still Here</title>
		<link>http://www.mausonio.com/posts/im-still-here/</link>
		<comments>http://www.mausonio.com/posts/im-still-here/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 00:29:14 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Web Dev]]></category>

		<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://localhost:9002/?p=52</guid>
		<description><![CDATA[
So, it has been four months since my last post.  Since then, this site has actually gone through a lot.  It was hacked (always upgrade your WordPress), went through a long process of &#8220;getting things back online&#8221;(please leave comments if there are still broken links) and bombarded by spam comments(which is just plain [...]]]></description>
			<content:encoded><![CDATA[<div class="topImage"><img src="/wp-content/uploads/2008/08/still-alive.jpg" alt="Still Alive" /></div>
<p>So, it has been four months since my last post.  Since then, this site has actually gone through a lot.  It was hacked (always upgrade your WordPress), went through a long process<span id="more-52"></span> of &#8220;getting things back online&#8221;(please leave comments if there are still broken links) and bombarded by spam comments(which is just plain annoying).</p>
<p>The four months has also consisted of good things though. I&#8217;ve been busy with side work.  And I have been working on a new design for this blog which I hope to have finished soon.</p>
<p>That&#8217;s about it.  It&#8217;s good to write a post again.  Now I just need to make myself keep doing it.  It&#8217;s all about discipline.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mausonio.com/posts/im-still-here/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Possible New Web Design Trend</title>
		<link>http://www.mausonio.com/posts/a-possible-new-web-design-trend/</link>
		<comments>http://www.mausonio.com/posts/a-possible-new-web-design-trend/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 18:26:00 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Favorite Links]]></category>

		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://www.mausonio.com/?p=56</guid>
		<description><![CDATA[
There was an interesting article I found about a new possible trend in web design.  The author calls this trend, which is based on designs that incorporate design elements of space and/or nebula-ish light effects,  &#8221;out of this world.&#8221;  Here is a short quote:
&#8220;The last theme I noticed a lot of designers implementing was a wood grain theme, where [...]]]></description>
			<content:encoded><![CDATA[<div class="topImage"><img src="/wp-content/uploads/2008/05/space.jpg" alt="Space" /></div>
<p>There was an interesting article I found about a new possible trend in web design.  The author calls this trend, which is based on designs that incorporate design elements of space and/or nebula-ish light effects,  &#8221;out of this world.&#8221;<span id="more-29"></span>  Here is a short quote:</p>
<blockquote><p>&#8220;The last theme I noticed a lot of designers implementing was a wood grain theme, where the background would be some sort of wood texture and often you would see the text over rectangles with lowered opacity. This theme is still all over the place, but now I’m starting to see a lot of websites with this space theme.&#8221;</p></blockquote>
<p><a title="http://www.youthedesigner.com/2008/04/14/a-new-out-of-this-world-trend-in-web-design/" href="http://www.youthedesigner.com/2008/04/14/a-new-out-of-this-world-trend-in-web-design/">Check out the article for yourself</a>.  It is a good read, with plenty of pretty pictures.  Err, I mean, examples. Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mausonio.com/posts/a-possible-new-web-design-trend/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WebKit Passes Acid 3</title>
		<link>http://www.mausonio.com/posts/webkit-passes-acid-3/</link>
		<comments>http://www.mausonio.com/posts/webkit-passes-acid-3/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 18:02:17 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[acid test]]></category>

		<category><![CDATA[markup]]></category>

		<category><![CDATA[safari]]></category>

		<category><![CDATA[webkit]]></category>

		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.mausonio.com/?p=55</guid>
		<description><![CDATA[WebKit public build has pretty much passed Acid 3.  This is great news.  It seems like the fight for browsers to be standards compliant is getting closer  and closer to ending.  Now let&#8217;s see how long it takes IE and FireFox to pass Acid 3&#8230;
]]></description>
			<content:encoded><![CDATA[<p><a href="http://webkit.org/blog/173/webkit-achieves-acid3-100100-in-public-build/">WebKit public build has pretty much passed Acid 3</a>.  This is great news.  It seems like the fight for browsers to be standards compliant is getting closer  and closer to ending.  Now let&#8217;s see how long it takes IE and FireFox to pass Acid 3&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mausonio.com/posts/webkit-passes-acid-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress 2.5 RC1</title>
		<link>http://www.mausonio.com/posts/wordpress-25-rc1/</link>
		<comments>http://www.mausonio.com/posts/wordpress-25-rc1/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 00:15:49 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[general]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.mausonio.com/?p=54</guid>
		<description><![CDATA[So today I downloaded and installed WordPress 2.5(currently in its release candidate stage).  As of yet, I like it.  The admin has a fresh and simple look to it.  And the separation of tags and categories is welcome.  They changed the widgets &#8220;drag n&#8217; drop&#8221; interface a bit, but it is just as easy to manage.  [...]]]></description>
			<content:encoded><![CDATA[<p>So today I downloaded and installed WordPress 2.5(currently in its release candidate stage).  As of yet, I like it.  The admin has a fresh and simple look to it.  And the separation of tags and categories is welcome.  They changed the widgets &#8220;drag n&#8217; drop&#8221; interface a bit, but it is just as easy to manage.  So far I have only encountered one minor bug during my 5 minutes of poking around.  If you want to download it just <a href="http://wordpress.org/development/2008/03/25-sneak-peek/">click here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mausonio.com/posts/wordpress-25-rc1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Acid Test 3 Released</title>
		<link>http://www.mausonio.com/posts/acid-test-3-released/</link>
		<comments>http://www.mausonio.com/posts/acid-test-3-released/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 23:08:20 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Web Dev]]></category>

		<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.mausonio.com/?p=53</guid>
		<description><![CDATA[Apparently it is a good week for web news.  The new Acid test was released by the folks at webstandards.org on Monday.  And it looks like the winning browser is&#8230;. no one?  Check out this quote from a statement on webstandards.org:
&#8220;As a series of 100 mini-tests, Acid3 has already been found to expose flaws in all [...]]]></description>
			<content:encoded><![CDATA[<p>Apparently it is a good week for web news.  The new Acid test was released by the folks at webstandards.org on Monday.  And it looks like the winning browser is&#8230;. no one?  Check out this quote <a title="Acid3: Putting Browser Makers on Notice, Again." href="http://www.webstandards.org/press/releases/20080303/">from a statement </a>on webstandards.org:</p>
<blockquote><p>&#8220;As a series of 100 mini-tests, Acid3 has already been found to expose flaws in all tested browsers, including Internet Explorer, Firefox, Opera, and Safari. WaSP hopes that Acid3 will prove useful to browser makers during the development of future versions of their products.&#8221;</p></blockquote>
<p>Now I&#8217;m wondering how IE8 will handle it after their <a title="Internet Explorer 8 and Acid2: A Milestone" href="http://blogs.msdn.com/ie/archive/2007/12/19/internet-explorer-8-and-acid2-a-milestone.aspx">big announcement about passing Acid2</a>. Maybe we will find out soon&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mausonio.com/posts/acid-test-3-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IE8&#8217;s Big Change</title>
		<link>http://www.mausonio.com/posts/ie8s-big-change/</link>
		<comments>http://www.mausonio.com/posts/ie8s-big-change/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 20:45:12 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Web Dev]]></category>

		<category><![CDATA[general]]></category>

		<category><![CDATA[browser]]></category>

		<category><![CDATA[internet explorer]]></category>

		<category><![CDATA[markup]]></category>

		<category><![CDATA[microsoft]]></category>

		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.mausonio.com/?p=52</guid>
		<description><![CDATA[Yesterday, Microsoft released some great news about the future of IE8.  You all should really read it for yourself ASAP. Here is a good excerpt to give you the just:
&#8220;Our initial thinking for IE8 involved showing pages requesting “Standards” mode in an IE7’s “Standards” mode, and requiring developers to ask for IE8’s actual “Standards” mode separately. We [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, Microsoft released some great news about the future of IE8.  You all should really <a title="Microsoft's Interoperability Principles and IE8" href="http://blogs.msdn.com/ie/archive/2008/03/03/microsoft-s-interoperability-principles-and-ie8.aspx">read it for yourself </a>ASAP. Here is a good excerpt to give you the just:</p>
<blockquote><p>&#8220;Our initial thinking for IE8 involved showing pages requesting “Standards” mode in an IE7’s “Standards” mode, and requiring developers to ask for IE8’s actual “Standards” mode separately. We made this decision, informed by discussions with some leading web experts, with compatibility at the top of mind.</p>
<p>In light of the Interoperability Principles, as well as feedback from the community, we’re choosing differently. Now, IE8 will show pages requesting “Standards” mode in IE8’s Standards mode. Developers who want their pages shown using IE8’s “IE7 Standards mode” will need to request that explicitly&#8221;</p></blockquote>
<p>In case you havent been keeping up, many people disagreed with the &#8220;initial thinking&#8221; by the IE8 team(including myself). This new direction, in my opinion, is the correct one. Read on for yourself, and feel free to leave your thoughts/comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mausonio.com/posts/ie8s-big-change/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Safari 3 CSS Hack</title>
		<link>http://www.mausonio.com/posts/safari-3-css-hack/</link>
		<comments>http://www.mausonio.com/posts/safari-3-css-hack/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 18:29:51 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Web Dev]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[css hack]]></category>

		<category><![CDATA[safari]]></category>

		<category><![CDATA[web development]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://www.mausonio.com/?p=51</guid>
		<description><![CDATA[I hate CSS hacks.  I do.  But in all honestly, I like to try and find new ones.  Maybe it&#8217;s the discovery feeling I&#8217;m after.  Like I have found a hidden gem or something.  I don&#8217;t know, but I keep playing around with CSS in hopes of finding new things all the time.  And so, [...]]]></description>
			<content:encoded><![CDATA[<p>I hate CSS hacks.  I do.  But in all honestly, I like to try and find new ones.  Maybe it&#8217;s the discovery feeling I&#8217;m after.  Like I have found a hidden gem or something.  I don&#8217;t know, but I keep playing around with CSS in hopes of finding new things all the time.  And so, when recently reveiwing with the hack I discovered a while ago (<a title="Permanent Link: Safari 2.0 Specific CSS Hack?" rel="bookmark" href="/posts/safari-2-specific-css-hack/">Safari 2.0 Specific CSS Hack?</a> ) I realized that it was a bit annoying if you actually needed to use it.  Not only did it need to target an element through a parent and not directly, but you also needed to &#8220;un-do&#8221; the hack for IE.<br />
<span id="more-24"></span><br />
The need for an improved version was obvious.  And so, I give you the Safari 3 CSS hack.  <strong>I don&#8217;t have Safari 2 anymore to test with, so if you have it please let me know if it works.</strong>  But as for now I&#8217;ll will only claim for it to work in Safari 3 (PC and Mac).  Here are the browsers I have tested on:</p>
<ul>
<li>Windows XP - Firefox 2.0.0.12</li>
<li>Windows XP - IE 7</li>
<li>Windows XP - IE6 (standalone version)</li>
<li>Mac OS X (10.4.11) - Firefox 2.0.0.12</li>
<li>Mac OS X (10.4.11) - Safari 3.0.4</li>
</ul>
<p>Let me make one thing clear before I show the code and give an example: <strong>I believe that if you reach a point where you need to &#8220;hack&#8221; Safari, then there is something wrong with your code, not with Safari.</strong>  With that said, we have all had those late nights before something is due and need a quick fix.  And thus, I give you the new Safari CSS hack:</p>
<pre class="css">
<span class="cssSelector">#tester:first-of-type {</span> background:green <span class="cssSelector">}</span>
</pre>
<p>Now, I know what you&#8217;re thinking, but even though it says first-of-type it will apply to all elements of a given class name, not only the first one.  On a sad note, it is only a matter of time until all other browsers support this pseudo-class.  So for those of you who want a little extra insurance on your hack, feel free to mix it with the previous Safari CSS hack I have posted like so:</p>
<pre class="css"><span class="cssComment">/*/*/</span>html*#<span class="cssProperty">tester</span><span class="cssRest">:</span><span class="cssValue">first-of-type {background:green</span><span class="cssRest">;</span>}<span class="cssComment">/* */</span></pre>
<p>As always, please leave a comment with your browser and OS versions along with your result to the test example. Thanks.</p>
<p><a title="Safari 3 CSS Hack example" href="/wp-content/uploads/examples/safari3/" target="_blank"><strong>View Example Here</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mausonio.com/posts/safari-3-css-hack/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

