<rss version="2.0">
  <channel>
    <title>MaxWiki Web Site</title>
    <link>http://www.maxwiki.com/</link>
    <description>MaxWiki</description>
    <language>en-us</language>
    <ttl>40</ttl>
    <item>
      <title>Forms</title>
      <description>&lt;h1&gt;Forms&lt;/h1&gt;
&lt;h2&gt;Email Subject&lt;/h2&gt;
&lt;p&gt;The subject line in the email that is sent from the form will use the value from the hidden field that contains &amp;quot;form_name&amp;quot; in it. It is okay to have a number before it like &amp;quot;000 form_name&amp;quot; but it needs to be in lowercase.&lt;br /&gt;
&lt;br /&gt;
The volunteer application is already setup to do this, and in source mode it looks like:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;lt;input type=&amp;quot;hidden&amp;quot; value=&amp;quot;Volunteer Application&amp;quot; name=&amp;quot;000 form_name&amp;quot; /&amp;gt;&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
In WYSIWYG mode, the hidden field will appear as a box around the letters &amp;quot;ab&amp;quot;. You can right click on this and&amp;nbsp; choose &amp;quot;Hidden Field Properties&amp;quot; to change the Name to &amp;quot;000 form_name&amp;quot; and the the Value to what you want to appear in the subject.&lt;/p&gt;</description>
      <pubDate>Wed, 14 May 2008 18:01:48 Z</pubDate>
      <guid>http://www.maxwiki.com/Forms</guid>
      <link>http://www.maxwiki.com/Forms</link>
    </item>
    <item>
      <title>Left Menu</title>
      <description>&lt;h1&gt;Left Menu&lt;/h1&gt;
&lt;p&gt;MaxWiki can use dynamic left menus that highlight the menu item corresponding to the current page (like the one on this page).&lt;/p&gt;
&lt;p&gt;To use a left menu, simply add a bullet list with class=&amp;quot;left_menu&amp;quot;. The source will look like:&lt;/p&gt;
&lt;pre&gt;
 &amp;lt;ul  class="left_menu"&amp;gt
    &amp;lt;li class=&amp;quot;submenu&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;/About Us&amp;quot;&amp;gt;About Us&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;/Team&amp;quot;&amp;gt;Team&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;/Contact&amp;quot;&amp;gt;Contact&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;&lt;/pre&gt;
&lt;p&gt;Note that after creating the list, you will need to add &lt;font face="Courier New"&gt;class=&amp;quot;left_menu&amp;quot; &lt;/font&gt;to the ul tag and add &lt;font face="Courier New"&gt;class=&amp;quot;submenu&amp;quot;&lt;/font&gt; to the first li item.&lt;/p&gt;
&lt;h2&gt;Advanced Matching&lt;/h2&gt;
&lt;p&gt;Normally, the menu item corresponding to the page name is selected. However, suppose you have a dog rescue site and want to show the many dogs you have successfully placed in homes. At first, this might all fit on one page but over time, you have arranged adoptions for so many dogs that you want to separate the list onto several pages. Maybe the pages are:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Adopted&lt;/li&gt;
    &lt;li&gt;Adopted 1&lt;/li&gt;
    &lt;li&gt;Adopted 2&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Normally the left menu item &amp;quot;Adopted&amp;quot; would only be selected for the &amp;quot;Adopted&amp;quot; page and not &amp;quot;Adopted 1&amp;quot; or &amp;quot;Adopted 2&amp;quot;. To get around this, add an ID to the menu item link by right-clicking on it and selecting Edit Link -&amp;gt; Advanced -&amp;gt; Id and typing &amp;quot;adopted&amp;quot;. This is a case insensitive regular expression that will be used to match against the page names. So now, whenever any of the Adopted pages is shown, the Adopted menu item will be selected.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <pubDate>Mon, 28 Apr 2008 22:01:41 Z</pubDate>
      <guid>http://www.maxwiki.com/Left+Menu</guid>
      <link>http://www.maxwiki.com/Left+Menu</link>
    </item>
    <item>
      <title>Install</title>
      <description>&lt;h1&gt;MaxWiki Install&lt;/h1&gt;
&lt;p&gt;Here are detailed instruction on installing MaxWiki and its supporting environment on Linux. Even though the samples below are for RedHat, they should also work on most other Linux distributions with a little tweaking. For Windows and Mac, follow the &lt;a href="http://www.maxdunn.com/RoR+Setup"&gt;alternate instructions &lt;/a&gt;for setting up Ruby/Gems/Rails then continue with the MySQL section.&lt;/p&gt;
&lt;h2&gt;Ruby&lt;/h2&gt;
&lt;ol&gt;
    &lt;li&gt;&lt;a href="http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.6.tar.gz"&gt;Download and install Ruby 1.86&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;(From: &lt;a href="http://rubyonrails.org/down"&gt;RubyOnRails Download&lt;/a&gt;)&lt;/p&gt;
&lt;h2&gt;Gems&lt;/h2&gt;
&lt;ol&gt;
    &lt;li&gt;Download &lt;a href="http://rubyforge.org/frs/?group_id=126"&gt;RubyGems&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;Extract then run: &lt;font face="Courier New"&gt;ruby setup.rb&lt;/font&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;(From: &lt;a href="http://rubyonrails.org/down"&gt;RubyOnRails Download&lt;/a&gt;)&lt;/p&gt;
&lt;h2&gt;Rails&lt;/h2&gt;
&lt;ol&gt;
    &lt;li&gt;Run: &lt;font face="Courier New"&gt;gem install rails --include-dependencies&lt;/font&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;(From: &lt;a href="http://rubyonrails.org/down"&gt;RubyOnRails Download&lt;/a&gt;)&lt;/p&gt;
&lt;h2&gt;MySQL&lt;/h2&gt;
&lt;ol&gt;
    &lt;li&gt;&lt;a href="http://dev.mysql.com/doc/refman/5.0/en/installing.html"&gt;Install MySQL5&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;Create database and user and assign rights:&lt;br /&gt;
    &lt;font face="Courier New"&gt;mysql -u root -p&lt;br /&gt;
    &amp;nbsp; create database maxwiki;&lt;br /&gt;
    &amp;nbsp; create database maxwiki_test;&lt;br /&gt;
    &amp;nbsp; grant all on maxwiki.* to rails@localhost identified by 'password';&lt;br /&gt;
    &amp;nbsp; grant all on maxwiki_test.* to rails@localhost;&lt;/font&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Install MaxWiki&lt;/h2&gt;
&lt;ol&gt;
    &lt;li&gt;Create and goto MaxWiki directory:&lt;font face="Courier New"&gt; /usr/local/rails/maxwiki&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Checkout from svn:&lt;font face="Courier New"&gt;&lt;br /&gt;
    svn checkout svn://rubyforge.org/var/svn/maxwiki/trunk &lt;/font&gt;&lt;font face="Courier New"&gt;.&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;For enterprise customers, get the additional plugins (username and password needed):&lt;br /&gt;
    &lt;font face="Courier New"&gt;cd /usr/local/rails/maxwiki/vendor/plugins&lt;br /&gt;
    &lt;/font&gt;     &lt;font face="Courier New"&gt;svn checkout http://svn.maxwiki.com/svn/maxwiki_ent/plugins/maxwiki_multihost&lt;br /&gt;
    &lt;/font&gt;&lt;font face="Courier New"&gt;svn checkout http://svn.maxwiki.com/svn/maxwiki_ent/plugins/maxwiki_convert&lt;br /&gt;
    &lt;/font&gt;&lt;font face="Courier New"&gt;svn checkout http://svn.maxwiki.com/svn/maxwiki_ent/plugins/maxwiki_webdav&lt;br /&gt;
    &lt;/font&gt;&lt;font face="Courier New"&gt;svn checkout http://svn.maxwiki.com/svn/maxwiki_ent/plugins/maxwiki_webdav_auth&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Also for enterprise customers, get the files for your site (username and password needed):&lt;br /&gt;
    &lt;font face="Courier New"&gt;cd &lt;/font&gt;&lt;font face="Courier New"&gt;/usr/local/rails/maxwiki/public/files&lt;/font&gt;&lt;br /&gt;
    &lt;font face="Courier New"&gt;svn checkout http://svn.maxwiki.com/svn/maxwiki_ent/files/your_site_name&lt;/font&gt;&lt;font face="Courier New"&gt;&lt;br /&gt;
    &lt;/font&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Rails User&lt;/h2&gt;
&lt;ol&gt;
    &lt;li&gt;Create group: &lt;font face="Courier New"&gt;groupadd rails&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Create user: &lt;font face="Courier New"&gt;&lt;br /&gt;
    useradd -c &amp;ldquo;Rails Server&amp;rdquo; -g rails rails&lt;br /&gt;
    passwd rails&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Change owner of rails files:&lt;font face="Courier New"&gt; chown -R rails:rails /usr/local/rails&lt;/font&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Setup MaxWiki&lt;/h2&gt;
&lt;p&gt;For the following files, copy the file to a new file without the .template extension, then customize. For instance, copy database.yml.template to database.yml.&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;config/database.yml&lt;/li&gt;
    &lt;li&gt;config/local_environment.rb&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;local_environment.rb&lt;/h4&gt;
&lt;p&gt;If you are running the Enterprise multi-host, change the top of this file to something like:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;MY_CONFIG[:host_map] = [&lt;br /&gt;&amp;nbsp;&amp;nbsp; {:host =&amp;gt; 'www.maxwiki.com', :name =&amp;gt; 'maxwiki'},&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp; {:host =&amp;gt; 'maxwiki.com', :redirect_to =&amp;gt; 'www.maxwiki.com'},&amp;nbsp;&amp;nbsp; &lt;br /&gt;]&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Database Setup&lt;/h2&gt;
&lt;ol&gt;
    &lt;li&gt;To setup the database tables run: &lt;font face="Courier New"&gt;rake db:migrate&lt;/font&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Install Mongrel&lt;/h2&gt;
&lt;ol&gt;
    &lt;li&gt;Install Mongrel:&lt;font face="Courier New"&gt; gem install mongrel mongrel_cluster --include-dependencies&lt;/font&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Test&lt;/h2&gt;
&lt;p&gt;At this point, it is a good idea to test MaxWiki with Mongrel (and no Apache).&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;Start Mongrel with: &lt;font face="Courier New"&gt;mongrel_rails start&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Access your server at port 3000. For instance, if installing locally use: &lt;font face="Courier New"&gt;&lt;a href="http://localhost:3000/"&gt;http://localhost:3000&lt;/a&gt;&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Fill in the MaxWiki setup screen fields and save.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;If you are setting up a development system, you can stop here. The following sections are for production servers.&lt;/p&gt;
&lt;h2&gt;Single Mongrel&lt;/h2&gt;
&lt;p&gt;For many installations, a singe mongrel instance under Apache will work fine (and is much easier to configure). Follow the instructions below, but change the RewriteRule line to:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;  RewriteRule .* http://127.0.0.1:8000%{REQUEST_URI} [L,P,QSA]&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And start Mongrel with:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;  mongrel_rails start -d -p 8000 -e production -P /full/path/to/log/mongrel-1.pid&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;(From: &lt;a href="http://mongrel.rubyforge.org/docs/apache.html"&gt;Apache Best Practice Deployment&lt;/a&gt;)&lt;/p&gt;
&lt;h2&gt;Mongrel Cluster&lt;/h2&gt;
&lt;p&gt;For installations where it will be getting many simultaneous hits, setting up a mongrel cluster is required for best performance.&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;In Rails home: &lt;font face="Courier New"&gt;/usr/local/rails/maxwiki&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Add file: &lt;font face="Courier New"&gt;conf/mongrel_cluster.yml&lt;/font&gt;&lt;br /&gt;
    &lt;font face="Courier New"&gt;--- &lt;br /&gt;
    cwd: /usr/local/rails/maxwiki&lt;br /&gt;
    port: &amp;quot;8000&amp;quot;&lt;br /&gt;
    environment: production&lt;br /&gt;
    address: 127.0.0.1&lt;br /&gt;
    pid_file: log/mongrel.pid&lt;br /&gt;
    servers: 3&lt;br /&gt;
    user: rails&lt;br /&gt;
    group: rails&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Add Mongrel as a system service:&lt;br /&gt;
    &lt;p&gt;&lt;font face="Courier New"&gt;cd /etc/init.d&lt;br /&gt;
    sudo ln -s /usr/local/lib/ruby/gems/1.8/gems/mongrel_cluster-0.2.1/resources/mongrel_cluster mongrel_cluster&lt;br /&gt;
    sudo chmod +x mongrel_cluster&lt;br /&gt;
    sudo /sbin/chkconfig --level 345 mongrel_cluster on&lt;br /&gt;
    sudo mkdir /etc/mongrel_cluster&lt;br /&gt;
    sudo ln -s /usr/local/rails/maxwiki/config/mongrel_cluster.yml /etc/mongrel_cluster/maxwiki.yml&lt;/font&gt;&lt;/p&gt;
    &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;(From: &lt;a href="http://blog.codahale.com/2006/06/19/time-for-a-grown-up-server-rails-mongrel-apache-capistrano-and-you/"&gt;Time For A Grown Up Server&lt;/a&gt;)&lt;/p&gt;
&lt;h2&gt;Apache mod_proxy&lt;/h2&gt;
&lt;p&gt;We need to add mod_proxy support to Apache 2.2 since the default doesn't include it.&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;Download and expand &lt;a href="http://httpd.apache.org/download.cgi"&gt;Apache proxy module source&lt;/a&gt;:&lt;br /&gt;
    &lt;font face="Courier New"&gt; cd /usr/local/src&lt;br /&gt;
    wget http://apache.mirror.positive-internet.com/httpd/httpd-2.2.3.tar.gz&lt;br /&gt;
    tar &amp;ndash;xzvf httpd-2.2.3.tar.gz&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Add proxy modules to apache:     &lt;br /&gt;
    &lt;font face="Courier New"&gt;/usr/local/apache2/bin/apxs -i -a -c mod_proxy.c proxy_util.c&lt;br /&gt;
    &lt;/font&gt;&lt;font face="Courier New"&gt;/usr/local/apache2/bin/apxs -i -a -c mod_proxy_balancer.c&lt;br /&gt;
    &lt;/font&gt;&lt;font face="Courier New"&gt;/usr/local/apache2/bin/apxs -i -a -c mod_proxy_http.c&lt;br /&gt;
    &lt;/font&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;(From: &lt;a href="http://www.supersonicfeet.com/2006/09/11/cpanel-apache-22-mod_proxy_balancer-mongrel_cluster-hours-of-frustration-%e2%80%9cahhh-it-works%e2%80%9d"&gt;Apache 2.2 + mod_proxy_balancer&lt;/a&gt;)&lt;/p&gt;
&lt;h2&gt;Apache Virtual Server&lt;/h2&gt;
&lt;ol&gt;
    &lt;li&gt;Change to Apache directory: &lt;font face="Courier New"&gt;cd /usr/local/apache2&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;At bottom of: &lt;font face="Courier New"&gt;conf/httpd.conf&lt;/font&gt;&lt;br /&gt;
    &lt;font face="Courier New"&gt;NameVirtualHost *:80&lt;br /&gt;
    NameVirtualHost *:443&lt;br /&gt;
    Include conf.d/*.conf&amp;nbsp;&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Create file: &lt;font face="Courier New"&gt;conf.d/1_maxwiki.conf&lt;br /&gt;
    &amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
    &amp;nbsp; # This should remain the first virtual host because it will service all hosts&lt;br /&gt;
    &amp;nbsp; # that are not explicitly defined in other VirtualHost sections&lt;br /&gt;
    &amp;nbsp; # Also, we don't need to define any ServerName or ServerAlias &lt;br /&gt;
    &amp;nbsp; DocumentRoot /usr/local/rails/maxwiki/public&lt;br /&gt;
    &amp;nbsp; &amp;lt;Directory &amp;quot;/usr/local/rails/maxwiki/public&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp; Options FollowSymLinks&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp; AllowOverride None&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp; Order allow,deny&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp; Allow from all&lt;br /&gt;
    &amp;nbsp; &amp;lt;/Directory&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;nbsp; # this not only blocks access to .svn directories, but makes it appear&lt;br /&gt;
    &amp;nbsp; # as though they aren't even there, not just that they are forbidden&lt;br /&gt;
    &amp;nbsp; &amp;lt;DirectoryMatch &amp;quot;^/.*/\.svn/&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp; ErrorDocument 403 /404.html&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp; Order allow,deny&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp; Deny from all&lt;br /&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp; Satisfy All&lt;br /&gt;
    &amp;nbsp; &amp;lt;/DirectoryMatch&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;nbsp; # Rewrite to check for Rails cached page&lt;br /&gt;
    &amp;nbsp; # Also for caching, take out :80 if present, and change : to _ &lt;br /&gt;
    &amp;nbsp; RewriteEngine On&lt;br /&gt;
    &amp;nbsp; RewriteRule ^/$ /cache/%{HTTP_HOST}/index.html [QSA] &amp;nbsp;&lt;br /&gt;
    &amp;nbsp; RewriteRule ^/([^.]+)$ /cache/%{HTTP_HOST}/$1.html [QSA]&lt;br /&gt;
    &amp;nbsp; RewriteRule ^(.*):80(.*)$ $1$2 [QSA]&lt;br /&gt;
    &amp;nbsp; RewriteRule ^(.*):(.*)$ $1_$2 [QSA]&lt;br /&gt;
    &lt;br /&gt;
    &amp;nbsp; # Redirect all non-static requests to cluster&lt;br /&gt;
    &amp;nbsp; RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f&lt;br /&gt;
    &amp;nbsp; RewriteRule ^(.*)$ balancer://mongrel_cluster_maxwiki%{REQUEST_URI} [P,QSA,L]&lt;br /&gt;
    &amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;Proxy balancer://mongrel_cluster_maxwiki&amp;gt;&lt;br /&gt;
    &amp;nbsp; BalancerMember http://127.0.0.1:8000&lt;br /&gt;
    &amp;nbsp; BalancerMember http://127.0.0.1:8001&lt;br /&gt;
    &amp;nbsp; BalancerMember http://127.0.0.1:8002&lt;br /&gt;
    &amp;lt;/Proxy&amp;gt;&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Restart http:
    &lt;ul&gt;
        &lt;li&gt;Check syntax:&lt;font face="Courier New"&gt; bin/apachectl -t&lt;/font&gt;&lt;/li&gt;
        &lt;li&gt;Restart:&lt;font face="Courier New"&gt; bin/apachectl restart&lt;/font&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Update Instructions&lt;/h2&gt;
&lt;ol&gt;
    &lt;li&gt;Update the main MaxWiki files. In the MaxWiki Rails root directory:&amp;nbsp; &lt;br /&gt;
    &lt;font face="Courier New"&gt;svn update&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Update the site specific files (if you have Multi-Host). In /RAILS_ROOT/public/files/mysite directory: &lt;br /&gt;
    &lt;font face="Courier New"&gt;svn update&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Update the database: Back in the MaxWiki Rail root directory: &lt;br /&gt;
    &lt;font face="Courier New"&gt;rake db:migrate&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;Restart Mongrel:&lt;font face="Courier New"&gt;&lt;br /&gt;
    mongrel_cluster_ctl restart&lt;/font&gt;&lt;/li&gt;
&lt;/ol&gt;</description>
      <pubDate>Sat, 12 Apr 2008 01:07:45 Z</pubDate>
      <guid>http://www.maxwiki.com/Install</guid>
      <link>http://www.maxwiki.com/Install</link>
    </item>
    <item>
      <title>Google Webmaster Tools</title>
      <description>&lt;p&gt;MaxWiki allows you to send a &lt;span class="caps"&gt;RSS&lt;/span&gt; feed to Google so that your site will be indexed. Here are the steps to do this:&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;Signup for a &lt;a href="http://www.google.com/webmasters/tools/"&gt;Google Webmasters Tools&lt;/a&gt; account&lt;/li&gt;
    &lt;li&gt;Add your site&lt;/li&gt;
    &lt;li&gt;Select Verify -&amp;gt; Add a meta tag&lt;/li&gt;
    &lt;li&gt;Copy (Ctrl-C) the content string. That is, if it shows:       &lt;b&gt;&amp;lt;meta name=&amp;quot;verify-v1&amp;quot; content=&amp;quot;xyzzy&amp;quot; /&amp;gt;&lt;/b&gt;&lt;br /&gt;
    The content string is:      &lt;b&gt;xyzzy&lt;/b&gt;&lt;/li&gt;
    &lt;li&gt;Go to your MaxWiki site, Admin -&amp;gt; Configuration -&amp;gt; Main&lt;/li&gt;
    &lt;li&gt;In the &amp;ldquo;Google Sitemap Verification&amp;rdquo; field, paste (Ctrl-V) the content string and select the Update button&lt;/li&gt;
    &lt;li&gt;Then expire the cache using Admin -&amp;gt; Configuration -&amp;gt; Expire Cache&lt;/li&gt;
    &lt;li&gt;Go back to Google Webmasters Tools and click &amp;ldquo;Verify&amp;rdquo;&lt;/li&gt;
    &lt;li&gt;After it has verified correctly, click on Sitemaps -&amp;gt; Add a Sitemap -&amp;gt; Add General Web Sitemap&lt;/li&gt;
    &lt;li&gt;Enter &amp;ldquo;rss_with_headlines?limit=0&amp;rdquo;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;That is it! Now Google will have a sitemap of your MaxWiki site and this will help Google index it.&lt;/p&gt;</description>
      <pubDate>Fri, 04 Apr 2008 18:03:53 Z</pubDate>
      <guid>http://www.maxwiki.com/Google+Webmaster+Tools</guid>
      <link>http://www.maxwiki.com/Google+Webmaster+Tools</link>
    </item>
    <item>
      <title>Google Analytics</title>
      <description>&lt;p&gt;MaxWiki is already setup to use Google Analytics. All that needs to be done is:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Go to &lt;b&gt;Admin -&amp;gt; Configuration -&amp;gt; Main -&amp;gt; Google Analytics Account &lt;/b&gt;and enter the account number&lt;/li&gt;
    &lt;li&gt;Expire the cache &lt;b&gt;Admin -&amp;gt; Expire Cache&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Now all of your pages will have the Google Analytics code and will be tracked.&lt;/p&gt;</description>
      <pubDate>Mon, 31 Mar 2008 15:45:49 Z</pubDate>
      <guid>http://www.maxwiki.com/Google+Analytics</guid>
      <link>http://www.maxwiki.com/Google+Analytics</link>
    </item>
    <item>
      <title>Blogs</title>
      <description>&lt;h1&gt;Blogs&lt;/h1&gt;
&lt;p&gt;Blogs are a little different from regular pages in that each blog &amp;quot;post&amp;quot; is a separate page and then all the posts are shown on the main blog page.&lt;/p&gt;
&lt;p&gt;To create a blog page, put [ %= blog % ] on it.&lt;/p&gt;
&lt;p&gt;Then create individual pages for each post, selecting &amp;quot;Add title to page? - Blog&amp;quot; and the page name as the Parent Page.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <pubDate>Fri, 28 Mar 2008 14:12:18 Z</pubDate>
      <guid>http://www.maxwiki.com/Blogs</guid>
      <link>http://www.maxwiki.com/Blogs</link>
    </item>
    <item>
      <title>Test</title>
      <description>&lt;h1&gt;Test Page&lt;/h1&gt;
&lt;h2&gt;Heading 2&lt;/h2&gt;
&lt;p&gt;&lt;a href="/Test Page"&gt;Line 1&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.maxwiki.com/_editw/Test?break_lock=1"&gt;line 2&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;line 3&lt;/p&gt;
&lt;p&gt;&lt;small&gt;&lt;a href="/files/attachments/maxwiki/Test/RandClass.java"&gt;RandClass.java&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;
&lt;p&gt;&lt;small&gt;&lt;a href="/files/attachments/maxwiki/Test/RandClass.java" style="color: red;"&gt;&lt;img alt="Icon_file_unknown" src="/images/icon_file_unknown.gif?1166592792" /&gt;&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;
&lt;p&gt;&lt;small&gt;&lt;a href="/files/attachments/maxwiki/Test/image001.jpg" target="_blank"&gt;&lt;img alt="Image001" class="image" src="/files/attachments/maxwiki/Test/image001.jpg?1192821902" /&gt;&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;table style="width: 194px;"&gt;
    &lt;tbody&gt;
        &lt;tr&gt;
            &lt;td align="center" style="background: transparent url(http://picasaweb.google.com/f/img/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;a href="http://picasaweb.google.com/maxdunn2/Test"&gt;&lt;img width="160" height="160" style="margin: 1px 0pt 0pt 4px;" src="http://lh4.google.com/maxdunn2/RvBFuQ4rxiE/AAAAAAAAACU/j40XGX7tKXU/s160-c/Test.jpg" alt="" /&gt;&lt;/a&gt;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;" href="http://picasaweb.google.com/maxdunn2/Test"&gt;Test&lt;/a&gt;&lt;/td&gt;
        &lt;/tr&gt;
    &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.amazon.com/gp/redirect.html%3FASIN=1595550941%26tag=ws%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/1595550941%253FSubscriptionId=0XPTBGCTMB4S1B18QC82" target="_blank"&gt;&lt;img width="86" height="126" border="2" align="left" alt="The Clinton Crack-Up: The Boy President's Life After the White House" src="http://ecx.images-amazon.com/images/I/41-W-nwPE0L.jpg" style="padding: 5px; margin-right: 5px;" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;The Clinton Crack-Up: The Boy President's Life After the White House&lt;/strong&gt;&lt;br /&gt;
&lt;em&gt;by&lt;/em&gt; R. Emmett Tyrrell&lt;/p&gt;</description>
      <pubDate>Fri, 16 Nov 2007 21:29:50 Z</pubDate>
      <guid>http://www.maxwiki.com/Test</guid>
      <link>http://www.maxwiki.com/Test</link>
    </item>
    <item>
      <title>Mailing List Manager Requirements</title>
      <description>&lt;h1&gt;Mailing List Manager Requirements&lt;/h1&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;
&lt;ol&gt;
    &lt;li&gt;Multiple mailing lists&lt;/li&gt;
    &lt;li&gt;Each mailing list may have a different manager&lt;/li&gt;
    &lt;li&gt;Interface to signup and cancel&lt;/li&gt;
    &lt;li&gt;Add links to emails to opt-out&lt;/li&gt;
    &lt;li&gt;Automatically add members&lt;/li&gt;
    &lt;li&gt;Send to a subset of the entire list (e.g. users who haven't paid)&lt;/li&gt;
    &lt;li&gt;Send a message to users who haven't received the message before (e.g. thanks for paying)&lt;/li&gt;
    &lt;li&gt;Ability to add any email address to the list (i.e. someone who is not signed up for MaxWiki or Google)&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Google Groups&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Does #1, #2, #4, #8&lt;/li&gt;
    &lt;li&gt;While it does do #3 on its own, this is not integrated with MaxWiki. Maybe add some Subscribe buttons to the My Accounts page&lt;/li&gt;
    &lt;li&gt;#5 could probably be done through POST (but it might also need screen scraping since the form appears to be protected by a nonce).&lt;/li&gt;
    &lt;li&gt;#6 might be do-able by exporting the list, matching to internal members, applying the filter, and then sending out internally, mimicing the look of the Google Group email. Could also handle by just sending out directly, but then there wouldn't be any opt-out capability. However, then it wouldn't be archived in the Google Group.&lt;/li&gt;
    &lt;li&gt;#7 might be handled by just sending the message directly.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;MaxWiki Mailing List&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Does #1, #5, #6 and #7&lt;/li&gt;
    &lt;li&gt;For #2, need to add a list of managers for each mailing list and easier way to send emails&lt;/li&gt;
    &lt;li&gt;For #3, could add this to the My Account page&lt;/li&gt;
    &lt;li&gt;Need to figure out how to handle #8&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;Use both Google Groups and the MaxWiki mailing list. Google Groups will be the main way we communicate, and we will setup different lists for general, board, managers, teams, etc, while the MaxWiki mailing list will be used for #6 and #7, when we need to mail to a subset of the entire list.&lt;/p&gt;
&lt;p&gt;To make it easier to use Google Groups, we will try to implement buttons on the TriCities site so users can more easily signup to the appropriate Google Group (#3), and also try to automatically add users to the general Google Groups list (#5).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <pubDate>Wed, 14 Nov 2007 23:34:27 Z</pubDate>
      <guid>http://www.maxwiki.com/Mailing+List+Manager+Requirements</guid>
      <link>http://www.maxwiki.com/Mailing+List+Manager+Requirements</link>
    </item>
    <item>
      <title>Sample Themes</title>
      <description>&lt;h1&gt;Sample Themes&lt;/h1&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Apple&lt;/h2&gt;
&lt;p&gt;&lt;small&gt;&lt;a href="/files/attachments/maxwiki/Sample%20Themes/screen-apple.png" target="_blank"&gt;&lt;img width="303" height="235" alt="Screen-apple" class="image" src="/files/attachments/maxwiki/Sample%20Themes/screen-apple.png?1194570704" /&gt;&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Vine and Dine&lt;/h2&gt;
&lt;p&gt;&lt;small&gt;&lt;a target="_blank" href="/files/attachments/maxwiki/Sample%20Themes/screen-vineanddine.png"&gt;&lt;img width="302" height="231" src="/files/attachments/maxwiki/Sample%20Themes/screen-vineanddine.png?1194570617" class="image" alt="Screen-vineanddine" /&gt;&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Little League&lt;/h2&gt;
&lt;p&gt;&lt;a target="_blank" href="/files/attachments/maxwiki/Sample%20Themes/screen-tricities.png"&gt;&lt;img width="300" height="221" src="/files/attachments/maxwiki/Sample%20Themes/screen-tricities.png?1194570607" class="image" alt="Screen-tricities" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;PBCCKids&lt;/h2&gt;
&lt;p&gt;&lt;a href="/files/attachments/maxwiki/Sample%20Themes/screen-pbcckids.png" target="_blank"&gt;&lt;img width="291" height="220" alt="Screen-pbcckids" class="image" src="/files/attachments/maxwiki/Sample%20Themes/screen-pbcckids.png?1194570582" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Ruby on Rails Camp&lt;/h2&gt;
&lt;p&gt;&lt;a href="/files/attachments/maxwiki/Sample%20Themes/screen-rubyonrailscamp.png" target="_blank"&gt;&lt;img width="291" height="203" alt="Screen-rubyonrailscamp" class="image" src="/files/attachments/maxwiki/Sample%20Themes/screen-rubyonrailscamp.png?1194570595" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <pubDate>Fri, 09 Nov 2007 01:18:21 Z</pubDate>
      <guid>http://www.maxwiki.com/Sample+Themes</guid>
      <link>http://www.maxwiki.com/Sample+Themes</link>
    </item>
    <item>
      <title>ChangeLog</title>
      <description>&lt;h1&gt;Change Log&lt;/h1&gt;
&lt;h2&gt;November 8, 2007 (SVN 736)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Change format of Amazon drag-and-drop to a small image that floats left. Also cleaned up some other drag-and-drop issues.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;November 8, 2007 (SVN 735)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Updated to Scriptaculous 1.8 and Prototype 1.6. This fixed a recursion problem with media drag-and-drop.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;November 8, 2007 (SVN 733)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Fixed a bug in FCKEditor 2.5beta that would pop-up a security paste dialog when trying to drag-and-drop from the File Upload plugin&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;November 7, 2007 (SVN 731)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Added the Insert/Edit Image icon in the editor toolbar&lt;/li&gt;
    &lt;li&gt;Took out the paste from Word icon in the editor toolbar&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;November 6, 2007 (SVN 730)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Update FCKEditor to version 2.5beta which supports Safari and Opera&lt;/li&gt;
    &lt;li&gt;Added a page browser and fixed uploads in FCKEditor&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;October 26, 2007 (SVN 728)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Allows comma delimited lists of email address in the configuration &amp;quot;Signups CC&amp;quot; field so signup notifications can go to more than one email address&lt;/li&gt;
    &lt;li&gt;Email forms now use the email address in &amp;quot;Signup CC&amp;quot; rather than &amp;quot;Emails From&amp;quot;&lt;/li&gt;
    &lt;li&gt;Email forms can have a hidden field &amp;quot;email_to&amp;quot; and the form will be emailed to those email addresses.&lt;/li&gt;
    &lt;li&gt;The &amp;quot;email_to&amp;quot; domain must be the same as the domain of an address in &amp;quot;Signups CC&amp;quot; or &amp;quot;Emails From&amp;quot; for security reasons.&lt;/li&gt;
    &lt;li&gt;Note: if using three or more emails in the &amp;quot;email_to&amp;quot; field, separate them with commas and no space like this: &amp;quot;mail1@test.com,mail2@test.com,mail3@test.com&amp;quot;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;October 19, 2007 (SVN 723)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Enhanced file uploads to use Ajax so it stays in edit window during the upload&lt;/li&gt;
    &lt;li&gt;Misc other file upload enhancement&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;October 19, 2007 (SVN 722)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Allow alternate syntax for ERB commands using square brackets [% %] so they are visible in normal edit window&lt;/li&gt;
    &lt;li&gt;Fixed SQL problems in WikiReference that would sometimes produce an exception when looking at a page revision&lt;/li&gt;
    &lt;li&gt;Took out category code that wasn't being used&lt;/li&gt;
    &lt;li&gt;Took out wiki param to WikiReference.link_type and using current_wiki instead&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;October 11, 2007 (SVN 718)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Patched a security hole with file uploads&lt;/li&gt;
    &lt;li&gt;Enhanced file uploads so that the upload directory can be specified in local_environment.rb and doesn't need to be in separate directories for each page&lt;/li&gt;
    &lt;li&gt;When dragging a picture onto the page, it now is shown full size rather than being constrained to 50 pixels&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;October 10, 2007 (SVN 717)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Orphan list is now correct - it only shows pages that can't be reached from the main pages. However for existing sites, it is necessary to convert left_menu to list format (SVN 711) and save any existing _menu or _left pages in order for the orphan list to be updated correctly.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;October 10, 2007 (SVN 716)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Enhanced left_menu so that if a link has an ID, then that will be used in a regular expression for selecting the menu item. For instance, if there is a menu item &amp;quot;Adopted&amp;quot; and page names &amp;quot;Adopted&amp;quot;, &amp;quot;Adopted 1&amp;quot;, &amp;quot;Adopted 2&amp;quot;, then by setting the ID of the menu item to &amp;quot;adopted&amp;quot; (case insensitive) then when any of these pages is shown, the &amp;quot;Adopted&amp;quot; menu item will be selected.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;October 9, 2007 (SVN 715)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Navigation now has separate menu items for All Pages, Orphans and Wanted, and the latter two only appear when the user has at least an Editor role. This makes the All Pages page more suitable for a site-map.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;October 8, 2007 (SVN 712)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Added support for an icon to appear in the browser address bar (favicon). To use this feature place in the site directory (i.e.: /files/maxwiki&amp;quot;) a &amp;quot;favicon.ico&amp;quot;, &amp;quot;favicon.gif&amp;quot;, or a &amp;quot;favicon.png&amp;quot; image (the latter two should be sized 16x16).&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;October 8, 2007 (SVN 711)&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;When saving a page, href or src links that start with &amp;quot;../../&amp;quot; will have this deleted. This is necessary for file uploads on and sometimes when copying-and-pasting HTML.&lt;/li&gt;
    &lt;li&gt;ERB method &amp;quot;left_menu&amp;quot; now deprecated, use list with class &amp;quot;left_menu&amp;quot; instead.&lt;/li&gt;
    &lt;li&gt;Refactored Revision display_content and update_references.&lt;/li&gt;
    &lt;li&gt;Fixed bug that sometimes caused includes to be rendered in Revision and sometimes through the ERB helper.&lt;/li&gt;
    &lt;li&gt;Added current_wiki.current_page_name that gets set to the main page name that is being processed so Revision knows this when processing left_menu lists to select the correct list item&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Instead of:&lt;/p&gt;
&lt;pre&gt;
&lt; %= left_menu 'About Us', 'Team', 'Contact' % &gt;&lt;/pre&gt;
&lt;p&gt;Build a list whose source looks like:&lt;/p&gt;
&lt;pre&gt;&lt;!--- Error in HTML  --&gt;
&lt;ul class="left_menu"&gt;&lt;br /&gt;    &amp;lt;li class=&amp;quot;submenu&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;/About Us&amp;quot;&amp;gt;About Us&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;    &amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;/Team&amp;quot;&amp;gt;Team&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;    &amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;/Contact&amp;quot;&amp;gt;Contact&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;&amp;lt;/ul&amp;gt;&lt;/ul&gt;&lt;/pre&gt;
&lt;p&gt;Note that after creating the list, you will need to add &lt;font face="Courier New"&gt;class=&amp;quot;left_menu&amp;quot; &lt;/font&gt;to the ul tag and add &lt;font face="Courier New"&gt;class=&amp;quot;submenu&amp;quot;&lt;/font&gt; to the first li item.&lt;/p&gt;
&lt;h2&gt;October 5, 2007&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Enhanced the &amp;quot;All Pages&amp;quot; page (/_action/wiki/list) to not show the _left, _right and _menu pages&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;October 4, 2007&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;The FCK link editor now puts in a slash '/' in front of the page name&lt;/li&gt;
    &lt;li&gt;Updated the FCK link editor dialog to show &amp;quot;MaxWiki Page&amp;quot; rather than just &amp;quot;Wiki&amp;quot;&lt;/li&gt;
    &lt;li&gt;Changed the FCK stylesheet to main.css so the styles in the editor window will look better (regression)&lt;/li&gt;
    &lt;li&gt;Added MY_CONFIG[:hide_byline_author_link] config param so author info in the byline will not appear as page links&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;October 3, 2007&lt;/h2&gt;
&lt;ul&gt;
    &lt;li&gt;Any text on the page that looks like an email link will be converted to an encoded mailto link to protect against spam harvesters&lt;/li&gt;
    &lt;li&gt;Existing mailto links will not be converted&lt;/li&gt;
&lt;/ul&gt;</description>
      <pubDate>Thu, 08 Nov 2007 22:00:57 Z</pubDate>
      <guid>http://www.maxwiki.com/ChangeLog</guid>
      <link>http://www.maxwiki.com/ChangeLog</link>
    </item>
    <item>
      <title>Test_Form</title>
      <description>&lt;h1&gt;Test Form&lt;/h1&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;form action="/_action/mail_form/send_form" method="post"&gt;
    &lt;input type="hidden" value="info@maxwiki.com,maxdunn@pacbell.net" name="email_to" /&gt;
    &lt;table width="100%" cellspacing="0" cellpadding="5" border="0" id="table4"&gt;
        &lt;tbody&gt;
            &lt;tr&gt;
                &lt;td bgcolor="#9999cc" align="left" colspan="2"&gt;&lt;span class="white_bold"&gt;Your information&lt;/span&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
                &lt;td width="50%" align="right"&gt;&lt;br /&gt;
                Name:&lt;/td&gt;
                &lt;td width="50%"&gt;&lt;br /&gt;
                &lt;input type="text" size="30" name="010 Name" /&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
                &lt;td width="50%" align="right"&gt;&lt;br /&gt;
                Address:&lt;/td&gt;
                &lt;td width="50%"&gt;&lt;br /&gt;
                &lt;input type="text" size="30" name="020 Address" /&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
                &lt;td width="50%" align="center" colspan="2"&gt;&lt;br /&gt;
                &lt;input type="submit" name="submit" value="Send Application" /&gt;&amp;nbsp;&lt;input type="reset" name="reset" value="Clear Form" /&gt;
                &lt;p&gt;&amp;nbsp;&lt;/p&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/tbody&gt;
    &lt;/table&gt;
&lt;/form&gt;</description>
      <pubDate>Tue, 30 Oct 2007 17:24:49 Z</pubDate>
      <guid>http://www.maxwiki.com/Test_Form</guid>
      <link>http://www.maxwiki.com/Test_Form</link>
    </item>
    <item>
      <title>Editing Emails</title>
      <description>&lt;h1&gt;Email Addresses&lt;/h1&gt;
&lt;p&gt;In order to fool the &amp;ldquo;spam bots&amp;rdquo; that look on web sites for email addresses, MaxWiki automatically detects email addresses on a page and encodes them. However, if it doesn't recognize the email address (usually because there are characters before or after it), you can encode the email manually by going into Source mode and using:&lt;/p&gt;
&lt;pre&gt;&amp;lt;%= email('info@maxiwiki.com') %&amp;gt;&lt;/pre&gt;
&lt;p&gt;This produces a link like this: &lt;%= email('info@maxiwiki.com') %&gt;&lt;/p&gt;
&lt;p&gt;This link works fine, but it is encoded to fool the spam bots.&lt;/p&gt;</description>
      <pubDate>Sat, 20 Oct 2007 16:36:46 Z</pubDate>
      <guid>http://www.maxwiki.com/Editing+Emails</guid>
      <link>http://www.maxwiki.com/Editing+Emails</link>
    </item>
    <item>
      <title>Products</title>
      <description>&lt;h1&gt;&lt;font size="4" face="Comic Sans MS"&gt;Our Products and Services&lt;/font&gt;&lt;/h1&gt;
&lt;h3&gt;&lt;font size="3" face="Comic Sans MS"&gt;OpenMaxWiki&lt;/font&gt;&lt;/h3&gt;
&lt;p&gt;OpenMaxWiki is a RoR based wiki that MaxWiki Software has created and submitted to the open source community for use, critique, and enhancement.  MaxWiki is a cross between a content management system and a wiki. It has wiki style edit links on every page, but it looks like a real web site and can be skinned for a different look-and-feel. In addition, Rails components can be included on any wiki page so that a page can include things like a registrant list, event scheduler, Google map, etc, in addition to normal wiki text. It also includes advanced page caching that works with all roles.&lt;/p&gt;
&lt;p&gt;The code bundle is available from RubyForge:&lt;/p&gt;
&lt;p style="padding-left: 2em;"&gt;&lt;a href="http://rubyforge.org/projects/maxwiki"&gt;OpenMaxWiki&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This free version of MaxWiki is supported through the open source community. And, of course, that includes MaxWiki Software. If you run across something we should know about (good or not so good), please send us an email at &lt;%= email 'info@maxwiki.com' %&gt;.  If we can, we&amp;rsquo;ll respond (because we&amp;rsquo;re &amp;ldquo;pedal to the metal&amp;rdquo; right now building in new features for Version 2.0 of our commercial offering due for release in Spring 2007, we might not get back to you immediately).&lt;/p&gt;
&lt;h3&gt;&lt;font size="3" face="Comic Sans MS"&gt;EnterpriseMaxWiki&lt;/font&gt;&lt;/h3&gt;
&lt;p&gt;Building on its&amp;rsquo; open source counterpart, EnterpriseMaxWiki offers enhanced features for integrating into commercial infrastructures.  Designed to support a plug-in architecture, EnterpriseMaxWiki, includes plug-ins (Rails components) for YouTube, Flickr, DaveTV, Amazon, iTunes, and the Xythos Enterprise Document Manager.  In particular, the current version  of EnterpriseMaxWiki supports dynamic linking to office type documents stored on PC file systems and the Xythos Enterprise Document Manager application.&lt;/p&gt;
&lt;p&gt;Using webDAV as the open-standards based, linking protocol, EnterpriseMaxWiki allows content authors the flexibility to create content using familiar tools like MS Word, Powerpoint and Excel, then publish to EnterpriseMaxWiki.  Changes made to the source documents are automatically reflected on the published web-page.&lt;/p&gt;
&lt;p&gt;Standard technical support is available during normal business hours.&lt;/p&gt;
&lt;h3&gt;&lt;font size="3" face="Comic Sans MS"&gt;Services&lt;/font&gt;&lt;/h3&gt;
&lt;p&gt;MaxWiki Software Professional Services offers the following:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Implementation Services&lt;/li&gt;
    &lt;li&gt;Customization Services including:
    &lt;ul&gt;
        &lt;li&gt;AD / &lt;span class="caps"&gt;LDAP&lt;/span&gt; integration&lt;/li&gt;
        &lt;li&gt;Portlet building and integration&lt;/li&gt;
        &lt;li&gt;Template Design and Building&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/li&gt;
    &lt;li&gt;Training&lt;/li&gt;
    &lt;li&gt;RoR Application Building&lt;/li&gt;
&lt;/ul&gt;</description>
      <pubDate>Wed, 03 Oct 2007 23:34:12 Z</pubDate>
      <guid>http://www.maxwiki.com/Products</guid>
      <link>http://www.maxwiki.com/Products</link>
    </item>
    <item>
      <title>Contact Us</title>
      <description>&lt;h1&gt;Contact Us&lt;/h1&gt;
&lt;p&gt;Stay tuned!  We&amp;rsquo;re moving into our new offices soon.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In the meantime&amp;hellip;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For information about MaxWiki products and services:&lt;/p&gt;
&lt;p style="padding-left: 2em;"&gt;email:  &lt;%= email 'sales@MaxWiki.com' %&gt;&lt;/p&gt;
&lt;p style="padding-left: 2em;"&gt;or call: 1.408.569.9185&lt;/p&gt;</description>
      <pubDate>Wed, 03 Oct 2007 23:23:31 Z</pubDate>
      <guid>http://www.maxwiki.com/Contact+Us</guid>
      <link>http://www.maxwiki.com/Contact+Us</link>
    </item>
    <item>
      <title>Drag-and-Drop Results</title>
      <description>&lt;h1&gt;Drag-and-Drop Results&lt;/h1&gt;
&lt;p&gt;&lt;br /&gt;
&lt;table cellspacing="1" cellpadding="1" border="1"&gt;
    &lt;tbody&gt;
        &lt;tr&gt;
            &lt;td&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td&gt;&lt;strong&gt;Flickr Drag&lt;/strong&gt;&lt;/td&gt;
            &lt;td&gt;&lt;strong&gt;Flickr Dbl-Click&lt;/strong&gt;&lt;/td&gt;
            &lt;td&gt;&lt;strong&gt;File Drag&lt;/strong&gt;&lt;/td&gt;
            &lt;td&gt;&lt;strong&gt;File Dbl-Click&lt;/strong&gt;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;strong&gt;&amp;nbsp;FireFox: WYSIWYG (Mac)&lt;/strong&gt;&lt;/td&gt;
            &lt;td align="center"&gt;Flaky&lt;sup&gt;5&lt;/sup&gt;&lt;/td&gt;
            &lt;td align="center"&gt;Yes&lt;sup&gt;2&lt;/sup&gt;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;Yes&lt;sup&gt;1, 3,4&lt;/sup&gt;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;No&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;strong&gt;&amp;nbsp;Safari: Textile&lt;br /&gt;
            &lt;/strong&gt;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;Flaky&lt;sup&gt;5,6&lt;/sup&gt;&lt;/td&gt;
            &lt;td align="center"&gt;No&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;Yes&lt;sup&gt;1,6&lt;/sup&gt;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;No&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
            &lt;td align="center"&gt;&amp;nbsp;&lt;/td&gt;
        &lt;/tr&gt;
    &lt;/tbody&gt;
&lt;/table&gt;
&lt;/p&gt;
&lt;p&gt;Notes:&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;When dragging you can move the cursor position to where you want to place it&lt;/li&gt;
    &lt;li&gt;Always places it at the end of the text&lt;/li&gt;
    &lt;li&gt;The placed image is small, and you need to resize it for true size&lt;/li&gt;
    &lt;li&gt;The resulting link prepends ../..&lt;/li&gt;
    &lt;li&gt;The first one works, subsequent ones do an image drag-and-drop like 1,2&lt;/li&gt;
    &lt;li&gt;&amp;nbsp;Places a link to the image, not the image itself&lt;/li&gt;
&lt;/ol&gt;</description>
      <pubDate>Tue, 02 Oct 2007 22:23:17 Z</pubDate>
      <guid>http://www.maxwiki.com/Drag-and-Drop+Results</guid>
      <link>http://www.maxwiki.com/Drag-and-Drop+Results</link>
    </item>
  </channel>
</rss>
