<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>D&#039;Arcy Norman dot net &#187; modules</title>
	<atom:link href="http://www.darcynorman.net/tag/modules/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.darcynorman.net</link>
	<description>apparently much happier in person</description>
	<lastBuildDate>Fri, 20 Nov 2009 03:52:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Custom Fields in Drupal Event Signups</title>
		<link>http://www.darcynorman.net/2006/12/12/custom-fields-in-drupal-event-signups/</link>
		<comments>http://www.darcynorman.net/2006/12/12/custom-fields-in-drupal-event-signups/#comments</comments>
		<pubDate>Wed, 31 Dec 1969 17:00:00 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[modules]]></category>

		<guid isPermaLink="false">979466290</guid>
		<description><![CDATA[We're using the <a href="http://drupal.org/project/event">Event module</a> to list our <a href="http://tlc.ucalgary.ca/teaching/workshops">workshops</a> at the <a href="http://tlc.ucalgary.ca">Teaching &#038; Learning Centre</a>, and the <a href="http://drupal.org/project/signup">Signup module</a> to let people register to attend workshops (or other events). It's working really quite well, but we needed to add some extra fields to the registration form so we could track Faculties, Status, etc...

"Sure," I said, "Drupal's open source, so we should be able to add any fields we want. Worst case scenario? We'd have to fork Signup.module and maintain our own version with our custom fields in it."

I then proceeded to drag my feet, not looking forward to having to maintain a module for something as simple as adding some custom fields. Maybe I could use the FormsAPI and insert the fields through some custom code?

So, I poked through the signup.module source code to see what would be involved. I'd braced for some rather convoluted and involved hackery. I blocked my schedule for the day so I'd have time to dedicate to the task.

Then, I saw that the module developers had already done the work for me. They implemented the signup form's fields as a themable method, letting me override it on a per-theme basis. Without having to touch the code for the module itself. Brilliant. Absofrakking brilliant. So, I added this code to our theme's template.php file (the theme is called "uofc_thisisnow"):

<pre><code>function uofc_thisisnow_signup_user_form() {
	$form['signup_form_data']['#tree'] = TRUE;
	$form['signup_form_data']['Name'] = array(
		'#type' => 'textfield', 
		'#title' => t('Name'), 
		'#size' => 40, 
		'#maxlength' => 64
	);
	$form['signup_form_data']['Phone'] = array(
		'#type' => 'textfield', 
		'#title' => t('Phone'), 
		'#size' => 40, 
		'#maxlength' => 64
	);
	$form['signup_form_data']['Faculty'] = array(
		'#type' => 'textfield', 
		'#title' => t('Faculty or Department'), 
		'#size' => 40, 
		'#maxlength' => 64
	);
	$form['signup_form_data']['Status'] = array(
		'#type' => 'select', 
		'#title' => t('Status'), 
		'#default_value' => t('Faculty Member'), 
		'#options' => array(
			'faculty' => t('Faculty Member'),
			'staff' => t('Staff'), 
			'student' => t('Student'), 
			'other' => t('Other')
		)
	);
  return $form;
}
</code></pre>

That results in a signup form that looks like this:

<img src="http://www.darcynorman.net/files/images/tlc_workshop_signup_customfields.preview.png" alt="TLC Workshop Signup with Custom Fields" title="TLC Workshop Signup with Custom Fields" class="image preview" height="306" width="500"><span class="caption" style="width: 498px;"><strong>TLC Workshop Signup with Custom Fields</strong></span>

The beauty of this, since it exposes the full <a href="http://api.drupal.org/api/HEAD/file/developer/topics/forms_api_reference.html">FormsAPI</a>, we can add select menus, radio boxes, default values, etc... Without having to touch the code of the Signup module itself. Very cool stuff.]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re using the <a href="http://drupal.org/project/event">Event module</a> to list our <a href="http://tlc.ucalgary.ca/teaching/workshops">workshops</a> at the <a href="http://tlc.ucalgary.ca">Teaching &#038; Learning Centre</a>, and the <a href="http://drupal.org/project/signup">Signup module</a> to let people register to attend workshops (or other events). It&#8217;s working really quite well, but we needed to add some extra fields to the registration form so we could track Faculties, Status, etc&#8230;</p>
<p>&#8220;Sure,&#8221; I said, &#8220;Drupal&#8217;s open source, so we should be able to add any fields we want. Worst case scenario? We&#8217;d have to fork Signup.module and maintain our own version with our custom fields in it.&#8221;</p>
<p>I then proceeded to drag my feet, not looking forward to having to maintain a module for something as simple as adding some custom fields. Maybe I could use the FormsAPI and insert the fields through some custom code?</p>
<p>So, I poked through the signup.module source code to see what would be involved. I&#8217;d braced for some rather convoluted and involved hackery. I blocked my schedule for the day so I&#8217;d have time to dedicate to the task.</p>
<p>Then, I saw that the module developers had already done the work for me. They implemented the signup form&#8217;s fields as a themable method, letting me override it on a per-theme basis. Without having to touch the code for the module itself. Brilliant. Absofrakking brilliant. So, I added this code to our theme&#8217;s template.php file (the theme is called &#8220;uofc_thisisnow&#8221;):</p>
<pre><code>function uofc_thisisnow_signup_user_form() {
	$form['signup_form_data']['#tree'] = TRUE;
	$form['signup_form_data']['Name'] = array(
		'#type' => 'textfield',
		'#title' => t('Name'),
		'#size' => 40,
		'#maxlength' => 64
	);
	$form['signup_form_data']['Phone'] = array(
		'#type' => 'textfield',
		'#title' => t('Phone'),
		'#size' => 40,
		'#maxlength' => 64
	);
	$form['signup_form_data']['Faculty'] = array(
		'#type' => 'textfield',
		'#title' => t('Faculty or Department'),
		'#size' => 40,
		'#maxlength' => 64
	);
	$form['signup_form_data']['Status'] = array(
		'#type' => 'select',
		'#title' => t('Status'),
		'#default_value' => t('Faculty Member'),
		'#options' => array(
			'faculty' => t('Faculty Member'),
			'staff' => t('Staff'),
			'student' => t('Student'),
			'other' => t('Other')
		)
	);
  return $form;
}
</code></pre>
<p>That results in a signup form that looks like this:</p>
<p><img src="http://www.darcynorman.net/files/images/tlc_workshop_signup_customfields.preview.png" alt="TLC Workshop Signup with Custom Fields" title="TLC Workshop Signup with Custom Fields" class="image preview" height="306" width="500"><span class="caption" style="width: 498px;"><strong>TLC Workshop Signup with Custom Fields</strong></span></p>
<p>The beauty of this, since it exposes the full <a href="http://api.drupal.org/api/HEAD/file/developer/topics/forms_api_reference.html">FormsAPI</a>, we can add select menus, radio boxes, default values, etc&#8230; Without having to touch the code of the Signup module itself. Very cool stuff.</p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=1532" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2006/12/12/custom-fields-in-drupal-event-signups/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Drupal Module Sets for Various Website Profiles</title>
		<link>http://www.darcynorman.net/2006/06/06/drupal-module-sets-for-various-website-profiles/</link>
		<comments>http://www.darcynorman.net/2006/06/06/drupal-module-sets-for-various-website-profiles/#comments</comments>
		<pubDate>Wed, 31 Dec 1969 17:00:00 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[modules]]></category>

		<guid isPermaLink="false">1684046963</guid>
		<description><![CDATA[<p>I&#39;ve been helping to assemble some lists of modules that would be enabled by default for three &#34;typical&#34; website profiles that we&#39;ve come up with at the TLC. </p><p>&#34;Simple site&#34; - a regular &#34;static&#34; department-ish website that is really just using Drupal as an easy way to share editing duties without requiring a geek.</p><p>&#34;Community site&#34; - akin to weblogs.ucalgary.ca - which may (or may not) be a superset of &#34;simple site&#34;</p><p>&#34;TLC projects&#34; - a project site supported by the Teaching &#38; Learning Centre. May be a &#34;simple site&#34; or may be more complex than that. Might involve some unpretty hackery to provide things like &#34;private&#34; content, etc... This profile will require a bit more babysitting/handholding/documenting, and may not be for the faint of heart. That being said, we&#39;re basically using this profile for the next version of the <a href="http://tlc.ucalgary.ca">TLC department website</a> ... (coming this summer(?) to a browser near you)<br /></p><p>The <a href="/articles/drupal-modules-by-profile">list of default modules for each profile is online</a> , generated by the most excellent OmniOutliner Pro 3. Each site profile is just a starting point, and may be customized from there (which is why some modules are listed, but not enabled by default for any profile). </p>]]></description>
			<content:encoded><![CDATA[<p>I&#39;ve been helping to assemble some lists of modules that would be enabled by default for three &quot;typical&quot; website profiles that we&#39;ve come up with at the TLC. </p>
<p>&quot;Simple site&quot; &#8211; a regular &quot;static&quot; department-ish website that is really just using Drupal as an easy way to share editing duties without requiring a geek.</p>
<p>&quot;Community site&quot; &#8211; akin to weblogs.ucalgary.ca &#8211; which may (or may not) be a superset of &quot;simple site&quot;</p>
<p>&quot;TLC projects&quot; &#8211; a project site supported by the Teaching &amp; Learning Centre. May be a &quot;simple site&quot; or may be more complex than that. Might involve some unpretty hackery to provide things like &quot;private&quot; content, etc&#8230; This profile will require a bit more babysitting/handholding/documenting, and may not be for the faint of heart. That being said, we&#39;re basically using this profile for the next version of the <a href="http://tlc.ucalgary.ca">TLC department website</a> &#8230; (coming this summer(?) to a browser near you)</p>
<p>The <a href="/articles/drupal-modules-by-profile">list of default modules for each profile is online</a> , generated by the most excellent OmniOutliner Pro 3. Each site profile is just a starting point, and may be customized from there (which is why some modules are listed, but not enabled by default for any profile). </p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=1228" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2006/06/06/drupal-module-sets-for-various-website-profiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal Modules by Profile</title>
		<link>http://www.darcynorman.net/2006/06/06/drupal-modules-by-profile/</link>
		<comments>http://www.darcynorman.net/2006/06/06/drupal-modules-by-profile/#comments</comments>
		<pubDate>Wed, 31 Dec 1969 17:00:00 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[modules]]></category>

		<guid isPermaLink="false">1172231433</guid>
		<description><![CDATA[<style type="text/css">
    
    th {
        vertical-align: bottom;
        
    }
    
    td,th {
        /* Cheating here so we can get a default font and size. If it's set in the outline then it'll get redeclared below
           and overwritten (hopefully).
        */
        font-family: Helvetica, sans-serif;
        font-size: 12px;
        border-bottom: 1px solid rgb(204,204,204) ;  border-left: 1px solid rgb(204,204,204) ;  

        empty-cells: show;
    }

    /* Level Styles */
    
    .wholeDocument {
        
    }
    
    .columntitle { 
        text-decoration: underline;font-weight: 900;  
    }


    td.subcell {
        border: none;
    }

    .indicator {
        white-space: nowrap;
        text-align:right;
        margin-right: 2px;
        vertical-align: top;
        padding-top: 3px;
    }
    
    table.subtable {
    }
    
    div.row {
    }

    .expanded {
        display: inline;
    }
    .collapsed {
        display: none;
    }
    
    
    .altRow {
        background-color: rgb(214,254,236) !important;  
    }
    
    .note { 
border: none;
color:rgb(84,84,84) ;  font-style: italic;font-size: 11px;
    }

    
    /* Total table width is 496
      Adjusted table width is 570 */
    
    table.row {
        width: 570px;
    
    }
    
    
    .col_width1 { 
        width: 225px;  /* Actual width is 196 */
    }

    .col_width2 { 
        width: 115px;  /* Actual width is 100 */
    }

    .col_width3 { 
        width: 115px;  /* Actual width is 100 */
    }

    .col_width4 { 
        width: 115px;  /* Actual width is 100 */
    }

    .col1 { 
        
    }

    .col2 { 
        font-style: italic;text-align: center;

    }

    .col3 { 
        text-align: center;

    }

    .col4 { 
        text-align: center;

    }

    .ns-Highlight { 
        background-color:rgb(252,254,105) ;  }

    .ns-Citation { 
        text-decoration: underline;}

    .ns-Emphasis { 
        font-style: italic;}
</style>
<table cellspacing="0">
<!--Column Titles--><tr>
<td class="col1 col_width1" style=""><div class="header">Module<br />
</div></td>
<td class="col2 col_width2" style=""><div class="header">Simple Site<br />
</div></td>
<td class="col3 col_width3" style=""><div class="header">Community Site<br />
</div></td>
<td class="col4 col_width4" style=""><div class="header">TLC Projects<br />
</div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div>
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> Drupal Core Modules<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> aggregator<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> archive<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> block<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> blog<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> blogapi<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> book<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> comment<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> contact<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> drupal<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> filter<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> forum<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> help<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> legacy<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> locale<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> menu<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> node<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> page<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> path<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> ping<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> poll<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> profile<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> search<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> statistics<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> story<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> system<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> taxonomy<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> throttle<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> tracker<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> upload<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> user<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> watchdog<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div>
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> Third Party Modules<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> audio<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> content (CCK)<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> date<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> nodereference<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> number<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> optionwidgets<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> text<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> userreference<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> weburl<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> event<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> event_all_day<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> basicevent<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> signup<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> front_page<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> image<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> img_assist<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> ldap_integration<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> logintoboggan<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> notify<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> organic groups (OG)<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og2list<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_basic<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_block<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_book<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_civicrm<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_forum<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_gmap<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_mandatory_group<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_menu<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_moderate<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_promote<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_store<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_views<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> pathauto<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> robotstxt<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> simple access<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> survey<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> tagadelic<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> taxonomy_theme<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> tinyMCE<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> urlFilter<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> views<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> viewsUI<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> video<br />
</div></td>
<td class="col2 col_width2" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style=""><div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> workspace<br />
</div></td>
<td class="col2 col_width2 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col3 col_width3 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div></td>
<td class="col4 col_width4 altRow" style=""><div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div></td>
</tr>
</table>]]></description>
			<content:encoded><![CDATA[<style type="text/css">
<p>    th {
        vertical-align: bottom;</p>
<p>    }</p>
<p>    td,th {
        /* Cheating here so we can get a default font and size. If it's set in the outline then it'll get redeclared below
           and overwritten (hopefully).
        */
        font-family: Helvetica, sans-serif;
        font-size: 12px;
        border-bottom: 1px solid rgb(204,204,204) ;  border-left: 1px solid rgb(204,204,204) ;  </p>
<p>        empty-cells: show;
    }</p>
<p>    /* Level Styles */</p>
<p>    .wholeDocument {</p>
<p>    }</p>
<p>    .columntitle { 
        text-decoration: underline;font-weight: 900;  
    }</p>
<p>    td.subcell {
        border: none;
    }</p>
<p>    .indicator {
        white-space: nowrap;
        text-align:right;
        margin-right: 2px;
        vertical-align: top;
        padding-top: 3px;
    }</p>
<p>    table.subtable {
    }</p>
<p>    div.row {
    }</p>
<p>    .expanded {
        display: inline;
    }
    .collapsed {
        display: none;
    }</p>
<p>    .altRow {
        background-color: rgb(214,254,236) !important;  
    }</p>
<p>    .note { 
border: none;
color:rgb(84,84,84) ;  font-style: italic;font-size: 11px;
    }</p>
<p>    /* Total table width is 496
      Adjusted table width is 570 */</p>
<p>    table.row {
        width: 570px;</p>
<p>    }</p>
<p>    .col_width1 { 
        width: 225px;  /* Actual width is 196 */
    }</p>
<p>    .col_width2 { 
        width: 115px;  /* Actual width is 100 */
    }</p>
<p>    .col_width3 { 
        width: 115px;  /* Actual width is 100 */
    }</p>
<p>    .col_width4 { 
        width: 115px;  /* Actual width is 100 */
    }</p>
<p>    .col1 { </p>
<p>    }</p>
<p>    .col2 { 
        font-style: italic;text-align: center;</p>
<p>    }</p>
<p>    .col3 { 
        text-align: center;</p>
<p>    }</p>
<p>    .col4 { 
        text-align: center;</p>
<p>    }</p>
<p>    .ns-Highlight { 
        background-color:rgb(252,254,105) ;  }</p>
<p>    .ns-Citation { 
        text-decoration: underline;}</p>
<p>    .ns-Emphasis { 
        font-style: italic;}
</style>
<table cellspacing="0">
<!--Column Titles--><br />
<tr>
<td class="col1 col_width1" style="">
<div class="header">Module
</div>
</td>
<td class="col2 col_width2" style="">
<div class="header">Simple Site
</div>
</td>
<td class="col3 col_width3" style="">
<div class="header">Community Site
</div>
</td>
<td class="col4 col_width4" style="">
<div class="header">TLC Projects
</div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div>
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> Drupal Core Modules
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> aggregator
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> archive
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> block
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> blog
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> blogapi
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> book
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> comment
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> contact
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> drupal
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> filter
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> forum
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> help
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> legacy
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> locale
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> menu
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> node
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> page
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> path
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> ping
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> poll
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> profile
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> search
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> statistics
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> story
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> system
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> taxonomy
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> throttle
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> tracker
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> upload
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> user
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> watchdog
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div>
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> Third Party Modules
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> audio
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> content (CCK)
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> date
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> nodereference
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> number
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> optionwidgets
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> text
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> userreference
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> weburl
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> event
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> event_all_day
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> basicevent
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> signup
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> front_page
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> image
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> img_assist
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> ldap_integration
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> logintoboggan
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> notify
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> organic groups (OG)
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og2list
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_basic
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_block
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_book
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_civicrm
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_forum
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_gmap
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_mandatory_group
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_menu
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_moderate
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_promote
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_store
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> og_views
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> pathauto
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> robotstxt
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> simple access
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> survey
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> tagadelic
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> taxonomy_theme
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> tinyMCE
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> urlFilter
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="wedge" src="/images/omnioutliner/Expanded.png" title="collapse"> views
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 47px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> viewsUI
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> video
</div>
</td>
<td class="col2 col_width2" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
</tr>
<tr>
<td class="col1 col_width1 altRow" style="">
<div style="margin-left: 32px; text-indent: -17px;">
<img border="0" hspace="3" vspace="0" alt="*" src="/images/omnioutliner/LeafRowHandle.png"> workspace
</div>
</td>
<td class="col2 col_width2 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col3 col_width3 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[ ]" src="/images/omnioutliner/Unchecked.png"></div>
</td>
<td class="col4 col_width4 altRow" style="">
<div><img align="center" border="0" hspace="2" vspace="0" alt="[x]" src="/images/omnioutliner/Checked.png"></div>
</td>
</tr>
</table>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=1227" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2006/06/06/drupal-modules-by-profile/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Battle of the Drupal Rich Text Editors</title>
		<link>http://www.darcynorman.net/2006/05/29/battle-of-the-drupal-rich-text-editors/</link>
		<comments>http://www.darcynorman.net/2006/05/29/battle-of-the-drupal-rich-text-editors/#comments</comments>
		<pubDate>Wed, 31 Dec 1969 17:00:00 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[modules]]></category>
		<category><![CDATA[weblogs.ucalgary.ca]]></category>

		<guid isPermaLink="false">1383016412</guid>
		<description><![CDATA[<p>This post was triggered by my need to use a few websites that are stuck in Drupal 4.6, and as such they have HTMLArea installed.</p>
<p>For Drupal, there are 3 options to choose from when shopping for a rich text editor to be used in content editing textareas.</p>
<ol><li><a href="http://drupal.org/project/fckeditor">FCKEditor</a></li>
<li><a href="http://drupal.org/project/htmlarea">HTMLArea</a></li>
<li><a href="http://drupal.org/project/tinymce">TinyMCE</a></li>
</ol>
<p>Of the three, only TinyMCE has an official 4.7 compatible release.</p>
<p>The first two produce absolutely horrid markup. TinyMCE used to be as spectacularly invalid/nonsemantic as the others, but it's received a LOT of love recently and its markup is actually pretty decent now.</p>

<p>HTMLArea produces brutal markup. Silly divs inserted for no apparent reason. Really crazy markup that I have to go in and clean up by hand if I want to make sure the code is tight and correct. That defeats the purpose of a rich text editor.</p>

<p>FCKEditor isn't bad - when weblogs.ucalgary.ca was still on Drupal 4.6, that's what it used. The markup wasn't hideous, but it wasn't great either. It was slightly quirky to use, but it worked (mostly).</p>

<p>Then, weblogs.ucalgary.ca was moved to our shared Drupal hosting environment, which runs Drupal 4.7 - FCKEditor wasn't happy, so I dropped in the CVS build of TinyMCE.module. And the markup was much cleaner. And it integrated with Image.module. And a bunch of other nice stuff like providing a full screen editing mode.</p>

<p>None of them, however, cleanly "disable" themselves so I can get to raw code. Several "meta" pages on the sites have PHP code embedded, which is completely obliterated by the rich text editors. Even clicking the "disable rich text editing" link below the textarea isn't enough because the source text has already been nuked by the javascripts used by the editor. So, I still have to make a round trip to "My Account", edit it, and disable rich text editing for my account until those pages are edited. I've currently left it off by default, and call it into action by hitting the "enable rich text editing" link beneath the textarea. That makes it safe to edit any content in a site without worrying about clobbering stuff that isn't grokked by the editor, while keeping the fancy schmancy WYSIWYG stuff just a single click away.<br/>
</p>]]></description>
			<content:encoded><![CDATA[<p>This post was triggered by my need to use a few websites that are stuck in Drupal 4.6, and as such they have HTMLArea installed.</p>
<p>For Drupal, there are 3 options to choose from when shopping for a rich text editor to be used in content editing textareas.</p>
<ol>
<li><a href="http://drupal.org/project/fckeditor">FCKEditor</a></li>
<li><a href="http://drupal.org/project/htmlarea">HTMLArea</a></li>
<li><a href="http://drupal.org/project/tinymce">TinyMCE</a></li>
</ol>
<p>Of the three, only TinyMCE has an official 4.7 compatible release.</p>
<p>The first two produce absolutely horrid markup. TinyMCE used to be as spectacularly invalid/nonsemantic as the others, but it&#8217;s received a LOT of love recently and its markup is actually pretty decent now.</p>
<p>HTMLArea produces brutal markup. Silly divs inserted for no apparent reason. Really crazy markup that I have to go in and clean up by hand if I want to make sure the code is tight and correct. That defeats the purpose of a rich text editor.</p>
<p>FCKEditor isn&#8217;t bad &#8211; when weblogs.ucalgary.ca was still on Drupal 4.6, that&#8217;s what it used. The markup wasn&#8217;t hideous, but it wasn&#8217;t great either. It was slightly quirky to use, but it worked (mostly).</p>
<p>Then, weblogs.ucalgary.ca was moved to our shared Drupal hosting environment, which runs Drupal 4.7 &#8211; FCKEditor wasn&#8217;t happy, so I dropped in the CVS build of TinyMCE.module. And the markup was much cleaner. And it integrated with Image.module. And a bunch of other nice stuff like providing a full screen editing mode.</p>
<p>None of them, however, cleanly &#8220;disable&#8221; themselves so I can get to raw code. Several &#8220;meta&#8221; pages on the sites have PHP code embedded, which is completely obliterated by the rich text editors. Even clicking the &#8220;disable rich text editing&#8221; link below the textarea isn&#8217;t enough because the source text has already been nuked by the javascripts used by the editor. So, I still have to make a round trip to &#8220;My Account&#8221;, edit it, and disable rich text editing for my account until those pages are edited. I&#8217;ve currently left it off by default, and call it into action by hitting the &#8220;enable rich text editing&#8221; link beneath the textarea. That makes it safe to edit any content in a site without worrying about clobbering stuff that isn&#8217;t grokked by the editor, while keeping the fancy schmancy WYSIWYG stuff just a single click away.<br/></p>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=1219" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2006/05/29/battle-of-the-drupal-rich-text-editors/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Colophon</title>
		<link>http://www.darcynorman.net/2006/05/22/colophon/</link>
		<comments>http://www.darcynorman.net/2006/05/22/colophon/#comments</comments>
		<pubDate>Wed, 31 Dec 1969 17:00:00 +0000</pubDate>
		<dc:creator>dnorman</dc:creator>
				<category><![CDATA[colophon]]></category>
		<category><![CDATA[modules]]></category>
		<category><![CDATA[weblog]]></category>

		<guid isPermaLink="false">1640829676</guid>
		<description><![CDATA[<h2>Modules enabled on this copy of Drupal:</h2>   

<p>The colophon is a list of Drupal modules used to run this site. It's generated by calling the <code>module_list()</code> method, and iterating over the output, so it's a live reflection of what's running right now.</p>

<ul>
<?php
$modulelist = module_list( FALSE, TRUE, TRUE, NULL);

echo '<ul>';
foreach ($modulelist as $amodule) {
    echo '<li>'.$amodule.'</li>';
}
echo '</ul>'

/**
// Get current list of modules
  $files = system_listing('\.module$', 'modules', 'name', 0);

  // Extract current files from database.
  system_get_files_database($files, 'module');

  ksort($files);

  foreach ($files as $filename => $file) {
    if ($file -> status) {
        drupal_get_filename('module', $file->name, $file->filename);
        drupal_load('module', $file->name);

        $file->description = module_invoke($file->name, 'help', 'admin/modules#description'); 

        echo '<li>'.$file->name.':  '.$file->description.'</li>';
    }
  }
*/
?>
</ul>]]></description>
			<content:encoded><![CDATA[<h2>Modules enabled on this copy of Drupal:</h2>
<p>The colophon is a list of Drupal modules used to run this site. It&#8217;s generated by calling the <code>module_list()</code> method, and iterating over the output, so it&#8217;s a live reflection of what&#8217;s running right now.</p>
<ul>
<?php<br />
$modulelist = module_list( FALSE, TRUE, TRUE, NULL);</p>
<p>echo '
<ul>&#8216;;<br />
foreach ($modulelist as $amodule) {<br />
    echo &#8216;
<li>&#8216;.$amodule.&#8217;</li>
<p>&#8216;;<br />
}<br />
echo &#8216;</ul>
<p>&#8216;</p>
<p>/**<br />
// Get current list of modules<br />
  $files = system_listing(&#8217;\.module$&#8217;, &#8216;modules&#8217;, &#8216;name&#8217;, 0);</p>
<p>  // Extract current files from database.<br />
  system_get_files_database($files, &#8216;module&#8217;);</p>
<p>  ksort($files);</p>
<p>  foreach ($files as $filename => $file) {<br />
    if ($file -> status) {<br />
        drupal_get_filename(&#8217;module&#8217;, $file->name, $file->filename);<br />
        drupal_load(&#8217;module&#8217;, $file->name);</p>
<p>        $file->description = module_invoke($file->name, &#8216;help&#8217;, &#8216;admin/modules#description&#8217;); </p>
<p>        echo &#8216;
<li>&#8216;.$file->name.&#8217;:  &#8216;.$file->description.&#8217;</li>
<p>&#8216;;<br />
    }<br />
  }<br />
*/<br />
?>
</ul>
 <img src="http://www.darcynorman.net/wp-content/plugins/feed-statistics.php?view=1&post_id=1198" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.darcynorman.net/2006/05/22/colophon/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
