<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Optimal OPML Browser Released</title>
	<atom:link href="http://yabfog.com/blog/2006/02/23/optimal-opml-browser-released/feed" rel="self" type="application/rss+xml" />
	<link>http://yabfog.com/blog/2006/02/23/optimal-opml-browser-released</link>
	<description>Yet another blog full of gas</description>
	<lastBuildDate>Tue, 13 Dec 2011 12:35:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Dan</title>
		<link>http://yabfog.com/blog/2006/02/23/optimal-opml-browser-released/comment-page-1#comment-209</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Sat, 25 Feb 2006 21:53:41 +0000</pubDate>
		<guid isPermaLink="false">http://yabfog.com/wp/2006/02/23/optimal-opml-browser-released/#comment-209</guid>
		<description>I&#039;d also like to look to the source OPML for that info, too. After all, there is an expansionState element in the head element....</description>
		<content:encoded><![CDATA[<p>I'd also like to look to the source OPML for that info, too. After all, there is an expansionState element in the head element....</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://yabfog.com/blog/2006/02/23/optimal-opml-browser-released/comment-page-1#comment-208</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Sat, 25 Feb 2006 21:51:51 +0000</pubDate>
		<guid isPermaLink="false">http://yabfog.com/wp/2006/02/23/optimal-opml-browser-released/#comment-208</guid>
		<description>Thanks, Matt. I&#039;m not into JavaScript very heavily (which is why it took me so long to get the inclusion working), so I&#039;ll take any suggestions.

The issue I&#039;m more concerned with at the moment, though, is passing a parameter in the query string along with the url that determines the INITIAL expand/collapse state: something like expansionstate=0 for collapse all, expansionstate=1 to expand the first level, expansionstate=-1 to expand all, etc.

To be honest, I think I&#039;ve got it. I just need to sit down and code it. :)</description>
		<content:encoded><![CDATA[<p>Thanks, Matt. I'm not into JavaScript very heavily (which is why it took me so long to get the inclusion working), so I'll take any suggestions.</p>
<p>The issue I'm more concerned with at the moment, though, is passing a parameter in the query string along with the url that determines the INITIAL expand/collapse state: something like expansionstate=0 for collapse all, expansionstate=1 to expand the first level, expansionstate=-1 to expand all, etc.</p>
<p>To be honest, I think I've got it. I just need to sit down and code it. <img src='http://yabfog.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Terenzio</title>
		<link>http://yabfog.com/blog/2006/02/23/optimal-opml-browser-released/comment-page-1#comment-207</link>
		<dc:creator>Matt Terenzio</dc:creator>
		<pubDate>Sat, 25 Feb 2006 21:45:46 +0000</pubDate>
		<guid isPermaLink="false">http://yabfog.com/wp/2006/02/23/optimal-opml-browser-released/#comment-207</guid>
		<description>oops less than sign in italics

function expandAll(){ 
	tmp = document.getElementsByTagName(&#039;div&#039;); 
	for (i=0;i&lt;i&gt;tmp.length&lt;/i&gt;;i++){
		if (tmp[i].className == &#039;description&#039;) {
		 tmp[i].style.display = &#039;none&#039;;
		}  
		if (tmp[i].className == &#039;descriptionlong&#039;) {
		 tmp[i].style.display = &#039;block&#039;;
		}
	} 
}
function collapseAll(){ 
	tmp = document.getElementsByTagName(&#039;div&#039;); 
	for (i=0;i&lt;i&gt;less than&lt;/i&gt;tmp.length;i++){
		if (tmp[i].className == &#039;description&#039;) {
		 tmp[i].style.display = &#039;block&#039;;
		}  
		if (tmp[i].className == &#039;descriptionlong&#039;) {
		 tmp[i].style.display = &#039;none&#039;;
		}
	} 
}</description>
		<content:encoded><![CDATA[<p>oops less than sign in italics</p>
<p>function expandAll(){<br />
	tmp = document.getElementsByTagName('div');<br />
	for (i=0;i<i>tmp.length</i>;i++){<br />
		if (tmp[i].className == 'description') {<br />
		 tmp[i].style.display = 'none';<br />
		}<br />
		if (tmp[i].className == 'descriptionlong') {<br />
		 tmp[i].style.display = 'block';<br />
		}<br />
	}<br />
}<br />
function collapseAll(){<br />
	tmp = document.getElementsByTagName('div');<br />
	for (i=0;i<i>less than</i>tmp.length;i++){<br />
		if (tmp[i].className == 'description') {<br />
		 tmp[i].style.display = 'block';<br />
		}<br />
		if (tmp[i].className == 'descriptionlong') {<br />
		 tmp[i].style.display = 'none';<br />
		}<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Terenzio</title>
		<link>http://yabfog.com/blog/2006/02/23/optimal-opml-browser-released/comment-page-1#comment-206</link>
		<dc:creator>Matt Terenzio</dc:creator>
		<pubDate>Sat, 25 Feb 2006 21:43:23 +0000</pubDate>
		<guid isPermaLink="false">http://yabfog.com/wp/2006/02/23/optimal-opml-browser-released/#comment-206</guid>
		<description>One possible way (i&#039;m sure you are on it already) which I&#039;ve used for expanding or collapsing all items in a similar fashion was to use javascript to toggle between CSS classes.
I haven&#039;t had a chance to look at your code ( i plan on using it shortly), so this might be obvious to you
I use functions like this. 
function expandAll(){ 
	tmp = document.getElementsByTagName(&#039;div&#039;); 
	for (i=0;i</description>
		<content:encoded><![CDATA[<p>One possible way (i'm sure you are on it already) which I've used for expanding or collapsing all items in a similar fashion was to use javascript to toggle between CSS classes.<br />
I haven't had a chance to look at your code ( i plan on using it shortly), so this might be obvious to you<br />
I use functions like this.<br />
function expandAll(){<br />
	tmp = document.getElementsByTagName('div');<br />
	for (i=0;i</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://yabfog.com/blog/2006/02/23/optimal-opml-browser-released/comment-page-1#comment-205</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Sat, 25 Feb 2006 20:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://yabfog.com/wp/2006/02/23/optimal-opml-browser-released/#comment-205</guid>
		<description>Thank you for such a nice compliment, James.

I&#039;m actually planning on adding a parameter for the initial expanded/collapsed state, but I haven&#039;t decided how to implement it yet. However, if you look at the HTML code, you&#039;ll notice that I&#039;ve got the hierarchical level reflected in the class attribute of each ul element, so I&#039;m already half-way there.</description>
		<content:encoded><![CDATA[<p>Thank you for such a nice compliment, James.</p>
<p>I'm actually planning on adding a parameter for the initial expanded/collapsed state, but I haven't decided how to implement it yet. However, if you look at the HTML code, you'll notice that I've got the hierarchical level reflected in the class attribute of each ul element, so I'm already half-way there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Corbett</title>
		<link>http://yabfog.com/blog/2006/02/23/optimal-opml-browser-released/comment-page-1#comment-198</link>
		<dc:creator>James Corbett</dc:creator>
		<pubDate>Sat, 25 Feb 2006 11:00:55 +0000</pubDate>
		<guid isPermaLink="false">http://yabfog.com/wp/2006/02/23/optimal-opml-browser-released/#comment-198</guid>
		<description>Dan, I think this is absolutely brilliant - thank you! Optimal does exactly what I&#039;ve been asking for lately when I speak of &quot;Feed Grazing&quot; - the ability to browse OPML hierarchies PLUS read feeds. Its a different category of software to Aggregators IMHO, a category that I call Feed Grazers.

One question - is it possible to pass a paramater to have the default view fully collapsed? I know, we&#039;re impossible to please aren&#039;t we! ;-&gt;</description>
		<content:encoded><![CDATA[<p>Dan, I think this is absolutely brilliant - thank you! Optimal does exactly what I've been asking for lately when I speak of "Feed Grazing" - the ability to browse OPML hierarchies PLUS read feeds. Its a different category of software to Aggregators IMHO, a category that I call Feed Grazers.</p>
<p>One question - is it possible to pass a paramater to have the default view fully collapsed? I know, we're impossible to please aren't we! ;-&gt;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

