<?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>Random Wisdom &#187; firefox</title>
	<atom:link href="http://scrolls.mafgani.net/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://scrolls.mafgani.net</link>
	<description>An attempt at organizing my thoughts ...</description>
	<lastBuildDate>Sun, 13 Mar 2011 22:54:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Embedded IE for Firefox</title>
		<link>http://scrolls.mafgani.net/2006/01/embedded-ie-for-firefox/</link>
		<comments>http://scrolls.mafgani.net/2006/01/embedded-ie-for-firefox/#comments</comments>
		<pubDate>Mon, 09 Jan 2006 12:10:00 +0000</pubDate>
		<dc:creator>Mostafa</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>

		<guid isPermaLink="false">http://scrolls.mafgani.net/?p=44</guid>
		<description><![CDATA[While customizing firefox, I came across this extension: ietab It doesn&#8217;t really kill that IE dependence but it&#8217;s not a bad extension to have around.]]></description>
			<content:encoded><![CDATA[<p>While customizing firefox, I came across this extension: <a href="http://ietab.mozdev.org">ietab</a></p>
<p>It doesn&#8217;t really kill that IE dependence but it&#8217;s not a bad extension to have around.</p>
]]></content:encoded>
			<wfw:commentRss>http://scrolls.mafgani.net/2006/01/embedded-ie-for-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firefox and MathML on Linux</title>
		<link>http://scrolls.mafgani.net/2005/09/firefox-and-mathml-on-linux/</link>
		<comments>http://scrolls.mafgani.net/2005/09/firefox-and-mathml-on-linux/#comments</comments>
		<pubDate>Mon, 26 Sep 2005 08:36:00 +0000</pubDate>
		<dc:creator>Mostafa</dc:creator>
				<category><![CDATA[How To ...]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[mathml]]></category>
		<category><![CDATA[true type]]></category>

		<guid isPermaLink="false">http://scrolls.mafgani.net/?p=19</guid>
		<description><![CDATA[While it&#8217;s a little more work compared to Windows, getting MathML to work on Firefox isn&#8217;t that hard. Now, it&#8217;s easier than ever thanks to the *.spec files created by Michael A. Peters: http://mpeters.us/fc_extras/mathematica_ttf.spec http://mpeters.us/fc_extras/mathtype_ttf.spec (Copies of the files are also available here) Before we can start building RPMs as a regular user, we need [...]]]></description>
			<content:encoded><![CDATA[<p>While it&#8217;s a little more work compared to Windows, getting MathML to work on Firefox isn&#8217;t that hard. Now, it&#8217;s easier than ever thanks to the *.spec files created by Michael A. Peters:</p>
<p><a href="http://mpeters.us/fc_extras/mathematica_ttf.spec">http://mpeters.us/fc_extras/mathematica_ttf.spec</a><br />
<a href="http://mpeters.us/fc_extras/mathtype_ttf.spec">http://mpeters.us/fc_extras/mathtype_ttf.spec</a></p>
<p>(Copies of the files are also available <a href="http://pandora.iu-bremen.de/~mafgani/stuff/">here</a>)</p>
<p>Before we can start building RPMs as a regular user, we need to install the <span style="font-style:italic;">fedora-rpmdevtools</span> package from the <a href="http://fedoraproject.org/wiki/Extras">Fedora Extras</a> repo:</p>
<pre>
[darkknight@darkworld ~]$ sudo yum install fedora-rpmdevtools
</pre>
<p>Once that&#8217;s installed, we need to create the directory tree and RPM macros needed by rpmbuild:</p>
<pre>
[darkknight@darkworld ~]$ fedora-buildrpmtree
</pre>
<p>Now that we&#8217;re ready to build RPMs, we download and save the SPEC files under the <span style="font-weight:bold;">~/rpmbuild/SPECS/</span> tree:</p>
<pre>
[darkknight@darkworld SPECS]$ wget http://mpeters.us/fc_extras/mathematica_ttf.spec \

http://mpeters.us/fc_extras/mathtype_ttf.spec
</pre>
<p>Once we have the spec files, we need to get the sources. We can get them from the URLs specified in the respective spec files:</p>
<p><a href="http://www.mathtype.com/en/dl/MathTypeTrueTypeFonts.asp">MathType</a><br />
<a href="http://support.wolfram.com/mathematica/systems/windows/general/latestfonts.html">Mathematica</a></p>
<p>(We need the Mathematica 4.1 Fonts)</p>
<p>We need to save the downloaded fonts under <span style="font-weight:bold;">~/rpmbuild/SOURCES/</span></p>
<p>Next, we need to install the <span style="font-style:italic;">cabextract</span> package to satisfy build requirements:</p>
<pre>
[darkknight@darkworld ~]$ sudo yum install cabextract
</pre>
<p>Now, to build the font RPMs, switch to the <span style="font-weight:bold;">~/rpmbuild/SPECS</span> directory and run:</p>
<pre>
[darkknight@darkworld SPECS]$ rpmbuild -bb mathtype_ttf.spec
[...]

[darkknight@darkworld SPECS]$ rpmbuild -bb mathematica_ttf.spec
[...]
</pre>
<p>In both cases, the long messeges should end in:</p>
<pre>
+ exit 0
</pre>
<p>If not, then you need to hunt down the problem and solve it. Assuming they both ended with the exit status &#8217;0&#8242;, we can go ahead and install our freshly baked RPMs:</p>
<pre>
[darkknight@darkworld ~]$ sudo yum localinstall ~/rpmbuild/RPMS/noarch/math*
</pre>
<p>In addition to those packages, we also need the <span style="font-style:italic;">mathml-fonts</span> package:</p>
<pre>
[darkknight@darkworld ~]$ sudo yum install mathml-fonts
</pre>
<p>Once we have all the required fonts, we have disble PANGO for firefox. In order to do this, we need to uncomment the following lines from <span style="font-style:bold;">/usr/bin/firefox</span> :</p>
<p>MOZ_DISABLE_PANGO=1<br />
export MOZ_DISABLE_PANGO</p>
<p>One that&#8217;s done, we&#8217;re good to go! We can test the new MathML rendering capabilities at:</p>
<p><a href="http://www.mozilla.org/projects/mathml/demo/texvsmml.xhtml">http://www.mozilla.org/projects/mathml/demo/texvsmml.xhtml</a></p>
]]></content:encoded>
			<wfw:commentRss>http://scrolls.mafgani.net/2005/09/firefox-and-mathml-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importing Firefox passwords from another profile</title>
		<link>http://scrolls.mafgani.net/2005/08/importing-firefox-passwords-from-another-profile/</link>
		<comments>http://scrolls.mafgani.net/2005/08/importing-firefox-passwords-from-another-profile/#comments</comments>
		<pubDate>Wed, 24 Aug 2005 08:28:00 +0000</pubDate>
		<dc:creator>Mostafa</dc:creator>
				<category><![CDATA[How To ...]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[profile]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://scrolls.mafgani.net/?p=12</guid>
		<description><![CDATA[It&#8217;s a lot simpler than I thought it would be &#8211; simply copy key3.db and signons.txt to the new profile and make sure they are writable.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a lot simpler than I thought it would be &#8211; simply copy <span style="font-weight: bold;">key3.db</span> and <span style="font-weight: bold;">signons.txt</span> to the new profile and make sure they are writable.</p>
]]></content:encoded>
			<wfw:commentRss>http://scrolls.mafgani.net/2005/08/importing-firefox-passwords-from-another-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GPLFlash 2</title>
		<link>http://scrolls.mafgani.net/2005/08/gplflash-2/</link>
		<comments>http://scrolls.mafgani.net/2005/08/gplflash-2/#comments</comments>
		<pubDate>Fri, 19 Aug 2005 20:49:00 +0000</pubDate>
		<dc:creator>Mostafa</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gplflash]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://scrolls.mafgani.net/?p=5</guid>
		<description><![CDATA[Ok .. built and installed GPLFlash .. at least Firefox thinks it&#8217;s installed. Time to give it a try: well .. seems like StarTrek.com still won&#8217;t work .. guess it won&#8217;t settle for anything less than Flash 6]]></description>
			<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3504/251/1600/Screenshot-About%20Plug-ins%20-%20Mozilla%20Firefox2.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/3504/251/400/Screenshot-About%20Plug-ins%20-%20Mozilla%20Firefox.jpg" alt="" border="0" /></a><br />Ok .. built and installed GPLFlash .. at least Firefox thinks it&#8217;s installed. Time to give it a try: well .. seems like <a href="http://www.startrek.com">StarTrek.com</a> still won&#8217;t work ..  guess it won&#8217;t settle for anything less than Flash 6 <img src='http://scrolls.mafgani.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> <span class="down" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://scrolls.mafgani.net/2005/08/gplflash-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

