<?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>Marty Thornley &#187; php</title>
	<atom:link href="http://martythornley.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://martythornley.com</link>
	<description>Los Angeles Fimmaker and Web Developer</description>
	<lastBuildDate>Tue, 22 Jun 2010 06:29:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Adding TinyMCE text editor to Project Pier</title>
		<link>http://martythornley.com/2009/04/adding-tinymce-text-editor-to-project-pier/</link>
		<comments>http://martythornley.com/2009/04/adding-tinymce-text-editor-to-project-pier/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 14:00:26 +0000</pubDate>
		<dc:creator>marty</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[projectpier]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[tinymce]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[web apps]]></category>

		<guid isPermaLink="false">http://martythornley.com/?p=627</guid>
		<description><![CDATA[I have recently started using the open source project management app called Project Pier to organize and coordinate my website projects. It is similar to some of the popular hosted services like Basecamp, No Kahuna, or GoPlan with a couple major exceptions &#8211; it is FREE and you install and run it on your own [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently started using the open source project management app called <a title="Project Pier - Open Source Project Management" href="http://projectpier.org" target="_blank">Project Pier</a> to organize and coordinate my website projects. It is similar to some of the popular hosted services like <a title="Basecamp" href="www.basecamphq.com/" target="_blank">Basecamp</a>, <a title="No Kahuna Project Management" href="http://nokahuna.com" target="_blank">No Kahuna</a>, or <a title="Go Plan - Project Management" href="http://goplan.org" target="_blank">GoPlan</a> with a couple major exceptions &#8211; it is FREE and you install and run it on your own server. I will be adding an entire page to the site soon to show how I use Project Pier to upload and share files, send and receive messages and create task lists which can be shared and assigned to anyone working on a project. I might even create a demo project for anyone interested in seeing it in action.<a title="Project Pier - Open Source Project Management" href="http://projectpier.org" target="_blank"><br />
</a></p>
<p>One of the things it was lacking was the ability to add links and other html to the messages. It used a simple text area and did not allow any formatting at all. In the past I had used <a title="TinyMCE Wysiwyg Editor" href="http://tinymce.moxiecode.com/index.php" target="_blank">TinyMCE WYSIWYG editor</a> which can turn any text area into a full-fledged WYSIWYG text editor.</p>
<p>I wasn&#8217;t looking forward to digging through an entire application to figure out how to add TinyMCE but I found a post by <a title="Matt Gibson" href="http://www.mattgibson.ca/2008/04/19/adding-tinymce-to-your-projectpier-or-activecollab-installation/" target="_blank">Matt Gibson</a> which detailed exactly which files needed to be edited. He does a great job of walking you through the initial addition of the TinyMCE files so I won&#8217;t repeat it here.</p>
<p>Following his steps adds the WYSIWYG editor, but ProjectPier uses something called textile markup to allow some formatting and the information TinyMCE was passing into the application was getting mixed up. In the comments to that post someone suggested a quick fix to allow the html added by TinyMCE to be passed into the app and be recognized in the messages. If you follow those, you will see that the htnl is now recognized.</p>
<p>Now we have links and lists and all of the formatting shows up on the message pages but when I went back to the overview page, the display was broken again. I realized that one of the functions which I had commented out was working working great for one area of the site, but not for another. So I had to dig a little and tweak a few more files.</p>
<p>I tested it and it seemed fixed by adding back in the commented function. But in case that function should be avoided somewhere else, I created a second function and altered it a little.</p>
<p>In the main folder of your Project Pier installation go to:</p>
<p>/environment/functions/general.php</p>
<p>And replace the newly commented &#8216;clean&#8217; function at  line 72:</p>
<pre class="brush: php">
function clean($str) {
//$str = preg_replace(&#039;/&amp;(?!#[0-9]+;)/s&#039;, &#039;&amp;&#039;, $str);
//$str = str_replace(array(&#039;&lt; &#039;, &#039;&gt;&#039;, &#039;&quot;&#039;), array(&#039;&lt; &#039;, &#039;&gt;&#039;, &#039;&quot;&#039;), $str);
return $str;
} // clean
</pre>
<p>with this:</p>
<pre class="brush: php">
function clean($str) {
//$str = preg_replace(&#039;/&amp;(?!#[0-9]+;)/s&#039;, &#039;&amp;&#039;, $str);
//$str = str_replace(array(&#039;&lt; &#039;, &#039;&gt;&#039;, &#039;&quot;&#039;), array(&#039;&lt; &#039;, &#039;&gt;&#039;, &#039;&quot;&#039;), $str);
return $str;
} // clean

// Added this extra function to return the ability to clean strings when needed.
// Listing the comments on the front page needs this in place.

function clean2($str) {
strip_tags($str);
$str = preg_replace(&#039;/&amp;amp;(?!#[0-9]+;)/s&#039;, &#039;&amp;amp;&#039;, $str);
$str = strip_tags($str);
return $str;
} // clean2
</pre>
<p>I then had to change the call to the &#8216;clean&#8217; function on line 27 in<br />
application/views/application/render_application_logs.php<br />
And simply replace the word &#8216;clean&#8217; with &#8216;clean2&#8242;.</p>
<hr />
<p><small>&copy; marty for <a href="http://martythornley.com">Marty Thornley</a>, 2009. |
<a href="http://martythornley.com/2009/04/adding-tinymce-text-editor-to-project-pier/">Permalink</a> |
<a href="http://martythornley.com/2009/04/adding-tinymce-text-editor-to-project-pier/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://martythornley.com/2009/04/adding-tinymce-text-editor-to-project-pier/&amp;title=Adding TinyMCE text editor to Project Pier">del.icio.us</a>
<br/>
Post tags: <a href="http://martythornley.com/tag/php/" rel="tag">php</a>, <a href="http://martythornley.com/tag/programming/" rel="tag">programming</a>, <a href="http://martythornley.com/tag/projectpier/" rel="tag">projectpier</a>, <a href="http://martythornley.com/tag/resources/" rel="tag">Resources</a>, <a href="http://martythornley.com/tag/tinymce/" rel="tag">tinymce</a>, <a href="http://martythornley.com/tag/tips/" rel="tag">tips</a>, <a href="http://martythornley.com/tag/web-apps/" rel="tag">web apps</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://martythornley.com/2009/04/adding-tinymce-text-editor-to-project-pier/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jules Cafe</title>
		<link>http://martythornley.com/2009/02/jules-cafe/</link>
		<comments>http://martythornley.com/2009/02/jules-cafe/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 20:40:07 +0000</pubDate>
		<dc:creator>marty</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[custom web design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web clients]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://martythornley.com/?p=603</guid>
		<description><![CDATA[Just a quick screenshot for now. I&#8217;m off to Vegas for the WPPI convention, where we are introducing abrand new JulesCafe.com. &#169; marty for Marty Thornley, 2009. &#124; Permalink &#124; One comment &#124; Add to del.icio.us Post tags: clients, custom web design, html, php, web clients, web design, WordPress Feed enhanced by Better Feed from [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick screenshot for now. I&#8217;m off to Vegas for the <a title="WPPI" href="http://www.wppionline.com/" target="_blank">WPPI convention</a>, where we are introducing abrand new <a title="Jules Cafe" href="http://julescafe.com" target="_blank">JulesCafe.com</a>.</p>
<p><a href="http://martythornley.com/wordpress/wp-content/uploads/2009/02/picture-3.png" rel="shadowbox[post-603];player=img;"><img class="aligncenter size-medium wp-image-605" title="picture-3" src="http://martythornley.com/wordpress/wp-content/uploads/2009/02/picture-3-300x183.png" alt="picture 3 300x183 Jules Cafe" width="300" height="183" /></a></p>
<hr />
<p><small>&copy; marty for <a href="http://martythornley.com">Marty Thornley</a>, 2009. |
<a href="http://martythornley.com/2009/02/jules-cafe/">Permalink</a> |
<a href="http://martythornley.com/2009/02/jules-cafe/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://martythornley.com/2009/02/jules-cafe/&amp;title=Jules Cafe">del.icio.us</a>
<br/>
Post tags: <a href="http://martythornley.com/tag/clients/" rel="tag">clients</a>, <a href="http://martythornley.com/tag/custom-web-design/" rel="tag">custom web design</a>, <a href="http://martythornley.com/tag/html/" rel="tag">html</a>, <a href="http://martythornley.com/tag/php/" rel="tag">php</a>, <a href="http://martythornley.com/tag/web-clients/" rel="tag">web clients</a>, <a href="http://martythornley.com/tag/web-design/" rel="tag">web design</a>, <a href="http://martythornley.com/tag/wordpress/" rel="tag">WordPress</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://martythornley.com/2009/02/jules-cafe/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Splash Page for Jules Bianchi</title>
		<link>http://martythornley.com/2008/10/new-splash-page-for-jules-bianchi/</link>
		<comments>http://martythornley.com/2008/10/new-splash-page-for-jules-bianchi/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 19:53:00 +0000</pubDate>
		<dc:creator>marty</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[custom web design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[personal projects]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.martythornley.com/?p=31</guid>
		<description><![CDATA[Yesterday I put up a new splash page for wedding photographer, Jules Bianchi. We worked together on the look as she had an existing site and blog that the page needed to match and she had a very specific idea of what it should look like. Here is a screen capture of the new page: [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I put up a new splash page for wedding photographer, <a href="http://www.julesbianchi.com" target="blank">Jules Bianchi</a>. We worked together on the look as she had an existing site and blog that the page needed to match and she had a very specific idea of what it should look like.</p>
<p>Here is a screen capture of the new page:</p>
<p><a href="http://www.julesbianchi.com" target="blank"><img id="BLOGGER_PHOTO_ID_5258940917662255858" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_Ejg6lKXtH50/SPuC5swGivI/AAAAAAAAAJI/-O-tuy-4T5s/s400/Picture+8.png" border="0" alt="Picture+8 New Splash Page for Jules Bianchi"  title="New Splash Page for Jules Bianchi" /></a></p>
<p>And the old one:<br />
<a href="http://1.bp.blogspot.com/_Ejg6lKXtH50/SPuHEO7v3BI/AAAAAAAAAJY/-dNn0IWd7y4/s1600-h/Jules_OldPage.jpg" rel="shadowbox[post-34];player=img;" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5258945496683109394" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_Ejg6lKXtH50/SPuHEO7v3BI/AAAAAAAAAJY/-dNn0IWd7y4/s400/Jules_OldPage.jpg" border="0" alt="Jules OldPage New Splash Page for Jules Bianchi"  title="New Splash Page for Jules Bianchi" /></a>(click for a larger view)</p>
<p>It gave me a chance to use a new technique I had read about using &#8220;CSS Sprites&#8221;. I have to thank <a href="http://www.alistapart.com/articles/sprites" target="blank">A List Apart</a>, a site full of amazing resources and how-to&#8217;s which talked about this technique. Here is a link to their great <a href="http://www.alistapart.com/articles/sprites" target="blank">Tutorial on CSS Sprites</a>.</p>
<p>I will post a more technical version of how I tweaked their code to work for this situation later, but here is a quick explanation:</p>
<p>Normally to create all the rollover buttons on the page, eight separate images would be used and the old way even meant using javascript, which is a fairly cumbersome language compared to the simplicity of the CSS used here.</p>
<p>Very simply, instead of creating, editing and uploading eight images, all of the needed images are combined into one image. Then I just tell each button which part to use for the normal state and which part to use when the mouse hovers over it. The file size is smaller, so the page loads faster and if it ever needs to be edited or updated, I just download and edit one image instead of eight.</p>
<p>Here is the image:<br />
<a href="http://1.bp.blogspot.com/_Ejg6lKXtH50/SPuEp26QkrI/AAAAAAAAAJQ/UjWRYhkBKak/s1600-h/rollovers.jpg" rel="shadowbox[post-34];player=img;" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5258942844534559410" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_Ejg6lKXtH50/SPuEp26QkrI/AAAAAAAAAJQ/UjWRYhkBKak/s400/rollovers.jpg" border="0" alt="rollovers New Splash Page for Jules Bianchi"  title="New Splash Page for Jules Bianchi" /></a>(click for a larger view)</p>
<p>When <a href="http://www.julesbianchi.com" target="blank">Jules</a> had mentioned wanting to mouse over photos to reveal her logos underneath, I remembered reading about this somewhere, so I gave it a try.</p>
<hr />
<p><small>&copy; marty for <a href="http://martythornley.com">Marty Thornley</a>, 2008. |
<a href="http://martythornley.com/2008/10/new-splash-page-for-jules-bianchi/">Permalink</a> |
<a href="http://martythornley.com/2008/10/new-splash-page-for-jules-bianchi/#comments">3 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://martythornley.com/2008/10/new-splash-page-for-jules-bianchi/&amp;title=New Splash Page for Jules Bianchi">del.icio.us</a>
<br/>
Post tags: <a href="http://martythornley.com/tag/clients/" rel="tag">clients</a>, <a href="http://martythornley.com/tag/custom-web-design/" rel="tag">custom web design</a>, <a href="http://martythornley.com/tag/html/" rel="tag">html</a>, <a href="http://martythornley.com/tag/personal-projects/" rel="tag">personal projects</a>, <a href="http://martythornley.com/tag/php/" rel="tag">php</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://martythornley.com/2008/10/new-splash-page-for-jules-bianchi/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Company Cafe</title>
		<link>http://martythornley.com/2008/10/company-cafe/</link>
		<comments>http://martythornley.com/2008/10/company-cafe/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 18:01:00 +0000</pubDate>
		<dc:creator>marty</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[custom web design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.martythornley.com/?p=30</guid>
		<description><![CDATA[Company Cafe wanted a basic informational site but needed a look that matched their business. They offer quality food service in corporate environments. So I tried to balance a color scheme that I thought would work well for a cafe with a clean, crisp layout that I might use for a more corporate setting. I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://companycafedining.com" target="blank">Company Cafe</a> wanted a basic informational site but needed a look that matched their business. They offer quality food service in corporate environments. So I tried to balance a color scheme that I thought would work well for a cafe with a clean, crisp layout that I might use for a more corporate setting. I also knew I wanted to use a dark solid background to bring out the colors in the pictures they sent me.</p>
<p><a href="http://www.companycafedining.com" target="blank"><img id="BLOGGER_PHOTO_ID_5254105348785434626" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_Ejg6lKXtH50/SOpU-i7V8AI/AAAAAAAAAIw/Fd8MIkoU01A/s400/Company_MissionPage.png" border="0" alt="Company MissionPage Company Cafe"  title="Company Cafe" /></a></p>
<p>They needed a custom logo and this is what I cam up with, just a simple cursive font with some buildings in the background made to fit into the header at the top of the page&#8230;</p>
<p><a href="http://www.companycafedining.com" target="blank"><img id="BLOGGER_PHOTO_ID_5254107113167472178" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_Ejg6lKXtH50/SOpWlPwzRjI/AAAAAAAAAI4/5gQ1ddq97wc/s400/Company_Logo" border="0" alt=" Company Cafe"  title="Company Cafe" /></a></p>
<p>They also wanted a splash page with a movie that would act as a little teaser for their company and what they do. They had some pictures and a script with the words they wanted to say, I just had to put it all together.</p>
<p><a href="http://www.companycafedining.com" target="blank"><img id="BLOGGER_PHOTO_ID_5254107747592987378" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_Ejg6lKXtH50/SOpXKLLoYvI/AAAAAAAAAJA/ieJ_N6mQm3k/s400/Company_Intro" border="0" alt=" Company Cafe"  title="Company Cafe" /></a></p>
<p>I approached it a little differently than most sites I have seen. The usual approach would be to create something like this in Flash. Being a filmmaker, I am more used to the video editing and titling software. so I used Motion (which is packaged with Final Cut Pro) and created the movie as Quicktime. Then I used a little programming trickery to hide the white Quicktime window you usually see while a movie is loading. Once it is loaded it plays normally.</p>
<hr />
<p><small>&copy; marty for <a href="http://martythornley.com">Marty Thornley</a>, 2008. |
<a href="http://martythornley.com/2008/10/company-cafe/">Permalink</a> |
<a href="http://martythornley.com/2008/10/company-cafe/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://martythornley.com/2008/10/company-cafe/&amp;title=Company Cafe">del.icio.us</a>
<br/>
Post tags: <a href="http://martythornley.com/tag/clients/" rel="tag">clients</a>, <a href="http://martythornley.com/tag/custom-web-design/" rel="tag">custom web design</a>, <a href="http://martythornley.com/tag/html/" rel="tag">html</a>, <a href="http://martythornley.com/tag/php/" rel="tag">php</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://martythornley.com/2008/10/company-cafe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five Day DVD on WeLoveWP.com</title>
		<link>http://martythornley.com/2008/10/five-day-dvd-on-welovewpcom/</link>
		<comments>http://martythornley.com/2008/10/five-day-dvd-on-welovewpcom/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 00:28:00 +0000</pubDate>
		<dc:creator>marty</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[custom web design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[personal projects]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web clients]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.martythornley.com/?p=29</guid>
		<description><![CDATA[I had a nice surprise in my inbox today. Apparently Five Day DVD is a featured design on We Love WP (WeLoveWP.com) &#8211; a site that showcases custom WordPress sites. Only a few days ago, I found the site and browsed all the amazing work on there, getting inspiration and ideas for my own designs. [...]]]></description>
			<content:encoded><![CDATA[<p>I had a nice surprise in my inbox today.</p>
<p>Apparently <a href="http://www.fivedaydvd.com" target="blank">Five Day DVD</a> is a featured design on <a href="http://www.welovewp.com" target="blank">We Love WP (WeLoveWP.com)</a> &#8211; a site that showcases <a href="http://wordpress.org" target="blank">custom WordPress sites</a>.</p>
<p>Only a few days ago, I found the site and browsed all the amazing work on there, getting inspiration and ideas for my own designs. They had a section where you could submit your own site, let them know about it and if they like it, they would include it on their page.</p>
<p>Well, I guess they did, because here it is:</p>
<p><a href="http://welovewp.com" target="blank"><img id="BLOGGER_PHOTO_ID_5252812346249930898" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_Ejg6lKXtH50/SOW8_5IDaJI/AAAAAAAAAIk/WhgtxXfthXY/s400/WeLoveWP_Feature.JPG+" border="0" alt=" Five Day DVD on WeLoveWP.com"  title="Five Day DVD on WeLoveWP.com" /></a></p>
<p><a href="http://www.fivedaydvd.com" target="blank">Five Day DVD</a> was my first go at <a href="http://wordpress.org" target="blank">WordPress</a> and to have it noticed on a site like this means a lot. It took me so long to get it to look like it does!</p>
<p>I have big plans for a new site which I plan to do all in <a href="http://wordpress.org" target="blank">WordPress</a>. Plus &#8211; I am working on my first custom theme, built from scratch. No details yet&#8230;</p>
<p>A big thank you to <a href="http://www.welovewp.com" target="blank">We Love WP!</a></p>
<hr />
<p><small>&copy; marty for <a href="http://martythornley.com">Marty Thornley</a>, 2008. |
<a href="http://martythornley.com/2008/10/five-day-dvd-on-welovewpcom/">Permalink</a> |
<a href="http://martythornley.com/2008/10/five-day-dvd-on-welovewpcom/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://martythornley.com/2008/10/five-day-dvd-on-welovewpcom/&amp;title=Five Day DVD on WeLoveWP.com">del.icio.us</a>
<br/>
Post tags: <a href="http://martythornley.com/tag/custom-web-design/" rel="tag">custom web design</a>, <a href="http://martythornley.com/tag/html/" rel="tag">html</a>, <a href="http://martythornley.com/tag/personal-projects/" rel="tag">personal projects</a>, <a href="http://martythornley.com/tag/php/" rel="tag">php</a>, <a href="http://martythornley.com/tag/web-clients/" rel="tag">web clients</a>, <a href="http://martythornley.com/tag/web-design/" rel="tag">web design</a>, <a href="http://martythornley.com/tag/wordpress/" rel="tag">WordPress</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://martythornley.com/2008/10/five-day-dvd-on-welovewpcom/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Headshots And Reels</title>
		<link>http://martythornley.com/2008/09/headshotsandreels/</link>
		<comments>http://martythornley.com/2008/09/headshotsandreels/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 02:14:00 +0000</pubDate>
		<dc:creator>marty</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[custom web design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[personal projects]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.martythornley.com/?p=28</guid>
		<description><![CDATA[I launched a new website in beta today &#8211; www.headshotsandreels.com. It is still a work in progress, and for now is just the single page with a simple description and a form to send an email. I will be adding some functionality to the form tonight and working on the rest of the site when [...]]]></description>
			<content:encoded><![CDATA[<p>I launched a new website in beta today &#8211; <a href="http://www.headshotsandreels.com" target="blank">www.headshotsandreels.com</a>.</p>
<p><a href="http://www.headshotsandreels.com" target="blank"><img id="BLOGGER_PHOTO_ID_5250890268716249970" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_Ejg6lKXtH50/SN7o4QVjM3I/AAAAAAAAAIc/BJv82VFpxfw/s400/headshotsandreels.png" border="0" alt="headshotsandreels Headshots And Reels"  title="Headshots And Reels" /></a></p>
<p>It is still a work in progress, and for now is just the single page with a simple description and a form to send an email. I will be adding some functionality to the form tonight and working on the rest of the site when I can fit it in.</p>
<p>So, if you know any actors looking for a website &#8211; send them on over.</p>
<hr />
<p><small>&copy; marty for <a href="http://martythornley.com">Marty Thornley</a>, 2008. |
<a href="http://martythornley.com/2008/09/headshotsandreels/">Permalink</a> |
<a href="http://martythornley.com/2008/09/headshotsandreels/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://martythornley.com/2008/09/headshotsandreels/&amp;title=Headshots And Reels">del.icio.us</a>
<br/>
Post tags: <a href="http://martythornley.com/tag/custom-web-design/" rel="tag">custom web design</a>, <a href="http://martythornley.com/tag/html/" rel="tag">html</a>, <a href="http://martythornley.com/tag/personal-projects/" rel="tag">personal projects</a>, <a href="http://martythornley.com/tag/php/" rel="tag">php</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://martythornley.com/2008/09/headshotsandreels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actor Portfolio Sites</title>
		<link>http://martythornley.com/2008/09/actor-portfolio-sites/</link>
		<comments>http://martythornley.com/2008/09/actor-portfolio-sites/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 02:05:00 +0000</pubDate>
		<dc:creator>marty</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[custom web design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[personal projects]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.martythornley.com/?p=27</guid>
		<description><![CDATA[One of my great friends, Derek, needed a re-design for his acting site. I have had to work on it between regular jobs, but here it is finally. Derek Craigie More importantly, this was the first site for a side project that has been in the works for a while now &#8211; www.headshotsandreels.com I finally [...]]]></description>
			<content:encoded><![CDATA[<p>One of my great friends, Derek, needed a re-design for his acting site. I have had to work on it between regular jobs, but here it is finally.</p>
<p><a href="http://www.headshotsandreels.com/derekcraigie" target="_blank">Derek Craigie</a></p>
<p><a href="http://www.derekcraigie.com" target="blank"><img id="BLOGGER_PHOTO_ID_5250888643340730418" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_Ejg6lKXtH50/SN7nZpV1ADI/AAAAAAAAAIU/gYndMZV5KfY/s400/headshotsSampleSite_Chrome.png" border="0" alt="headshotsSampleSite Chrome Actor Portfolio Sites"  title="Actor Portfolio Sites" /></a></p>
<p>More importantly, this was the first site for a side project that has been in the works for a while now &#8211; <a href="http://www.headshotsandreels.com" target="blank">www.headshotsandreels.com</a></p>
<p>I finally launched a temporary page today, as you will see in my next post!</p>
<hr />
<p><small>&copy; marty for <a href="http://martythornley.com">Marty Thornley</a>, 2008. |
<a href="http://martythornley.com/2008/09/actor-portfolio-sites/">Permalink</a> |
<a href="http://martythornley.com/2008/09/actor-portfolio-sites/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://martythornley.com/2008/09/actor-portfolio-sites/&amp;title=Actor Portfolio Sites">del.icio.us</a>
<br/>
Post tags: <a href="http://martythornley.com/tag/custom-web-design/" rel="tag">custom web design</a>, <a href="http://martythornley.com/tag/html/" rel="tag">html</a>, <a href="http://martythornley.com/tag/personal-projects/" rel="tag">personal projects</a>, <a href="http://martythornley.com/tag/php/" rel="tag">php</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://martythornley.com/2008/09/actor-portfolio-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Y9 Construction Finished</title>
		<link>http://martythornley.com/2008/07/y9-construction-finished/</link>
		<comments>http://martythornley.com/2008/07/y9-construction-finished/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 04:53:00 +0000</pubDate>
		<dc:creator>marty</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[custom web design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.martythornley.com/?p=19</guid>
		<description><![CDATA[The first two Y9 Construction sites are finally finished. I had posted a couple couple screen captures before of early versions and the Kitchen site was still only one page. They are both filled out into full sites now, with all the images added. Check them out: Y9 Electric Y9 Kitchen Remodeling &#169; marty for [...]]]></description>
			<content:encoded><![CDATA[<p>The first two Y9 Construction sites are finally finished. I had posted a couple couple screen captures before of early versions and the Kitchen site was still only one page. They are both filled out into full sites now, with all the images added.</p>
<p>Check them out:</p>
<p><a href="http://www.y9electric.com" target="blank">Y9 Electric</a></p>
<p><a href="http://www.y9electric.com" target="blank" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5220502151538307346" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_Ejg6lKXtH50/SHLzDCOacRI/AAAAAAAAADI/-UMGkFIpkSE/s320/www.y9electric.com.png" border="0" alt="www.y9electric.com Y9 Construction Finished"  title="Y9 Construction Finished" /></a></p>
<p><a href="http://www.y9kitchenremodeling.com" target="blank">Y9 Kitchen Remodeling</a></p>
<p><a href="http://www.y9kitchenremodeling.com" target="blank" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5220502797535042274" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_Ejg6lKXtH50/SHLzoowCWuI/AAAAAAAAADQ/6Jt8zHkdUa4/s320/www.y9kitchenremodeling.com.png" border="0" alt="www.y9kitchenremodeling.com Y9 Construction Finished"  title="Y9 Construction Finished" /></a></p>
<hr />
<p><small>&copy; marty for <a href="http://martythornley.com">Marty Thornley</a>, 2008. |
<a href="http://martythornley.com/2008/07/y9-construction-finished/">Permalink</a> |
<a href="http://martythornley.com/2008/07/y9-construction-finished/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://martythornley.com/2008/07/y9-construction-finished/&amp;title=Y9 Construction Finished">del.icio.us</a>
<br/>
Post tags: <a href="http://martythornley.com/tag/clients/" rel="tag">clients</a>, <a href="http://martythornley.com/tag/custom-web-design/" rel="tag">custom web design</a>, <a href="http://martythornley.com/tag/html/" rel="tag">html</a>, <a href="http://martythornley.com/tag/php/" rel="tag">php</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://martythornley.com/2008/07/y9-construction-finished/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cookin With Lenny</title>
		<link>http://martythornley.com/2008/07/cookin-with-lenny/</link>
		<comments>http://martythornley.com/2008/07/cookin-with-lenny/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 04:35:00 +0000</pubDate>
		<dc:creator>marty</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Consultant]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[custom web design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.martythornley.com/?p=18</guid>
		<description><![CDATA[On Friday, I finished a new site design for Cookin With Lenny. In addition to gourmet production catering for TV and film productions, Chef Leonard Bent (aka Lenny), has been the on air chef for years on Good Day LA for Labor Day and Fourth of July shows, featuring his newest recipes. He asked me [...]]]></description>
			<content:encoded><![CDATA[<p>On Friday, I finished a new site design for <a href="http://www.cookinwithlenny.com">Cookin With Lenny</a>. In addition to gourmet production catering for TV and film productions, Chef Leonard Bent (aka Lenny), has been the on air chef for years on Good Day LA for Labor Day and Fourth of July shows, featuring his newest recipes. He asked me to redesign his site and I wanted to get it up before <a href="http://www.myfoxla.com/myfox/pages/Home/Detail;jsessionid=CB63D9A975B3F8A48C27ECF2ED8D8F62?contentId=6913127&amp;version=2&amp;locale=EN-US&amp;layoutCode=VSTY&amp;pageId=1.1.1&amp;sflg=1" target="blank">his Fourth of July appearance.</a></p>
<p><a href="http://www.cookinwithlenny.com" target="blank">The site</a> has lots of great recipes and some Step-by-Step Recipe Videos to cook along with which were pretty much hidden in the old site. Some time soon, we will be shooting and adding lots of new Step-by-Step Recipe Videos and a few other surprises.</p>
<p>It is still somewhat of a work in progress, with a lot of work to do on updating the old database and old CMS system which currently have some issues.</p>
<p>Here is a shot of the new site:</p>
<p><div id="attachment_327" class="wp-caption aligncenter" style="width: 238px"><img class="size-medium wp-image-327" title="Cookin With Lenny" src="http://martythornley.com/wordpress/wp-content/uploads/2008/07/lenny_homepage_new-228x300.jpg" alt="Custom website for caterer Lenny Bent" width="228" height="300" /><p class="wp-caption-text">Custom website for caterer Lenny Bent</p></div></p>
<hr />
<p><small>&copy; marty for <a href="http://martythornley.com">Marty Thornley</a>, 2008. |
<a href="http://martythornley.com/2008/07/cookin-with-lenny/">Permalink</a> |
<a href="http://martythornley.com/2008/07/cookin-with-lenny/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://martythornley.com/2008/07/cookin-with-lenny/&amp;title=Cookin With Lenny">del.icio.us</a>
<br/>
Post tags: <a href="http://martythornley.com/tag/clients/" rel="tag">clients</a>, <a href="http://martythornley.com/tag/custom-web-design/" rel="tag">custom web design</a>, <a href="http://martythornley.com/tag/html/" rel="tag">html</a>, <a href="http://martythornley.com/tag/php/" rel="tag">php</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://martythornley.com/2008/07/cookin-with-lenny/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Five Day DVD Website</title>
		<link>http://martythornley.com/2008/06/five-day-dvd-website/</link>
		<comments>http://martythornley.com/2008/06/five-day-dvd-website/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 20:28:00 +0000</pubDate>
		<dc:creator>marty</dc:creator>
				<category><![CDATA[Consultant]]></category>
		<category><![CDATA[custom web design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[personal projects]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web clients]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.martythornley.com/?p=17</guid>
		<description><![CDATA[After a couple major overhauls, I have settled on a look and site structure I am pretty happy with. Five Day DVD Site Five Day DVD grew out my consultant wok with the American Film Institute and several local high schools. I ended up developing a fairly comprehensive training program based on teaching beginners everything [...]]]></description>
			<content:encoded><![CDATA[<p>After a couple major overhauls, I have settled on a look and site structure I am pretty happy with.</p>
<p><a href="http://www.fivedaydvd.com" target="blank">Five Day DVD Site</a></p>
<p>Five Day DVD grew out my consultant wok with the American Film Institute and several local high schools. I ended up developing a fairly comprehensive training program based on teaching beginners everything they need to complete a large DVD yearbook project over the course of a five day workshop.</p>
<p><a href="http://www.fivedaydvd.com" target="blank" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5216295683874285410" style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_Ejg6lKXtH50/SGQBSZC652I/AAAAAAAAACI/SLxjfNcuTrc/s320/fivedaydvd.png" border="0" alt="fivedaydvd Five Day DVD Website"  title="Five Day DVD Website" /></a></p>
<p>Five Day DVD, was created with <a href="http://www.wordpress.org" target="blank">WordPress</a>, a great blog system that allows some pretty complex customization.</p>
<hr />
<p><small>&copy; marty for <a href="http://martythornley.com">Marty Thornley</a>, 2008. |
<a href="http://martythornley.com/2008/06/five-day-dvd-website/">Permalink</a> |
<a href="http://martythornley.com/2008/06/five-day-dvd-website/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://martythornley.com/2008/06/five-day-dvd-website/&amp;title=Five Day DVD Website">del.icio.us</a>
<br/>
Post tags: <a href="http://martythornley.com/tag/custom-web-design/" rel="tag">custom web design</a>, <a href="http://martythornley.com/tag/html/" rel="tag">html</a>, <a href="http://martythornley.com/tag/personal-projects/" rel="tag">personal projects</a>, <a href="http://martythornley.com/tag/php/" rel="tag">php</a>, <a href="http://martythornley.com/tag/web-clients/" rel="tag">web clients</a>, <a href="http://martythornley.com/tag/web-design/" rel="tag">web design</a>, <a href="http://martythornley.com/tag/wordpress/" rel="tag">WordPress</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://martythornley.com/2008/06/five-day-dvd-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->