I''m fairly new to ROR. Does anyone know of a good rich text editor to use? Is fckeditor good or is their a better one to use? Thanks, Steve -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en.
scite -- emacs -- netbeans On Mon, Feb 22, 2010 at 11:36 AM, steve <stevew1235-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I''m fairly new to ROR. Does anyone know of a good rich text editor to > use? Is fckeditor good or is their a better one to use? > > Thanks, Steve > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > groups.google.com/group/rubyonrails-talk?hl=en. > >-- 我不是想跑下去,我是無路可走了~ -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en.
On Sun, 2010-02-21 at 19:36 -0800, steve wrote:> I''m fairly new to ROR. Does anyone know of a good rich text editor to > use? Is fckeditor good or is their a better one to use?---- I played with tinymce and easy-fckeditor and settled on easy-fckeditor because it allowed me to easily configure which tools were displayed and I have different tools for different forms/columns. Specifically, there are areas where I don''t allow http tags at all. fckeditor, the new ckeditor, easy-fckeditor and tinymce all seem very capable of doing the job. The difference is whether you want to customer, what you want to customize and how deeply you want to get into the javascript code to customize. For me, easy-fckeditor was an appropriate choice. You also will definitely want to check out the Sanitize gem because it allows you to choose which tags/attributes are permitted because as soon as you allow people to start putting in their own tags, someone is bound to start putting in things like script tags. Craig -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en.
There''s also github.com/37signals/wysihat I''ve used tinymce on past projects. It''s a pain in the ass but, if you need to integrate uploading images and really customize things it might be the best way to go. AFAIK it has many more plugins than fck and their forums are pretty active. On Sun, Feb 21, 2010 at 8:02 PM, Craig White <craigwhite-BQ75lA0ptkhBDgjK7y7TUQ@public.gmane.org> wrote:> On Sun, 2010-02-21 at 19:36 -0800, steve wrote: > > I''m fairly new to ROR. Does anyone know of a good rich text editor to > > use? Is fckeditor good or is their a better one to use? > ---- > I played with tinymce and easy-fckeditor and settled on easy-fckeditor > because it allowed me to easily configure which tools were displayed and > I have different tools for different forms/columns. Specifically, there > are areas where I don''t allow http tags at all. > > fckeditor, the new ckeditor, easy-fckeditor and tinymce all seem very > capable of doing the job. The difference is whether you want to > customer, what you want to customize and how deeply you want to get into > the javascript code to customize. For me, easy-fckeditor was an > appropriate choice. > > You also will definitely want to check out the Sanitize gem because it > allows you to choose which tags/attributes are permitted because as soon > as you allow people to start putting in their own tags, someone is bound > to start putting in things like script tags. > > Craig > > > -- > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > groups.google.com/group/rubyonrails-talk?hl=en. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en.
TinyMCE editor is also a good option. Plugin supports image & media upload alongwith YML configuration for plugins github.com/sandipransing/rails_tiny_mce On 2/22/10, ben wiseley <wiseleyb-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> There''s also github.com/37signals/wysihat > > I''ve used tinymce on past projects. It''s a pain in the ass but, if you need > to integrate uploading images and really customize things it might be the > best way to go. AFAIK it has many more plugins than fck and their forums > are pretty active. > > > > On Sun, Feb 21, 2010 at 8:02 PM, Craig White <craigwhite-BQ75lA0ptkhBDgjK7y7TUQ@public.gmane.org> wrote: > >> On Sun, 2010-02-21 at 19:36 -0800, steve wrote: >> > I''m fairly new to ROR. Does anyone know of a good rich text editor to >> > use? Is fckeditor good or is their a better one to use? >> ---- >> I played with tinymce and easy-fckeditor and settled on easy-fckeditor >> because it allowed me to easily configure which tools were displayed and >> I have different tools for different forms/columns. Specifically, there >> are areas where I don''t allow http tags at all. >> >> fckeditor, the new ckeditor, easy-fckeditor and tinymce all seem very >> capable of doing the job. The difference is whether you want to >> customer, what you want to customize and how deeply you want to get into >> the javascript code to customize. For me, easy-fckeditor was an >> appropriate choice. >> >> You also will definitely want to check out the Sanitize gem because it >> allows you to choose which tags/attributes are permitted because as soon >> as you allow people to start putting in their own tags, someone is bound >> to start putting in things like script tags. >> >> Craig >> >> >> -- >> This message has been scanned for viruses and >> dangerous content by MailScanner, and is >> believed to be clean. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> >> . >> For more options, visit this group at >> groups.google.com/group/rubyonrails-talk?hl=en. >> >> > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > groups.google.com/group/rubyonrails-talk?hl=en. > >-- Sandip --- funonrails.com -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en.