<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Firefox and Spotlight on the Mac</title>
	<link>http://ask.metafilter.com/108001/Firefox-and-Spotlight-on-the-Mac/</link>
	<description>Comments on Ask MetaFilter post Firefox and Spotlight on the Mac</description>
	<pubDate>Sat, 29 Nov 2008 21:51:45 -0800</pubDate>
	<lastBuildDate>Sat, 29 Nov 2008 21:51:45 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Firefox and Spotlight on the Mac</title>
		<link>http://ask.metafilter.com/108001/Firefox-and-Spotlight-on-the-Mac</link>	
		<description>How can I set up my Mac to search Firefox history with Spotlight? &lt;br /&gt;&lt;br /&gt; I&apos;m running Leopard, and Spotlight has a great ability to search through my browser history to find a web page...at least, through anything I&apos;ve surfed using Safari. Is there any way to include Firefox&apos;s history in the searches?&lt;br&gt;
&lt;br&gt;
I&apos;d be willing to settle for creative ideas like transferring history files automatically on a schedule with a shell script.&lt;br&gt;
&lt;br&gt;
Thanks!</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2008:site.108001</guid>
		<pubDate>Sat, 29 Nov 2008 20:52:01 -0800</pubDate>
		<dc:creator>monkey85</dc:creator>
		
			<category>mac</category>
		
			<category>firefox</category>
		
			<category>spotlight</category>
		
	</item> <item>
		<title>By: scottreynen</title>
		<link>http://ask.metafilter.com/108001/Firefox-and-Spotlight-on-the-Mac#1556142</link>	
		<description>You could sync your Firefox bookmarks with a del.icio.us account using &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/3615&quot;&gt;Delicious Bookmarks&lt;/a&gt;, and then make the del.icio.us bookmarks searchable with spotlight by using &lt;a href=&quot;http://ianhenderson.org/delimport.html&quot;&gt;delimport&lt;/a&gt;. It&apos;s kind of a crazy round-about solution, but it should work.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.108001-1556142</guid>
		<pubDate>Sat, 29 Nov 2008 21:51:45 -0800</pubDate>
		<dc:creator>scottreynen</dc:creator>
	</item><item>
		<title>By: monkey85</title>
		<link>http://ask.metafilter.com/108001/Firefox-and-Spotlight-on-the-Mac#1556152</link>	
		<description>scottreynen, thanks for that idea. I actually hadn&apos;t thought yet about bookmarks, so I&apos;ll keep that in mind.&lt;br&gt;
&lt;br&gt;
I&apos;m wondering more about browser history, e.g. I remember surfing a web site about X topic but don&apos;t remember where it was, and rather than searching the whole internet for the topic again and trying to relocate it that way, I can just search my own browser history to try to track it down.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.108001-1556152</guid>
		<pubDate>Sat, 29 Nov 2008 22:01:43 -0800</pubDate>
		<dc:creator>monkey85</dc:creator>
	</item><item>
		<title>By: scottreynen</title>
		<link>http://ask.metafilter.com/108001/Firefox-and-Spotlight-on-the-Mac#1556178</link>	
		<description>Oops. I don&apos;t know how I read &quot;history&quot; four times and thought &quot;bookmarks&quot; every time. &lt;a href=&quot;http://www.jwz.org/hacks/mork.pl&quot;&gt;mork.pl&lt;/a&gt; is the only tool I&apos;ve seen for exporting Firefox history, but that&apos;s all to one file, so you&apos;d need to break it up further from there to get anything useful in Spotlight.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.108001-1556178</guid>
		<pubDate>Sat, 29 Nov 2008 22:48:35 -0800</pubDate>
		<dc:creator>scottreynen</dc:creator>
	</item><item>
		<title>By: philomathoholic</title>
		<link>http://ask.metafilter.com/108001/Firefox-and-Spotlight-on-the-Mac#1556206</link>	
		<description>Here&apos;s some info I&apos;ve found out. Maybe it&apos;ll be helpful in creating that shell script.&lt;br&gt;
&lt;br&gt;
Safari&apos;s history file is stored in &lt;code&gt;~/Library/Safari/History.plist&lt;/code&gt;. It&apos;s file type is &lt;a href=&quot;http://en.wikipedia.org/wiki/Property_list&quot;&gt;property list&lt;/a&gt; (apparently the binary version) which is a &quot;serialized data&quot; format. There&apos;s a shell command &lt;code&gt;plutil&lt;/code&gt;, which might be helpful. It converts between the binary format and the xml format.&lt;br&gt;
&lt;br&gt;
Firefox&apos;s history is stored in a sqlite database in &lt;code&gt;&amp;lt;profile name&amp;gt;/places.sqlite&lt;/code&gt;. Obviously, it&apos;s format is a SQLite database. I think the actual history is stored in the moz_historyvisits table. [That mork.pl program was wrote in 2004, when the file format was different, so it won&apos;t work.]&lt;br&gt;
&lt;br&gt;
Firefox stores bookmark backups in &lt;a href=&quot;http://en.wikipedia.org/wiki/Json&quot;&gt;json&lt;/a&gt; format, which is a serialized data format. The actual bookmarks are stored in html: &lt;code&gt;&amp;lt;profile name&amp;gt;/bookmarks.html&lt;/code&gt;. Unfortunately, plutil won&apos;t convert my &lt;code&gt;bookmarks.html&lt;/code&gt; file to a &lt;code&gt;bookmarks.plist&lt;/code&gt; file.&lt;br&gt;
&lt;br&gt;
Hope this helps, somehow. Good luck.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.108001-1556206</guid>
		<pubDate>Sun, 30 Nov 2008 00:03:28 -0800</pubDate>
		<dc:creator>philomathoholic</dc:creator>
	</item><item>
		<title>By: badmoonrising</title>
		<link>http://ask.metafilter.com/108001/Firefox-and-Spotlight-on-the-Mac#1556239</link>	
		<description>Does it have to be Spotlight? I&apos;m quite a fan of &lt;a href=&quot;http://desktop.google.com/mac/&quot;&gt;Google Desktop&lt;/a&gt;, which does exactly what you&apos;re after. You can search for a word or phrase you remember vaguely seeing somewhere on the internet, and it&apos;ll look through your browser history to find it. It&apos;s freeware, which is always nice.&lt;br&gt;
&lt;br&gt;
Alternatively, there&apos;s an app called &lt;a href=&quot;http://www.stclairsoft.com/HistoryHound/&quot;&gt;History Hound&lt;/a&gt; that does the same thing. I&apos;ve tried it a couple times but never bought it, as it seems a bit cumbersome. I&apos;ve heard great reviews of it, though, so YMMV.&lt;br&gt;
&lt;br&gt;
There are plenty of other programmes that do the same thing, these are just two off the top of my head.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.108001-1556239</guid>
		<pubDate>Sun, 30 Nov 2008 03:41:06 -0800</pubDate>
		<dc:creator>badmoonrising</dc:creator>
	</item><item>
		<title>By: Caviar</title>
		<link>http://ask.metafilter.com/108001/Firefox-and-Spotlight-on-the-Mac#1556704</link>	
		<description>I don&apos;t believe that it adds them to the spotlight search, but Agile Web&apos;s free &lt;a href=&quot;http://agilewebsolutions.com/products/AllBookmarks&quot;&gt;AllBookmarks&lt;/a&gt; adds a quick access search box and pulldown menu to your title bar for a number of different browsers.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.108001-1556704</guid>
		<pubDate>Sun, 30 Nov 2008 17:48:12 -0800</pubDate>
		<dc:creator>Caviar</dc:creator>
	</item><item>
		<title>By: Mr. Anthropomorphism</title>
		<link>http://ask.metafilter.com/108001/Firefox-and-Spotlight-on-the-Mac#1557467</link>	
		<description>I know this isn&apos;t exactly Spotlight per se, but if you&apos;re running Firefox 3, the address bar has this functionality out of the box.&lt;br&gt;
&lt;br&gt;
See, it&apos;s called the &apos;Awesome Bar&apos; and it has the, well, &lt;em&gt;awesome&lt;/em&gt; capability of pulling up items in your bookmarks and history regardless of where in the URL the search terms come up.&lt;br&gt;
&lt;br&gt;
Say I wanted to get back to this page. All I have to do is remember that it&apos;s about Spotlight, type &quot;spot&quot; in the Awesome Bar, and it&apos;s the first thing that comes up. I just hit tab to select it from the drop-down list, and enter to get here.&lt;br&gt;
&lt;br&gt;
It also indexes your bookmarks, including whatever tags you&apos;ve specified for them. It&apos;s so incredibly simple and powerful, I am frequently stumped when I find myself back in Safari and &apos;R+tab+enter&apos; takes me to an error page instead of Google Reader!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.108001-1557467</guid>
		<pubDate>Mon, 01 Dec 2008 13:00:49 -0800</pubDate>
		<dc:creator>Mr. Anthropomorphism</dc:creator>
	</item><item>
		<title>By: Caviar</title>
		<link>http://ask.metafilter.com/108001/Firefox-and-Spotlight-on-the-Mac#1561098</link>	
		<description>It is my recollection, though internet history seems to be fuzzy on the subject, that the functionality represented by the &quot;Awesome Bar&quot; is a feature that first appeared in &lt;a href=&quot;http://www.opera.com&quot;&gt;Opera&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
It&apos;s not Spotlight, per se, but &lt;a href=&quot;http://www.blacktree.com/&quot;&gt;Quicksilver&lt;/a&gt; has a Firefox plugin that will index bookmarks and history.&lt;br&gt;
&lt;br&gt;
Generally, the mozilla products are not very integrated into the Mac ecosystem, which kind of sucks and makes me want to not use them much.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.108001-1561098</guid>
		<pubDate>Wed, 03 Dec 2008 19:55:00 -0800</pubDate>
		<dc:creator>Caviar</dc:creator>
	</item>
	</channel>
</rss>
