<?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>John Blackbourn</title>
	<atom:link href="/feed" rel="self" type="application/rss+xml" />
	<link>https://lud.icro.us</link>
	<description></description>
	<lastBuildDate>Sun, 17 Nov 2013 03:59:00 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9-alpha</generator>
	<item>
		<title>SublimeCodeIntel in Sublime Text 3</title>
		<link>https://lud.icro.us/sublimecodeintel-st3</link>
		<comments>https://lud.icro.us/sublimecodeintel-st3#comments</comments>
		<pubDate>Sun, 17 Nov 2013 03:56:31 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Developers]]></category>
		<category><![CDATA[Sublime Text]]></category>
		<category><![CDATA[SublimeCodeIntel]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=524</guid>
		<description><![CDATA[There is now a Sublime Text 3 compatible version of SublimeCodeIntel, thanks to the hard work of Germán M. Bravo (aka Kronuz). I had a job getting it to correctly index my project files though. I&#8217;m posting here what I did, in the hopes it&#8217;ll help someone else out. 1. Use the development branch I&#8217;m not [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>There is now a Sublime Text 3 compatible version of <a href="https://github.com/SublimeCodeIntel/SublimeCodeIntel">SublimeCodeIntel</a>, thanks to the hard work of Germán M. Bravo (aka <a href="https://github.com/Kronuz">Kronuz</a>). I had a job getting it to correctly index my project files though. I&#8217;m posting here what I did, in the hopes it&#8217;ll help someone else out.</p>
<h2>1. Use the development branch</h2>
<p>I&#8217;m not using the Package Control version of SublimeCodeIntel (I&#8217;ve looked at the version numbers and they are the same, but I couldn&#8217;t get it to work). Instead, I&#8217;m using a Git checkout of the development branch.</p>
<p>In the Sublime Text menu, go to Preferences -&gt; Browse Packages. From this directory I ran the command:</p>
<pre>git clone -b development git@github.com:SublimeCodeIntel/SublimeCodeIntel.git</pre>
<h2>2. Clear your codeintel cache</h2>
<p>Your codeintel cache probably needs clearing if, like me, you&#8217;ve had older versions of SublimeCodeIntel installed.</p>
<p>To do this, quit Sublime Text then go to your home directory and delete the entire .codeintel directory (eg. on OS X this is at ~/.codeintel). If you have a config file in there that you&#8217;ve made changes to, back it up first.</p>
<h2>3. Fix the language-specific config</h2>
<p>This appears to have been the key problem for me. Inexplicably, SublimeCodeIntel&#8217;s default config disables project scanning for PHP and JavaScript files. Why? Who knows.</p>
<p>To fix it, open the Sublime Text menu and go to Preferences -&gt; Package Settings -&gt; SublimeCodeIntel -&gt; Settings &#8211; Default. At the bottom of this file are language-specific settings for Python, JavaScript, and PHP.</p>
<p>Do not edit this config directly. Instead copy its contents completely and paste it into your user settings (Preferences -&gt; Package Settings -&gt; SublimeCodeIntel -&gt; Settings &#8211; User). Then delete the PHP and JavaScript settings from the bottom, or at least change the <code>codeintel_scan_files_in_project</code> settings to <code>true</code>.</p>
<h2>4. Be patient</h2>
<p>When you first begin typing a function name or other entity that triggers codeintel, the status bar will show you that the initial scan is taking place. I&#8217;ve noticed that this status message disappears before scanning is actually complete, or it&#8217;ll state that scanning is complete when it&#8217;s not. Be patient, and it will get there eventually.</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/sublimecodeintel-st3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Contributors on a World Map</title>
		<link>https://lud.icro.us/wordpress-contributors-map</link>
		<comments>https://lud.icro.us/wordpress-contributors-map#comments</comments>
		<pubDate>Tue, 13 Aug 2013 23:25:44 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Node.js]]></category>
		<category><![CDATA[Stats]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=470</guid>
		<description><![CDATA[As a fun data visualisation experiment &#8211; and as a way to practice my new found interest in Node.js &#8211; I decided to plot on a map of the world all the people who contributed to the recent release of WordPress 3.6. The map can be seen further down, but first a brief description of how I [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>As a fun data visualisation experiment &#8211; and as a way to practice my new found interest in Node.js &#8211; I decided to plot on a map of the world all the people who contributed to the <a href="http://wordpress.org/news/2013/08/oscar/">recent release of WordPress 3.6</a>. The map can be seen further down, but first a brief description of how I went about it.</p>
<p>I decided to generate a GeoJSON file of the contributor&#8217;s locations so it can be displayed wherever and however the open GeoJSON format is supported, not least on GitHub which <a href="https://github.com/blog/1528-there-s-a-map-for-that">recently added support for automatic rendering of GeoJSON files</a>.</p>
<p>In order to get the location data for each contributor I would need to scrape it from wordpress.org. In my simple Node script I started by using Node&#8217;s HTTP interface to fetch the <a href="http://wordpress.org/news/2013/08/oscar/">3.6 announcement blog post</a>. The content of the post was then loaded into <a href="https://github.com/MatthewMueller/cheerio">Cheerio</a> which provides a wonderful implementation of jQuery&#8217;s core for working with the DOM, and used this to find the list of links in the blog post to wordpress.org profile pages.</p>
<p>Next step was to loop over each profile URL and fetch the page in order to pluck out the location data from the map shown for each user. With 225 contributors, it was clear this was going to be slow. Luckily the <a href="https://github.com/caolan/async">async module</a> provides a super simple method for asynchronous iteration, so I used that to asynchronously fetch the profile pages.</p>
<p>The next step was to pluck out the user&#8217;s location from the markup using a straight forward regex, and then send this off to <a href="https://developers.google.com/maps/documentation/geocoding/">Google&#8217;s Geocoding API</a> in order to get us the geographic coordinates we&#8217;d need. Out of the 225 contributors, 61 didn&#8217;t have their location displayed on their profile page.</p>
<p>The final step was to load all the data into the <a href="https://github.com/caseypt/geojson.js">GeoJSON.js module</a> in order to give us a valid GeoJSON file, and then pretty print it using the native JSON.stringify method.</p>
<p>Here&#8217;s the end result:</p>
<p><script src="https://embed.github.com/view/geojson/johnbillion/wp-contributors-map/master/3.6.geojson"></script></p>
<p>You can find the Node JavaScript <a href="https://github.com/johnbillion/wp-contributors-map">in the GitHub repo</a> if you&#8217;re interested.</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-contributors-map/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A History of WordPress Contributors</title>
		<link>https://lud.icro.us/a-history-of-wordpress-contributors</link>
		<comments>https://lud.icro.us/a-history-of-wordpress-contributors#comments</comments>
		<pubDate>Fri, 15 Jun 2012 20:23:15 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Stats]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=311</guid>
		<description><![CDATA[I thought I&#8217;d run some stats on WordPress contributors over the years. The only contributor stats I have are the ones published in each release announcement on wordpress.org, so I&#8217;ve put these stats together myself from those lists. Unfortunately the release announcements have only listed the contributors since version 2.9 (June 2009). If anyone wants [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I thought I&#8217;d run some stats on WordPress contributors over the years. The only contributor stats I have are the ones published in each release announcement on wordpress.org, so I&#8217;ve put these stats together myself from those lists.</p>
<p>Unfortunately the release announcements have only listed the contributors since version 2.9 (June 2009). If anyone wants to get me the list of contributors for earlier versions I&#8217;ll happily update this post. It&#8217;d be interesting to see the numbers over the years.</p>
<h2>Contributors by Version</h2>
<p>Version 3.0 has so far seen the highest number of individual contributors. The latest version &#8211; <a href="http://wordpress.org/news/2012/06/green/">3.4</a> &#8211; comes in second with 187. I thought I might see a steady increase with each version, but this is not the case, and we&#8217;ll see why below.</p>
<p>Also shown is the number of Trac tickets closed with each version. There&#8217;s a noticable reduction in the number of tickets closed since version 3.0 which closed over 1,200 tickets, with recent releases closing fewer than half that number. This correlates nicely with the recent drive to clearly define the scope of each release. We can probably all agree that <a href="http://jane.wordpress.com/">Jane Wells</a> is to thank for playing a big part in keeping WordPress releases on schedule recently.</p>
<table>
<tbody>
<tr>
<th>Version</th>
<th>Contributors</th>
<th>Tickets Closed</th>
</tr>
<tr>
<td>3.4</td>
<td>183</td>
<td> 592</td>
</tr>
<tr>
<td>3.3</td>
<td>179</td>
<td> 587</td>
</tr>
<tr>
<td>3.2</td>
<td>132</td>
<td> 409</td>
</tr>
<tr>
<td>3.1</td>
<td>173</td>
<td> 840</td>
</tr>
<tr>
<td>3.0</td>
<td>210</td>
<td>1217</td>
</tr>
<tr>
<td>2.9</td>
<td>145</td>
<td> 501</td>
</tr>
</tbody>
</table>
<h2>Version Involvement</h2>
<p>WordPress sees long-term involvement from many people. Almost two hundred people have contributed to at least two different versions of WordPress since 2.9. The list got a bit long, so below I&#8217;ve listed the 120 people who have contributed to at least three out of the six versions released. While it&#8217;s not a good indication of the level of contributions by each person, it does demonstrate active involvment and an ongoing commitment.</p>
<table>
<tbody>
<tr>
<th>Versions Involved In</th>
<th>Person</th>
</tr>
<tr>
<td rowspan="13" valign="top">6</td>
<td><a href="http://profiles.wordpress.org/aaroncampbell">aaroncampbell</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/batmoo">batmoo</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/dd32">dd32</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/demetris">demetris</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/filosofo">filosofo</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/johnbillion">johnbillion</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/johnjamesjacoby">johnjamesjacoby</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/josephscott">josephscott</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/mdawaffe">mdawaffe</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/nacin">nacin</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/otto42">otto42</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/scribu">scribu</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/yoavf">yoavf</a></td>
</tr>
<tr>
<td rowspan="37" valign="top">5</td>
<td><a href="http://profiles.wordpress.org/alexkingorg">alexkingorg</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/arena">arena</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/azaozz">azaozz</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/coffee2code">coffee2code</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/dougwrites">dougwrites</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/duck_">duck_</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/ericmann">ericmann</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/garyc40">garyc40</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/hakre">hakre</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/iammattthomas">iammattthomas</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/iandstewart">iandstewart</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/joostdevalk">joostdevalk</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/koopersmith">koopersmith</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/lancewillett">lancewillett</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/lloydbudd">lloydbudd</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/markjaquith">markjaquith</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/mattyrob">mattyrob</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/miqrogroove">miqrogroove</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/mitchoyoshitaka">mitchoyoshitaka</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/nathanrice">nathanrice</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/nbachiyski">nbachiyski</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/niallkennedy">niallkennedy</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/ocean90">ocean90</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/petemall">petemall</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/ptahdunbar">ptahdunbar</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/ramiy">ramiy</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/ryan">ryan</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/sergeybiryukov">sergeybiryukov</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/simonwheatley">simonwheatley</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/sivel">sivel</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/solarissmoke">solarissmoke</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/sorich87">sorich87</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/tenpura">tenpura</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/utkarsh">utkarsh</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/viper007bond">viper007bond</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/westi">westi</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/zeo">zeo</a></td>
</tr>
<tr>
<td rowspan="26" valign="top">4</td>
<td><a href="http://profiles.wordpress.org/aldenta">aldenta</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/ampt">ampt</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/andy">andy</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/blepoxp">blepoxp</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/caspie">caspie</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/chrisbliss18">chrisbliss18</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/cyberhobo">cyberhobo</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/empireoflight">empireoflight</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/greenshady">greenshady</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/jamescollins">jamescollins</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/jane">jane</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/jayjdk">jayjdk</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/jeremyclarke">jeremyclarke</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/johnonolan">johnonolan</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/jorbin">jorbin</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/kawauso">kawauso</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/kevinb">kevinb</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/koke">koke</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/markmcwilliams">markmcwilliams</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/matveb">matveb</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/mfields">mfields</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/nao">nao</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/prettyboymp">prettyboymp</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/sirzooro">sirzooro</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/vanillalounge">vanillalounge</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/wpmuguru">wpmuguru</a></td>
</tr>
<tr>
<td rowspan="44" valign="top">3</td>
<td><a href="http://profiles.wordpress.org/andrea_r">andrea_r</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/andrewryno">andrewryno</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/barry">barry</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/boonebgorges">boonebgorges</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/caesarsgrunt">caesarsgrunt</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/chexee">chexee</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/chipbennett">chipbennett</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/denis-de-bernardy">denis-de-bernardy</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/dh-shredder">dh-shredder</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/dimadin">dimadin</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/dllh">dllh</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/greuben">greuben</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/helenyhou">helenyhou</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/ipstenu">ipstenu</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/jacobsantos">jacobsantos</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/jfarthing84">jfarthing84</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/johnpbloch">johnpbloch</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/kovshenin">kovshenin</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/latz">latz</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/linuxologos">linuxologos</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/markoheijnen">markoheijnen</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/michaelh">michaelh</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/mikeschinkel">mikeschinkel</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/mrmist">mrmist</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/pavelevap">pavelevap</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/peaceablewhale">peaceablewhale</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/rasheed">rasheed</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/redsweater">redsweater</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/rmccue">rmccue</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/rosshanney">rosshanney</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/ruslany">ruslany</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/saracannon">saracannon</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/sbressler">sbressler</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/simek">simek</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/technosailor">technosailor</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/thedeadmedic">thedeadmedic</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/tobiasbg">tobiasbg</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/trepmal">trepmal</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/usermrpapa">usermrpapa</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/vladimir_kolesnikov">vladimir_kolesnikov</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/wahgnube">wahgnube</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/wnorris">wnorris</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/xibe">xibe</a></td>
</tr>
<tr>
<td><a href="http://profiles.wordpress.org/xknown">xknown</a></td>
</tr>
</tbody>
</table>
<h2>Total Contributors</h2>
<p>WordPress has seen <strong>541</strong> individual contributors over the three years and six versions since 2.9 in July 2009.</p>
<h2>And Finally</h2>
<p>It&#8217;s unfortunate that it&#8217;s not as simple to measure the involvement of all those people who contribute to WordPress in ways other than Trac tickets and patches. There are literally hundreds of people who spend their time helping others on the support forums and mailing lists, those who organise and attend WordCamps and WordPress meetups, and those who build and release plugins &amp; themes. Without those people, the <a href="http://core.trac.wordpress.org/query?resolution=fixed">almost ten thousand</a> improvements to WordPress wouldn&#8217;t be so useful.</p>
<h2>Stats Elsewhere</h2>
<p>A few other people have previously generated stats regarding contributors to WordPress. If you know of any more articles on contributor stats, leave a comment and I&#8217;ll add them to the list.</p>
<ul>
<li><a href="http://nacin.com/2010/04/30/visualizing-the-wordpress-3-0-contributors/">Andrew Nacin&#8217;s <em>Visualizing the WordPress 3.0 contributors</em></a> (2010)</li>
<li><a href="http://blog.ftwr.co.uk/archives/2008/03/29/wordpress-25-contributors/">Peter Westwood&#8217;s <em>WordPress 2.5 Contributors</em></a> (2008)</li>
<li><a href="http://planetozh.com/blog/2007/09/wordpress-bug-fixers-heat-map/">Richard Ozh&#8217;s <em>WordPress Bug Fixers Heat Map</em></a> (2007)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/a-history-of-wordpress-contributors/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Pocket Read It Later Links</title>
		<link>https://lud.icro.us/wordpress-plugin-pocket</link>
		<comments>https://lud.icro.us/wordpress-plugin-pocket#comments</comments>
		<pubDate>Thu, 14 Jun 2012 19:21:53 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Pocket]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=306</guid>
		<description><![CDATA[Latest version: - Released : Description What the hell is Pocket? From getpocket.com: Pocket (formerly Read It Later) helps people who discover an interesting article, video or web page, but don’t have time to view it. Once saved to Pocket, the list of content is visible on any device &#8212; phone, tablet or computer. It [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="notice">
<p><strong>Latest version: 1.0</strong>- Released June 15th, 2012:<ul>
<li>Initial release.</li>
</ul></p>
</div>
<h3>Description</h3>
<p>This plugin allows you to display <a href="http://getpocket.com/">Pocket</a> 'Read It Later' links next to each post on your blog. You can see an example on <a href="http://getpocket.com/blog/">the Pocket blog</a>. You can automatically insert the links adjacent to your blog posts or you can use the template tag to insert the links wherever you like.</p>
<h3>What the hell is Pocket?</h3>
<p>From getpocket.com:</p>
<blockquote><p>Pocket (formerly Read It Later) helps people who discover an interesting article, video or web page, but don’t have time to view it. Once saved to Pocket, the list of content is visible on any device &#8212; phone, tablet or computer. It can be viewed while waiting in line, on the couch or during commutes or travel &#8212; even offline.</p></blockquote>
<p>Check out <a href="http://getpocket.com/">getpocket.com</a> for all the details and to sign up.</p>
<h3>Installation</h3>
<p>You can install this plugin directly from your WordPress dashboard:</p>
<ol>
<li>Go to the <em>Plugins</em> menu and click <em>Add New</em>.</li>
<li>Search for <em>Pocket Read It Later Links</em>.</li>
<li>Click <em>Install Now</em> next to the Pocket Read It Later Links plugin.</li>
<li>Activate the plugin.</li>
</ol>
<p>Alternatively, see the guide to <a href="http://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation">Manually Installing Plugins</a>.</p>
<p>Once activated, check out the front page of your blog. A &#8216;Read It Later&#8217; link will now show adjacent to each post.</p>
<h4>Usage</h4>
<p>By default, this plugin adds a &#8216;Read It Later&#8217; link adjacent to each blog post on your blog. You can control where the &#8216;Read It Later&#8217; links show up by going to the Settings -&gt; Pocket Links menu in WordPress.</p>
<h3>Download</h3>
<p class="notice">This plugin requires WordPress version 3.3 or later. Tested up to 3.4.2.</p>
<p class="download"><a href="https://downloads.wordpress.org/plugin/pocket.zip">Version 1.0 ZIP file</a> from downloads.wordpress.org</p>
<p>Any comments, questions, queries, suggestions, complaints, etc, please leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-pocket/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saving Post Meta Field Revisions in WordPress</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress</link>
		<comments>https://lud.icro.us/post-meta-revisions-wordpress#comments</comments>
		<pubDate>Fri, 27 Apr 2012 06:53:28 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=294</guid>
		<description><![CDATA[If your plugin or theme uses custom post meta fields then you may want to store revisions to these fields when a post revision is saved. It&#8217;s easy to do. For each of our meta fields, we&#8217;ll need to do three things: Store a revision of the meta field when a post is saved Revert [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>If your plugin or theme uses custom post meta fields then you may want to store revisions to these fields when a post revision is saved. It&#8217;s easy to do.</p>
<p>For each of our meta fields, we&#8217;ll need to do three things:</p>
<ol>
<li>Store a revision of the meta field when a post is saved</li>
<li>Revert to the correct revision of the meta field when a post is reverted</li>
<li>Optionally, display the meta field on the revisions screen</li>
</ol>
<p>In the code below I&#8217;m just saving revisions to one meta field, &#8216;my_meta&#8217;. You can of course save revisions to more than one meta field by looping over a list of fields your plugin uses.</p>
<p>Sorry about the poor code formatting in this article. I really need to fix the CSS on my site.</p>
<h3>Storing a revision of the meta field when a post is saved</h3>
<p>For this we hook into the <code>save_post</code> action and save the post meta data only if the post being saved is a revision. We need to use the low level <code>add_metadata()</code> function because if we use <code>add_post_meta()</code> then the meta data will be stored against the post instead of the revision.</p>
<pre>function my_plugin_save_post( $post_id, $post ) {

	$parent_id = wp_is_post_revision( $post_id );

	if ( $parent_id ) {

		$parent  = get_post( $parent_id );
		$my_meta = get_post_meta( $parent-&gt;ID, 'my_meta', true );

		if ( false !== $my_meta )
			add_metadata( 'post', $post_id, 'my_meta', $my_meta );

	}

}
add_action( 'save_post', 'my_plugin_save_post' );</pre>
<h3>Reverting to the correct revision of the meta field when a post is reverted</h3>
<p>For this we hook into the <code>wp_restore_post_revision</code> action and update the meta field to the version stored at the revision we&#8217;re reverting to. Again we&#8217;re using the low level <code>get_metadata()</code> function instead of <code>get_post_meta()</code> so we can grab the meta data from the revision instead of the current post.</p>
<pre>function my_plugin_restore_revision( $post_id, $revision_id ) {

	$post     = get_post( $post_id );
	$revision = get_post( $revision_id );
	$my_meta  = get_metadata( 'post', $revision-&gt;ID, 'my_meta', true );

	if ( false !== $my_meta )
		update_post_meta( $post_id, 'my_meta', $my_meta );
	else
		delete_post_meta( $post_id, 'my_meta' );

}
add_action( 'wp_restore_post_revision', 'my_plugin_restore_revision', 10, 2 );</pre>
<h3>Displaying the meta field on the revisions screen</h3>
<p>For this we need to hook into the <code>_wp_post_revision_fields</code> action to tell WordPress which fields to show on the revisions screen, and hook into the <code>_wp_post_revision_field_my_meta</code> filter to display the meta field. Note that the filter name is specific for each field, so you&#8217;ll need to add a hook for each of your meta fields in the format <code>_wp_post_revision_field_{field_name}</code>.</p>
<pre>function my_plugin_revision_fields( $fields ) {

	$fields['my_meta'] = 'My Meta';
	return $fields;

}
add_filter( '_wp_post_revision_fields', 'my_plugin_revision_fields' );

function my_plugin_revision_field( $value, $field ) {

	global $revision;
	return get_metadata( 'post', $revision-&gt;ID, $field, true );

}
add_filter( '_wp_post_revision_field_my_meta', 'my_plugin_revision_field', 10, 2 );</pre>
<h3>Putting it all together</h3>
<p><a href="/wp-plugins/pmr.zip">Download the example code as a plugin here</a>.</p>
<p>You&#8217;ll need to manually add/edit the &#8216;my_meta&#8217; field using the Custom Fields panel on the post editing screen, then you can play around with viewing and reverting revisions.</p>
<h3>Some considerations</h3>
<p>The code used to display the meta field on the revisions screen will generate a PHP notice because WordPress looks for the <code>my_meta</code> element of the post object before calling the field callback function. There&#8217;s a ticket on Trac somewhere about improvements to the revisions screen but I can&#8217;t find it currently.</p>
<p>When you compare two post revisions using the compare functionality on the revisions screen the meta fields won&#8217;t be taken into account. Again, the revisions screen in WordPress needs some improvements in this area.</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/post-meta-revisions-wordpress/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Pretty Media</title>
		<link>https://lud.icro.us/wordpress-plugin-pretty-media</link>
		<comments>https://lud.icro.us/wordpress-plugin-pretty-media#comments</comments>
		<pubDate>Sat, 31 Mar 2012 11:47:20 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=285</guid>
		<description><![CDATA[I&#8217;ve just published a small plugin which makes the Media screen in WordPress prettier using just CSS. You can download/pull/fork it on GitHub.]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve just published a small plugin which makes the Media screen in WordPress prettier using just CSS. <a href="https://github.com/johnbillion/PrettyMedia">You can download/pull/fork it on GitHub</a>.</p>
<p><img src="https://github.com/johnbillion/PrettyMedia/raw/master/screenshot-1.png" alt="" style="max-width:100%;height:auto" /></p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-pretty-media/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access Your Desktop Development Environment from Your Mobile Device</title>
		<link>https://lud.icro.us/access-development-environment-from-mobile-device</link>
		<comments>https://lud.icro.us/access-development-environment-from-mobile-device#comments</comments>
		<pubDate>Thu, 23 Feb 2012 00:09:48 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Developers]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[Utility]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=274</guid>
		<description><![CDATA[It&#8217;s really easy to get an iPhone, iPad, or Android device to access a local web server running on your development machine. All you need is an HTTP proxy such as Charles Proxy running on your development machine. Once that&#8217;s running: Make sure your device is connected to the same network as your development machine. Go [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s really easy to get an iPhone, iPad, or Android device to access a local web server running on your development machine. All you need is an HTTP proxy such as <a href="http://www.charlesproxy.com/">Charles Proxy</a> running on your development machine. Once that&#8217;s running:</p>
<p>Make sure your device is connected to the same network as your development machine. Go into the <strong>Settings -&gt; Wi-Fi</strong> menu and find the HTTP proxy settings. On Android, this means a long-press on your Wi-Fi network (Modify Settings, then Show advanced settings). On iOS this means pressing the (i) icon next to your Wi-Fi network.</p>
<p>Switch your proxy over to &#8216;Manual&#8217; and enter your development environment machine&#8217;s network IP address (eg. 192.168.0.4) as the server, and 8888 as the port (Charles&#8217; default port unless you&#8217;ve changed it).</p>
<p>Voila. All your HTTP traffic from your device will now route through your host machine (Charles will prompt you to allow access first) and you&#8217;ll have access to your local development server. Awesome!</p>
<p><strong>Pro Tip:</strong> Are you still editing your hosts file in order to manage the host name mapping for sites on your development environment? Stop it. Just use the <strong>Tools -&gt; DNS Spoofing</strong> menu in Charles and make life easier for yourself.</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/access-development-environment-from-mobile-device/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Basic Authentication with the WordPress HTTP API</title>
		<link>https://lud.icro.us/wordpress-http-api-basicauth</link>
		<comments>https://lud.icro.us/wordpress-http-api-basicauth#comments</comments>
		<pubDate>Tue, 10 Aug 2010 17:36:57 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[BasicAuth]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=239</guid>
		<description><![CDATA[Basic Authentication (or BasicAuth) is not natively handled with the WordPress HTTP API. This means when you&#8217;re using functions such as wp_remote_get() and wp_remote_post() there&#8217;s no immediately obvious way to send Basic Authentication headers with your request. It would be great to pass username and password parameters to these functions, but it&#8217;s not there. Fear [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Basic Authentication (or BasicAuth) is not natively handled with the <a href="http://codex.wordpress.org/HTTP_API">WordPress HTTP API</a>. This means when you&#8217;re using functions such as <code>wp_remote_get()</code> and <code>wp_remote_post()</code> there&#8217;s no immediately obvious way to send Basic Authentication headers with your request. It would be great to pass username and password parameters to these functions, but it&#8217;s not there.</p>
<p>Fear not though, it&#8217;s really easy. Here&#8217;s how:<br />
<code><br />
$args = array(<br />
  'headers' => array(<br />
    'Authorization' => 'Basic ' . base64_encode( YOUR_USERNAME . ':' . YOUR_PASSWORD )<br />
 )<br />
);<br />
wp_remote_request( $url, $args );<br />
</code></p>
<p>That&#8217;s it. The correct authentication headers will then be sent with your request (after you&#8217;ve replaced YOUR_USERNAME and YOUR_PASSWORD with the obvious).</p>
<p>I&#8217;d like to give a quick shout out to my favourite HTTP monitor <a href="http://www.charlesproxy.com/">Charles Proxy</a>. I use Charles almost daily when dealing with server-side HTTP requests and AJAX requests and it makes life much easier. I love it.</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-http-api-basicauth/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Feed Thumbnails</title>
		<link>https://lud.icro.us/wordpress-plugin-feed-thumbnails</link>
		<comments>https://lud.icro.us/wordpress-plugin-feed-thumbnails#comments</comments>
		<pubDate>Mon, 22 Feb 2010 03:23:52 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=214</guid>
		<description><![CDATA[Latest version: - Released Description Installation Download This plugin requires WordPress version or later. Version ZIP file from downloads.wordpress.org Any comments, questions, queries, suggestions, complaints, etc, please leave a comment!]]></description>
				<content:encoded><![CDATA[<div class="notice">Latest version: <strong>1.2</strong>- Released July 4th, 2010<ul>
<li>Bugfix for the Get The Image plugin integration.</li>
</ul></p>
</div>
<h3>Description</h3>
<p>This plugin simply adds your post thumbnails to your feed as RSS enclosures. Nothing else to it. If you don't use thumbnails or you don't know what enclosures are or why you might want them, then this probably isn't for you.</p>

<p>The plugin supports the Post Thumbnail feature built into WordPress and the <a href="http://wordpress.org/extend/plugins/get-the-image/">Get The Image plugin</a> by Justin Tadlock.</p>
<h3>Installation</h3>
<ol>
<li>Unzip the ZIP file and drop the folder straight into your <code>wp-content/plugins/</code> directory.</li>
<li>Activate the plugin through the 'Plugins' menu in WordPress.</li>
<li>View your feed (you might need to do a hard refresh - ctrl+reload) and any posts that have a thumbnail defined will have an enclosure containing a link to the thumbnail.</li>
</ol>
<h3>Download</h3>
<p class="notice">This plugin requires WordPress version 2.9 or later.</p>
<p class="download"><a href="https://downloads.wordpress.org/plugin/feed-thumbnails.zip">Version 1.2 ZIP file</a> from downloads.wordpress.org</p>
<p>Any comments, questions, queries, suggestions, complaints, etc, please leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-feed-thumbnails/feed</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>Twitter Bookmarklet: View the Whole Conversation</title>
		<link>https://lud.icro.us/twitter-bookmarklet-view-conversation</link>
		<comments>https://lud.icro.us/twitter-bookmarklet-view-conversation#comments</comments>
		<pubDate>Sun, 28 Jun 2009 20:33:28 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Bookmarklet]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=166</guid>
		<description><![CDATA[Do you ever view a Twitter update (or a &#8220;tweet&#8221;) which is part of a conversation and wish there was an easy way to view the entire conversation? It&#8217;s not easy to do. (We&#8217;re talking about the web interface here, it&#8217;s undoubtedly easy for those who use Twitter clients.) This is why I&#8217;ve written the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Do you ever view a Twitter update (or a &#8220;tweet&#8221;) which is part of a conversation and wish there was an easy way to view the entire conversation?</p>
<p>It&#8217;s not easy to do. (We&#8217;re talking about the web interface here, it&#8217;s undoubtedly easy for those who use Twitter clients.) This is why I&#8217;ve written the Twitter Conversation Bookmarklet.</p>
<p class="notice"><strong>Update:</strong> This bookmarklet is now a web service by me. <a href="http://twitlr.com/">Check out Twitlr</a>!</p>
<h3>Installation</h3>
<p>Drag the following link to your browser&#8217;s Bookmarks Toolbar:</p>
<p><big><big><code><a href="javascript:(function(){if(s=document.location.toString().match('[0-9]{8,}')){jQuery('#loader').show();jQuery('body').append('&lt;scr'+'ipt%20src=\'https://lud.icro.us/twttr.php?t='+s+'\'%20type=\'text/javas'+'cript\'&gt;&lt;/scr'+'ipt&gt;');}else{alert('No%20Twitter%20update%20found')};})()">[twitter conversation]</a></code></big></big></p>
<h3>Usage</h3>
<p>Simply press the bookmarklet whenever you&#8217;re on a Twitter status page that is part of a conversation, and the entire conversation will be magically loaded onto the page.</p>
<h3>Example</h3>
<p>The best way to see an example is just to install the bookmarklet and then hit it on a status page. An example status where it works well is <a href="http://twitter.com/damienmulley/status/4841158407">this recent tweet by Damien Mulley</a> which is part of a conversation.</p>
<p><img class="alignnone size-full wp-image-180" title="Results of the Twitter conversation bookmarklet" src="/imgs/wp-content/uploads/scoconvo.png" alt="Results of the Twitter conversation bookmarklet" width="416" height="570" /></p>
<h3>Known Issues</h3>
<ul>
<li>Currently, the bookmarklet won&#8217;t return a conversation if you use it on the first tweet that is part of a conversation. It must be used on a tweet that is replying to another. This appears to be a limitation of the Twitter API but I am looking into ways to work around this.</li>
</ul>
<p>Comments and bug reports appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/twitter-bookmarklet-view-conversation/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Disable Theme Updates</title>
		<link>https://lud.icro.us/wordpress-plugin-disable-theme-updates</link>
		<comments>https://lud.icro.us/wordpress-plugin-disable-theme-updates#comments</comments>
		<pubDate>Sun, 21 Jun 2009 22:31:28 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=160</guid>
		<description><![CDATA[Latest version: &#8211; Released All the information for this plugin can be found over at the WordPress Plugin Directory: Disable WordPress Theme Updates. Don&#8217;t forget you can also disable WordPress core updates and disable WordPress plugin updates too.]]></description>
				<content:encoded><![CDATA[<p class="notice">Latest version: <strong>1.1</strong> &#8211; Released June 15th, 2012</p>
<p>All the information for this plugin can be found over at the WordPress Plugin Directory: <a href="http://wordpress.org/extend/plugins/disable-wordpress-theme-updates/">Disable WordPress Theme Updates</a>.</p>
<p>Don&#8217;t forget you can also <a href="/disable-wordpress-core-update/">disable WordPress core updates</a> and <a href="/disable-wordpress-plugin-updates/">disable WordPress plugin updates</a> too.</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-disable-theme-updates/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Logout Password Protected Posts</title>
		<link>https://lud.icro.us/wordpress-plugin-logout-password-protected-posts</link>
		<comments>https://lud.icro.us/wordpress-plugin-logout-password-protected-posts#comments</comments>
		<pubDate>Tue, 09 Jun 2009 04:42:37 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=148</guid>
		<description><![CDATA[Latest version: &#8211; Released Description Installation FAQ Download Version ZIP file from downloads.wordpress.org Any comments, questions, queries, suggestions, complaints, etc, please leave a comment!]]></description>
				<content:encoded><![CDATA[<p class="notice">Latest version: <strong>0.2</strong> &#8211; Released November 3rd, 2012</p>
<h3>Description</h3>
<p>There is no built-in way for your visitors to "log out" of password protected posts once they've entered the password. Even logged in users cannot log out of password protected posts by logging out of their account. This plugin solves that problem by providing a link for your visitors to log out of password protected posts.</p>

<p>After installing the plugin, add <code>&#60;?php do_action('posts_logout_link'); ?&#62;</code> somewhere in your theme to display a link for logging out of password protected posts.</p>
<h3>Installation</h3>
<p>You can install this plugin directly from your WordPress dashboard:</p>

<ol>
<li>Go to the <em>Plugins</em> menu and click <em>Add New</em>.</li>
<li>Search for <em>Logout Password Protected Posts</em>.</li>
<li>Click <em>Install Now</em> next to the Logout Password Protected Posts plugin.</li>
<li>Activate the plugin.</li>
<li>Add <code>&#60;?php do_action('posts_logout_link'); ?&#62;</code> somewhere in your theme.</li>
</ol>

<p>Those people who are logged in to password protected posts will now see a link to log out.</p>

<p>For manual installation, see the guide to <a href="http://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation">Manually Installing Plugins</a>.</p>
<h3>FAQ</h3>
<h4>I can't see a link to log out. What's up?</h4>

<p>Have you added the template tag somewhere in your theme? You need to add <code>&#60;?php do_action('posts_logout_link'); ?&#62;</code> somewhere in your theme for the link to show up.</p>

<h4>I've added the template tag to my theme but I can't see the log out link. What's up?</h4>

<p>Ensure that you have entered a password for a password protected post. The link will not show up if you're not logged into a password protected post.</p>

<h4>Can I change the default text in the link?</h4>

<p>Sure. Add a second parameter to the template tag with the text you'd like instead. For example: <code>&#60;?php do_action('posts_logout_link','Log out!'); ?&#62;</code></p>

<p>For those who want even more control, you can also add a third paramter which will be used as the class name on the link element.</p>
<h3>Download</h3>
<p class="download"><a href="http://downloads.wordpress.org/plugin/logout-password-protected-posts.zip">Version 0.2 ZIP file</a> from downloads.wordpress.org</p>
<p>Any comments, questions, queries, suggestions, complaints, etc, please leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-logout-password-protected-posts/feed</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: User Switching</title>
		<link>https://lud.icro.us/wordpress-plugin-user-switching</link>
		<comments>https://lud.icro.us/wordpress-plugin-user-switching#comments</comments>
		<pubDate>Thu, 05 Mar 2009 04:59:06 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Developers]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Users]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=96</guid>
		<description><![CDATA[Latest version: - Released : Description Screenshots Installation FAQ Download This plugin requires WordPress version  or later. Download the plugin on WordPress.org. Any comments, questions, queries, suggestions, complaints, etc, please leave a comment!]]></description>
				<content:encoded><![CDATA[<div class="notice"><strong>Latest version: 0.8.6</strong>- Released January 21st, 2014:<ul>
<li>Correctly encode the <code>redirect_to</code> parameter in the login screen message.</li>
</ul></div>
<h3>Description</h3>
<p>This plugin allows you to quickly swap between user accounts in WordPress at the click of a button. You'll be instantly logged out and logged in as your desired user. This is handy for test environments where you regularly log out and in between different accounts, or for adminstrators who need to switch between multiple accounts.</p>

<h4>Features</h4>

<ul>
<li>Switch user: Instantly switch to any user account from the <em>Users</em> screen.</li>
<li>Switch back: Instantly switch back to your originating account.</li>
<li>Switch off: Log out of your account but retain the ability to instantly switch back in again.</li>
<li>It's completely secure (see the <em>Security</em> section below).</li>
<li>Compatible with WordPress, WordPress Multisite, BuddyPress and bbPress.</li>
</ul>

<h4>Security</h4>

<ul>
<li>Only users with the ability to edit other users can switch user accounts. By default this is only Administrators on single site installs, and Super Admins on Multisite installs.</li>
<li>Passwords are not (and cannot be) revealed.</li>
<li>Implements WordPress' nonce security system, meaning only those who intend to switch users can switch.</li>
<li>Full support for administration over SSL (if applicable).</li>
</ul>

<h4>Usage</h4>

<ol>
<li>Visit the <em>Users</em> menu in WordPress and you'll see a <em>Switch To</em> link next to each user.</li>
<li>Click this and you will immediately switch into that user account.</li>
<li>You can switch back to your originating account via the <em>Switch back</em> link on each dashboard screen or in your profile menu in the WordPress toolbar.</li>
</ol>

<p>See the <a href="http://wordpress.org/plugins/user-switching/faq/">FAQ</a> for information about the <em>Switch Off</em> feature.</p>

<h4>Translations Included</h4>

<ul>
<li>Arabic by Hassan Hisham</li>
<li>Chinese Simplified by Tunghsiao Liu</li>
<li>Farsi (Persian) by Amin Ab</li>
<li>German by Ralph Stenzel</li>
<li>Japanese by Yusuke Hayasaki</li>
<li>Lithuanian by Tommixoft</li>
<li>Polish by Bartosz Arendt</li>
<li>Russian by R J</li>
<li>Slovak by Max Samael</li>
</ul>
<h3>Screenshots</h3>
<ol>
	<li>
		<img class='screenshot' src='//ps.w.org/user-switching/assets/screenshot-1.png?rev=752492' alt='user-switching screenshot 1' />
		<p></p>
	</li>
	<li>
		<img class='screenshot' src='//ps.w.org/user-switching/assets/screenshot-2.png?rev=752492' alt='user-switching screenshot 2' />
		<p></p>
	</li>
</ol>
<h3>Installation</h3>
<p>If you have the <a href="http://wordpress.org/plugins/developer/">WordPress Developer plugin</a> installed then User Switching is a one-click install from the Tools -&#62; Developer screen.</p>

<p>Alternatively, you can install this plugin directly from your WordPress dashboard:</p>

<ol>
<li>Go to the <em>Plugins</em> menu and click <em>Add New</em>.</li>
<li>Search for <em>User Switching</em>.</li>
<li>Click <em>Install Now</em> next to the <em>User Switching</em> plugin.</li>
<li>Activate the plugin.</li>
</ol>
<h3><span style="letter-spacing: 0.1em; line-height: 2.6em; font-weight: 300;">FAQ</span></h3>
<h4>What does "Switch off" mean?</h4>

<p>Switching off logs you out of your account but retains your user ID in an authorisation cookie so you can switch straight back without having to log in again manually. It's akin to switching to no user, and being able to switch back.</p>

<p>The <em>Switch Off</em> link can be found in your profile menu in the WordPress toolbar. Once you've switched off you'll see a <em>Switch back</em> link in the footer of your site.</p>

<h4>Does this plugin work with WordPress Multisite?</h4>

<p>Yes, and you'll also be able to switch users from the Users screen in Network Admin.</p>

<h4>Does this plugin work with BuddyPress?</h4>

<p>Yes, and you'll also be able to switch users from member profile screens and the member listing screen.</p>

<h4>Does this plugin work with bbPress?</h4>

<p>Yes, and you'll also be able to switch users from member profile screens.</p>

<h4>Does this work as a mu-plugin?</h4>

<p>Yes, but you'll need to install <code>user-switching.php</code> into the root of your <code>mu-plugins</code> directory, not in the <code>user-switching</code> subdirectory. This is a restriction of WordPress.</p>

<h4>What capability does a user need in order to switch accounts?</h4>

<p>A user needs the <code>edit_users</code> capability in order to switch user accounts. By default only Administrators have this capability, and with Multisite enabled only Super Admins have this capability.</p>

<h4>Can regular admins on Multisite installs switch accounts?</h4>

<p>No. This can be enabled though by installing the <a href="https://github.com/johnbillion/user-switching-for-regular-admins">User Switching for Regular Admins</a> plugin.</p>

<h4>Are any plugin hooks called when users switch accounts?</h4>

<p>Yes. When a user switches to another account, the <code>switch_to_user</code> hook is called with the new and old user IDs passed as parameters.</p>

<p>When a user switches back to their original account, the <code>switch_back_user</code> hook is called with the new (original) and old user IDs passed as parameters. Note that the old user ID can be boolean false if the user is switching back after they've been switched off.</p>

<p>When a user switches off, the <code>switch_off_user</code> hook is called with the old user ID as a parameter.</p>
<h3>Download</h3>
<p class="notice">This plugin requires WordPress version 3.1 or later.</p>
<p><a href="http://wordpress.org/plugins/user-switching/">Download the plugin on WordPress.org.</a></p>
<p>Any comments, questions, queries, suggestions, complaints, etc, please leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-user-switching/feed</wfw:commentRss>
		<slash:comments>85</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Instapaper &#8216;Read Later&#8217; Links</title>
		<link>https://lud.icro.us/wordpress-plugin-embed-instapaper</link>
		<comments>https://lud.icro.us/wordpress-plugin-embed-instapaper#comments</comments>
		<pubDate>Fri, 30 Jan 2009 11:47:54 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Bookmark]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Instapaper]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=65</guid>
		<description><![CDATA[Latest version: - Released : Description This plugin allows you to display Instapaper &#8216;Read later&#8217; links next to each post on your blog just like on Give Me Something To Read. You can either automatically insert the links adjacent to your blog entries, or you can just use the template tag to insert the links [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="notice"><strong>Latest version: 1.2</strong>- Released June 15th, 2012:<ul>
<li>Update to the new style button from Instapaper. The original black version no longer works.</li>
</ul></p>
</div>
<h3>Description</h3>
<p>This plugin allows you to display <a href="http://www.instapaper.com/">Instapaper</a> &#8216;Read later&#8217; links next to each post on your blog just like on <a href="http://www.givemesomethingtoread.com/">Give Me Something To Read</a>. You can either automatically insert the links adjacent to your blog entries, or you can just use the template tag to insert the links wherever you like.</p>
<h3>What the hell is Instapaper?</h3>
<p>From instapaper.com:</p>
<blockquote><p>Instapaper is a fast, easy, free tool to save web pages for reading later. When you find something you want to read, but you don&#8217;t have time now, you click &#8216;Read Later&#8217;. When you do have time to read, you visit Instapaper on your computer or phone and get whatever you wanted to read.</p></blockquote>
<p>Check out <a href="http://www.instapaper.com/">instapaper.com</a> for all the details and to sign up.</p>
<h3>Can I see an example?</h3>
<p><a href="http://wordpress.org/plugins/instapaper/screenshots/">See some screenshots here.</a></p>
<h3>Installation</h3>
<ol>
<li>Unzip the ZIP file and drop the folder straight into your &#8216;wp-content/plugins-&#8217; directory.</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>
<li>Check out the front page of your blog. A &#8216;Read Later&#8217; link will now show adjacent to each post.</li>
</ol>
<h3>Usage</h3>
<p>By default, this plugin displays a &#8216;Read Later&#8217; link adjacent to each blog entry on your blog. If you wish to control where the links are displayed, you can go to the <strong>Settings -&gt; Read Later Links</strong> menu and choose between a few display options.</p>
<p>If you choose to disable automatic placement, you&#8217;ll need to add the following code to your theme in order insert the &#8216;Read Later&#8217; link for each post:</p>
<p><code>&lt;?php do_action('read_later'); ?&gt;</code></p>
<p>The code must be inside the WordPress loop.</p>
<h3>Thanks</h3>
<ul>
<li><a href="http://marco.org/">Marco Arment</a> for making Instapaper</li>
</ul>
<h3>Download</h3>
<p class="notice">This plugin requires WordPress version 2.7 or later. Tested up to 3.4.2.</p>
<p class="download"><a href="https://downloads.wordpress.org/plugin/instapaper.zip">Version 1.2 ZIP file</a> from downloads.wordpress.org</p>
<p>Any comments, questions, queries, suggestions, complaints, etc, please leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-embed-instapaper/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Plugin Info</title>
		<link>https://lud.icro.us/wordpress-plugin-info</link>
		<comments>https://lud.icro.us/wordpress-plugin-info#comments</comments>
		<pubDate>Tue, 16 Dec 2008 16:33:47 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=50</guid>
		<description><![CDATA[Latest version: - Released Description This plugin provides a simple way of displaying up-to-date information about specific plugins hosted on the WordPress Plugin Directory in your blog posts and pages. It is intended for plugin authors who want to display details of their own plugins from the WP Plugin Directory on their blog and want [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="notice">Latest version: <strong>0.8.2</strong>- Released January 7th, 2014<ul>
<li>Remove some now-redundant processing of the screenshot URLs.</li>
</ul></p>
</div>
<h3>Description</h3>
<p>This plugin provides a simple way of displaying up-to-date information about specific plugins hosted on the WordPress Plugin Directory in your blog posts and pages. It is intended for plugin authors who want to display details of their own plugins from the WP Plugin Directory on their blog and want those details to remain up to date. It&#8217;s also useful for bloggers who may blog about plugins and would like the details in their blog posts to remain up to date.</p>
<h3>Er, what?</h3>
<p>You want to blog about a particular plugin on your blog and include various details of it in your blog post (eg. the number of downloads or the last updated date). You could manually type this information into your post but this means that in a few days/weeks/months&#8217; time the information will be out of date.</p>
<p>This plugin allows you to use shortcodes in your blog posts and pages which fetches this information right from the WordPress Plugin Directory, therefore ensuring the information always remains up to date.</p>
<h3>Here&#8217;s an example</h3>
<p>This plugin uses shortcodes so it&#8217;s ridiculously easy to include any information about a particular plugin in your post or page:</p>
<p><code>This plugin has been downloaded &#91;plugin downloaded&#93; times!</code></p>
<p>This will produce the following content in your blog post:</p>
<p><code>This plugin has been downloaded 1,650 times!</code></p>
<p>The download count will remain current without you having to touch your blog post again.</p>
<h3>Is this plugin for me?</h3>
<p>This plugin is only going to be of use to you if:</p>
<ol style="list-style-type: upper-alpha;">
<li>You are a plugin author and you want a ridiculously easy way to include up to date information about any of your plugins in your blog posts or pages.</li>
<li>You are the author of a blog that highlights plugins of interest and you want to ensure that information in your posts remains up to date.</li>
</ol>
<h3>Installation</h3>
<ol>
<li>Unzip the ZIP file and drop the folder straight into your <code>wp-content/plugins</code> directory.</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>
<li>Now read the usage guidelines below.</li>
</ol>
<h3>Usage</h3>
<ol>
<li>Write a new blog post or page, or open an existing post or page for editing.</li>
<li>In the &#8216;Plugin Info&#8217; box on that screen, type the slug of the plugin like this:<br />
<img src="/imgs/plugin-info-screenie2.png" alt="'Plugin Info' plugin screenshot" /><br />
(The plugin slug is the last part of the URL of the plugin&#8217;s page on wordpress.org.)</li>
<li>Add a shortcode to your blog entry like this: <code>&#91;plugin downloaded&#93;</code> and save the post. (That&#8217;s the word &#8216;plugin&#8217; and not the slug of your plugin by the way).</li>
<li>Take a look at your post and the number of dowloads of the plugin will be displayed.</li>
</ol>
<h3>Which attributes can I display?</h3>
<p>Below is a list of all the available shortcodes.</p>
<p><em>Plain info:</em></p>
<ul>
<li>&#91;plugin author_name&#93; &#8211; The plugin author&#8217;s name</li>
<li>&#91;plugin author_url&#93; &#8211; The URL of the plugin author&#8217;s homepage</li>
<li>&#91;plugin compatibility&#93; &#8211; The <a href="http://wordpress.org/development/2009/10/plugin-compatibility-beta/">compatibility concensus</a> with the most recent version of WordPress (as a %)</li>
<li>&#91;plugin compat_with&#93; &#8211; The version of WordPress used for the compatibility concensus (ie. the latest WordPress version, eg. &#8220;2.8.5&#8243;)</li>
<li>&#91;plugin download_url&#93; &#8211; The URL of the plugin&#8217;s ZIP file</li>
<li>&#91;plugin donate_url&#93; &#8211; The URL of the plugin&#8217;s donation page</li>
<li>&#91;plugin downloaded&#93; &#8211; The all time download count with comma-separated thousands (eg. &#8220;12,345&#8243;)</li>
<li>&#91;plugin homepage_url&#93; &#8211; The URL of the plugin&#8217;s homepage</li>
<li>&#91;plugin link_url&#93; &#8211; The URL of the plugin&#8217;s page on the WP Plugin Directory</li>
<li>&#91;plugin name&#93; &#8211; The plugin name</li>
<li>&#91;plugin profile_url&#93; &#8211; The URL of the author&#8217;s profile on WP.org</li>
<li>&#91;plugin requires&#93; &#8211; The &#8216;Requires at least&#8217; WP version number</li>
<li>&#91;plugin rating&#93; &#8211; The plugin&#8217;s star rating as a whole number out of 5 (given by visitors to wp.org)</li>
<li>&#91;plugin slug&#93; &#8211; The plugin slug</li>
<li>&#91;plugin tags&#93; &#8211; A comma-separated list of the plugin&#8217;s tags</li>
<li>&#91;plugin tested&#93; &#8211; The &#8216;Tested up to&#8217; WP version number</li>
<li>&#91;plugin updated_ago&#93; &#8211; How long ago the plugin was last updated (eg. &#8220;20 days ago&#8221;)</li>
<li>&#91;plugin updated&#93; &#8211; The date the plugin was last updated, formatted according to your Date Format settings under Settings-&gt;General (eg. &#8220;20 January 2009&#8243;)</li>
<li>&#91;plugin version&#93; &#8211; The plugin version number</li>
</ul>
<p><em>Formatted info (eg. links and ordered lists):</em></p>
<p><em>Most shortcodes which display a formatted link can have their default link text overridden by adding a &#8216;text&#8217; parameter. For example: &#91;plugin homepage text=&#8217;Homepage&#8217;&#93; will display a link to the plugin homepage with the link text &#8216;Homepage&#8217;.</em></p>
<ul>
<li>&#91;plugin author&#93; &#8211; A formatted link to the plugin author&#8217;s homepage with the author&#8217;s name as the link text (if the author doesn&#8217;t have a homepage this will just display their name)</li>
<li>&#91;plugin description&#93; &#8211; The full description of the plugin</li>
<li>&#91;plugin download&#93; &#8211; A formatted link to the plugin&#8217;s ZIP file with &#8216;Download&#8217; as the link text</li>
<li>&#91;plugin donate&#93; &#8211; A formatted link to the plugin&#8217;s donation page with &#8216;Donate&#8217; as the link text</li>
<li>&#91;plugin homepage&#93; &#8211; A formatted link to the plugin&#8217;s homepage with &#8216;Visit plugin homepage&#8217; as the link text</li>
<li>&#91;plugin link&#93; &#8211; A formatted link to the plugin&#8217;s page on the WP Plugin Directory with the plugin name as the link text</li>
<li>&#91;plugin profile&#93; &#8211; A formatted link to the author&#8217;s WP.org profile page with the author&#8217;s name as the link text</li>
<li>&#91;plugin screenshots&#93; &#8211; The list of the screenshots attached to the plugin (an &lt;ol&gt; list of &lt;img&gt; tags with descriptions)</li>
<li>&#91;plugin changelog&#93; &#8211; The list of changelog entries</li>
<li>&#91;plugin latest_change&#93; &#8211; Just the latest changelog entry</li>
<li>&#91;plugin other_notes&#93; &#8211; The &#8216;Other Notes&#8217; section of the plugin</li>
</ul>
<p><em>Some less useful raw data:</em></p>
<ul>
<li>&#91;plugin downloaded_raw&#93; &#8211; The all time download count as a raw number (eg. &#8220;12345&#8243;)</li>
<li>&#91;plugin num_ratings&#93; &#8211; The number of people who&#8217;ve rated the plugin on wp.org</li>
<li>&#91;plugin rating_raw&#93; &#8211; The plugin&#8217;s actual average rating as a score out of 100 (given by visitors to wp.org)</li>
<li>&#91;plugin updated_raw&#93; &#8211; The date the plugin was last updated, in the format &#8220;yyyy-mm-dd&#8221;</li>
</ul>
<h3>The geek stuff</h3>
<p>The plugin information is collected from wp.org each time you save your post or page. It is updated hourly using WordPress&#8217; cron system and uses the Plugin API available in WordPress 2.7 or later. The plugin data is stored as an associative array in a custom field called &#8216;plugin-info&#8217;, and the plugin slug you enter is saved as a custom field called &#8216;plugin&#8217;. For supergeeks, this means you can also access the plugin data using <code>get_post_meta()</code>, but I&#8217;ll let you figure that out for yourself.</p>
<h3>Todo list</h3>
<ul>
<li>A shortcode for a standard information box which contains all the essential plugin info in a nice format.</li>
<li>Possibly allow shortcodes in the title of posts.</li>
<li><span style="text-decoration: line-through;">Clickable shortcoces listed on the post editing screen.</span></li>
<li><span style="text-decoration: line-through;">A shortcode for a link to the author&#8217;s wordpress.org profile page (pending support in the Plugin API).</span></li>
<li><span style="text-decoration: line-through;">A shortcode for the &#8216;Other Notes&#8217; section of the plugin (pending support in the Plugin API).</span></li>
<li><span style="text-decoration: line-through;">A simple UI for adding the plugin slug info to posts so you don&#8217;t have to use the Custom Fields directly.</span></li>
<li><span style="text-decoration: line-through;">Periodically update the data for all of your plugins from wordpress.org.</span></li>
</ul>
<h3>Download</h3>
<p class="notice">This plugin requires WordPress version 2.7 or later.</p>
<p class="download"><a href="http://downloads.wordpress.org/plugin/plugin-info.zip">Version 0.8.2 ZIP file</a> from downloads.wordpress.org</p>
<p>Any comments, questions, queries, suggestions, complaints, etc, please leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-info/feed</wfw:commentRss>
		<slash:comments>112</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: MagpieRSS Hotfix for Enclosure Support and Character Encoding Issues</title>
		<link>https://lud.icro.us/wordpress-plugin-magpierss-hotfix</link>
		<comments>https://lud.icro.us/wordpress-plugin-magpierss-hotfix#comments</comments>
		<pubDate>Mon, 27 Oct 2008 02:20:08 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Hotfix]]></category>
		<category><![CDATA[MagpieRSS]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=28</guid>
		<description><![CDATA[Latest version: 1.2 &#8211; Released 16th December 2008 Description This hotfix adds support for RSS enclosures to MagpieRSS, the RSS parser behind the fetch_rss() function in WordPress. It also forces MagpieRSS to use UTF-8 character encoding, which fixes some issues with feeds that contain non-ASCII characters. Is this plugin for me? This plugin is only [&#8230;]]]></description>
				<content:encoded><![CDATA[<p class="notice">Latest version: <strong>1.2</strong> &#8211; Released 16th December 2008</p>
<h3>Description</h3>
<p>This hotfix adds support for RSS enclosures to MagpieRSS, the RSS parser behind the <code>fetch_rss()</code> function in WordPress. It also forces MagpieRSS to use UTF-8 character encoding, which fixes some issues with feeds that contain non-ASCII characters.</p>
<h3>Is this plugin for me?</h3>
<p>This plugin is only going to be of use to you if:</p>
<ol style="list-style-type: upper-alpha;">
<li>You are fetching feeds on your blog with the <code>fetch_rss()</code> function and want to parse enclosures contained in the feed; or</li>
<li>You are fetching feeds on your blog either with the RSS Sidebar Widget or with <code>fetch_rss()</code> and question marks are showing up somewhere in the feed where special characters are supposed to be.</li>
</ol>
<h3>Installation</h3>
<ol>
<li>Unzip the ZIP file and drop the folder straight into your <code>wp-content/plugins</code> directory.</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>
<li>That&#8217;s it! You can now parse enclosures contained in feeds fetched by WordPress.</li>
</ol>
<h3>Download</h3>
<p class="download"><a href="http://downloads.wordpress.org/plugin/magpierss-hotfix.zip">ZIP file</a> from downloads.wordpress.org</p>
<h3>FAQ</h3>
<p>For FAQs, including how to parse enclosures in your feed, please see <a href="http://wordpress.org/extend/plugins/magpierss-hotfix/faq/">the plugin&#8217;s FAQ page on wordpress.org</a>.</p>
<p>Any comments, questions, queries, suggestions, complaints, etc, please leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-magpierss-hotfix/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Image Upload HTTP Error Fix</title>
		<link>https://lud.icro.us/wordpress-plugin-image-upload-http-error-fix</link>
		<comments>https://lud.icro.us/wordpress-plugin-image-upload-http-error-fix#comments</comments>
		<pubDate>Sun, 01 Jun 2008 21:04:21 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Upload]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=12</guid>
		<description><![CDATA[This plugin is extremely old, no longer maintained and should no longer be used. Description Fixes the media uploader HTTP Error that some WordPress configurations suffer from. If your WordPress 2.5 installation shows an HTTP Error when uploading files using the media uploader, then this plugin should fix that problem. Simply upload and activate the plugin, [&#8230;]]]></description>
				<content:encoded><![CDATA[<p class="notice">This plugin is <strong>extremely old</strong>, <strong>no longer maintained</strong> and <strong>should no longer be used</strong>.</p>
<h3>Description</h3>
<p>Fixes the media uploader HTTP Error that some WordPress configurations suffer from.</p>
<p>If your WordPress 2.5 installation shows an HTTP Error when uploading files using the media uploader, then this plugin should fix that problem. Simply upload and activate the plugin, then you&#8217;ll be able to upload files with no problem.</p>
<p>Technical details:</p>
<p>The plugin adds a few lines to WordPress&#8217; .htaccess file which deactivates mod_security on the file which handles file uploads.</p>
<h3>Installation</h3>
<ol>
<li>Unzip the ZIP file and drop the folder straight into your <code>wp-content/plugins/</code> directory.</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>
<li>That&#8217;s it! Try uploading a file with the media uploader and the HTTP error should be gone.</li>
</ol>
<h3>Download</h3>
<p><del>ZIP file from downloads.wordpress.org</del></p>
<p>Any comments, questions, queries, suggestions, complaints, etc, please leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-image-upload-http-error-fix/feed</wfw:commentRss>
		<slash:comments>66</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Google AJAX Libraries API</title>
		<link>https://lud.icro.us/wordpress-plugin-google-ajax-libraries</link>
		<comments>https://lud.icro.us/wordpress-plugin-google-ajax-libraries#comments</comments>
		<pubDate>Fri, 30 May 2008 00:10:42 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/?p=11</guid>
		<description><![CDATA[Important: This plugin is no longer being updated. It has been superceded by the good work of Jason Penney with his Use Google Libraries WordPress plugin which uses code based on this plugin. I recommend that you use his plugin from now on. Description This plugin replaces the most common JavaScript libraries in WordPress with [&#8230;]]]></description>
				<content:encoded><![CDATA[<p class="notice"><strong>Important:</strong> This plugin is no longer being updated. It has been superceded by the good work of Jason Penney with his <a href="http://jasonpenney.net/wordpress-plugins/use-google-libraries/">Use Google Libraries WordPress plugin</a> which uses code based on this plugin. I recommend that you use his plugin from now on.</p>
<h3>Description</h3>
<p>This plugin replaces the most common JavaScript libraries in WordPress with the corresponding files on <a href="http://code.google.com/apis/ajaxlibs/">Google AJAX Libraries</a>.</p>
<blockquote><p>&#8220;The AJAX Libraries API is a content distribution network and loading architecture for the most popular open source JavaScript libraries.&#8221;</p></blockquote>
<p>Note that this plugin does not actually replace or remove any files from your WordPress installation. It simply replaces any references to them with references to the corresponding files on Google AJAX Libraries.</p>
<h3>Installation</h3>
<ol>
<li>Unzip the ZIP file and drop the folder straight into your <code>wp-content/plugins/</code> directory.</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>
<li>That&#8217;s it!</li>
</ol>
<h3>Which Libraries are Supported?</h3>
<p>The current version of the plugin supports the following JavaScript libraries:</p>
<ul>
<li>jQuery</li>
<li>Prototype</li>
<li>Scriptaculous</li>
<li>MooTools</li>
<li>Dojo</li>
</ul>
<h3>Download</h3>
<p class="download"><del>ZIP file from downloads.wordpress.org</del><br />
You should use the <a href="http://jasonpenney.net/wordpress-plugins/use-google-libraries/">&#8216;Use Google Libraries&#8217; WordPress plugin</a> instead now.</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-google-ajax-libraries/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Disable WordPress Plugin Updates</title>
		<link>https://lud.icro.us/disable-wordpress-plugin-updates</link>
		<comments>https://lud.icro.us/disable-wordpress-plugin-updates#comments</comments>
		<pubDate>Tue, 16 Oct 2007 02:35:49 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/disable-wordpress-plugin-updates/</guid>
		<description><![CDATA[Latest version: &#8211; Released All the information for this plugin can be found over at the WordPress Plugin Directory: Disable WordPress Plugin Updates. Don&#8217;t forget you can also disable WordPress core updates too.]]></description>
				<content:encoded><![CDATA[<p class="notice">Latest version: <strong>1.4</strong> &#8211; Released June 15th, 2012</p>
<p>All the information for this plugin can be found over at the WordPress Plugin Directory: <a href="http://wordpress.org/extend/plugins/disable-wordpress-plugin-updates/">Disable WordPress Plugin Updates</a>.</p>
<p>Don&#8217;t forget you can also <a href="/disable-wordpress-core-update/">disable WordPress core updates</a> too.</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/disable-wordpress-plugin-updates/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Global Post Password</title>
		<link>https://lud.icro.us/wordpress-plugin-global-post-password</link>
		<comments>https://lud.icro.us/wordpress-plugin-global-post-password#comments</comments>
		<pubDate>Sat, 22 Sep 2007 06:38:05 +0000</pubDate>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">https://lud.icro.us/wordpress-plugin-global-post-password/</guid>
		<description><![CDATA[Latest version: - Released Description Screenshots Installation Unzip the ZIP file and drop the folder straight into your wp-content/plugins/ directory. Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress. Visit the &#8216;Settings -&#62; Global Post Password&#8217; menu in WordPress and set a global post password. Now whenever you write or edit a post or page [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="notice">Latest version: <strong>1.5</strong>- Released November 2nd, 2012<ul>
<li>WordPress 3.4 and 3.5 compatibility.</li>
<li>WordPress 3.4 or later is now a requirement.</li>
</ul></div>
<h3>Description</h3>
<p>If you publish many password protected posts (or even if you don't), you may end up using the same password for every post. With this plugin you can define a global post password from your 'Settings -&#62; Global Post Password' menu, and switch password protection on or off from the writing screen with just one click. When you change the global password, all password protected posts are automatically updated with the new password.</p>

<p>Note that this plugin <strong>does not</strong> automatically enable password protection on every post. It allows you to use a global password for every post that you choose to password protect.</p>
<h3>Screenshots</h3>
<ol>
	<li>
		<img class='screenshot' src='http://s-plugins.wordpress.org/global-post-password/assets/screenshot-1.png?rev=620540' alt='global-post-password screenshot 1' />
		<p>Switching a post's password protection on or off.</p>
	</li>
	<li>
		<img class='screenshot' src='http://s-plugins.wordpress.org/global-post-password/assets/screenshot-2.png?rev=620540' alt='global-post-password screenshot 2' />
		<p>The settings screen.</p>
	</li>
</ol>
<h3>Installation</h3>
<ul>
<li>Unzip the ZIP file and drop the folder straight into your <code>wp-content/plugins/</code> directory.</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>
<li>Visit the &#8216;Settings -&gt; Global Post Password&#8217; menu in WordPress and set a global post password.</li>
</ul>
<p>Now whenever you write or edit a post or page you&#8217;ll be able to switch password protection on or off with one click, instead of having to manually type in a password for each post. You can change the password whenever you like.</p>
<h3>More Information</h3>
<p>Please see the <a href="http://wordpress.org/extend/plugins/global-post-password/">plugin&#8217;s page on the WordPress Plugin Directory</a> for more information, including FAQs.</p>
<h3>Download</h3>
<p class="download"><a href="https://downloads.wordpress.org/plugin/global-post-password.zip">ZIP file</a> from downloads.wordpress.org</p>
<p>Any comments, questions, queries, suggestions, complaints, etc, please leave a comment below!</p>
]]></content:encoded>
			<wfw:commentRss>https://lud.icro.us/wordpress-plugin-global-post-password/feed</wfw:commentRss>
		<slash:comments>78</slash:comments>
		</item>
	</channel>
</rss>
