使用ActiveScaffold增强Ruby on Rails的功能 - 编程入门网
地化
# Put this at the bottom of your app/controllers/application.rb file class Object def as_(string, *args) # Use Globalize''s _ method to provide the actual lookup of the string. _(string, ` *args) end end Globalize 现在可以为传入这个方法的所有字符串提供本地化翻译。 定制 ActiveScaffold 的样式 ActiveScaffold 提供了一组非常丰富的 CSS 样式,可以对标准的 UI 进行调整以便提供定制的外观。您可以通过创建并重写 CSS 文件并将其包含到标准的 CSS 包含文件之后,从而重写默认样式来匹配站点的颜色方案、字体等设置。在本例中,我们包含了一个名为 public/stylesheets/as_overrides.css 的文件: 清单 21. 重写默认的 ActiveScaffold 样式 <head> <title>My Application</title> <%= javascript_include_tag :defaults %> <%= active_scaffold_includes %> <%= stylesheet_include_tag "as_overrides" %> </head> 标准的 ActiveScaffold 样式表位于 vendor/plugins/active_scaffold/frontends/default/stylesheets/stylesheet.css 中。 使用ActiveScaffold增强Ruby on Rails的功能(12)时间:2011-11-29 Mike Perham安全性 ActiveScaffold 提供了一个身份验证 API 来确保数据安全性。第一级是对控件进行的粗粒度的安全性控制,这并不是记录特有的。在控件上,可以定义 #{action}_authorized? 方法,其中 #{action} 是一个 ActiveScaffold 操作:create、list、 search、 show、 update 或 delete。 清单 22. 基于控件的安全性 class ProjectsController < ApplicationController active_scaffold :project do |conf| # Needed to inject the current_user method into the model config.security.current_user_method = :current_user end protected # only authenticated admin users are authorized to create projects def create_authorized? user = current_user !user.nil? && user.is_admin? end def current_user @session[:user_id] ? User.find(@session[:user_id]) : nil end end 第二级安全性让您可以创建更加复杂的数据特有的逻辑。举例来说,由于 Projects belongs_to Organizations,因此对项目的编辑进行限制,使得只有拥有项目的组织的管理员才能执行编辑操作,这是合理的。为此,将方法添加到模型(比如 authorized_for_#{crud_action})中,其中 #{crud_action} 是 create、read、 update 或 destroy 之一。 清单 23. 基于模型的安全性 class Project < ActiveRecord::Base belongs_to :organization # Since projects are owned by an organization, allow only administrators # of that organization to edit the project def authorized_for_update? organization.is_admin? current_user end end 注意 current_user 方法是可用的,因为 ActiveScaffold 根据对应控件的 current_user_method 配置将其插入了模型中。 结束语 诸如 Ruby 之类的动态语言中启用了诸如 Java语言和 PHP 之类的静态语言中所没有的一些功能。ActiveScaffold 是众多基于模型的 “智能” UI 系统中的一种,它可以极大地简化数据输入页面的创建和维护(有关这些问题的信息,请参看下面 参考资料 中的内容)。 本文配套源码 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |