PDA

View Full Version : Open Source Ruby on Rails Ext JS (CMS)



boriscy
5 Dec 2008, 5:02 AM
Hi there I have created a project which I call enano, it is a small CMS but the thing is that it has a nice filebrowser, with Drag and Drop and other features, it is also integrated with TinyMCE, so you can Browse the images.
The code has comments in english but the interface is in spanish, it should not be hard to translate, I will make a i18n version soon.
You can get a copy of it at: http://github.com/boriscy/enano/tree/master
This version works with Rails 2.2 and Ext JS 2.2
If you are using the default database (SQLite) just start the server
go to http://localhost:3000/login.
login: demo, password: demo123

I have also tested with MySQL (could not make it work with PostgreSQL because Rails 2.2 has problems with migrations), if you want to use MySQL run the migrations and run this query:
INSERT INTO `page_types` (`id`, `text`, `icon_cls`, `created_at`, `updated_at`) VALUES
(1, 'Page', 'rails-page-white', '2008-09-19 20:43:01', '2008-10-02 21:04:38'),
(2, 'Menu Link', 'rails-page-link', '2008-09-19 20:43:54', '2008-09-19 20:43:54');

start the server and go to: http://localhost:3000/signup, to create your account

The project is incomplete but a good part of it is advanced.
http://extjs.com/forum/attachment.php?attachmentid=10854&stc=1&d=1228481917

eggspencer
6 Dec 2008, 7:11 AM
Looks good :)

I also use Rails with Ext (I'm also writing a large library on top of Ext which emulates certain elements of Rails). It's good to see how other people approach things as I've developed a few CMS systems with Ext myself. There's a (rather outdated) demo of one at http://demo.domine.co.uk/admin (u: demo, p: secret), which is also running on Rails.

The apps on a start menu are all at http://github.com/edspencer/ext-applications/tree/master, and most of them are just simple CRUD. It's using an early version of my library (which is imaginatively called Ext MVC).

boriscy
8 Dec 2008, 4:49 AM
Hi there, Iam interested in finding new ways to make the development of Rails applications with Ext, I would like to contact you and see if we can Work togheter.
:D