Re: recommend a wysiwyg editor for a pyramid project?

2012-11-13 Thread Alejandro Jatib
For upload and resize image i use jQuery File Upload and works very well ( http://blueimp.github.com/jQuery-File-Upload/ ) For wysiwyg editor try ReactorJS ( http://imperavi.com/redactor/ ) is very easy, have many plugins and lightweight. I use this with wtforms and works like a champ!

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-09 Thread Chris Withers
On 08/11/2012 18:32, Jonathan Vanasco wrote: When it comes to the the type of HTML editing you mentioned, I want to stress 2 things: - As much as you can , don't allow consumer HTML - I really suggest forcing everything into Markdown or similar in the backend, then generating into HTML as

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-09 Thread Laurent DAVERIO
- As much as you can , don't allow consumer HTML - I really suggest forcing everything into Markdown or similar in the backend, then generating into HTML as needed. I humbly disagree. In many companies, you'll see people elaborate rich-text content in MS Word, and then copy and paste it into

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-09 Thread Jonathan Vanasco
You don't have to require wiki-style formatting. If you give them something like the markdown editor on StackOverflow , they won't really care or notice. Then you strip/re-encode on the backend to ensure it's okay. If people care about not being able to do random new things, they'll

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-08 Thread Malthe Borch
On 7 November 2012 22:18, Chris Withers ch...@simplistix.co.uk wrote: What's the editor choice to go for nowadays? http://aloha-editor.org/ If you're interested in inline-editing, http://createjs.org/ is a good pick. \malthe -- You received this message because you are subscribed to the

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-08 Thread Andreas Kaiser
On 08.11.2012, at 01:04, Carlos de la Guardia carlos.delaguar...@gmail.com wrote: Deform uses TinyMCE for the RichText widget. kotti_tinymce adds a basic file / image upload plugin to TinyMCE / deform's RichTextWidget. It also (indirectly) has basic (server side) image resizing support. By

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-08 Thread Chris Withers
On 08/11/2012 08:24, Malthe Borch wrote: On 7 November 2012 22:18, Chris Withersch...@simplistix.co.uk wrote: What's the editor choice to go for nowadays? http://aloha-editor.org/ If you're interested in inline-editing, http://createjs.org/ is a good pick. Looks interesting, how does it

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-08 Thread Jonathan Vanasco
When it comes to the the type of HTML editing you mentioned, I want to stress 2 things: - As much as you can , don't allow consumer HTML - I really suggest forcing everything into Markdown or similar in the backend, then generating into HTML as needed. For image handling... i tossed my

recommend a wysiwyg editor for a pyramid project?

2012-11-07 Thread Chris Withers
Hi All, What's the editor choice to go for nowadays? I'm ideally looking for one with good support for uploading images, resizing them client or server side, and with good clean html generated that I can style with my own css. thanks for any help, Chris -- Simplistix - Content Management,

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-07 Thread Marten
I would be astounded so see something like that. Unlike virtually static pages, images and stylesheets, that can be extended with some syntax-highlighted PHP code in Dreamweaver, pyramid allows to use arbitrary renderers (e.g. Mako or Jinja2), each having a different syntax. The folder with

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-07 Thread Chris Withers
On 07/11/2012 21:36, Marten wrote: I would be astounded so see something like that. I'm afraid you have astoundingly the wrong end of the stick ;-) Admittedly, I perhaps wasn't as clear as I should have been, but I'm looking at things like TinyMCE and FCKEditor. (or even, showing my age,

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-07 Thread Steve Piercy
Here's one. http://ckeditor.com/ And the file upload/manager plugin for it: https://github.com/simogeo/Filemanager If you use it, you must provide some kind of auth policy, and I recommend you change the default path for UserFiles to reduce the attacks by the Google dork technique. Support

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-07 Thread Chris Withers
On 07/11/2012 23:20, Chris Withers wrote: On 07/11/2012 21:36, Marten wrote: I would be astounded so see something like that. I'm afraid you have astoundingly the wrong end of the stick ;-) Admittedly, I perhaps wasn't as clear as I should have been, but I'm looking at things like TinyMCE

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-07 Thread andrew Sawyers
Chris, On Wed, 2012-11-07 at 23:28 +, Chris Withers wrote: On 07/11/2012 23:20, Chris Withers wrote: On 07/11/2012 21:36, Marten wrote: Admittedly, I perhaps wasn't as clear as I should have been, but I'm looking at things like TinyMCE and FCKEditor. (or even, showing my age, Kupu)

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-07 Thread Carlos de la Guardia
Deform uses TinyMCE for the RichText widget. Carlos de la Guardia On Wed, Nov 7, 2012 at 5:28 PM, Chris Withers ch...@simplistix.co.uk wrote: On 07/11/2012 23:20, Chris Withers wrote: On 07/11/2012 21:36, Marten wrote: I would be astounded so see something like that. I'm afraid you have

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-07 Thread Steve Piercy
On 11/7/12 at 11:28 PM, ch...@simplistix.co.uk (Chris Withers) pronounced: On 07/11/2012 23:20, Chris Withers wrote: Just wondering which paths people had been down with Pyramid and if there are any recommendations... I want to pick something that will let content authors put together pages