<?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>justRIA</title>
	<atom:link href="http://www.justria.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.justria.com</link>
	<description>software, internet, etc.</description>
	<lastBuildDate>Sun, 01 Jan 2012 22:17:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Lint &#8211; Static Code analyzers</title>
		<link>http://www.justria.com/2012/01/01/lint-static-code-analyzers/</link>
		<comments>http://www.justria.com/2012/01/01/lint-static-code-analyzers/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 22:15:23 +0000</pubDate>
		<dc:creator>justperson</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.justria.com/?p=439</guid>
		<description><![CDATA[Twitter It!JavaScript Tools http://www.javascriptlint.com/ Language Variants CoffeScript and Spine MVC-Framework Objective-J and the Cappucino framework PHP Tools http://www.icosaedro.it/phplint/ http://pear.php.net/package/PHP_CodeSniffer http://www.program-transformation.org/PHP/PhpSat Articles Lorna Jane on &#8216;PHP Static Analysis Tool Usage&#8217;]]></description>
			<content:encoded><![CDATA[<span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22Lint%20-%20Static%20Code%20analyzers%22%20http%3A%2F%2Ftinyurl.com%2F7srhjvn" title="Twitter It!" >Twitter It!</a></span><h1>JavaScript</h1>
<h2>Tools</h2>
<p><a href="http://www.javascriptlint.com/">http://www.javascriptlint.com/</a></p>
<h2>Language Variants</h2>
<p><a href="http://coffeescript.org/">CoffeScript</a> and <a href="http://spinejs.com/">Spine MVC-Framework</a></p>
<p><a href="http://cappuccino.org/">Objective-J and the Cappucino framework</a></p>
<h1>PHP</h1>
<h2>Tools</h2>
<p><a href="http://www.icosaedro.it/phplint/">http://www.icosaedro.it/phplint/</a></p>
<p><a href="http://pear.php.net/package/PHP_CodeSniffer">http://pear.php.net/package/PHP_CodeSniffer</a></p>
<p><a href="http://www.program-transformation.org/PHP/PhpSat">http://www.program-transformation.org/PHP/PhpSat</a></p>
<h2>Articles</h2>
<p><a href="http://www.lornajane.net/posts/2011/PHP-Static-Analysis-Tool-Usage">Lorna Jane on &#8216;PHP Static Analysis Tool Usage&#8217;</a></p>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.justria.com/2012/01/01/lint-static-code-analyzers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protecting web applications against control-flow and parameter-change highjacking</title>
		<link>http://www.justria.com/2011/11/05/protecting-web-applications-against-control-flow-and-parameter-change-highjacking/</link>
		<comments>http://www.justria.com/2011/11/05/protecting-web-applications-against-control-flow-and-parameter-change-highjacking/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 00:55:50 +0000</pubDate>
		<dc:creator>justperson</dc:creator>
				<category><![CDATA[mvc]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.justria.com/?p=431</guid>
		<description><![CDATA[Twitter It!Some time ago, I found a mechanism to protect the control flow and all parameters of web-application (controllers) against highjacking. The technique provides this: All parameters of request are kept at the server side No parameter ever reaches any URL The control flow of an application strictly gets controlled by server-side state The base principle is this: Define a controller FlowController If [...]]]></description>
			<content:encoded><![CDATA[<span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22Protecting%20web%20applications%20against%20control-flow%20and%20parameter-change%20highjacking%22%20http%3A%2F%2Ftinyurl.com%2F6x7vj2u" title="Twitter It!" >Twitter It!</a></span><p>Some time ago, I found a mechanism to protect</p>
<ul>
<li>the control flow</li>
<li>and all parameters</li>
</ul>
<p>of web-application (controllers) against <strong>highjacking</strong>.</p>
<p>The technique provides this:</p>
<ul>
<li>All <strong>parameters</strong> of request are kept at the <strong>server side</strong></li>
<li>No parameter ever reaches any URL</li>
<li>The <strong>control flow</strong> of an application strictly gets <strong>controlled by server-side state</strong></li>
</ul>
<p>The base principle is this:</p>
<ul>
<li>Define a controller <strong>FlowController</strong></li>
<li>If a web page needs to include a link to another controller with certain parameters, ask<strong>FlowController to prepare the link</strong></li>
<li>FlowController does not provide the link directly, but <strong>maintains a server side state</strong>, which keeps all link-related information [controller class to be called, arguments to get passed]</li>
<li>Ultimately, FlowController returns not an actual link, but a <strong>random hash-value</strong>, which identifies the server side&#8217;s state</li>
<li>Once a <strong>hashed link</strong> comes back from the browser, it gets passed to FlowController, which looks up the related state and <strong>manages to instantiate the controller and pass arguments</strong></li>
</ul>
<p><strong>Consequences:</strong></p>
<ul>
<li>No link can be predicted.</li>
<li>Thus, no controller can be called without before getting authorization by FlowController.</li>
<li>All <strong>parameters</strong> retrieved form FlowController managed state passed to controllers can <strong>safely be trusted</strong>.</li>
</ul>
<p>Moreover:</p>
<ul>
<li>FlowController manages link states using a stack</li>
<li>FlowController provides set-back points: FlowControler::TerminateFlow() forces the application to re-establish the last set-back point.</li>
<li>If FlowController gets asked to start a non-top flow, it automatically deletes all flows above. Thus, if you return to an earlier state of the application, all follow-up states automatically get invalidated.</li>
</ul>
<p><strong>Consequences:</strong> One can call certain workflows &#8211; sequences of controllers &#8211; in a pure subroutine fashion: Request a set-back point to get set. Run the first controller of the workflow. Eventually, some controller will call FlowControler::TerminateFlow() and the control-flow will return to the caller&#8217;s environment.</p>
<p>Note, that the first called controller &#8211; more general the whole workflow of several controllers - <strong>doesn&#8217;t know which other part of of the applications requested its execution</strong>. The initiator of the workflow started it using a fire-and-forget fashion: The workflow will eventually come back to me. At a certain point, the workflow signals, that it is done. Important: <strong>It does not request a certain continuation controller.</strong> Thus, the workflow is fully decoupled from any caller.</p>
<p>Comments?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.justria.com/2011/11/05/protecting-web-applications-against-control-flow-and-parameter-change-highjacking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting stuff</title>
		<link>http://www.justria.com/2011/09/05/interesting-stuff/</link>
		<comments>http://www.justria.com/2011/09/05/interesting-stuff/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 19:21:57 +0000</pubDate>
		<dc:creator>justperson</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.justria.com/?p=423</guid>
		<description><![CDATA[Twitter It!Teensy USB Development Board, a sweet small development board and a compatible video display expressFlow, a workflow engine running on GAE Various examples of how to use OpenStreetMap using the OpenLayers framework An iOS theme for Adobe Flex in Jason&#8217;s Flex Blog]]></description>
			<content:encoded><![CDATA[<span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22Interesting%20stuff%22%20http%3A%2F%2Ftinyurl.com%2F3ps7x5f" title="Twitter It!" >Twitter It!</a></span><p><a href="http://www.pjrc.com/teensy/">Teensy USB Development Board</a>, a sweet small development board and a compatible <a href="http://www.pjrc.com/store/dev_display_128x64.html">video display</a></p>
<p><a href="http://expressflow.com/">expressFlow</a>, a workflow engine running on GAE</p>
<p>Various examples of how to use OpenStreetMap using the <a href="http://openlayers.org/dev/examples/">OpenLayers</a> framework</p>
<p>An <a href="http://blogs.adobe.com/jasonsj/2011/06/ios-theme-for-flex-mobile-projects-proof-of-concept.html">iOS theme for Adobe Flex</a> in <a href="http://blogs.adobe.com/jasonsj/">Jason&#8217;s Flex Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.justria.com/2011/09/05/interesting-stuff/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pantomime framework packed as XCode 3 project</title>
		<link>http://www.justria.com/2011/02/08/pantomime-framework-packed-as-xcode-3-project/</link>
		<comments>http://www.justria.com/2011/02/08/pantomime-framework-packed-as-xcode-3-project/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 23:19:00 +0000</pubDate>
		<dc:creator>justperson</dc:creator>
				<category><![CDATA[cocoa]]></category>
		<category><![CDATA[Components]]></category>
		<category><![CDATA[ObjC]]></category>

		<guid isPermaLink="false">http://www.justria.com/?p=411</guid>
		<description><![CDATA[Twitter It!I&#8217;ve moved the Pantomime framework into an XCode 3 project and changed some settings to make it compile. Pantomime is provides classes for mime coding/Encoding, SMTP, POP3 and much more. Since Apple dropped support to send emails using Cocoa, Pantomime might be a good replacement. Find the zipped XCode project folder here.]]></description>
			<content:encoded><![CDATA[<span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22Pantomime%20framework%20packed%20as%20XCode%203%20project%22%20http%3A%2F%2Ftinyurl.com%2F6ddog9n" title="Twitter It!" >Twitter It!</a></span><p>I&#8217;ve moved the <a title="Pantomime framework" href="http://www.collaboration-world.com/pantomime/" target="_blank">Pantomime framework</a> into an XCode 3 project and changed some settings to make it compile.</p>
<p>Pantomime is provides classes for mime coding/Encoding, SMTP, POP3 and much more. Since Apple dropped support to send emails using Cocoa, Pantomime might be a good replacement.</p>
<p>Find the zipped XCode project folder <a title="Pantomime XCode 3 project" href="http://www.justria.com/downloadStuff/Pantomime.zip">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.justria.com/2011/02/08/pantomime-framework-packed-as-xcode-3-project/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Good starting point for programming Cocoa on Mac OS X or iOS</title>
		<link>http://www.justria.com/2011/01/24/good-starting-point-for-programming-cocoa-on-mac-os-x-or-ios/</link>
		<comments>http://www.justria.com/2011/01/24/good-starting-point-for-programming-cocoa-on-mac-os-x-or-ios/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 23:41:20 +0000</pubDate>
		<dc:creator>justperson</dc:creator>
				<category><![CDATA[cocoa]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[ObjC]]></category>

		<guid isPermaLink="false">http://www.justria.com/?p=406</guid>
		<description><![CDATA[Twitter It!Starting to write Cocoa for Mac OS X oder iOS? Have a look at these sites: CocoaDevCentral &#8211; Very good tutorial. Huge amount of material. Cocoa with Love &#8211; Well written articles CocoaCast &#8211; Articles, sample code and podcast]]></description>
			<content:encoded><![CDATA[<span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22Good%20starting%20point%20for%20programming%20Cocoa%20on%20Mac%20OS%20X%20or%20iOS%22%20http%3A%2F%2Ftinyurl.com%2F627ow8y" title="Twitter It!" >Twitter It!</a></span><p>Starting to write Cocoa for Mac OS X oder iOS? Have a look at these sites:</p>
<ul>
<li><a title="CocoaDevCentral" href="http://cocoadevcentral.com/" target="_blank">CocoaDevCentral</a> &#8211; Very good tutorial. Huge amount of material.</li>
<li><a title="Cocoa with Love" href="http://cocoawithlove.com/2009/07/simple-extensible-http-server-in-cocoa.html" target="_blank">Cocoa with Love</a> &#8211; Well written articles</li>
<li><a title="CocoaCast" href="http://cocoacast.com/" target="_blank">CocoaCast</a> &#8211; Articles, sample code and podcast</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.justria.com/2011/01/24/good-starting-point-for-programming-cocoa-on-mac-os-x-or-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NSMailDelivery gone since 10.5</title>
		<link>http://www.justria.com/2011/01/22/nsmaildelivery-gone-since-10-5/</link>
		<comments>http://www.justria.com/2011/01/22/nsmaildelivery-gone-since-10-5/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 01:55:53 +0000</pubDate>
		<dc:creator>justperson</dc:creator>
				<category><![CDATA[cocoa]]></category>
		<category><![CDATA[ObjC]]></category>

		<guid isPermaLink="false">http://www.justria.com/?p=400</guid>
		<description><![CDATA[Twitter It!I really wonder, why Apple dropped support for NSMailDelivery since Mac OS 10.5.  In fact, all methods of NSMailDelivery are declared as: AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_5 Too bad. Even worse, Apple didn&#8217;t provide an alternative &#8211; except calling ScriptingBridge as seen in the SBSendEmail sample. Today, the best option available is CSMail from Corriolis systems. CSMail sends Emails [...]]]></description>
			<content:encoded><![CDATA[<span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22NSMailDelivery%20gone%20since%2010.5%22%20http%3A%2F%2Ftinyurl.com%2F6y92m8x" title="Twitter It!" >Twitter It!</a></span><p>I really wonder, why Apple dropped support for NSMailDelivery since Mac OS 10.5.  In fact, all methods of NSMailDelivery are declared as:</p>
<p>AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_5</p>
<p>Too bad. Even worse, Apple didn&#8217;t provide an alternative &#8211; except calling ScriptingBridge as seen in the <a title="Apple's SBSendEmail" href="http://developer.apple.com/library/mac/#samplecode/SBSendEmail/Listings/Controller_m.html%23//apple_ref/doc/uid/DTS10004645-Controller_m-DontLinkElementID_4" target="_blank">SBSendEmail sample</a>.</p>
<p>Today, the best option available is <a href="http://www.coriolis-systems.com/opensource/" target="_blank">CSMail from Corriolis systems</a>. CSMail sends Emails through Apple.Mail (or some other mail clients).</p>
<p>For historical reasons, I mention the no longer maintained <a href="http://www.collaboration-world.com/pantomime/" target="_blank">Pantomime</a> (LGPL license), <a href="http://www.theronge.com/mailcore/" target="_blank">MailCore</a> (New BSD license) and <a href="http://www.mulle-kybernetik.com/software/EDFrameworks/download.html#EDMessage" target="_blank">EdMessage</a> (BSD syle license).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.justria.com/2011/01/22/nsmaildelivery-gone-since-10-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert NSAttributedString to HTML markup</title>
		<link>http://www.justria.com/2011/01/18/how-to-convert-nsattributedstring-to-html-markup/</link>
		<comments>http://www.justria.com/2011/01/18/how-to-convert-nsattributedstring-to-html-markup/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 21:16:54 +0000</pubDate>
		<dc:creator>justperson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cocoa]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[ObjC]]></category>

		<guid isPermaLink="false">http://www.justria.com/?p=391</guid>
		<description><![CDATA[Twitter It!This snippet converts a NSAttributedString to HTML markup returned as NSString: + (NSString*) htmlForAttributedString:(NSAttributedString*) attrString {   NSArray * exclude = [NSArray arrayWithObjects:@"doctype", @"html", @"head", @"body", @"xml", nil ];   NSDictionary * htmlAtt = [NSDictionary      dictionaryWithObjectsAndKeys:NSHTMLTextDocumentType,      NSDocumentTypeDocumentAttribute,      exclude,      NSExcludedElementsDocumentAttribute,      nil    ];   NSError * error;   NSData [...]]]></description>
			<content:encoded><![CDATA[<span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22How%20to%20convert%20NSAttributedString%20to%20HTML%20markup%22%20http%3A%2F%2Ftinyurl.com%2F4em9564" title="Twitter It!" >Twitter It!</a></span><p>This snippet converts a NSAttributedString to HTML markup returned as NSString:</p>
<blockquote>
<pre>+ (NSString*) htmlForAttributedString:(NSAttributedString*) attrString {
  NSArray * exclude = [NSArray arrayWithObjects:@"doctype",
     @"html",
     @"head",
     @"body",
     @"xml",
     nil
     ];
  NSDictionary * htmlAtt = [NSDictionary
     dictionaryWithObjectsAndKeys:NSHTMLTextDocumentType,
     NSDocumentTypeDocumentAttribute,
     exclude,
     NSExcludedElementsDocumentAttribute,
     nil
   ];
  NSError * error;
  NSData * htmlData = [attrString dataFromRange:NSMakeRange(0, [attrString length])
        documentAttributes:htmlAtt error:&amp;error
  ];
  //NSAttributedString * htmlString = [[NSAttributedString alloc]
     initWithHTML:htmlData
     documentAttributes:&amp;htmlAtt
     ];
  NSString * htmlString = [[NSString alloc] initWithData:htmlData encoding:NSUTF8StringEncoding];
  return htmlString;
} // htmlForAttributedString
</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.justria.com/2011/01/18/how-to-convert-nsattributedstring-to-html-markup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>protect webapp against sqlinjection using a .htaccess file</title>
		<link>http://www.justria.com/2010/10/11/protect-against-sqlinjection-using-a-htaccess-file/</link>
		<comments>http://www.justria.com/2010/10/11/protect-against-sqlinjection-using-a-htaccess-file/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 21:59:00 +0000</pubDate>
		<dc:creator>justperson</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.justria.com/?p=384</guid>
		<description><![CDATA[Twitter It!While this is by no means a complete way to protect against each and any SQLInjection attack, putting these lines inside a .htaccess file at least protects against certain cases: # Deny certain ugly SQL verbs Options +FollowSymlinks RewriteEngine On RewriteCond %{QUERY_STRING} union [NC,OR] RewriteCond %{QUERY_STRING} select [NC,OR] RewriteCond %{QUERY_STRING} truncate [NC,OR] RewriteCond %{QUERY_STRING} [...]]]></description>
			<content:encoded><![CDATA[<span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22protect%20webapp%20against%20sqlinjection%20using%20a%20.htaccess%20file%22%20http%3A%2F%2Ftinyurl.com%2F2d377er" title="Twitter It!" >Twitter It!</a></span><p>While this is by no means a complete way to protect against each and any SQLInjection attack, putting these lines inside a .htaccess file at least protects against certain cases:</p>
<div id="_mcePaste"># Deny certain ugly SQL verbs</div>
<div>Options +FollowSymlinks</div>
<div id="_mcePaste">RewriteEngine On</div>
<div id="_mcePaste">RewriteCond %{QUERY_STRING} union [NC,OR]</div>
<div id="_mcePaste">RewriteCond %{QUERY_STRING} select [NC,OR]</div>
<div id="_mcePaste">RewriteCond %{QUERY_STRING} truncate [NC,OR]</div>
<div id="_mcePaste">RewriteCond %{QUERY_STRING} drop [NC,OR]</div>
<div id="_mcePaste">RewriteCond %{QUERY_STRING} update [NC]</div>
<div id="_mcePaste">RewriteRule .* %{REQUEST_URI}? [F,L]</div>
<div></div>
<div>Change and enhance at own will&#8230;</div>
]]></content:encoded>
			<wfw:commentRss>http://www.justria.com/2010/10/11/protect-against-sqlinjection-using-a-htaccess-file/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dropbox using Flex</title>
		<link>http://www.justria.com/2010/10/09/dropbox-using-flex/</link>
		<comments>http://www.justria.com/2010/10/09/dropbox-using-flex/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 14:02:33 +0000</pubDate>
		<dc:creator>justperson</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[flex]]></category>

		<guid isPermaLink="false">http://www.justria.com/?p=379</guid>
		<description><![CDATA[Twitter It!Could someone post pointer for a Dropbox client ActionScript 3 library for Flex? I found this http://code.google.com/p/dropbox-as3/ in GoogleCode, but it is kind of undocumented.]]></description>
			<content:encoded><![CDATA[<span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22Dropbox%20using%20Flex%22%20http%3A%2F%2Ftinyurl.com%2F3amhalu" title="Twitter It!" >Twitter It!</a></span><p>Could someone post pointer for a Dropbox client ActionScript 3 library for Flex?</p>
<p>I found this <a title="AS3 Lib for Dropbox [AIR]" href="http://code.google.com/p/dropbox-as3/" target="_self">http://code.google.com/p/dropbox-as3/</a> in GoogleCode, but it is kind of undocumented.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.justria.com/2010/10/09/dropbox-using-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Promoting PomplamooseMusic</title>
		<link>http://www.justria.com/2010/09/02/promoting-pomplamoosemusic/</link>
		<comments>http://www.justria.com/2010/09/02/promoting-pomplamoosemusic/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 23:02:46 +0000</pubDate>
		<dc:creator>justperson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://www.justria.com/?p=368</guid>
		<description><![CDATA[Twitter It!Watch and listen PomplamooseMusic or buy their album from iTMS:]]></description>
			<content:encoded><![CDATA[<span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22Promoting%20PomplamooseMusic%20%22%20http%3A%2F%2Ftinyurl.com%2F3agonek" title="Twitter It!" >Twitter It!</a></span><p>Watch and listen <a title="PomplamooseMusic at YouTube" href="http://www.youtube.com/user/PomplamooseMusic" target="_blank">PomplamooseMusic</a> or buy their album from <a title="PomplamooseMusic at iTMS" href="http://www.tinyurl.com/tributetofamouspeople" target="_blank">iTMS</a>:</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/9xMCNmUaGko" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed wmode="opaque" src="http://www.youtube.com/v/9xMCNmUaGko" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.justria.com/2010/09/02/promoting-pomplamoosemusic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

