FYI
I'm using http://www.openwebware.com/products/openwysiwyg/
It seems to be a lot less complicated than the fckeditor.net
implementation... it may help?
Example:
<html>
<head>
<!--- This is the source for the editor -->
<script src="/openwysiwyg/wysiwyg.js" type="text/javascript"></script>
</head>
<body>
<!--- This is the actual textarea that the editor will appear -->
<textarea id="myTextArea"></textarea>
<!--- This javascript dynamically creates the editor -->
<script language="javascript1.2">
generate_wysiwyg('myTextArea', 400, 600);
</script>
</body>
</html>
Jose Galvez wrote:
> Has anyone used the fckeditor (http://www.fckeditor.net/) with pylons?
> I've got a project that requires my users to entry data which is more
> complicated then what can be handled by simple text boxes, due to user
> formating. I've decided to use the FCKeditor to get the data, but
> integrating it isn't simple. All their examples are written for php,
> asp and stuff like that. I've got a beta version which integrates, ok,
> but required touching the app_globals, helpers and routes to get it
> running, in addition to using two mako templates and a custom controller
> (to provide file listing and uploading capabilities) in addition to a a
> couple of minor modifications to the connector file (fckeditor.py) file
> that the group provides. I guess I'm basically trolling to see if there
> are better ways to get this done, which I'm sure there must be. If
> anyone is interesting you can download my beta code at
> http://cybergalvez.homeip.net:7070/ap/Files/fckeditor.zip, but since
> this link it to may home computer I'll apologize in advance for the
> times its off.
>
> Jose
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---