<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Supporting Open Source weblog: Category interessant open source</title>
    <link>http://blog.sos.be/articles/category/interessant-open-source</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description></description>
    <item>
      <title>Nederland open in verbinding</title>
      <description>&lt;p&gt;De Nederlandse Tweede Kamer heeft een actieplan goedgekeurd dat bij alle overheidsdiensten de open documentstandaarden moet implementeren. Het plan zou niet op België zijn geïnspireerd, maar de gelijkenissen zijn treffend.&lt;/p&gt;


	&lt;p&gt;Aanbieding actieplan Nederland open in verbinding: actieplan voor het gebruik van open standaarden en open source software bij de (semi-) publieke sector&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.minez.nl/content.jsp?objectid=153180"&gt;Meer info:&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 17 Dec 2007 09:59:00 +0100</pubDate>
      <guid isPermaLink="false">urn:uuid:c5d584f7-dba9-45c0-8e56-999ea72e8843</guid>
      <author>Paul Verreth</author>
      <link>http://blog.sos.be/articles/2007/12/17/nederland-open-in-verbinding</link>
      <category>interessant open source</category>
    </item>
    <item>
      <title>Startup script for Radiant with Mongrel</title>
      <description>&lt;p&gt;&lt;a href="http://mongrel.rubyforge.org/index.html"&gt;Mongrel&lt;/a&gt; is &lt;span class="caps"&gt;IMHO&lt;/span&gt; the preferred (web)server for &lt;em&gt;Ruby on Rails&lt;/em&gt; applications hence for &lt;a href="http://www.radiantcms.org"&gt;Radiant&lt;/a&gt;.&lt;/p&gt;


	&lt;p&gt;Here you can find a startup script for Fedora linux, but of course also usable for Ubuntu, ...&lt;/p&gt;


&lt;pre&gt;
#!/bin/bash
#
#    /etc/rc.d/init.d/radiant_cms
#
# Start mongrel &amp;#38; radiant
#
# chkconfig: - 65 35
# description: Mongrel &amp;#38; radiant
# processname: mongrel
# Source function library.
. /etc/init.d/functions

MONGREL=/usr/bin/mongrel_rails
RAILSDIR=/var/www/radiant
CONFFILE=mongrel_config

test -x $MONGREL || exit 0

RETVAL=0
prog="Mongrel for radiant" 

start() {
        echo -n $"Starting $prog: " 
    cd $RAILSDIR
    $MONGREL start -C $CONFFILE
    RETVAL=$?
    echo
}

stop() {
    echo -n $"Stopping $prog: " 
    cd $RAILSDIR
    $MONGREL stop
    RETVAL=$?
    echo
}

#
#    See how we were called.
#
case "$1" in
  start)
    start
    ;;
  stop)
    stop
    ;;
  restart)
    stop
    start
    RETVAL=$?
    ;;
  *)
    echo $"Usage: $0 {start|stop|restart}" 
    exit 1
esac

exit $RETVAL
&lt;/pre&gt;&lt;h4&gt;mongrel_config&lt;/h4&gt;


&lt;pre&gt;
--- 
:cwd: /var/www/radiant
:includes: 
- mongrel
:debug: false
:log_file: log/mongrel.log
:config_script: 
:pid_file: log/mongrel.pid
:timeout: 0
:num_processors: 1024
:docroot: public
:config_file: 
:user: apache
:host: 0.0.0.0
:group: apache
:mime_map: 
:environment: production
:prefix: 
:port: 4000
:daemon: true
&lt;/pre&gt;

	&lt;p&gt;This file should be fairly self explaining:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;&lt;code&gt;/var/www/radiant&lt;/code&gt; is the &lt;strong&gt;radiant&lt;/strong&gt; base directory.&lt;/li&gt;
		&lt;li&gt;&lt;em&gt;host:&lt;/em&gt; 0.0.0.0 listens on every address, for safety better to use 127.0.0.1, and in combination with reverse proxying&lt;/li&gt;
		&lt;li&gt;&lt;em&gt;port:&lt;/em&gt; 4000 for instance for reverse proxying, 80 for direct web serving.&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;&lt;strong&gt;mongrel&lt;/strong&gt; with &lt;em&gt;apache&lt;/em&gt; as a &lt;em&gt;reverse proxy&lt;/em&gt; will be explained in a different article to come.&lt;/p&gt;


	&lt;h3&gt;chkconfig&lt;/h3&gt;


	&lt;p&gt;On fedora you can use &lt;code&gt;chkconfig&lt;/code&gt; to activate the startup script. Please also read the &lt;code&gt;chkconfig&lt;/code&gt; man page.&lt;/p&gt;


To be manageable by chkconfig, the script needs a special section, an example follows:
&lt;pre&gt;
#!/bin/bash
#
#    /etc/rc.d/init.d/radiant_cms
#
# Start mongrel &amp;#38; radiant
#
# chkconfig: - 65 35
# description: Mongrel &amp;#38; radiant
# processname: mongrel
&lt;/pre&gt;

Active? And in wich runlevels?
&lt;pre&gt;
chkconfig --list radiant_cms
service radiant_cms supports chkconfig, but is not referenced in any runlevel (run 'chkconfig --add radiant_cms')
&lt;/pre&gt;

So it is added, but not yet activated:
&lt;pre&gt;
chkconfig --add radiant_cms
chkconfig --list radiant_cms
radiant_cms        0:off   1:off   2:off   3:off   4:off   5:off   6:off
&lt;/pre&gt;

	&lt;p&gt;And, to activate:&lt;/p&gt;


&lt;pre&gt;
chkconfig radiant_cms on

chkconfig --list 
radiant_cms        0:off   1:off   2:on    3:on    4:on    5:on    6:off
&lt;/pre&gt;</description>
      <pubDate>Mon, 26 Mar 2007 07:54:00 +0200</pubDate>
      <guid isPermaLink="false">urn:uuid:242c52db-a14e-450d-9c68-ce3a080c1962</guid>
      <author>Paul Verreth</author>
      <link>http://blog.sos.be/articles/2007/03/26/startup-script-for-radiant-with-mongrel</link>
      <category>artikels</category>
      <category>interessant open source</category>
      <category>mongrel</category>
      <category>radiant</category>
    </item>
    <item>
      <title>Open dot dot dot</title>
      <description>&lt;p&gt;&lt;a href="http://opendotdotdot.blogspot.com/"&gt;Open Source, Open Genomics, Open Content&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 14 Feb 2007 17:22:00 +0100</pubDate>
      <guid isPermaLink="false">urn:uuid:acad651c-7de2-4275-934d-8aa962ac67aa</guid>
      <author>Paul Verreth</author>
      <link>http://blog.sos.be/articles/2007/02/14/open-dot-dot-dot</link>
      <category>interessant open source</category>
    </item>
    <item>
      <title>Let There Be Light: Promoting OpenOffice.org with Sun</title>
      <description>&lt;p&gt;The OpenDocument Format (ODF) just keeps on getting stronger. It is now an official &lt;span class="caps"&gt;ISO&lt;/span&gt; standard; there are numerous applications that support it, with varying degrees of fidelity, including Google&amp;#8217;s online word processor and spreadsheet; there&amp;#8217;s an official Microsoft-funded plug-in for Microsoft Office that allows it to open and save &lt;span class="caps"&gt;ODF&lt;/span&gt; files, and a program that converts between &lt;span class="caps"&gt;ODF&lt;/span&gt; and the Chinese &lt;span class="caps"&gt;UOF XML&lt;/span&gt; office format; and the &lt;span class="caps"&gt;ODF&lt;/span&gt; community has largely sorted out issues of accessibility that threatened to de-rail its adoption by Massachusetts.&lt;/p&gt;


	&lt;p&gt;At the same time, Microsoft is clearly beginning to feel the pressure. Its attempts to ram its own &lt;span class="caps"&gt;XML&lt;/span&gt; format through as an &lt;span class="caps"&gt;ISO&lt;/span&gt; standard, and the unseemly haste with which its 6000 pages of documentation were approved as an &lt;span class="caps"&gt;ECMA&lt;/span&gt; standard, are an indication that it is playing catch-up in this sector, even if it remains the dominant player.&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.linuxjournal.com/node/1000179"&gt;Read the rest of this Linux Journal article&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 14 Feb 2007 17:13:00 +0100</pubDate>
      <guid isPermaLink="false">urn:uuid:e4d468e0-e705-47ce-8c72-e0c57a7f6575</guid>
      <author>Paul Verreth</author>
      <link>http://blog.sos.be/articles/2007/02/14/let-there-be-light-promoting-openoffice-org-with-sun</link>
      <category>artikels</category>
      <category>interessant open source</category>
    </item>
    <item>
      <title>Microsoft en Open Document Format</title>
      <description>&lt;p&gt;&lt;a class="external" href="http://www.wired.com/news/technology/software/0,72403-0.html?tw=wn_index_16" target="_blank"&gt;Wired: MS Fights to Own Your Office Docs&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 08 Jan 2007 08:30:00 +0100</pubDate>
      <guid isPermaLink="false">urn:uuid:669a598b-29e6-4622-a712-7b06c8e8a1dc</guid>
      <author>Paul Verreth</author>
      <link>http://blog.sos.be/articles/2007/01/08/microsoft-en-open-document-format</link>
      <category>interessant open source</category>
    </item>
    <item>
      <title>Over linux, unicode en utf8</title>
      <description>&lt;p&gt;Interessant &lt;a href="http://www.gentoo.org/doc/nl/utf-8.xml"&gt;artikel&lt;/a&gt; hierover.&lt;/p&gt;


	&lt;p&gt;(Gentoo)&lt;/p&gt;</description>
      <pubDate>Tue, 19 Dec 2006 12:12:00 +0100</pubDate>
      <guid isPermaLink="false">urn:uuid:ee505d16-9365-4638-b151-a97076891e3a</guid>
      <author>Paul Verreth</author>
      <link>http://blog.sos.be/articles/2006/12/19/over-linux-unicode-utf8</link>
      <category>artikels</category>
      <category>interessant open source</category>
      <category>linux</category>
    </item>
    <item>
      <title>Bizgres</title>
      <description>&lt;p&gt;Bizgres is een interessante ontwikkeling op gebied van open source databases.&lt;/p&gt;


	&lt;p&gt;Te lezen op hun &lt;a href="http://www.bizgres.org/home.php"&gt;website&lt;/a&gt;:&lt;/p&gt;


	&lt;blockquote&gt;
		&lt;p&gt;The Bizgres Project aims to make PostgreSQL the world&amp;#8217;s most robust open source database for Business Intelligence. The Bizgres project is sponsored by multiple companies, led by GreenPlum.&lt;/p&gt;
	&lt;/blockquote&gt;</description>
      <pubDate>Tue, 12 Dec 2006 09:37:00 +0100</pubDate>
      <guid isPermaLink="false">urn:uuid:b6bfd3fb-22a2-445d-ab82-6fc41cebb3d5</guid>
      <author>Paul Verreth</author>
      <link>http://blog.sos.be/articles/2006/12/12/bizgres</link>
      <category>tips</category>
      <category>interessant open source</category>
    </item>
  </channel>
</rss>
