I am not sure how this relates to the MS Editing Component, but i have been using HTMLArea 3.0 as a means to allow my clients to edit certain portions of HTML on a page. It sometimes works in Mozilla, but it really is for IE only.

Just for the heck of it, here is a Apache::Template page that uses HTMLArea to allow the guys in my band to be able to change the content on their 'home pages' at our band site:

First, the revelevant portion from skeleton.html that activates HTMLArea:
<head> <script type="text/javascript" src="htmlarea/htmlarea.js"></script> <script type="text/javascript" src="htmlarea/dialog.js"></script> <script type="text/javascript" src="htmlarea/lang/en.js"></script> <style type="text/css">@import url(htmlarea/htmlarea.css)</style> </head> <body onload="HTMLArea.replace('page')">
And finally the editing page itself:
[% PROCESS admin/conf.html %] [% admin_id = session.get('admin_id'); admins = DBI.tie('admin_page','admin_id', clobber=1); admin = admins.$admin_id; IF params.cm == 'edit'; admin.page = params.page; END; %] [% WRAPPER admin/skeleton.html %] <h1>[% admin.login %]'s Page</h1> <div class="htmlarea"> <form> <textarea name="page" rows="20" cols="100">[% admin.page %]</textar +ea> <p><input class="grid" type="submit" name="cm" value="edit" /></p> </form> </div> [% END %]

jeffa

L-LL-L--L-LL-L--L-LL-L--
-R--R-RR-R--R-RR-R--R-RR
B--B--B--B--B--B--B--B--
H---H---H---H---H---H---
(the triplet paradiddle with high-hat)

In reply to 2Re: Using WebGUI content management system? by jeffa
in thread Using WebGUI content management system? by synq

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.