HTML editor component?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • skol

    #1

    HTML editor component?

    Is there any HTML WYSIWYG editor component available for
    Python/wxPython? Thanks.


  • Lars Heuer

    #2
    Re: HTML editor component?

    Hi skol,
    [color=blue]
    > Is there any HTML WYSIWYG editor component available for
    > Python/wxPython? Thanks.[/color]

    There is wxMozilla: http://wxMozilla.sf.net/

    Best regards,
    Lars
    --


    Comment

    • skol

      #3
      Re: HTML editor component?

      "Lars Heuer" <heuer@semagia. com> wrote
      [color=blue][color=green]
      >> Is there any HTML WYSIWYG editor component available for
      >> Python/wxPython? Thanks.[/color]
      >
      > There is wxMozilla: http://wxMozilla.sf.net/[/color]

      Thanks for the tip. Looks like a very elaborate component.
      Is there anything simpler? I'd need just simple HTML editing
      with formatting (bold, italic), links, and tables.


      Comment

      • Lars Heuer

        #4
        Re: HTML editor component?

        Hi skol,
        [color=blue][color=green][color=darkred]
        >>> Is there any HTML WYSIWYG editor component available for
        >>> Python/wxPython? Thanks.[/color]
        >>
        >> There is wxMozilla: http://wxMozilla.sf.net/[/color][/color]
        [color=blue]
        > Thanks for the tip. Looks like a very elaborate component.
        > Is there anything simpler? I'd need just simple HTML editing
        > with formatting (bold, italic), links, and tables.[/color]

        You can use wxHTML for showing HTML and wxTextCtrl with (if I remember
        right) the wxTE_RICHEDIT flag for editing.
        Or the Scintilla component that should work for simple bold, italic
        and link formating.
        Tables might be difficult, though.

        If you'll like to see wxMozilla Editor in action you may take a look
        at http://www.eclass.net/

        Best regards,
        Lars
        --


        Comment

        • Fuzzyman

          #5
          Re: HTML editor component?


          skol wrote:[color=blue]
          > Is there any HTML WYSIWYG editor component available for
          > Python/wxPython? Thanks.[/color]

          I can reccomend Kupu as a javascript one. http://kupu.oscom.org

          A WYSIWYG HTML editor is a full blown application - so I'd be surprised
          (pleasantly) to see one available as a component.

          Regards,

          Fuzzyman
          http://www.voidspace.org.uk/python/index.shtml

          Comment

          • Johan Lindberg

            #6
            Re: HTML editor component?

            You could try the (very) simple HTML editor I use for my CM project. It
            can only handle B, I, U and A, but then again, it was never meant to do
            more. It's written in wxPython, based on Scintilla and can probably be
            extended to fit your needs.

            You can find it here:
            http://sourceforge.net/project/showf...kage_id=138707

            BR
            /Johan Lindberg

            Comment

            Working...