<?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/"
	>

<channel>
	<title>Yet Another Linux Blog &#187; appliance</title>
	<atom:link href="http://linux-blog.org/tag/appliance/feed/" rel="self" type="application/rss+xml" />
	<link>http://linux-blog.org</link>
	<description>Open Source, Open Blog</description>
	<lastBuildDate>Fri, 03 Feb 2012 14:33:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Mediawiki: Remove External Arrow from Links</title>
		<link>http://linux-blog.org/mediawiki-remove-external-arrow-from-links/</link>
		<comments>http://linux-blog.org/mediawiki-remove-external-arrow-from-links/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 12:34:00 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Linux@Work]]></category>
		<category><![CDATA[appliance]]></category>
		<category><![CDATA[rpath]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://linux-blog.org/word/mediawiki-remove-external-arrow-from-links/</guid>
		<description><![CDATA[My main job here at rPath, Inc. is to document our technologies via the rPath Documentation Wiki. For this wiki, we use a Mediawiki Appliance. For those that don&#8217;t know, the &#8220;appliance&#8221; I refer to here is a software appliance&#8230;something rPath technologies make easy to maintain and create. For more information see the definition of [...]]]></description>
			<content:encoded><![CDATA[<p>My main job here at <a href="http://www.rpath.com/corp">rPath</a>, Inc. is to document our technologies via the <a href="http://wiki.rpath.com/wiki/Main_Page">rPath Documentation Wiki</a>.  For this wiki, we use a <a href="http://www.rpath.org/rbuilder/project/vehera-base/">Mediawiki Appliance</a>.  For those that don&#8217;t know, the &#8220;appliance&#8221; I refer to here is a software appliance&#8230;something rPath technologies make easy to maintain and create.  For more information see the<a href="http://www.rpath.com/corp/resources/What-is-a-Software-Appliance-Registration.html"> definition of a software appliance here</a>.</p>
<p>Moving on, I was ANNOYED by the fact that you have a small arrow &#8220;<img src="uploads/Posts/external.Thumbs.png" alt="" width="10" height="10" />&#8221; that appears beside any image that references an external URL or any link that does the same.  This is fine to let people know that links will take them to a different page&#8230;but what I was trying to do was to make a PDF Icon have the same link as the URL it was sitting beside:</p>
<p><!-- s9ymdb:597 --><!-- s9ymdb:597 --><img style="border: 0px none ; padding-left: 5px; padding-right: 5px;" src="/uploads/Posts/applaince2appliance.gif" alt="" width="352" height="32" /></p>
<p>So in the above image, if one clicked on the PDF icon <strong>or</strong> the &#8220;Application to Appliance: A Hands-on Guide (PDF)&#8221; the PDF would download.</p>
<p>Mediawiki doesn&#8217;t provide a fantastic way for you to do this.  However, after some snooping around via google, I found a fairly easy way to <a href="http://wiki.rpath.com/wiki/Application_to_Appliance">make things happen</a>.</p>
<p><span id="more-204"></span></p>
<p><span style="text-decoration: underline;"><strong>How to Do This</strong></span></p>
<p>First things first.  Open up <span style="font-family: courier new,courier,monospace;">LocalSettings.php</span> and make sure to set $wgAllowExternalImages = true; if it&#8217;s not done already.</p>
<p>Next get the full URL link to the thing you want downloaded&#8230;in my case, a PDF. Then, get the URL for the image you want to display/link. What I did was upload the icon to the wiki and then right click on the icon and &#8216;view image&#8217;. Now let&#8217;s put them together:</p>
<p><span style="font-family: courier new,courier,monospace;">[http://example.com/wiki/uploads/yourdownload.pdf http://example.com/wiki/images/Pdficon_small.gif]</span></p>
<p>Just after this will go the actual internal link&#8230;because the above is only for the icon. So you&#8217;d place your double bracket link just after this single bracket one.</p>
<p><span style="font-family: courier new,courier,monospace;">[[Media:yourdownload.pdf|Title of Your Download]]</span></p>
<p>Now that you have both of these completed, you must encapsulate them in a span class to remove the arrow formatting. Add the following before the single bracket above:</p>
<p><span style="font-family: courier new,courier,monospace;">&lt;span class=&#8221;plainlinks&#8221;&gt;</span></p>
<p>Then close out the span at the end of the double bracket wiki markup above:</p>
<p><span style="font-family: courier new,courier,monospace;">&lt;/span&gt;</span></p>
<p><span style="text-decoration: underline;"><strong>Putting It All Together</strong></span></p>
<p>So, to summarize, you&#8217;d have the following:</p>
<p><span style="font-family: courier new,courier,monospace;">&lt;span class=&#8221;plainlinks&#8221;&gt;</span><span style="font-family: courier new,courier,monospace;">[http://example.com/wiki/uploads/yourdownload.pdf http://example.com/wiki/images/Pdficon_small.gif]</span><span style="font-family: courier new,courier,monospace;">[[Media:yourdownload.pdf|Title of Your Download]]&lt;/span&gt;</span></p>
<p>Seems like a lot of stuff to get a simple image link right? Yes it is. But it works and I don&#8217;t have to install an extension to do it (I&#8217;m not fond of extensions). Remember also that you can call that span class plainlinks for other simple external links as well to remove the arrow <img src='http://linux-blog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Hope this helps someone in need&#8230;I know it helped me.</p>
<p>I would like to give special thanks to <a href="http://distributedresearch.net/blog/2008/01/21/how-to-make-image-links-in-mediawiki">Distributedresearch.net which contains the meat and potatoes</a> of this entry. What I&#8217;ve done in the example above is make it generic and give a practical example of how I used Andy&#8217;s original post.</p>
<p><a href="http://linux-blog.org/mediawiki-remove-external-arrow-from-links/" rel="bookmark">Mediawiki: Remove External Arrow from Links</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on February 7, 2008.</p>
]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/mediawiki-remove-external-arrow-from-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The rPath Forum goes Live!</title>
		<link>http://linux-blog.org/the-rpath-forum-goes-live/</link>
		<comments>http://linux-blog.org/the-rpath-forum-goes-live/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 15:57:50 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Linux@Work]]></category>
		<category><![CDATA[appliance]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[packaging]]></category>
		<category><![CDATA[rpath]]></category>

		<guid isPermaLink="false">http://linux-blog.org/word/the-rpath-forum-goes-live/</guid>
		<description><![CDATA[Here at rPath we use our own Mediawiki appliance for documentation (what is a software appliance?). While this is an excellent way of getting things documented quickly (as wiki&#8217;s are) it is NOT a great place for community based questions to influx nor a good place for knowledgebase questions to be stored. Often, the discussion [...]]]></description>
			<content:encoded><![CDATA[<p>Here at <a href="http://www.rpath.com/corp/" target="_blank">rPath</a> we <a href="http://wiki.rpath.com/wiki/Main_Page">use</a> our own <a href="http://www.rpath.org/rbuilder/project/vehera-base/" target="_blank">Mediawiki appliance</a> for documentation (<a href="http://www.rpath.com/corp/resources/What-is-a-Software-Appliance-Registration.html" target="_blank">what is a software appliance?</a>).  While this is an excellent way of getting things documented quickly (as wiki&#8217;s are) it is NOT a great place for community based questions to influx nor a good place for knowledgebase questions to be stored.  Often, the discussion tab on wiki&#8217;s go ignored with issue tracking systems replacing problems users have.</p>
<p>The problem with issue tracking systems is they have workflows of their own and often are impartial where they don&#8217;t need to be <img src='http://linux-blog.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .  Wouldn&#8217;t it be nice if there was a place where like users of software could come together to ask questions and help each other reach conclusive answers?  Hence, the <a href="http://forum.rpath.com/">rPath Forum</a> was born.</p>
<p><a href="http://stefw.livejournal.com/" target="_blank">Stef</a> created the <a href="http://www.rpath.org/rbuilder/project/smf/" target="_blank">Simple Machines Forum Appliance</a>, which you can install and run in various formats such as VMWare, Xen, ISO, RAW, and even a LiveCD (in x86 and x86_64 bit flavors!).  What a wonderful concept&#8230;to be able to quickly download and deploy a forum using nothing but a virtualized environment <img src='http://linux-blog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>As some of you know, I&#8217;ve chose Simple Machines in the past at <a href="http://www.mypclinuxos.com/forum/index.php?action=forum" target="_blank">MyPCLinuxOS</a> and <a href="http://www.pclinuxos.com/index.php?option=com_smf&amp;Itemid=58" target="_blank">PCLinuxOS</a> proper to power those communities.  Stef and I are excited to power the rPath community with this same wonderful software.</p>
<p>If you are a packager, appliance developer, Foresight Linux user, or are just interested in our products and technologies such as <a href="http://wiki.rpath.com/wiki/Conary" target="_blank">Conary</a> and <a href="http://wiki.rpath.com/wiki/rMake">rMake</a>&#8230;<a href="http://forum.rpath.com/index.php" target="_blank">come on over to the rPath Forum</a> and <a href="http://forum.rpath.com/index.php?action=register">register</a>.  Drop us a line and say hello <img src='http://linux-blog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://linux-blog.org/the-rpath-forum-goes-live/" rel="bookmark">The rPath Forum goes Live!</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on February 1, 2008.</p>
]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/the-rpath-forum-goes-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

