<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<feed xmlns="http://www.w3.org/2005/Atom">

	<title>Planet Docunext</title>
	<link rel="self" href="atom.xml"/>
	<link href="Planet Docunext"/>
	<id>atom.xml</id>
	<updated>2010-09-03T20:10:53+00:00</updated>
	<generator uri="http://www.planetplanet.org/">Planet/2.0 +http://www.planetplanet.org</generator>

	<entry>
		<title type="html">Recently Used Documents in Ubuntu Gnome, OpenOffice Margins, and Printing from the Command Line</title>
		<link href="http://feedproxy.google.com/~r/Docunext/~3/EFOsTsQMlYs/recently-used-documents-in-ubuntu-gnome-openoffice-margins-and-printing-from-the-command-line.html"/>
		<id>tag:www.docunext.com,2010://250.21298</id>
		<updated>2010-08-30T19:54:21+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;&lt;span class=&quot;mt-enclosure mt-enclosure-image&quot;&gt; &lt;img alt=&quot;Gnome Logo&quot; src=&quot;http://www-01.evenserver.com/s/mt/2010/q3/GnomeBrandBook-LogoMark.png&quot; width=&quot;100&quot; height=&quot;122&quot; class=&quot;mt-image-none flrt&quot; /&gt; &lt;/span&gt;&lt;/p&gt;

&lt;h2&gt;Recently Used Documents in Ubuntu Gnome&lt;/h2&gt;

&lt;p&gt;I don't like having my recently used documents get saved across Gnome. I prefer to set individual application preferences. For instance, in jEdit I like to record up to 80 recent documents.&lt;/p&gt;

&lt;p&gt;Its a bit tricky to do this, and to be safe I'm using two different methods:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Making ~/.recently-used.xbel not modifiable&lt;/li&gt;
&lt;/ul&gt;

&lt;pre class=&quot;sh_sh&quot;&gt;
rm ~/.recently-used.xbel
touch ~/.recently-used.xbel
sudo chattr +i ~/.recently-used.xbel
&lt;/pre&gt;

&lt;ul&gt;
&lt;li&gt;Setting GTK preferences in ~/.gtkrc-2.0&lt;/li&gt;
&lt;/ul&gt;

&lt;pre class=&quot;sh_sh&quot;&gt;
gtk-recent-files-max-age=0
gtk-recent-files-limit=0
&lt;/pre&gt;

&lt;p&gt;&lt;span class=&quot;mt-enclosure mt-enclosure-image&quot;&gt;&lt;img alt=&quot;OpenOffice Logo&quot; src=&quot;http://www.docunext.com/s/img/2010/08/openoffice-logo-thumb-60x37-103802.png&quot; width=&quot;60&quot; height=&quot;37&quot; class=&quot;mt-image-none flrt&quot; /&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2&gt;OpenOffice Page Margins&lt;/h2&gt;

&lt;p&gt;Took me forever to find the page margin settings in OpenOffice. Hope it helps others, but I know I'll come back here to remember!&lt;/p&gt;

&lt;p&gt;Its not in any print dialogs, its under Format-&gt;Page. Easy as pie, once I found it!&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;mt-enclosure mt-enclosure-image&quot;&gt;&lt;img alt=&quot;Ghostscript&quot; src=&quot;http://www.docunext.com/s/img/2010/08/246px-Ghostscript.svg-thumb-60x62-103804.png&quot; width=&quot;60&quot; height=&quot;62&quot; class=&quot;mt-image-none flrt&quot; /&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2&gt;Printing from the Command Line&lt;/h2&gt;

&lt;p&gt;Since I use a laptop (&lt;a href=&quot;http://www.my-tech-deals.com/blog/2010/08/review-of-the-lenovo-g555.html&quot;&gt;Lenovo g555&lt;/a&gt;), I'm not always connected to a printer. I wanted to print my documents to a PDF, then batch print them later. Rather than manually opening up the PDFs and then printing each one, I figured it could be done via the command line shell, in my case - bash.&lt;/p&gt;

&lt;p&gt;Thanks to &lt;a href=&quot;http://tkjacobsen.wordpress.com/2008/04/25/print-pdf-files-from-bash/&quot; rel=&quot;nofollow&quot;&gt;tkjacobsen&lt;/a&gt;, I'm trying out this function:&lt;/p&gt;

&lt;pre class=&quot;sh_sh&quot;&gt;
function printpdf ()
{
for i in $@; do
if [ &quot;$1&quot; != &quot;$i&quot; ]; then
dt=`date +%y%m%d%H%M%S`
pdftops $i temp-print${dt}.ps
lpr -P $1 temp-print${dt}.ps
rm temp-print${dt}.ps
fi
done
}
&lt;/pre&gt;

&lt;p&gt;I haven't tried it, but I'm about to!&lt;/p&gt;

        

    
&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/kvg4z-puQbHJPpUw1cJzLgwCiMo/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/kvg4z-puQbHJPpUw1cJzLgwCiMo/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/kvg4z-puQbHJPpUw1cJzLgwCiMo/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/kvg4z-puQbHJPpUw1cJzLgwCiMo/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Docunext/~4/EFOsTsQMlYs&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Albert</name>
			<uri>http://www.docunext.com/</uri>
		</author>
		<source>
			<title type="html">DOCUNEXT</title>
			<subtitle type="html">Open Source Mirrors, Wiki, Labs.</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/Docunext"/>
			<id>tag:www.docunext.com,2008-09-16://250</id>
			<updated>2010-08-30T20:10:09+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Copy and Paste from jEdit to Gnome Terminal *RESOLVED*</title>
		<link href="http://feedproxy.google.com/~r/Docunext/~3/f774X1UJtP4/copy-and-paste-from-jedit-to-gnome-terminal-resolved.html"/>
		<id>tag:www.docunext.com,2010://250.21284</id>
		<updated>2010-08-29T21:51:05+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;On a recent install of Lucid Lynx Ubuntu version 10.4, &lt;strong&gt;I was unable to copy and paste from jEdit to Gnome Terminal&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I found &lt;a href=&quot;http://baroque.posterous.com/19170112&quot;&gt;this&lt;/a&gt; web page that explained how installing the Sun JRE fixed it:&lt;/p&gt;

&lt;pre class=&quot;sh_sh&quot;&gt;
sudo apt-get install sun-java6-jdk
&lt;/pre&gt;

&lt;p&gt;But Lucid Lynx doesn't have the Sun JRE! Thankfully, &lt;a href=&quot;https://wiki.ubuntu.com/LucidLynx/ReleaseNotes&quot;&gt;this&lt;/a&gt; page explains that it is available in the partner repository, and how to add it:&lt;/p&gt;

&lt;pre class=&quot;sh_sh&quot;&gt;
sudo add-apt-repository &quot;deb http://archive.canonical.com/ lucid partner&quot;
&lt;/pre&gt;

&lt;p&gt;After I got that installed, I was still having problems, apparently because I'm using the Awesome window manager. The awesome &lt;a href=&quot;http://awesome.naquadah.org/wiki/Problems_with_Java&quot;&gt;wiki&lt;/a&gt; has a fix that worked for me, putting this at the top of /usr/bin/jedit:&lt;/p&gt;

&lt;pre class=&quot;sh_sh&quot;&gt;
wmname LG3D
&lt;/pre&gt;

&lt;p&gt;Alas, this causes problems with search and replace! I decided to switch back to the OpenJDK packages and switch to lxterminal.&lt;/p&gt;

&lt;p&gt;Funny, lxterminal started getting kind of sluggish for me, so I installed Xfce4-terminal and it rocks! So it's not so much a resolution but a workaround.&lt;/p&gt;

&lt;pre class=&quot;sh_sh&quot;&gt;
sudo apt-get install xfce4-terminal
sudo update-alternatives --config x-terminal-emulator
&lt;/pre&gt;

        

    
&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/ZOi3TFEOp2AzO53xSrEjDvkwIEY/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/ZOi3TFEOp2AzO53xSrEjDvkwIEY/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/ZOi3TFEOp2AzO53xSrEjDvkwIEY/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/ZOi3TFEOp2AzO53xSrEjDvkwIEY/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Docunext/~4/f774X1UJtP4&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Albert</name>
			<uri>http://www.docunext.com/</uri>
		</author>
		<source>
			<title type="html">DOCUNEXT</title>
			<subtitle type="html">Open Source Mirrors, Wiki, Labs.</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/Docunext"/>
			<id>tag:www.docunext.com,2008-09-16://250</id>
			<updated>2010-08-30T20:10:09+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Command Line Interface</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Command_Line_Interface&amp;diff=10904&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Command_Line_Interface&amp;diff=10904&amp;oldid=prev</id>
		<updated>2010-08-29T21:48:03+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Terminal Emulators:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 21:48, 29 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 33:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 33:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Xterm]]&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Xfce4-terminal&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;* [[Termit&lt;/del&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Terminator]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Terminator]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Lxterminal]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Lxterminal]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">XFCE4</title>
		<link href="http://www.docunext.com/wiki/index.php?title=XFCE4&amp;diff=10903&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=XFCE4&amp;diff=10903&amp;oldid=prev</id>
		<updated>2010-08-29T21:47:44+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;See Also:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 21:47, 29 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[GNOME]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[GNOME]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[KDE]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[KDE]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Xfce4-terminal]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Xfce4</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Xfce4&amp;diff=10902&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Xfce4&amp;diff=10902&amp;oldid=prev</id>
		<updated>2010-08-29T21:46:35+00:00</updated>
		<content type="html">&lt;p&gt;Redirected page to &lt;a href=&quot;http://www.docunext.com/wiki/XFCE4&quot; title=&quot;XFCE4&quot;&gt;XFCE4&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;#REDIRECT [[XFCE4]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Xfce4-terminal</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Xfce4-terminal&amp;diff=10901&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Xfce4-terminal&amp;diff=10901&amp;oldid=prev</id>
		<updated>2010-08-29T21:46:01+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'This is the default &lt;a href=&quot;http://www.docunext.com/wiki/Terminal&quot; class=&quot;mw-redirect&quot; title=&quot;Terminal&quot;&gt;terminal&lt;/a&gt; for &lt;a href=&quot;http://www.docunext.com/wiki/Xfce4&quot; class=&quot;mw-redirect&quot; title=&quot;Xfce4&quot;&gt;Xfce4&lt;/a&gt;.    &lt;a href=&quot;http://www.docunext.com/wiki/Category:Command_Line&quot; title=&quot;Category:Command Line&quot;&gt;Category: Command Line&lt;/a&gt;'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;This is the default [[terminal]] for [[Xfce4]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Command Line]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Lxterminal</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Lxterminal&amp;diff=10900&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Lxterminal&amp;diff=10900&amp;oldid=prev</id>
		<updated>2010-08-29T21:45:11+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 21:45, 29 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;This is the terminal program I use. It has tabs, copy and paste, and works great with [[Awesome]].&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;This is the terminal program I use. It has tabs, copy and paste, and works great with [[Awesome]].&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;Actually, when I'm running [[Awesome]] right on top of [[Gnome]], [[xfce4-terminal]] is faster and more responsive for me.&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Command Line]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Command Line]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Command Line Interface</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Command_Line_Interface&amp;diff=10899&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Command_Line_Interface&amp;diff=10899&amp;oldid=prev</id>
		<updated>2010-08-29T21:43:10+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Terminal Emulators:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 21:43, 29 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 27:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 27:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Terminal Emulators ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Terminal Emulators ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;The default terminal emulator can be selected in [[Debian]] using: &lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&amp;lt;pre class=&amp;quot;sh_sh&amp;quot;&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;update-alternatives --config x-terminal-emulator&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&amp;lt;/pre&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Xterm]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Xterm]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Termit]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Termit]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Terminator</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Terminator&amp;diff=10898&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Terminator&amp;diff=10898&amp;oldid=prev</id>
		<updated>2010-08-29T21:34:22+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'Terminator is nice, but the tabs are a little kludgy in my opinion.     &lt;a href=&quot;http://www.docunext.com/wiki/Category:Command_Line&quot; title=&quot;Category:Command Line&quot;&gt;Category: Command Line&lt;/a&gt;'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Terminator is nice, but the tabs are a little kludgy in my opinion.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Command Line]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Gnome-terminal</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Gnome-terminal&amp;diff=10897&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Gnome-terminal&amp;diff=10897&amp;oldid=prev</id>
		<updated>2010-08-29T21:32:47+00:00</updated>
		<content type="html">&lt;p&gt;Created page with '&lt;a href=&quot;http://www.docunext.com/wiki/Gnome&quot; class=&quot;mw-redirect&quot; title=&quot;Gnome&quot;&gt;Gnome&lt;/a&gt; terminal is very nice, but its not working with &lt;a href=&quot;http://www.docunext.com/wiki/JEdit&quot; class=&quot;mw-redirect&quot; title=&quot;JEdit&quot;&gt;JEdit&lt;/a&gt; for me.  == Links == * [http://www.docunext.com/blog/2010/08/copy-and-paste-from-jedit-to-gnome-terminal-resol...'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[Gnome]] terminal is very nice, but its not working with [[JEdit]] for me.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://www.docunext.com/blog/2010/08/copy-and-paste-from-jedit-to-gnome-terminal-resolved.html Copy and Paste from jEdit to Gnome Terminal *RESOLVED*]&lt;br /&gt;
&lt;br /&gt;
[[Category: Command Line]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">TCP/IP</title>
		<link href="http://www.docunext.com/wiki/index.php?title=TCP/IP&amp;diff=10896&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=TCP/IP&amp;diff=10896&amp;oldid=prev</id>
		<updated>2010-08-29T06:47:16+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 06:47, 29 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Internet Protocol Stuff ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;[[&lt;/ins&gt;Internet&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;]] &lt;/ins&gt;Protocol Stuff ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[IANA Port Numbers]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[IANA Port Numbers]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[TCP Performance Tuning]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[TCP Performance Tuning]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 5:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 5:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[IPv6]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[IPv6]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[UDP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[UDP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[MTU]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[MTU]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Networking]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Networking]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">GD over FastCGI Examples 8</title>
		<link href="http://www.docunext.com/wiki/index.php?title=GD_over_FastCGI_Examples_8&amp;diff=10895&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=GD_over_FastCGI_Examples_8&amp;diff=10895&amp;oldid=prev</id>
		<updated>2010-08-29T05:49:24+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;
&lt;a href=&quot;http://www.docunext.com/wiki/index.php?title=GD_over_FastCGI_Examples_8&amp;diff=10895&amp;oldid=10302&quot;&gt;Show changes&lt;/a&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">NFS</title>
		<link href="http://www.docunext.com/wiki/index.php?title=NFS&amp;diff=10894&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=NFS&amp;diff=10894&amp;oldid=prev</id>
		<updated>2010-08-29T02:12:21+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Debugging NFS:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 02:12, 29 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 23:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 23:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;calls&amp;nbsp; &amp;nbsp; &amp;nbsp; retrans&amp;nbsp; &amp;nbsp; authrefrsh&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;calls&amp;nbsp; &amp;nbsp; &amp;nbsp; retrans&amp;nbsp; &amp;nbsp; authrefrsh&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&amp;lt;/pre&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;=== Get a List of all NFS Clients ===&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&amp;lt;pre class=&amp;quot;sh_sh&amp;quot;&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;cat /var/lib/nfs/rmtab&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">BIND</title>
		<link href="http://www.docunext.com/wiki/index.php?title=BIND&amp;diff=10893&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=BIND&amp;diff=10893&amp;oldid=prev</id>
		<updated>2010-08-29T02:10:57+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Logging:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 02:10, 29 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 90:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 90:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; channel simple_log {&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; channel simple_log {&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; file &amp;quot;/var/log/named/bind.log&amp;quot; versions 3 size 5m;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; file &amp;quot;/var/log/named/bind.log&amp;quot; versions 3 size 5m;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; severity &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;warning&lt;/del&gt;;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; severity &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;critical&lt;/ins&gt;;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; print-time yes;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; print-time yes;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; print-severity yes;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; print-severity yes;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 101:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 101:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;I put that into the /etc/bind/named.conf.options file, after the options section.&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Alternatives ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Alternatives ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Website Traffic Monitoring Tools</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Website_Traffic_Monitoring_Tools&amp;diff=10892&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Website_Traffic_Monitoring_Tools&amp;diff=10892&amp;oldid=prev</id>
		<updated>2010-08-29T01:01:13+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:01, 29 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;As I say enough times in this wiki, I use [[Apache]], and it comes with some basic logging features. It does leave some to be desired, so I also use Google Analytics, which used to be called Urchin. &amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;As I say enough times in this wiki, I use [[Apache]], and it comes with some basic logging features. It does leave some to be desired, so I also use Google Analytics, which used to be called Urchin. &amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;To analyze my Apache logs, I use [[AWStats]]. Its a [[perl]] script and is pretty good. If you have a bunch of domains, you can either split them into separate log files while they are being collected, which in my experience has actually been pretty tough, or after, which I've never tried. Nowadays I just review the grand total, just so I can get idea of the activity on the server. For individual domains, I use Google Analytics. &amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;To analyze my Apache logs, I use [[AWStats]]. Its a [[perl]] script and is pretty good. If you have a bunch of domains, you can either split them into separate log files while they are being collected, which in my experience has actually been pretty tough, or after, which I've never tried. Nowadays I just review the grand total, just so I can get idea of the activity on the server.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;For individual domains, I use Google Analytics. &amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;== Links ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del&gt;These other options look good too: &lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://wiki.openwebanalytics.com/index.php?title=Main_Page&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://wiki.openwebanalytics.com/index.php?title=Main_Page&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://wettone.com/code/slimstat&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://wettone.com/code/slimstat&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.phpopentracker.de/&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.phpopentracker.de/&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: Web Development]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">AWStats</title>
		<link href="http://www.docunext.com/wiki/index.php?title=AWStats&amp;diff=10891&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=AWStats&amp;diff=10891&amp;oldid=prev</id>
		<updated>2010-08-29T00:53:53+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;See Also:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 00:53, 29 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Web Servers]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Web Servers]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Logs&lt;/del&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Logging&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Logs</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Logs&amp;diff=10890&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Logs&amp;diff=10890&amp;oldid=prev</id>
		<updated>2010-08-29T00:53:45+00:00</updated>
		<content type="html">&lt;p&gt;Redirected page to &lt;a href=&quot;http://www.docunext.com/wiki/Logging&quot; title=&quot;Logging&quot;&gt;Logging&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;#REDIRECT [[Logging]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">AWStats</title>
		<link href="http://www.docunext.com/wiki/index.php?title=AWStats&amp;diff=10889&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=AWStats&amp;diff=10889&amp;oldid=prev</id>
		<updated>2010-08-29T00:53:29+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 00:53, 29 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(One intermediate revision not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;AWStats is an open source program which can create reports from web traffic logs. &amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;AWStats is an open source program which can create reports from web traffic &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;[[&lt;/ins&gt;logs&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;]]&lt;/ins&gt;. &amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del&gt;[http://www.docunext.com/blog/2008/04/11/setting-up-awstats-on-debian/ Setting up AWStats on Debian]&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== See Also ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Web Servers]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Logs]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Perl]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;== Links ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;* [http://www.docunext.com/blog/2008/04/setting-up-awstats-on-debian.html Setting up AWStats on Debian]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Perl]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Wine</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Wine&amp;diff=10887&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Wine&amp;diff=10887&amp;oldid=prev</id>
		<updated>2010-08-28T22:50:35+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'Wine is a set of libraries designed to allow software designed for &lt;a href=&quot;http://www.docunext.com/wiki/Windows&quot; title=&quot;Windows&quot;&gt;Windows&lt;/a&gt; to run on &lt;a href=&quot;http://www.docunext.com/wiki/Linux&quot; class=&quot;mw-redirect&quot; title=&quot;Linux&quot;&gt;Linux&lt;/a&gt; and open source operating systems.    &lt;a href=&quot;http://www.docunext.com/wiki/Category:Windows&quot; title=&quot;Category:Windows&quot;&gt;Category: Windows&lt;/a&gt;'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Wine is a set of libraries designed to allow software designed for [[Windows]] to run on [[Linux]] and open source operating systems.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Windows]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Awesome</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Awesome&amp;diff=10886&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Awesome&amp;diff=10886&amp;oldid=prev</id>
		<updated>2010-08-28T22:49:34+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 22:49, 28 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;I'm starting with version 3 which uses the rc.lua configuration script. There seems to be some significant differences between versions. For example, I'm trying to get an xterm window instance to be sticky, i.e. - appear on all workspaces / a member of each tag. I got it to work on my desktop, which is running the squeeze version of Awesome, but can't get it to work on my laptop which is running the sid version of awesome. Doh!&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;I'm starting with version 3 which uses the rc.lua configuration script. There seems to be some significant differences between versions. For example, I'm trying to get an xterm window instance to be sticky, i.e. - appear on all workspaces / a member of each tag. I got it to work on my desktop, which is running the squeeze version of Awesome, but can't get it to work on my laptop which is running the sid version of awesome. Doh!&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Customizing the Default Theme ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;== Awesome Tips and Tricks ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;=&lt;/ins&gt;== Customizing the Default Theme &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;=&lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;I wanted to change the wallpaper background, so this is what I did:&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;I wanted to change the wallpaper background, so this is what I did:&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 23:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 24:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== AwesomeWM Tags ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;When using Awesome right on top of a [[Gnome]] installation, I had to set the background via the preferences panel.&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;=&lt;/ins&gt;== AwesomeWM Tags &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;=&lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;Tags are like workspaces, but better.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;Tags are like workspaces, but better.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== AwesomeWM Haggling ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;=&lt;/ins&gt;== AwesomeWM Haggling &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;=&lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;pre class=&amp;quot;bash&amp;quot;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;pre class=&amp;quot;bash&amp;quot;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;xprop | grep WM_&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;xprop | grep WM_&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== AwesomeWM + [[Gimp]] ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;=&lt;/ins&gt;== AwesomeWM + [[Gimp]] &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;=&lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;This was bugging me... I set gimp to be floating, and then set floating windows to have a titlebar. This worked, but only for the main window. This was caused by [[gimp]], not awesome. Edit -&amp;gt; Preferences -&amp;gt; Window Management -&amp;gt; Hint for...&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;This was bugging me... I set gimp to be floating, and then set floating windows to have a titlebar. This worked, but only for the main window. This was caused by [[gimp]], not awesome. Edit -&amp;gt; Preferences -&amp;gt; Window Management -&amp;gt; Hint for...&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Awesome Libraries ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;=&lt;/ins&gt;== Awesome Libraries &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;=&lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;I've finally figured out some stuff thanks to the helpful works of http://sysphere.org/~anrxc/. When trying to get viscous setup, I finally got invaders to work!&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;I've finally figured out some stuff thanks to the helpful works of http://sysphere.org/~anrxc/. When trying to get viscous setup, I finally got invaders to work!&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;=== Awesome and [[Java]] or [[Wine]] ===&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;==== Can't Un-minimize windows ====&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;Much to be said about this! I ran into a similar as the one described [http://comments.gmane.org/gmane.comp.window-managers.awesome/5692 here], but for [[JEdit]], actually all windows. Installing and using [[wmcrtl]] to issue:&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&amp;lt;pre&amp;gt;wmctrl -R clientname&amp;lt;/pre&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;After that, I commented out the minimize code:&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&amp;lt;pre&amp;gt;--&amp;nbsp; &amp;nbsp; awful.key({ modkey,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  }, &amp;quot;n&amp;quot;,&amp;nbsp; &amp;nbsp; &amp;nbsp; function (c) c.minimized = not c.minimized&amp;nbsp; &amp;nbsp; end),&amp;lt;/pre&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 41:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 54:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Window Managers]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Window Managers]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;External &lt;/del&gt;Links ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;* http://www.docunext.com/blog/2010/08/copy-and-paste-from-jedit-to-gnome-terminal-resolved.html&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.docunext.com/blog/2009/07/learning-about-the-awesome-window-manager-wm.html&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.docunext.com/blog/2009/07/learning-about-the-awesome-window-manager-wm.html&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.informedcomputing.com/blog/2009/07/awesomewm-sticky-windows-solved.html&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.informedcomputing.com/blog/2009/07/awesomewm-sticky-windows-solved.html&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-US">
		<title type="html">docunext pushed to master at docunext/movable-type-plugin-bob</title>
		<link href="http://github.com/docunext/movable-type-plugin-bob/compare/3e20a1c31b...9484e8743f"/>
		<id>tag:github.com,2008:PushEvent/293420605</id>
		<updated>2010-08-28T22:10:15+00:00</updated>
		<content type="html">&lt;div class=&quot;details&quot;&gt;
  

  
    &lt;div class=&quot;commits&quot;&gt;
    &lt;ul&gt;
    
      
      &lt;li&gt;
        
          &lt;a href=&quot;http://github.com/docunext&quot; class=&quot;committer&quot;&gt;docunext&lt;/a&gt;
        
        committed
        &lt;code&gt;&lt;a href=&quot;http://github.com/docunext/movable-type-plugin-bob/commit/9484e8743f661f020c43eaa716b97f6e1c9c3bc6&quot;&gt;9484e87&lt;/a&gt;&lt;/code&gt;

        &lt;div class=&quot;message&quot;&gt;
          &lt;blockquote&gt;added link to blog entries&lt;/blockquote&gt;
        &lt;/div&gt;
      &lt;/li&gt;
    

    
    &lt;/ul&gt;
    &lt;/div&gt;
  
&lt;/div&gt;</content>
		<author>
			<name>docunext</name>
			<uri>http://github.com/docunext</uri>
		</author>
		<source>
			<title type="html">docunext's Activity</title>
			<link rel="self" href="http://github.com/docunext.atom?docunext.atom=docunext.atom"/>
			<id>tag:github.com,2008:/docunext</id>
			<updated>2010-08-29T08:10:13+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Movable Type Memcached Error</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Movable_Type_Memcached_Error&amp;diff=10885&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Movable_Type_Memcached_Error&amp;diff=10885&amp;oldid=prev</id>
		<updated>2010-08-28T21:50:46+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 21:50, 28 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;This seems to go away when I removed the [[Debian]] [[memcached]] [[perl]] client and installed the [[CPAN]] version instead.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;This seems to go away when I removed the [[Debian]] [[memcached]] [[perl]] client and installed the [[CPAN]] version instead.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== See Also ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Movable Type]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Memcached]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[CPAN]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Memcached]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Memcached]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Movable Type]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Movable Type]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Debian]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Debian]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Perl]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Perl]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">SVG Conversion Tools</title>
		<link href="http://www.docunext.com/wiki/index.php?title=SVG_Conversion_Tools&amp;diff=10884&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=SVG_Conversion_Tools&amp;diff=10884&amp;oldid=prev</id>
		<updated>2010-08-28T09:47:22+00:00</updated>
		<content type="html">&lt;p&gt;damn... i finally solved it=)))&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 09:47, 28 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(One intermediate revision not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 64:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 64:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;make: *** [all] Error 2&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;make: *** [all] Error 2&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;// To compile this library you should install version 0.6.3 of libcroco. It exists in http://sourceforge.net/projects/svg2swf/files/libcroco/ . With this version it works fine.&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;Doh!&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;Doh!&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Alexkocharin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Google Chrome OS</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Google_Chrome_OS&amp;diff=10882&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Google_Chrome_OS&amp;diff=10882&amp;oldid=prev</id>
		<updated>2010-08-28T05:31:51+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 05:31, 28 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 2:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 2:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== Links ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* http://www.soggyblogger.com/blog/2009/11/chromium-os.html&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* http://www.mirrors.docunext.com/cgit.cgi/chromiumos/tree/src/platform&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Google]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Google]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:19 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Chromium OS</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Chromium_OS&amp;diff=10881&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Chromium_OS&amp;diff=10881&amp;oldid=prev</id>
		<updated>2010-08-28T05:31:29+00:00</updated>
		<content type="html">&lt;p&gt;Redirected page to &lt;a href=&quot;http://www.docunext.com/wiki/Google_Chrome_OS&quot; title=&quot;Google Chrome OS&quot;&gt;Google Chrome OS&lt;/a&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 05:31, 28 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Google&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;]]'s new [[operating system]]!&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;#REDIRECT &lt;/ins&gt;[[Google &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Chrome OS&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;== External Links ==&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;* http://www.soggyblogger.com/blog/2009/11/chromium-os.html&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;* http://www.mirrors.docunext.com/cgit.cgi/chromiumos/tree/src/platform&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;[[Category:Google&lt;/del&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Actionscript</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Actionscript&amp;diff=10880&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Actionscript&amp;diff=10880&amp;oldid=prev</id>
		<updated>2010-08-26T17:30:48+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 17:30, 26 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 9:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 9:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Haxe]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Haxe]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[MTASC]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[MTASC]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Ming]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:SWF]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:SWF]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: Programming Languages]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Javascript</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Javascript&amp;diff=10879&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Javascript&amp;diff=10879&amp;oldid=prev</id>
		<updated>2010-08-26T17:29:57+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;External Links:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 17:29, 26 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 60:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 60:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:EMCA Script]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:EMCA Script]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;==&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;External &lt;/del&gt;Links==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.html.it/articoli/nifty/index.html&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.html.it/articoli/nifty/index.html&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.html.it/articoli/niftycube/index.html&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.html.it/articoli/niftycube/index.html&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 74:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 74:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Javascript]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Javascript]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:HTTP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:HTTP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: Programming Languages]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Perl</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Perl&amp;diff=10878&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Perl&amp;diff=10878&amp;oldid=prev</id>
		<updated>2010-08-26T17:29:26+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Links:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 17:29, 26 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 45:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 45:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Perl]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Perl]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Programming]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Programming]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: Programming Languages]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">PHP</title>
		<link href="http://www.docunext.com/wiki/index.php?title=PHP&amp;diff=10877&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=PHP&amp;diff=10877&amp;oldid=prev</id>
		<updated>2010-08-26T17:28:57+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Links:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 17:28, 26 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 99:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 99:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Programming]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Programming]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: PHP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: PHP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: Programming Languages]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">Support forum</title>
		<link href="http://www.docunext.com/forums/rackxslt/support_forum/#post4074"/>
		<id>http://www.docunext.com/forums/rackxslt/support_forum/#post4074</id>
		<updated>2010-08-26T13:38:41+00:00</updated>
		<content type="html">Travel to Da Lat in rainy season
[url=http://www.hoteltravelvietnam.com/vietnam-tours]Da Lat[/url]– the beauty of highland Vietnam – is the most graceful in winter. Da Lat is covered by the mix of fog and sunshine. Wild flower anemones pave all road one fresh yellow. Tourists knit hands in warm gloves admire the dream of Da Lat.
Between August and October, rainy season in Da Lat is the summer of almost other parts of Vietnam. People are afraid of heat, they travel to Da Lat. People want a winter atmosphere, they travel to Da Lat. Da Lat is busy to welcome thousands of tourists, again.
Travel to Da Lat, you own a chance to see many top imposing waterfalls of Vietnam: Prenn, Camly, Pongour… Like a part of Da Lat, these waterfalls become more impressive at this time of year. The strong flow has the color of alluvion, it’s cool and amazed.
[img]http://www.hoteltravelvietnam.com/web/wp-content/uploads/2010/08/camly.jpg[/img]
Once travelling to Da Lat, it’ll be a mistake if missing lakes which infatuate all people have been here. Xuan Huong Lake called the eye of Da Lat, lays in the right center of city. Da Lat hotels almost are built to look at this lake and make a circle around it. Xuan Huong Lake and Da Lat are perfect for an evening ride by couple bicycle. The hot by riding will be deleted by Da Lat rain. Rain in Da Lat isn’t long, isn’t heavy. It rains like a performance, just enough to make hair wet, just enough to make people closer.
[img]http://vietnampackagestours.com/topvietnamtravelguide/files/2010/08/hoxuanhuong-300x199.jpg[/img]
Da Lat has been famous all over the world as a flower center of Vietnam, so the thing you can’t miss in Da Lat is flowers. Tourists will see thousands kind of flowers, they’re grown in green house, in local people houses and they grow themselves on the roadsides. The cold of Da Lat winter isn’t cold enough to kill flowers, it’s just enough to make them a little gentle frozen and fresher in lovely rain.
Talking about Da Lat until tomorrow still can’t show how beautiful it is. Valleys, churches, beauty-spots… The best way to know Da Lat is travelling and enjoying it yourself. Just my experiences, hiring a travel guide to have a full-perfect Da Lat tour.
[url=http://www.hoteltravelvietnam.com/vietnam-news/travel-to-da-lat-rainy-season]Travel to Da Lat[/url] | [url=http://www.hoteltravelvietnam.com]Travel to vietnam[/url]</content>
		<author>
			<name>Docunext Forums</name>
			<uri>http://www.docunext.com/forums/</uri>
		</author>
		<source>
			<title type="html">Docunext Forums</title>
			<link rel="self" href="http://www.docunext.com/forums/index.php?nid=x-posts-rss"/>
			<id>http://www.docunext.com/forums/index.php?nid=x-posts-rss</id>
			<updated>2010-09-03T20:10:10+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">FreeNAS</title>
		<link href="http://www.docunext.com/wiki/index.php?title=FreeNAS&amp;diff=10876&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=FreeNAS&amp;diff=10876&amp;oldid=prev</id>
		<updated>2010-08-26T04:54:51+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Related Pages:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 04:54, 26 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 29:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 29:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* How about [[Git]]? That would be awesome.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* How about [[Git]]? That would be awesome.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;==&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages&lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[UFS]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[UFS]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[ZFS]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[ZFS]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 35:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 35:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[OpenFiler]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[OpenFiler]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Nexenta]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Nexenta]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[m0n0wall]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[pfSense]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:NAS]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: NAS]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Embedded]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Embedded]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:FreeNAS]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: FreeNAS]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:FreeBSD]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: FreeBSD]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Nexenta</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Nexenta&amp;diff=10875&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Nexenta&amp;diff=10875&amp;oldid=prev</id>
		<updated>2010-08-26T04:53:45+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 04:53, 26 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 32:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 32:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Nexenta Networking]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Nexenta Networking]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;==&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages&lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Debian]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Debian]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Debian GNU/kFreeBSD]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Debian GNU/kFreeBSD]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 38:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 38:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[ZFS]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[ZFS]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[FreeNAS]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[FreeNAS]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Ubuntu]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;==External Pages==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;==External Pages==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">FreeBSD and ZFS</title>
		<link href="http://www.docunext.com/wiki/index.php?title=FreeBSD_and_ZFS&amp;diff=10874&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=FreeBSD_and_ZFS&amp;diff=10874&amp;oldid=prev</id>
		<updated>2010-08-26T04:45:32+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 04:45, 26 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 2:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 2:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Nexenta]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Nexenta]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[ZFS]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[ZFS]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;External &lt;/del&gt;Links ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://lists.freebsd.org/pipermail/freebsd-current/2007-April/070616.html&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://lists.freebsd.org/pipermail/freebsd-current/2007-April/070616.html&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:FreeBSD]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: FreeBSD]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">PHP</title>
		<link href="http://www.docunext.com/wiki/index.php?title=PHP&amp;diff=10873&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=PHP&amp;diff=10873&amp;oldid=prev</id>
		<updated>2010-08-25T01:59:31+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;External Links:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:59, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 93:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 93:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[PHP Apt file parser]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[PHP Apt file parser]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;External &lt;/del&gt;Links ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.php.code-experiments.com/blog/&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.php.code-experiments.com/blog/&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [http://www.established-sites.com/blog/ Established Sites PHP CMS]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [http://www.established-sites.com/blog/ Established Sites PHP CMS]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Programming]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Programming]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:PHP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: PHP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">MediaWiki</title>
		<link href="http://www.docunext.com/wiki/index.php?title=MediaWiki&amp;diff=10872&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=MediaWiki&amp;diff=10872&amp;oldid=prev</id>
		<updated>2010-08-25T01:59:03+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:59, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 10:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 10:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Mediawiki Notes]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Mediawiki Notes]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[PHP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[PHP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[MySQL]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[CMS]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Wikis]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Wikis]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: PHP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: PHP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Eclipse</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Eclipse&amp;diff=10871&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Eclipse&amp;diff=10871&amp;oldid=prev</id>
		<updated>2010-08-25T01:44:58+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:44, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;Eclipse is an open source [[IDE]]. I had heard lots about it but only recently used it when I compiled an application for my [[Android]] powered [&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;[&lt;/del&gt;Droid X&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;]&lt;/del&gt;].&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;Eclipse is an open source [[IDE]]. I had heard lots about it but only recently used it when I compiled an application for my [[Android]] powered [&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;http://www.telecomrebirth.com/blog/2010/08/droid-x-review.html &lt;/ins&gt;Droid X].&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: IDE]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: IDE]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">IDE</title>
		<link href="http://www.docunext.com/wiki/index.php?title=IDE&amp;diff=10870&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=IDE&amp;diff=10870&amp;oldid=prev</id>
		<updated>2010-08-25T01:44:26+00:00</updated>
		<content type="html">&lt;p&gt;Redirected page to &lt;a href=&quot;http://www.docunext.com/wiki/Integrated_Development_Environment&quot; title=&quot;Integrated Development Environment&quot;&gt;Integrated Development Environment&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;#REDIRECT [[Integrated Development Environment]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Eclipse</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Eclipse&amp;diff=10869&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Eclipse&amp;diff=10869&amp;oldid=prev</id>
		<updated>2010-08-25T01:44:00+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'Eclipse is an open source &lt;a href=&quot;http://www.docunext.com/wiki/IDE&quot; class=&quot;mw-redirect&quot; title=&quot;IDE&quot;&gt;IDE&lt;/a&gt;. I had heard lots about it but only recently used it when I compiled an application for my &lt;a href=&quot;http://www.docunext.com/wiki/Android&quot; title=&quot;Android&quot;&gt;Android&lt;/a&gt; powered &lt;a href=&quot;http://www.docunext.com/wiki/index.php?title=Droid_X&amp;action=edit&amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Droid X (page does not exist)&quot;&gt;Droid X&lt;/a&gt;.    &lt;a href=&quot;http://www.docunext.com/wiki/index.php?title=Category:IDE&amp;action=edit&amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Category:IDE (page does not exist)&quot;&gt;Category: IDE&lt;/a&gt;'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Eclipse is an open source [[IDE]]. I had heard lots about it but only recently used it when I compiled an application for my [[Android]] powered [[Droid X]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: IDE]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Perl</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Perl&amp;diff=10868&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Perl&amp;diff=10868&amp;oldid=prev</id>
		<updated>2010-08-25T01:41:37+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:41, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 35:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 35:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;mod_perl is so special it has its own page: [[mod_perl]].&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;mod_perl is so special it has its own page: [[mod_perl]].&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[NGINX Perl Module]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[NGINX Perl Module]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Parrot]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;External &lt;/del&gt;Links ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [http://www.docunext.com/blog/perl/ Docunext Blog Perl Category]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [http://www.docunext.com/blog/perl/ Docunext Blog Perl Category]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.geom.uiuc.edu/~scheftic/PMC/UseScripts/Perl/system.html&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.geom.uiuc.edu/~scheftic/PMC/UseScripts/Perl/system.html&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Ikiwiki</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Ikiwiki&amp;diff=10867&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Ikiwiki&amp;diff=10867&amp;oldid=prev</id>
		<updated>2010-08-25T01:37:32+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:37, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(One intermediate revision not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 141:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 141:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;UPDATE: I've actually written a plugin for ikiwiki! It uses the page name to search a [[Xapian]] database for related pages. Once its a little more refined I plan to release it as open source.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;UPDATE: I've actually written a plugin for ikiwiki! It uses the page name to search a [[Xapian]] database for related pages. Once its a little more refined I plan to release it as open source.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related &lt;/del&gt;Pages ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Pages ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Private Wiki]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Private Wiki]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Perl]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Perl]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 147:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 147:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Git-Wiki]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Git-Wiki]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;External &lt;/del&gt;Links ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://ikiwiki.info/&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://ikiwiki.info/&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://ikiwiki.info/tips/convert_mediawiki_to_ikiwiki/discussion/&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://ikiwiki.info/tips/convert_mediawiki_to_ikiwiki/discussion/&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://ikiwiki.info/users/joshtriplett/&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://ikiwiki.info/users/joshtriplett/&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Wikis]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Wikis]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Perl]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Perl]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Debian]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Debian]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Blogs]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Blogs]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Markdown]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Markdown]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: Static Website Compilers]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Category:Static Website Compilers</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Category:Static_Website_Compilers&amp;diff=10865&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Category:Static_Website_Compilers&amp;diff=10865&amp;oldid=prev</id>
		<updated>2010-08-25T01:36:38+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Static Website Compilers&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Jekyll Ruby</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Jekyll_Ruby&amp;diff=10863&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Jekyll_Ruby&amp;diff=10863&amp;oldid=prev</id>
		<updated>2010-08-25T01:35:56+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;See Also:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:35, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(2 intermediate revisions not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 3:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 3:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Webgen]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Webgen]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Nanoc]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Nanoc]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 10:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 10:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Yurt]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Yurt]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Website Meta Language]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Website Meta Language]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Chronicle]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Ikiwiki]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;External &lt;/del&gt;Links ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://jekyllrb.com/&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://jekyllrb.com/&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Ruby]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Ruby&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;[[Category: Static Website Compilers&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">XFCE4</title>
		<link href="http://www.docunext.com/wiki/index.php?title=XFCE4&amp;diff=10860&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=XFCE4&amp;diff=10860&amp;oldid=prev</id>
		<updated>2010-08-25T01:32:49+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:32, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[XFWM4]] is a window manager for the XFCE desktop environment. It is used by [[Xubuntu]], and is supposed to be fast, lightweight, and not require too much computing power to be usable.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[XFWM4]] is a window manager for the XFCE desktop environment. It is used by [[Xubuntu]], and is supposed to be fast, lightweight, and not require too much computing power to be usable.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;==&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages&lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[GNOME]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[GNOME]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[KDE]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[KDE]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;External &lt;/del&gt;Links ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [http://www.docunext.com/blog/2009/03/big-points-for-ubuntu.html XFCE4 Theme Haggling]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [http://www.docunext.com/blog/2009/03/big-points-for-ubuntu.html XFCE4 Theme Haggling]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Window manager</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Window_manager&amp;diff=10859&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Window_manager&amp;diff=10859&amp;oldid=prev</id>
		<updated>2010-08-25T01:32:27+00:00</updated>
		<content type="html">&lt;p&gt;Redirected page to &lt;a href=&quot;http://www.docunext.com/wiki/Window_Managers&quot; title=&quot;Window Managers&quot;&gt;Window Managers&lt;/a&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:32, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;#REDIRECT [[&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Category:Window_Managers&lt;/del&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;#REDIRECT [[&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Window Managers&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Category:Window Managers</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Category:Window_Managers&amp;diff=10858&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Category:Window_Managers&amp;diff=10858&amp;oldid=prev</id>
		<updated>2010-08-25T01:31:42+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:31, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;Window &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;managers &lt;/del&gt;are software programs which handle the basic logic behind [[GUI]] windows.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;[[&lt;/ins&gt;Window &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Managers]] &lt;/ins&gt;are software programs which handle the basic logic behind [[GUI]] windows.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Window Managers</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Window_Managers&amp;diff=10857&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Window_Managers&amp;diff=10857&amp;oldid=prev</id>
		<updated>2010-08-25T01:31:24+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;See Also:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:31, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(One intermediate revision not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 6:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 6:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[OpenBox]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[OpenBox]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Fluxbox]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Fluxbox]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Sawfish]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 13:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 14:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Graphics]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Graphics]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: GUI]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: GUI]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: Window Managers]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Awesome</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Awesome&amp;diff=10855&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Awesome&amp;diff=10855&amp;oldid=prev</id>
		<updated>2010-08-25T01:30:15+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Awesome Window Manger Summary:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:30, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Awesome Window Manger Summary ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Awesome Window Manger Summary ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;Awesome is a window manager for [[X11]].&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;Awesome is a window manager for [[X11&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;]]. It can integrate quite easily with [[GNOME&lt;/ins&gt;]].&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== The Awesome Name ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== The Awesome Name ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-30 08:12:20 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Window Managers</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Window_Managers&amp;diff=10853&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Window_Managers&amp;diff=10853&amp;oldid=prev</id>
		<updated>2010-08-25T01:29:06+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:29, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;A window manager is a software package which controls how the windows in a &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;gui &lt;/del&gt;behave.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;A window manager is a software package which controls how the windows in a &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;[[GUI]] &lt;/ins&gt;behave.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Popular Window Managers ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Popular Window Managers ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Awesome]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Awesome]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[OpenBox]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Fluxbox]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== See Also ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[GNOME]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: Graphics]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: GUI]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-29 08:11:48 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">GNOME</title>
		<link href="http://www.docunext.com/wiki/index.php?title=GNOME&amp;diff=10852&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=GNOME&amp;diff=10852&amp;oldid=prev</id>
		<updated>2010-08-25T01:27:45+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:27, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(One intermediate revision not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 5:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 5:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Gnome Network Manager]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Gnome Network Manager]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Gnome Print Manager]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Gnome Print Manager]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Gnome Screenshot]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Gnome Libraries ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Gnome Libraries ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 11:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 12:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[libxslt]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[libxslt]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt; &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[KDE]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[KDE]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[LXDE]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[LXDE]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 17:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 18:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Window Managers]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Window Managers]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:GNOME]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: GNOME]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Desktop Environments]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Desktop Environments]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Usability]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Usability]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-29 08:11:48 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Gnome Screenshot</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Gnome_Screenshot&amp;diff=10850&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Gnome_Screenshot&amp;diff=10850&amp;oldid=prev</id>
		<updated>2010-08-25T01:26:03+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;See Also:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 01:26, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 63:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 63:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Cheese]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Cheese]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Shutter]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Shutter]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;* [[Gnome]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Graphics]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Graphics]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-29 08:11:48 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Rinetd</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Rinetd&amp;diff=10849&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Rinetd&amp;diff=10849&amp;oldid=prev</id>
		<updated>2010-08-25T00:51:03+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 00:51, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;I've been looking for a program like rinetd for a looong time. Its very simple - it just redirects [[TCP]] connections from one [[IP]] port combination to another. &amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;I've been looking for a program like rinetd for a looong time. Its very simple - it just redirects [[TCP]] connections from one [[IP]] port combination to another. &amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== Rinetd Configuration ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;/etc/rinetd.conf&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&amp;lt;pre&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;#&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# this is the configuration file for rinetd, the internet redirection server&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;#&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# you may specify global allow and deny rules here&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# only ip addresses are matched, hostnames cannot be specified here&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# the wildcards you may use are * and ?&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;#&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# allow 192.168.2.*&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# deny 192.168.2.1?&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;#&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# forwarding rules come here&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;#&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# you may specify allow and deny rules after a specific forwarding rule&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# to apply to only that forwarding rule&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;#&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# bindadress&amp;nbsp; &amp;nbsp; bindport&amp;nbsp; connectaddress&amp;nbsp; connectport&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;192.168.0.48&amp;nbsp; &amp;nbsp; 82222&amp;nbsp; &amp;nbsp; &amp;nbsp;  192.168.0.59&amp;nbsp; &amp;nbsp; 80&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;192.168.0.48&amp;nbsp; &amp;nbsp; 5900&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 192.168.0.59&amp;nbsp; &amp;nbsp; 5900&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# logging information&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;logfile /var/log/rinetd.log&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# uncomment the following line if you want web-server style logfile format&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# logcommon&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&amp;lt;/pre&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-29 08:11:48 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Gnome Screenshot</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Gnome_Screenshot&amp;diff=10848&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Gnome_Screenshot&amp;diff=10848&amp;oldid=prev</id>
		<updated>2010-08-25T00:49:47+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 00:49, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 63:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 63:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Cheese]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Cheese]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Shutter]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Shutter]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: Graphics]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-29 08:11:48 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Vsftp</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Vsftp&amp;diff=10847&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Vsftp&amp;diff=10847&amp;oldid=prev</id>
		<updated>2010-08-25T00:49:31+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 00:49, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;Vsftp is an [[FTP]] server.&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;I just tried vsftpd on [[CentOS]] but couldn't figure out how to get a local user to login. I gave up and decided to continue using [[proftpd]] instead.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;I just tried vsftpd on [[CentOS]] but couldn't figure out how to get a local user to login. I gave up and decided to continue using [[proftpd]] instead.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== See Also ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[FTP]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Proftpd]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:FTP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: FTP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-29 08:11:48 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Gnome Screenshot</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Gnome_Screenshot&amp;diff=10846&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Gnome_Screenshot&amp;diff=10846&amp;oldid=prev</id>
		<updated>2010-08-25T00:48:33+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'Gnome Screenshot is a software package used for taking screenshots.  == Gnome Screenshot Manual Page == &amp;lt;pre&amp;gt;  GNOME-SCREENSHOT(1)                                                ...'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Gnome Screenshot is a software package used for taking screenshots.&lt;br /&gt;
&lt;br /&gt;
== Gnome Screenshot Manual Page ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
GNOME-SCREENSHOT(1)                                                                                                                              GNOME-SCREENSHOT(1)&lt;br /&gt;
&lt;br /&gt;
NAME&lt;br /&gt;
       gnome-screenshot - capture the screen, a window, or an user-defined area and save the snapshot image to a file.&lt;br /&gt;
&lt;br /&gt;
SYNOPSIS&lt;br /&gt;
       gnome-screenshot [ -w ]  [ -a ]  [ -b ]  [ -B ]  [ -d SECONDS  ]  [ -e EFFECT  ]  [ -i ]  [ --display DISPLAY  ]&lt;br /&gt;
&lt;br /&gt;
DESCRIPTION&lt;br /&gt;
       gnome-screenshot  is  a  GNOME  utility for taking screenshots of the entire screen, a window or an user-defined area of the screen, with optional beutifying&lt;br /&gt;
       border effects.&lt;br /&gt;
&lt;br /&gt;
OPTIONS&lt;br /&gt;
       -w, --window&lt;br /&gt;
              Grab the current active window instead of the entire screen.&lt;br /&gt;
&lt;br /&gt;
       -a, --area&lt;br /&gt;
              Grab an area of the screen instead of the entire screen.&lt;br /&gt;
&lt;br /&gt;
       -b, --include-border&lt;br /&gt;
              Include the window border within the screenshot.&lt;br /&gt;
&lt;br /&gt;
       -B, --remove-border&lt;br /&gt;
              Remove the window border from the screenshot.&lt;br /&gt;
&lt;br /&gt;
       -d, --delay=SECONDS,&lt;br /&gt;
              Take the screenshot after the specified delay [in seconds].&lt;br /&gt;
&lt;br /&gt;
       -e, --effect=EFFECT,&lt;br /&gt;
              Add an effect to the outside of the screenshot border.  EFFECT can be ``shadow'' (adding drop shadow), ``border'' (adding rectangular space around the&lt;br /&gt;
              screenshot) or ``none'' (no effect).  Default is ``none''.&lt;br /&gt;
&lt;br /&gt;
       -i, --interactive&lt;br /&gt;
              Interactively set options in a dialog.&lt;br /&gt;
&lt;br /&gt;
       --display=DISPLAY&lt;br /&gt;
              X display to use.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
       -?, -h, --help&lt;br /&gt;
              Show a summary of the available options.&lt;br /&gt;
&lt;br /&gt;
       In addition, the usual GTK+ and GNOME command line options apply.  See the output of --help for details.&lt;br /&gt;
&lt;br /&gt;
SEE ALSO&lt;br /&gt;
       gnome-options(7), gtk-options(7)&lt;br /&gt;
&lt;br /&gt;
AUTHOR&lt;br /&gt;
       This manual page was written by Christian Marillat &amp;lt;marillat@debian.org&amp;gt; for the Debian GNU/Linux system (but may be used by others).&lt;br /&gt;
&lt;br /&gt;
       Updated by Theppitak Karoonboonyanan &amp;lt;thep@linux.thai.net&amp;gt;, Tom Feiner &amp;lt;feiner.tom@gmail.com&amp;gt; and Cosimo Cecchi &amp;lt;cosimoc@gnome.org&amp;gt;&lt;br /&gt;
&lt;br /&gt;
                                                                            June 28, 2009                                                        GNOME-SCREENSHOT(1)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[Cheese]]&lt;br /&gt;
* [[Shutter]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Rinetd</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Rinetd&amp;diff=10845&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Rinetd&amp;diff=10845&amp;oldid=prev</id>
		<updated>2010-08-25T00:46:36+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 00:46, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 2:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 2:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Similar Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Stunnel4]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Stunnel4]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Proxies]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Proxies]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[GRE]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[GRE]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Relayd]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Networking]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Networking]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-28 10:11:58 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Shutter</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Shutter&amp;diff=10844&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Shutter&amp;diff=10844&amp;oldid=prev</id>
		<updated>2010-08-25T00:46:19+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 00:46, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;Shutter is a sweet open source screen shot software application. Its my choice!&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;Shutter is a sweet open source screen shot software application. Its my choice!&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== See Also ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Cheese]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Gnome Screenshot]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Graphics]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Graphics]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-28 10:11:58 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Regular expressions</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Regular_expressions&amp;diff=10843&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Regular_expressions&amp;diff=10843&amp;oldid=prev</id>
		<updated>2010-08-25T00:45:29+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;See Also:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 00:45, 25 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(One intermediate revision not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;Most programming and scripting languages have a regular expression engine of sorts.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;Most programming and scripting languages have a regular expression engine of sorts.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[re-engine-lua]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[re-engine-lua]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Regular Expressions by Examples]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Regular Expressions by Examples]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Ruby Regex]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Ruby Regex]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[PCRE]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Sed]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Sed]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-28 10:11:58 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-US">
		<title type="html">docunext pushed to master at docunext/mt-plugin-send2pq</title>
		<link href="http://github.com/docunext/mt-plugin-send2pq/compare/3f3bc4bf8f...8dfef04eb6"/>
		<id>tag:github.com,2008:PushEvent/288390264</id>
		<updated>2010-08-24T04:55:05+00:00</updated>
		<content type="html">&lt;div class=&quot;details&quot;&gt;
  

  
    &lt;div class=&quot;commits&quot;&gt;
    &lt;ul&gt;
    
      
      &lt;li&gt;
        
          &lt;a href=&quot;http://github.com/docunext&quot; class=&quot;committer&quot;&gt;docunext&lt;/a&gt;
        
        committed
        &lt;code&gt;&lt;a href=&quot;http://github.com/docunext/mt-plugin-send2pq/commit/8dfef04eb6208f6c3396b0d623396fdc4a8de822&quot;&gt;8dfef04&lt;/a&gt;&lt;/code&gt;

        &lt;div class=&quot;message&quot;&gt;
          &lt;blockquote&gt;ignoring email field&lt;/blockquote&gt;
        &lt;/div&gt;
      &lt;/li&gt;
    

    
    &lt;/ul&gt;
    &lt;/div&gt;
  
&lt;/div&gt;</content>
		<author>
			<name>docunext</name>
			<uri>http://github.com/docunext</uri>
		</author>
		<source>
			<title type="html">docunext's Activity</title>
			<link rel="self" href="http://github.com/docunext.atom?docunext.atom=docunext.atom"/>
			<id>tag:github.com,2008:/docunext</id>
			<updated>2010-08-29T08:10:13+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">OCS Inventory</title>
		<link href="http://www.docunext.com/wiki/index.php?title=OCS_Inventory&amp;diff=10841&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=OCS_Inventory&amp;diff=10841&amp;oldid=prev</id>
		<updated>2010-08-23T16:22:25+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 16:22, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: OCS Inventory]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Web Applications]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Web Applications]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Inventory]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Inventory]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-28 10:11:58 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Category:OCS Inventory</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Category:OCS_Inventory&amp;diff=10840&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Category:OCS_Inventory&amp;diff=10840&amp;oldid=prev</id>
		<updated>2010-08-23T16:22:05+00:00</updated>
		<content type="html">&lt;p&gt;Created page with '&lt;a href=&quot;http://www.docunext.com/wiki/OCS_Inventory&quot; title=&quot;OCS Inventory&quot;&gt;OCS Inventory&lt;/a&gt;'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[OCS Inventory]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">OCS Inventory SQL Data Model</title>
		<link href="http://www.docunext.com/wiki/index.php?title=OCS_Inventory_SQL_Data_Model&amp;diff=10839&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=OCS_Inventory_SQL_Data_Model&amp;diff=10839&amp;oldid=prev</id>
		<updated>2010-08-23T16:19:48+00:00</updated>
		<content type="html">&lt;p&gt;Created page with '== &lt;a href=&quot;http://www.docunext.com/wiki/OCS_Inventory&quot; title=&quot;OCS Inventory&quot;&gt;OCS Inventory&lt;/a&gt; &lt;a href=&quot;http://www.docunext.com/wiki/SQL&quot; class=&quot;mw-redirect&quot; title=&quot;SQL&quot;&gt;SQL&lt;/a&gt; Data Model == &amp;lt;pre class=&amp;quot;sh_sql&amp;quot;&amp;gt;  -- phpMyAdmin SQL Dump -- version 3.2.0.1deb1 -- http://www.phpmyadmin.net -- -- Host: 192.168.8.2 -- Generation ...'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== [[OCS Inventory]] [[SQL]] Data Model ==&lt;br /&gt;
&amp;lt;pre class=&amp;quot;sh_sql&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-- phpMyAdmin SQL Dump&lt;br /&gt;
-- version 3.2.0.1deb1&lt;br /&gt;
-- http://www.phpmyadmin.net&lt;br /&gt;
--&lt;br /&gt;
-- Host: 192.168.8.2&lt;br /&gt;
-- Generation Time: Aug 23, 2010 at 12:12 PM&lt;br /&gt;
-- Server version: 5.0.51&lt;br /&gt;
-- PHP Version: 5.2.9-4&lt;br /&gt;
&lt;br /&gt;
SET SQL_MODE=&amp;quot;NO_AUTO_VALUE_ON_ZERO&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Database: `ocsweb`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `accesslog`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `accesslog` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `USERID` varchar(255) default NULL,&lt;br /&gt;
  `LOGDATE` datetime default NULL,&lt;br /&gt;
  `PROCESSES` text,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`),&lt;br /&gt;
  KEY `USERID` (`USERID`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=24 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `accountinfo`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `accountinfo` (&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `TAG` varchar(255) default 'NA',&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`),&lt;br /&gt;
  KEY `TAG` (`TAG`)&lt;br /&gt;
) ENGINE=InnoDB DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `bios`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `bios` (&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `SMANUFACTURER` varchar(255) default NULL,&lt;br /&gt;
  `SMODEL` varchar(255) default NULL,&lt;br /&gt;
  `SSN` varchar(255) default NULL,&lt;br /&gt;
  `TYPE` varchar(255) default NULL,&lt;br /&gt;
  `BMANUFACTURER` varchar(255) default NULL,&lt;br /&gt;
  `BVERSION` varchar(255) default NULL,&lt;br /&gt;
  `BDATE` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`),&lt;br /&gt;
  KEY `SSN` (`SSN`)&lt;br /&gt;
) ENGINE=InnoDB DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `blacklist_macaddresses`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `blacklist_macaddresses` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `MACADDRESS` varchar(255) NOT NULL default '',&lt;br /&gt;
  PRIMARY KEY  (`MACADDRESS`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `blacklist_serials`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `blacklist_serials` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `SERIAL` varchar(255) NOT NULL default '',&lt;br /&gt;
  PRIMARY KEY  (`SERIAL`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=35 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `config`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `config` (&lt;br /&gt;
  `NAME` varchar(50) NOT NULL,&lt;br /&gt;
  `IVALUE` int(11) default NULL,&lt;br /&gt;
  `TVALUE` varchar(255) default NULL,&lt;br /&gt;
  `COMMENTS` text,&lt;br /&gt;
  PRIMARY KEY  (`NAME`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `conntrack`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `conntrack` (&lt;br /&gt;
  `IP` varchar(255) NOT NULL default '',&lt;br /&gt;
  `TIMESTAMP` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,&lt;br /&gt;
  PRIMARY KEY  (`IP`)&lt;br /&gt;
) ENGINE=MEMORY DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `controllers`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `controllers` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `MANUFACTURER` varchar(255) default NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `CAPTION` varchar(255) default NULL,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  `VERSION` varchar(255) default NULL,&lt;br /&gt;
  `TYPE` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=593 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `deleted_equiv`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `deleted_equiv` (&lt;br /&gt;
  `DATE` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,&lt;br /&gt;
  `DELETED` varchar(255) NOT NULL,&lt;br /&gt;
  `EQUIVALENT` varchar(255) default NULL&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `deploy`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `deploy` (&lt;br /&gt;
  `NAME` varchar(255) NOT NULL,&lt;br /&gt;
  `CONTENT` longblob NOT NULL,&lt;br /&gt;
  PRIMARY KEY  (`NAME`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `devices`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `devices` (&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `NAME` varchar(50) NOT NULL,&lt;br /&gt;
  `IVALUE` int(11) default NULL,&lt;br /&gt;
  `TVALUE` varchar(255) default NULL,&lt;br /&gt;
  `COMMENTS` text,&lt;br /&gt;
  KEY `HARDWARE_ID` (`HARDWARE_ID`),&lt;br /&gt;
  KEY `TVALUE` (`TVALUE`),&lt;br /&gt;
  KEY `IVALUE` (`IVALUE`),&lt;br /&gt;
  KEY `NAME` (`NAME`)&lt;br /&gt;
) ENGINE=InnoDB DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `devicetype`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `devicetype` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`ID`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `dico_ignored`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `dico_ignored` (&lt;br /&gt;
  `EXTRACTED` varchar(255) NOT NULL,&lt;br /&gt;
  PRIMARY KEY  (`EXTRACTED`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `dico_soft`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `dico_soft` (&lt;br /&gt;
  `EXTRACTED` varchar(255) NOT NULL,&lt;br /&gt;
  `FORMATTED` varchar(255) NOT NULL,&lt;br /&gt;
  PRIMARY KEY  (`EXTRACTED`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `download_affect_rules`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `download_affect_rules` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `RULE` int(11) NOT NULL,&lt;br /&gt;
  `PRIORITY` int(11) NOT NULL,&lt;br /&gt;
  `CFIELD` varchar(20) character set latin1 collate latin1_general_ci NOT NULL,&lt;br /&gt;
  `OP` varchar(20) character set latin1 collate latin1_general_ci NOT NULL,&lt;br /&gt;
  `COMPTO` varchar(20) character set latin1 collate latin1_general_ci NOT NULL,&lt;br /&gt;
  `SERV_VALUE` varchar(20) character set latin1 collate latin1_general_ci default NULL,&lt;br /&gt;
  `RULE_NAME` varchar(200) character set latin1 collate latin1_general_ci NOT NULL,&lt;br /&gt;
  PRIMARY KEY  (`ID`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `download_available`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `download_available` (&lt;br /&gt;
  `FILEID` varchar(255) NOT NULL,&lt;br /&gt;
  `NAME` varchar(255) NOT NULL,&lt;br /&gt;
  `PRIORITY` int(11) NOT NULL,&lt;br /&gt;
  `FRAGMENTS` int(11) NOT NULL,&lt;br /&gt;
  `SIZE` int(11) NOT NULL,&lt;br /&gt;
  `OSNAME` varchar(255) NOT NULL,&lt;br /&gt;
  `COMMENT` text,&lt;br /&gt;
  PRIMARY KEY  (`FILEID`)&lt;br /&gt;
) ENGINE=InnoDB DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `download_enable`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `download_enable` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `FILEID` varchar(255) NOT NULL,&lt;br /&gt;
  `INFO_LOC` varchar(255) NOT NULL,&lt;br /&gt;
  `PACK_LOC` varchar(255) NOT NULL,&lt;br /&gt;
  `CERT_PATH` varchar(255) default NULL,&lt;br /&gt;
  `CERT_FILE` varchar(255) default NULL,&lt;br /&gt;
  `SERVER_ID` int(11) default NULL,&lt;br /&gt;
  `GROUP_ID` int(11) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`ID`),&lt;br /&gt;
  KEY `FILEID` (`FILEID`)&lt;br /&gt;
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `download_history`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `download_history` (&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `PKG_ID` int(11) NOT NULL default '0',&lt;br /&gt;
  `PKG_NAME` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`PKG_ID`)&lt;br /&gt;
) ENGINE=InnoDB DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `download_servers`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `download_servers` (&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `URL` varchar(250) character set latin1 collate latin1_general_ci NOT NULL,&lt;br /&gt;
  `ADD_PORT` int(11) NOT NULL,&lt;br /&gt;
  `ADD_REP` varchar(250) character set latin1 collate latin1_general_ci NOT NULL,&lt;br /&gt;
  `GROUP_ID` int(11) NOT NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `drives`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `drives` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `LETTER` varchar(255) default NULL,&lt;br /&gt;
  `TYPE` varchar(255) default NULL,&lt;br /&gt;
  `FILESYSTEM` varchar(255) default NULL,&lt;br /&gt;
  `TOTAL` int(11) default NULL,&lt;br /&gt;
  `FREE` int(11) default NULL,&lt;br /&gt;
  `NUMFILES` int(11) default NULL,&lt;br /&gt;
  `VOLUMN` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=6546 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `engine_mutex`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `engine_mutex` (&lt;br /&gt;
  `NAME` varchar(255) NOT NULL default '',&lt;br /&gt;
  `PID` int(11) default NULL,&lt;br /&gt;
  `TAG` varchar(255) NOT NULL default '',&lt;br /&gt;
  PRIMARY KEY  (`NAME`,`TAG`)&lt;br /&gt;
) ENGINE=MEMORY DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `engine_persistent`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `engine_persistent` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `NAME` varchar(255) NOT NULL default '',&lt;br /&gt;
  `IVALUE` int(11) default NULL,&lt;br /&gt;
  `TVALUE` varchar(255) default NULL,&lt;br /&gt;
  UNIQUE KEY `NAME` (`NAME`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `files`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `files` (&lt;br /&gt;
  `NAME` varchar(255) NOT NULL,&lt;br /&gt;
  `VERSION` varchar(255) NOT NULL,&lt;br /&gt;
  `OS` varchar(255) NOT NULL,&lt;br /&gt;
  `CONTENT` longblob NOT NULL,&lt;br /&gt;
  PRIMARY KEY  (`NAME`,`OS`,`VERSION`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `groups`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `groups` (&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL default '0',&lt;br /&gt;
  `REQUEST` longtext,&lt;br /&gt;
  `CREATE_TIME` int(11) default '0',&lt;br /&gt;
  `REVALIDATE_FROM` int(11) default '0',&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `groups_cache`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `groups_cache` (&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL default '0',&lt;br /&gt;
  `GROUP_ID` int(11) NOT NULL default '0',&lt;br /&gt;
  `STATIC` int(11) default '0',&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`GROUP_ID`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `hardware`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `hardware` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `DEVICEID` varchar(255) NOT NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `WORKGROUP` varchar(255) default NULL,&lt;br /&gt;
  `USERDOMAIN` varchar(255) default NULL,&lt;br /&gt;
  `OSNAME` varchar(255) default NULL,&lt;br /&gt;
  `OSVERSION` varchar(255) default NULL,&lt;br /&gt;
  `OSCOMMENTS` varchar(255) default NULL,&lt;br /&gt;
  `PROCESSORT` varchar(255) default NULL,&lt;br /&gt;
  `PROCESSORS` int(11) default '0',&lt;br /&gt;
  `PROCESSORN` smallint(6) default NULL,&lt;br /&gt;
  `MEMORY` int(11) default NULL,&lt;br /&gt;
  `SWAP` int(11) default NULL,&lt;br /&gt;
  `IPADDR` varchar(255) default NULL,&lt;br /&gt;
  `ETIME` datetime default NULL,&lt;br /&gt;
  `LASTDATE` datetime default NULL,&lt;br /&gt;
  `LASTCOME` datetime default NULL,&lt;br /&gt;
  `QUALITY` decimal(7,4) default NULL,&lt;br /&gt;
  `FIDELITY` bigint(20) default '1',&lt;br /&gt;
  `USERID` varchar(255) default NULL,&lt;br /&gt;
  `TYPE` int(11) default NULL,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  `WINCOMPANY` varchar(255) default NULL,&lt;br /&gt;
  `WINOWNER` varchar(255) default NULL,&lt;br /&gt;
  `WINPRODID` varchar(255) default NULL,&lt;br /&gt;
  `WINPRODKEY` varchar(255) default NULL,&lt;br /&gt;
  `USERAGENT` varchar(50) default NULL,&lt;br /&gt;
  `CHECKSUM` int(11) default '131071',&lt;br /&gt;
  `SSTATE` int(11) default '0',&lt;br /&gt;
  PRIMARY KEY  (`DEVICEID`,`ID`),&lt;br /&gt;
  KEY `NAME` (`NAME`),&lt;br /&gt;
  KEY `CHECKSUM` (`CHECKSUM`),&lt;br /&gt;
  KEY `DEVICEID` (`DEVICEID`),&lt;br /&gt;
  KEY `ID` (`ID`),&lt;br /&gt;
  KEY `USERID` (`USERID`),&lt;br /&gt;
  KEY `WORKGROUP` (`WORKGROUP`),&lt;br /&gt;
  KEY `OSNAME` (`OSNAME`),&lt;br /&gt;
  KEY `MEMORY` (`MEMORY`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `hardware_osname_cache`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `hardware_osname_cache` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `OSNAME` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`ID`),&lt;br /&gt;
  UNIQUE KEY `OSNAME` (`OSNAME`)&lt;br /&gt;
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `inputs`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `inputs` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `TYPE` varchar(255) default NULL,&lt;br /&gt;
  `MANUFACTURER` varchar(255) default NULL,&lt;br /&gt;
  `CAPTION` varchar(255) default NULL,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  `INTERFACE` varchar(255) default NULL,&lt;br /&gt;
  `POINTTYPE` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `locks`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `locks` (&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `ID` int(11) default NULL,&lt;br /&gt;
  `SINCE` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`),&lt;br /&gt;
  KEY `SINCE` (`SINCE`)&lt;br /&gt;
) ENGINE=MEMORY DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `memories`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `memories` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `CAPTION` varchar(255) default NULL,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  `CAPACITY` varchar(255) default NULL,&lt;br /&gt;
  `PURPOSE` varchar(255) default NULL,&lt;br /&gt;
  `TYPE` varchar(255) default NULL,&lt;br /&gt;
  `SPEED` varchar(255) default NULL,&lt;br /&gt;
  `NUMSLOTS` smallint(6) default NULL,&lt;br /&gt;
  `SERIALNUMBER` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=35 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `modems`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `modems` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `MODEL` varchar(255) default NULL,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  `TYPE` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `monitors`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `monitors` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `MANUFACTURER` varchar(255) default NULL,&lt;br /&gt;
  `CAPTION` varchar(255) default NULL,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  `TYPE` varchar(255) default NULL,&lt;br /&gt;
  `SERIAL` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `netmap`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `netmap` (&lt;br /&gt;
  `IP` varchar(15) NOT NULL,&lt;br /&gt;
  `MAC` varchar(17) NOT NULL,&lt;br /&gt;
  `MASK` varchar(15) NOT NULL,&lt;br /&gt;
  `NETID` varchar(15) NOT NULL,&lt;br /&gt;
  `DATE` timestamp NOT NULL default CURRENT_TIMESTAMP,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`MAC`),&lt;br /&gt;
  KEY `IP` (`IP`),&lt;br /&gt;
  KEY `NETID` (`NETID`)&lt;br /&gt;
) ENGINE=InnoDB DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `networks`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `networks` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  `TYPE` varchar(255) default NULL,&lt;br /&gt;
  `TYPEMIB` varchar(255) default NULL,&lt;br /&gt;
  `SPEED` varchar(255) default NULL,&lt;br /&gt;
  `MACADDR` varchar(255) default NULL,&lt;br /&gt;
  `STATUS` varchar(255) default NULL,&lt;br /&gt;
  `IPADDRESS` varchar(255) default NULL,&lt;br /&gt;
  `IPMASK` varchar(255) default NULL,&lt;br /&gt;
  `IPGATEWAY` varchar(255) default NULL,&lt;br /&gt;
  `IPSUBNET` varchar(255) default NULL,&lt;br /&gt;
  `IPDHCP` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `MACADDR` (`MACADDR`),&lt;br /&gt;
  KEY `IPSUBNET` (`IPSUBNET`),&lt;br /&gt;
  KEY `ID` (`ID`),&lt;br /&gt;
  KEY `IPADDRESS` (`IPADDRESS`),&lt;br /&gt;
  KEY `IPGATEWAY` (`IPGATEWAY`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=90 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `network_devices`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `network_devices` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  `TYPE` varchar(255) default NULL,&lt;br /&gt;
  `MACADDR` varchar(255) default NULL,&lt;br /&gt;
  `USER` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`ID`),&lt;br /&gt;
  KEY `MACADDR` (`MACADDR`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `operators`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `operators` (&lt;br /&gt;
  `ID` varchar(255) NOT NULL default '',&lt;br /&gt;
  `FIRSTNAME` varchar(255) default NULL,&lt;br /&gt;
  `LASTNAME` varchar(255) default NULL,&lt;br /&gt;
  `PASSWD` varchar(50) default NULL,&lt;br /&gt;
  `ACCESSLVL` int(11) default NULL,&lt;br /&gt;
  `COMMENTS` text,&lt;br /&gt;
  PRIMARY KEY  (`ID`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `ports`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `ports` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `TYPE` varchar(255) default NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `CAPTION` varchar(255) default NULL,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=145 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `printers`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `printers` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `DRIVER` varchar(255) default NULL,&lt;br /&gt;
  `PORT` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `prolog_conntrack`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `prolog_conntrack` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `DEVICEID` varchar(255) default NULL,&lt;br /&gt;
  `TIMESTAMP` int(11) default NULL,&lt;br /&gt;
  `PID` int(11) default NULL,&lt;br /&gt;
  KEY `ID` (`ID`),&lt;br /&gt;
  KEY `DEVICEID` (`DEVICEID`)&lt;br /&gt;
) ENGINE=MEMORY DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `regconfig`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `regconfig` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `REGTREE` int(11) default NULL,&lt;br /&gt;
  `REGKEY` text,&lt;br /&gt;
  `REGVALUE` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`ID`),&lt;br /&gt;
  KEY `NAME` (`NAME`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `registry`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `registry` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `REGVALUE` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `NAME` (`NAME`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `registry_name_cache`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `registry_name_cache` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`ID`),&lt;br /&gt;
  UNIQUE KEY `NAME` (`NAME`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `registry_regvalue_cache`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `registry_regvalue_cache` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `REGVALUE` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`ID`),&lt;br /&gt;
  UNIQUE KEY `REGVALUE` (`REGVALUE`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `slots`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `slots` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  `DESIGNATION` varchar(255) default NULL,&lt;br /&gt;
  `PURPOSE` varchar(255) default NULL,&lt;br /&gt;
  `STATUS` varchar(255) default NULL,&lt;br /&gt;
  `PSHARE` tinyint(4) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=43 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `softwares`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `softwares` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `PUBLISHER` varchar(255) default NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `VERSION` varchar(255) default NULL,&lt;br /&gt;
  `FOLDER` text,&lt;br /&gt;
  `COMMENTS` text,&lt;br /&gt;
  `FILENAME` varchar(255) default NULL,&lt;br /&gt;
  `FILESIZE` int(11) default '0',&lt;br /&gt;
  `SOURCE` int(11) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `NAME` (`NAME`),&lt;br /&gt;
  KEY `ID` (`ID`),&lt;br /&gt;
  KEY `VERSION` (`VERSION`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=530863 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `softwares_name_cache`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `softwares_name_cache` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`ID`),&lt;br /&gt;
  UNIQUE KEY `NAME` (`NAME`)&lt;br /&gt;
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=197354 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `sounds`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `sounds` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `MANUFACTURER` varchar(255) default NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `storages`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `storages` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `MANUFACTURER` varchar(255) default NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `MODEL` varchar(255) default NULL,&lt;br /&gt;
  `DESCRIPTION` varchar(255) default NULL,&lt;br /&gt;
  `TYPE` varchar(255) default NULL,&lt;br /&gt;
  `DISKSIZE` int(11) default NULL,&lt;br /&gt;
  `SERIALNUMBER` varchar(255) default NULL,&lt;br /&gt;
  `FIRMWARE` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=84 ;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `subnet`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `subnet` (&lt;br /&gt;
  `NETID` varchar(15) NOT NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `ID` int(11) default NULL,&lt;br /&gt;
  `MASK` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`NETID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `tags`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `tags` (&lt;br /&gt;
  `Tag` varchar(255) NOT NULL default '',&lt;br /&gt;
  `Login` varchar(255) NOT NULL default '',&lt;br /&gt;
  PRIMARY KEY  (`Tag`,`Login`),&lt;br /&gt;
  KEY `Tag` (`Tag`),&lt;br /&gt;
  KEY `Login` (`Login`)&lt;br /&gt;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;&lt;br /&gt;
&lt;br /&gt;
-- --------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table `videos`&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE IF NOT EXISTS `videos` (&lt;br /&gt;
  `ID` int(11) NOT NULL auto_increment,&lt;br /&gt;
  `HARDWARE_ID` int(11) NOT NULL,&lt;br /&gt;
  `NAME` varchar(255) default NULL,&lt;br /&gt;
  `CHIPSET` varchar(255) default NULL,&lt;br /&gt;
  `MEMORY` varchar(255) default NULL,&lt;br /&gt;
  `RESOLUTION` varchar(255) default NULL,&lt;br /&gt;
  PRIMARY KEY  (`HARDWARE_ID`,`ID`),&lt;br /&gt;
  KEY `ID` (`ID`)&lt;br /&gt;
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=19 ;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[OCS Inventory]]&lt;br /&gt;
* [[Databases]]&lt;br /&gt;
&lt;br /&gt;
[[Category: Data Models]]&lt;br /&gt;
[[Category: OCS Inventory]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">OCS Inventory</title>
		<link href="http://www.docunext.com/wiki/index.php?title=OCS_Inventory&amp;diff=10838&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=OCS_Inventory&amp;diff=10838&amp;oldid=prev</id>
		<updated>2010-08-23T16:18:50+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;See Also:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 16:18, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[OCS Inventory SQL Data Model]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[OCS Inventory Reports]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[OCS Inventory Reports]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-28 10:11:58 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">OCS Inventory Reports</title>
		<link href="http://www.docunext.com/wiki/index.php?title=OCS_Inventory_Reports&amp;diff=10837&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=OCS_Inventory_Reports&amp;diff=10837&amp;oldid=prev</id>
		<updated>2010-08-23T16:18:30+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'OCS Inventory Reports is a web application through which users can access information about a group of computers and hardware.    == See Also == * &lt;a href=&quot;http://www.docunext.com/wiki/OCS_Inventory&quot; title=&quot;OCS Inventory&quot;&gt;OCS Inventory&lt;/a&gt;  [[Category: ...'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;OCS Inventory Reports is a web application through which users can access information about a group of computers and hardware.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[OCS Inventory]]&lt;br /&gt;
&lt;br /&gt;
[[Category: OCS Inventory]]&lt;br /&gt;
[[Category: Inventory]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">OCS Inventory</title>
		<link href="http://www.docunext.com/wiki/index.php?title=OCS_Inventory&amp;diff=10836&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=OCS_Inventory&amp;diff=10836&amp;oldid=prev</id>
		<updated>2010-08-23T16:17:11+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'OCS Inventory NG is a suite of tools designed to gather, store, organize and report the hardware and software inventory of a network of computers.    == See Also == * [[OCS Inven...'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;OCS Inventory NG is a suite of tools designed to gather, store, organize and report the hardware and software inventory of a network of computers.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[OCS Inventory Reports]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Web Applications]]&lt;br /&gt;
[[Category: Inventory]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">MediaWiki</title>
		<link href="http://www.docunext.com/wiki/index.php?title=MediaWiki&amp;diff=10835&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=MediaWiki&amp;diff=10835&amp;oldid=prev</id>
		<updated>2010-08-23T16:12:02+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 16:12, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 2:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 2:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;Mediawiki is the software which powers this wiki. It is written in [[PHP]]. I've setup this installation of it using [[MySQL]], and the Mediawiki database model uses the InnoDB table engine for some of the tables.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;Mediawiki is the software which powers this wiki. It is written in [[PHP]]. I've setup this installation of it using [[MySQL]], and the Mediawiki database model uses the InnoDB table engine for some of the tables.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[MediaWiki Extensions]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[MediaWiki Extensions]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[MediaWiki Data Model]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Private Wiki]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Private Wiki]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Ikiwiki]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Ikiwiki]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 10:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 11:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[PHP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[PHP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Wikis]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Wikis]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: PHP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: PHP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-28 10:11:58 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Movable Type Data Model</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Movable_Type_Data_Model&amp;diff=10834&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Movable_Type_Data_Model&amp;diff=10834&amp;oldid=prev</id>
		<updated>2010-08-23T15:58:50+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;See Also:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 15:58, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(One intermediate revision not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== [[Movable Type]] Data Model in [[SQL]] ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;pre class=&amp;quot;sh_sql&amp;quot;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;pre class=&amp;quot;sh_sql&amp;quot;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;-- phpMyAdmin SQL Dump&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;-- phpMyAdmin SQL Dump&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1,199:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1,201:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== See Also ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Movable Type]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Movable Type]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Data Models&lt;/del&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;SQL&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Movable Type]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Movable Type]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Data Models]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Data Models]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-28 08:12:14 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Movable Type</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Movable_Type&amp;diff=10830&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Movable_Type&amp;diff=10830&amp;oldid=prev</id>
		<updated>2010-08-23T15:55:31+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Related Pages:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 15:55, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 89:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 89:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Cache::Memcached::Fast]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Cache::Memcached::Fast]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;* [[Movable Type Data Model]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Melody]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Melody]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-26 08:12:14 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Issues Tracker</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Issues_Tracker&amp;diff=0&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Issues_Tracker&amp;diff=0&amp;oldid=prev</id>
		<updated>2010-08-23T14:40:39+00:00</updated>
		<content type="html">&lt;p&gt;moved [[&lt;a href=&quot;http://www.docunext.com/wiki/index.php?title=Issues_Tracker&amp;redirect=no&quot; class=&quot;mw-redirect&quot; title=&quot;Issues Tracker&quot;&gt;Issues Tracker&lt;/a&gt;]] to [[&lt;a href=&quot;http://www.docunext.com/wiki/Issue_Trackers&quot; title=&quot;Issue Trackers&quot;&gt;Issue Trackers&lt;/a&gt;]] typo&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Category:Issue Trackers</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Category:Issue_Trackers&amp;diff=10827&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Category:Issue_Trackers&amp;diff=10827&amp;oldid=prev</id>
		<updated>2010-08-23T14:40:13+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 14:40, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Issues &lt;/del&gt;Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Issue &lt;/ins&gt;Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-26 08:12:14 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Issues Trackers</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Issues_Trackers&amp;diff=0&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Issues_Trackers&amp;diff=0&amp;oldid=prev</id>
		<updated>2010-08-23T14:40:05+00:00</updated>
		<content type="html">&lt;p&gt;moved [[&lt;a href=&quot;http://www.docunext.com/wiki/index.php?title=Issues_Trackers&amp;redirect=no&quot; class=&quot;mw-redirect&quot; title=&quot;Issues Trackers&quot;&gt;Issues Trackers&lt;/a&gt;]] to [[&lt;a href=&quot;http://www.docunext.com/wiki/Issues_Tracker&quot; class=&quot;mw-redirect&quot; title=&quot;Issues Tracker&quot;&gt;Issues Tracker&lt;/a&gt;]] typo&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Bugzilla</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Bugzilla&amp;diff=10824&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Bugzilla&amp;diff=10824&amp;oldid=prev</id>
		<updated>2010-08-23T14:39:45+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 14:39, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(One intermediate revision not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 3:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 3:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Bugzilla Data Model]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Bugzilla Data Model]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== See Also ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Issue Trackers]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Bug Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Bug Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Bugzilla&lt;/del&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Issue Trackers&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-25 08:11:59 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Mantis</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Mantis&amp;diff=10822&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Mantis&amp;diff=10822&amp;oldid=prev</id>
		<updated>2010-08-23T14:38:42+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 14:38, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 3:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 3:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Mantis Database Model]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Mantis Database Model]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== See Also ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Bugzilla]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Bug Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Bug Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Issue Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Issue Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:PHP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:PHP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-25 08:11:59 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Issues Trackers</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Issues_Trackers&amp;diff=10821&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Issues_Trackers&amp;diff=10821&amp;oldid=prev</id>
		<updated>2010-08-23T14:26:54+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'Issue trackers are programs which accept and track problems / issues / bugs / or customer services requests.   &lt;a href=&quot;http://www.docunext.com/wiki/Category:Issue_Trackers&quot; title=&quot;Category:Issue Trackers&quot;&gt;Category: Issue Trackers&lt;/a&gt;'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Issue trackers are programs which accept and track problems / issues / bugs / or customer services requests.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Issue Trackers]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Category:Issue Trackers</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Category:Issue_Trackers&amp;diff=10820&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Category:Issue_Trackers&amp;diff=10820&amp;oldid=prev</id>
		<updated>2010-08-23T14:26:36+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 14:26, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Issue trackers are programs which accept and track problems / issues / bugs / or customer services requests.&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;[[Issues Trackers]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">RT</title>
		<link href="http://www.docunext.com/wiki/index.php?title=RT&amp;diff=10819&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=RT&amp;diff=10819&amp;oldid=prev</id>
		<updated>2010-08-23T14:26:03+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 14:26, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;Request Tracker is &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;an issue tracker written in [[perl]]. As I understand it&lt;/del&gt;, &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;RT has very good [[email]] support&lt;/del&gt;. It &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;was &lt;/del&gt;written &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;and is maintained by &lt;/del&gt;[[&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Best Practical&lt;/del&gt;]].&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;Request Tracker is &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;a software package used for tracking requests, which can include feature requests&lt;/ins&gt;, &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;bug reports, and customer service requests&lt;/ins&gt;. It &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;is &lt;/ins&gt;written &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;in &lt;/ins&gt;[[&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Perl&lt;/ins&gt;]].&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;As I understand it, RT has very good [[email]] support. It was written and is maintained by [[Best Practical]].&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Issue Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Issue Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[SD]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[SD]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Freeside]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Freeside]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Perl]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Perl]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Issue Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Issue Trackers]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">RT Request Tracker</title>
		<link href="http://www.docunext.com/wiki/index.php?title=RT_Request_Tracker&amp;diff=10818&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=RT_Request_Tracker&amp;diff=10818&amp;oldid=prev</id>
		<updated>2010-08-23T14:25:28+00:00</updated>
		<content type="html">&lt;p&gt;Redirected page to &lt;a href=&quot;http://www.docunext.com/wiki/RT&quot; title=&quot;RT&quot;&gt;RT&lt;/a&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 14:25, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(2 intermediate revisions not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Request Tracker is a software package used for tracking requests, which can include feature requests, bug reports, and customer service requests. It is written in perl.&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;#REDIRECT [[RT]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">XML</title>
		<link href="http://www.docunext.com/wiki/index.php?title=XML&amp;diff=10815&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=XML&amp;diff=10815&amp;oldid=prev</id>
		<updated>2010-08-23T14:23:57+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 14:23, 23 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(One intermediate revision not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 7:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 7:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Example ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Example ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;pre class=&amp;quot;sh_xml&amp;quot;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;pre class=&amp;quot;sh_xml&amp;quot;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;blah&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;blah &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;snafu=&amp;quot;shamu&amp;quot;&lt;/ins&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;barf&amp;gt;foobar&amp;lt;/barf&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;lt;barf&amp;gt;foobar&amp;lt;/barf&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/blah&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/blah&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;In this example, &amp;quot;blah&amp;quot; and &amp;quot;barf&amp;quot; are elements, and &amp;quot;snafu&amp;quot; is an attribute.&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== XML Subsets ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== XML Subsets ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 17:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 19:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[UBL]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[UBL]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Command Line Apps with XML Support]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Command Line Apps with XML Support]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[XSLT]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[XSLT]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 23:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 25:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Expat]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Expat]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;External &lt;/del&gt;Links ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [http://www.xml-info.com/ XML Information]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [http://www.xml-info.com/ XML Information]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:XML]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: XML&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;[[Category: Formats&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Apache2 Bridge Between S3 and DAV</title>
		<link href="http://feedproxy.google.com/~r/Docunext/~3/ZINIIRpYdkg/apache2-bridge-between-s3-and-dav.html"/>
		<id>tag:www.docunext.com,2010:/blog//250.21255</id>
		<updated>2010-08-22T19:48:46+00:00</updated>
		<content type="html" xml:lang="en">&lt;h2&gt;Experimenting with Apache, mod_perl, Apache2::S3, and DAV&lt;/h2&gt;

&lt;p&gt;I'm going to set this up today and see if this item on my &quot;to-do&quot; list works:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.docunext.com/blog/2010/08/to-do-test-apache2s3-as-a-dav-proxy-with-davfs2.html&quot; class=&quot;h3 strong&quot;&gt;To-Do: Test Apache2::S3 as a DAV Proxy with DAVFS2&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Alas, it didn't work. I didn't use davfs2, but actually that's what encouraged me to try this today! After tinkering around the &lt;a href=&quot;http://www.docunext.com/blog/2010/08/some-ubuntu-customizations-im-using-with-lucid-lynx-1004.html&quot;&gt;Lucid Lynx Ubuntu system&lt;/a&gt; I recently setup on my &lt;a href=&quot;http://www.my-tech-deals.com/blog/2010/08/review-of-the-lenovo-g555.html&quot;&gt;Lenovo G555&lt;/a&gt; I noticed something that sounded familiar but hadn't actually seen before: &lt;strong&gt;.gvfs&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;What is GVFS?&lt;/h2&gt;

&lt;p&gt;GVFS is the successor to the Gnome virtual file system. Thankfully, it doesn't need the usual hardware abstraction layer (HAL) and is apparently very modular, kind of like PAM. I happened upon the hidden .gvfs folder in my home directory while trying to clean it up, with a goal of putting all my settings in $XDG&lt;em&gt;CONFIG&lt;/em&gt;HOME (aka ~/.config). Would I want to delete .gvfs? Turns out I definitely want to keep it -- in my humble opinion it is a very very cool little folder! Not so much for what it as a folder does, but for what it alerted me to - the brand new world of GVFS at large.&lt;/p&gt;

&lt;p&gt;On my Lucid Lynx install, I have these gvfs related packages installed:&lt;/p&gt;

&lt;pre class=&quot;sh_sh&quot;&gt;
lash@lenovo-g555-2:~$ dpkg -l | grep gvfs
ii  gvfs                                  1.6.1-0ubuntu1build1                            userspace virtual filesystem - server
ii  gvfs-backends                         1.6.1-0ubuntu1build1                            userspace virtual filesystem - backends
ii  gvfs-bin                              1.6.1-0ubuntu1build1                            userspace virtual filesystem - binaries
ii  gvfs-fuse                             1.6.1-0ubuntu1build1                            userspace virtual filesystem - fuse server
ii  libgvfscommon0    
&lt;/pre&gt;

&lt;p&gt;Get the idea? Good! I'll elaborate anyway! Docunext readers may be familiar with &lt;a href=&quot;http://www.docunext.com/wiki/FUSE&quot;&gt;FUSE&lt;/a&gt;, I know I am - I've been using SSHFS to mount filesystems over the SSH protocol for years, though I've been using NFS more often these days. I still use FUSE all the time for Encfs, too.&lt;/p&gt;

&lt;p&gt;Anyway, from what I've learned so far, gvfs is a set of tools, abstraction layers, and programming interfaces to provide tighter integration of FUSE, as well as other filesystem backends, with Gnome. While reading up on gvfs, I discovered that &lt;a href=&quot;http://thiblahute.blogspot.com/2010/01/good-news-about-google-documents-gvfs.html&quot;&gt;Thibault Saunier is working on a Google Docs interface to gvfs&lt;/a&gt;! Believe in the gDrive! The &lt;a href=&quot;http://www.telecomrebirth.com/blog/2010/08/droid-x-review.html&quot;&gt;gPhone&lt;/a&gt; came true!!&lt;/p&gt;

&lt;p&gt;This got me thinking and reminded me that I wanted to try connecting S3 to DAV with Apache2::S3. But as my test confirmed, that won't work at all:&lt;/p&gt;

&lt;pre class=&quot;sh_log&quot;&gt;
[Sun Aug 22 18:07:02 2010] [error] [client 192.168.1.215] &amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;\n&amp;lt;Error&gt;&amp;lt;Code&gt;MethodNotAllowed&amp;lt;/Code&gt;&amp;lt;Message&gt;The specified method is not allowed against this resource.&amp;lt;/Message&gt;&amp;lt;ResourceType&gt;BUCKET&amp;lt;/ResourceType&gt;&amp;lt;Method&gt;PROPFIND&amp;lt;/Method&gt;&amp;lt;RequestId&gt;B0DA9D7EE6DE73AD&amp;lt;/RequestId&gt;&amp;lt;AllowedMethod&gt;PUT&amp;lt;/AllowedMethod&gt;&amp;lt;HostId&gt;tIbZEhZarXoApiO9wzD23fLIrGiYqZ+DKhUxiFYXmG5frXO6faXdpOLgGEAx2Fwc&amp;lt;/HostId&gt;&amp;lt;/Error&gt; at /usr/local/share/perl/5.10.1/Apache2/S3.pm line 153.\n
&lt;/pre&gt;

&lt;p&gt;So, it looks like S3FS it the best bet, though that one definitely needs some more work, too.&lt;/p&gt;

        

    
&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/266BgGvGf9DyBZOnQ9hdO_x_XUw/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/266BgGvGf9DyBZOnQ9hdO_x_XUw/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/266BgGvGf9DyBZOnQ9hdO_x_XUw/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/266BgGvGf9DyBZOnQ9hdO_x_XUw/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Docunext/~4/ZINIIRpYdkg&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Albert</name>
			<uri>http://www.docunext.com/</uri>
		</author>
		<source>
			<title type="html">DOCUNEXT</title>
			<subtitle type="html">Open Source Mirrors, Wiki, Labs.</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/Docunext"/>
			<id>tag:www.docunext.com,2008-09-16://250</id>
			<updated>2010-08-30T20:10:09+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">S3fs</title>
		<link href="http://www.docunext.com/wiki/index.php?title=S3fs&amp;diff=10813&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=S3fs&amp;diff=10813&amp;oldid=prev</id>
		<updated>2010-08-22T19:38:21+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 19:38, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 52:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 52:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;## Links&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;## Links&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://blog.foaa.de/2009/09/building-fuse-s3fs-debian-package/&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://blog.foaa.de/2009/09/building-fuse-s3fs-debian-package/&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;Tried to post this comment at foaa.de: &lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;Thanks for sharing your notes. I've been tinkering with s3fs for awhile too and found your page awhile back. Today I returned to get the list of build requirement, which thankfully you have posted. To try and return the favor, I'm commenting to let you know about the typo - it should be build-essential, not build-essentials. Hope that helps, thanks again!&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: S3]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: S3]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Filesystems]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Filesystems]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">DAVFS2</title>
		<link href="http://www.docunext.com/wiki/index.php?title=DAVFS2&amp;diff=10812&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=DAVFS2&amp;diff=10812&amp;oldid=prev</id>
		<updated>2010-08-22T19:11:19+00:00</updated>
		<content type="html">&lt;p&gt;Redirected page to &lt;a href=&quot;http://www.docunext.com/wiki/Davfs2&quot; title=&quot;Davfs2&quot;&gt;Davfs2&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;#REDIRECT [[Davfs2]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Davfs2</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Davfs2&amp;diff=10811&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Davfs2&amp;diff=10811&amp;oldid=prev</id>
		<updated>2010-08-22T19:06:23+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'DAVFS2 is a &lt;a href=&quot;http://www.docunext.com/wiki/FUSE&quot; title=&quot;FUSE&quot;&gt;FUSE&lt;/a&gt; module to mount &lt;a href=&quot;http://www.docunext.com/wiki/DAV&quot; title=&quot;DAV&quot;&gt;DAV&lt;/a&gt; shares as local &lt;a href=&quot;http://www.docunext.com/wiki/Filesystems&quot; class=&quot;mw-redirect&quot; title=&quot;Filesystems&quot;&gt;filesystems&lt;/a&gt;.   == See Also == * &lt;a href=&quot;http://www.docunext.com/wiki/DAV&quot; title=&quot;DAV&quot;&gt;DAV&lt;/a&gt; * &lt;a href=&quot;http://www.docunext.com/wiki/FUSE&quot; title=&quot;FUSE&quot;&gt;FUSE&lt;/a&gt;   &lt;a href=&quot;http://www.docunext.com/wiki/Category:Filesystems&quot; title=&quot;Category:Filesystems&quot;&gt;Category: Filesystems&lt;/a&gt; &lt;a href=&quot;http://www.docunext.com/wiki/Category:DAV&quot; title=&quot;Category:DAV&quot;&gt;Category: DAV&lt;/a&gt; [[Category: FUSE...'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;DAVFS2 is a [[FUSE]] module to mount [[DAV]] shares as local [[filesystems]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[DAV]]&lt;br /&gt;
* [[FUSE]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Filesystems]]&lt;br /&gt;
[[Category: DAV]]&lt;br /&gt;
[[Category: FUSE]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Dav</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Dav&amp;diff=10810&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Dav&amp;diff=10810&amp;oldid=prev</id>
		<updated>2010-08-22T19:04:58+00:00</updated>
		<content type="html">&lt;p&gt;Redirected page to &lt;a href=&quot;http://www.docunext.com/wiki/DAV&quot; title=&quot;DAV&quot;&gt;DAV&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;#REDIRECT [[DAV]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">FUSE</title>
		<link href="http://www.docunext.com/wiki/index.php?title=FUSE&amp;diff=10809&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=FUSE&amp;diff=10809&amp;oldid=prev</id>
		<updated>2010-08-22T19:00:58+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 19:00, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 10:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 10:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[ZFS]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[ZFS]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[NTFS]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[NTFS]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Davfs2]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[S3fs]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Httpfs2]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Clamfs]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Flickrfs]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Gphotofs]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Mythtvfs]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Mp3fs]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Rofs]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Unionfs-fuse]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== See Also ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[DAV]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[S3]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[GVFS]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Aptfs]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Filesystems]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Filesystems]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Mod dav</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Mod_dav&amp;diff=10808&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Mod_dav&amp;diff=10808&amp;oldid=prev</id>
		<updated>2010-08-22T17:58:35+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'An &lt;a href=&quot;http://www.docunext.com/wiki/Apache&quot; title=&quot;Apache&quot;&gt;Apache&lt;/a&gt; module for &lt;a href=&quot;http://www.docunext.com/wiki/DAV&quot; title=&quot;DAV&quot;&gt;DAV&lt;/a&gt; which essentially means that &lt;a href=&quot;http://www.docunext.com/wiki/Apache&quot; title=&quot;Apache&quot;&gt;Apache&lt;/a&gt; can be a network file server.   == Configuration Example from Apache.org ==  &amp;lt;pre&amp;gt; DavLockDB /usr/local/a...'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;An [[Apache]] module for [[DAV]] which essentially means that [[Apache]] can be a network file server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration Example from Apache.org ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
DavLockDB /usr/local/apache2/var/DavLock&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Location /foo&amp;gt;&lt;br /&gt;
Dav On&lt;br /&gt;
&lt;br /&gt;
AuthType Basic&lt;br /&gt;
AuthName DAV&lt;br /&gt;
AuthUserFile user.passwd&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LimitExcept GET OPTIONS&amp;gt;&lt;br /&gt;
require user admin&lt;br /&gt;
&amp;lt;/LimitExcept&amp;gt;&lt;br /&gt;
&amp;lt;/Location&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[DAV]]&lt;br /&gt;
* [[Apache]]&lt;br /&gt;
&lt;br /&gt;
[[Category: Apache]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Apache</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Apache&amp;diff=10807&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Apache&amp;diff=10807&amp;oldid=prev</id>
		<updated>2010-08-22T17:55:12+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Content:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 17:55, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(One intermediate revision not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 56:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 56:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[xslt-filter]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[xslt-filter]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[mod_tidy]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[mod_tidy]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[mod_dav]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;===Access Control===&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;===Access Control===&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 76:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 77:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[mod_extract_forwarded]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[mod_extract_forwarded]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[lighttpd]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[lighttpd]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Hiawatha]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Hiawatha]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Some Ubuntu Customizations I'm Using with Lucid Lynx 10.04</title>
		<link href="http://feedproxy.google.com/~r/Docunext/~3/jZGgXTVvoGU/some-ubuntu-customizations-im-using-with-lucid-lynx-1004.html"/>
		<id>tag:www.docunext.com,2010:/blog//250.21254</id>
		<updated>2010-08-22T13:38:42+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;I've installed Ubuntu version 10.04 aka Lucid Lynx on my &lt;a href=&quot;http://www.my-tech-deals.com/blog/2010/08/review-of-the-lenovo-g555.html&quot;&gt;Lenovo G555&lt;/a&gt; and I've just about got it setup how I want, though I definitely made some changes!&lt;/p&gt;

&lt;h2&gt;Awesome Window Manager&lt;/h2&gt;

&lt;p&gt;I kept the Gnome default install and setup Awesome following the instructions provided on the &lt;a href=&quot;http://awesome.naquadah.org/wiki/Quickly_Setting_up_Awesome_with_Gnome&quot;&gt;Awesome wiki&lt;/a&gt;:&lt;/p&gt;

&lt;pre class=&quot;sh_sh&quot;&gt;
apt-get install awesome awesome-extra
gconftool-2 --type bool --set /apps/nautilus/preferences/show_desktop False
 # Still disable the buggy Nautilus desktop thing
 gconftool-2 --type string --set /desktop/gnome/session/required_components/windowmanager awesome
 # sets awesome as wm
&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;~/.local/share/applications/awesome.desktop&lt;/strong&gt;&lt;/p&gt;

&lt;pre class=&quot;sh_sh&quot;&gt;
[Desktop Entry]
 Version=1.0
 Type=Application
 Name=Awesome
 Comment=The awesome launcher!
 TryExec=awesome
 Exec=awesome
&lt;/pre&gt;

&lt;p&gt;Then I customized my .config/awesome/rc.lua file as I have done in the past.&lt;/p&gt;

&lt;p&gt;So far Gnome Keyring is working, so I'll stick with gdm. I moved the bottom panel, opting for the Awesome wiibox, then put the top Gnome panel on the bottom with auto-hide turned on.&lt;/p&gt;

&lt;h2&gt;Removing Ubuntu One, Shutting Down Unused Services&lt;/h2&gt;

&lt;p&gt;I removed &lt;a href=&quot;http://www.docunext.com/wiki/Ubuntu_One&quot;&gt;Ubuntu One following the instructions mentioned in the Docunext wiki&lt;/a&gt;, and then stopped a whole bunch of stuff I don't use in Preferences -&gt; Startup Applications, such as bluetooth.&lt;/p&gt;

&lt;h2&gt;Pam Environment&lt;/h2&gt;

&lt;p&gt;I added pam_env to /etc/pam.d/common-session so I could set some environment variables upon login via gdm / xdm / ssh whatever.&lt;/p&gt;

        

    
&lt;p&gt;&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/a3_eLMnCK9LHXTTULkp6TTXzbig/0/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/a3_eLMnCK9LHXTTULkp6TTXzbig/0/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://feedads.g.doubleclick.net/~a/a3_eLMnCK9LHXTTULkp6TTXzbig/1/da&quot;&gt;&lt;img src=&quot;http://feedads.g.doubleclick.net/~a/a3_eLMnCK9LHXTTULkp6TTXzbig/1/di&quot; border=&quot;0&quot; ismap=&quot;true&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Docunext/~4/jZGgXTVvoGU&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Albert</name>
			<uri>http://www.docunext.com/</uri>
		</author>
		<source>
			<title type="html">DOCUNEXT</title>
			<subtitle type="html">Open Source Mirrors, Wiki, Labs.</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/Docunext"/>
			<id>tag:www.docunext.com,2008-09-16://250</id>
			<updated>2010-08-30T20:10:09+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Lucid Lynx</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Lucid_Lynx&amp;diff=10805&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Lucid_Lynx&amp;diff=10805&amp;oldid=prev</id>
		<updated>2010-08-22T13:11:37+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'Lucid Lynx is &lt;a href=&quot;http://www.docunext.com/wiki/Ubuntu&quot; title=&quot;Ubuntu&quot;&gt;Ubuntu&lt;/a&gt; version 10.04 and its the version I'm using as I write this. I have to give &lt;a href=&quot;http://www.docunext.com/wiki/Ubuntu&quot; title=&quot;Ubuntu&quot;&gt;Ubuntu&lt;/a&gt; a lot of credit for their coordination and collaboration efforts w...'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Lucid Lynx is [[Ubuntu]] version 10.04 and its the version I'm using as I write this. I have to give [[Ubuntu]] a lot of credit for their coordination and collaboration efforts within the open source community, though I'm not crazy about some of their diversions from [[Debian]], like [[Upstart]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Ubuntu]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Ubuntu</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Ubuntu&amp;diff=10804&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Ubuntu&amp;diff=10804&amp;oldid=prev</id>
		<updated>2010-08-22T13:09:51+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Versions:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 13:09, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 5:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 5:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Jaunty Jackalope]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Jaunty Jackalope]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Karmic Koala]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Karmic Koala]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Lucid Lynx]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Variations ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Variations ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Ubuntu One</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Ubuntu_One&amp;diff=10803&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Ubuntu_One&amp;diff=10803&amp;oldid=prev</id>
		<updated>2010-08-22T13:03:03+00:00</updated>
		<content type="html">&lt;p&gt;Created page with 'Ubuntu One is a service offered by to &lt;a href=&quot;http://www.docunext.com/wiki/Ubuntu&quot; title=&quot;Ubuntu&quot;&gt;Ubuntu&lt;/a&gt; users to manage their information across multiple computers (and devices?).  It looks interested but at the moment I'm planning o...'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Ubuntu One is a service offered by to [[Ubuntu]] users to manage their information across multiple computers (and devices?).&lt;br /&gt;
&lt;br /&gt;
It looks interested but at the moment I'm planning on removing it as I don't have time to tinker with it.&lt;br /&gt;
&lt;br /&gt;
Thankfully, it was quite easy:&lt;br /&gt;
&lt;br /&gt;
* [https://answers.launchpad.net/ubuntuone-client/+faq/778 Remove Ubuntu One]&lt;br /&gt;
&lt;br /&gt;
[[Category: Ubuntu]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Ubuntu</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Ubuntu&amp;diff=10802&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Ubuntu&amp;diff=10802&amp;oldid=prev</id>
		<updated>2010-08-22T12:54:28+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Variations:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 12:54, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 19:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 19:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;In my humble opinion, this is an awesome distribution. As solid and reliable as [[Debian]], a smart and active community like [[Gentoo]], and user-friendly and luxurious like Mac OS X.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;In my humble opinion, this is an awesome distribution. As solid and reliable as [[Debian]], a smart and active community like [[Gentoo]], and user-friendly and luxurious like Mac OS X.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== Ubuntu and [[Canonical]] Services ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Ubuntu One]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Canonical Landscape]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Related Pages ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;== Related Pages ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">PAM</title>
		<link href="http://www.docunext.com/wiki/index.php?title=PAM&amp;diff=10801&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=PAM&amp;diff=10801&amp;oldid=prev</id>
		<updated>2010-08-22T08:48:51+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 08:48, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(One intermediate revision not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 11:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 11:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Related Pages &lt;/del&gt;==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;See Also &lt;/ins&gt;==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[LDAP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[LDAP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Pam Environment]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Security]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Security]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Authentication]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Authentication]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: PAM]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Category:PAM</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Category:PAM&amp;diff=10799&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Category:PAM&amp;diff=10799&amp;oldid=prev</id>
		<updated>2010-08-22T08:48:19+00:00</updated>
		<content type="html">&lt;p&gt;Created page with '&lt;a href=&quot;http://www.docunext.com/wiki/PAM&quot; title=&quot;PAM&quot;&gt;PAM&lt;/a&gt;'&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[PAM]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Pam Environment</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Pam_Environment&amp;diff=10798&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Pam_Environment&amp;diff=10798&amp;oldid=prev</id>
		<updated>2010-08-22T08:48:04+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;I think I may have finally found the appropriate place to set environment variables upon login either through xdm, gdm, the console, or [[SSH]]!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== /etc/pam.d/common-session ===&lt;br /&gt;
&amp;lt;pre class=&amp;quot;sh_sh&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# /etc/pam.d/common-session - session-related modules common to all services&lt;br /&gt;
#&lt;br /&gt;
# This file is included from other service-specific PAM config files,&lt;br /&gt;
# and should contain a list of modules that define tasks to be performed&lt;br /&gt;
# at the start and end of sessions of *any* kind (both interactive and&lt;br /&gt;
# non-interactive).&lt;br /&gt;
#&lt;br /&gt;
# As of pam 1.0.1-6, this file is managed by pam-auth-update by default.&lt;br /&gt;
# To take advantage of this, it is recommended that you configure any&lt;br /&gt;
# local modules either before or after the default block, and use&lt;br /&gt;
# pam-auth-update to manage selection of other modules.  See&lt;br /&gt;
# pam-auth-update(8) for details.&lt;br /&gt;
&lt;br /&gt;
# here are the per-package modules (the &amp;quot;Primary&amp;quot; block)&lt;br /&gt;
session	[default=1]			pam_permit.so&lt;br /&gt;
# here's the fallback if no module succeeds&lt;br /&gt;
session	requisite			pam_deny.so&lt;br /&gt;
# prime the stack with a positive return value if there isn't one already;&lt;br /&gt;
# this avoids us returning an error just because nothing sets a success code&lt;br /&gt;
# since the modules above will each just jump around&lt;br /&gt;
session	required			pam_permit.so&lt;br /&gt;
# and here are more per-package modules (the &amp;quot;Additional&amp;quot; block)&lt;br /&gt;
session	required	pam_unix.so &lt;br /&gt;
session	optional			pam_winbind.so &lt;br /&gt;
session	optional			pam_ck_connector.so nox11&lt;br /&gt;
# end of pam-auth-update config&lt;br /&gt;
&lt;br /&gt;
session required	pam_env.so user_envfile=.config/pam_environment&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The important line is:&lt;br /&gt;
&lt;br /&gt;
'''session required	pam_env.so user_envfile=.config/pam_environment'''&lt;br /&gt;
&lt;br /&gt;
My .config/pam_environment file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;sh_sh&amp;quot;&amp;gt;&lt;br /&gt;
GIMP2_DIRECTORY=.config/gimp-2.6&lt;br /&gt;
http_proxy=&amp;quot;http://127.0.0.1:3128/&amp;quot;&lt;br /&gt;
https_proxy=&amp;quot;http://127.0.0.1:3128/&amp;quot;&lt;br /&gt;
UNISON=$HOME/.config/unison&lt;br /&gt;
GTK2_RC_FILES=$XDG_CONFIG_HOME/gtkrc-2.0&lt;br /&gt;
GIT_CONFIG=$XDG_CONFIG_HOME/.git/config                                          &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: PAM]]&lt;br /&gt;
[[Category: Login]]&lt;/div&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">XDG CONFIG HOME</title>
		<link href="http://www.docunext.com/wiki/index.php?title=XDG_CONFIG_HOME&amp;diff=10795&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=XDG_CONFIG_HOME&amp;diff=10795&amp;oldid=prev</id>
		<updated>2010-08-22T06:57:43+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Gimp:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 06:57, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(2 intermediate revisions not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 10:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 10:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;NO! That totally doesn't work!&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;I think the solution might be to use pam_env.so! See [[Pam Environment]].&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&amp;lt;pre class=&amp;quot;sh_sh&amp;quot;&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;# MUST BE RELATIVE, NO TILDA&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;GIMP2_DIRECTORY=.config/gimp-2.6&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&amp;lt;/pre&amp;gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== [[Unison]] ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;=== [[OfflineIMAP]] ===&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;=== [[OfflineIMAP]] ===&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Backup</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Backup&amp;diff=10792&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Backup&amp;diff=10792&amp;oldid=prev</id>
		<updated>2010-08-22T05:16:07+00:00</updated>
		<content type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Backup software:&amp;#32;&lt;/span&gt; &lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 05:16, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;4&quot; align=&quot;center&quot; class=&quot;diff-multi&quot;&gt;(2 intermediate revisions not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;==Backup software==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;==Backup software==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Bacula]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Bacula]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Retrospect&lt;/del&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Backup Manager]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;* [[Duplicity]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;* [[Rdiff-backup&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;External &lt;/del&gt;Links ==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.webhostingtalk.com/archive/index.php/t-434055.html&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.webhostingtalk.com/archive/index.php/t-434055.html&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;[[Category: Backups]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 20:14:03 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Category:Backups</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Category:Backups&amp;diff=10789&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Category:Backups&amp;diff=10789&amp;oldid=prev</id>
		<updated>2010-08-22T05:14:40+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 05:14, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;Backups are very important!&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;[[&lt;/ins&gt;Backups&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;]] &lt;/ins&gt;are very important!&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 16:10:35 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Backup-manager</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Backup-manager&amp;diff=10788&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Backup-manager&amp;diff=10788&amp;oldid=prev</id>
		<updated>2010-08-22T05:12:55+00:00</updated>
		<content type="html">&lt;p&gt;Redirected page to &lt;a href=&quot;http://www.docunext.com/wiki/Backup_Manager&quot; title=&quot;Backup Manager&quot;&gt;Backup Manager&lt;/a&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 05:12, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;This is a command line backup tool I found out about thanks to Planet &lt;/del&gt;[[&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Debian]]. Today I finally tried it out and it works great - its simple AND full-featured. Nice.&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;#REDIRECT &lt;/ins&gt;[[&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;Backup Manager&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;I'm using it a little differently, I'm backing up a few hosts over a network using [[rsync]], and then using backup-manager to make tarballs from those directories. This might generally be the same thing as the option for backup manager to use the &amp;quot;tarball-incremental&amp;quot; backup method.&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;Another thing that kind of annoys me is that you need to use [[SSH]] when using rsync as an upload method. Although I don't like [[FTP]], I'm using it with backup-manager for simplicity.&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;[[Category:Backups&lt;/del&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 16:10:36 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Backup Manager</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Backup_Manager&amp;diff=10787&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Backup_Manager&amp;diff=10787&amp;oldid=prev</id>
		<updated>2010-08-22T05:12:46+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 05:12, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* Transfer backups to remote storage systems, like [[S3]], or basic transfers with [[Rsync]] or [[FTP]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* Transfer backups to remote storage systems, like [[S3]], or basic transfers with [[Rsync]] or [[FTP]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Encryption]] with [[GPG]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Encryption]] with [[GPG]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== My Experience with Backup Manager ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;This is a command line backup tool I found out about thanks to Planet [[Debian]]. Today I finally tried it out and it works great - its simple AND full-featured. Nice.&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;I'm using it a little differently, I'm backing up a few hosts over a network using [[rsync]], and then using backup-manager to make tarballs from those directories. This might generally be the same thing as the option for backup manager to use the &amp;quot;tarball-incremental&amp;quot; backup method.&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;Another thing that kind of annoys me is that you need to use [[SSH]] when using rsync as an upload method. Although I don't like [[FTP]], I'm using it with backup-manager for simplicity.&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 16:10:36 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Bacula</title>
		<link href="http://www.docunext.com/wiki/index.php?title=Bacula&amp;diff=10786&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=Bacula&amp;diff=10786&amp;oldid=prev</id>
		<updated>2010-08-22T05:11:54+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 05:11, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Configuration Files]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* [[Configuration Files]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;== See Also ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Backup Manager]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Backup Ninja]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Deja Dup]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins&gt;* [[Duplicity]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;== &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;External &lt;/del&gt;Links==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;== Links==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.bacula.org/en/&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;* http://www.bacula.org/en/&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Backups]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Backups]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 16:10:36 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">GnuPG</title>
		<link href="http://www.docunext.com/wiki/index.php?title=GnuPG&amp;diff=10785&amp;oldid=prev"/>
		<id>http://www.docunext.com/wiki/index.php?title=GnuPG&amp;diff=10785&amp;oldid=prev</id>
		<updated>2010-08-22T05:10:34+00:00</updated>
		<content type="html">&lt;p&gt;&lt;/p&gt;

		&lt;table&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;col class=&quot;diff-marker&quot; /&gt;
		&lt;col class=&quot;diff-content&quot; /&gt;
		&lt;tr valign=&quot;top&quot;&gt;
		&lt;td colspan=&quot;2&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan=&quot;2&quot;&gt;Revision as of 05:10, 22 August 2010&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 5:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 5:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Privacy]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;== See Also ==&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;-&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category:Security]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;* [[GNU]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;* [[Email]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Privacy]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;[[Category: Security&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;&lt;td&gt;&lt;div&gt;&lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;[[Category: Encryption&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff generator: internal 2010-08-23 16:10:36 --&gt;
&lt;/table&gt;</content>
		<author>
			<name>Admin</name>
			<uri>http://www.docunext.com/wiki/Special:RecentChanges</uri>
		</author>
		<source>
			<title type="html">Docunext Technology Wiki  - Recent changes [en]</title>
			<subtitle type="html">Track the most recent changes to the wiki in this feed.</subtitle>
			<link rel="self" href="http://www.docunext.com/wiki/Special:Recentchanges&amp;feed=atom"/>
			<id>http://www.docunext.com/wiki/index.php?title=Special:RecentChanges&amp;feed=atom</id>
			<updated>2010-08-30T08:12:22+00:00</updated>
		</source>
	</entry>

</feed>
