<?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>Oracle Seeker, Oracle探索者 &#187; Ruby/Ruby on Rails</title>
	<atom:link href="http://oracleseeker.com/category/opensource_top/rubyruby-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://oracleseeker.com</link>
	<description>Oracle技术学习和探索的园地，技术顾问的探索旅程</description>
	<lastBuildDate>Sat, 05 May 2012 09:31:35 +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>rails3中jqgrid的应用</title>
		<link>http://oracleseeker.com/2010/10/13/rails3%e4%b8%adjqgrid%e7%9a%84%e5%ba%94%e7%94%a8/</link>
		<comments>http://oracleseeker.com/2010/10/13/rails3%e4%b8%adjqgrid%e7%9a%84%e5%ba%94%e7%94%a8/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 17:16:00 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Ruby/Ruby on Rails]]></category>
		<category><![CDATA[jqgrid]]></category>
		<category><![CDATA[rails3]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2010/10/13/rails3%e4%b8%adjqgrid%e7%9a%84%e5%ba%94%e7%94%a8/</guid>
		<description><![CDATA[&#160;&#160;&#160;&#160;&#160;&#160; jqGrid是一款非常优秀的ajax表格，它通过ajax回调机制来动态和服务器进行数据的交互。 &#160;&#160;&#160;&#160;&#160;&#160; jqGrid是基于jquery，是jquery家族一个组件，所以它的运行需要jquery库的支持。那么在web application中使用jqGrid的时候，必须先导入jquery包，同时它支持jquery的UI theme。那么如果你不喜欢jqGrid的默认颜色，可以通过jquery UI的theme去更改外观。 &#160;&#160;&#160;&#160;&#160;&#160; 在这里介绍rails里面使用jqGrid。其中jqGrid支持很多功能，支持对数据进行格式，查找，编辑，子表格，树表格，分组，显示和隐藏字段以及导入和导出功能。同时jqGrid针对于很多功能都是用单一个js文件来实现，所以你可以根据自己想要的功能来选择系统想要的js文件。 &#160;&#160;&#160;&#160;&#160; 在rails3里面使用jqGrid非常的方便，但是针对于rail3需要使用jquery，而不采用prototype的javascript库。由于本文主要介绍jqGrid在rails3里面的使用，就先假设rails3系统已经使用jquery。 1.首先下载jqGrid针对于rails3的版本的插件： &#160;&#160;&#160;&#160; rails plugin install git://github.com/kritik/2dc_jqgrid_rails3.git 2.下载完成以后，这个插件可以自动安装，会在public/javascript以及public/stylesheets 下面创建关于jqGrid的目录。但是你会发现其中关于这些目录多生成一层目录。这对于这种情况下，rails如果不进行设置的话，将不能访问这些目录的图片、javascript和css等。 3. 修改插件中的rake命令，阅读插件下面的lib/tasks/2dc_jqgrid_tasks.rake文件，发现下面这句话有问题，会将 source下面包括目录将所有的内容进行拷贝，而这个时候不需要目录，而仅仅需要目录下面的内容，所以使用copy_entry来实现： &#160;&#160;&#160;&#160; FileUtils.copy_r(source, target, :verbose =&#62; true) &#160;&#160;&#160; 修改为 &#160;&#160;&#160;&#160; FileUtils.copy_entry(source, target, :verbose =&#62; true) 4. 在当前工程目录下面运行rake jqgrid:install，可以生成正确的jqgrid的文件目录。 &#160;&#160;&#160; 文件目录如下： &#160;&#160;&#160; &#8211;public &#160;&#160;&#160;&#160;&#160; &#124; &#160;&#160;&#160;&#160;&#160; &#124;&#8211; images &#160;&#160;&#160;&#160;&#160; &#124;&#160;&#160; &#124; &#160;&#160;&#160;&#160;&#160; &#124;&#160;&#160; &#124;&#8211;jqgrid&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; [...]


无相关文章.]]></description>
		<wfw:commentRss>http://oracleseeker.com/2010/10/13/rails3%e4%b8%adjqgrid%e7%9a%84%e5%ba%94%e7%94%a8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Passenger实现Redmine和Apache集成</title>
		<link>http://oracleseeker.com/2010/03/09/install_passenger_for_redmine_on_apache/</link>
		<comments>http://oracleseeker.com/2010/03/09/install_passenger_for_redmine_on_apache/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 05:06:09 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Ruby/Ruby on Rails]]></category>
		<category><![CDATA[Redmine]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2010/03/09/install_passenger_for_redmine_on_apache/</guid>
		<description><![CDATA[Redmine 0.9.3默认使用RoR自带的web服务器WEBrick，默认的端口是3000，很多人将Redmine集成到apache，nginx或tomcat中，集成到apache通常采用CGI方式来集成，配置起来比较繁杂。Phusion Passenger组件是专门为apache和nginx开发的用来部署Ruby on Rails应用的，配置起来非常的方便，使用下来感觉页面的操作速度比WEBrick要快很多，本文记录了如何安装passenger来集成Redmine到apache服务器。


相关文章:<ol><li><a href='http://oracleseeker.com/2010/03/07/about_redmine/' rel='bookmark' title='Permanent Link: 基于RoR的项目协作平台Redmine'>基于RoR的项目协作平台Redmine</a></li>
<li><a href='http://oracleseeker.com/2010/03/08/install_redmine0-9-3_on_centos5/' rel='bookmark' title='Permanent Link: CentOS5下安装Redmine0.9.3'>CentOS5下安装Redmine0.9.3</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2010/03/09/install_passenger_for_redmine_on_apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS5下安装Redmine0.9.3</title>
		<link>http://oracleseeker.com/2010/03/08/install_redmine0-9-3_on_centos5/</link>
		<comments>http://oracleseeker.com/2010/03/08/install_redmine0-9-3_on_centos5/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 03:38:26 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Ruby/Ruby on Rails]]></category>
		<category><![CDATA[Redmine]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2010/03/08/install_redmine0-9-3_on_centos5/</guid>
		<description><![CDATA[CentOS下安装Redmine的过程是一个痛苦的过程，其间遇到了很多问题，借助强大的网络才顺利完成了安装工作，在此记录一下安装的细节以备查阅。
环境信息：
CentOS 5 
Ruby 1.8.7 
RubyGems 1.3.6
Ruby on Rails 2.3.5 
Redmine 0.9.3 
Postgresql 8.4.2


相关文章:<ol><li><a href='http://oracleseeker.com/2010/03/07/about_redmine/' rel='bookmark' title='Permanent Link: 基于RoR的项目协作平台Redmine'>基于RoR的项目协作平台Redmine</a></li>
<li><a href='http://oracleseeker.com/2010/03/09/install_passenger_for_redmine_on_apache/' rel='bookmark' title='Permanent Link: Passenger实现Redmine和Apache集成'>Passenger实现Redmine和Apache集成</a></li>
</ol>]]></description>
		<wfw:commentRss>http://oracleseeker.com/2010/03/08/install_redmine0-9-3_on_centos5/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>基于RoR的项目协作平台Redmine</title>
		<link>http://oracleseeker.com/2010/03/07/about_redmine/</link>
		<comments>http://oracleseeker.com/2010/03/07/about_redmine/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 14:51:10 +0000</pubDate>
		<dc:creator>aronezhang</dc:creator>
				<category><![CDATA[Ruby/Ruby on Rails]]></category>
		<category><![CDATA[Redmine]]></category>

		<guid isPermaLink="false">http://oracleseeker.com/2010/03/07/about_redmine/</guid>
		<description><![CDATA[基于RoR的项目协作平台Redmine


无相关文章.]]></description>
		<wfw:commentRss>http://oracleseeker.com/2010/03/07/about_redmine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

