<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rdf:RDF
[
<!ENTITY % HTMLlat1 PUBLIC
 "-//W3C//ENTITIES Latin 1 for XHTML//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">
]>
<rdf:RDF xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:admin="http://webns.net/mvcb/">
<channel rdf:about="http://members.multiweb.nl/fvb/blog">
<title>fvb 1.0 /blog</title>
<link>http://members.multiweb.nl/fvb/blog</link>
<description>there's no business like .. your own business</description>
<dc:language>nl</dc:language>
<dc:creator>fvb</dc:creator>
<dc:date>2010-01-07T11:04:46+01:00</dc:date>
<admin:generatorAgent rdf:resource="http://nanoblogger.sourceforge.net" />
<items>
<rdf:Seq>
<rdf:li rdf:resource="http://members.multiweb.nl/fvb/blog/archives/2010/01/index.html#e2010-01-07T10_59_54.txt" />
<rdf:li rdf:resource="http://members.multiweb.nl/fvb/blog/archives/2009/12/index.html#e2009-12-17T08_48_46.txt" />
<rdf:li rdf:resource="http://members.multiweb.nl/fvb/blog/archives/2009/12/index.html#e2009-12-15T20_02_01.txt" />
<rdf:li rdf:resource="http://members.multiweb.nl/fvb/blog/archives/2009/12/index.html#e2009-12-15T07_33_22.txt" />
</rdf:Seq>
</items>
</channel>
<item rdf:about="http://members.multiweb.nl/fvb/blog/archives/2010/01/index.html#e2010-01-07T10_59_54.txt">
<link>http://members.multiweb.nl/fvb/blog/archives/2010/01/index.html#e2010-01-07T10_59_54.txt</link>
<title>2010</title>
<dc:date>2010-01-07T10:59:54+01:00</dc:date>
<dc:creator>fvb</dc:creator>
<description>
<![CDATA[A new year again, time does fly. Let it be a great year for all.]]>
</description>
</item>
<item rdf:about="http://members.multiweb.nl/fvb/blog/archives/2009/12/index.html#e2009-12-17T08_48_46.txt">
<link>http://members.multiweb.nl/fvb/blog/archives/2009/12/index.html#e2009-12-17T08_48_46.txt</link>
<title>Nanoblogger publishing</title>
<dc:date>2009-12-17T08:48:46+01:00</dc:date>
<dc:creator>fvb</dc:creator>
<dc:subject>NanoBlogger Help</dc:subject>
<description>
<![CDATA[Set up automated publishing according the instructions in the <a href="http://tech.groups.yahoo.com/group/nanoblogger/">NanoBlogger
user manual</a>. Didn't work, searched the <a href="http://tech.groups.yahoo.com/group/nanoblogger/messages">mailing list</a> for a 
solution. The set up in the user manual appears outdated, but there are a few suggestion to get the job done. Choose a simple to set up 
solution using <a href="http://www.manyfish.co.uk/sitecopy/">sitecopy</a>. 
<br /><br />
Install sitecopy, create a directory and a config file:
<pre>
sudo apt-get -i sitecopy
mkdir ~/.sitecopy
chmod 700 ~/.sitecopy
touch ~/.sitecopyrc
chmod 600 ~/.sitecopyrc
</pre>
<br /><br />
Edit .sitecopyrc with your editor of choice:
<pre>
site yoursite
server www.yourisp.org
protocol ftp
port 21
username johndoe
password ******
local /home/johndoe/docs/yoursite
remote public_html/www.yourisp.org/
exclude *~
exclude *.bak
exclude /blog/blog.conf
exclude /blog/tidy.log
exclude /blog/cache
exclude /blog/parts
exclude /blog/data
exclude /blog/templates
checkmoved
</pre>
<br /><br />
Initialize sitecopy:
<pre>
sitecopy -i yoursite
sitecopy -f yoursite
sitecopy -s yoursite
sitecopy -u yoursite
</pre>
<br /><br />
Finally tell NanoBlogger to use sitecopy by editing blog.conf:
<pre>
BLOG_PUBLISH_CMD="sitecopy -u yoursite" 
</pre>]]>
</description>
</item>
<item rdf:about="http://members.multiweb.nl/fvb/blog/archives/2009/12/index.html#e2009-12-15T20_02_01.txt">
<link>http://members.multiweb.nl/fvb/blog/archives/2009/12/index.html#e2009-12-15T20_02_01.txt</link>
<title>NanoBlogger basic commands</title>
<dc:date>2009-12-15T20:02:01+01:00</dc:date>
<dc:creator>fvb</dc:creator>
<dc:subject>NanoBlogger Help</dc:subject>
<description>
<![CDATA[<p>The basic syntax is: <code>nb [-b blog_dir] [options]</code></p>
<b>How to ...</b>
<ul>
<li>create a new weblog (directory) = <code>nb -b [blog_dir] -a</code></li>
<li>create a new entry = <code>nb -a</code></li>
<li>create a new category = <code>nb -c <em>new</em> -a</code></li>
<li>create a new entry for a category = <code>nb -c [cat_id] -a</code></li>
<li>list current entries = <code>nb -l [current|all]</code></li>
<li>list categories = <code>nb -l <em>cat</em></code></li>
<li>list entries by category = <code>nb -c [cat_id] -l [current|all]</code></li>
<li>edit an entry = <code>nb -e [entry_id]</code></li>
<li>move an entry to a category = <code>nb -c [cat_id] -m [entry_id]</code></li>
<li>delete an entry = <code>nb -d [entry_id]</code></li>
<li>delete a category = <code>nb -c [cat_id] -d <em>cat</em></code></li>
<li>delete an entry from a category = <code>nb -c [cat_id] -d [entry_id]</code></li>
<li>force update of weblog = <code>nb -u [current|all|main]</code></li>
</ul>
<p>Comments and suggestions to the <a href="http://groups.yahoo.com/group/nanoblogger/">mailing list</a> or submit a bug report to the <a href="http://sourceforge.net/tracker/?atid=635240&amp;group_id=103576&amp;func=browse">project page</a> on sourceforge.net.</p>]]>
</description>
</item>
<item rdf:about="http://members.multiweb.nl/fvb/blog/archives/2009/12/index.html#e2009-12-15T07_33_22.txt">
<link>http://members.multiweb.nl/fvb/blog/archives/2009/12/index.html#e2009-12-15T07_33_22.txt</link>
<title>NanoBlogger</title>
<dc:date>2009-12-15T07:33:22+01:00</dc:date>
<dc:creator>fvb</dc:creator>
<dc:subject>NanoBlogger Help</dc:subject>
<description>
<![CDATA[<p><a href= "http://nanoblogger.sourceforge.net/">NanoBlogger</a> is a small weblog engine written in Bash for the
command line. It uses common UNIX tools such as cat, grep, and sed
to create static HTML content. It's free to use and modify under
the <a href="http://www.gnu.org/licenses/gpl.html">GNU General
Public License</a>.</p>
pros:
<ul>
<li>highly configurable and extensible</li>
<li>intuitive command line interface</li>
<li>easy drafting, editing, and management of entries</li>
<li>configurable amount of archiving by category, year, month, day and entry</li>
<li>pagination</li>
<li>permanent and navigational links</li>
<li>templates and CSS style sheets for full control over layout</li>
<li>placeholders for easy template manipulation</li>
<li>support for multiple weblogs</li>
<li>support for multiple tags (categories)</li>
<li>support for both relative and absolute links</li>
<li>support for date manipulation of entries</li>
<li>Atom syndication (comes with 1.0 format)</li>
<li>RSS syndication (comes with RSS 1.0 and 2.0 formats)</li>
<li>plugins for calendar, recent entries, weblog status, etc.</li>
<li>plugins for text formatting (e.g. line breaks translate toHTML)</li>
<li>global (nb.conf) and per-weblog (blog.conf) configuration</li>
<li>intelligent build system that only rebuilds what's necessary</li>
<li>simple cache system for extra boost in speed</li>
<li>independent from java-script and server-side scripting (e.g. PHP)</li>
<li>independent from external database (stores data in flat-files)</li>
<li>includes user manual</li>
<li>multilingual support</li>
<li>multi-platform portability (just add bash and the required commands)</li>
<li>modular code base</li>
</ul>
cons:
<ul>
<li>slow (written in bash)</li>
<li>no comments (only available as add-on)</li>
<li>comes with a user manual</li>
<li>not easily upgradable</li>
</ul>]]>
</description>
</item>
</rdf:RDF>

