<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>zhangyanan (张亚楠)</title>
    <link>https://ruby-china.org/zhangyanan</link>
    <description></description>
    <language>en-us</language>
    <item>
      <title>做一个任务分配功能，可以拖动左侧的数据到右侧，按 shift 可多选，请问有人知道网上可推荐的插件或者类似的吗？</title>
      <description>&lt;p&gt;&lt;img src="https://l.ruby-china.com/photo/2015/2ebe682dac788905700cc9ed4d400eb9.png" title="" alt=""&gt;&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Mon, 15 Jun 2015 16:05:11 +0800</pubDate>
      <link>https://ruby-china.org/topics/26025</link>
      <guid>https://ruby-china.org/topics/26025</guid>
    </item>
    <item>
      <title>使用 Java poi XSSF 导入一个以 xls 后缀结束的 HTML 文件</title>
      <description>&lt;p&gt;需要实现导入功能，从客户处得到的实际是 html 的以 xls 后缀结束的文件导入数据库中，本来使用的 poi 的 HSSF 导入，但是会提示无效的头部签名。尝试使用 XSSF 导入后，依然报错。有人做个这方面的可以来发表意见！求帮助！
目前错误：Package should contain a content type part [M1.13]&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Wed, 11 Feb 2015 16:49:53 +0800</pubDate>
      <link>https://ruby-china.org/topics/24220</link>
      <guid>https://ruby-china.org/topics/24220</guid>
    </item>
    <item>
      <title>有人知道田嘉林的一个关于分析 arel gem 的视频地址吗？</title>
      <description>&lt;p&gt;帮帮忙，找不到了~&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Tue, 04 Nov 2014 09:40:22 +0800</pubDate>
      <link>https://ruby-china.org/topics/22452</link>
      <guid>https://ruby-china.org/topics/22452</guid>
    </item>
    <item>
      <title>table，你怎么显示不完整？</title>
      <description>&lt;p&gt;使用 jquery.layout，但是 table 的列太多，缩放浏览器时页面无法完整显示，有高人支招吗？&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Thu, 24 Jul 2014 16:59:39 +0800</pubDate>
      <link>https://ruby-china.org/topics/20655</link>
      <guid>https://ruby-china.org/topics/20655</guid>
    </item>
    <item>
      <title>搭建一个后台管理网站，用 div、table 还是 iframe？</title>
      <description>&lt;p&gt;看了 ruby-china，用的 div 布局，用什么比较好？&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Mon, 30 Jun 2014 19:33:12 +0800</pubDate>
      <link>https://ruby-china.org/topics/20242</link>
      <guid>https://ruby-china.org/topics/20242</guid>
    </item>
    <item>
      <title>在 rails new APP_PATH 时发现的指定数据库命令</title>
      <description>&lt;p&gt;&lt;img src="https://l.ruby-china.com/photo/2014/9f77015cec9ece7c0242c277fbc4fcf5.jpg" title="" alt=""&gt;
postgresql 与 jdbcpostgresql 有什么区别？&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Fri, 27 Jun 2014 10:59:44 +0800</pubDate>
      <link>https://ruby-china.org/topics/20194</link>
      <guid>https://ruby-china.org/topics/20194</guid>
    </item>
    <item>
      <title>rspec 测试：NameError: uninitialized constant User</title>
      <description>&lt;p&gt;新建的项目测试 rspec，运行的时候提示，需要引入什么吗？&lt;/p&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="n"&gt;user_controller_spec&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;rb&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="n"&gt;describe&lt;/span&gt; &lt;span class="s2"&gt;"GET index"&lt;/span&gt; &lt;span class="k"&gt;do&lt;/span&gt;
  &lt;span class="n"&gt;it&lt;/span&gt; &lt;span class="s2"&gt;"assigns all users as @users"&lt;/span&gt; &lt;span class="k"&gt;do&lt;/span&gt;
    &lt;span class="n"&gt;user&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="no"&gt;User&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;create!&lt;/span&gt; &lt;span class="n"&gt;valid_attributes&lt;/span&gt;
    &lt;span class="n"&gt;get&lt;/span&gt; &lt;span class="ss"&gt;:index&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;{},&lt;/span&gt; &lt;span class="n"&gt;valid_session&lt;/span&gt;
    &lt;span class="n"&gt;assigns&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="ss"&gt;:users&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;should&lt;/span&gt; &lt;span class="n"&gt;eq&lt;/span&gt;&lt;span class="p"&gt;([&lt;/span&gt;&lt;span class="n"&gt;user&lt;/span&gt;&lt;span class="p"&gt;])&lt;/span&gt;
  &lt;span class="k"&gt;end&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Thu, 26 Jun 2014 16:02:07 +0800</pubDate>
      <link>https://ruby-china.org/topics/20180</link>
      <guid>https://ruby-china.org/topics/20180</guid>
    </item>
    <item>
      <title>安装了 Ubuntu 14.04，昨天回家启动之后，一直弹框，system program problem detected</title>
      <description>&lt;p&gt;&lt;img src="https://l.ruby-china.com/photo/2014/e6f47032465f175e3e0d4eae73327a92.jpg" title="" alt=""&gt;
想进用快捷键进终端，命令都不起作用了，想关机都没办法，没有重启了，无线也不能用了。
网上查了下，在终端输入 sudo  rm -rf /var/crash 不起作用的，有人知道怎么做吗？
补充下：我的电脑是双系统：windows7 + ubuntu 14.04 lts&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Wed, 25 Jun 2014 11:00:51 +0800</pubDate>
      <link>https://ruby-china.org/topics/20151</link>
      <guid>https://ruby-china.org/topics/20151</guid>
    </item>
    <item>
      <title>bundle install 直接报错</title>
      <description>&lt;p&gt;&lt;img src="https://l.ruby-china.com/photo/2014/1b6639404f90c4e9c8a0ed3289a56745.jpg" title="" alt=""&gt;&lt;/p&gt;

&lt;p&gt;运行&lt;/p&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="n"&gt;gem&lt;/span&gt; &lt;span class="n"&gt;install&lt;/span&gt; &lt;span class="s1"&gt;'pg'&lt;/span&gt; &lt;span class="n"&gt;报一样的错误&lt;/span&gt;&lt;span class="err"&gt;，&lt;/span&gt;&lt;span class="n"&gt;但是jruby&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;lib&lt;/span&gt;&lt;span class="o"&gt;/...&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;/&lt;/span&gt;&lt;span class="n"&gt;gems&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;下面会有pg&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="mf"&gt;0.17&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="n"&gt;但是不能使用&lt;/span&gt;&lt;span class="err"&gt;。&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Wed, 25 Jun 2014 10:52:27 +0800</pubDate>
      <link>https://ruby-china.org/topics/20150</link>
      <guid>https://ruby-china.org/topics/20150</guid>
    </item>
    <item>
      <title>jekyll 版本这里有一个坑，我掉进去了，没出来。</title>
      <description>&lt;p&gt;&lt;a href="https://github.com/clippit/10th-anniversary" rel="nofollow" target="_blank"&gt;https://github.com/clippit/10th-anniversary&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;我的 ubuntu 系统，14.04，安装的 jekyll 版本恰恰是这个 0.11.2，但是费劲心思找这个 site.rb，找到了，但是没有这个要修改的代码。&lt;/p&gt;

&lt;p&gt;谁能把我从坑里拉上来？&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Tue, 17 Jun 2014 21:38:16 +0800</pubDate>
      <link>https://ruby-china.org/topics/20013</link>
      <guid>https://ruby-china.org/topics/20013</guid>
    </item>
    <item>
      <title>过来写个乘法口诀</title>
      <description>&lt;p&gt;1*1=1
1*2=2   2*2=4
....&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Fri, 13 Jun 2014 14:51:07 +0800</pubDate>
      <link>https://ruby-china.org/topics/19921</link>
      <guid>https://ruby-china.org/topics/19921</guid>
    </item>
    <item>
      <title>Pretzel colon</title>
      <description>&lt;p&gt;这个词怎么翻译？&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Tue, 10 Jun 2014 10:36:11 +0800</pubDate>
      <link>https://ruby-china.org/topics/19839</link>
      <guid>https://ruby-china.org/topics/19839</guid>
    </item>
    <item>
      <title>从哪个 ruby 版本开始检查字符集了？</title>
      <description>&lt;p&gt;总监的环境中，有中文的页面不需要加#encoding :utf-8，但是我的 ruby 环境必须加字符集，不然无法运行，敢问从哪个 ruby 版本开始需要设置字符集了？&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Wed, 04 Jun 2014 14:50:34 +0800</pubDate>
      <link>https://ruby-china.org/topics/19731</link>
      <guid>https://ruby-china.org/topics/19731</guid>
    </item>
    <item>
      <title>谁能说下这段代码是怎么了？</title>
      <description>&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;update&lt;/span&gt;
&lt;span class="nb"&gt;p&lt;/span&gt; &lt;span class="s2"&gt;"====================="&lt;/span&gt;
    &lt;span class="vi"&gt;@blog&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="no"&gt;Blog&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;find&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;params&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="ss"&gt;:blog_id&lt;/span&gt;&lt;span class="p"&gt;])&lt;/span&gt;
    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="vi"&gt;@blog&lt;/span&gt;
      &lt;span class="vi"&gt;@blog.update_attributes&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;params&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="ss"&gt;:blog&lt;/span&gt;&lt;span class="p"&gt;])&lt;/span&gt;
      &lt;span class="vi"&gt;@blog.save&lt;/span&gt;
      &lt;span class="n"&gt;redirect_to&lt;/span&gt; &lt;span class="ss"&gt;:action&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="ss"&gt;:index&lt;/span&gt;
    &lt;span class="k"&gt;else&lt;/span&gt;
      &lt;span class="n"&gt;redirect_to&lt;/span&gt; &lt;span class="ss"&gt;:action&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="ss"&gt;:new&lt;/span&gt;
    &lt;span class="k"&gt;end&lt;/span&gt;
  &lt;span class="k"&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;pre class="highlight erb"&gt;&lt;code&gt;&lt;span class="cp"&gt;&amp;lt;%=&lt;/span&gt; &lt;span class="n"&gt;form_for&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="vi"&gt;@blog&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="ss"&gt;:url&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="ss"&gt;:action&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="ss"&gt;:update&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="ss"&gt;:blog_id&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="vi"&gt;@blog.id&lt;/span&gt;&lt;span class="p"&gt;}})&lt;/span&gt; &lt;span class="k"&gt;do&lt;/span&gt; &lt;span class="o"&gt;|&lt;/span&gt;&lt;span class="n"&gt;f&lt;/span&gt;&lt;span class="o"&gt;|&lt;/span&gt; &lt;span class="cp"&gt;%&amp;gt;&lt;/span&gt;
   &lt;span class="nt"&gt;&amp;lt;h3&amp;gt;&lt;/span&gt;blog , world!&lt;span class="nt"&gt;&amp;lt;/h3&amp;gt;&lt;/span&gt;

        &lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;This is a template for a simple marketing or informational website. It includes a large callout called a
          jumbotron and three supporting pieces of content. Use it as a starting point to create something more
          unique.&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"input-group input-group-lg"&lt;/span&gt; &lt;span class="na"&gt;style=&lt;/span&gt;&lt;span class="s"&gt;"width: 1000px"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
          &lt;span class="cp"&gt;&amp;lt;%=&lt;/span&gt; &lt;span class="n"&gt;f&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;text_field&lt;/span&gt; &lt;span class="ss"&gt;:title&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="ss"&gt;:class&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="s2"&gt;"form-control"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;:placeholder&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="s2"&gt;"title"&lt;/span&gt; &lt;span class="cp"&gt;%&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;

        &lt;span class="cp"&gt;&amp;lt;%=&lt;/span&gt; &lt;span class="n"&gt;f&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;text_area&lt;/span&gt; &lt;span class="ss"&gt;:content&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="ss"&gt;:id&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="s2"&gt;"myEditor"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;:rows&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;40&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;:cols&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;120&lt;/span&gt; &lt;span class="cp"&gt;%&amp;gt;&lt;/span&gt;

        &lt;span class="nt"&gt;&amp;lt;label&amp;gt;&lt;/span&gt;分类：&lt;span class="nt"&gt;&amp;lt;/label&amp;gt;&lt;/span&gt;&lt;span class="cp"&gt;&amp;lt;%=&lt;/span&gt; &lt;span class="n"&gt;f&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;select&lt;/span&gt; &lt;span class="ss"&gt;:blog_type_id&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;options_from_collection_for_select&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="vi"&gt;@blog_types&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s2"&gt;"id"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s2"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="cp"&gt;%&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;br/&amp;gt;&lt;/span&gt;
        &lt;span class="cp"&gt;&amp;lt;%=&lt;/span&gt; &lt;span class="n"&gt;f&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;submit&lt;/span&gt; &lt;span class="s2"&gt;"发表日志"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;:class&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="s1"&gt;'btn btn-lg btn-primary'&lt;/span&gt; &lt;span class="cp"&gt;%&amp;gt;&lt;/span&gt;&lt;span class="ni"&gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;/span&gt;
        &lt;span class="cp"&gt;&amp;lt;%=&lt;/span&gt; &lt;span class="n"&gt;f&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;button&lt;/span&gt; &lt;span class="s2"&gt;"保存草稿"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;:class&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="s1"&gt;'btn btn-lg btn-primary'&lt;/span&gt; &lt;span class="cp"&gt;%&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;/span&gt;
 &lt;span class="cp"&gt;&amp;lt;%&lt;/span&gt; &lt;span class="k"&gt;end&lt;/span&gt; &lt;span class="cp"&gt;%&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;对数据进行修改，然后提交到 update，不打印 P，但是可以看到提交的参数，最后渲染 update 页面，迷惑&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Fri, 30 May 2014 16:28:10 +0800</pubDate>
      <link>https://ruby-china.org/topics/19652</link>
      <guid>https://ruby-china.org/topics/19652</guid>
    </item>
    <item>
      <title>window.external 怎么读取二代身份证？</title>
      <description>&lt;p&gt;只知道 window.external 可以实现读取二代身份证，查了半天没有清晰的资料，谁能说说？&lt;/p&gt;

&lt;p&gt;找了半天不知道这个问题归哪个节点，不好意思了，版主。&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Wed, 14 May 2014 14:05:05 +0800</pubDate>
      <link>https://ruby-china.org/topics/19245</link>
      <guid>https://ruby-china.org/topics/19245</guid>
    </item>
    <item>
      <title>为什么我导出的 excel 只有 20 条记录，怎么导出全部或者查询的所有数据？</title>
      <description>&lt;p&gt;index 页面，显示所有明细记录，分页显示 20/perpage, 导出 excel 功能，只导出了一页的数据，这可怎么办？？
如何导出所有数据或者查询之后的数据，前提数据量巨大 (100w)，并且会逐渐增长&lt;/p&gt;

&lt;p&gt;如果想全部导出这 100w 数据有点不可能啊，内存溢出，有没有好的办法可以解决，总之是为了导出 excel&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Fri, 07 Mar 2014 09:41:20 +0800</pubDate>
      <link>https://ruby-china.org/topics/17711</link>
      <guid>https://ruby-china.org/topics/17711</guid>
    </item>
    <item>
      <title>快速生成一个 [1,2,3,4,5,6,7,8,9,10] 的数组</title>
      <description>&lt;p&gt;如题。请大家各抒己见。【不管是运行快还是开发快，大家都可以在这里说说】&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Fri, 28 Feb 2014 10:45:15 +0800</pubDate>
      <link>https://ruby-china.org/topics/17558</link>
      <guid>https://ruby-china.org/topics/17558</guid>
    </item>
    <item>
      <title>安卓手机 ruby china，打不开帖子，直接弹出关闭了，怎么回事？</title>
      <description>&lt;p&gt;还有手机版的 style 还是原来的吗？&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Wed, 12 Feb 2014 16:07:47 +0800</pubDate>
      <link>https://ruby-china.org/topics/17197</link>
      <guid>https://ruby-china.org/topics/17197</guid>
    </item>
    <item>
      <title>单点登录，登录后显示：请在集成入口中重新登陆</title>
      <description>&lt;p&gt;情况是这样的：登录界面，输入用户名和密码后调转到一个文字描述界面，
&lt;img src="//l.ruby-china.com/photo/2014/11dfe5972222d9b143faf58ba05c5364.jpg" title="" alt=""&gt;
从此无法登录系统啦！！！
不好意思，实在没办法，不知道问谁，坛子力量大，同志们帮帮忙啊&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Wed, 12 Feb 2014 15:53:32 +0800</pubDate>
      <link>https://ruby-china.org/topics/17196</link>
      <guid>https://ruby-china.org/topics/17196</guid>
    </item>
    <item>
      <title>rubymine 公司以前的项目，使用的 rails 1.2.3，ruby 1.8.7 提示过时</title>
      <description>&lt;p&gt;&lt;img src="//l.ruby-china.com/photo/2014/152b041fec0c1140406098acf0880e4d.jpg" title="" alt=""&gt;&lt;/p&gt;

&lt;p&gt;怎么修改 rubymine，不显示中划线&lt;/p&gt;</description>
      <author>zhangyanan</author>
      <pubDate>Mon, 10 Feb 2014 10:49:51 +0800</pubDate>
      <link>https://ruby-china.org/topics/17141</link>
      <guid>https://ruby-china.org/topics/17141</guid>
    </item>
  </channel>
</rss>
