
<?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>allaboutduncan &#187; firefox</title>
	<atom:link href="http://www.allaboutduncan.com/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.allaboutduncan.com</link>
	<description>my ramblings about fatherhood, baseball, the Atlanta Braves, homebrewing, web design and jquery</description>
	<lastBuildDate>Wed, 21 Dec 2011 20:07:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>DotNetNuke No Search Results Message</title>
		<link>http://www.allaboutduncan.com/2008/dotnetnuke-no-search-results-message/</link>
		<comments>http://www.allaboutduncan.com/2008/dotnetnuke-no-search-results-message/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 17:30:02 +0000</pubDate>
		<dc:creator>allaboutduncan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[dotnetnuke]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[getElementsByName]]></category>
		<category><![CDATA[innerHTML]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[results]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.allaboutduncan.com/index.php/2008/dotnetnuke-no-search-results-message/</guid>
		<description><![CDATA[I&#8217;ve finally deployed the DotNetNuke site I&#8217;ve been working on. After deployment is when the most obvious things pop up. For instance, in DotNetNuke when you search for something in the site it will return a list of links to &#8230; <a href="http://www.allaboutduncan.com/2008/dotnetnuke-no-search-results-message/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally deployed the DotNetNuke site I&#8217;ve been working on. After deployment is when the most obvious things pop up. </p>
<p>For instance, in DotNetNuke when you search for something in the site it will return a list of links to what it finds. What it won&#8217;t do is display something friendly like &#8220;No Search Results Found&#8221; if it doesn&#8217;t find anything. Dumb and not very user friendly.</p>
<p>I did find what I thought would be the solution at <a href="http://www.innovatasites.com/ecktwo/tabid/1807/Default.aspx" target="_blank">ecktwo</a>, but it didn&#8217;t work in Firefox due to the</p>
<p><code>document.getElementById("search").innerHTML</code> </p>
<p>which doesn&#8217;t work in Firefox within a table, which is what the Search Results are generated using the ASP.NET grid view. So, I thought I&#8217;d take a stab at building something that worked for both IE and Firefox.</p>
<p>Make a copy of your <em>admin\Search\SearchResults.ascx</em> file and then open the file in notepad. Apply the following code that I&#8217;ve highlighted in red:</p>
<p>
<blockquote>&lt;%@ Control Language=&#8221;vb&#8221; AutoEventWireup=&#8221;false&#8221; Explicit=&#8221;True&#8221; Inherits=&#8221;DotNetNuke.Modules.SearchResults.SearchResults&#8221; CodeFile=&#8221;SearchResults.ascx.vb&#8221; %&gt;</p>
<p>&lt;asp:Datagrid id=&#8221;dgResults&#8221; runat=&#8221;server&#8221; AutoGenerateColumns=&#8221;False&#8221; AllowPaging=&#8221;True&#8221; BorderStyle=&#8221;None&#8221;<br />PagerStyle-CssClass=&#8221;NormalBold&#8221; ShowHeader=&#8221;False&#8221; CellPadding=&#8221;4&#8243; GridLines=&#8221;None&#8221;&gt;<br />&lt;Columns&gt;<br />&lt;asp:TemplateColumn&gt;<br />&lt;ItemTemplate&gt;<br />&lt;asp:Label id=lblNo runat=&#8221;server&#8221; Text=&#8217;&lt;%# DataBinder.Eval(Container, &#8220;ItemIndex&#8221;) + 1 %&gt;&#8217; CssClass=&#8221;SubHead&#8221;&gt;<br />&lt;/asp:Label&gt;<br />&lt;/ItemTemplate&gt;<br />&lt;/asp:TemplateColumn&gt;<br />&lt;asp:TemplateColumn&gt;<br />&lt;ItemTemplate&gt;<br />&lt;asp:HyperLink id=&#8221;lnkTitle&#8221; runat=&#8221;server&#8221; <font color="#ff0000">Name=&#8221;result&#8221;</font> CssClass=&#8221;SubHead&#8221; NavigateUrl=&#8217;&lt;%# FormatURL(DataBinder.Eval(Container.DataItem,&#8221;TabId&#8221;),<br />DataBinder.Eval(Container.DataItem,&#8221;Guid&#8221;)) %&gt;&#8217; Text=&#8217;&lt;%# DataBinder.Eval(Container.DataItem, &#8220;Title&#8221;) %&gt;&#8217;&gt;<br />&lt;/asp:HyperLink&gt;&amp;nbsp;-<br />&lt;asp:Label id=&#8221;lblRelevance&#8221; runat=&#8221;server&#8221; CssClass=&#8221;Normal&#8221; Text=&#8217;&lt;%# FormatRelevance(DataBinder.Eval(Container.DataItem, &#8220;Relevance&#8221;)) %&gt;&#8217; &gt;<br />&lt;/asp:Label&gt;&lt;BR&gt;<br />&lt;asp:Label id=&#8221;lblSummary&#8221; runat=&#8221;server&#8221; CssClass=&#8221;Normal&#8221; Text=&#8217;&lt;%# DataBinder.Eval(Container.DataItem, &#8220;Description&#8221;) + &#8220;&lt;br&gt;&#8221; %&gt;&#8217; Visible=&#8221;&lt;%# ShowDescription() %&gt;&#8221;&gt;<br />&lt;/asp:Label&gt;<br />&lt;asp:HyperLink id=&#8221;lnkLink&#8221; runat=&#8221;server&#8221; CssClass=&#8221;CommandButton&#8221; NavigateUrl=&#8217;&lt;%# FormatURL(DataBinder.Eval(Container.DataItem,&#8221;TabId&#8221;),<br />DataBinder.Eval(Container.DataItem,&#8221;Guid&#8221;)) %&gt;&#8217; Text=&#8217;&lt;%# FormatURL(DataBinder.Eval(Container.DataItem,&#8221;TabId&#8221;),<br />DataBinder.Eval(Container.DataItem,&#8221;Guid&#8221;)) %&gt;&#8217;&gt;<br />&lt;/asp:HyperLink&gt;&amp;nbsp;-<br />&lt;asp:Label id=&#8221;lblPubDate&#8221; runat=&#8221;server&#8221; CssClass=&#8221;Normal&#8221; Text=&#8217;&lt;%# FormatDate(DataBinder.Eval(Container.DataItem, &#8220;PubDate&#8221;)) %&gt;&#8217;&gt;<br />&lt;/asp:Label&gt;<br />&lt;/ItemTemplate&gt;<br />&lt;/asp:TemplateColumn&gt;<br />&lt;/Columns&gt;<br />&lt;PagerStyle CssClass=&#8221;NormalBold&#8221; Mode=&#8221;NumericPages&#8221;&gt;&lt;/PagerStyle&gt;<br />&lt;/asp:Datagrid&gt;<br /><font color="#ff0000"><br />&lt;div id=&#8221;NoResults&#8221;&gt;<br />&lt;h3 class=&#8221;red&#8221; style=&#8221;text-align:center&#8221;&gt;No Search Results Found&lt;/h3&gt;<br />&lt;/div&gt;<br />&lt;script language =&#8221;Javascript&#8221;&gt;<br />var search;<br />search = document.getElementsByName(&#8220;result&#8221;);</font>
</p>
<p><font color="#ff0000">if (search.length == 0) {<br />document.getElementById(&#8220;NoResults&#8221;).style.display=&#8217;block&#8217;;<br />}<br />else {<br />document.getElementById(&#8220;NoResults&#8221;).style.display=&#8217;none&#8217;; <br />}<br />&lt;/script&gt;</font> </p>
</blockquote>
<p>Be sure to add the Name=&#8221;result&#8221; snippet to the asp:Hyperlink in the code above. It&#8217;s easy to miss.</p>
<p>Save that and you should now have a spiffy new message displayed when no results are found. Use whatever CSS you want to style the message.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allaboutduncan.com/2008/dotnetnuke-no-search-results-message/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Multiple Versions of IE on Win XP</title>
		<link>http://www.allaboutduncan.com/2008/multiple-versions-of-ie-on-win-xp/</link>
		<comments>http://www.allaboutduncan.com/2008/multiple-versions-of-ie-on-win-xp/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 17:06:45 +0000</pubDate>
		<dc:creator>allaboutduncan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.allaboutduncan.com/index.php/2008/multiple-versions-of-ie-on-win-xp/</guid>
		<description><![CDATA[Multiple IE is a great little free program that lets you run multiple versions of Microsoft Internet Explorer along with version 7 of Internet Explorer. The previous version I used to check IE6 used a Virtual PC and was a &#8230; <a href="http://www.allaboutduncan.com/2008/multiple-versions-of-ie-on-win-xp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="Easily use IE3 IE4.01 IE5 IE5.5 and IE6 with IE7" href="http://tredosoft.com/Multiple_IE" target="_blank">Multiple IE</a> is a great little free program that lets you run multiple versions of Microsoft Internet Explorer along with version 7 of Internet Explorer.</p>
<p>The previous version I used to check IE6 used a Virtual PC and was a memory hog. This method worked perfectly and much faster and lets you test all the way back to Internet Explorer 3 (if you so desire).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allaboutduncan.com/2008/multiple-versions-of-ie-on-win-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Marvel Announces Digital Comics</title>
		<link>http://www.allaboutduncan.com/2007/marvel-announces-digital-comics/</link>
		<comments>http://www.allaboutduncan.com/2007/marvel-announces-digital-comics/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 14:07:47 +0000</pubDate>
		<dc:creator>allaboutduncan</dc:creator>
				<category><![CDATA[Comics]]></category>
		<category><![CDATA[digital]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[marvel]]></category>
		<category><![CDATA[superheroes]]></category>

		<guid isPermaLink="false">http://www.allaboutduncan.com/index.php/2007/marvel-announces-digital-comics/</guid>
		<description><![CDATA[In a somewhat surprising move, Marvel Comics has released a digital comics subscription service. For only $59.88 a year ($4.99 a month) or $9.99 monthly, you have immediate access to 2,700 comics. Marvel has 250 issues available for free. Rather &#8230; <a href="http://www.allaboutduncan.com/2007/marvel-announces-digital-comics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In a somewhat surprising move, <a href="http://www.marvel.com/digitalcomics" target="_blank">Marvel Comics has released a digital comics subscription service</a>. For only $59.88 a year ($4.99 a month) or $9.99 monthly, you have immediate access to 2,700 comics. Marvel has 250 issues available for free. Rather than focus on current and popular books, the free selections offer a wide range of Marvel history. You&#8217;ll see plenty of early issues of the Avengers, Hulk, Thor and Iron Man, as well as samples of their younger books like Runaways and the Marvel Adventures series. </p>
<p>The paid selection of 2,700 titles looks even better. Again, the Avengers are featured heavily, but they also have hard to find titles like the Christopher Priest run on Black Panther, the 1950 Marvel Boy,&nbsp; and Tales of Suspense. The initial selection is quite smart, with lots of complete mini-series runs, Manga versions of the Marvel heroes and books targeted toward younger readers (the Franklin Richard series, Power Pack) and teens (NYX, New Mutants, X-23, Jubilee). There&#8217;s even a nice selection of vintage titles (Marvel Team-Up, Man-Thing, Ghost Rider) for the older fans as well.</p>
<p><a href="http://www.allaboutduncan.com/wp-content/uploads/2007/11/digitalavengers51.jpg" rel="lightbox"><img class="imageframe" height="351" alt="DigitalAvengers51" src="http://www.allaboutduncan.com/wp-content/uploads/2007/11/digitalavengers51-thumb.jpg" width="480" border="0"></a> </p>
<p>The online, Flash based reader was pleasantly surprising and fun to use. Not only can you choose from single and two-page options, the reader offers a Smart Panel feature that works quite well. Clicking the page/panel of the issue zooms in on half or third of the page and allows a good, close reading view. The issues, panels and pages all load quickly and seamlessly, which is a good thing. The reading experience is what hold many back from reading online or on the computer, but Marvel&#8217;s Flash reader makes the experience an&nbsp; easy and pleasant one. </p>
<p>Using the <a href="https://addons.mozilla.org/en-US/firefox/addon/59" target="_blank">Firefox User Agent Switcher</a>, I impersonated an iPhone and the site continued to work well. If you&#8217;ve got an iPhone, browse the site and try to read one of the free comics and post a comment. Phone browsing and reading is the one unique feature that could cause the service to explode in popularity.</p>
<p>For this to be a success, Marvel needs to constantly add books. That 2,700 needs to double by the end of the year and continue at that pace. They&#8217;ve stated that only books older than 6 months will appear on the site. That&#8217;s not a bad decision, as it allows them to maintain regular sales and hopefully entice new readers with the digital version. I would release the new digital books every Wednesday, just like regular comics. Get the new readers used to reading new books on that day and you&#8217;ve got a better chance of getting them in the local shops to pick up the printed books.</p>
<p>Performance at the moment is spotty (at least on my end). Response times were slow and I experienced a few MySQL connection issues when browsing the free selection. It&#8217;s most likely due to the new launch and things should speed up and clear up in a week or so. </p>
<p><a href="http://www.marvel.com/digitalcomics" target="_blank">Marvel&#8217;s new digital comics subscription service</a> is one I&#8217;ll definitely be keeping an eye on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allaboutduncan.com/2007/marvel-announces-digital-comics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Source Chart Extension for Firefox</title>
		<link>http://www.allaboutduncan.com/2007/source-chart-extension-for-firefox/</link>
		<comments>http://www.allaboutduncan.com/2007/source-chart-extension-for-firefox/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 13:27:41 +0000</pubDate>
		<dc:creator>allaboutduncan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.allaboutduncan.com/index.php/2007/source-chart-extension-for-firefox/</guid>
		<description><![CDATA[Just found a new Firefox Extension that&#8217;s quickly become a favorite. The View Source Chart extension works similar to a &#8220;View Source&#8221; command, but formats the page code in easy to read, color-coded blocks. It&#8217;s great for finding tags or &#8230; <a href="http://www.allaboutduncan.com/2007/source-chart-extension-for-firefox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just found a new <a href="https://addons.mozilla.org/en-US/firefox/browse/type:1" target="_blank">Firefox Extension</a> that&#8217;s quickly become a favorite. The <a href="http://jennifermadden.com/scripts/ViewRenderedSource.html" target="_blank">View Source Chart</a> extension works similar to a &#8220;View Source&#8221; command, but formats the page code in easy to read, color-coded blocks. It&#8217;s great for finding tags or code that are causing rendering problems or other issues. When debugging a site, you may not know exactly what you&#8217;re looking for, but with the nice hierarchy Source Chart provides, it&#8217;s easy to spot the item that&#8217;s out of place.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allaboutduncan.com/2007/source-chart-extension-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computerworld Just Doesn&#8217;t Get It</title>
		<link>http://www.allaboutduncan.com/2007/computerworld-just-doesnt-get-it/</link>
		<comments>http://www.allaboutduncan.com/2007/computerworld-just-doesnt-get-it/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 12:55:38 +0000</pubDate>
		<dc:creator>allaboutduncan</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[weird]]></category>

		<guid isPermaLink="false">http://www.allaboutduncan.com/index.php/2007/computerworld-just-doesnt-get-it/</guid>
		<description><![CDATA[Computerworld published an article entitled &#8220;Top 10 Firefox Extensions to Avoid&#8221; and of course I had to read it. Some of their choices were odd, most I agreed with and one made me write this post. ScribeFire (formerly Performancing) This &#8230; <a href="http://www.allaboutduncan.com/2007/computerworld-just-doesnt-get-it/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Computerworld published an article entitled &#8220;<a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;articleId=9015599&amp;pageNumber=3">Top 10 Firefox Extensions to Avoid</a>&#8221; and of course I had to read it. Some of their choices were odd, most I agreed with and one made me write this post.<br />
<blockquote><a href="https://addons.mozilla.org/en-US/firefox/addon/1730">ScribeFire</a> (formerly Performancing)</p>
<p>This falls into the category of extensions that seem pointless. What we have here is a browser-based tool for writing blog posts. But don&#8217;t most blogs already have a browser-based editor that works just fine?</p>
<p>Perhaps there&#8217;s a blogging system out there that needs this kind of helper app, but we&#8217;re not familiar with it. Until we come upon such a beast, we&#8217;d rather skip the overhead of an extension and stick to our blogging software&#8217;s built-in editor.</p>
<p>Don&#8217;t get us wrong, <a href="https://addons.mozilla.org/en-US/firefox/addon/1730">ScribeFire</a> is a nice piece of software. We just don&#8217;t see a need for it at this time. If you do happen to be using blogging software without a decent editor, ScribeFire would be a fine addition to your extension toolbox. </p></blockquote>
<p>Yes, <a href="http://wordpress.org/">WordPress</a> and other blog engines have build in editors, if they didn&#8217;t, they wouldn&#8217;t be very useful, now would they? I think they&#8217;re missing the point with <a href="https://addons.mozilla.org/en-US/firefox/addon/1730">ScribeFire</a>. The nice think about this extension is I can post to my blog without having to go there. I can keep all my tabs open in <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a>, click back and forth between them, copy and paste, and all the while, the <a href="https://addons.mozilla.org/en-US/firefox/addon/1730">ScribeFire</a> window stays in place below. It makes it terribly easy to reference what you&#8217;re writing about. If I used the <a href="http://wordpress.org/">WordPress</a> editor, I would have to click back and forth between tabs or have multiple windows open to do the same thing.</p>
<p>Sorry ComputerWorld, but you missed the mark on that one.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allaboutduncan.com/2007/computerworld-just-doesnt-get-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Quicktime HD (qtl) Links</title>
		<link>http://www.allaboutduncan.com/2007/firefox-quicktime-hd-qtl-links/</link>
		<comments>http://www.allaboutduncan.com/2007/firefox-quicktime-hd-qtl-links/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 12:12:46 +0000</pubDate>
		<dc:creator>allaboutduncan</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[quicktime]]></category>

		<guid isPermaLink="false">http://www.allaboutduncan.com/index.php/2007/firefox-quicktime-hd-qtl-links/</guid>
		<description><![CDATA[Recently, I started having problems viewing certain HD QuickTime links. Before, I could click on the link to the HD trailer (480, 720, or 1080) and the QuickTime window would open and the trailer would start to load. Somewhere along &#8230; <a href="http://www.allaboutduncan.com/2007/firefox-quicktime-hd-qtl-links/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently, I started having problems viewing certain HD <a href="http://www.apple.com/quicktime/">QuickTime</a> links. Before, I could click on the link to the HD trailer (480, 720, or 1080) and the <a href="http://www.apple.com/quicktime/">QuickTime</a> window would open and the trailer would start to load. Somewhere along the line, that changed. I&#8217;m not sure if developers are linking the content differently or if Firefox or <a href="http://www.apple.com/quicktime/">QuickTime</a> changed their loading structure, but .qtl links were not working in <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a> (or IE for that matter). </p>
<p>When clicked, the link would present the SAVE or OPEN dialog. Selecting open would open a small <a href="http://www.apple.com/quicktime/">QuickTime</a> window, with no content. Saving the file and then opening it produced the same results. After watching one or two non-HD trailers, I had to find a solution and here it is.</p>
<p>If you are presented with a SAVE/OPEN dialog box when clicking a .qtl <a href="http://www.apple.com/quicktime/">QuickTime</a> HD link, simply save the .qtl and change the extension to .TXT. Open the resulting text file and you should see the direct link to the HD trailer. Open up <a href="http://www.apple.com/quicktime/">QuickTime</a>. Select File -&gt; Open URL (CTRL + U) and paste in the URL and you&#8217;re ready to go. Welcome back HD <a href="http://www.apple.com/quicktime/">QuickTime</a> goodness.</p>
<p>For instance, the following link:<br /><a href="http://us.rd.yahoo.com/movies/hdtrailers/columbia/spiderman3final/720/?http://us.i1.yimg.com/us.yimg.com/i/mo/spiderman3final_720.qtl">http://us.rd.yahoo.com/movies/hdtrailers/columbia/spiderman3final/720/?<br />http://us.i1.yimg.com/us.yimg.com/i/mo/spiderman3final_720.qtl</a></p>
<p>Links to this, when saved:<br /><a href="http://playlist.yahoo.com/makeplaylist.dll?sid=35419655&amp;sdm=web&amp;pt=rd">http://playlist.yahoo.com/makeplaylist.dll?sid=35419655&amp;sdm=web&amp;pt=rd</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.allaboutduncan.com/2007/firefox-quicktime-hd-qtl-links/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Appalachian State University Wants Firefox</title>
		<link>http://www.allaboutduncan.com/2007/appalachian-state-university-wants-firefox/</link>
		<comments>http://www.allaboutduncan.com/2007/appalachian-state-university-wants-firefox/#comments</comments>
		<pubDate>Mon, 09 Apr 2007 14:29:41 +0000</pubDate>
		<dc:creator>allaboutduncan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[college]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.allaboutduncan.com/index.php/2007/appalachian-state-university-wants-firefox/</guid>
		<description><![CDATA[Well, at least one student does. I understand where he&#8217;s coming from, really, I do. I&#8217;ve complained here (and at my old job) that things would be so much easier if Firefox were the default browser, instead of IE. But, &#8230; <a href="http://www.allaboutduncan.com/2007/appalachian-state-university-wants-firefox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://theapp.appstate.edu/content/view/2304/43/">Well, at least one student does</a>.</p>
<p>I understand where he&#8217;s coming from, really, I do. I&#8217;ve complained <a href="http://www.fleetone.com/">here</a> (and <a href="http://www.columbiastate.edu/">at my old job</a>) that things would be so much easier if <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a> were the default browser, instead of IE.</p>
<p>But, the reality of the situation is in most cases the switch cannot be made. I try to make everything I develop work just as well on Firefox as it does in IE, but not every developer follows those rules. Universities and businesses all use outside applications. <a href="http://www.sungardhe.com/">Portal systems</a>, <a href="http://www.zentrack.net/">ticket systems</a>, <a href="http://www.microsoft.com/exchange/default.mspx">Exchange servers</a>. Many of those systems simply do not work well with <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a>. </p>
<p><a href="http://www.mozilla.com/en-US/firefox/">Firefox</a> doesn&#8217;t display all the functionality of <a href="http://www.microsoft.com/exchange/default.mspx">MS Exchange</a> when using it online. <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a> doesn&#8217;t support Window&#8217;s domain authentication (it send passwords in unencrypted text). Many web portals (especially <a href="http://www.sungardhe.com/">academic ones</a>) do not pass information correctly in <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a>.</p>
<p>That leaves the question, where does the responsibility lie. Should <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a> develop future versions with support for those features in mind or should application and software developers ensure Firefox support with future releases? There&#8217;s no easy answer, which means there is no easy solution. However, with Firefox (and other browsers) gaining users every day, it&#8217;s a question which will continue to come up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allaboutduncan.com/2007/appalachian-state-university-wants-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Bookmarked Search</title>
		<link>http://www.allaboutduncan.com/2007/firefox-bookmarked-search/</link>
		<comments>http://www.allaboutduncan.com/2007/firefox-bookmarked-search/#comments</comments>
		<pubDate>Fri, 30 Mar 2007 14:23:31 +0000</pubDate>
		<dc:creator>allaboutduncan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.allaboutduncan.com/index.php/2007/firefox-bookmarked-search/</guid>
		<description><![CDATA[Yet another reason to love Firefox, and one that I didn&#8217;t stumble across until recently. If there are a few sites that you search regularly, you can add them right into Firefox and access them directly from the address bar. &#8230; <a href="http://www.allaboutduncan.com/2007/firefox-bookmarked-search/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yet another reason to love <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a>, and one that I didn&#8217;t stumble across until recently.</p>
<p>If there are a few sites that you search regularly, you can add them right into <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a> and access them directly from the address bar.</p>
<p>For example, to search wikipedia, in the address bar, I&#8217;ll type <a href="http://en.wikipedia.org/wiki/Spider-Man"><b>w Spider-Man</b></a> and Firefox will search wikipedia and pull up the results. Just right-click any search box on any site and select &#8220;Add a Keyword for this Search.&#8221; When the Add Bookmark window pops up, just enter in the Site Name and the Keyword you want to use to when searching.</p>
<div align="center"><img src="http://www.allaboutduncan.com/wp-content/uploads/2007/03/keyword.gif" /></div>
<p>You can <a href="quicksearch.html">download (right-click and &#8220;save as&#8221;) the 10-15 Quick Searches</a> I have setup and import them into Firefox. You&#8217;ll be ready to go in no time. The ones I use the most, I have set to one or two letters. Simply type <b>CTRL + L</b> to access the address bar and enter your terms and off you go. </p>
<p>Here are the ones I use frequently:<br /> 
<div class="code">
<dl>
<dt><a href="http://www.allaboutduncan.com/?s=%s" add_date="1175263155" shortcuturl="aad" last_charset="UTF-8" id="rdf:#$xkM2I2">allaboutduncan</a></dt>
<dd>Type &#8220;aad &lt;search term &gt;&#8221; to search allaboutduncan.com      </dd>
<dt><a href="http://www.acronymfinder.com/af-query.asp?Acronym=%s&amp;String=exact" add_date="1128651041" last_modified="1168030434" shortcuturl="ac" last_charset="ISO-8859-1" id="rdf:#$kqPR1">Acronym Finder Quick Search</a></dt>
<dd>Type &#8220;acronym &lt;acronym&gt;&#8221; to look up what an acronym stands for in Acronym Finder.</dd>
<dt><a href="http://www.amazon.com/exec/obidos/search-handle-url/ref=br_ss_hs/002-6940686-1537663?field-keywords=%s&amp;platform=gurupa&amp;url=index%3Dblended" add_date="1128653382" last_modified="1175263564" shortcuturl="am" last_charset="ISO-8859-1" id="rdf:#$lqPR1">Amazon</a></dt>
<dd>Type &#8220;am &lt;product name&gt;&#8221; to look up an item on Amazon.        </dd>
<dt><a href="http://dictionary.reference.com/search?q=%s" last_modified="1175263580" shortcuturl="d" id="rdf:#$mqPR1">Dictionary.com </a></dt>
<dd>Type &#8220;d &lt;word&gt;&#8221; in the addressbar to perform a dictionary look-up.        </dd>
<dt><a href="http://drupal.org/search/node" add_date="1169154176" last_modified="1175263703" shortcuturl="dru" post_data="search_theme_form_keys%3D%25s&amp;form_id%3Dsearch_theme_form" last_charset="UTF-8" id="rdf:#$uyJq23">Drupal</a></dt>
<dd>Type &#8220;dru &lt;search term&gt;&#8221; to search Drupal.org        </dd>
<dt><a href="http://search.ebay.com//search/search.dll?satitle=%s&amp;from=R40" add_date="1128660094" last_modified="1175263594" shortcuturl="e" last_charset="ISO-8859-1" id="rdf:#$nqPR1">Ebay</a></dt>
<dd>Type &#8220;e &lt;item&gt;&#8221; to find something up for auction at Ebay.        </dd>
<dt><a href="http://flickr.com/photos/search/" add_date="1128655264" last_visit="1128657360" last_modified="1175263606" shortcuturl="f" icon="data:image/x-icon;base64,AAABAAEAEBAQAAEABAAoAQAAFgAAACgAAAAQAAAAIAAAAAEABAAAAAAAAAAAABMLAAATCwAAEAAAAAAAAACEAP8A3GMAAN5rDgDgdR4A4n0qAOOBMQDljEMA6JlYAOujaQDsq3YA7bF/APTOrwD99O0A/vz6AP///wAAAAAADg4ODg4ODg7g4ODg4ODg4A4ODg4ODg4O7u7u7u7u7u7u7u6Sju7u7u7u7oF+7u7u7u7ugX7u7u7u7u6Bfu7u7u7u7IF87u7u7u7iERLu7u7u7ulRSe7u7u7u7qFt7u7u7u7usRPu7u7u7u7rQ+7u7u7u7u7u7u7u7u7u7u7u7u4AAHIAAABQAAAAbwAAAGkAAABlAAAAAAAAAENfAABTUwAARVMAAFxlAABVUwAAOwAAAAEAAAABAAAAAAAAAAEB" post_data="done%3D1&amp;sort%3Drelevance&amp;text%3D%25s&amp;" last_charset="UTF-8" id="rdf:#$oqPR1">Flickr Quick Search</a></dt>
<dd>Type &#8220;f &lt;search term&gt;&#8221; to search all the tags, titles and descriptions of images at photo-sharing site Flickr.        </dd>
<dt><a href="http://froogle.google.com/froogle?q=%s&amp;hl=en" add_date="1128653316" last_modified="1128655531" shortcuturl="froogle" last_charset="UTF-8" id="rdf:#$pqPR1">Froogle Quick Search</a></dt>
<dd>Type &#8220;froogle &lt;product name&gt;&#8221; to look up a product on shopping search engine Froogle.        </dd>
<dt><a href="http://maps.google.com/maps?q=%s&amp;output=html" add_date="1128651600" last_modified="1128651840" shortcuturl="map" last_charset="UTF-8" id="rdf:#$qqPR1">Google Maps Quick Search</a></dt>
<dd>Type &#8220;map &lt;address&gt;&#8221; to get a Google map of a street address or location.        </dd>
<dt><a href="http://www.google.com/search?&amp;q=%s&amp;sourceid=mozilla-search" last_modified="1175263636" shortcuturl="g" id="rdf:#$rqPR1">Google</a></dt>
<dd>Type &#8220;g &lt;search term&gt;&#8221; in the addressbar to perform a Google search.        </dd>
<dt><a href="http://images.google.com/images?q=%s&amp;hl=en" add_date="1128653256" last_modified="1175263652" shortcuturl="gi" last_charset="UTF-8" id="rdf:#$sqPR1">Google Image</a></dt>
<dd>Type &#8220;gi &lt;search term&gt;&#8221; to find images that match using Google Image Search.        </dd>
<dt><a href="http://www.imdb.com/find?s=all&amp;q=%s" add_date="1169140347" shortcuturl="i" last_charset="ISO-8859-1" id="rdf:#$DwJq23">IMDB</a></dt>
<dd>Type &#8220;i &lt;search term&gt;&#8221; to search IMDB.com.        </dd>
<dt><a href="http://www.google.com/cse?cx=010627838012573663791%3Aif_hpqkcyh0&amp;q=%s&amp;cof=FORID%3A1" add_date="1170075124" shortcuturl="n" last_charset="UTF-8" id="rdf:#$DulJc">Ninja Search</a></dt>
<dd>Type &#8220;n &lt;search term&gt;&#8221; to search Ninja         </dd>
<dt><a href="http://technorati.com/search.php" add_date="1128652398" last_modified="1128655585" shortcuturl="tech" post_data="s%3D%25s&amp;" last_charset="UTF-8" id="rdf:#$wqPR1">Technorati Quick Search</a></dt>
<dd>Type &#8220;tech &lt;search term&gt;&#8221; to see what weblogs are posting about a topic.        </dd>
<dt><a href="http://thesaurus.reference.com/search?q=%s&amp;db=roget" add_date="1128650743" last_modified="1128650977" shortcuturl="thes" last_charset="ISO-8859-1" id="rdf:#$xqPR1">Thesaurus Quick Search</a></dt>
<dd>Type &#8220;thes &lt;word&gt;&#8221; to find words with similar meanings in a thesaurus.        </dd>
<dt><a href="http://en.wikipedia.org/wiki/Special:Search?search=%s" add_date="1128651197" last_modified="1175263538" shortcuturl="w" last_charset="UTF-8" id="rdf:#$zqPR1">Wikipedia Quick Search</a></dt>
<dd>Type &#8220;w &lt;search term&gt;&#8221; to look it up in Wikipedia.        </dd>
<dt><a href="http://www.youtube.com/results?search_query=%s" add_date="1168292613" last_modified="1175263500" shortcuturl="yt" last_charset="UTF-8" id="rdf:#$W0cV5">Youtube</a></dt>
<dd>Type &#8220;yt &lt;search term&gt;&#8221; to search YouTube  </dd>
</dl>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.allaboutduncan.com/2007/firefox-bookmarked-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Firefox Tip Ever (reopen Tab)</title>
		<link>http://www.allaboutduncan.com/2007/best-firefox-tip-ever-reopen-tab/</link>
		<comments>http://www.allaboutduncan.com/2007/best-firefox-tip-ever-reopen-tab/#comments</comments>
		<pubDate>Thu, 01 Feb 2007 13:34:47 +0000</pubDate>
		<dc:creator>allaboutduncan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[tabs]]></category>

		<guid isPermaLink="false">http://www.allaboutduncan.com/?p=36</guid>
		<description><![CDATA[For those of us who use Firefox (and if you&#8217;re not, you really should), I just saw what may be the best tip ever. When you accidentally (or maybe not) close a tab, just use the following keyboard combination Ctrl-Shift-T &#8230; <a href="http://www.allaboutduncan.com/2007/best-firefox-tip-ever-reopen-tab/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For those of us who <a href="http://www.mozilla.com/en-US/firefox/" class="ui-mozilla offsite">use Firefox (and if you&#8217;re not, you really should)</a>, I just saw what may be the best tip ever.</p>
<p>When you accidentally (or maybe not) close a tab, just use the following keyboard combination <strong>Ctrl-Shift-T</strong>  (<strong>Cmd-Shift-T</strong> for Mac users) to reopen the last Tab you closed.</p>
<p>Awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allaboutduncan.com/2007/best-firefox-tip-ever-reopen-tab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 2.0 Spellcheck for all fields</title>
		<link>http://www.allaboutduncan.com/2006/firefox-20-spellcheck-for-all-fields/</link>
		<comments>http://www.allaboutduncan.com/2006/firefox-20-spellcheck-for-all-fields/#comments</comments>
		<pubDate>Tue, 07 Nov 2006 22:46:59 +0000</pubDate>
		<dc:creator>allaboutduncan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[spellcheck]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.allaboutduncan.com/?p=6</guid>
		<description><![CDATA[The best thing about Firefox 2.0 (in my opinion) is the built in spell check. No more composing in Word and pasting into a text box, or misspelling words because you typed a quick post in the browser. It comes &#8230; <a href="http://www.allaboutduncan.com/2006/firefox-20-spellcheck-for-all-fields/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The best thing about <a href="http://mozilla.org/firefox/" class="ui-mozilla offsite">Firefox 2.0</a> (in my opinion) is the built in spell check. No more composing in Word and pasting into a text box, or misspelling words because you typed a quick post in the browser.</p>
<p class="MsoNormal">It comes in handy at work, where we constantly enter text into our development tool (<a href="http://www.zentrack.net/" class="ui-zentrack offsite">Zentrack</a>). My only complaint is that it only checked Text Areas and not all input fieldsâ€¦</p>
<p class="MsoNormal">Well, to fix that, just type about:config in the URL area of a <a href="http://mozilla.org/firefox/" class="ui-mozilla offsite">Firefox</a> window and then change the following value:</p>
<ul style="margin-top: 0in">
<li class="MsoNormal"><strong>layout.spellcheckDefault      = 2</strong> turns on <a href="http://mozilla.org/firefox/" class="ui-mozilla offsite">Firefox 2&#8242;s</a> spell-checking in input fields as well as      text areas.</li>
</ul>
<p><a href="http://www.lifehacker.com/software/firefox-2/geek-to-live-top-firefox-2-config-tweaks-209941.php" class="ui-lifehacker offsite"><span>Check out Lifehacker for more great Firefox 2.0 tweaks.</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.allaboutduncan.com/2006/firefox-20-spellcheck-for-all-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

