    <?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 BlogYet Another Linux Blog &#187; style</title>
	<atom:link href="http://linux-blog.org/tag/style/feed/" rel="self" type="application/rss+xml" />
	<link>http://linux-blog.org</link>
	<description>Open Source, Open Blog</description>
	<lastBuildDate>Wed, 14 Mar 2012 23:18:15 +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" onclick="return TrackClick('http%3A%2F%2Fwww.rpath.com%2Fcorp','rPath')">rPath</a>, Inc. is to document our technologies via the <a href="http://wiki.rpath.com/wiki/Main_Page" onclick="return TrackClick('http%3A%2F%2Fwiki.rpath.com%2Fwiki%2FMain_Page','rPath+Documentation+Wiki')">rPath Documentation Wiki</a>.  For this wiki, we use a <a href="http://www.rpath.org/rbuilder/project/vehera-base/" onclick="return TrackClick('http%3A%2F%2Fwww.rpath.org%2Frbuilder%2Fproject%2Fvehera-base%2F','Mediawiki+Appliance')">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" onclick="return TrackClick('http%3A%2F%2Fwww.rpath.com%2Fcorp%2Fresources%2FWhat-is-a-Software-Appliance-Registration.html','definition+of+a+software+appliance+here')"> 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" onclick="return TrackClick('http%3A%2F%2Fwiki.rpath.com%2Fwiki%2FApplication_to_Appliance','make+things+happen')">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" onclick="return TrackClick('http%3A%2F%2Fdistributedresearch.net%2Fblog%2F2008%2F01%2F21%2Fhow-to-make-image-links-in-mediawiki','Distributedresearch.net+which+contains+the+meat+and+potatoes')">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>What&#8217;s Up With the New Look?</title>
		<link>http://linux-blog.org/whats-up-with-the-new-look/</link>
		<comments>http://linux-blog.org/whats-up-with-the-new-look/#comments</comments>
		<pubDate>Wed, 03 May 2006 15:55:50 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[Template]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[YALB]]></category>

		<guid isPermaLink="false">http://linux-blog.org/word/whats-up-with-the-new-look/</guid>
		<description><![CDATA[As you might have noticed, we have a new look currently. This theme is a temporary one as I build the next one from scratch. I&#8217;ve been theme shopping for the last couple of months and noticed that there isn&#8217;t a whole heckuva lot to choose from that a million people aren&#8217;t using already. So [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none ; float: left; padding-left: 5px; padding-right: 5px;" src="/uploads/CinemaDisplaypaint.Thumbs.png" alt="" width="110" height="110" />As you might have noticed, we have a new look currently.  This theme is a temporary one as I build the next one from scratch.  I&#8217;ve been theme shopping for the last couple of months and noticed that there isn&#8217;t a whole heckuva lot to choose from that a million people aren&#8217;t using already.  So the only way that I can make sure that Yet Another Linux Blog is unique is if I do the theme myself.  Of course, this means that I have to learn a whole new set of .tpl files, new CSS calls, and start sketching things out on a sketchpad that I haven&#8217;t bought yet <img src='http://linux-blog.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>If anyone has any feedback on the current theme, please let me know&#8230;I can change it pretty easily or hack it to pieces on a whim.</p>
<p>I&#8217;ve been somewhat busy having launched http://mypclinuxos.com as a PCLinuxOS projects site to assist the PCLinuxOS development team with various projects and to provide the community with a platform on which to develop their own projects.  Therefore, I haven&#8217;t had a ton of time to blog as of late.  I should be back to a normal schedule within the next month or so.  If not, this blog might go dormant for a while until I am able to relenquish my administrative duties at mypclinuxos.com.  I have a review of a server distro I started a few weeks ago, but I haven&#8217;t finished it yet.  Hopefully, I will be able to get that review out in the next week or so.  I won&#8217;t hold my breath, I&#8217;ve got a ton of stuff going on at the projects site that keeps me oh so busy.  Thanks for reading and sticking with me through the lean parts of this blog.  Cheers.</p>
<p>Devnet</p>
<p><a href="http://linux-blog.org/whats-up-with-the-new-look/" rel="bookmark">What&#8217;s Up With the New Look?</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on May 3, 2006.</p>
]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/whats-up-with-the-new-look/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>mv elitism  /dev/null</title>
		<link>http://linux-blog.org/mv-elitism-devnull/</link>
		<comments>http://linux-blog.org/mv-elitism-devnull/#comments</comments>
		<pubDate>Tue, 31 May 2005 14:10:01 +0000</pubDate>
		<dc:creator>devnet</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[functionality]]></category>
		<category><![CDATA[great divide]]></category>
		<category><![CDATA[new users]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://linux-blog.org/word/mv-elitism-devnull/</guid>
		<description><![CDATA[In the beginning of things, open source was about open everything. I remember joining an irc channel # on efnet back in 1993 and chatting with people who could make things happen with computers&#8230;really make things happen. Coders, managers, hackers&#8230;they were all there and a tight nit core of about 6 of us stayed in [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none ; float: left; padding-left: 5px; padding-right: 5px;" src="/uploads/FileAlert.Thumbs.png" alt="" width="110" height="110" />In the beginning of things, open source was about open everything.  I remember joining an irc channel # on efnet back in 1993 and chatting with people who could make things happen with computers&#8230;really make things happen.  Coders, managers, hackers&#8230;they were all there and a tight nit core of about 6 of us stayed in touch for about 7 years until we went our separate ways and began to use irc less and less.  The thing that I remember the most is the fact that when I joined their little group, I was a complete and total n00b.  Not just a n00b to Open Source&#8230;but to computers altogether.  I had a Texas Instruments computer back in 1985 but only messed with that for about a year.  Mice were new to me&#8230;I didn&#8217;t know ANYTHING at all.  In the short time that I began chatting on irc, I was shown how to do things.  When I didn&#8217;t know how to do something, I could count on one of the guys or girls in the channel helping me to solve my problem within a matter of minutes.  These people stepped down off of their level of operation long enough to educate me in the ways of the open source.</p>
<p>I look fondly back at this time and have spoken about it before&#8230;not because I don&#8217;t think something like this exists now&#8230;just that I think it is a rarity.  There was a time when this &#8220;spirit of open source&#8221; was all about educating and furthering the program/app that you were working on.  Now it seems that when a new user comes in to any channel on irc or forum, they are told off with a hearty RTFM (Read the &#8216;Friendly&#8217; Manual).</p>
<p>Where did this Elitism come from?  Where and when did Linux and open source become about the mentality &#8220;you must be this knowledgeable to ride?&#8221;  It pains me to see people do this to new users&#8230;distancing themselves from potential advocates of open source&#8230;zealous ones at that.  It&#8217;s a real testament to some of these new users STILL wanting to plug open source and Linux, despite being squashed by elitists in forums.</p>
<p><span id="more-86"></span></p>
<p>I&#8217;m sure that some of you are saying, &#8220;this kind of thing doesn&#8217;t exist in my application/project/distro&#8217;s community. We are all open to all users, be they new or experienced. Sounds nirvana to me. I challenge you to take a closer look at your community and if you find Elitism, squash it. Having personally been involved in quite a good share of communities of major Linux distros (let&#8217;s just say, some major Debian and RPM based ones) I can assure you that despite the claims of new user friendly, most had a fair share of elitists swimming in their help channels.</p>
<p>Elitism has no place in open source. Open source is about freedom of everyone to look at the source of a program&#8230;EVERYONE. There are no country clubs for open source&#8230;you do not need to pay to get in. There are no qualifications for people to use open source. Since there are no criteria&#8230;why are people holding new users and others with limited knowledge&#8230;to a standard as if there are criteria?</p>
<p>It&#8217;s ridiculous for current &#8216;expert&#8217; users or developers to withhold information or help from new users simply because, &#8220;new users need to cut their teeth&#8221;. Why? Because not everyone learns the same way. In the past, the only people who used Linux and open source were those that learned by reading and pouring through documents. A more coder mentality existed among those flocking to open source banners then. Fast forward to today&#8217;s learner. You&#8217;ll see many differences. Among the largest one is the visual learner.</p>
<p>The visual learner learns by examples and seeing things happen with his/her own eyes. There have been vast advancement in this arena on the internet. Today, we have websites with embedded videos, flash tutorials, and audio blogs with step-by-step processes and how-tos. Despite all this technology, people still send new users to the same avenue to learn. RTFM or do a search. What if that isn&#8217;t good enough for the person you&#8217;re telling it to? What if that person can&#8217;t learn things in this capacity? What if they need to see things in action?</p>
<p>In closing, we must rethink our approach to answering questions on forums and in chat clients. I challenge each and every single one of you to think about your responses to new users or those limited in knowledge. Helping these people to attain knowledge in different capacities can make or break their will and create a friend of open source for life&#8230;or through not helping, a foe.</p>
<p>As always, Yet Another Linux Blog is open to users of all walks of experience.  If you have a question, please ask away in the comments.</p>
<p><a href="http://linux-blog.org/mv-elitism-devnull/" rel="bookmark">mv elitism  /dev/null</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on May 31, 2005.</p>
]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/mv-elitism-devnull/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 11/34 queries in 0.383 seconds using disk: basic
Object Caching 595/597 objects using disk: basic

Served from: linux-blog.org @ 2012-05-24 01:22:07 -->
