发新话题
打印

[项目推荐] 开源快速生产rails网站管理界面的框架

开源快速生产rails网站管理界面的框架

1、Streamlined
www.streamlinedframework.org
以插件的形式提供,即将发布0.1,RESTful支持,对前期代码进行了重构,近期比较活跃,源代码充分利用了ruby dsl的特性。大家可参考:
跨越边界: Streamlined,第1 部分
www.ibm.com/developerworks/cn/java/j-cb09056/index.html
跨越边界: Streamlined,第2 部分
www.ibm.com/developerworks/cn/java/j-cb10036/index.html
2、Hobo
http://hobocentral.net/
有自己的模板系统,ajax效果,最新的版本是hobo-0.5.2.gem
可以参考道喜日记的两篇介绍文章。

3、activescaffold
http://activescaffold.com/
由生ajaxscaffold进化而来,以plugin的方式提供,最近发展很快,有专门的团队维护,最新的版本是active_scaffold_1_0_0_rc2。
参考infoq:利用ActiveScaffold扩展Rails脚手架功能
http://www.infoq.com/cn/news/200 ... ding-activescaffold
4、AutoAdmin
界面风格类似DJango,管理简单。
http://code.trebex.net/auto-admin/

5,http://rails.lipsiasoft.com/wiki/lipsiadmin

基于 extjs,运行似乎有点慢。

TOP

ext_scaffold
---------
Prerequisites
=============

You need to download the Ext Javascript framework from

`http://extjs.com/download`,

and unzip it into `#{RAILS_ROOT}/public/ext`. Ext_scaffold was tested
against version 2.0.1 of the Ext framework.


Installation
============

`script/plugin install http://rug-b.rubyforge.org/svn/ext_scaffold`


Example
=======

`./script/generate ext_scaffold post` # no attributes, view will be anemic
`./script/generate ext_scaffold post title:string body:text published:boolean`
`./script/generate ext_scaffold purchase order_id:integer amount:decimal`


Copyright (c) 2008 martin.rehfeld@glnetworks.de, released under the MIT license

TOP

发新话题