<?
/*
Plugin Name: WP-Affiliate
Plugin URI: http://www.seoadventures.com/wp-affiliate
Description: Easy affiliate link masking and more. <br /><br /> Now Featuring:<br /> Commission Junction Search Capabilities!<br /> Click Tracking!<br /><br /><a href="http://downloads.wordpress.org/plugin/wp-affiliate.zip">Download It Now!</a>
Version: 0.6
Author: jstroh
Author URI: http://www.seoadventures.com/
*/


/*
Copyright (C) 2008 seoadventures.com (jstroh AT gmail DOT com)

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/ 
 
 
/** 
 * This file is full of init functionality
 * and globals.
 *
 */
 
require_once("wp-affiliate-start.php");




function wp_affiliate_post_menu()
{
global $wpdb,$wp_affiliate_prefix;

$category_form = "
<h2>Add Base Category</h2>
<div id=\"wp_affiliate_add_category_results\" style=\"color:red;\"></div>
<table>
<tr><td align=\"right\">
<b>Category Name:</b>
</td><td>
<input type=\"text\" name=\"wp_affiliate_add_new_category\">
</td></tr></table>
<input type=\"hidden\" name=\"wp_affiliate_category_parent\" value=\"0\">
<input type=\"button\" value=\"Add Base Category\" onclick=\"wp_affiliate_ajax_add_category(this.form.wp_affiliate_add_new_category,this.form.wp_affiliate_category_parent);\" >
";

echo $category_form;

echo "
<h2>Categorical Listing Of Links</h2>
<div id=\"wp_affiliate_category_list\">
";

$category_list = get_category_list();

if($category_list)
	echo get_category_list();
else
	echo "<ul id=\"wpanav\"><ul>";//"No categories! Add at least one in order to add links!";

echo "
</div>";

}





function wp_affiliate_create_menus()
{
add_meta_box("wp_affiliate_link_div","WP-Affiliate Links", "wp_affiliate_post_menu","post","normal");

}


if (is_admin())
    add_action('admin_menu', 'wp_affiliate_create_menus');


/** 
 * All functionality for adding a category.
 *
 */
require_once("wp-affiliate-category-functions.php");

/** 
 * All functionality for adding a link.
 *
 */
require_once("wp-affiliate-link-functions.php");



function wp_affiliate_rewrite_rules($rules)
{
  global $wp_rewrite,$wpdb,$wp_affiliate_prefix;

	$table_name = $wpdb->prefix . $wp_affiliate_prefix."_links";

	$results	=	$wpdb->get_results("SELECT * FROM ".$table_name,OBJECT);
	
	$new_rules=Array();
	
	if($results)
	{
		
		foreach($results as $result){
						$the_slug = substr(get_category_slug($result->category)."/".$result->slug,1);

		        $new_rules[$the_slug."$"]='index.php?wpaaction=wp_affiliate_redirect&wpaslug='.urlencode($result->slug);
		}
    
    $rules=$new_rules + $rules;
    
    
	}
	
  return $rules;
}

$wp_affiliate_query_vars=Array('wpaaction','wpaslug');
function wp_affiliate_add_query_vars($query_vars)
{
        global $wp_affiliate_query_vars;
        
        return array_merge($query_vars,$wp_affiliate_query_vars);
}

function wp_affiliate_parse_request($req)
{
	global $wp_affiliate_query_vars,$wpdb,$wp_affiliate_prefix, $_SERVER;
	
	$table_name = $wpdb->prefix . $wp_affiliate_prefix."_links";
	$table_name2 = $wpdb->prefix . $wp_affiliate_prefix."_link_hits";
        
  foreach($wp_affiliate_query_vars as $qv){
  	if(isset($req->query_vars[$qv]))
  	{
    	$_GET[$qv]=$req->query_vars[$qv];
    }
  }
  
	
	if($_GET['wpaaction']=='wp_affiliate_redirect'){
		
		$sql	=	"select * from ".$table_name." where slug='".$_GET['wpaslug']."'";
		$row	=	$wpdb->get_row($sql,OBJECT);
		
		if($row)
		{
			if(get_option( "useStatistics" ))
			{

				// give it a hit
				$referer = wp_get_referer();
				$agent = $_SERVER['HTTP_USER_AGENT'];
				$ip = $_SERVER['REMOTE_ADDR'];
	
				$sql = "INSERT INTO ".$table_name2." (link_id,referer,agent,ip,thestamp) VALUES(".$row->id.",'".$wpdb->escape($referer)."','".$wpdb->escape($agent)."','".$wpdb->escape($ip)."',NOW())";

				$wpdb->query($sql);
			}
			
			header("Location:".$row->link);
			exit(0);
		}
	}
}

function wp_affiliate_init()
{

		global $wp_rewrite;
 	 if (isset($wp_rewrite) && $wp_rewrite->using_permalinks()) {

    add_filter('rewrite_rules_array', 'wp_affiliate_rewrite_rules');
		add_filter('query_vars','wp_affiliate_add_query_vars');
		add_action('parse_request','wp_affiliate_parse_request');
		
		
		
	}
}
add_action('init','wp_affiliate_init');


/** 
 * All functionality for admin.
 *
 */
require_once("wp-affiliate-admin-functions.php");


/** 
 * All functionality for installation.
 *
 */
require_once("wp-affiliate-install-functions.php");
register_activation_hook(__FILE__,'wp_affiliate_install');
?>
<?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>Missy Higgins</title>
	<atom:link href="http://www.missyhiggins.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.missyhiggins.org</link>
	<description>You&#039;d better run, run fast ...</description>
	<lastBuildDate>Fri, 18 May 2012 08:22:41 +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>The Karinthy Connection with George Negus &#8211; ABC Online (blog)</title>
		<link>http://www.missyhiggins.org/the-karinthy-connection-with-george-negus-abc-online-blog/</link>
		<comments>http://www.missyhiggins.org/the-karinthy-connection-with-george-negus-abc-online-blog/#comments</comments>
		<pubDate>Fri, 18 May 2012 08:22:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.missyhiggins.org/?guid=5b348969d94ad6255b6bbc52f43df254</guid>
		<description><![CDATA[The Karinthy Connection with George NegusABC Online (blog)When you do what I do in the way that I do it you go into a zone and three women in the room at the same time that I admire, Annie Lennox, Missy Higgins and the mother of my children, it was all...]]></description>
			<content:encoded><![CDATA[<table border="0" cellpadding="2" cellspacing="7" style="vertical-align:top;"><tr><td width="80" align="center" valign="top"><font style="font-size:85%;font-family:arial,sans-serif"></font></td><td valign="top" class="j"><font style="font-size:85%;font-family:arial,sans-serif"><br /><div style="padding-top:0.8em;"><img alt="" height="1" width="1" /></div><div class="lh"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNHLN0wjv_uB4qFJINymnluA2zeRHg&amp;url=http://blogs.abc.net.au/queensland/2012/05/the-karinthy-connection-with-george-negus.html"><b>The Karinthy Connection with George Negus</b></a><br /><font size="-1"><b><font color="#6f6f6f">ABC Online (blog)</font></b></font><br /><font size="-1">When you do what I do in the way that I do it you go into a zone and three women in the room at the same time that I admire, Annie Lennox, <b>Missy Higgins</b> and the mother of my children, it was all a bit much!. My connection here is the personal lyrics of <b>...</b></font><br /><font size="-1" class="p"></font><br /><font class="p" size="-1"><a class="p" href="http://news.google.com/news/more?pz=1&amp;ned=us&amp;ncl=dzdWHch2ypjPxpM"><nobr><b></b></nobr></a></font></div></font></td></tr></table>]]></content:encoded>
			<wfw:commentRss>http://www.missyhiggins.org/the-karinthy-connection-with-george-negus-abc-online-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 Divas returning to the scene this month &#8211; QNews</title>
		<link>http://www.missyhiggins.org/top-5-divas-returning-to-the-scene-this-month-qnews/</link>
		<comments>http://www.missyhiggins.org/top-5-divas-returning-to-the-scene-this-month-qnews/#comments</comments>
		<pubDate>Thu, 17 May 2012 22:26:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.missyhiggins.org/?guid=fcc4e58c4ceb5814fac735cdb37cfb50</guid>
		<description><![CDATA[QNewsTop 5 Divas returning to the scene this monthQNewsMissy Higgins – Aussie singer songwriter extraordinaire has come out with a new single &#039;Unashamed Desire&#039; since announcing five years ago her decision to quit music. She also has adopted ...]]></description>
			<content:encoded><![CDATA[<table border="0" cellpadding="2" cellspacing="7" style="vertical-align:top;"><tr><td width="80" align="center" valign="top"><font style="font-size:85%;font-family:arial,sans-serif"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNGC7c-QSWTVwkpj91Klh35rQxMkUg&amp;url=http://qnews.com.au/article/top-5-divas-returning-scene-month"><img src="//nt2.ggpht.com/news/tbn/5qUzq4nY2IOE1M/6.jpg" alt="" border="1" width="80" height="80" /><br /><font size="-2">QNews</font></a></font></td><td valign="top" class="j"><font style="font-size:85%;font-family:arial,sans-serif"><br /><div style="padding-top:0.8em;"><img alt="" height="1" width="1" /></div><div class="lh"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNGC7c-QSWTVwkpj91Klh35rQxMkUg&amp;url=http://qnews.com.au/article/top-5-divas-returning-scene-month"><b>Top 5 Divas returning to the scene this month</b></a><br /><font size="-1"><b><font color="#6f6f6f">QNews</font></b></font><br /><font size="-1"><b>Missy Higgins</b> – Aussie singer songwriter extraordinaire has come out with a new single &#39;Unashamed Desire&#39; since announcing five years ago her decision to quit music. She also has adopted a new hairstyle with this reinvention and is also touring <b>...</b></font><br /><font size="-1" class="p"></font><br /><font class="p" size="-1"><a class="p" href="http://news.google.com/news/more?pz=1&amp;ned=us&amp;ncl=drhmI9eCys5V1SM"><nobr><b></b></nobr></a></font></div></font></td></tr></table>]]></content:encoded>
			<wfw:commentRss>http://www.missyhiggins.org/top-5-divas-returning-to-the-scene-this-month-qnews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Melbourne To Hold Live Music Talks At The Toff &#8211; theMusic</title>
		<link>http://www.missyhiggins.org/melbourne-to-hold-live-music-talks-at-the-toff-themusic/</link>
		<comments>http://www.missyhiggins.org/melbourne-to-hold-live-music-talks-at-the-toff-themusic/#comments</comments>
		<pubDate>Thu, 17 May 2012 02:26:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.missyhiggins.org/?guid=82ccb2a86b7e488a5ffccd95c7c09bba</guid>
		<description><![CDATA[Melbourne To Hold Live Music Talks At The TofftheMusicBLOG: The return of Missy Higgins deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatis...]]></description>
			<content:encoded><![CDATA[<table border="0" cellpadding="2" cellspacing="7" style="vertical-align:top;"><tr><td width="80" align="center" valign="top"><font style="font-size:85%;font-family:arial,sans-serif"></font></td><td valign="top" class="j"><font style="font-size:85%;font-family:arial,sans-serif"><br /><div style="padding-top:0.8em;"><img alt="" height="1" width="1" /></div><div class="lh"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNH6wuBPQPYbEmFc6QjZnVCzo6Rdfg&amp;url=http://themusic.com.au/news/all/2012/05/17/toff-to-hold-slam-talks/"><b>Melbourne To Hold Live Music Talks At The Toff</b></a><br /><font size="-1"><b><font color="#6f6f6f">theMusic</font></b></font><br /><font size="-1">BLOG: The return of <b>Missy Higgins</b> deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatised. Kris Moyes directed. EXCLUSIVE: Listen to The <b>...</b></font><br /><font size="-1" class="p"></font><br /><font class="p" size="-1"><a class="p" href="http://news.google.com/news/more?pz=1&amp;ned=us&amp;ncl=dWbyamc4OhQeIrM"><nobr><b>and more&nbsp;&raquo;</b></nobr></a></font></div></font></td></tr></table>]]></content:encoded>
			<wfw:commentRss>http://www.missyhiggins.org/melbourne-to-hold-live-music-talks-at-the-toff-themusic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nasum Tour Australia For First And Last Time &#8211; theMusic</title>
		<link>http://www.missyhiggins.org/nasum-tour-australia-for-first-and-last-time-themusic/</link>
		<comments>http://www.missyhiggins.org/nasum-tour-australia-for-first-and-last-time-themusic/#comments</comments>
		<pubDate>Thu, 17 May 2012 02:04:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.missyhiggins.org/?guid=7776843abf40eef941f430237f38f988</guid>
		<description><![CDATA[Nasum Tour Australia For First And Last TimetheMusicBLOG: The return of Missy Higgins deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatised...]]></description>
			<content:encoded><![CDATA[<table border="0" cellpadding="2" cellspacing="7" style="vertical-align:top;"><tr><td width="80" align="center" valign="top"><font style="font-size:85%;font-family:arial,sans-serif"></font></td><td valign="top" class="j"><font style="font-size:85%;font-family:arial,sans-serif"><br /><div style="padding-top:0.8em;"><img alt="" height="1" width="1" /></div><div class="lh"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNEU84i15iYRO2aQoU9Ig80Y1malAw&amp;url=http://themusic.com.au/news/all/2012/05/17/nasum-first-australian-tour-announced/"><b>Nasum Tour Australia For First And Last Time</b></a><br /><font size="-1"><b><font color="#6f6f6f">theMusic</font></b></font><br /><font size="-1">BLOG: The return of <b>Missy Higgins</b> deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatised. Kris Moyes directed. EXCLUSIVE: Listen to The <b>...</b></font><br /><font size="-1" class="p"></font><br /><font class="p" size="-1"><a class="p" href="http://news.google.com/news/more?pz=1&amp;ned=us&amp;ncl=dnCS3xJ3ceCHOnM"><nobr><b>and more&nbsp;&raquo;</b></nobr></a></font></div></font></td></tr></table>]]></content:encoded>
			<wfw:commentRss>http://www.missyhiggins.org/nasum-tour-australia-for-first-and-last-time-themusic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Patrick Wolf tour Patrick Wolf Announces Acoustic Tour &#8211; theMusic</title>
		<link>http://www.missyhiggins.org/patrick-wolf-tour-patrick-wolf-announces-acoustic-tour-themusic/</link>
		<comments>http://www.missyhiggins.org/patrick-wolf-tour-patrick-wolf-announces-acoustic-tour-themusic/#comments</comments>
		<pubDate>Thu, 17 May 2012 01:20:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.missyhiggins.org/?guid=6a32d7ad83be60ec4762db124694b54d</guid>
		<description><![CDATA[Patrick Wolf tour Patrick Wolf Announces Acoustic TourtheMusicBLOG: The return of Missy Higgins deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were t...]]></description>
			<content:encoded><![CDATA[<table border="0" cellpadding="2" cellspacing="7" style="vertical-align:top;"><tr><td width="80" align="center" valign="top"><font style="font-size:85%;font-family:arial,sans-serif"></font></td><td valign="top" class="j"><font style="font-size:85%;font-family:arial,sans-serif"><br /><div style="padding-top:0.8em;"><img alt="" height="1" width="1" /></div><div class="lh"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNESkRCDpyerED2FlB0O_tOvtQmebA&amp;url=http://themusic.com.au/news/all/2012/05/17/patrick-wolf-tour/"><b>Patrick Wolf tour Patrick Wolf Announces Acoustic Tour</b></a><br /><font size="-1"><b><font color="#6f6f6f">theMusic</font></b></font><br /><font size="-1">BLOG: The return of <b>Missy Higgins</b> deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatised. Kris Moyes directed. EXCLUSIVE: Listen to The <b>...</b></font><br /><font size="-1" class="p"></font><br /><font class="p" size="-1"><a class="p" href="http://news.google.com/news/more?pz=1&amp;ned=us&amp;ncl=dYSWB7npwOv2gxM"><nobr><b>and more&nbsp;&raquo;</b></nobr></a></font></div></font></td></tr></table>]]></content:encoded>
			<wfw:commentRss>http://www.missyhiggins.org/patrick-wolf-tour-patrick-wolf-announces-acoustic-tour-themusic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slash To Smash Australian Arenas &#8211; theMusic</title>
		<link>http://www.missyhiggins.org/slash-to-smash-australian-arenas-themusic/</link>
		<comments>http://www.missyhiggins.org/slash-to-smash-australian-arenas-themusic/#comments</comments>
		<pubDate>Thu, 17 May 2012 00:46:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.missyhiggins.org/?guid=53a825dafeaade4715d22759b5764736</guid>
		<description><![CDATA[Slash To Smash Australian ArenastheMusicBLOG: The return of Missy Higgins deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatised. Kris Moyes...]]></description>
			<content:encoded><![CDATA[<table border="0" cellpadding="2" cellspacing="7" style="vertical-align:top;"><tr><td width="80" align="center" valign="top"><font style="font-size:85%;font-family:arial,sans-serif"></font></td><td valign="top" class="j"><font style="font-size:85%;font-family:arial,sans-serif"><br /><div style="padding-top:0.8em;"><img alt="" height="1" width="1" /></div><div class="lh"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNH7vmve_q_mdrwQWxWO-Ys88y74aQ&amp;url=http://themusic.com.au/news/all/2012/05/17/slash-australian-tour-2012-announced/"><b>Slash To Smash Australian Arenas</b></a><br /><font size="-1"><b><font color="#6f6f6f">theMusic</font></b></font><br /><font size="-1">BLOG: The return of <b>Missy Higgins</b> deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatised. Kris Moyes directed. EXCLUSIVE: Listen to The <b>...</b></font><br /><font size="-1" class="p"></font><br /><font class="p" size="-1"><a class="p" href="http://news.google.com/news/more?pz=1&amp;ned=us&amp;ncl=dObpLvn9XI7suaM"><nobr><b>and more&nbsp;&raquo;</b></nobr></a></font></div></font></td></tr></table>]]></content:encoded>
			<wfw:commentRss>http://www.missyhiggins.org/slash-to-smash-australian-arenas-themusic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PREMIERE: The Audreysgo for the instagram-look on their new video forTrain &#8230; &#8211; theMusic</title>
		<link>http://www.missyhiggins.org/premiere-the-audreysgo-for-the-instagram-look-on-their-new-video-fortrain-themusic/</link>
		<comments>http://www.missyhiggins.org/premiere-the-audreysgo-for-the-instagram-look-on-their-new-video-fortrain-themusic/#comments</comments>
		<pubDate>Thu, 17 May 2012 00:29:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.missyhiggins.org/?guid=39ebe8e1e9c5a071bd465be06e0eaad1</guid>
		<description><![CDATA[PREMIERE: The Audreysgo for the instagram-look on their new video forTrain ...theMusicBLOG: The return of Missy Higgins deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people...]]></description>
			<content:encoded><![CDATA[<table border="0" cellpadding="2" cellspacing="7" style="vertical-align:top;"><tr><td width="80" align="center" valign="top"><font style="font-size:85%;font-family:arial,sans-serif"></font></td><td valign="top" class="j"><font style="font-size:85%;font-family:arial,sans-serif"><br /><div style="padding-top:0.8em;"><img alt="" height="1" width="1" /></div><div class="lh"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNG-s5Bt0FM7XN0yhLHdvZxDEsFpYQ&amp;url=http://themusic.com.au/watch/video/2012/05/16/the-audreys-trainwreck-blues/"><b>PREMIERE: The Audreysgo for the instagram-look on their new video forTrain <b>...</b></b></a><br /><font size="-1"><b><font color="#6f6f6f">theMusic</font></b></font><br /><font size="-1">BLOG: The return of <b>Missy Higgins</b> deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatised. Kris Moyes directed. EXCLUSIVE: Listen to The <b>...</b></font><br /><font size="-1" class="p"></font><br /><font class="p" size="-1"><a class="p" href="http://news.google.com/news/more?pz=1&amp;ned=us&amp;ncl=d64DBAxOxHCcllM"><nobr><b>and more&nbsp;&raquo;</b></nobr></a></font></div></font></td></tr></table>]]></content:encoded>
			<wfw:commentRss>http://www.missyhiggins.org/premiere-the-audreysgo-for-the-instagram-look-on-their-new-video-fortrain-themusic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Jezabels &#8211; City Girl &#8211; theMusic</title>
		<link>http://www.missyhiggins.org/the-jezabels-city-girl-themusic/</link>
		<comments>http://www.missyhiggins.org/the-jezabels-city-girl-themusic/#comments</comments>
		<pubDate>Thu, 17 May 2012 00:22:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.missyhiggins.org/?guid=494ab7879d26825e6ef0110c861f0f42</guid>
		<description><![CDATA[The Jezabels - City GirltheMusicBLOG: The return of Missy Higgins deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatised. Kris Moyes directe...]]></description>
			<content:encoded><![CDATA[<table border="0" cellpadding="2" cellspacing="7" style="vertical-align:top;"><tr><td width="80" align="center" valign="top"><font style="font-size:85%;font-family:arial,sans-serif"></font></td><td valign="top" class="j"><font style="font-size:85%;font-family:arial,sans-serif"><br /><div style="padding-top:0.8em;"><img alt="" height="1" width="1" /></div><div class="lh"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNHyf9AWGQrPTxAmoa6k1hsQCKsu1A&amp;url=http://themusic.com.au/watch/video/2012/05/17/jezabels-city-girl/"><b>The Jezabels - City Girl</b></a><br /><font size="-1"><b><font color="#6f6f6f">theMusic</font></b></font><br /><font size="-1">BLOG: The return of <b>Missy Higgins</b> deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatised. Kris Moyes directed. EXCLUSIVE: Listen to The <b>...</b></font><br /><font size="-1" class="p"></font><br /><font class="p" size="-1"><a class="p" href="http://news.google.com/news/more?pz=1&amp;ned=us&amp;ncl=d7hkQ-7LP7wqjpM"><nobr><b>and more&nbsp;&raquo;</b></nobr></a></font></div></font></td></tr></table>]]></content:encoded>
			<wfw:commentRss>http://www.missyhiggins.org/the-jezabels-city-girl-themusic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jordie Lane To Play Gram Parsons &#8211; theMusic</title>
		<link>http://www.missyhiggins.org/jordie-lane-to-play-gram-parsons-themusic/</link>
		<comments>http://www.missyhiggins.org/jordie-lane-to-play-gram-parsons-themusic/#comments</comments>
		<pubDate>Thu, 17 May 2012 00:07:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.missyhiggins.org/?guid=0c9ea5fabf65b64dad3bddd05f3bf123</guid>
		<description><![CDATA[Jordie Lane To Play Gram ParsonstheMusicBLOG: The return of Missy Higgins deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatised. Kris Moyes...]]></description>
			<content:encoded><![CDATA[<table border="0" cellpadding="2" cellspacing="7" style="vertical-align:top;"><tr><td width="80" align="center" valign="top"><font style="font-size:85%;font-family:arial,sans-serif"></font></td><td valign="top" class="j"><font style="font-size:85%;font-family:arial,sans-serif"><br /><div style="padding-top:0.8em;"><img alt="" height="1" width="1" /></div><div class="lh"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNFhGqylKtpqNCS_AvU5-ehP41MReQ&amp;url=http://themusic.com.au/local/vic-tas/news/2012/05/17/jordie-lane-gram-parsons/"><b>Jordie Lane To Play Gram Parsons</b></a><br /><font size="-1"><b><font color="#6f6f6f">theMusic</font></b></font><br /><font size="-1">BLOG: The return of <b>Missy Higgins</b> deconstructed in the always even-handed Good Or Shit. WATCH: Within minutes of the new Kirin J Callinan clip going out today, people around the world were traumatised. Kris Moyes directed. EXCLUSIVE: Listen to The <b>...</b></font><br /><font size="-1" class="p"></font><br /><font class="p" size="-1"><a class="p" href="http://news.google.com/news/more?pz=1&amp;ned=us&amp;ncl=dhClRkRJwSZ-O1M"><nobr><b>and more&nbsp;&raquo;</b></nobr></a></font></div></font></td></tr></table>]]></content:encoded>
			<wfw:commentRss>http://www.missyhiggins.org/jordie-lane-to-play-gram-parsons-themusic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Or Shit: &#8211; theMusic (blog)</title>
		<link>http://www.missyhiggins.org/good-or-shit-themusic-blog/</link>
		<comments>http://www.missyhiggins.org/good-or-shit-themusic-blog/#comments</comments>
		<pubDate>Wed, 16 May 2012 23:18:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.missyhiggins.org/?guid=aff299622ae2d1225337e7494b98ce79</guid>
		<description><![CDATA[Good Or Shit:theMusic (blog)Missy Higgins is back! Funny isn&#039;t it? I didn&#039;t even realise she&#039;d gone until the powers that be announced her return. What does that say about the gaping hole she left in my cold, mildly bitter heart? I used to ...]]></description>
			<content:encoded><![CDATA[<table border="0" cellpadding="2" cellspacing="7" style="vertical-align:top;"><tr><td width="80" align="center" valign="top"><font style="font-size:85%;font-family:arial,sans-serif"></font></td><td valign="top" class="j"><font style="font-size:85%;font-family:arial,sans-serif"><br /><div style="padding-top:0.8em;"><img alt="" height="1" width="1" /></div><div class="lh"><a href="http://news.google.com/news/url?sa=t&amp;fd=R&amp;usg=AFQjCNEChcdEKh83USY-CB9ow46VCSTXGw&amp;url=http://themusic.com.au/blog/music/2012/05/16/good-or-shit3/"><b>Good Or Shit:</b></a><br /><font size="-1"><b><font color="#6f6f6f">theMusic (blog)</font></b></font><br /><font size="-1"><b>Missy Higgins</b> is back! Funny isn&#39;t it? I didn&#39;t even realise she&#39;d gone until the powers that be announced her return. What does that say about the gaping hole she left in my cold, mildly bitter heart? I used to love Higgins. She&#39;s not much older than <b>...</b></font><br /><font size="-1" class="p"></font><br /><font class="p" size="-1"><a class="p" href="http://news.google.com/news/more?pz=1&amp;ned=us&amp;ncl=dENeDl5pSc9F6QM"><nobr><b></b></nobr></a></font></div></font></td></tr></table>]]></content:encoded>
			<wfw:commentRss>http://www.missyhiggins.org/good-or-shit-themusic-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

