- 浏览: 17748 次
- 性别:
- 来自: 广东汕头
最近访客 更多访客>>
最新评论
-
动物园的猪:
嘿,很有意思的代码
如何写一个简单的Rails Plugin -
black_star:
夜鸣猪 写道学习留
哪里都有你老的身影
3 easy steps 在Rails使用jQuery -
shaka:
取到的tags如何拆开,如p.tag_list = " ...
使用Acts As Taggable On Steroids定义标签 -
夜鸣猪:
学习留
3 easy steps 在Rails使用jQuery -
kyoleelqh:
jshmemory 写道
你这样子能运行出来吗??好像这样会报 ...
使用Acts As Taggable On Steroids定义标签
文章列表
1.下载安装jQuery
从http://docs.jquery.com/Downloading_jQuery下载最新version的jQuery.
把下载下来的jQuery copy到public/javascripts目录,public/javascripts里面有些默认的JS文件可以delete掉,因为那些是Prototype/Script.aculo.us 的,我们不需要用到的.
2.下载安装JRails
什么是JRails? JRails就是用jQuery替代Prototype/script.aculo.us在Rails做 helpers实现javascript的功能.
安装JRail ...
- 2008-10-08 22:04
- 浏览 3819
- 评论(2)
rails plugin是什么,自己google吧
生成plugin骨架代码:
ruby script\generate plugin MyPlugin
功能需求:
在BlogController中把所有符合条件的Post(Model)生成为xml
如果不使用插件,很easy :
in BlogController
def export_to_xml
posts = Post.find(:all, :order => 'published_date',
:conditions => ['title = ?', 'love'])
send_data p ...
- 2008-07-15 18:14
- 浏览 2441
- 评论(1)
最近学习一下typo,看typo的theme是怎样实现的,顺便把theme模块抽出来,以后编写rails应用(比如Blog),直接把代码COPY进去就可以.
1)修改routes.rb, add以下code:
map.with_options(:conditions => {:method => :get}) do |get|
get.with_options(:controller => 'themes', :filename => /.*/, :conditions => {:method => :get}) do |theme|
...
- 2008-03-10 15:46
- 浏览 3179
- 评论(6)
最近下载一个rails blog应用(Simplelog)并把它里面的acts_as_taggable plugin改为Acts As Taggable On Steroids,因为在rails2.0下总是运行出错.
1.安装
ruby script/plugin install http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids
2.建立数据
生成migration:
ruby script/generate acts_as_taggable_migration
生成数据:
ra ...
ActionMailer是一个简单的Rails组件,应用程序可以借助它来收发电子邮件。
Gmail--你必须有一个账号和密码,没有的话快去申请http://mail.google.com/mail/signup
邮件配置:
在enviroment.rb文件中:
ActionMailer::Base.server_settings = {
:address => "smtp.gmail.com",
:port => 587,
:authentication => :plain,
:user_name=> "gmai ...
- 2008-01-21 23:59
- 浏览 4707
- 评论(1)