Open source text editor with a "save draft" feature?

180 Views Asked by At

Our current Rails application is using jwysiwyg for our text editor but it is not very feature rich. We want:

  • User to be able to save their work and return to it later if necessary. A "Save draft" feature similar to what Wordpress uses would be great.
  • Upload images from their hardrive rather than have to copy and paste an image URL.

What options are out there that will provide us with these two features? Is it possible to expand upon the currently existing jwysiwyg? Or would we have to go with an alternative option? We are currently using wysiwyg through Javascript integration but we are open to a Rails Ruby gem alternatives as well.

1

There are 1 best solutions below

4
Michael Durrant On

My answer to drafts is that they are really versions... so a version control system is really what you want.

Nowadays that's usually a distributed one such as git.

I would get into the workflow of using git and have that be your process for drafts.

So use an IDE that supports DVCS, for example Eclipse can include git support.