<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>
<channel>
	<title>G-Loaded Journal &#187; Documentation</title>
	<atom:link href="http://www.g-loaded.eu/tag/documentation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.g-loaded.eu</link>
	<description>An open-source software and technology related journal</description>
	<lastBuildDate>Mon, 05 Dec 2011 19:55:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
		<item>
		<title>How to create a single file of Sphinx based documentation</title>
		<link>http://www.g-loaded.eu/2010/10/29/sphinx-documentation-single-file/</link>
		<comments>http://www.g-loaded.eu/2010/10/29/sphinx-documentation-single-file/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 17:17:13 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Printing]]></category>
		<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=2073</guid>
		<description><![CDATA[It has become common nowadays that Python projects provide their documentation in &#8220;source form&#8220;. The documentation is split into multiple files, written in restructured text, and is shipped together with some other configuration and media files for Sphinx. The user is meant to use the provided Makefile to export the documentation in various formats. This [...]]]></description>
			<content:encoded><![CDATA[<p>It has become common nowadays that Python projects provide their documentation in &#8220;<em>source form</em>&#8220;. The documentation is split into multiple files, written in <a href="http://docutils.sourceforge.net/rst.html">restructured text</a>, and is shipped together with some other configuration and media files for <a href="http://sphinx.pocoo.org">Sphinx</a>. The user is meant to use the provided <code>Makefile</code> to export the documentation in various formats. This is good and useful. Sphinx generates some nice and very readable HTML files. The only problem I encountered today was that the provided <em>Makefile</em> or <em>make.bat</em> batch script (for Windows) cannot be used to generate a <strong>single file</strong> containing the whole documentation of the project. At first, it seemed that in order to print the whole documentation I should either:<br />
<span id="more-2073"></span></p>
<ul>
<li>export the documentation into multiple HTML files using <strong>make html</strong> and then send the relevant html files one-by-one to the printer, which is insanely inconvenient, or</li>
<li>export the documentation to LaTeX format and then use a <code>tex-to-pdf</code> converter in order to merge the documentation files into a single file, which I would finally send to the printer. It should be noted that in this case, the tex-to-pdf converter had some other dependencies which summed up to 130+MB. Compressed. That&#8217;s insanely too much for converting the documentation to single-file form!!!</li>
</ul>
<p>So, I ended up <a href="http://www.g-loaded.eu/2005/10/03/search-a-string-in-multiple-files/">using grep</a> to scan the sphinx source code for expressions like <em>single</em>, <em>single file</em> etc. I soon hit <em>singlehtml</em>! Fortunately, there is a builder, named <strong>singlehtml</strong>, that produces a single HTML document for documentation that is split into multiple files. Hooray!!</p>
<p>I used the <strong>sphinx-build</strong> utility directly to generate a single HTML document containing the entire documentation. After changing to the documentation&#8217;s root directory, I issued the command:</p>
<pre class="console">
sphinx-build -b singlehtml . zzz
</pre>
<p>I finally had a single HTML file at <code>zzz/index.html</code>, which I sent to the printer and got some nice documentation in-print.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2010/10/29/sphinx-documentation-single-file/">How to create a single file of Sphinx based documentation</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2005/11/10/using-a-cups-printer-from-command-line/" rel="bookmark">Using a CUPS printer from command line</a></li>
<li><a href="http://www.g-loaded.eu/2005/11/10/print-to-cups-printer-instances/" rel="bookmark">Print to CUPS printer instances</a></li>
<li><a href="http://www.g-loaded.eu/2007/03/05/print-a-man-page/" rel="bookmark">Print a Man Page</a></li>
<li><a href="http://www.g-loaded.eu/2009/01/22/effective-data-wiping-with-a-single-complete-overwrite/" rel="bookmark">Effective data wiping with a single complete overwrite</a></li>
<li><a href="http://www.g-loaded.eu/2005/10/01/another-way-to-create-a-text-file/" rel="bookmark">Another way to create a text file</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2010/10/29/sphinx-documentation-single-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>OpenSolaris ZFS Screencasts and Documentation Links</title>
		<link>http://www.g-loaded.eu/2009/04/12/opensolaris-zfs-screencasts-and-documentation-links/</link>
		<comments>http://www.g-loaded.eu/2009/04/12/opensolaris-zfs-screencasts-and-documentation-links/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 17:25:14 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Screencast]]></category>
		<category><![CDATA[ZFS]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/?p=1064</guid>
		<description><![CDATA[This post incudes a list of ZFS related screencast links and documentation links that you might find useful. Here is a list of screencasts that go through the use of ZFS on OpenSolaris: ZFS Basics 100 Mirrored Filesystems in 5 minutes, which also goes through the basic use of ZFS Self Healing with ZFS Also, [...]]]></description>
			<content:encoded><![CDATA[<p>This post incudes a list of <a href="http://opensolaris.org/os/community/zfs/">ZFS</a> related screencast links and documentation links that you might find useful.<br />
<span id="more-1064"></span><br />
Here is a list of screencasts that go through the use of <a href="http://opensolaris.org/os/community/zfs/">ZFS</a> on OpenSolaris:</p>
<ul>
<li><a href="http://webcast-west.sun.com/interactive/09A12416/index.html">ZFS Basics</a></li>
<li><a href="http://opensolaris.org/os/community/zfs/demos/basics/">100 Mirrored Filesystems in 5 minutes</a>, which also goes through the basic use of ZFS</li>
<li><a href="http://opensolaris.org/os/community/zfs/demos/selfheal/">Self Healing with ZFS</a></li>
</ul>
<p>Also, here are some useful links to documentation:</p>
<ul>
<li><a href="http://www.opensolaris.org/os/community/zfs/docs/">ZFS Documentation</a> &#8211; base of docs</li>
<li><a href="http://opensolaris.org/os/community/zfs/intro/">Getting started guide</a></li>
<li><a href="http://www.solarisinternals.com/wiki/index.php/ZFS_Best_Practices_Guide">ZFS Best Practices Guide</a></li>
<li><a href="http://www.opensolaris.org/os/community/zfs/docs/zfsadmin.pdf">Solaris ZFS Administration Guide</a> (pdf)</li>
<li><a href="http://www.sun.com/software/solaris/zfs_learning_center.jsp">Sun&#8217;s ZFS Learning Center</a></li>
<li>finally, a full collection of <a href="http://www.opensolaris.org/os/community/zfs/links/">ZFS Reference Links</a></li>
</ul>
<p>Of course, I haven&#8217;t been through all of them&#8230; Well, I am not a professional sysadmin after all :) What I tried to do to create is a small collection of screencasts and documentation links that a curious FOSS user would find useful.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2009/04/12/opensolaris-zfs-screencasts-and-documentation-links/">OpenSolaris ZFS Screencasts and Documentation Links</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2009/05/07/some-more-useful-opensolaris-links/" rel="bookmark">Some More Useful OpenSolaris Links</a></li>
<li><a href="http://www.g-loaded.eu/2009/04/13/install-opensolaris-in-virtualbox-screencast/" rel="bookmark">Install OpenSolaris in VirtualBox &#8211; Screencast</a></li>
<li><a href="http://www.g-loaded.eu/2007/02/24/creative-commons-v30-licenses-launched/" rel="bookmark">Creative Commons v3.0 Licenses Launched</a></li>
<li><a href="http://www.g-loaded.eu/2009/04/11/minimal-opensolaris-installation-ovf-image/" rel="bookmark">Minimal OpenSolaris Installation &#8211; OVF Image</a></li>
<li><a href="http://www.g-loaded.eu/2007/02/28/tab-links-extension-for-the-epiphany-browser/" rel="bookmark">Tab Links extension for the Epiphany browser</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2009/04/12/opensolaris-zfs-screencasts-and-documentation-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Security Guides for Operating Systems by the NSA</title>
		<link>http://www.g-loaded.eu/2007/12/16/security-guides-for-operating-systems-by-the-nsa/</link>
		<comments>http://www.g-loaded.eu/2007/12/16/security-guides-for-operating-systems-by-the-nsa/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 11:59:21 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Red Hat]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Security]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/2007/12/16/security-guides-for-operating-systems-by-the-nsa/</guid>
		<description><![CDATA[The National Security Agency (NSA) of the USA has published some security configuration guides for various popular Operating Systems. Linux is covered by the Red Hat Enterprise Linux 5 security guide, but most of the included information can be easily translated to other Linux distributions. As it is clearly stated in the guide&#8217;s disclaimer, all [...]]]></description>
			<content:encoded><![CDATA[<p>The <em>National Security Agency</em> (<a href="http://www.nsa.gov/">NSA</a>) of the USA has published some <a href="http://www.nsa.gov/snac/downloads_os.cfm?MenuID=scg10.3.1.1">security configuration guides</a> for various popular Operating Systems. Linux is covered by the <a href="http://www.nsa.gov/snac/downloads_redhat.cfm?MenuID=scg10.3.1.1">Red Hat Enterprise Linux 5 security guide</a>, but most of the included information can be easily translated to other Linux distributions. As it is clearly stated in the guide&#8217;s disclaimer, all the included information only constitutes &#8220;<em>recommended security changes</em>&#8221; and not changes that should be made to all OS setups. Anyhow, even from the quick look I had inside, I can say that this is <em>professional work</em>. This document is an excellent read regardless of the Linux distribution you use. Guides for other operating systems, such as <em>Microsoft Windows</em>, <em>Apple MacOS X</em>, <em>Sun Solaris 8/9</em>, exist as well. I learned about these guides while browsing the mailing list archives of the Fedora Documentation Project (<a href="http://fedoraproject.org/wiki/DocsProject">FDP</a>) some days ago, so all credit goes to the person who posted it there in the first place.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2007/12/16/security-guides-for-operating-systems-by-the-nsa/">Security Guides for Operating Systems by the NSA</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2009/10/08/operating-systems-do-not-matter-any-more/" rel="bookmark">Operating Systems do not matter any more</a></li>
<li><a href="http://www.g-loaded.eu/2009/04/01/centos-community-enterprise-operating-system/" rel="bookmark">CentOS &#8211; Community ENTerprise Operating System</a></li>
<li><a href="http://www.g-loaded.eu/2006/04/07/awesome-awk-tutorial/" rel="bookmark">Awesome AWK Tutorial</a></li>
<li><a href="http://www.g-loaded.eu/2010/03/26/python-ssh-server-unix-twisted-conch/" rel="bookmark">Python SSH Server for UNIX Systems using Twisted.conch</a></li>
<li><a href="http://www.g-loaded.eu/2007/02/25/error-when-using-old-runbin-installers-under-linux/" rel="bookmark">Error when using old run/bin installers under Linux</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2007/12/16/security-guides-for-operating-systems-by-the-nsa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Print a Man Page</title>
		<link>http://www.g-loaded.eu/2007/03/05/print-a-man-page/</link>
		<comments>http://www.g-loaded.eu/2007/03/05/print-a-man-page/#comments</comments>
		<pubDate>Mon, 05 Mar 2007 15:22:36 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Printing]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Tips]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/2007/03/05/print-a-man-page/</guid>
		<description><![CDATA[Reading a man page using a terminal application is easy, but I doubt if it would ever win a convenience award. Sometimes, it is necessary to print the man page. I can recommend two ways of doing this. First, using the -t switch, when launching the man command from a terminal, causes the man page [...]]]></description>
			<content:encoded><![CDATA[<p>Reading a man page using a terminal application is easy, but I doubt if it would ever win a convenience award. Sometimes, it is necessary to print the man page. I can recommend two ways of doing this.<br />
<span id="more-367"></span><br />
First, using the <strong>-t</strong> switch, when launching the <strong>man</strong> command from a terminal, causes the man page to be formatted in <strong>Postscript</strong>. Technically, it uses <code>groff</code> to perform the conversion. More information about this can be found within the man command&#8217;s manual page (<code>man 1 man</code>).</p>
<p>The Postscript output can be piped to <strong>lpr</strong> for printing in a CUPS printer. The following example prints the <code>iptables</code> manual page to the <em>HP690C</em> printer:</p>
<pre class="console">$ man -t iptables | lpr -P HP690C</pre>
<p>Alternatively, the output can be saved to a postscript file:</p>
<pre class="console">$ man -t iptables > iptables.ps</pre>
<p>More on using a CUPS printer from the CLI can be found <a href="http://www.g-loaded.eu/2005/11/10/using-a-cups-printer-from-command-line/">here</a>.</p>
<p>Those who have the <a href="http://live.gnome.org/Yelp">Yelp</a> GNOME application installed, can take advantage of its internal man page parser and HTML converter. For example, in order to display the iptables man page in Yelp, launch it like the following:</p>
<pre class="console">$ yelp man:iptables</pre>
<p>From there, you can use the GNOME print dialog to print the iptables manual.</p>
<p>I tend to prefer the quality of the man page when it has been printed through Yelp.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2007/03/05/print-a-man-page/">Print a Man Page</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2005/11/10/print-to-cups-printer-instances/" rel="bookmark">Print to CUPS printer instances</a></li>
<li><a href="http://www.g-loaded.eu/2005/11/10/using-a-cups-printer-from-command-line/" rel="bookmark">Using a CUPS printer from command line</a></li>
<li><a href="http://www.g-loaded.eu/2006/05/04/write-a-man-page/" rel="bookmark">Write A Man Page</a></li>
<li><a href="http://www.g-loaded.eu/2006/09/23/use-python-to-get-the-web-page-data-in-epiphany/" rel="bookmark">Use Python to get the web page data in Epiphany</a></li>
<li><a href="http://www.g-loaded.eu/2006/12/03/pdf2email-cups-backend/" rel="bookmark">pdf2email CUPS Backend</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2007/03/05/print-a-man-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>LaTeX links for the absolute beginner</title>
		<link>http://www.g-loaded.eu/2006/11/27/latex-links-for-the-absolute-beginner/</link>
		<comments>http://www.g-loaded.eu/2006/11/27/latex-links-for-the-absolute-beginner/#comments</comments>
		<pubDate>Mon, 27 Nov 2006 12:31:03 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Book]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Publishing]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/2006/11/27/latex-links-for-the-absolute-beginner/</guid>
		<description><![CDATA[Today, I stumbled upon the following links, which seem to be what could get someone started with LaTeX. Andrew Roberts has done an exceptional job. His tutorials cover topics both for the absolute beginner and the medium experienced user. This is a must read! Actually, I found out about the above tutorials by this post, [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I stumbled upon the following links, which seem to be what could get someone started with LaTeX. Andrew Roberts has done an exceptional job. His <a href="http://www.andy-roberts.net/misc/latex/">tutorials</a> cover topics both for the absolute beginner and the medium experienced user. This is a must read! Actually, I found out about the above tutorials by this <a href="http://yakubovich.blogspot.com/2006/11/latex-for-nontechnical-user.html">post</a>, which contains an example of a book in LaTeX. Very interesting information.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2006/11/27/latex-links-for-the-absolute-beginner/">LaTeX links for the absolute beginner</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2007/02/24/creative-commons-v30-licenses-launched/" rel="bookmark">Creative Commons v3.0 Licenses Launched</a></li>
<li><a href="http://www.g-loaded.eu/2007/02/28/tab-links-extension-for-the-epiphany-browser/" rel="bookmark">Tab Links extension for the Epiphany browser</a></li>
<li><a href="http://www.g-loaded.eu/2009/04/12/opensolaris-zfs-screencasts-and-documentation-links/" rel="bookmark">OpenSolaris ZFS Screencasts and Documentation Links</a></li>
<li><a href="http://www.g-loaded.eu/2007/07/29/best-practices-of-software-licensing/" rel="bookmark">Best Practices of Software Licensing</a></li>
<li><a href="http://www.g-loaded.eu/2009/05/07/some-more-useful-opensolaris-links/" rel="bookmark">Some More Useful OpenSolaris Links</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2006/11/27/latex-links-for-the-absolute-beginner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Epiphany Python Console &#8211; Documentation</title>
		<link>http://www.g-loaded.eu/2006/05/17/epiphany-python-console-documentation/</link>
		<comments>http://www.g-loaded.eu/2006/05/17/epiphany-python-console-documentation/#comments</comments>
		<pubDate>Wed, 17 May 2006 11:22:40 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Epiphany]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/2006/05/17/epiphany-python-console-documentation/</guid>
		<description><![CDATA[The availability of good and complete documentation for an API is one of the most important factors in order someone to be able to effectively use that API for application programming. Good API documentation saves time and effort. It provides all the needed information a programmer, either professional or amateur, would need in order to [...]]]></description>
			<content:encoded><![CDATA[<p>The availability of good and complete documentation for an <abbr title="Application Programming Interface">API</abbr> is one of the most important factors in order someone to be able to effectively use that API for application programming. Good API documentation saves time and effort. It provides all the needed information a programmer, either professional or amateur, would need in order to use the best routines to solve a problem.<br />
<span id="more-244"></span><br />
Recently, I started messing with the Epiphany browser&#8217;s Python console. What I need is to write some extensions for this browser, so that it covers all my needs when browsing the internet. Despite my will to do so, the lack of decent documentation for the available Python bindings is very discouraging. Many of the available functions even lack a simple docstring. As I have already mentioned in earlier posts, I am not a pro. Even a very simple extension takes a significant amount of time and effort. Furthermore, even if I finally find a way to solve a problem, I still wonder if that was the best way I could go.</p>
<p>Anyway, this is how it is. For all those who would like to mess around with Epiphany&#8217;s Python console, here are the available docs:</p>
<ul>
<li><a href="http://www.adamhooper.com:4242/epiphany-extensions/python-console.xhtml">Epiphany&#8217;s Python Console</a></li>
<li><a href="http://www.gnome.org/projects/epiphany/documentation/extensions/index.html">Writing Epiphany Extensions</a></li>
</ul>
<p>These should get you started, but despite the writer&#8217;s great effort and contribution, these are not enough for an amateur programmer. You will still need to search in other extensions&#8217; source code and probably in the Epiphany&#8217;s source too. This is the situation and I wish things get better in the future. So, I have decided that, whenever my free time permits it, I will write a post for every new thing I discover in the python console. Hope this helps someone else out there&#8230;</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2006/05/17/epiphany-python-console-documentation/">Epiphany Python Console &#8211; Documentation</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2006/05/17/epiphany-python-console-open-new-tab/" rel="bookmark">Epiphany Python Console &#8211; Open New Tab</a></li>
<li><a href="http://www.g-loaded.eu/2006/09/23/use-python-to-get-the-web-page-data-in-epiphany/" rel="bookmark">Use Python to get the web page data in Epiphany</a></li>
<li><a href="http://www.g-loaded.eu/2006/05/06/a-note-about-the-epiphany-extensions-on-fedora/" rel="bookmark">A Note About The Epiphany Extensions on Fedora</a></li>
<li><a href="http://www.g-loaded.eu/2007/05/16/some-thoughts-about-epiphany-extensions/" rel="bookmark">Some thoughts about Epiphany extensions</a></li>
<li><a href="http://www.g-loaded.eu/2007/02/28/tab-links-extension-for-the-epiphany-browser/" rel="bookmark">Tab Links extension for the Epiphany browser</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2006/05/17/epiphany-python-console-documentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Write A Man Page</title>
		<link>http://www.g-loaded.eu/2006/05/04/write-a-man-page/</link>
		<comments>http://www.g-loaded.eu/2006/05/04/write-a-man-page/#comments</comments>
		<pubDate>Thu, 04 May 2006 05:42:49 +0000</pubDate>
		<dc:creator>George Notaras</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Man]]></category>
		<category><![CDATA[Shell]]></category>
		<guid isPermaLink="false">http://www.g-loaded.eu/2006/05/04/write-a-man-page/</guid>
		<description><![CDATA[Some links about how to write a man page: How to Write man Pages Writing man-pages THE LINUX MAN-PAGE-HOWTO Last, but not least: # man 7 groff_man This man page contains all the macros that can be used in a manual page. Write A Man Page, unless otherwise expressly stated, is licensed under a Creative [...]]]></description>
			<content:encoded><![CDATA[<p>Some links about how to write a man page:</p>
<ul>
<li><a href="http://www.cs.hmc.edu/qref/writing_man_pages.html">How to Write man Pages</a></li>
<li><a href="http://www.linuxfocus.org/English/November2003/article309.shtml">Writing man-pages</a></li>
<li><a href="http://www.schweikhardt.net/man_page_howto.html">THE LINUX MAN-PAGE-HOWTO</a></li>
</ul>
<p>Last, but not least:</p>
<pre class="console"># man 7 groff_man</pre>
<p>This man page contains all the macros that can be used in a manual page.</p>
<div class="cc-block"><em><a href="http://www.g-loaded.eu/2006/05/04/write-a-man-page/">Write A Man Page</a></em>, unless otherwise expressly stated, is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>. Terms and conditions beyond the scope of this license may be available at <a href="http://www.g-loaded.eu/about/disclaimer-and-license/">www.g-loaded.eu</a>.</div>
<h4>Related Articles</h4>
<ul><li><a href="http://www.g-loaded.eu/2007/02/24/creative-commons-v30-licenses-launched/" rel="bookmark">Creative Commons v3.0 Licenses Launched</a></li>
<li><a href="http://www.g-loaded.eu/2007/03/05/print-a-man-page/" rel="bookmark">Print a Man Page</a></li>
<li><a href="http://www.g-loaded.eu/2007/06/23/rtorstat-a-simple-rtorrent-status-web-page-generator/" rel="bookmark">rtorstat &#8211; a simple rTorrent status web page generator</a></li>
<li><a href="http://www.g-loaded.eu/2006/09/23/use-python-to-get-the-web-page-data-in-epiphany/" rel="bookmark">Use Python to get the web page data in Epiphany</a></li>
<li><a href="http://www.g-loaded.eu/2007/03/15/cc-configurator-plugin-version-10-is-out/" rel="bookmark">CC Configurator plugin version 1.0 is out!</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.g-loaded.eu/2006/05/04/write-a-man-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
	</item>
	</channel>
</rss>

