<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Dave Koelmeyer</title>
	<atom:link href="http://blog.davekoelmeyer.co.nz/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.davekoelmeyer.co.nz</link>
	<description>Musings, rants, and much more besides...</description>
	<lastBuildDate>Wed, 22 Feb 2012 05:32:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.davekoelmeyer.co.nz' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Dave Koelmeyer</title>
		<link>http://blog.davekoelmeyer.co.nz</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.davekoelmeyer.co.nz/osd.xml" title="Dave Koelmeyer" />
	<atom:link rel='hub' href='http://blog.davekoelmeyer.co.nz/?pushpress=hub'/>
		<item>
		<title>Screencasting on Ubuntu using ffmpeg</title>
		<link>http://blog.davekoelmeyer.co.nz/2012/02/20/screencasting-on-ubuntu-using-ffmpeg/</link>
		<comments>http://blog.davekoelmeyer.co.nz/2012/02/20/screencasting-on-ubuntu-using-ffmpeg/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 11:32:46 +0000</pubDate>
		<dc:creator>davekoelmeyer</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[OpenShot]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[Ogg]]></category>
		<category><![CDATA[recordMyDesktop]]></category>
		<category><![CDATA[Screencasting]]></category>
		<category><![CDATA[Theora]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[VLC]]></category>

		<guid isPermaLink="false">http://blog.davekoelmeyer.co.nz/?p=2078</guid>
		<description><![CDATA[What follows is a very brief guide to using the FFmpeg Linux utility to record a live screencast. I&#8217;ve used this method (which is quite well documented out there) after discovering that the recordMyDesktop utility is unsuitable in certain critical areas for my needs. The first thing to note here is that FFmpeg consists of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2078&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What follows is a very brief guide to using the <a href="http://en.wikipedia.org/wiki/FFmpeg" target="_blank">FFmpeg</a> Linux utility to record a live screencast. I&#8217;ve used this method (which is quite well documented out there) after discovering that the <em>recordMyDesktop</em> utility is <a href="http://blog.davekoelmeyer.co.nz/2012/02/07/recordmydesktop-ogg-video-files-and-openshot-part-1/" target="_blank">unsuitable</a> in certain <a href="http://blog.davekoelmeyer.co.nz/2012/02/09/recordmydesktop-ogg-video-files-and-openshot-part-2/" target="_blank">critical areas</a> for my needs.</p>
<p>The first thing to note here is that FFmpeg consists of a suite of libraries and codecs for handling A/V media, and, the <em>ffmpeg</em> command line utility itself. The latter is what we will be using to capture our screencast. </p>
<p>Our example system is running Ubuntu Linux 11.10 x86. Note that at this stage we are only capturing live video, not live audio.</p>
<p>First, use Ubuntu Software Center to install FFmpeg:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/02/ubuntuffmpeginstall.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/02/ubuntuffmpeginstall.png?w=296&#038;h=300" alt="Installing FFmpeg using Ubuntu Software Center" title="UbuntuffmpegInstall" width="296" height="300" class="alignnone size-medium wp-image-2079" /></a></p>
<p>Once installed, launch a Terminal window: it&#8217;s time to enter a text command, but don&#8217;t worry, it&#8217;s straightforward and you can cut and paste the below example to get started. Simply enter the following command, noting that this will save a video recording of your live session to an example file named <em>&#8220;testscreencast.mp4&#8243;</em> on your Desktop. </p>
<p><pre class="brush: css;">
ffmpeg -f x11grab -r 25 -s 1280x1024 -i :0.0 -sameq ~/Desktop/testscreencast.mp4
</pre></p>
<p>To stop the recording, press Ctrl+C with the terminal window in focus. To view the video file, you can use <a href="http://www.videolan.org/vlc/" target="_blank">VLC</a> or a similar media player. </p>
<p>&nbsp;</p>
<p>Let&#8217;s look at the various options and parameters of the above command in more detail:</p>
<ul>
<li><strong>ffmpeg</strong> &#8211; this is the <em>ffmpeg</em> command itself being invoked</li>
<li><strong>-f</strong> &#8211; force the input or output file <em>format</em> (note &#8211; not the file itself). In this example, we are forcing the file input format to be the X11 display (see below)</li>
<li><strong>x11grab</strong> &#8211; use the X11 display</li>
<li><strong>-r</strong> &#8211; frame rate in frames per second. This defaults to 25 fps</li>
<li><strong>-s</strong> &#8211; set frame size. It can be set either as <em>WidthxHeight</em> pixels, (e.g. 1280&#215;1024), or accepts a variety of preset abbreviations (e.g. <em>sxga</em> which corresponds to 1280&#215;1024) </li>
<li><strong>-i</strong> &#8211; set the input file. This does not have to be a &#8220;file&#8221; per se, and indeed in this example the input file is the value <em>:0.0</em>, which corresponds to the value of the $DISPLAY environment variable (in <em>display.screen</em> format). See: <a href="http://ffmpeg.org/ffmpeg.html#X11-grabbing" target="_blank">http://ffmpeg.org/ffmpeg.html#X11-grabbing</a> for more information</li>
<li><strong>-sameq</strong> &#8211; this option sets the transcoding quality to be the same as the source input. </li>
</ul>
<p>The last portion of the command simply sets the location for the output file. Also, the default video codec for <em>ffmpeg</em> (you&#8217;ll note that we haven&#8217;t explicitly set a codec anywhere) is MPEG-4 (note, not MPEG-4 Part 10), which for screencasts is fine. </p>
<p>Once you&#8217;ve captured your screencast, you can use an application like <a href="http://blog.davekoelmeyer.co.nz/2012/02/20/freedom-in-video-media-production/" target="_blank">OpenShot</a> to perform the editing.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davekoelmeyer.wordpress.com/2078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davekoelmeyer.wordpress.com/2078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davekoelmeyer.wordpress.com/2078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davekoelmeyer.wordpress.com/2078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davekoelmeyer.wordpress.com/2078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davekoelmeyer.wordpress.com/2078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davekoelmeyer.wordpress.com/2078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davekoelmeyer.wordpress.com/2078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davekoelmeyer.wordpress.com/2078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davekoelmeyer.wordpress.com/2078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davekoelmeyer.wordpress.com/2078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davekoelmeyer.wordpress.com/2078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davekoelmeyer.wordpress.com/2078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davekoelmeyer.wordpress.com/2078/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2078&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.davekoelmeyer.co.nz/2012/02/20/screencasting-on-ubuntu-using-ffmpeg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7d6d3210e4174a5d2f12819a0e00568?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davekoelmeyer</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/02/ubuntuffmpeginstall.png?w=296" medium="image">
			<media:title type="html">UbuntuffmpegInstall</media:title>
		</media:content>
	</item>
		<item>
		<title>Freedom in video media production</title>
		<link>http://blog.davekoelmeyer.co.nz/2012/02/20/freedom-in-video-media-production/</link>
		<comments>http://blog.davekoelmeyer.co.nz/2012/02/20/freedom-in-video-media-production/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 09:49:22 +0000</pubDate>
		<dc:creator>davekoelmeyer</dc:creator>
				<category><![CDATA[GIMP]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[LibreOffice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Theora]]></category>
		<category><![CDATA[OpenShot]]></category>
		<category><![CDATA[Screencasting]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Ogg]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[Audacity]]></category>

		<guid isPermaLink="false">http://blog.davekoelmeyer.co.nz/?p=2073</guid>
		<description><![CDATA[ffmpeg to do screen captures: $0 Audacity to capture audio, perform clean-up and EQ: $0 GIMP to design titles and watermarks: $0 OpenShot to edit footage, add transitions and effects: $0 Web delivery transcoding to the free, patent-unencumbered Theora codec: $0 The Ubuntu OS to run it all on: $0 And seamless video playback (without [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2073&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://ffmpeg.org/" target="_blank">ffmpeg</a> to do screen captures: $0<br />
<a href="http://audacity.sourceforge.net/" target="_blank">Audacity</a> to capture audio, perform clean-up and EQ: $0<br />
<a href="http://www.gimp.org/" target="_blank">GIMP</a> to design titles and watermarks: $0<br />
<a href="http://www.openshotvideo.com/" target="_blank">OpenShot</a> to edit footage, add transitions and effects: $0<br />
Web delivery transcoding to the free, patent-unencumbered <a href="http://theora.org/" target="_blank">Theora</a> codec: $0<br />
The <a href="http://www.ubuntu.com/" target="_blank">Ubuntu OS</a> to run it all on: $0</p>
<p>And seamless video playback (without stupid plugins) using <a href="http://www.mozilla.org/en-US/firefox/new/" target="_blank">Firefox</a>&#8230;</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/02/libreofficescreencast.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/02/libreofficescreencast.png?w=300&#038;h=298" alt="Theora playback in Firefox" title="LibreOfficeScreencast" width="300" height="298" class="alignnone size-medium wp-image-2074" /></a></p>
<p>Freedom rules.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davekoelmeyer.wordpress.com/2073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davekoelmeyer.wordpress.com/2073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davekoelmeyer.wordpress.com/2073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davekoelmeyer.wordpress.com/2073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davekoelmeyer.wordpress.com/2073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davekoelmeyer.wordpress.com/2073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davekoelmeyer.wordpress.com/2073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davekoelmeyer.wordpress.com/2073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davekoelmeyer.wordpress.com/2073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davekoelmeyer.wordpress.com/2073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davekoelmeyer.wordpress.com/2073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davekoelmeyer.wordpress.com/2073/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davekoelmeyer.wordpress.com/2073/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davekoelmeyer.wordpress.com/2073/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2073&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.davekoelmeyer.co.nz/2012/02/20/freedom-in-video-media-production/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7d6d3210e4174a5d2f12819a0e00568?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davekoelmeyer</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/02/libreofficescreencast.png?w=300" medium="image">
			<media:title type="html">LibreOfficeScreencast</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenShot video editor for Linux &#8211; watch out iMovie&#8230;</title>
		<link>http://blog.davekoelmeyer.co.nz/2012/02/14/openshot-video-editor-for-linux-watch-out-imovie/</link>
		<comments>http://blog.davekoelmeyer.co.nz/2012/02/14/openshot-video-editor-for-linux-watch-out-imovie/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 10:08:40 +0000</pubDate>
		<dc:creator>davekoelmeyer</dc:creator>
				<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[OpenShot]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Screencasting]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://blog.davekoelmeyer.co.nz/?p=2063</guid>
		<description><![CDATA[I&#8217;ve recently begun to use OpenShot on Ubuntu Linux to edit a series of short screencasts with, and holy smoke what a pleasant surprise. Stable, easy to use (including a polished and smoothly responsive UI), a nice selection of effects and transitions, and pretty darn stable to boot: It&#8217;s pretty much based on the iMovie [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2063&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently begun to use <a href="http://www.openshotvideo.com/" target="_blank">OpenShot</a> on Ubuntu Linux to edit a series of short screencasts with, and holy smoke what a pleasant surprise. Stable, easy to use (including a polished and smoothly responsive UI), a nice selection of effects and transitions, and pretty darn stable to boot:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/02/openshotrocks.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/02/openshotrocks.png?w=300&#038;h=240" alt="OpenShot running on Ubuntu 11.10 x86" title="OpenShotRocks" width="300" height="240" class="alignnone size-medium wp-image-2064" /></a></p>
<p>It&#8217;s pretty much based on the iMovie paradigm, before Apple screwed too badly with it. Lots of advanced goodies which the competition doesn&#8217;t have, like fancy 3D animated and SVG titles via integration with <a href="http://www.blender.org/" target="_blank">Blender</a> and <a href="http://inkscape.org/" target="_blank">Inkscape</a>. Built-in support for insta-upload to YouTube. Even the documentation is great. Between Ubuntu, <a href="http://ffmpeg.org/" target="_blank">ffmpeg</a>, and OpenShot (oh, and <a href="http://audacity.sourceforge.net/" target="_blank">Audacity</a> for the audio), it&#8217;s entirely possible to put together high-quality screencasts for zero software cost. </p>
<p>OpenShot is totally worthy of a <a href="http://www.openshot.org/donate/" target="_blank">donation<a>, which I have happily made.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davekoelmeyer.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davekoelmeyer.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davekoelmeyer.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davekoelmeyer.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davekoelmeyer.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davekoelmeyer.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davekoelmeyer.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davekoelmeyer.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davekoelmeyer.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davekoelmeyer.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davekoelmeyer.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davekoelmeyer.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davekoelmeyer.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davekoelmeyer.wordpress.com/2063/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2063&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.davekoelmeyer.co.nz/2012/02/14/openshot-video-editor-for-linux-watch-out-imovie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7d6d3210e4174a5d2f12819a0e00568?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davekoelmeyer</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/02/openshotrocks.png?w=300" medium="image">
			<media:title type="html">OpenShotRocks</media:title>
		</media:content>
	</item>
		<item>
		<title>recordMyDesktop, Ogg video files, and OpenShot – part 2</title>
		<link>http://blog.davekoelmeyer.co.nz/2012/02/09/recordmydesktop-ogg-video-files-and-openshot-part-2/</link>
		<comments>http://blog.davekoelmeyer.co.nz/2012/02/09/recordmydesktop-ogg-video-files-and-openshot-part-2/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 23:32:53 +0000</pubDate>
		<dc:creator>davekoelmeyer</dc:creator>
				<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ogg]]></category>
		<category><![CDATA[OpenShot]]></category>
		<category><![CDATA[recordMyDesktop]]></category>
		<category><![CDATA[Theora]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[VLC]]></category>

		<guid isPermaLink="false">http://blog.davekoelmeyer.co.nz/?p=2058</guid>
		<description><![CDATA[A quick follow up to my post here. As it turns out, VLC refuses to play back any Ogg file generated by recordMyDesktop at normal speed: playback jumps all over the shop, with the net effect of it appearing to run much faster than the speed it was actually originally captured. So, we are shit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2058&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A quick follow up to my post <a href="http://blog.davekoelmeyer.co.nz/2012/02/07/recordmydesktop-ogg-video-files-and-openshot-part-1/" target="_blank">here</a>. As it turns out, VLC refuses to play back any Ogg file generated by recordMyDesktop at normal speed: playback jumps all over the shop, with the net effect of it appearing to run much faster than the speed it was actually originally captured. So, we are shit out of luck with using it to transcode recordMyDesktop files for editing in OpenShot. </p>
<p>You can read what the VLC core developers thought of this issue in posts 8 and 9 here: </p>
<p><a href="http://forum.videolan.org/viewtopic.php?f=2&amp;t=94169" target="_blank">http://forum.videolan.org/viewtopic.php?f=2&amp;t=94169</a></p>
<p>Frustrating that recordMyDesktop is so close to being perfect for my needs, but as it&#8217;s a defunct project I am forced to look elsewhere. Turns out that the <em>ffmpeg</em> command line utility can be used to capture a live desktop (loads of guides on the web on this topic), so in a follow up post I will outline my efforts to use this instead. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davekoelmeyer.wordpress.com/2058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davekoelmeyer.wordpress.com/2058/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davekoelmeyer.wordpress.com/2058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davekoelmeyer.wordpress.com/2058/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davekoelmeyer.wordpress.com/2058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davekoelmeyer.wordpress.com/2058/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davekoelmeyer.wordpress.com/2058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davekoelmeyer.wordpress.com/2058/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davekoelmeyer.wordpress.com/2058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davekoelmeyer.wordpress.com/2058/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davekoelmeyer.wordpress.com/2058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davekoelmeyer.wordpress.com/2058/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davekoelmeyer.wordpress.com/2058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davekoelmeyer.wordpress.com/2058/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2058&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.davekoelmeyer.co.nz/2012/02/09/recordmydesktop-ogg-video-files-and-openshot-part-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7d6d3210e4174a5d2f12819a0e00568?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davekoelmeyer</media:title>
		</media:content>
	</item>
		<item>
		<title>recordMyDesktop, Ogg video files, and OpenShot &#8211; part 1</title>
		<link>http://blog.davekoelmeyer.co.nz/2012/02/07/recordmydesktop-ogg-video-files-and-openshot-part-1/</link>
		<comments>http://blog.davekoelmeyer.co.nz/2012/02/07/recordmydesktop-ogg-video-files-and-openshot-part-1/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 11:56:25 +0000</pubDate>
		<dc:creator>davekoelmeyer</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ogg]]></category>
		<category><![CDATA[OpenShot]]></category>
		<category><![CDATA[recordMyDesktop]]></category>
		<category><![CDATA[Screencasting]]></category>
		<category><![CDATA[Theora]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://blog.davekoelmeyer.co.nz/?p=2048</guid>
		<description><![CDATA[Quick post before bed &#8211; I am playing around with using recordMyDesktop on an Ubuntu Linux 11.10 x86 system to create screencasts with, using OpenShot (which looks great by the way) to import and edit video files recordMyDesktop spits out. To cut a long story short, it seems OpenShot doesn&#8217;t like the Theora-encoded video produced [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2048&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Quick post before bed &#8211; I am playing around with using <a href="http://recordmydesktop.sourceforge.net/about.php" target="_blank">recordMyDesktop</a> on an Ubuntu Linux 11.10 x86 system to create screencasts with, using <a href="http://www.openshotvideo.com/" target="_blank">OpenShot</a> (which looks great by the way) to import and edit video files recordMyDesktop spits out.</p>
<p>To cut a long story short, it seems OpenShot doesn&#8217;t like the Theora-encoded video produced by recordMyDesktop:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/02/ffplay-oggvideo.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/02/ffplay-oggvideo.png?w=300&#038;h=293" alt="Ogg video played with ffplay" title="ffplay-oggVideo" width="300" height="293" class="alignnone size-medium wp-image-2049" /></a></p>
<p>Numerous postings on the web finger recordMyDesktop as the problematic application &#8211; and because recordMyDesktop only outputs Ogg video (which is entirely fair enough), I&#8217;m kind of stuck without transcoding it to another format which OpenShot can use without trouble. </p>
<p>In a future post I&#8217;ll outline the settings I&#8217;m using in VLC Media Player to transcode files created by recordMyDesktop into H264-encoded video in MP4 container format, which can then be imported into OpenShot for editing &#8211; and subsequently exported back out as Ogg video (yes, because I actually want my users to be able to view the resulting screencasts in Firefox or Chrome without a bloody plug-in&#8230;). Some quality loss is inevitable, so it&#8217;s not ideal, but with the right settings it looks like something entirely acceptable is fairly easy to do.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davekoelmeyer.wordpress.com/2048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davekoelmeyer.wordpress.com/2048/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davekoelmeyer.wordpress.com/2048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davekoelmeyer.wordpress.com/2048/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davekoelmeyer.wordpress.com/2048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davekoelmeyer.wordpress.com/2048/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davekoelmeyer.wordpress.com/2048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davekoelmeyer.wordpress.com/2048/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davekoelmeyer.wordpress.com/2048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davekoelmeyer.wordpress.com/2048/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davekoelmeyer.wordpress.com/2048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davekoelmeyer.wordpress.com/2048/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davekoelmeyer.wordpress.com/2048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davekoelmeyer.wordpress.com/2048/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2048&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.davekoelmeyer.co.nz/2012/02/07/recordmydesktop-ogg-video-files-and-openshot-part-1/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7d6d3210e4174a5d2f12819a0e00568?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davekoelmeyer</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/02/ffplay-oggvideo.png?w=300" medium="image">
			<media:title type="html">ffplay-oggVideo</media:title>
		</media:content>
	</item>
		<item>
		<title>Clear Mobile History add-on for Firefox Mobile</title>
		<link>http://blog.davekoelmeyer.co.nz/2012/02/05/clear-history-add-on-for-firefox-mobile/</link>
		<comments>http://blog.davekoelmeyer.co.nz/2012/02/05/clear-history-add-on-for-firefox-mobile/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 04:38:31 +0000</pubDate>
		<dc:creator>davekoelmeyer</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.davekoelmeyer.co.nz/?p=2043</guid>
		<description><![CDATA[Although I&#8217;m sure plenty of users lump in their &#8220;private&#8221; data with their browsing history when using Firefox for mobile devices, it becomes a right pain in the butt when you are also using a local Firefox sync server, and clearing your private data (clearing your browsing history only is not an option) also hoses [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2043&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Although I&#8217;m sure plenty of users lump in their &#8220;private&#8221; data with their browsing history when using Firefox for mobile devices, it becomes a right pain in the butt when you are also using a <a href="http://blog.davekoelmeyer.co.nz/2011/12/03/setting-up-a-local-firefox-sync-server/" target="_blank">local Firefox sync server</a>, and clearing your private data (clearing your browsing history only is not an option) also hoses your passwords &#8211; along with your Sync account and settings. </p>
<p>The following add-on is therefore indispensable if you are using Firefox mobile with Firefox Sync:</p>
<p><a href="https://addons.mozilla.org/en-US/mobile/addon/clear-mobile-history/" target="_blank">https://addons.mozilla.org/en-US/mobile/addon/clear-mobile-history/</a></p>
<p>More information <a href="http://blog.mozilla.com/mobile/2011/06/09/featured-mobile-add-ons-clear-mobile-history-and-cleary/" target="_blank">here</a>.</p>
<p>Weird that it&#8217;s not included with Firefox, but hey, that&#8217;s what a plug-in ecosystem is for I guess :)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davekoelmeyer.wordpress.com/2043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davekoelmeyer.wordpress.com/2043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davekoelmeyer.wordpress.com/2043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davekoelmeyer.wordpress.com/2043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davekoelmeyer.wordpress.com/2043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davekoelmeyer.wordpress.com/2043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davekoelmeyer.wordpress.com/2043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davekoelmeyer.wordpress.com/2043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davekoelmeyer.wordpress.com/2043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davekoelmeyer.wordpress.com/2043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davekoelmeyer.wordpress.com/2043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davekoelmeyer.wordpress.com/2043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davekoelmeyer.wordpress.com/2043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davekoelmeyer.wordpress.com/2043/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2043&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.davekoelmeyer.co.nz/2012/02/05/clear-history-add-on-for-firefox-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7d6d3210e4174a5d2f12819a0e00568?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davekoelmeyer</media:title>
		</media:content>
	</item>
		<item>
		<title>Container based authentication with JSPWiki, GlassFish and OpenDJ</title>
		<link>http://blog.davekoelmeyer.co.nz/2012/01/28/container-based-authentication-with-jspwiki-glassfish-and-opendj/</link>
		<comments>http://blog.davekoelmeyer.co.nz/2012/01/28/container-based-authentication-with-jspwiki-glassfish-and-opendj/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 13:17:46 +0000</pubDate>
		<dc:creator>davekoelmeyer</dc:creator>
				<category><![CDATA[GlassFish]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JSPWiki]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[OpenDJ]]></category>
		<category><![CDATA[OpenIndiana]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[LDAP]]></category>

		<guid isPermaLink="false">http://blog.davekoelmeyer.co.nz/?p=2007</guid>
		<description><![CDATA[In this blog entry I am going to describe configuring JSPWiki to use container based authentication to authenticate LDAP users existing in an OpenDJ directory. I am using GlassFish as my web application container, so this can be considered an alternative solution to using Tomcat, for example as described here. &#160; I am running JSPWiki [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2007&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this blog entry I am going to describe configuring JSPWiki to use container based authentication to authenticate LDAP users existing in an OpenDJ directory. I am using GlassFish as my web application container, so this can be considered an alternative solution to using Tomcat, for example as described <a href="https://wikis.forgerock.org/confluence/display/OPENDJ/Configure+Apache+Tomcat+with+OpenDJ+as+an+Identity+Store" target="_blank">here</a>.</p>
<p>&nbsp;</p>
<p>I am running JSPWiki version 2.8.3, deployed in GlassFish Open Source Edition 3.1.1 (build 12) on OpenIndiana oi_151 x86. OpenDJ is version 2.4.4, and I am using Java 6 update 26.</p>
<p>I am assuming prior basic familiarity with installing, configuring, and managing GlassFish and OpenDJ. Our starting point will be a freshly deployed instance of JSPWiki, for which the initial first-run setup procedure has taken place and without any configuration to the JSPWiki configuration files. </p>
<p>This is an <strong>insecure</strong> setup intended for testing purposes. </p>
<p>&nbsp;</p>
<p><strong>Create user and admin groups for JSPWiki in OpenDJ</strong></p>
<p>I have created the <em>Groups</em> OU under my Base DN, and within it created the groups <em>wiki-admin</em> and <em>wiki-users</em>. </p>
<p>Members of the <em>wiki-admin</em> group will be authorized with full permissions in JSPWiki once authenticated. Members of the <em>wiki-users</em> group however will have a lesser set of permissions, suitable for regular day-to-day use of the wiki. You can use LDIF commands if you wish to create the directory entries, however, I just use OpenDJ&#8217;s super-easy GUI to do the work. For example:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/jspwikigroupsinopendj.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/jspwikigroupsinopendj.png?w=242&#038;h=300" alt="JSPWiki groups in OpenDJ" title="JSPWikiGroupsInOpenDJ" width="242" height="300" class="alignnone size-medium wp-image-2010" /></a></p>
<p>&nbsp;</p>
<p><strong>Create an LDAP security realm in GlassFish</strong></p>
<p>This can be performed in the GlassFish admin BUI. Note that we perform this step under the <em>Configurations -&gt; server-config</em> node in the BUI (not the <em>Configurations -&gt; default-config</em> node):</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/glassfishserverconfignode.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/glassfishserverconfignode.png?w=221&#038;h=300" alt="GlassFish server-config node" title="GlassFishServerConfigNode" width="221" height="300" class="alignnone size-medium wp-image-2012" /></a></p>
<p>I have created the LDAP realm <em>JSPWikiUsers</em>  with the following settings:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/glassfishldapsecurityrealm.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/glassfishldapsecurityrealm.png?w=300&#038;h=242" alt="GlassFish LDAP security realm settings" title="GlassFishLDAPSecurityRealm" width="300" height="242" class="alignnone size-medium wp-image-2013" /></a></p>
<p>Some observations on the above can be noted here:</p>
<ul>
<li>
The <em>search-bind-dn</em> and <em>search-bind-password</em> properties may be optional for your OpenDJ installation: they are required in my case because I have disabled anonymous access to my OpenDJ server</li>
<li>The port used for access to your OpenDJ server may not necessarily be 1389 &#8211; change this as necessary.</li>
</ul>
<p>&nbsp;</p>
<p><strong>Change the JACC provider from <em>default</em> to <em>simple</em></strong></p>
<p>I found that if this step is not performed, LDAP group lookup from GlassFish to OpenDJ will plain just not work.</p>
<p>Navigate to the <em>Configurations -&gt; server-config -&gt; Security</em> node of the GlassFish admin BUI and make the setting as illustrated:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/glassfishjaccsimpleprovider.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/glassfishjaccsimpleprovider.png?w=300&#038;h=216" alt="GlassFish - set the JACC provider to Simple" title="GlassFishJACCSimpleProvider" width="300" height="216" class="alignnone size-medium wp-image-2015" /></a></p>
<p>&nbsp;</p>
<p>This should be all the configuration needed in GlassFish using the admin BUI, so we can now proceed to making the required modifications to the following JSPWiki deployment descriptor and policy files:</p>
<ul>
<li><em>web.xml</em></li>
<li><em>jspwiki.policy</em></li>
<li><em>glassfish-web.xml</em></li>
</ul>
<p>&nbsp;</p>
<p>In the following steps, we are assuming that JSPWiki has been deployed to the <em>domain1</em> domain, and the path to the deployment descriptor and policy configuration files is:</p>
<p><pre class="brush: css;">/opt/glassfishv3/glassfish/domains/domain1/applications/JSPWiki/WEB-INF</pre></p>
<p>&nbsp;</p>
<p>(Also, in my case no changes needed to be made at all to the <em>jspwiki.properties</em> file.)</p>
<p>&nbsp;</p>
<p><strong>Enable container based authentication in the <em>web.xml</em> file </strong></p>
<p>In the <em>web.xml</em> file (in its unmodified state in JSPWiki v2.8.3), look for the section near the end of the file which begins with the following comment:</p>
<p><pre class="brush: css;">&lt;!--  REMOVE ME TO ENABLE CONTAINER-MANAGED AUTH</pre></p>
<p>&nbsp;</p>
<p>Simply uncomment the section and replace it with the following:</p>
<p><pre class="brush: css;">
&lt;security-constraint&gt;
       &lt;web-resource-collection&gt;
           &lt;web-resource-name&gt;Administrative Area&lt;/web-resource-name&gt;
           &lt;url-pattern&gt;/Delete.jsp&lt;/url-pattern&gt;
       &lt;/web-resource-collection&gt;
       &lt;auth-constraint&gt;
           &lt;role-name&gt;wiki-admin&lt;/role-name&gt;
       &lt;/auth-constraint&gt;
   &lt;/security-constraint&gt;
      
   &lt;security-constraint&gt;
       &lt;web-resource-collection&gt;
           &lt;web-resource-name&gt;Authenticated area&lt;/web-resource-name&gt;
           &lt;url-pattern&gt;/Edit.jsp&lt;/url-pattern&gt;
           &lt;url-pattern&gt;/Comment.jsp&lt;/url-pattern&gt;
           &lt;url-pattern&gt;/Login.jsp&lt;/url-pattern&gt;
           &lt;url-pattern&gt;/NewGroup.jsp&lt;/url-pattern&gt;
           &lt;url-pattern&gt;/Rename.jsp&lt;/url-pattern&gt;
           &lt;url-pattern&gt;/Upload.jsp&lt;/url-pattern&gt;
           &lt;http-method&gt;DELETE&lt;/http-method&gt;
           &lt;http-method&gt;GET&lt;/http-method&gt;
           &lt;http-method&gt;HEAD&lt;/http-method&gt;
           &lt;http-method&gt;POST&lt;/http-method&gt;
           &lt;http-method&gt;PUT&lt;/http-method&gt;
       &lt;/web-resource-collection&gt;

       &lt;web-resource-collection&gt;
           &lt;web-resource-name&gt;Read-only Area&lt;/web-resource-name&gt;
           &lt;url-pattern&gt;/attach&lt;/url-pattern&gt;
           &lt;http-method&gt;DELETE&lt;/http-method&gt;
           &lt;http-method&gt;POST&lt;/http-method&gt;
           &lt;http-method&gt;PUT&lt;/http-method&gt;
       &lt;/web-resource-collection&gt;

       &lt;auth-constraint&gt;
           &lt;role-name&gt;wiki-admin&lt;/role-name&gt;
           &lt;role-name&gt;wiki-users&lt;/role-name&gt;
       &lt;/auth-constraint&gt;
   &lt;/security-constraint&gt;

   &lt;login-config&gt;
       &lt;auth-method&gt;FORM&lt;/auth-method&gt;
       &lt;realm-name&gt;JSPWikiUsers&lt;/realm-name&gt;
       &lt;form-login-config&gt;
           &lt;form-login-page&gt;/LoginForm.jsp&lt;/form-login-page&gt;
           &lt;form-error-page&gt;/LoginForm.jsp&lt;/form-error-page&gt;
       &lt;/form-login-config&gt;
   &lt;/login-config&gt;

   &lt;security-role&gt;
       &lt;description&gt;
           This logical role includes all authenticated users
       &lt;/description&gt;
       &lt;role-name&gt;wiki-users&lt;/role-name&gt;
   &lt;/security-role&gt;

   &lt;security-role&gt;
       &lt;description&gt;
           This logical role includes all administrative users
       &lt;/description&gt;
       &lt;role-name&gt;wiki-admin&lt;/role-name&gt;
   &lt;/security-role&gt;
</pre></p>
<p>&nbsp;</p>
<p><strong>Modify the <em>jspwiki.policy</em> file</strong></p>
<p>This will allow users in the <em>wiki-admin</em> LDAP group to be granted full permissions upon authenticating to JSPWiki. </p>
<p>Look for the following section at the end of the <em>jspwiki.policy</em> file (in its unmodified state in a JSPWiki v2.8.3 installation):</p>
<p><pre class="brush: css;">
// Administrators (principals or roles possessing AllPermission)
// are allowed to delete any page, and can edit, rename and delete
// groups. You should match the permission target (here, 'JSPWiki')
// with the value of the 'jspwiki.applicationName' property in
// jspwiki.properties. Two administative groups are set up below:
// the wiki group &quot;Admin&quot; (stored by default in wiki page GroupAdmin)
// and the container role &quot;Admin&quot; (managed by the web container).

grant principal com.ecyrd.jspwiki.auth.GroupPrincipal &quot;Admin&quot; {
    permission com.ecyrd.jspwiki.auth.permissions.AllPermission &quot;*&quot;;
};
grant principal com.ecyrd.jspwiki.auth.authorize.Role &quot;Admin&quot; {
    permission com.ecyrd.jspwiki.auth.permissions.AllPermission &quot;*&quot;;
};
</pre></p>
<p>&nbsp;</p>
<p>And modify it to read:<br />
<pre class="brush: css;">
// Administrators (principals or roles possessing AllPermission)
// are allowed to delete any page, and can edit, rename and delete
// groups. You should match the permission target (here, 'JSPWiki')
// with the value of the 'jspwiki.applicationName' property in
// jspwiki.properties. Two administative groups are set up below:
// the wiki group &quot;Admin&quot; (stored by default in wiki page GroupAdmin)
// and the container role &quot;Admin&quot; (managed by the web container).

// grant principal com.ecyrd.jspwiki.auth.GroupPrincipal &quot;Admin&quot; {
//     permission com.ecyrd.jspwiki.auth.permissions.AllPermission &quot;*&quot;;
// };
// grant principal com.ecyrd.jspwiki.auth.authorize.Role &quot;Admin&quot; {
//     permission com.ecyrd.jspwiki.auth.permissions.AllPermission &quot;*&quot;;
// };
grant principal com.ecyrd.jspwiki.auth.authorize.Role &quot;wiki-admin&quot; {
    permission com.ecyrd.jspwiki.auth.permissions.AllPermission &quot;*&quot;;
};
</pre></p>
<p>&nbsp;</p>
<p><strong>Create the <em>glassfish-web.xml</em> file</strong></p>
<p>The primary purpose of this file will be to map the security roles we defined in the <em>web.xml</em> file to the JSPWiki groups we created in OpenDJ. The file should be created at:</p>
<p><pre class="brush: css;">/opt/glassfishv3/glassfish/domains/domain1/applications/JSPWiki/WEB-INF</pre></p>
<p>&nbsp;</p>
<p>The <em>glassfish-web.xml</em> file should contain the following only:<br />
<pre class="brush: css;">
&lt;!DOCTYPE glassfish-web-app PUBLIC &quot;-//GlassFish.org//DTD GlassFish Application Server 3.1 Servlet 3.0//EN&quot; &quot;http://glassfish.org/dtds/glassfish-web-app_3_0-1.dtd&quot;&gt;

&lt;glassfish-web-app&gt;
 &lt;security-role-mapping&gt;
        &lt;role-name&gt;wiki-admin&lt;/role-name&gt;
        &lt;group-name&gt;wiki-admin&lt;/group-name&gt;
 &lt;/security-role-mapping&gt;
 &lt;security-role-mapping&gt;
        &lt;role-name&gt;wiki-users&lt;/role-name&gt;
        &lt;group-name&gt;wiki-users&lt;/group-name&gt;
 &lt;/security-role-mapping&gt;
&lt;/glassfish-web-app&gt;
</pre></p>
<p>&nbsp;</p>
<p><strong>Restart the GlassFish domain, and test LDAP logins to JSPWiki</strong></p>
<p>First, restart the domain either using the <em>asadmin</em> utility or the GlassFish admin BUI. Then test LDAP logins to JSPWiki. </p>
<p>In my case, we can observe that logging in as a user that is a member of the <em>wiki-admin</em> group in OpenDJ, I do indeed have full permissions in JSPWiki:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/jspwikildapadminuser.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/jspwikildapadminuser.png?w=300&#038;h=190" alt="JSPWiki LDAP admin user" title="JSPWikiLDAPAdminUser" width="300" height="190" class="alignnone size-medium wp-image-2034" /></a></p>
<p>Whereas logging in as a user that is a member of the <em>wiki-users</em> group in OpenDJ, I am restricted from certain destructive actions:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/jspwikildapstandarduser.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/jspwikildapstandarduser.png?w=300&#038;h=192" alt="JSPWiki LDAP standard user" title="JSPWikiLDAPStandardUser" width="300" height="192" class="alignnone size-medium wp-image-2035" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davekoelmeyer.wordpress.com/2007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davekoelmeyer.wordpress.com/2007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davekoelmeyer.wordpress.com/2007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davekoelmeyer.wordpress.com/2007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davekoelmeyer.wordpress.com/2007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davekoelmeyer.wordpress.com/2007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davekoelmeyer.wordpress.com/2007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davekoelmeyer.wordpress.com/2007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davekoelmeyer.wordpress.com/2007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davekoelmeyer.wordpress.com/2007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davekoelmeyer.wordpress.com/2007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davekoelmeyer.wordpress.com/2007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davekoelmeyer.wordpress.com/2007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davekoelmeyer.wordpress.com/2007/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=2007&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.davekoelmeyer.co.nz/2012/01/28/container-based-authentication-with-jspwiki-glassfish-and-opendj/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7d6d3210e4174a5d2f12819a0e00568?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davekoelmeyer</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/jspwikigroupsinopendj.png?w=242" medium="image">
			<media:title type="html">JSPWikiGroupsInOpenDJ</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/glassfishserverconfignode.png?w=221" medium="image">
			<media:title type="html">GlassFishServerConfigNode</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/glassfishldapsecurityrealm.png?w=300" medium="image">
			<media:title type="html">GlassFishLDAPSecurityRealm</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/glassfishjaccsimpleprovider.png?w=300" medium="image">
			<media:title type="html">GlassFishJACCSimpleProvider</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/jspwikildapadminuser.png?w=300" medium="image">
			<media:title type="html">JSPWikiLDAPAdminUser</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/jspwikildapstandarduser.png?w=300" medium="image">
			<media:title type="html">JSPWikiLDAPStandardUser</media:title>
		</media:content>
	</item>
		<item>
		<title>The mere mortals&#8217; guide to setting up Gmail with Thunderbird</title>
		<link>http://blog.davekoelmeyer.co.nz/2012/01/26/the-mere-mortals-guide-to-setting-up-gmail-with-thunderbird/</link>
		<comments>http://blog.davekoelmeyer.co.nz/2012/01/26/the-mere-mortals-guide-to-setting-up-gmail-with-thunderbird/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 10:42:10 +0000</pubDate>
		<dc:creator>davekoelmeyer</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Thunderbird]]></category>

		<guid isPermaLink="false">http://blog.davekoelmeyer.co.nz/?p=1984</guid>
		<description><![CDATA[After throwing my toys out of the cot regarding Google&#8217;s attempts to shoehorn stupid features into their mail offering in an attempt to turn email into something it&#8217;s not, I thought I&#8217;d blog the settings I use in both the Gmail web interface and Thunderbird to get it behaving sanely over IMAP. So, if you&#8217;d [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=1984&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After <a href="http://blog.davekoelmeyer.co.nz/2012/01/08/the-new-gmail-sucks-especially-for-imap-users/" target="_blank">throwing my toys out of the cot</a> regarding Google&#8217;s attempts to shoehorn stupid features into their mail offering in an attempt to turn email into something it&#8217;s not, I thought I&#8217;d blog the settings I use in both the Gmail web interface and Thunderbird to get it behaving sanely over IMAP.</p>
<p>So, if you&#8217;d like to use Thunderbird with Gmail and be able to do the following:</p>
<ul>
<li>deal with a <em>single</em> copy of each mail item</li>
<li>be able to sort that copy into a folder</li>
<li>delete mail items and have them go into a Trash folder, which you can then empty</li>
<li>just generally and basically have it work without it getting in the way&#8230;</li>
</ul>
<p>Then read on! </p>
<p>&nbsp;</p>
<p>I am using Thunderbird 9.0 on OpenIndiana oi_151a, and a Google Apps account for my Gmail. I am assuming you have first already enabled IMAP support in Gmail, but have yet to create an IMAP connection to it in Thunderbird.</p>
<p>&nbsp;</p>
<p>First, let&#8217;s prevent Gmail&#8217;s new, &#8220;special&#8221; folders from appearing in Thunderbird. This a) reduces a great deal of interface confusion for Thunderbird users, and b) prevents a <strong>duplicate copy of every single email</strong> from being created in Thunderbird thanks to the <em>&#8220;All Mail&#8221;</em> folder. Don&#8217;t think too hard about it, just log into the Gmail web interface, go to <em>Settings -&gt; Labels</em>, and apply the settings as highlighted in the following:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/gmaillabelsimapsettings.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/gmaillabelsimapsettings.png?w=300&#038;h=187" alt="Gmail settings - disable Labels for IMAP users" title="GmailLabelsIMAPSettings" width="300" height="187" class="alignnone size-medium wp-image-1986" /></a></p>
<p>&nbsp;</p>
<p>Next, configure an IMAP connection to your Gmail account in Thunderbird. Once the account is visible in your client, make particular note of the set of folders visible under the funny-looking <em>&#8220;[Gmail]&#8220;</em> folder &#8211; it should look like the following:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/thunderbirdgmailimap-1.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/thunderbirdgmailimap-1.png?w=239&#038;h=300" alt="Gmail special folders in Thunderbird" title="ThunderbirdGmailIMAP-1" width="239" height="300" class="alignnone size-medium wp-image-1988" /></a></p>
<p>&nbsp;</p>
<p>Now let&#8217;s configure Thunderbird such that when you delete an email, it goes into the Gmail <em>Trash</em> folder, and from there if you empty the <em>Trash</em> folder, the message is permanently deleted. No, don&#8217;t ask why I am stating the bloody obvious, just observe the following settings for the Gmail account in Thunderbird (and note that this runs counter to the completely bizarre &#8220;recommended IMAP settings&#8221; Google would have you use). Make sure that the <em>Trash</em> folder you reference is the one that sits under the <em>[Gmail]</em> folder:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/gmailthunderbirdaccountsettings-1.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/gmailthunderbirdaccountsettings-1.png?w=276&#038;h=300" alt="Trash settings in Thunderbird for Gmail" title="GmailThunderbirdAccountSettings-1" width="276" height="300" class="alignnone size-medium wp-image-1990" /></a></p>
<p>Test this by deleting a message from your <em>Inbox</em> or whatever &#8211; it should go into the <em>[Gmail] -&gt; Trash</em> folder, and you should be able to right click on that folder and empty it to permanently delete items.</p>
<p>&nbsp;</p>
<p>Disable Thunderbird&#8217;s junk email detection for the Gmail account:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/gmailthunderbirdimapjunksettings.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/gmailthunderbirdimapjunksettings.png?w=300&#038;h=170" alt="Thunderbird - disable Junk email detection for Gmail accounts" title="GmailThunderbirdIMAPJunkSettings" width="300" height="170" class="alignnone size-medium wp-image-1992" /></a></p>
<p>&nbsp;</p>
<p>Finally, and this is referenced in Google&#8217;s documentation, if you are sending mail out through Google&#8217;s SMTP server, then make sure that you are not also saving a copy in the <em>Sent Mail</em> folder for the account. Again confusing, because this is naturally what you would <em>want</em> to do for an IMAP account &#8211; but as it happens Gmail will save a copy automatically in the <em>[Gmail] -&gt; Sent Mail</em> folder if you use their outbound server (which I do). I use the following settings for copies of sent mail, and any other copies:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/gmailthunderbirdimapcopiessettings.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/gmailthunderbirdimapcopiessettings.png?w=254&#038;h=300" alt="Disable saving copies of sent mail for Gmail in Thunderbird" title="GmailThunderbirdIMAPCopiesSettings" width="254" height="300" class="alignnone size-medium wp-image-2000" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davekoelmeyer.wordpress.com/1984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davekoelmeyer.wordpress.com/1984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davekoelmeyer.wordpress.com/1984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davekoelmeyer.wordpress.com/1984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davekoelmeyer.wordpress.com/1984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davekoelmeyer.wordpress.com/1984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davekoelmeyer.wordpress.com/1984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davekoelmeyer.wordpress.com/1984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davekoelmeyer.wordpress.com/1984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davekoelmeyer.wordpress.com/1984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davekoelmeyer.wordpress.com/1984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davekoelmeyer.wordpress.com/1984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davekoelmeyer.wordpress.com/1984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davekoelmeyer.wordpress.com/1984/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=1984&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.davekoelmeyer.co.nz/2012/01/26/the-mere-mortals-guide-to-setting-up-gmail-with-thunderbird/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7d6d3210e4174a5d2f12819a0e00568?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davekoelmeyer</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/gmaillabelsimapsettings.png?w=300" medium="image">
			<media:title type="html">GmailLabelsIMAPSettings</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/thunderbirdgmailimap-1.png?w=239" medium="image">
			<media:title type="html">ThunderbirdGmailIMAP-1</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/gmailthunderbirdaccountsettings-1.png?w=276" medium="image">
			<media:title type="html">GmailThunderbirdAccountSettings-1</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/gmailthunderbirdimapjunksettings.png?w=300" medium="image">
			<media:title type="html">GmailThunderbirdIMAPJunkSettings</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/gmailthunderbirdimapcopiessettings.png?w=254" medium="image">
			<media:title type="html">GmailThunderbirdIMAPCopiesSettings</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Solaris 11 has no license fees!!</title>
		<link>http://blog.davekoelmeyer.co.nz/2012/01/25/oracle-solaris-11-has-no-license-fees/</link>
		<comments>http://blog.davekoelmeyer.co.nz/2012/01/25/oracle-solaris-11-has-no-license-fees/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 02:05:15 +0000</pubDate>
		<dc:creator>davekoelmeyer</dc:creator>
				<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://blog.davekoelmeyer.co.nz/?p=1979</guid>
		<description><![CDATA[Seems that Oracle is busy pushing the boundaries of all that is disingenuous &#8211; as usual&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=1979&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Seems that Oracle is busy pushing the boundaries of <a href="http://blog.davekoelmeyer.co.nz/2010/11/11/oracles-virtualisation-bundles-have-no-license-costs/" target="_blank">all that is disingenuous</a> &#8211; as usual&#8230;</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/oraclelicensefees.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/oraclelicensefees.png?w=300&#038;h=278" alt="Solaris 11 license fees" title="OracleLicenseFees" width="300" height="278" class="alignnone size-medium wp-image-1980" /></a></p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/oraclesupportedhardware.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/oraclesupportedhardware.png?w=300&#038;h=267" alt="Solaris 11 runs on any system" title="OracleSupportedHardware" width="300" height="267" class="alignnone size-medium wp-image-1981" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davekoelmeyer.wordpress.com/1979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davekoelmeyer.wordpress.com/1979/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davekoelmeyer.wordpress.com/1979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davekoelmeyer.wordpress.com/1979/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davekoelmeyer.wordpress.com/1979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davekoelmeyer.wordpress.com/1979/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davekoelmeyer.wordpress.com/1979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davekoelmeyer.wordpress.com/1979/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davekoelmeyer.wordpress.com/1979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davekoelmeyer.wordpress.com/1979/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davekoelmeyer.wordpress.com/1979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davekoelmeyer.wordpress.com/1979/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davekoelmeyer.wordpress.com/1979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davekoelmeyer.wordpress.com/1979/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=1979&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.davekoelmeyer.co.nz/2012/01/25/oracle-solaris-11-has-no-license-fees/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7d6d3210e4174a5d2f12819a0e00568?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davekoelmeyer</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/oraclelicensefees.png?w=300" medium="image">
			<media:title type="html">OracleLicenseFees</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/oraclesupportedhardware.png?w=300" medium="image">
			<media:title type="html">OracleSupportedHardware</media:title>
		</media:content>
	</item>
		<item>
		<title>Mobile Document Viewer &#8211; view ODF format files on Android</title>
		<link>http://blog.davekoelmeyer.co.nz/2012/01/24/mobile-document-viewer-view-odf-format-files-in-android/</link>
		<comments>http://blog.davekoelmeyer.co.nz/2012/01/24/mobile-document-viewer-view-odf-format-files-in-android/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 08:46:13 +0000</pubDate>
		<dc:creator>davekoelmeyer</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[LibreOffice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[OpenOffice]]></category>

		<guid isPermaLink="false">http://blog.davekoelmeyer.co.nz/?p=1973</guid>
		<description><![CDATA[One of the most perplexing omissions from Google&#8217;s Android OS feature set is native ODF file format support. The Android market has applications up the ass for viewing Microsoft Office format files, but there is a seeming dearth of applications which will allow you to view your LibreOffice (or OpenOffice&#8230;) documents. Given Android&#8217;s open source [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=1973&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the most perplexing omissions from Google&#8217;s Android OS feature set is native ODF file format support. The Android market has applications up the ass for viewing Microsoft Office format files, but there is a seeming dearth of applications which will allow you to view your LibreOffice (or OpenOffice&#8230;) documents. Given Android&#8217;s open source nature, the lack of shipping support for ODF is puzzling.</p>
<p>Anyway, after having a sniff around I have found an application which on a basic level seems to work well enough &#8211; &#8220;Mobile Document Viewer&#8221;:</p>
<p><a href="https://market.android.com/details?id=de.joergjahnke.documentviewer.android.free&amp;feature=also_installed" target="_blank">https://market.android.com/details?id=de.joergjahnke.documentviewer.android.free&amp;feature=also_installed</a></p>
<p>Running it on an ASUS Eee Slider tablet, I loaded up one of my ODT files which I could open with no problems:</p>
<p><a href="http://davekoelmeyer.files.wordpress.com/2012/01/mobiledocumentviewer.png"><img src="http://davekoelmeyer.files.wordpress.com/2012/01/mobiledocumentviewer.png?w=156&#038;h=300" alt="Mobile Document Viewer on the ASUS Eee Slider tablet" title="MobileDocumentViewer" width="156" height="300" class="alignnone size-medium wp-image-1974" /></a></p>
<p>The application however converts the content to HTML and displays it in a browser window &#8211; so the formatting goes somewhat AWOL, but otherwise the content itself loads up fine. As a cute extra there is text-to-speech support, if you fancy having ODF files read aloud to you. </p>
<p>The free version is ad-supported (hence my message from &#8220;Elaine&#8221;&#8230;), but given the paltry fee for the full version this is a no-brainer purchase. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davekoelmeyer.wordpress.com/1973/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davekoelmeyer.wordpress.com/1973/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davekoelmeyer.wordpress.com/1973/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davekoelmeyer.wordpress.com/1973/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davekoelmeyer.wordpress.com/1973/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davekoelmeyer.wordpress.com/1973/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davekoelmeyer.wordpress.com/1973/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davekoelmeyer.wordpress.com/1973/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davekoelmeyer.wordpress.com/1973/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davekoelmeyer.wordpress.com/1973/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davekoelmeyer.wordpress.com/1973/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davekoelmeyer.wordpress.com/1973/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davekoelmeyer.wordpress.com/1973/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davekoelmeyer.wordpress.com/1973/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.davekoelmeyer.co.nz&amp;blog=10965506&amp;post=1973&amp;subd=davekoelmeyer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.davekoelmeyer.co.nz/2012/01/24/mobile-document-viewer-view-odf-format-files-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7d6d3210e4174a5d2f12819a0e00568?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">davekoelmeyer</media:title>
		</media:content>

		<media:content url="http://davekoelmeyer.files.wordpress.com/2012/01/mobiledocumentviewer.png?w=156" medium="image">
			<media:title type="html">MobileDocumentViewer</media:title>
		</media:content>
	</item>
	</channel>
</rss>
