- 论坛徽章:
- 0
|
- ---
- acts_as_authenticated: "See: [url]http://technoweenie.stikipad.com/plugins/show/User+Authentication[/url]\r\n\
- \r\n\
- Install:\r\n\
- >> ruby script/plugin source [url]http://svn.techno-weenie.net/projects/plugins[/url]\r\n\
- >> ruby script/plugin install acts_as_authenticated\r\n\
- \r\n\
- Generate:\r\n\
- >> ruby script/generate authenticated user account\r\n\
- >> rake db:migrate\r\n\
- \r\n\
- To require logins for all actions, use this in your controllers:\r\n before_filter :login_required\r\n\
- \r\n\
- To require logins for specific actions, use this in your controllers:\r\n before_filter :login_required, :only => [ :edit, :update ]\r\n\
- \r\n\
- To skip this in a subclassed controller:\r\n skip_before_filter :login_required\r\n\
- \r\n\
- Here are other available methods for your views and controllers:\r\n * logged_in? \xE2\x80\x93 Returns true if the user is currently logged in.\r\n * current_user \xE2\x80\x93 Returns an instance of the currently logged in user.\r\n\
- \r\n\
- You can override the #protect? method in your controller to only protect certain actions:\r\n\
- \r\n # don't protect the login and the about method\r\n def protect?(action)\r\n if ['login', 'about'].include?(action)\r\n return false\r\n else\r\n return true\r\n end\r\n end\r\n\
- \r\n\
- You can also override #authorized? in your controller to restrict the actions based on the user:\r\n\
- \r\n # only allow nonbobs\r\n def authorized?(user)\r\n user.login != \"bob\" \r\n end"
复制代码
上面有很多今人恶心的 \r\n 有些是 \r\n\
如何把它们转换成 换行符呢?
例如:
- You can also override #authorized? in your controller to restrict the actions based on the user:\r\n\
- \r\n # only allow nonbobs\r\n def authorized?(user)\r\n user.login != \"bob\" \r\n end"
复制代码
换成
- You can also override #authorized? in your controller to restrict the actions based on the user:
- # only allow nonbobs
- def authorized?(user)
- user.login != \"bob\"
- end"
复制代码
注意不是出来^m,是转换成实际的换行符……
如果使用 sed -i 's/\\r\\n/^m/' *
在文本文件中观看只是将\r\n转换成 蓝色^m 而已 |
|