<?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>Pontus Östlund &#187; PLib</title>
	<atom:link href="http://www.poppa.se/blog/tag/plib/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.poppa.se/blog</link>
	<description>My blog about web development and such</description>
	<lastBuildDate>Mon, 16 Jan 2012 00:38:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New layout for plib.poppa.se</title>
		<link>http://www.poppa.se/blog/new-layout-for-plibpoppase/</link>
		<comments>http://www.poppa.se/blog/new-layout-for-plibpoppase/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 21:12:55 +0000</pubDate>
		<dc:creator>Pontus</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[PLib]]></category>

		<guid isPermaLink="false">http://www.poppa.se/blog/?p=156</guid>
		<description><![CDATA[Just finished a new layout for my PLib site. I don&#8217;t think there&#8217;s too much to say about it  
plib.poppa.se
]]></description>
			<content:encoded><![CDATA[<p>Just finished a new layout for my <a href='http://plib.poppa.se/'>PLib site</a>. I don&#8217;t think there&#8217;s too much to say about it <img src='http://www.poppa.se/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href='http://plib.poppa.se'><strong>plib.poppa.se</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.poppa.se/blog/new-layout-for-plibpoppase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PLib, the Poppa PHP Library</title>
		<link>http://www.poppa.se/blog/plib-the-poppa-php-library/</link>
		<comments>http://www.poppa.se/blog/plib-the-poppa-php-library/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 18:13:19 +0000</pubDate>
		<dc:creator>Pontus</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PLib]]></category>

		<guid isPermaLink="false">http://www.poppa.se/blog/?p=146</guid>
		<description><![CDATA[Other than working my ass off at work I just lately took a real approach on my secretly sleeping project PLib. PLib is my own PHP framework with functions and classes to ease my everyday PHP programming.
To give you an idea of what PLib is all about let me give you an example:
]]></description>
			<content:encoded><![CDATA[<p>Other than working my ass off at work I just lately took a real approach on my secretly sleeping project <a href='http://plib.poppa.se'>PLib</a>. PLib is my own PHP framework with functions and classes to ease my everyday PHP programming.</p>
<p>To give you an idea of what PLib is all about let me give you an example:</p>
<pre><code lang='php'><?php
require_once '/path/to/PLib.php';

//! Lets create thumbnails of all JPEG images in a directory
PLib::Import('Graphics.Image');

//! The Dir class is included in Image so I don't explicitly need to
//! include it
$dir = new Dir('/path/to/jpegs/');
$mw  = 150; // Max width of thumb
$mh  = 90;  // Max height of thumb

while ($file = $dir->Emit('*.jpg')) {
  $img = new Image($file->path);
  $img = $img->Copy($file->path.'/thumb-'.$file->name)->Scale($mw, $mh);
  wbr($img->Path()); // The full path to the thumbnail
}
?></code></pre>
<p>Rather easy I think!</p>
<h2>AutoDoc</h2>
<p>Another cool feature (if I may say so) is the auto documentation. If you quickly want a list of all available classes and functions just type <code>PLib::Info()</code> and you will get the list. Each class and function is then clickable and will lead you to the documentation for which ever class or function you clicked.</p>
<p>If you want the documentation for a specific class just type <code>PLib::Info()</code> and there you have the documentation.</p>
<p>The third way to use the autodoc is to pass an instance of a class as argument like <code>PLib::Info()</code>.</p>
<p>And if you wan&#8217;t a full documentation site just type <code>PLib::Info()</code> and you will get the same documentation as available at the <a href='http://plib.poppa.se'>PLib site</a>.</p>
<h2>The site</h2>
<p>Anyway, PLib has its site of it&#8217;s own where anyone curious can download the latest version of PLib and find out more about the project.</p>
<p><a href='http://plib.poppa.se'><strong>plib.poppa.se</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.poppa.se/blog/plib-the-poppa-php-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

