<?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>Development Information</title>
	<atom:link href="http://development.andrewjudd.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://development.andrewjudd.ca</link>
	<description>Information About Scripts which are in Development by Me</description>
	<lastBuildDate>Sat, 12 May 2012 20:23:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Database Object &#8211; What the Configuration values mean</title>
		<link>http://development.andrewjudd.ca/2012/05/12/database-object-what-the-configuration-values-mean/</link>
		<comments>http://development.andrewjudd.ca/2012/05/12/database-object-what-the-configuration-values-mean/#comments</comments>
		<pubDate>Sat, 12 May 2012 13:37:39 +0000</pubDate>
		<dc:creator>judda</dc:creator>
				<category><![CDATA[Database Class Information]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://development.andrewjudd.ca/?p=228</guid>
		<description><![CDATA[As mentioned in my previous post, there are a few configuration settings that are used, this post will define the meaning of each of them. Hostname='localhost' Username='testing' Password='testing' Engine='mysql' Database='testing' ErrorReporting=2 ErrorLog='logfile.log' LogQueries='true' QueryMode=0 Hostname: (normally localhost) the IP address / name of the host that you will be connecting to Username: the username to [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned in my previous post, there are a few configuration settings that are used, this post will define the meaning of each of them.</p>
<pre>Hostname='localhost'
Username='testing'
Password='testing'
Engine='mysql'
Database='testing'
ErrorReporting=2
ErrorLog='logfile.log'
LogQueries='true'
QueryMode=0</pre>
<p>Hostname: (normally localhost) the IP address / name of the host that you will be connecting to</p>
<p>Username: the username to connect to the database with</p>
<p>Password: the password to connect to the database with</p>
<p>Engine: the database engine to use</p>
<p>ErrorReporting: The error reporting level(s) that are desired from the database object.  This can be any combination of the following constants (however if used in an INI file you will have to manually set the value).</p>
<p>ERRORS_IGNORE = 0 &#8211; Ignore any error messages that come up</p>
<p>ERRORS_ECHO = 1 &#8211; Echo any error messages to the screen</p>
<p>ERRORS_EXCEPTION = 2 &#8211; Throw an exception whenever there is an issue</p>
<p>ERRORS_LOGFILE = 4 &#8211; Write the exception to the log file (located in the ErrorLog configuration setting)</p>
<p>You are able to mix and match any of these levels (except for ERRORS_IGNORE).  For example, in the PHP code you could do the following:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">errorReporting</span><span style="color: #339933;">=</span>DatabaseConfiguration<span style="color: #339933;">::</span><span style="color: #004000;">ERRORS_ECHO</span> <span style="color: #339933;">|</span> DatabaseConfiguration<span style="color: #339933;">::</span><span style="color: #004000;">ERRORS_EXCEPTION</span><span style="color: #339933;">;</span></pre></div></div>

<p>And you would get the errors both echoed out to the screen AND an exception would be thrown.</p>
<p>ErrorLog: If error logging to a log file is enabled, then the error messages will be written here (need to have write access to it).</p>
<p>LogQueries: Whether or not you want a query log stored in memory with the object (useful for helping to determine long running queries and various other query stats)</p>
<p>QueryMode: One of two settings which will define the way that the queries get parsed for parameters.</p>
<p>QUERY_DEFAULT = 0 &#8211; Use the new style parameters (i.e. {0:uf})</p>
<p>QUERY_CLASSIC = 1 &#8211; Use the classic style parameters (i.e. %uf)</p>
<p>With these values in mind, you are able to set up the object and start querying your database.</p>
]]></content:encoded>
			<wfw:commentRss>http://development.andrewjudd.ca/2012/05/12/database-object-what-the-configuration-values-mean/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring the Database Object</title>
		<link>http://development.andrewjudd.ca/2012/05/12/configuring-the-database-object/</link>
		<comments>http://development.andrewjudd.ca/2012/05/12/configuring-the-database-object/#comments</comments>
		<pubDate>Sat, 12 May 2012 13:23:50 +0000</pubDate>
		<dc:creator>judda</dc:creator>
				<category><![CDATA[Database Class Information]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://development.andrewjudd.ca/?p=222</guid>
		<description><![CDATA[The first step to using the database object is the configuration of it.  Essentially at the configuration process is just the hydrating of the DatabaseConfiguration object.  There are four relatively easy ways to do this. Next post I&#8217;ll explain what each of these mean, and what values they should contain. They are as follows: 1 [...]]]></description>
			<content:encoded><![CDATA[<p>The first step to using the database object is the configuration of it.  Essentially at the configuration process is just the hydrating of the DatabaseConfiguration object.  There are four relatively easy ways to do this.</p>
<p>Next post I&#8217;ll explain what each of these mean, and what values they should contain.</p>
<p>They are as follows:</p>
<p>1 &#8211; Using an INI file</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">DatabaseConfiguration<span style="color: #339933;">::</span><span style="color: #004000;">fromINIFile</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$iniFile</span><span style="color: #339933;">,</span> <span style="color: #000088;">$section</span><span style="color: #339933;">=</span><span style="color: #009900; font-weight: bold;">NULL</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p>If you store your configuration settings in a .ini file, you are able to use that to configure the object.  The ini file should look as follows:</p>
<pre>; Configuration INI File for Database Configuration
[Database]
Hostname='localhost'
Username='testing'
Password='testing'
Engine='mysql'
Database='testing'
ErrorReporting=2
ErrorLog='logfile.log'
LogQueries='true'
QueryMode=0</pre>
<p>With this as your ini file you can then call the static method DatabaseConfiguration::fromINIFile passing it the full file path to this ini file and if there is a section (i.e. the &#8216;Database&#8217; in the ini file seen above) then provide it that name, and then it will automatically configure the rest for you.</p>
<p>2 &#8211; Using an INI string</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">DatabaseConfiguration<span style="color: #339933;">::</span><span style="color: #004000;">fromINIString</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$iniString</span><span style="color: #339933;">,</span> <span style="color: #000088;">$section</span><span style="color: #339933;">=</span><span style="color: #009900; font-weight: bold;">NULL</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p>You may already have the body of an ini file in memory, so this way works just like the previous method but instead of reading the contents of the ini file from a flat file, it will just load it from a string.</p>
<p>3 &#8211; Using an array</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">DatabaseConfiguration<span style="color: #339933;">::</span><span style="color: #004000;">fromArray</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$config</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p>If you have an array which contains the following key values (keys the same as seen in the above example) then you can set up the object using that.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$array</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span>
    <span style="color: #0000ff;">'Hostname'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'localhost'</span>
    <span style="color: #339933;">,</span> <span style="color: #0000ff;">'Username'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'testing'</span>
    <span style="color: #339933;">,</span> <span style="color: #0000ff;">'Password'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'testing'</span>
    <span style="color: #339933;">,</span> <span style="color: #0000ff;">'Engine'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'mysql'</span>
    <span style="color: #339933;">,</span> <span style="color: #0000ff;">'Database'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'testing'</span>
    <span style="color: #339933;">,</span> <span style="color: #0000ff;">'ErrorReporting'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">2</span>
    <span style="color: #339933;">,</span> <span style="color: #0000ff;">'ErrorLog'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'logfile.log'</span>
    <span style="color: #339933;">,</span> <span style="color: #0000ff;">'LogQueries'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'true'</span>
    <span style="color: #339933;">,</span> <span style="color: #0000ff;">'QueryMode'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">0</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>4 &#8211; Manually Hydrating the object</p>
<p>If none of the previous options work for you, then you are always able to manually create an instance of the DatabaseConfiguration object and populate each of the values by hand.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$config</span><span style="color: #339933;">=</span><span style="color: #000000; font-weight: bold;">new</span> DatabaseConfiguration<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">hostname</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'localhost'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">engine</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'mysql'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">database</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'testing'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">username</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'testing'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">password</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'testing'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">errorReporting</span> <span style="color: #339933;">=</span> DatabaseConfiguration<span style="color: #339933;">::</span><span style="color: #004000;">ERRORS_EXCEPTION</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">errorLogFile</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'logfile.log'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">maintainQueryLog</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">queryMode</span> <span style="color: #339933;">=</span> DatabaseConfiguration<span style="color: #339933;">::</span><span style="color: #004000;">QUERY_DEFAULT</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://development.andrewjudd.ca/2012/05/12/configuring-the-database-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Class v3.0.0</title>
		<link>http://development.andrewjudd.ca/2012/05/06/database-class-v3-0-0/</link>
		<comments>http://development.andrewjudd.ca/2012/05/06/database-class-v3-0-0/#comments</comments>
		<pubDate>Sun, 06 May 2012 18:45:09 +0000</pubDate>
		<dc:creator>judda</dc:creator>
				<category><![CDATA[Database Class Information]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://development.andrewjudd.ca/?p=219</guid>
		<description><![CDATA[The first cut of the new database object has been completed.  From what I&#8217;ve found, it is a lot easier to use than the older versions of it.  Not only to configure, but some things have been moved around to make it much more intuitive.  I will be adding more posts on here walking through [...]]]></description>
			<content:encoded><![CDATA[<p>The first cut of the new database object has been completed.  From what I&#8217;ve found, it is a lot easier to use than the older versions of it.  Not only to configure, but some things have been moved around to make it much more intuitive.  I will be adding more posts on here walking through the basics on how to set up your object, as well as how to query in the new fashion.</p>
]]></content:encoded>
			<wfw:commentRss>http://development.andrewjudd.ca/2012/05/06/database-class-v3-0-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Class v 3.0.0 in development</title>
		<link>http://development.andrewjudd.ca/2012/04/21/database-class-v-3-0-0-in-development/</link>
		<comments>http://development.andrewjudd.ca/2012/04/21/database-class-v-3-0-0-in-development/#comments</comments>
		<pubDate>Sat, 21 Apr 2012 22:44:41 +0000</pubDate>
		<dc:creator>judda</dc:creator>
				<category><![CDATA[Database Class Information]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://development.andrewjudd.ca/?p=208</guid>
		<description><![CDATA[Hey All, So I&#8217;ve finally decided to take on my overhaul of the database object that I made a few years ago now (my how time flies). I just noticed that I posted the original idea back in November 2010 (so much for doing it within the next few weeks). Essentially this change will affect [...]]]></description>
			<content:encoded><![CDATA[<p>Hey All,</p>
<p>So I&#8217;ve finally decided to take on my overhaul of the database object that I made a few years ago now (my how time flies). I just noticed that I posted the original idea back in November 2010 (so much for doing it within the next few weeks).</p>
<p>Essentially this change will affect several things about the database object. The main one being the syntax used to bind the parameters to the query. You will be able to write queries as follows:</p>
<p>Code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$query</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'SELECT `Username` FROM `Users` WHERE `Username` LIKE {0:s} OR `FullName` LIKE {0:s}'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'foo'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// OR</span>
&nbsp;
<span style="color: #000088;">$query</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'SELECT `Username` FROM `Users` WHERE `UserId` = {u}'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$db</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'foo'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>That said, I am also building into it a &#8220;classic&#8221; mode where you can use the %s and stuff as you did in the old versions.</p>
<p>While I am at it, I was thinking about renaming some of the type strings. The thing is with this renaming it would also affect the &#8216;classic&#8217; mode. So I want to know what you guys think about it.</p>
<p>Below is a list of what it currently is, and what I&#8217;m thinking of changing it to, or if they are being removed.</p>
<p>Existing:<br />
* %u &#8211; unsigned integer &#8211; ud<br />
* %d &#8211; signed integer &#8211; d<br />
* %p &#8211; decimal number &#8211; f<br />
* %b &#8211; binary files &#8211; b<br />
* %h &#8211; string (HTML permitted) &#8211; s<br />
* %s &#8211; string (no HTML permitted) &#8211; es<br />
* %l &#8211; list of values or an array &#8211; l</p>
<p>New:<br />
* unsigned decimal number &#8211; f</p>
<p>Possible Expansion:<br />
* list of values or an array &#8211; l &#8211; should there be type checking enabled on these? (i.e. lp would be a list of decimal numbers, ls would be a list of strings, etc.)</p>
<p>Removed:<br />
* %i &#8211; IP Address &#8211; shouldn&#8217;t be storing IP addresses as strings, and it was very inflexible for IPv6<br />
* %f &#8211; field</p>
<p>Another thing I could do, is make these keys also configurable so that you can get a &#8216;true classic&#8217; mode by just switching the type codes back to what they originally were (except for the 2 which I was planning on removing). Would this make the upgrade easier?</p>
<p>While I am in here ripping out the guts of it and rebuilding it, was there anything in it that really annoyed you when using it? If yes, what was it, maybe I can improve it this time around?</p>
<p>There are a few simple things that I&#8217;ll be changing as well but I&#8217;ll still be leaving it so you can use it the same way as before (but with deprecation notices) so there won&#8217;t be much re-work there.</p>
<p>Please let me know what you think by either posting a comment on here, or sending me an email through the contact page.</p>
]]></content:encoded>
			<wfw:commentRss>http://development.andrewjudd.ca/2012/04/21/database-class-v-3-0-0-in-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MiniMVC &#8211; Small Fix</title>
		<link>http://development.andrewjudd.ca/2011/05/16/minimvc-small-fix/</link>
		<comments>http://development.andrewjudd.ca/2011/05/16/minimvc-small-fix/#comments</comments>
		<pubDate>Mon, 16 May 2011 04:46:07 +0000</pubDate>
		<dc:creator>judda</dc:creator>
				<category><![CDATA[Mini MVC Information]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://development.andrewjudd.ca/?p=203</guid>
		<description><![CDATA[I have pushed out a small fix for the configuration file (./app/config/config.php) out to all versions of MiniMVC.  There was an issue that if you put MiniMVC a few folders deep the URLs would start losing folders.  This has been fixed as well as I added a / at the end of the index.php so [...]]]></description>
			<content:encoded><![CDATA[<p>I have pushed out a small fix for the configuration file (./app/config/config.php) out to all versions of MiniMVC.  There was an issue that if you put MiniMVC a few folders deep the URLs would start losing folders.  This has been fixed as well as I added a / at the end of the index.php so that it too can be used properly (i.e. not a special case to be handled differently than if __SHOWINDEX__ was disabled).</p>
<p>Sorry for any inconveniences these bugs may have caused.</p>
]]></content:encoded>
			<wfw:commentRss>http://development.andrewjudd.ca/2011/05/16/minimvc-small-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MiniMVC Form Builder 1.0.10 &#8594; 1.0.11</title>
		<link>http://development.andrewjudd.ca/2011/05/08/minimvc-form-builder-1-0-10-1-0-11/</link>
		<comments>http://development.andrewjudd.ca/2011/05/08/minimvc-form-builder-1-0-10-1-0-11/#comments</comments>
		<pubDate>Mon, 09 May 2011 02:11:07 +0000</pubDate>
		<dc:creator>judda</dc:creator>
				<category><![CDATA[Mini MVC Information]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://development.andrewjudd.ca/?p=201</guid>
		<description><![CDATA[Small update.  As mentioned on Wednesday, this weekend&#8217;s update fixes the issue where you could only select one value. To select more than one value all you need to do is for the value specify an array of all keys which will be marked as selected if found.]]></description>
			<content:encoded><![CDATA[<p>Small update.  As mentioned on Wednesday, this weekend&#8217;s update fixes the issue where you could only select one value.</p>
<p>To select more than one value all you need to do is for the value specify an array of all keys which will be marked as selected if found.</p>
]]></content:encoded>
			<wfw:commentRss>http://development.andrewjudd.ca/2011/05/08/minimvc-form-builder-1-0-10-1-0-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bug Fixes Coming Soon &#8230;</title>
		<link>http://development.andrewjudd.ca/2011/05/04/bug-fixes-coming-soon/</link>
		<comments>http://development.andrewjudd.ca/2011/05/04/bug-fixes-coming-soon/#comments</comments>
		<pubDate>Thu, 05 May 2011 00:17:49 +0000</pubDate>
		<dc:creator>judda</dc:creator>
				<category><![CDATA[Mini MVC Information]]></category>

		<guid isPermaLink="false">http://development.andrewjudd.ca/?p=195</guid>
		<description><![CDATA[I was informed a little while ago that there was an issue with the updated version of the Form Builder where if you select a checkbox list you can only default 1 of the values to selected, not multiple.  I will be working on fixing this issue this weekend. I also want to mention that [...]]]></description>
			<content:encoded><![CDATA[<p>I was informed a little while ago that there was an issue with the updated version of the Form Builder where if you select a checkbox list you can only default 1 of the values to selected, not multiple.  I will be working on fixing this issue this weekend.</p>
<p>I also want to mention that I believe the version of the database class included with MiniMVC currently is a bit out of date.  I had completed some updates making it work properly and not give notices when running on E_STRICT.  So you will want to update the version by downloading the database class from the link on the right named &#8220;Database Class&#8221; and then placing it into the system/libraries folder of MiniMVC.</p>
<p>Any bugs you find please let me by either posting it as a comment or by emailing me it through my <a title="Contact Andrew" href="http://www.andrewjudd.ca/contact">contact page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://development.andrewjudd.ca/2011/05/04/bug-fixes-coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorials now on YouTube</title>
		<link>http://development.andrewjudd.ca/2011/05/04/tutorials-now-on-youtube/</link>
		<comments>http://development.andrewjudd.ca/2011/05/04/tutorials-now-on-youtube/#comments</comments>
		<pubDate>Thu, 05 May 2011 00:14:02 +0000</pubDate>
		<dc:creator>judda</dc:creator>
				<category><![CDATA[Mini MVC Information]]></category>

		<guid isPermaLink="false">http://development.andrewjudd.ca/?p=193</guid>
		<description><![CDATA[Apparently this has been up for 6 months already, but today was the first time I saw it.  Xylogeist who has been using MiniMVC has started a series on YouTube walking through how to make a CMS using MiniMVC.  The first video is available here. Apparently the next video will be coming up within the [...]]]></description>
			<content:encoded><![CDATA[<p>Apparently this has been up for 6 months already, but today was the first time I saw it.  Xylogeist who has been using MiniMVC has started a series on YouTube walking through how to make a CMS using MiniMVC.  The first video is available <a title="Developing an advanced CMS : 1 - The Framework" href="http://www.youtube.com/watch?v=B1MKJmW6wVc">here</a>.</p>
<p>Apparently the next video will be coming up within the next week or so, so I don&#8217;t know about you, but I can&#8217;t wait to see it <img src='http://development.andrewjudd.ca/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://development.andrewjudd.ca/2011/05/04/tutorials-now-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MiniMVC 1.0.2</title>
		<link>http://development.andrewjudd.ca/2011/02/17/minimvc-1-0-2/</link>
		<comments>http://development.andrewjudd.ca/2011/02/17/minimvc-1-0-2/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 23:29:40 +0000</pubDate>
		<dc:creator>judda</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://development.andrewjudd.ca/?p=185</guid>
		<description><![CDATA[So I accidentally pushed 1.0.1 out under the 1.0.2 tag. So anyone who downloaded it yesterday, please re-download MiniMVC because it is not up to date. Sorry about the inconvenience.]]></description>
			<content:encoded><![CDATA[<p>So I accidentally pushed 1.0.1 out under the 1.0.2 tag.  So anyone who downloaded it yesterday, please re-download MiniMVC because it is not up to date.  Sorry about the inconvenience.</p>
]]></content:encoded>
			<wfw:commentRss>http://development.andrewjudd.ca/2011/02/17/minimvc-1-0-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MiniMVC FormBuilder 1.0.9 &#8594; 1.0.10</title>
		<link>http://development.andrewjudd.ca/2011/02/17/minimvc-formbuilder-1-0-9-1-0-10/</link>
		<comments>http://development.andrewjudd.ca/2011/02/17/minimvc-formbuilder-1-0-9-1-0-10/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 04:24:31 +0000</pubDate>
		<dc:creator>judda</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://development.andrewjudd.ca/?p=180</guid>
		<description><![CDATA[Fairly big update: Fixed the multiselect drop down lists so that you are now able to select multiple items Changed the handling of the INPUT_CHECKBOX and INPUT_RADIO, prior to this release it was one value per button however from now on, these are now able to accept an array of items (like the drop down [...]]]></description>
			<content:encoded><![CDATA[<p>Fairly big update:</p>
<ul>
<li>Fixed the multiselect drop down lists so that you are now able to select multiple items</li>
<li>Changed the handling of the INPUT_CHECKBOX and INPUT_RADIO, prior to this release it was one value per button however from now on, these are now able to accept an array of items (like the drop down lists) in order to build the actual list of items</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://development.andrewjudd.ca/2011/02/17/minimvc-formbuilder-1-0-9-1-0-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

