<!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. 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> </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> 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> </DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial
color=#0000ff size=2><SPAN>I ask authors to use the H1, h2 styles, which I
then can control via CSS. Of course the font tag is the biggest enemy
in word.... :). </SPAN></FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial
color=#0000ff size=2><SPAN></SPAN></FONT></SPAN> </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. </SPAN></FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial
color=#0000ff size=2><SPAN></SPAN></FONT></SPAN> </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> </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> </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> </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> </DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial
color=#0000ff size=2><SPAN>/**<BR> * Customize a TinyMCE
theme.<BR> *<BR> * @param init<BR> * An array of
settings TinyMCE should invoke a theme. You may override
any<BR> * of the TinyMCE settings. Details
here:<BR> *<BR> * <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> *<BR> *
@param textarea_name<BR> * The name of the textarea TinyMCE
wants to enable.<BR> *<BR> * @param theme_name<BR> *
The default tinymce theme name to be enabled for this textarea.
The<BR> * sitewide default is 'simple', but the user may also
override this.<BR> *<BR> * @param is_running<BR> * A
boolean flag that identifies id TinyMCE is currently running for
this<BR> * request life cycle. It can be
ignored.<BR> */<BR>function theme_tinymce_theme($init, $textarea_name,
$theme_name, $is_running) {<BR> switch ($textarea_name)
{<BR> // Disable tinymce for these
textareas<BR> case 'log': // book and page
log<BR> case 'img_assist_pages':<BR> case
'caption': // signature<BR> case
'pages':<BR> case 'access_pages': //TinyMCE profile
settings.<BR> case 'user_mail_welcome_body': // user config
settings<BR> case 'user_mail_approval_body': // user config
settings<BR> case 'user_mail_pass_body': // user config
settings<BR> case 'synonyms': // taxonomy
terms<BR> case 'description': // taxonomy
terms<BR>
unset($init);<BR>
break;</SPAN></FONT></SPAN></DIV>
<DIV> </DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial
color=#0000ff size=2><SPAN> // Force the 'simple' theme for
some of the smaller textareas.<BR> case
'signature':<BR> case 'site_mission':<BR>
case 'site_footer':<BR> case
'site_offline_message':<BR> case
'page_help':<BR> case
'user_registration_help':<BR> case
'user_picture_guidelines':<BR> $init['theme'] =
'simple';<BR> foreach ($init as $k => $v)
{<BR> if (strstr($k,
'theme_advanced_')) unset($init[$k]);<BR>
}<BR> break;<BR>
}</SPAN></FONT></SPAN></DIV>
<DIV> </DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial
color=#0000ff size=2><SPAN> /* Example, add some extra features when using
the advanced theme.<BR> <BR> // If $init is available, we can extend
it<BR> if (isset($init)) {<BR> switch ($theme_name)
{<BR> case
'advanced':<BR>
$init['extended_valid_elements'] =
array('a[href|target|name|title|onclick]');<BR>
break;<BR> }<BR> }<BR> <BR>
*/</SPAN></FONT></SPAN></DIV>
<DIV> </DIV>
<DIV dir=ltr align=left><SPAN class=635413115-20082007><FONT face=Arial
color=#0000ff size=2><SPAN> // Always return $init<BR> return
$init;<BR>}<BR></SPAN></FONT></SPAN></DIV>
<DIV><SPAN class=635413115-20082007><FONT face=Arial color=#0000ff
size=2><SPAN></SPAN></FONT></SPAN> </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? 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. 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> </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> </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 any weird word
generated tags in the HTML that gets stored in Drupal, even if you have
them filtered out by a drupal input filter. 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> </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 to filter tags, but these filters 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,
tags you don't want users entering won't be stored in the database
either. </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> </DIV>
<DIV dir=ltr align=left><SPAN class=588180715-20082007><FONT face=Arial
color=#0000ff size=2><SPAN>Hope that makes more sense.
</SPAN></FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=588180715-20082007></SPAN> </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. 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><<A href="mailto:metzlerd@evergreen.edu"
moz-do-not-send="true">metzlerd@evergreen.edu</A>> 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: Changing the default filter does
<STRONG>not</STRONG> <STRONG>change any content</STRONG>. If you're
changing the input formats from FilteredHTML to Full HTML, and you
had previously created a node as "Filtered HTML" changing the
default won't change the original nodes input format. 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 to update
each node. Hope that makes
sense. </FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN></SPAN> </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. 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> </DIV>
<DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff
size=2>FYI: I have configured TinyMCE to filter out html tags as well
in some cases. Input formats filter out HTML on display and not
input. 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. 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> </DIV>
<DIV lang=en-us dir=ltr align=left><SPAN></SPAN> </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). It's not necessarily to restrict
your users from using html but more to remove the requirement of knowing
html. <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 <ul> and <li> 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> <<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>> 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. You can change the defaults at
</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN></SPAN> </DIV>
<DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff
size=2>Administer -> Site Configuration -> Input Formats.
</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN></SPAN> </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. The default set is
</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff
size=2><a> <em> <strong> <cite> <code>
<ul> <ol> <li> <dl> <dt>
<dd></FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN><FONT face=Arial color=#0000ff
size=2></FONT></SPAN> </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> </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><<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>> wrote:</SPAN>
<BLOCKQUOTE class=gmail_quote
style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">>
I installed it, set up roles etc. It seemed to work fine with the
first<BR>> custom content type. A few days later, it does not. In
between I<BR>> installed Views and Viewfield, and created a new
content type.<BR>><BR>> What I'm getting is, instead of
formatted text, e.g. bulleted list, it<BR>> just puts <br> or
<div> between the items and removes the line breaks,<BR>>
like this:<BR>><BR>> "vegetable<br /> fruit<br />
vegetable<br /> fruit<br /> fruit<br /> <BR>>
vegetable<br /> veggie<br /> fruit <br />
veg"<BR>><BR>> I'm sure this is some stupid thing I could figure
out somehow, but I<BR>> 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 ><BR>site config > input
formats.<BR><BR>HTH!<BR><BR>--<BR>sarah adams <BR>web developer &
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>