<?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>Terrysco&#039;s Blog &#187; eclipse</title>
	<atom:link href="http://www.terrysco.com/node/tag/eclipse/feed" rel="self" type="application/rss+xml" />
	<link>http://www.terrysco.com</link>
	<description>仅关注于互联网行业， Linux平台开发。</description>
	<lastBuildDate>Sat, 05 Nov 2011 21:24:06 +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>调整eclipse在Archlinux上的显示</title>
		<link>http://www.terrysco.com/node/eclipse-gtk-apperence.html</link>
		<comments>http://www.terrysco.com/node/eclipse-gtk-apperence.html#comments</comments>
		<pubDate>Sat, 05 Feb 2011 19:31:25 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Mac/DB]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.terrysco.com/?p=424</guid>
		<description><![CDATA[eclipse在linux平台上的显示真是让人纠结，浪费空间不说，左边的项目树和大纲方法列表太松散了。既然我当时在eclipse官方下载的GTK版本，可以对其进行单独定制显示。 首先，创建一个自定义的gtkrc文件/home/terrysco/.gtkrc-eclipse，写入： style “eclipse” { font_name = “DejaVu 8&#8243; } class “GtkWidget” style “eclipse” style “eclipse” { font_name = “DejaVu 8&#8243; } class “GtkWidget” style “eclipse” 其中字体的名字和大小可以根据自己喜好进行设置。完成后在桌面上创建一个程序启动器，在其命令那里写入： env GTK2_RC_FILES=/usr/share/themes/Clearlooks/gtk-2.0/gtkrc:/home/terrysco/.gtkrc-eclipse &#8216;/home/terrysco/Applications/eclipse/eclipse&#8217; 后面的路径根据自己eclipse实际情况来指定。重启eclipse，舒服多了。]]></description>
			<content:encoded><![CDATA[<p>eclipse在linux平台上的显示真是让人纠结，浪费空间不说，左边的项目树和大纲方法列表太松散了。既然我当时在eclipse官方下载的GTK版本，可以对其进行单独定制显示。</p>
<p>首先，创建一个自定义的gtkrc文件/home/terrysco/.gtkrc-eclipse，写入：</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">style “eclipse” {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">font_name = “DejaVu 8&#8243;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">class “GtkWidget” style “eclipse”</div>
<p>style “eclipse” {</p>
<p>font_name = “DejaVu 8&#8243;</p>
<p>}</p>
<p>class “GtkWidget” style “eclipse”</p>
<p>其中字体的名字和大小可以根据自己喜好进行设置。完成后在桌面上创建一个程序启动器，在其命令那里写入：</p>
<p>env GTK2_RC_FILES=/usr/share/themes/Clearlooks/gtk-2.0/gtkrc:/home/terrysco/.gtkrc-eclipse &#8216;/home/terrysco/Applications/eclipse/eclipse&#8217;</p>
<p>后面的路径根据自己eclipse实际情况来指定。重启eclipse，舒服多了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.terrysco.com/node/eclipse-gtk-apperence.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>解决archlinux上android环境的搭建问题</title>
		<link>http://www.terrysco.com/node/archlinux-android-rebuild.html</link>
		<comments>http://www.terrysco.com/node/archlinux-android-rebuild.html#comments</comments>
		<pubDate>Mon, 18 Oct 2010 16:36:58 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Mobile Platform]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://www.terrysco.com/?p=388</guid>
		<description><![CDATA[不知道从什么时候开始，AUR源里面的eclipse-android包装不上了，也就是ADT。google了很多解决办法，一一试过了还是不行，而且现在的这个包依赖了eclipse-classic，很郁闷这种频繁的包更新方式。解决办法如下： 首先把自己的帐号加入到eclipse组中。比如： sudo gpasswd -a terrysco eclipse 然后安装eclipse-android这个包的时候编辑PKGBUILD，把eclipse-classic这个依赖去掉。使用我们之前安装的eclipse这个包即可。没问题了，所有安装顺利，创建项目测试了下通过。]]></description>
			<content:encoded><![CDATA[<p>不知道从什么时候开始，AUR源里面的eclipse-android包装不上了，也就是ADT。google了很多解决办法，一一试过了还是不行，而且现在的这个包依赖了eclipse-classic，很郁闷这种频繁的包更新方式。解决办法如下：</p>
<p>首先把自己的帐号加入到eclipse组中。比如：</p>
<p>sudo gpasswd -a terrysco eclipse</p>
<p>然后安装eclipse-android这个包的时候编辑PKGBUILD，把eclipse-classic这个依赖去掉。使用我们之前安装的eclipse这个包即可。没问题了，所有安装顺利，创建项目测试了下通过。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.terrysco.com/node/archlinux-android-rebuild.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPEclipse：A User Guide</title>
		<link>http://www.terrysco.com/node/php-eclipse-user-guide.html</link>
		<comments>http://www.terrysco.com/node/php-eclipse-user-guide.html#comments</comments>
		<pubDate>Thu, 18 Jun 2009 16:39:53 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Book Remarks]]></category>
		<category><![CDATA[Linux/Mac/DB]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.anyliv.com/www.terrysco.com/?p=98</guid>
		<description><![CDATA[<p>今天看到一本好书：《PHPEclipse：A User Guide》，着重对phpeclipse这个插件进行介绍，此类资料中这个算是比较详细，三种平台都有介绍（Linux，Mac，Windows）。对Quantum DB Plug-In也有介绍，唯一&#8220;不好&#8221;的地方就是：晦涩的单词太多，不知道我辈的英文水平不是很好啊。。借助翻译工具还是硬着头皮看下来了，200多页，其中还有部分插图，花费3个小时，还算值得。</p><p>&#160;</p><p>推荐给想用eclipse做php开发的朋友，熟练后就不必使用收费的zend studio了。</p>...
]]></description>
			<content:encoded><![CDATA[<p>今天看到一本好书：《PHPEclipse：A User Guide》，着重对phpeclipse这个插件进行介绍，此类资料中这个算是比较详细，三种平台都有介绍（Linux，Mac，Windows）。对Quantum DB Plug-In也有介绍，唯一“不好”的地方就是：晦涩的单词太多，不知道我辈的英文水平不是很好啊。。借助翻译工具还是硬着头皮看下来了，200多页，其中还有部分插图，花费3个小时，还算值得。</p>
<p>推荐给想用eclipse做php开发的朋友，熟练后就不必使用收费的zend studio了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.terrysco.com/node/php-eclipse-user-guide.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>eclipse相关文章汇总</title>
		<link>http://www.terrysco.com/node/eclipse-config.html</link>
		<comments>http://www.terrysco.com/node/eclipse-config.html#comments</comments>
		<pubDate>Thu, 07 May 2009 21:24:59 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Mac/DB]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://www.anyliv.com/www.terrysco.com/?p=92</guid>
		<description><![CDATA[<p>1. 自动换行插件安装。</p><p>http://blog.zol.com.cn/684/article_683650.html</p><p>&#160;</p><p>to be continued...</p>
]]></description>
			<content:encoded><![CDATA[<p>1. 自动换行插件安装。</p>
<p>http://blog.zol.com.cn/684/article_683650.html</p>
<p>&nbsp;</p>
<p>to be continued&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.terrysco.com/node/eclipse-config.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>用phpeclipse进行drupal开发</title>
		<link>http://www.terrysco.com/node/phpeclipse-drupal.html</link>
		<comments>http://www.terrysco.com/node/phpeclipse-drupal.html#comments</comments>
		<pubDate>Wed, 06 May 2009 06:20:28 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[CMS/FrameWork]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[phpeclipse]]></category>

		<guid isPermaLink="false">http://www.anyliv.com/www.terrysco.com/?p=91</guid>
		<description><![CDATA[<p>phpeclipse是开源软件eclipse的一个插件，顾名思义，是为PHPER们准备的。把features和plugins拷贝好后，就可以使用了。这里如果没有刷新出新的eclipse PHP模块，是因为缓存的问题，我们使用-clean参数就可以了。（eclipse使用常识）</p><p>剩下就是做一些常用配置，比方drupal的代码规范问题，缩进两个空格，代替tab键。module，info，install后缀名识别等等，比较简单就不说了。剩下的就是新建一个项目，然后导入drupal整个文件夹，这样整个drupal系统代码就导入进来了，新建一个模块的时候，所有drupal函数都可用了，加上eclipse强大的IDE功能，我想你应该可以脱离drupal的官方api了，函数都有提示了。左侧的大纲列表方便定位我们定义的钩子函数。</p><p>...</p>
]]></description>
			<content:encoded><![CDATA[<p>phpeclipse是开源软件eclipse的一个插件，顾名思义，是为PHPER们准备的。把features和plugins拷贝好后，就可以使用了。这里如果没有刷新出新的eclipse PHP模块，是因为缓存的问题，我们使用-clean参数就可以了。（eclipse使用常识）</p>
<p>剩下就是做一些常用配置，比方drupal的代码规范问题，缩进两个空格，代替tab键。module，info，install后缀名识别等等，比较简单就不说了。剩下的就是新建一个项目，然后导入drupal整个文件夹，这样整个drupal系统代码就导入进来了，新建一个模块的时候，所有drupal函数都可用了，加上eclipse强大的IDE功能，我想你应该可以脱离drupal的官方api了，函数都有提示了。左侧的大纲列表方便定位我们定义的钩子函数。</p>
<p>这样一来，类似l等形参比较多的函数，就不用记下来了，直接函数参数提醒，实在不行可以F3查看函数申明代码，这些功能就和java以及C++开发的时候使用eclipse差不多了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.terrysco.com/node/phpeclipse-drupal.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>arch下安装配置eclipse</title>
		<link>http://www.terrysco.com/node/arch-eclipse.html</link>
		<comments>http://www.terrysco.com/node/arch-eclipse.html#comments</comments>
		<pubDate>Wed, 22 Apr 2009 17:52:22 +0000</pubDate>
		<dc:creator>terrysco</dc:creator>
				<category><![CDATA[Linux/Mac/DB]]></category>
		<category><![CDATA[arch]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.anyliv.com/www.terrysco.com/?p=89</guid>
		<description><![CDATA[<p>越来越觉得IBM维护的eclipse好用。记得06年的时候，公司一个同事给我推荐这个IDE，当时用过一点java。后来为了快速开发，选择了php，就与这个开源软件擦肩而过了，直到接触Flex的时候，又重拾了这个eclipse工具。很多开发平台都在eclipse有插件，我只安装了C，C++的CDT，python的pydev，PHP的PDT，以及Flex。虽然在Linux下的Flex builder还不支持视窗设计，但用它来写代码已经很方便了。熟悉eclipse的常用配置和快捷键以及定制，对开发效率会大大提升，让你真正体会到IDE的方便。</p>...
]]></description>
			<content:encoded><![CDATA[<p>越来越觉得IBM维护的eclipse好用。记得06年的时候，公司一个同事给我推荐这个IDE，当时用过一点java。后来为了快速开发，选择了php，就与这个开源软件擦肩而过了，直到接触Flex的时候，又重拾了这个eclipse工具。很多开发平台都在eclipse有插件，我只安装了C，C++的CDT，python的pydev，PHP的PDT，以及Flex。虽然在Linux下的Flex builder还不支持视窗设计，但用它来写代码已经很方便了。熟悉eclipse的常用配置和快捷键以及定制，对开发效率会大大提升，让你真正体会到IDE的方便。</p>
<p>arch下安装eclipse，如果没有安装jdk，只是安装了jre会提示与一个包冲突，安装了jdk就可以安装eclipse了。此外可以pacman -Ss eclipse下，有大量的语言插件，enjoy it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.terrysco.com/node/arch-eclipse.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

