<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE></TITLE>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY text=#000000 bgColor=#ffffff>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2>Not exactly.&nbsp; It's implemented as a positive filter 
(which tags do you allow). </FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2>This is usually the list I work from for basic content. 
</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2>&nbsp; h1,h2,h3,h4,p,br,</FONT></SPAN><SPAN 
class=635413115-20082007><FONT face=Arial color=#0000ff size=2><SPAN><FONT 
face=Arial color=#0000ff 
size=2>a,em,strong,ul,ol,li,blockquote,img</FONT></SPAN></FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN></SPAN></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN>I ask authors&nbsp;to use the H1, h2 styles, which I 
then can control via CSS.&nbsp;Of course the font tag is the&nbsp;biggest enemy 
in word....&nbsp;:).&nbsp;</SPAN></FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN></SPAN></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN>The way you set this is by implementing a custom 
mytheme_tinymce_theme function which then allows you to change anything about 
tinymce.&nbsp; </SPAN></FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN></SPAN></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN>See the README.TXT file section on Tweaking TinyMCE 
for more info but there's a sample function that I've included below straight 
from the README file :). </SPAN></FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN></SPAN></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN>TWEAKING THE TINYMCE 
THEME<BR>********************************************************************</SPAN></FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN>Developers have complete control over when and how 
tinymce is enabled<BR>for each textarea inside Drupal by creating a custom 
Drupal theme<BR>function. The following example assumes you're using a 
phptemplate based theme.</SPAN></FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN>Put the following function in your themes 
template.php file:</SPAN></FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN>/**<BR>&nbsp;* Customize a TinyMCE 
theme.<BR>&nbsp;*<BR>&nbsp;* @param init<BR>&nbsp;*&nbsp;&nbsp; An array of 
settings TinyMCE should invoke a theme. You may override 
any<BR>&nbsp;*&nbsp;&nbsp; of the TinyMCE settings. Details 
here:<BR>&nbsp;*<BR>&nbsp;*&nbsp;&nbsp;&nbsp; <A 
href="http://tinymce.moxiecode.com/wrapper.php?url=tinymce/docs/using.htm">http://tinymce.moxiecode.com/wrapper.php?url=tinymce/docs/using.htm</A><BR>&nbsp;*<BR>&nbsp;* 
@param textarea_name<BR>&nbsp;*&nbsp;&nbsp; The name of the textarea TinyMCE 
wants to enable.<BR>&nbsp;*<BR>&nbsp;* @param theme_name<BR>&nbsp;*&nbsp;&nbsp; 
The default tinymce theme name to be enabled for this textarea. 
The<BR>&nbsp;*&nbsp;&nbsp; sitewide default is 'simple', but the user may also 
override this.<BR>&nbsp;*<BR>&nbsp;* @param is_running<BR>&nbsp;*&nbsp;&nbsp; A 
boolean flag that identifies id TinyMCE is currently running for 
this<BR>&nbsp;*&nbsp;&nbsp; request life cycle. It can be 
ignored.<BR>&nbsp;*/<BR>function theme_tinymce_theme($init, $textarea_name, 
$theme_name, $is_running) {<BR>&nbsp; switch ($textarea_name) 
{<BR>&nbsp;&nbsp;&nbsp; // Disable tinymce for these 
textareas<BR>&nbsp;&nbsp;&nbsp; case 'log': // book and page 
log<BR>&nbsp;&nbsp;&nbsp; case 'img_assist_pages':<BR>&nbsp;&nbsp;&nbsp; case 
'caption': // signature<BR>&nbsp;&nbsp;&nbsp; case 
'pages':<BR>&nbsp;&nbsp;&nbsp; case 'access_pages': //TinyMCE profile 
settings.<BR>&nbsp;&nbsp;&nbsp; case 'user_mail_welcome_body': // user config 
settings<BR>&nbsp;&nbsp;&nbsp; case 'user_mail_approval_body': // user config 
settings<BR>&nbsp;&nbsp;&nbsp; case 'user_mail_pass_body': // user config 
settings<BR>&nbsp;&nbsp;&nbsp; case 'synonyms': // taxonomy 
terms<BR>&nbsp;&nbsp;&nbsp; case 'description': // taxonomy 
terms<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
unset($init);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
break;</SPAN></FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN>&nbsp;&nbsp;&nbsp; // Force the 'simple' theme for 
some of the smaller textareas.<BR>&nbsp;&nbsp;&nbsp; case 
'signature':<BR>&nbsp;&nbsp;&nbsp; case 'site_mission':<BR>&nbsp;&nbsp;&nbsp; 
case 'site_footer':<BR>&nbsp;&nbsp;&nbsp; case 
'site_offline_message':<BR>&nbsp;&nbsp;&nbsp; case 
'page_help':<BR>&nbsp;&nbsp;&nbsp; case 
'user_registration_help':<BR>&nbsp;&nbsp;&nbsp; case 
'user_picture_guidelines':<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $init['theme'] = 
'simple';<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foreach ($init as $k =&gt; $v) 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (strstr($k, 
'theme_advanced_')) unset($init[$k]);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
}<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<BR>&nbsp; 
}</SPAN></FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN>&nbsp; /* Example, add some extra features when using 
the advanced theme.<BR>&nbsp; <BR>&nbsp; // If $init is available, we can extend 
it<BR>&nbsp; if (isset($init)) {<BR>&nbsp;&nbsp;&nbsp; switch ($theme_name) 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp; case 
'advanced':<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
$init['extended_valid_elements'] = 
array('a[href|target|name|title|onclick]');<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
break;<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp; }<BR>&nbsp; <BR>&nbsp; 
*/</SPAN></FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial 
color=#0000ff size=2><SPAN>&nbsp; // Always return $init<BR>&nbsp; return 
$init;<BR>}<BR></SPAN></FONT></SPAN></DIV>
<DIV><SPAN class=635413115-20082007><FONT face=Arial color=#0000ff 
size=2><SPAN></SPAN></FONT></SPAN>&nbsp;</DIV><BR>
<DIV class=OutlookMessageHeader lang=en-us dir=ltr align=left>
<HR tabIndex=-1>
<FONT face=Tahoma size=2><B>From:</B> support-bounces@drupal.org 
[mailto:support-bounces@drupal.org] <B>On Behalf Of 
</B>sander-martijn<BR><B>Sent:</B> Monday, August 20, 2007 8:31 AM<BR><B>To:</B> 
support@drupal.org<BR><B>Subject:</B> Re: [support] different TinyMCE 
problems<BR></FONT><BR></DIV>
<DIV></DIV>Ok, well since word drops in all kinds of wierd html when pasting and 
it's such a common way for nonhtml people to work, do you (or someone else) 
already have a list of html to strip out for word specifically?&nbsp; And where 
do you configure that?<BR><BR>on another note: TinyMCE has a paste from word 
button you can show, and I believe if you train users to use that icon instead 
of the normal paste it will paste in plain text instead of word's formatted 
text.&nbsp; In your experience does that button work well?<BR><BR>Metzler, David 
wrote: 
<BLOCKQUOTE cite=mid:25C3492D5925964585F542C770231C120262BD8C@oak.evergreen.edu 
type="cite">
  <META content="MSHTML 6.00.2900.2180" name=GENERATOR>
  <DIV dir=ltr align=left><SPAN class=588180715-20082007><FONT face=Arial 
  color=#0000ff size=2>Didn't mean TinyMCE has tags, but rather that you can 
  build filters into TinyMCE. So that the HTML that you're worried not having on 
  your site is not only not displayed, but also not stored in the database. 
  </FONT></SPAN></DIV>
  <DIV dir=ltr align=left><SPAN class=588180715-20082007></SPAN>&nbsp;</DIV>
  <DIV dir=ltr align=left><SPAN class=588180715-20082007><FONT face=Arial 
  color=#0000ff size=2>Let me try and rephrase....</FONT></SPAN></DIV>
  <DIV dir=ltr align=left><SPAN class=588180715-20082007></SPAN>&nbsp;</DIV>
  <DIV dir=ltr align=left><SPAN class=588180715-20082007><FONT face=Arial 
  color=#0000ff size=2><FONT face="Times New Roman" color=#000000 
  size=3>"</FONT><SPAN><FONT face=Arial color=#0000ff size=2>SO if you're doing 
  a bunch of pasting from Word, it will still leave&nbsp;any weird word 
  generated&nbsp;tags in the HTML that gets stored in Drupal, even if you have 
  them filtered out by a drupal input filter.&nbsp; This only bothers you when 
  you turn off the editor, or if you have some other process trying to get at 
  the data that doesn't properly use the filters. 
  </FONT></SPAN></FONT></SPAN></DIV>
  <DIV dir=ltr align=left><SPAN class=588180715-20082007><FONT face=Arial 
  color=#0000ff size=2><SPAN></SPAN></FONT></SPAN>&nbsp;</DIV>
  <DIV dir=ltr align=left><SPAN class=588180715-20082007><FONT face=Arial 
  color=#0000ff size=2><SPAN><FONT face=Arial color=#0000ff size=2>You can also 
  configure TinyMCE&nbsp;to filter tags, but&nbsp;these filters&nbsp;can only be 
  set by implementing a special function in your theme, and can't be set via a 
  configuration page. If you filter the tags out with TinyMCE as well,&nbsp; 
  tags you don't want users entering won't be stored in the&nbsp;database 
  either.&nbsp;</FONT></SPAN></FONT></SPAN></DIV>
  <DIV dir=ltr align=left><SPAN class=588180715-20082007><FONT face=Arial 
  color=#0000ff size=2><SPAN></SPAN></FONT></SPAN>&nbsp;</DIV>
  <DIV dir=ltr align=left><SPAN class=588180715-20082007><FONT face=Arial 
  color=#0000ff size=2><SPAN>Hope that makes more sense. 
  &nbsp;</SPAN></FONT></SPAN></DIV>
  <DIV dir=ltr align=left><SPAN class=588180715-20082007></SPAN>&nbsp;</DIV>
  <DIV dir=ltr align=left>
  <HR tabIndex=-1>
  </DIV>
  <DIV dir=ltr align=left><FONT face=Tahoma size=2><B>From:</B> <A 
  class=moz-txt-link-abbreviated 
  href="mailto:support-bounces@drupal.org">support-bounces@drupal.org</A> [<A 
  class=moz-txt-link-freetext 
  href="mailto:support-bounces@drupal.org">mailto:support-bounces@drupal.org</A>] 
  <B>On Behalf Of </B>Jean Gazis<BR><B>Sent:</B> Friday, August 17, 2007 10:30 
  PM<BR><B>To:</B> <A class=moz-txt-link-abbreviated 
  href="mailto:support@drupal.org">support@drupal.org</A><BR><B>Subject:</B> Re: 
  [support] different TinyMCE problems<BR></FONT><BR></DIV>Well, I'm not pasting 
  form Word (I hate Word) but I don't understand this: "<SPAN><FONT face=Arial 
  color=#0000ff size=2>SO if you're doing a bunch of pasting from Word, it will 
  still leave the tags in the HTML that gets stored in Drupal.&nbsp; This only 
  bothers you when you turn off the editor, or if you have some other process 
  trying to get at the data. TinyMCE tag filters can only be set by implementing 
  a special function in your theme. "<BR><BR>How do I know what the tiny MCE 
  tags are? I just see some HTML tags. <BR><BR>Jean<BR></FONT></SPAN><BR>
  <DIV><SPAN class=gmail_quote>On 8/17/07, <B class=gmail_sendername>Metzler, 
  David </B>&lt;<A href="mailto:metzlerd@evergreen.edu" 
  moz-do-not-send="true">metzlerd@evergreen.edu</A>&gt; wrote:</SPAN> 
  <BLOCKQUOTE class=gmail_quote 
  style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">
    <DIV text="#000000" bgcolor="#ffffff">
    <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff size=2>An 
    important thing to note:&nbsp; Changing the default filter does 
    <STRONG>not</STRONG> <STRONG>change any content</STRONG>.&nbsp; If you're 
    changing the input formats from&nbsp;FilteredHTML to&nbsp;Full HTML, and you 
    had previously&nbsp;created a node&nbsp;as "Filtered HTML"&nbsp;changing the 
    default won't change the&nbsp;original nodes input format.&nbsp; You must 
    have administer filters privilege and change the input format on 
    <STRONG>each node</STRONG>. If you instead edit the allowed tag list for the 
    "Filtered HTML" input format, then you don't have&nbsp;to update 
    each&nbsp;node.&nbsp; Hope that makes 
    sense.&nbsp;&nbsp;&nbsp;</FONT></SPAN></DIV>
    <DIV dir=ltr align=left><SPAN></SPAN>&nbsp;</DIV>
    <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
    size=2>Correspondingly, unless you're using "Filter Defaults" or some other 
    module that alters this.&nbsp; Drupal out of the can does not support 
    Content Type specific filters. The input formats are set on a per node 
    basis. </FONT></SPAN></DIV>
    <DIV dir=ltr align=left><SPAN></SPAN>&nbsp;</DIV>
    <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
    size=2>FYI:&nbsp; I have configured TinyMCE to filter out html tags as well 
    in some cases.&nbsp; Input formats filter out HTML on display and not 
    input.&nbsp; SO if you're doing a bunch of pasting from Word, it will still 
    leave the tags in the HTML that gets stored in Drupal.&nbsp; This only 
    bothers you when you turn off the editor, or if you have some other process 
    trying to get at the data. TinyMCE tag filters can only be set by 
    implementing a special function in your theme. There's no place to 
    "configure" this in the DB. </FONT></SPAN></DIV>
    <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
    size=2><BR>Dave</FONT></SPAN></DIV>
    <DIV dir=ltr align=left><SPAN></SPAN>&nbsp;</DIV>
    <DIV lang=en-us dir=ltr align=left><SPAN></SPAN>&nbsp;</DIV>
    <DIV lang=en-us dir=ltr align=left>
    <HR>
    </DIV>
    <DIV lang=en-us dir=ltr align=left><FONT face=Tahoma size=2><B>From:</B> <A 
    onclick="return top.js.OpenExtLink(window,event,this)" 
    href="mailto:support-bounces@drupal.org" target=_blank 
    moz-do-not-send="true">support-bounces@drupal.org </A>[mailto:<A 
    onclick="return top.js.OpenExtLink(window,event,this)" 
    href="mailto:support-bounces@drupal.org" target=_blank 
    moz-do-not-send="true">support-bounces@drupal.org</A>] <B>On Behalf Of 
    </B>sander-martijn<BR><B>Sent:</B> Thursday, August 16, 2007 2:17 PM</FONT> 
    <DIV><SPAN class=e id=q_1147600958d3a396_1><FONT face=Tahoma 
    size=2><BR><B>To:</B> <A 
    onclick="return top.js.OpenExtLink(window,event,this)" 
    href="mailto:support@drupal.org" target=_blank 
    moz-do-not-send="true">support@drupal.org </A><BR><B>Subject:</B> Re: 
    [support] different TinyMCE problems<BR></FONT></SPAN></DIV><BR></DIV>
    <DIV><SPAN class=e id=q_1147600958d3a396_3>I've always thought the opposite 
    of TinyMCE (or any wysiwyg editor).&nbsp; It's not necessarily to restrict 
    your users from using html but more to remove the requirement of knowing 
    html.&nbsp; <BR><BR>However I do think you can get what you want: I think 
    that if you turn on full html globally but turn off the option for users to 
    select, require TinyMCE (also can be done globally I believe) and don't 
    include the html button in the TinyMCE editor, then TinyMCE will be able to 
    write all the html it needs to (restricting html will restrict it from 
    TinyMCE as well - this is because TinyMCE is merely a front-end mask to 
    what's really happening) while the user will never be able to see or edit 
    it. <BR><BR>Jean Gazis wrote: 
    <BLOCKQUOTE 
    cite=http://mid90f7ebd10708161400j71e907fcp151f39b92ee7c63a@mail.gmail.com 
    type="cite">If &lt;ul&gt; and &lt;li&gt; are enabled, shouldn't the 
      bulleted list format button work? I don't see where to associate the input 
      format with a content type. I don't want to give all users full HTML, 
      that's the whole point of installing TinyMCE. If I turn off line breaks in 
      my default format, won't it mess up my other content types? I think that 
      was why I turned them on. And TinyMCE worked or works sometimes with the 
      default input format as is. I feel like I am just being dense. <BR><BR>
      <DIV><SPAN class=gmail_quote>On 8/16/07, <B 
      class=gmail_sendername>Metzler, David</B> &lt;<A 
      onclick="return top.js.OpenExtLink(window,event,this)" 
      href="mailto:metzlerd@evergreen.edu" target=_blank 
      moz-do-not-send="true">metzlerd@evergreen.edu</A>&gt; wrote:</SPAN> 
      <BLOCKQUOTE class=gmail_quote 
      style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">
        <DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff size=2>Yes 
        as sara has indicated.&nbsp; You can change the defaults at 
        </FONT></SPAN></DIV>
        <DIV dir=ltr align=left><SPAN></SPAN>&nbsp;</DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
        size=2>Administer -&gt; Site Configuration -&gt; Input Formats. 
        </FONT></SPAN></DIV>
        <DIV dir=ltr align=left><SPAN></SPAN>&nbsp;</DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff size=2>If 
        you "Configure" the default format. Then select the Configure tab, 
        you'll be able to set which tags are allowed.&nbsp; The default set is 
        </FONT></SPAN></DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
        size=2>&lt;a&gt; &lt;em&gt; &lt;strong&gt; &lt;cite&gt; &lt;code&gt; 
        &lt;ul&gt; &lt;ol&gt; &lt;li&gt; &lt;dl&gt; &lt;dt&gt; 
        &lt;dd&gt;</FONT></SPAN></DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
        size=2></FONT></SPAN>&nbsp;</DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff size=2>When 
        you enable tinymce you might also consider turning off the "line break 
        converter" on this screen as well. </FONT></SPAN></DIV>
        <DIV dir=ltr align=left><SPAN></SPAN>&nbsp;</DIV>
        <DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff 
        size=2>Dave</FONT></SPAN></DIV><BR>
        <DIV lang=en-us dir=ltr align=left>
        <HR>
        <FONT face=Tahoma size=2><B>From:</B> <A 
        onclick="return top.js.OpenExtLink(window,event,this)" 
        href="mailto:support-bounces@drupal.org" target=_blank 
        moz-do-not-send="true">support-bounces@drupal.org</A> [mailto:<A 
        onclick="return top.js.OpenExtLink(window,event,this)" 
        href="mailto:support-bounces@drupal.org" target=_blank 
        moz-do-not-send="true"> support-bounces@drupal.org</A>] <B>On Behalf Of 
        </B>Jean Gazis<BR><B>Sent:</B> Thursday, August 16, 2007 12:48 
        PM<BR><B>To:</B> <A 
        onclick="return top.js.OpenExtLink(window,event,this)" 
        href="mailto:support@drupal.org" target=_blank 
        moz-do-not-send="true">support@drupal.org</A><BR><B>Subject:</B> Re: 
        [support] different TinyMCE problems<BR></FONT><BR></DIV>
        <DIV><SPAN>I don't want the users to have to select input formats, I 
        want them to be set for the content type or field type. Is that 
        possible?<BR><BR>
        <DIV><SPAN class=gmail_quote>On 8/16/07, <B class=gmail_sendername>Sarah 
        Adams </B>&lt;<A onclick="return top.js.OpenExtLink(window,event,this)" 
        href="mailto:mr.sanders@geekjock.ca" target=_blank 
        moz-do-not-send="true">mr.sanders@geekjock.ca</A>&gt; wrote:</SPAN> 
        <BLOCKQUOTE class=gmail_quote 
        style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">&gt; 
          I installed it, set up roles etc. It seemed to work fine with the 
          first<BR>&gt; custom content type. A few days later, it does not. In 
          between I<BR>&gt; installed Views and Viewfield, and created a new 
          content type.<BR>&gt;<BR>&gt; What I'm getting is, instead of 
          formatted text, e.g. bulleted list, it<BR>&gt; just puts &lt;br&gt; or 
          &lt;div&gt; between the items and removes the line breaks,<BR>&gt; 
          like this:<BR>&gt;<BR>&gt; "vegetable&lt;br /&gt; fruit&lt;br /&gt; 
          vegetable&lt;br /&gt; fruit&lt;br /&gt; fruit&lt;br /&gt; <BR>&gt; 
          vegetable&lt;br /&gt; veggie&lt;br /&gt; fruit &lt;br /&gt; 
          veg"<BR>&gt;<BR>&gt; I'm sure this is some stupid thing I could figure 
          out somehow, but I<BR>&gt; can't figure out where to start.<BR><BR>You 
          probably have the content set to use filtered html instead of full 
          <BR>html. You can update this on a content item basis by clicking on 
          input<BR>formats just below the TinyMCE editor, or site-wide by going 
          to admin &gt;<BR>site config &gt; input 
          formats.<BR><BR>HTH!<BR><BR>--<BR>sarah adams <BR>web developer &amp; 
          programmer<BR>portfolio: <A 
          onclick="return top.js.OpenExtLink(window,event,this)" 
          href="http://sarah.designshift.com" target=_blank 
          moz-do-not-send="true">http://sarah.designshift.com</A><BR>blog: <A 
          onclick="return top.js.OpenExtLink(window,event,this)" 
          href="http://hardedge.ca" target=_blank 
          moz-do-not-send="true">http://hardedge.ca</A><BR>--<BR>[ Drupal 
          support list | <A 
          onclick="return top.js.OpenExtLink(window,event,this)" 
          href="http://lists.drupal.org/" target=_blank 
          moz-do-not-send="true">http://lists.drupal.org/</A> 
        ]<BR></BLOCKQUOTE></DIV><BR><BR clear=all><BR>-- <BR>Jean Gazis<BR><A 
        onclick="return top.js.OpenExtLink(window,event,this)" 
        href="http://www.jeangazis.com" target=_blank 
        moz-do-not-send="true">www.jeangazis.com</A><BR><A 
        onclick="return top.js.OpenExtLink(window,event,this)" 
        href="http://www.boxofrain.us" target=_blank 
        moz-do-not-send="true">www.boxofrain.us</A><BR><BR>"Believe those who 
        are seeking the truth; doubt those who find it." - André Gide 
        </SPAN></DIV></DIV><BR>--<BR>[ Drupal support list | <A 
        onclick="return top.js.OpenExtLink(window,event,this)" 
        href="http://lists.drupal.org/" target=_blank 
        moz-do-not-send="true">http://lists.drupal.org/</A> 
      ]<BR></BLOCKQUOTE></DIV><BR><BR clear=all><BR>-- <BR>Jean Gazis<BR><A 
      onclick="return top.js.OpenExtLink(window,event,this)" 
      href="http://www.jeangazis.com" target=_blank 
      moz-do-not-send="true">www.jeangazis.com</A><BR><A 
      onclick="return top.js.OpenExtLink(window,event,this)" 
      href="http://www.boxofrain.us" target=_blank 
      moz-do-not-send="true">www.boxofrain.us</A><BR><BR>"Believe those who are 
      seeking the truth; doubt those who find it." - André Gide </BLOCKQUOTE><BR>
    <DIV>-- <BR>
    <HR align=center width="100%" noShade SIZE=1>

    <P 
    style="FONT-WEIGHT: normal; FONT-SIZE: 10px; TEXT-TRANSFORM: lowercase; COLOR: rgb(51,51,51); FONT-STYLE: normal; FONT-FAMILY: verdana,arial,helvetica,sans-serif; TEXT-ALIGN: center"><A 
    style="COLOR: rgb(0,0,255); FONT-FAMILY: verdana,arial,helvetica,sans-serif; TEXT-DECORATION: none" 
    onclick="return top.js.OpenExtLink(window,event,this)" 
    href="mailto:sander@sander-martijn.com" target=_blank 
    moz-do-not-send="true">sander-martijn</A><BR>interface developer | 
    architect<BR><A 
    style="COLOR: rgb(0,0,255); FONT-FAMILY: verdana,arial,helvetica,sans-serif; TEXT-DECORATION: none" 
    onclick="return top.js.OpenExtLink(window,event,this)" 
    href="mailto:sander@sander-martijn.com" target=_blank 
    moz-do-not-send="true">sander@sander-martijn.com</A><BR><A 
    style="COLOR: rgb(0,0,255); FONT-FAMILY: verdana,arial,helvetica,sans-serif; TEXT-DECORATION: none" 
    onclick="return top.js.OpenExtLink(window,event,this)" 
    href="http://www.sander-martijn.com" target=_blank 
    moz-do-not-send="true">www.sander-martijn.com</A> </P>
    <HR align=center width="100%" noShade SIZE=1>
    </DIV></SPAN></DIV></DIV><BR>--<BR>[ Drupal support list | <A 
    onclick="return top.js.OpenExtLink(window,event,this)" 
    href="http://lists.drupal.org/" target=_blank 
    moz-do-not-send="true">http://lists.drupal.org/</A> 
  ]<BR></BLOCKQUOTE></DIV><BR><BR clear=all><BR>-- <BR>Jean Gazis<BR><A 
  href="http://www.jeangazis.com" 
  moz-do-not-send="true">www.jeangazis.com</A><BR><A 
  href="http://www.boxofrain.us" 
  moz-do-not-send="true">www.boxofrain.us</A><BR><BR>"Believe those who are 
  seeking the truth; doubt those who find it." - André Gide </BLOCKQUOTE><BR>
<DIV class=moz-signature>-- <BR>
<HR align=center width="100%" noShade SIZE=1>

<P 
style="FONT-WEIGHT: normal; FONT-SIZE: 10px; TEXT-TRANSFORM: lowercase; COLOR: rgb(51,51,51); FONT-STYLE: normal; FONT-FAMILY: verdana,arial,helvetica,sans-serif; TEXT-ALIGN: center"><A 
style="COLOR: rgb(0,0,255); FONT-FAMILY: verdana,arial,helvetica,sans-serif; TEXT-DECORATION: none" 
href="mailto:sander@sander-martijn.com">sander-martijn</A><BR>interface 
developer | architect<BR><A 
style="COLOR: rgb(0,0,255); FONT-FAMILY: verdana,arial,helvetica,sans-serif; TEXT-DECORATION: none" 
href="mailto:sander@sander-martijn.com">sander@sander-martijn.com</A><BR><A 
style="COLOR: rgb(0,0,255); FONT-FAMILY: verdana,arial,helvetica,sans-serif; TEXT-DECORATION: none" 
href="http://www.sander-martijn.com">www.sander-martijn.com</A> </P>
<HR align=center width="100%" noShade SIZE=1>
</DIV></BODY></HTML>