<?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>Ionut's WebSpace &#187; Eclipse</title>
	<atom:link href="http://www.vioan.ro/wp/category/eclipse/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vioan.ro/wp</link>
	<description>Exploring Creativity Is My Passion</description>
	<lastBuildDate>Wed, 05 Oct 2011 14:28:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Eclipse Updates/Plugins on OpenSUSE 11.1</title>
		<link>http://www.vioan.ro/wp/2009/03/18/eclipse-updatesplugins-on-opensuse-111/</link>
		<comments>http://www.vioan.ro/wp/2009/03/18/eclipse-updatesplugins-on-opensuse-111/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 10:17:09 +0000</pubDate>
		<dc:creator>ionut</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SciComputing]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[opensuse]]></category>

		<guid isPermaLink="false">http://www.vioan.ro/wp/?p=334</guid>
		<description><![CDATA[


I have just installed Eclipse on OpenSUSE 11.1 from repository, but after that  I could not install any plugins, the message has been:

Some people suggest that you have to remove the installed version from repo and download the latest version from eclipse website. I didn&#8217;t want to do that, so, If you have the same [...]]]></description>
			<content:encoded><![CDATA[<p>I have just installed Eclipse on OpenSUSE 11.1 from repository, but after that  I could not install any plugins, the message has been:</p>
<p><img class="aligncenter size-full wp-image-335" title="eclipse_update" src="http://www.vioan.ro/wp/wp-content/uploads/2009/03/eclipse_update.png" alt="eclipse_update" width="524" height="145" /></p>
<p>Some people suggest that you have to remove the installed version from repo and download the latest version from eclipse website. I didn&#8217;t want to do that, so, If you have the same problem then try the following:</p>
<p>Go to  <strong>Windows-&gt;Preferences</strong>, click the arrow by <strong>General</strong> and select<strong> Capabilities</strong>. Check the box labeled<strong> Classic Update</strong>. That should solve the problem and now you can add your preferred plugins.</p>
<p>That&#8217;s all!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vioan.ro/wp/2009/03/18/eclipse-updatesplugins-on-opensuse-111/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LaTeX with Eclipse IDE running on Windows Vista</title>
		<link>http://www.vioan.ro/wp/2008/04/28/latex-with-eclipse-ide-running-on-windows-vista/</link>
		<comments>http://www.vioan.ro/wp/2008/04/28/latex-with-eclipse-ide-running-on-windows-vista/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 16:57:52 +0000</pubDate>
		<dc:creator>ionut</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://www.vioan.ro/wp/?p=109</guid>
		<description><![CDATA[Usually for Java stuff I am using Eclipse IDE.
I am also a LaTeX user and under Windows I am using MikTeX. More about which applications I am using in a next post.
As text editors, of course you can use vim/gvim (with vim-latex plugin), emacs (with AucTeX), TexnicCenter (a free windows application) or Kile (KDE aplication [...]]]></description>
			<content:encoded><![CDATA[<p>Usually for Java stuff I am using Eclipse IDE.</p>
<p>I am also a LaTeX user and under Windows I am using MikTeX. More about which applications I am using in a next post.</p>
<p>As text editors, of course you can use vim/gvim (with <em>vim-latex</em> plugin), emacs (with <em>AucTeX</em>), TexnicCenter (a free windows application) or Kile (KDE aplication on Linux/Unix). There are many editors but what I pointed here I think are the most suitable for latex from my experience.</p>
<p>What I missed all the time was version control system (cvs, svn). Version control is very well integrated in Eclipse so I decided to give a try to <em>Texlipse</em> plugin which adds LaTeX publishing support. Also you can add spell checking support using Aspell.</p>
<p>So, I downloaded Miktex, I installed it on Windows Vista, so I played a bit with LaTeX to be sure that it is working fine, and after that I added Texlipse plugin to Eclipse, I started by play arround with it.</p>
<p>Trying to compile an article didn&#8217;t work, I got an error: &#8220;The file system path could not be retrieved&#8221;.</p>
<p>At the beginning I didn&#8217;t know if it is a miktex instalation/configuration problem or is something strange with Texlipse configuration.</p>
<p>After spending some time fighting with it, I found that is a Vista problem, so here is the solution:</p>
<p>Open a command prompt and type:</p>
<pre class="code">
set > pdflatex.bat
</pre>
<p>edit pdflatex.bat and put at the first line:</p>
<pre class="code">
@echo off
</pre>
<p>because we don&#8217;t want to see every time these commands on screen.</p>
<p>On the last line in that file, put your magic command to process the latex file, pdflatex.exe or latex.exe, depends what you want to have as output, .dvi file or .pdf file:</p>
<pre class="code">
pdflatex.exe %*   or   latex.exe %*
</pre>
<p>Now, we go back in Texlipse configuration and point the build command to this batch file instead of the normal pdflatex.exe or latex.exe.</p>
<p>Everything should be fine and working now. I am sorry that I didn&#8217;t add the links for every plugin/application but using google is very easy to find them if you want to play with.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vioan.ro/wp/2008/04/28/latex-with-eclipse-ide-running-on-windows-vista/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

