search for: xiaod

Displaying 11 results from an estimated 11 matches for "xiaod".

Did you mean: xiao
2010 Dec 27
0
highcharts gem for rails3,lazyhighchart 1.0.8
FYI: https://github.com/xiaods/lazy_high_charts -- tommy xiao E-mail: xiaods(AT)gmail.com -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscrib...
2015 Dec 25
0
How to debug kernel with kernel-3.10.68-11.el6
...l-3.10.68-11.el6 as dom0 and config kdump I have got vmcore file when compute crash, but not found debuginfo package from http://debuginfo.centos.org/ I found kernel-3.10.68-11.el6 set CONFIG_DEBUG_INFO=n Why not set this key? Is there any other method to debug when compute crash Best Xiaoding -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos-virt/attachments/20151225/89c388ce/attachment-0002.html>
2016 Jan 19
1
How to debug kernel with kernel-3.10.68-11.el6
Hi all I used kernel-3.10.68-11.el6 as dom0 and config kdump I have got vmcore file when compute crash, but not found debuginfo package from http://debuginfo.centos.org/ I found kernel-3.10.68-11.el6 set CONFIG_DEBUG_INFO=n Why not set this key? Is there any other method to debug when compute crash Best Wishes Ding -------------- next part -------------- An HTML attachment was
2009 Nov 25
1
unable to add the flash player helper
hi i am trying to add the flash player helper on applicaion. when i install the the svn i got this error how to solve this? # ruby script/plugin install svn://rubyforge.org/var/svn/flashplayrhelpr svn: Can''t connect to host ''rubyforge.org'': Connection refused and also i try this # rake flash_player:install (in /home/malathi/www/videoapp) rake aborted!
2009 Dec 10
1
ActionMail Charset for email body
Hi Guys, I succeeded in sending email with content-type big5. However, the content of the email is still utf-8! I''ve tried to call the t(:my_sentence).encode(''big5'') or my content, but there is "invalid byte sequence in UTF-8" errors in a lot of places starting from actionmailer/lib/utils.rb (text.to_s.gsub(/\r\n?/, "\n")) and it stop me from
2009 Nov 12
1
Please help me ------ Mapping an item to article
Hi everybody, I have a form like this <h1>New menuitem</h1> <% form_for(@menuitem) do |f| %> <%= f.error_messages %> <p> <%= f.label :title %><br /> <%= f.text_field :title %> </p> <p> <%= f.label :alias %><br /> <%= f.text_field :alias %> </p> <p> <%= f.label
2010 Feb 06
1
accepts_nested_attributes_for with has_many => :through
I have two models, links and tags, associated through a 3rd model, link_tags. I added the following to my link model, has_many :tags, :through => :link_tags has_many :link_tags accepts_nested_attributes_for :tags, :allow_destroy => :false, :reject_if => proc { |attrs| attrs.all? { |k, v| v.blank? } } and put this in a partial called by the new and edit forms for links,
2009 Nov 03
2
will_paginate pagination problem
hi; i use will_paginate the first page come true but all other page get the same data of first page i checked in controller "page" parameter works true but paginate get only first page''s data and shows these data in all pages forexample first page seen A,B second page also seen A,B but second page must be C,D my code is; controller : @list = Company::Env.paginate :page =>
2010 Feb 20
6
Captcha Trouble
Hello Rails, I have a problem. I would like to use captcha in one of my project. When I did try to install, this is what I got $ sudo gem install captcha Building native extensions. This could take a while... ERROR: Error installing captcha: ERROR: Failed to build gem native extension. /usr/bin/ruby1.8 extconf.rb extconf.rb:1:in `require'': no such file to load -- mkmf (LoadError)
2010 Jan 22
5
Rails Render Issue
Hi, I am adding login functionality to my app which has two controllers users and photos and i am having some trouble. In my users/index view <%if logged_in? %> <%=render "photos/index"%> <%else%> .... Home page With login..... <%end%> In my photos/index view <%if logged_in? %> .... Welcome page ..... <%else%>
2009 Dec 22
16
Will paginate is missing on rake db:migrate
I have a very annoying problem, when doing rake db:migrate, I get the error message: Missing these required gems: will_paginate ~> 2.3.11 But the gem is not missing, It runs very well in my app. To make the rake pass I have to comment out the gem in my environment.rb file. environment.rb: config.gem "will_paginate", :version => "~> 2.3.11", :source =>