<?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/"
		>
<channel>
	<title>Comments on: PDF annotation under Linux with Wine and PDF-XChange Viewer</title>
	<atom:link href="http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/</link>
	<description>Website of François Savard. Topics: software engineering, personal knowledge management (PKM)</description>
	<lastBuildDate>Tue, 11 Dec 2012 22:17:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Francois</title>
		<link>http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/comment-page-1/#comment-21243</link>
		<dc:creator>Francois</dc:creator>
		<pubDate>Tue, 28 Feb 2012 23:19:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsavard.com/flow/?p=401#comment-21243</guid>
		<description><![CDATA[Hi naught, thank you for posting your version.

(I&#039;ll leave both comments there otherwise there&#039;s a lack of context)]]></description>
		<content:encoded><![CDATA[<p>Hi naught, thank you for posting your version.</p>
<p>(I&#8217;ll leave both comments there otherwise there&#8217;s a lack of context)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: naught101</title>
		<link>http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/comment-page-1/#comment-21216</link>
		<dc:creator>naught101</dc:creator>
		<pubDate>Tue, 28 Feb 2012 02:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsavard.com/flow/?p=401#comment-21216</guid>
		<description><![CDATA[Sorry, delete the last comment, here is the proper script I&#039;m using:

&lt;code&gt;
#!/bin/bash  

# Adapted from:
# http://sodeve.net/foxit-reader-on-ubuntu-linux-through-wine/
# http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/

# Purpose: To convert Linux-style filename to Windows-style
# to pass as an argument to wine when starting PDF XChange Viewer
abspath=$(readlink -f $1)
Filename=&quot;z:&quot;${abspath//\//\\}  
echo $Filename
#assuming you use the default installation folder for PDF
# XChange Viewer in Wine
eval wine &#039;C:\\Program\ Files\\Tracker\ Software\\PDF\ Viewer\\PDFXCview.exe&#039; &quot;&#039;$Filename&#039;&quot;
&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>Sorry, delete the last comment, here is the proper script I&#8217;m using:</p>
<p><code><br />
#!/bin/bash  </p>
<p># Adapted from:<br />
# <a href="http://sodeve.net/foxit-reader-on-ubuntu-linux-through-wine/" rel="nofollow">http://sodeve.net/foxit-reader-on-ubuntu-linux-through-wine/</a><br />
# <a href="http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/" rel="nofollow">http://www.fsavard.com/flow/20.....ge-viewer/</a></p>
<p># Purpose: To convert Linux-style filename to Windows-style<br />
# to pass as an argument to wine when starting PDF XChange Viewer<br />
abspath=$(readlink -f $1)<br />
Filename="z:"${abspath//\//\\}<br />
echo $Filename<br />
#assuming you use the default installation folder for PDF<br />
# XChange Viewer in Wine<br />
eval wine 'C:\\Program\ Files\\Tracker\ Software\\PDF\ Viewer\\PDFXCview.exe' "'$Filename'"<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: naught101</title>
		<link>http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/comment-page-1/#comment-21215</link>
		<dc:creator>naught101</dc:creator>
		<pubDate>Tue, 28 Feb 2012 02:31:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsavard.com/flow/?p=401#comment-21215</guid>
		<description><![CDATA[(NOTE: correction comment by naught101 below)

Awesome, thanks for the starter script. I&#039;m using a modification, posting here for reference:

#!/bin/bash  

# Adapted from:
# http://sodeve.net/foxit-reader-on-ubuntu-linux-through-wine/
# http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/

# Purpose: To convert Linux-style filename to Windows-style
# to pass as an argument to wine when starting PDF XChange Viewer
abspath=$(readlink -f $1)
Filename=&quot;z:&quot;${abspath//\//\\}  

#assuming you use the default installation folder for PDF
# XChange Viewer in Wine
wine &#039;C:\Program Files\Tracker Software\PDF Viewer\PDFXCview.exe&#039; &quot;&#039;$Filename&#039;&quot;]]></description>
		<content:encoded><![CDATA[<p>(NOTE: correction comment by naught101 below)</p>
<p>Awesome, thanks for the starter script. I&#8217;m using a modification, posting here for reference:</p>
<p>#!/bin/bash  </p>
<p># Adapted from:<br />
# <a href="http://sodeve.net/foxit-reader-on-ubuntu-linux-through-wine/" rel="nofollow">http://sodeve.net/foxit-reader-on-ubuntu-linux-through-wine/</a><br />
# <a href="http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/" rel="nofollow">http://www.fsavard.com/flow/20.....ge-viewer/</a></p>
<p># Purpose: To convert Linux-style filename to Windows-style<br />
# to pass as an argument to wine when starting PDF XChange Viewer<br />
abspath=$(readlink -f $1)<br />
Filename=&#8221;z:&#8221;${abspath//\//\\}  </p>
<p>#assuming you use the default installation folder for PDF<br />
# XChange Viewer in Wine<br />
wine &#8216;C:\Program Files\Tracker Software\PDF Viewer\PDFXCview.exe&#8217; &#8220;&#8216;$Filename&#8217;&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prosist</title>
		<link>http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/comment-page-1/#comment-19415</link>
		<dc:creator>prosist</dc:creator>
		<pubDate>Thu, 03 Nov 2011 08:48:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsavard.com/flow/?p=401#comment-19415</guid>
		<description><![CDATA[thank you very much!]]></description>
		<content:encoded><![CDATA[<p>thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francois</title>
		<link>http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/comment-page-1/#comment-17725</link>
		<dc:creator>Francois</dc:creator>
		<pubDate>Thu, 11 Aug 2011 15:57:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsavard.com/flow/?p=401#comment-17725</guid>
		<description><![CDATA[Hi Venkat. Thanks for the &#039;shell extensions&#039; tip, I&#039;ll have to try it. To be honest XChange Viewer is the only program I use through Wine so I never really took the time to learn about Wine in general... maybe I would&#039;ve saved some time, actually, doing that.]]></description>
		<content:encoded><![CDATA[<p>Hi Venkat. Thanks for the &#8216;shell extensions&#8217; tip, I&#8217;ll have to try it. To be honest XChange Viewer is the only program I use through Wine so I never really took the time to learn about Wine in general&#8230; maybe I would&#8217;ve saved some time, actually, doing that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venkat</title>
		<link>http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/comment-page-1/#comment-17724</link>
		<dc:creator>Venkat</dc:creator>
		<pubDate>Thu, 11 Aug 2011 15:53:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsavard.com/flow/?p=401#comment-17724</guid>
		<description><![CDATA[Hi Francois,

I got here through google.

Fantastic tip. Thanks for solving one of my pet peeves on Linux.

I&#039;m using ubuntu-10.10 x86-64 and I don&#039;t even need the openpdf.sh script to start. I installed the Xchange viewer with shell extensions and it automatically shows up in Nautilus. Great.]]></description>
		<content:encoded><![CDATA[<p>Hi Francois,</p>
<p>I got here through google.</p>
<p>Fantastic tip. Thanks for solving one of my pet peeves on Linux.</p>
<p>I&#8217;m using ubuntu-10.10 x86-64 and I don&#8217;t even need the openpdf.sh script to start. I installed the Xchange viewer with shell extensions and it automatically shows up in Nautilus. Great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francois</title>
		<link>http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/comment-page-1/#comment-16330</link>
		<dc:creator>Francois</dc:creator>
		<pubDate>Sat, 04 Jun 2011 20:09:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsavard.com/flow/?p=401#comment-16330</guid>
		<description><![CDATA[Hi Tshann,

I remember having searched a lot of time (with lots of episodes of giving up to try a few months later) for a Linux-native app with solid highlighting and commenting feature. I was just happy to find anything at all (open source or not), but the free version does much more than I ever wanted for annotation, anyway.

The only downside for me is that under Wine it loses my config upon restart, so I have this 30-second routine where I reload it and set windows right etc. I don&#039;t use Wine for anything else... I guess at some point I&#039;ll figure out the problem had a simple fix :)

Thank you for passing by.]]></description>
		<content:encoded><![CDATA[<p>Hi Tshann,</p>
<p>I remember having searched a lot of time (with lots of episodes of giving up to try a few months later) for a Linux-native app with solid highlighting and commenting feature. I was just happy to find anything at all (open source or not), but the free version does much more than I ever wanted for annotation, anyway.</p>
<p>The only downside for me is that under Wine it loses my config upon restart, so I have this 30-second routine where I reload it and set windows right etc. I don&#8217;t use Wine for anything else&#8230; I guess at some point I&#8217;ll figure out the problem had a simple fix <img src='http://www.fsavard.com/flow/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thank you for passing by.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tshann</title>
		<link>http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/comment-page-1/#comment-16301</link>
		<dc:creator>Tshann</dc:creator>
		<pubDate>Fri, 03 Jun 2011 20:34:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsavard.com/flow/?p=401#comment-16301</guid>
		<description><![CDATA[Hi,
  Been using this product for years in linux - works better than anything that is possible in linux - unfortunately. I&#039;m using it now in my Debian Squeeze distro - Crunchbang Statler. But I&#039;ve used it in all my distro&#039;s and it works great in all of them. I have a few business machines - use it in those rigs as well. FAR better than Adobe Pro - tiny footprint and does virtually everything that Adobe does - without being a pig. The cost of buying (if you need some of the basic features) is reasonable as well. But for most, the simple free version will suffice. AWESOME product. I only wish other essential windows software worked as well in wine.]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
  Been using this product for years in linux &#8211; works better than anything that is possible in linux &#8211; unfortunately. I&#8217;m using it now in my Debian Squeeze distro &#8211; Crunchbang Statler. But I&#8217;ve used it in all my distro&#8217;s and it works great in all of them. I have a few business machines &#8211; use it in those rigs as well. FAR better than Adobe Pro &#8211; tiny footprint and does virtually everything that Adobe does &#8211; without being a pig. The cost of buying (if you need some of the basic features) is reasonable as well. But for most, the simple free version will suffice. AWESOME product. I only wish other essential windows software worked as well in wine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francois</title>
		<link>http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/comment-page-1/#comment-15060</link>
		<dc:creator>Francois</dc:creator>
		<pubDate>Thu, 14 Apr 2011 13:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsavard.com/flow/?p=401#comment-15060</guid>
		<description><![CDATA[Hi Paulo, thanks for the comment; happy to see that setup is still working in newer OSes. For others who&#039;d like to use it on Ubuntu 10.10, could you specify what changes you made?]]></description>
		<content:encoded><![CDATA[<p>Hi Paulo, thanks for the comment; happy to see that setup is still working in newer OSes. For others who&#8217;d like to use it on Ubuntu 10.10, could you specify what changes you made?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paulo Polito</title>
		<link>http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/comment-page-1/#comment-14967</link>
		<dc:creator>Paulo Polito</dc:creator>
		<pubDate>Sun, 10 Apr 2011 14:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsavard.com/flow/?p=401#comment-14967</guid>
		<description><![CDATA[Thank you for the info. Works fine in Ubuntu 10.10 64, just needs editing the $App directory structure.]]></description>
		<content:encoded><![CDATA[<p>Thank you for the info. Works fine in Ubuntu 10.10 64, just needs editing the $App directory structure.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
