totem-pl-parser r335 - in trunk: . plparse plparse/tests



Author: pwithnall
Date: Mon Mar 16 22:13:16 2009
New Revision: 335
URL: http://svn.gnome.org/viewvc/totem-pl-parser?rev=335&view=rev

Log:
2009-03-16  Philip Withnall  <philip tecnocode co uk>

	* Makefile.decl:
	* configure.in:
	* plparse/Makefile.am:
	* plparse/disc-test.c:
	* plparse/test-parser.c:
	* plparse/tests/541405.xml:
	* plparse/tests/560051.xml:
	* plparse/tests/Makefile.am:
	* plparse/tests/disc.c:
	* plparse/tests/parser.c: Convert totem-pl-parser to use the GTest
	API for its test suite. The test suite has also been improved a
	little, and is consequently more automated. Feature parity with the
	old code for manually testing discs is maintained. (Closes: #508346)



Added:
   trunk/Makefile.decl
   trunk/plparse/tests/
   trunk/plparse/tests/541405.xml
   trunk/plparse/tests/560051.xml
   trunk/plparse/tests/Makefile.am
   trunk/plparse/tests/disc.c   (contents, props changed)
      - copied, changed from r334, /trunk/plparse/disc-test.c
   trunk/plparse/tests/parser.c   (contents, props changed)
      - copied, changed from r334, /trunk/plparse/test-parser.c
Removed:
   trunk/plparse/disc-test.c
   trunk/plparse/test-parser.c
Modified:
   trunk/ChangeLog
   trunk/configure.in
   trunk/plparse/Makefile.am

Added: trunk/Makefile.decl
==============================================================================
--- (empty file)
+++ trunk/Makefile.decl	Mon Mar 16 22:13:16 2009
@@ -0,0 +1,270 @@
+GTESTER        = gtester		# in $PATH for non-GLIB packages
+GTESTER_REPORT = gtester-report		# in $PATH for non-GLIB packages
+
+# initialize variables for unconditional += appending
+EXTRA_DIST =
+TEST_PROGS =
+
+# test: run all tests in cwd and subdirs
+test:	${TEST_PROGS}
+	@test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
+	@ for subdir in $(SUBDIRS) . ; do \
+	    test "$$subdir" = "." -o "$$subdir" = "po" || \
+	    ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
+	  done
+
+# test-report: run tests in subdirs and generate report
+# perf-report: run tests in subdirs with -m perf and generate report
+# full-report: like test-report: with -m perf and -m slow
+test-report perf-report full-report:	${TEST_PROGS}
+	@test -z "${TEST_PROGS}" || { \
+	  case $@ in \
+	  test-report) test_options="-k";; \
+	  perf-report) test_options="-k -m=perf";; \
+	  full-report) test_options="-k -m=perf -m=slow";; \
+	  esac ; \
+	  if test -z "$$GTESTER_LOGDIR" ; then	\
+	    ${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
+	  elif test -n "${TEST_PROGS}" ; then \
+	    ${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
+	  fi ; \
+	}
+	@ ignore_logdir=true ; \
+	  if test -z "$$GTESTER_LOGDIR" ; then \
+	    GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
+	    ignore_logdir=false ; \
+	  fi ; \
+	  for subdir in $(SUBDIRS) . ; do \
+	    test "$$subdir" = "." -o "$$subdir" = "po" || \
+	    ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
+	  done ; \
+	  $$ignore_logdir || { \
+	    echo '<?xml version="1.0"?>' > $  xml ; \
+	    echo '<report-collection>'  >> $  xml ; \
+	    for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
+	      sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $  xml ; \
+	    done ; \
+	    echo >> $  xml ; \
+	    echo '</report-collection>' >> $  xml ; \
+	    rm -rf "$$GTESTER_LOGDIR"/ ; \
+	    ${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $  xml >$  html ; \
+	  }
+.PHONY: test test-report perf-report full-report
+# run make test as part of make check
+check-local: test
+GTESTER        = gtester		# in $PATH for non-GLIB packages
+GTESTER_REPORT = gtester-report		# in $PATH for non-GLIB packages
+
+# initialize variables for unconditional += appending
+EXTRA_DIST =
+TEST_PROGS =
+
+# test: run all tests in cwd and subdirs
+test:	${TEST_PROGS}
+	@test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
+	@ for subdir in $(SUBDIRS) . ; do \
+	    test "$$subdir" = "." -o "$$subdir" = "po" || \
+	    ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
+	  done
+
+# test-report: run tests in subdirs and generate report
+# perf-report: run tests in subdirs with -m perf and generate report
+# full-report: like test-report: with -m perf and -m slow
+test-report perf-report full-report:	${TEST_PROGS}
+	@test -z "${TEST_PROGS}" || { \
+	  case $@ in \
+	  test-report) test_options="-k";; \
+	  perf-report) test_options="-k -m=perf";; \
+	  full-report) test_options="-k -m=perf -m=slow";; \
+	  esac ; \
+	  if test -z "$$GTESTER_LOGDIR" ; then	\
+	    ${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
+	  elif test -n "${TEST_PROGS}" ; then \
+	    ${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
+	  fi ; \
+	}
+	@ ignore_logdir=true ; \
+	  if test -z "$$GTESTER_LOGDIR" ; then \
+	    GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
+	    ignore_logdir=false ; \
+	  fi ; \
+	  for subdir in $(SUBDIRS) . ; do \
+	    test "$$subdir" = "." -o "$$subdir" = "po" || \
+	    ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
+	  done ; \
+	  $$ignore_logdir || { \
+	    echo '<?xml version="1.0"?>' > $  xml ; \
+	    echo '<report-collection>'  >> $  xml ; \
+	    for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
+	      sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $  xml ; \
+	    done ; \
+	    echo >> $  xml ; \
+	    echo '</report-collection>' >> $  xml ; \
+	    rm -rf "$$GTESTER_LOGDIR"/ ; \
+	    ${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $  xml >$  html ; \
+	  }
+.PHONY: test test-report perf-report full-report
+# run make test as part of make check
+check-local: test
+GTESTER        = gtester		# in $PATH for non-GLIB packages
+GTESTER_REPORT = gtester-report		# in $PATH for non-GLIB packages
+
+# initialize variables for unconditional += appending
+EXTRA_DIST =
+TEST_PROGS =
+
+# test: run all tests in cwd and subdirs
+test:	${TEST_PROGS}
+	@test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
+	@ for subdir in $(SUBDIRS) . ; do \
+	    test "$$subdir" = "." -o "$$subdir" = "po" || \
+	    ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
+	  done
+
+# test-report: run tests in subdirs and generate report
+# perf-report: run tests in subdirs with -m perf and generate report
+# full-report: like test-report: with -m perf and -m slow
+test-report perf-report full-report:	${TEST_PROGS}
+	@test -z "${TEST_PROGS}" || { \
+	  case $@ in \
+	  test-report) test_options="-k";; \
+	  perf-report) test_options="-k -m=perf";; \
+	  full-report) test_options="-k -m=perf -m=slow";; \
+	  esac ; \
+	  if test -z "$$GTESTER_LOGDIR" ; then	\
+	    ${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
+	  elif test -n "${TEST_PROGS}" ; then \
+	    ${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
+	  fi ; \
+	}
+	@ ignore_logdir=true ; \
+	  if test -z "$$GTESTER_LOGDIR" ; then \
+	    GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
+	    ignore_logdir=false ; \
+	  fi ; \
+	  for subdir in $(SUBDIRS) . ; do \
+	    test "$$subdir" = "." -o "$$subdir" = "po" || \
+	    ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
+	  done ; \
+	  $$ignore_logdir || { \
+	    echo '<?xml version="1.0"?>' > $  xml ; \
+	    echo '<report-collection>'  >> $  xml ; \
+	    for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
+	      sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $  xml ; \
+	    done ; \
+	    echo >> $  xml ; \
+	    echo '</report-collection>' >> $  xml ; \
+	    rm -rf "$$GTESTER_LOGDIR"/ ; \
+	    ${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $  xml >$  html ; \
+	  }
+.PHONY: test test-report perf-report full-report
+# run make test as part of make check
+check-local: test
+GTESTER        = gtester		# in $PATH for non-GLIB packages
+GTESTER_REPORT = gtester-report		# in $PATH for non-GLIB packages
+
+# initialize variables for unconditional += appending
+EXTRA_DIST =
+TEST_PROGS =
+
+# test: run all tests in cwd and subdirs
+test:	${TEST_PROGS}
+	@test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
+	@ for subdir in $(SUBDIRS) . ; do \
+	    test "$$subdir" = "." -o "$$subdir" = "po" || \
+	    ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
+	  done
+
+# test-report: run tests in subdirs and generate report
+# perf-report: run tests in subdirs with -m perf and generate report
+# full-report: like test-report: with -m perf and -m slow
+test-report perf-report full-report:	${TEST_PROGS}
+	@test -z "${TEST_PROGS}" || { \
+	  case $@ in \
+	  test-report) test_options="-k";; \
+	  perf-report) test_options="-k -m=perf";; \
+	  full-report) test_options="-k -m=perf -m=slow";; \
+	  esac ; \
+	  if test -z "$$GTESTER_LOGDIR" ; then	\
+	    ${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
+	  elif test -n "${TEST_PROGS}" ; then \
+	    ${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
+	  fi ; \
+	}
+	@ ignore_logdir=true ; \
+	  if test -z "$$GTESTER_LOGDIR" ; then \
+	    GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
+	    ignore_logdir=false ; \
+	  fi ; \
+	  for subdir in $(SUBDIRS) . ; do \
+	    test "$$subdir" = "." -o "$$subdir" = "po" || \
+	    ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
+	  done ; \
+	  $$ignore_logdir || { \
+	    echo '<?xml version="1.0"?>' > $  xml ; \
+	    echo '<report-collection>'  >> $  xml ; \
+	    for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
+	      sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $  xml ; \
+	    done ; \
+	    echo >> $  xml ; \
+	    echo '</report-collection>' >> $  xml ; \
+	    rm -rf "$$GTESTER_LOGDIR"/ ; \
+	    ${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $  xml >$  html ; \
+	  }
+.PHONY: test test-report perf-report full-report
+# run make test as part of make check
+check-local: test
+GTESTER        = gtester		# in $PATH for non-GLIB packages
+GTESTER_REPORT = gtester-report		# in $PATH for non-GLIB packages
+
+# initialize variables for unconditional += appending
+EXTRA_DIST =
+TEST_PROGS =
+
+# test: run all tests in cwd and subdirs
+test:	${TEST_PROGS}
+	@test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
+	@ for subdir in $(SUBDIRS) . ; do \
+	    test "$$subdir" = "." -o "$$subdir" = "po" || \
+	    ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
+	  done
+
+# test-report: run tests in subdirs and generate report
+# perf-report: run tests in subdirs with -m perf and generate report
+# full-report: like test-report: with -m perf and -m slow
+test-report perf-report full-report:	${TEST_PROGS}
+	@test -z "${TEST_PROGS}" || { \
+	  case $@ in \
+	  test-report) test_options="-k";; \
+	  perf-report) test_options="-k -m=perf";; \
+	  full-report) test_options="-k -m=perf -m=slow";; \
+	  esac ; \
+	  if test -z "$$GTESTER_LOGDIR" ; then	\
+	    ${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
+	  elif test -n "${TEST_PROGS}" ; then \
+	    ${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
+	  fi ; \
+	}
+	@ ignore_logdir=true ; \
+	  if test -z "$$GTESTER_LOGDIR" ; then \
+	    GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
+	    ignore_logdir=false ; \
+	  fi ; \
+	  for subdir in $(SUBDIRS) . ; do \
+	    test "$$subdir" = "." -o "$$subdir" = "po" || \
+	    ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
+	  done ; \
+	  $$ignore_logdir || { \
+	    echo '<?xml version="1.0"?>' > $  xml ; \
+	    echo '<report-collection>'  >> $  xml ; \
+	    for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
+	      sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $  xml ; \
+	    done ; \
+	    echo >> $  xml ; \
+	    echo '</report-collection>' >> $  xml ; \
+	    rm -rf "$$GTESTER_LOGDIR"/ ; \
+	    ${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $  xml >$  html ; \
+	  }
+.PHONY: test test-report perf-report full-report
+# run make test as part of make check
+check-local: test

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Mon Mar 16 22:13:16 2009
@@ -131,6 +131,7 @@
 totem-pl-parser.spec
 lib/Makefile
 plparse/Makefile
+plparse/tests/Makefile
 plparse/totem-pl-parser-features.h
 po/Makefile.in
 docs/Makefile

Modified: trunk/plparse/Makefile.am
==============================================================================
--- trunk/plparse/Makefile.am	(original)
+++ trunk/plparse/Makefile.am	Mon Mar 16 22:13:16 2009
@@ -1,44 +1,5 @@
-noinst_PROGRAMS = test-parser disc-test
-
-test_parser_SOURCES = test-parser.c
-
-test_parser_CPPFLAGS = \
-	-I$(top_srcdir)			\
-	-I$(top_srcdir)/lib		\
-	-I$(top_builddir)/plparse	\
-	-DGNOMELOCALEDIR=\""$(datadir)/locale"\"\
-	$(DISABLE_DEPRECATED)		\
-	$(AM_CPPFLAGS)
-
-test_parser_CFLAGS = \
-	$(TOTEM_PLPARSER_CFLAGS)\
-	$(HAL_CFLAGS)		\
-	$(DBUS_CFLAGS)		\
-	$(WARN_CFLAGS)		\
-	$(AM_CFLAGS)
-
-test_parser_LDADD = \
-	$(TOTEM_PLPARSER_LIBS) \
-	libtotem-plparser.la
-
-disc_test_SOURCES = \
-	disc-test.c
-
-disc_test_CPPFLAGS = \
-	$(common_defines)	\
-	$(AM_CPPFLAGS)
-
-disc_test_CFLAGS = \
-	$(WARN_CFLAGS)		\
-	$(TOTEM_PLPARSER_CFLAGS)\
-	$(AM_CFLAGS)
-
-disc_test_LDFLAGS = \
-	$(AM_LDFLAGS)
-
-disc_test_LDADD = \
-	libtotem-plparser.la	\
-	$(TOTEM_PLPARSER_LIBS)
+SUBDIRS = . tests
+DIST_SUBDIRS = tests
 
 lib_LTLIBRARIES = libtotem-plparser.la libtotem-plparser-mini.la
 

Added: trunk/plparse/tests/541405.xml
==============================================================================
--- (empty file)
+++ trunk/plparse/tests/541405.xml	Mon Mar 16 22:13:16 2009
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="iso-8859-1" ?>
+<!--Si vous lisez ceci, vous avez cliquéur le lien qui mè
+		au fil rss et àa baladodiffusion de CHYZ FM, 94,3
+		Ce fichier n'est pas fait pour êe lu via un navigateur.
+		Vous devez plutôopier ce lien et le coller dans iTunes sous le menu "Avancé'abonner au podcast":
+		http://www.chyz.qc.ca/podcast.php?emission=000302-->
+<rss version="2.0">
+  <channel>
+  <title>CHYZ 94,3 :: L'Avant-Garde - Les Cuistots de l'Avant-Garde</title>
+  <link>http://www.chyz.qc.ca</link>
+  <description>Le but premier de CHYZ est de prénter une programmation diffénte, comme de la musique, surtout de la musique canadienne, que l'on n'entend pas habituellement sur les ondes des stations commerciales (y compris de la musique traditionnelle et pour auditoire spéalisét des genres de musique populaire rarement diffusé, des éssions de fond du type créion orale et des éssions qui s'adressent àes groupes particuliers de la collectivité</description>
+  <language>fr-ca</language>
+  <lastBuildDate>Wed, 3 Dec 2008</lastBuildDate>
+  <copyright>Copyright 2007 CHYZ 94,3 - L'AVANT-GARDE</copyright>
+  <docs>http://chyz.qc.ca/fr/aidepodcast.php</docs>
+  <image>
+      <title>CHYZ 94,3</title>
+      <url>http://www.chyz.qc.ca/images/chyz_logo_podcast.jpg</url>
+      <link>http://www.chyz.qc.ca</link>
+  </image>
+  <item>
+      <title><![CDATA[Les Cuistots de l'Avant-Garde - 03 démbre]]></title>
+      <link>http://132.203.29.17/128/20081203.12.00-13.02.mp3</link>
+      <author><![CDATA[CHYZ 94,3]]></author>
+      <enclosure url="http://132.203.29.17/128/20081203.12.00-13.02.mp3"; length="0" type="audio/mpeg" />
+      <pubDate>03 démbre</pubDate>
+      <description><![CDATA[Les palmarède la station]]></description>
+      <subtitle><![CDATA[Palmarè]></subtitle>
+      <guid>http://132.203.29.17/128/20081203.12.00-13.02.mp3</guid>
+      <duration>62:00</duration>
+  </item>
+  <item>
+      <title><![CDATA[Les Cuistots de l'Avant-Garde - 26 novembre]]></title>
+      <link>http://132.203.29.17/128/20081126.12.00-13.02.mp3</link>
+      <author><![CDATA[CHYZ 94,3]]></author>
+      <enclosure url="http://132.203.29.17/128/20081126.12.00-13.02.mp3"; length="0" type="audio/mpeg" />
+      <pubDate>26 novembre</pubDate>
+      <description><![CDATA[Les palmarède la station]]></description>
+      <subtitle><![CDATA[Palmarè]></subtitle>
+      <guid>http://132.203.29.17/128/20081126.12.00-13.02.mp3</guid>
+      <duration>62:00</duration>
+  </item>
+  <item>
+      <title><![CDATA[Les Cuistots de l'Avant-Garde - 19 novembre]]></title>
+      <link>http://132.203.29.17/128/20081119.12.00-13.02.mp3</link>
+      <author><![CDATA[CHYZ 94,3]]></author>
+      <enclosure url="http://132.203.29.17/128/20081119.12.00-13.02.mp3"; length="0" type="audio/mpeg" />
+      <pubDate>19 novembre</pubDate>
+      <description><![CDATA[Les palmarède la station]]></description>
+      <subtitle><![CDATA[Palmarè]></subtitle>
+      <guid>http://132.203.29.17/128/20081119.12.00-13.02.mp3</guid>
+      <duration>62:00</duration>
+  </item>
+ </channel>
+</rss>

Added: trunk/plparse/tests/560051.xml
==============================================================================
--- (empty file)
+++ trunk/plparse/tests/560051.xml	Mon Mar 16 22:13:16 2009
@@ -0,0 +1,2944 @@
+<!-- If you're seeing this XML code, you've clicked on the link for Speaking of Faith's podcast. This file is not meant to be read by a Web browser directly. Instead, you should copy the URL [http://speakingoffaith.org/podcast/podcast.xml] and paste it in your podcast program. If you need further explanation and/or step-by-step instructions, visit the Speaking of Faith Web site for more information at http://speakingoffaith.org/podcast/podcasthelp.shtml. -->
+
+<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"; version="2.0">
+ <channel>
+  <title>APM: Speaking of Faith with Krista Tippett</title>
+  <link>http://speakingoffaith.org</link>
+  <description>Public radio&apos;s conversation about religion, meaning, ethics, and ideas</description>
+  <copyright>&#xA9; 2006 American Public Media. All rights reserved.</copyright>
+  <language>en-us</language>
+  <lastBuildDate>Mon, 8 Dec 2008 13:20:00 CST</lastBuildDate>
+  <pubDate>Mon, 8 Dec 2008 13:20:00 CST</pubDate>
+  <webMaster>mail speakingoffaith org (Trent Gilliss)</webMaster>
+  
+  <itunes:block>No</itunes:block>
+  <itunes:subtitle>Speaking of Faith with Krista Tippett is public radio&apos;s conversation about religion, meaning, ethics, and ideas.</itunes:subtitle>
+  <itunes:author>Krista Tippett, American Public Media</itunes:author>
+  <itunes:summary>American Public Media&apos;s Speaking of Faith with Krista Tippett is public radio&apos;s weekly conversation about religion, meaning, ethics, and ideas. Speaking of Faith does not always have religion itself as a subject. Week after week, it grapples with themes of civic life -- asking how perspectives of faith might distinctively inform and illuminate our public reflection. The Speaking of Faith podcast contains each week&apos;s program in its entirety and is updated every Thursday.</itunes:summary>
+  <itunes:owner>
+   <itunes:name>American Public Media</itunes:name>
+   <itunes:email>podcasts americanpublicmedia org</itunes:email>
+  </itunes:owner>
+  <itunes:image href="http://speakingoffaith.org/podcast/images/itunes_sof.jpg"/>
+		<itunes:category text="Society &amp; Culture"></itunes:category>
+		<itunes:category text="News &amp; Politics"></itunes:category>
+		<itunes:category text="Religion &amp; Spirituality"></itunes:category>
+  <itunes:explicit>No</itunes:explicit>
+
+  <item>
+   <title>SOF FIRST PERSON (audio) | Repossessing Virtue: Prabhu Guptara on Applying Personal Moral Sense to One&apos;s Work Life</title>
+   <description>As promised, we continue our SOF First Person project by turning to Swiss banking expert, Prabhu Guptara. Several years ago, Krista spoke with Guptara when the fallout of the Enron scandal was wreaking havoc on the U.S. economy and shaking investor confidence in corporate practices and business fundamentals. His message was simple but challenging, and also quite liberating for much of our audience -- bring your personal values into the workplace. For Guptara, doing this is one of the best ways of making ethical decisions that will lead to moral integrity -- and less corruption and scandal.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/features/repossessing_virtue/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081202_repossessing_virtue_fp-guptara.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20081202_repossessing_virtue_fp-guptara.mp3</guid>
+   <pubDate>Mon, 8 Dec 2008 13:20:00 CST</pubDate>
+   <itunes:author>American Public Media, Martin Marty, Kate Moos</itunes:author>
+   <itunes:subtitle>Prabhu Guptara challenges accepted practices in the industry and in business for our Reposessing Virtue series.</itunes:subtitle>
+   <itunes:summary>As promised, we continue our SOF First Person project by turning to Swiss banking expert, Prabhu Guptara. Several years ago, Krista spoke with Guptara when the fallout of the Enron scandal was wreaking havoc on the U.S. economy and shaking investor confidence in corporate practices and business fundamentals. His message was simple but challenging, and also quite liberating for much of our audience -- bring your personal values into the workplace. For Guptara, doing this is one of the best ways of making ethical decisions that will lead to moral integrity -- and less corruption and scandal.</itunes:summary>
+   <itunes:duration>14:33</itunes:duration>
+   <itunes:keywords>first person, prabhu guptara, economic crisis, repossessing virtue, christianity, jesus, Swiss banking, religion, ethics, speaking of faith, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The Ethics of Aid: One Kenyan&apos;s Perspective (December 4, 2008)</title>
+   <description>We explore the complex ethics of global aid with a young writer from Kenya, Binyavanga Wainaina. He is among a rising generation of African voices who bring a cautionary perspective to the morality and efficacy behind many Western initiatives to abolish poverty and speed development in Africa.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/2008/ethics_of_aid-kenya/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081204_ethics_of_aid-kenya.mp3"; length="51904409" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20081204_ethics_of_aid-kenya.mp3</guid>
+   <pubDate>Thu, 4 Dec 2008 11:55:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Binyavanga Wainaina on the morality and efficacy of global aid initiatives.</itunes:subtitle>
+   <itunes:summary>We explore the complex ethics of global aid with a young writer from Kenya, Binyavanga Wainaina. He is among a rising generation of African voices who bring a cautionary perspective to the morality and efficacy behind many Western initiatives to abolish poverty and speed development in Africa.</itunes:summary>
+   <itunes:duration>52:34</itunes:duration>
+   <itunes:keywords>binyavanga wainaina, kenya, global aid, charity, ngo, africa, politics, religion, ethics, morality, krista tippett</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF FIRST PERSON (audio) | Reposessing Virtue: Martin Marty on Trust in Uncertain Times</title>
+   <description>The SOF First Person project kicks off with our search for fresh ways to talk about the current economic crisis -- beginning with reflections from an acclaimed historian and theologian. He shares a good deal of his &quot;lived theology&quot; -- the personal, daily acts of faith that preserve sanity and restore trust even at the most uncertain times.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/features/repossessing_virtue/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081126_repossessing_virtue_fp-marty.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20081126_repossessing_virtue_fp-marty.mp3</guid>
+   <pubDate>Mon, 1 Dec 2008 15:00:00 CST</pubDate>
+   <itunes:author>American Public Media, Martin Marty, Kate Moos</itunes:author>
+   <itunes:subtitle>Martin Marty reflects on the current economic crisis for our Reposessing Virtue series.</itunes:subtitle>
+   <itunes:summary>The SOF First Person project kicks off with our search for fresh ways to talk about the current economic crisis -- beginning with reflections from an acclaimed historian and theologian. He shares a good deal of his &quot;lived theology&quot; -- the personal, daily acts of faith that preserve sanity and restore trust even at the most uncertain times.</itunes:summary>
+   <itunes:duration>14:46</itunes:duration>
+   <itunes:keywords>first person, martin marty, economic crisis, repossessing virtue, christianity, religion, ethics, speaking of faith, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Listening Generously: The Medicine of Rachel Naomi Remen (November 27, 2008)</title>
+   <description>Rachel Naomi Remen&apos;s lifelong struggle with chronic illness has shaped her philosophy and practice of medicine. She speaks with us about the art of listening to patients and other physicians, the difference between curing and healing, and how our losses help us to live.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/2008/listening_generously/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081127_listening_generously.mp3"; length="51904409" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20081127_listening_generously.mp3</guid>
+   <pubDate>Wed, 26 Nov 2008 04:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Rachel Naomi Remen on the art of listening to patients.</itunes:subtitle>
+   <itunes:summary>Rachel Naomi Remen&apos;s lifelong struggle with chronic illness has shaped her philosophy and practice of medicine. She speaks with us about the art of listening to patients and other physicians, the difference between curing and healing, and how our losses help us to live.</itunes:summary>
+   <itunes:duration>53:34</itunes:duration>
+   <itunes:keywords>speaking of faith, healing, faith, medicine, integrative medicine, kabbalah, jew, jewish, judaism, mystic, storytelling, rachel naomi remen, krista tippett, radio, faith, religion, spirituality, morality, american public media, apm</itunes:keywords>
+  </item>
+
+  <item>
+   <title>The Sunni-Shia Divide and the Future of Islam (November 20, 2008)</title>
+   <description>We seek fresh insight into the history and the human and religious dynamics of Islam&apos;s Sunni-Shia divide. Vali Nasr says that it is not so different from dynamics in periods of Western Christian history. But he says that by bringing the majority Shia to power in Iraq, the U.S. has changed the religions dynamics of the Middle East.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/2008/future_of_islam/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081120_future_of_islam.mp3"; length="51644312" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20081120_future_of_islam.mp3</guid>
+     <pubDate>Thu, 20 Nov 2008 10:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Vali Nasr gives insight into Islam&apos;s Sunni-Shia divide, and how it will effect the future of the Middle East.</itunes:subtitle>
+     <itunes:summary>We seek fresh insight into the history and the human and religious dynamics of Islam&apos;s Sunni-Shia divide. Vali Nasr says that it is not so different from dynamics in periods of Western Christian history. But he says that by bringing the majority Shia to power in Iraq, the U.S. has changed the religions dynamics of the Middle East.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>vali nasr, islam, muslim, sunni, shia, middle east, christian reformation, iraq, iran, ashura, religion, ethics, morality, ideas</itunes:keywords>
+   </item>
+
+  <item>
+     <title>Studs Terkel on Life, Faith, and Death (November 13, 2008)</title>
+     <description>We remember Studs Terkel, who recently died at the age of 96. The legendary interviewer chronicled decades of ordinary life and tumultuous change in U.S. culture. We visited him in his Chicago home in 2004 and drew out his wisdom and warmth on large existential themes of life and death. A lifelong agnostic, Studs Terkel shared his thoughts on religion as he&apos;d observed it in his conversation partners, in culture, and in his own encounters with loss and mortality.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/2008/studs_terkel/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081113_studs_terkel.mp3"; length="51330524" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20081113_studs_terkel.mp3</guid>
+     <pubDate>Thu, 13 Nov 2008 09:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Studs Terkel discusses Life, Faith, and Death in a 2004 interview.</itunes:subtitle>
+     <itunes:summary>We remember Studs Terkel, who recently died at the age of 96. The legendary interviewer chronicled decades of ordinary life and tumultuous change in U.S. culture. We visited him in his Chicago home in 2004 and drew out his wisdom and warmth on large existential themes of life and death. A lifelong agnostic, Studs Terkel shared his thoughts on religion as he&apos;d observed it in his conversation partners, in culture, and in his own encounters with loss and mortality.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>speaking of faith, studs terkel, chicago, working, oral history, radio, gore vidal, delbert tibbs, kurt vonnegut, uta hagen, interviews, studs place, krista tippett, radio, faith, art, religion, death, life, spirituality, morality</itunes:keywords>
+   </item>
+
+  <item>
+     <title>Getting Revenge and Forgiveness (November 6, 2008)</title>
+     <description>Professor of psychology Michael McCullough describes science that helps us comprehend how revenge came to have a purpose in human life. At the same time, he stresses, science is also revealing that human beings are more instinctively equipped for forgiveness than we&apos;ve perhaps given ourselves credit for. Knowing this suggests ways to calm the revenge instinct in ourselves and others and embolden the forgiveness intuition.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/2008/revenge_forgiveness/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081106_revenge_forgiveness.mp3"; length="51330524" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20081106_revenge_forgiveness.mp3</guid>
+     <pubDate>Thu, 6 Nov 2008 08:05:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Michael McCullough on the biological instincts of revenge and forgiveness.</itunes:subtitle>
+     <itunes:summary>Professor of psychology Michael McCullough describes science that helps us comprehend how revenge came to have a purpose in human life. At the same time, he stresses, science is also revealing that human beings are more instinctively equipped for forgiveness than we&apos;ve perhaps given ourselves credit for. Knowing this suggests ways to calm the revenge instinct in ourselves and others and embolden the forgiveness intuition.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>michael mccullough, revenge, forgiveness, ethics, morality, krista tippett, kindness, apology, biology, evolution, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+   </item>
+			
+		<item>
+   <title>SOF EXTRA (audio) | Unedited Interview with Steve Waldman</title>
+   <description>In this edition of SOF Unheard Cuts, Krista interviewed Steve Waldman, journalist and founder of Beliefnet, for &quot;Liberating the Founders.&quot; Listen to their complete, unedited conversation. Here&apos;s your chance to observe the editorial process and let us know what you think.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/2008/liberating_the_founders/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080313_liberarting_the_founders_uc-waldman.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080313_liberarting_the_founders_uc-waldman.mp3</guid>
+   <pubDate>Thu, 6 Nov 2008 08:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista&apos;s unedited interview with Steve Waldman.</itunes:subtitle>
+   <itunes:summary>In this edition of SOF Unheard Cuts, Krista interviewed Steve Waldman, journalist and founder of Beliefnet, for &quot;Liberating the Founders.&quot; Listen to their complete, unedited conversation. Here&apos;s your chance to observe the editorial process and let us know what you think.</itunes:summary>
+   <itunes:duration>1:26:27</itunes:duration>
+   <itunes:keywords>unheard cuts, founding fathers, democracy, religion, church and state, christianity, evangelicals, thomas jefferson, james madison, steven waldman, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>SOF EXTRA (audio) | Unedited Interview with Vashti McKenzie</title>
+   <description>In this edition of SOF Unheard Cuts, Krista interviewed Vashti McKenzie, first female bishop of the African Methodist Episcopal Church, for &quot;African American. Woman. Leader.&quot; Listen to their complete, unedited conversation. Here&apos;s your chance to observe the editorial process and let us know what you think.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/2008/vashti_mckenzie/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081026_vashti_mckenzie_uc-mckenzie.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20081026_vashti_mckenzie_uc-mckenzie.mp3</guid>
+   <pubDate>Mon, 3 Nov 2008 04:20:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista&apos;s unedited interview with Bishop Vashti McKenzie.</itunes:subtitle>
+   <itunes:summary>In this edition of SOF Unheard Cuts, Krista interviewed Vashti McKenzie, first female bishop of the African Methodist Episcopal Church, for &quot;African American. Woman. Leader.&quot; Listen to their complete, unedited conversation. Here&apos;s your chance to observe the editorial process and let us know what you think.</itunes:summary>
+   <itunes:duration>1:40:04</itunes:duration>
+   <itunes:keywords>unheard cuts, vashti mckenzie, christianity, theology, african methodist episcopal, radio, racism, sexism, religion, ethics, jeremiah wright, trinity united church, james cone, politics, speaking of faith, krista tippett, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+     <title>Liberating the Founders (October 30, 2008)</title>
+     <description>With the presidential election approaching, we return to an evocative, relevant conversation from earlier this year with journalist Steven Waldman. He&apos;s done an unusual study investigating how the culture wars have skewed contemporary Americans&apos; sense of how we came to have religious liberty in the first place. He understands why 21st-century struggles over religion in the public square spur passionate disagreement and entanglement with politics at its most impure.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/2008/liberating_the_founders/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081030_liberating_the_founders.mp3"; length="51191757" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20081030_liberating_the_founders.mp3</guid>
+     <pubDate>Thu, 30 Oct 2008 09:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Journalist Steve Waldman on why struggles over religion in the public square spur passionate disagreement and entanglement with politics at its most impure.</itunes:subtitle>
+     <itunes:summary>With the presidential election approaching, we return to an evocative, relevant conversation from earlier this year with journalist Steven Waldman. He&apos;s done an unusual study investigating how the culture wars have skewed contemporary Americans&apos; sense of how we came to have religious liberty in the first place. He understands why 21st-century struggles over religion in the public square spur passionate disagreement and entanglement with politics at its most impure.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>founding fathers, democracy, religion, church and state, christianity, evangelicals, thomas jefferson, james madison, steven waldman, krista tippett, faith, religion, spirituality, morality</itunes:keywords>
+   </item>
+			
+  <item>
+   <title>SOF EXTRA (audio) | Unedited Interview with Paul Collins and Jennifer Elder</title>
+   <description>In this edition of SOF Unheard Cuts, Krista interviewed Paul Collins and Jennifer Elder for &quot;Being Autistic, Being Human.&quot; They talk about how life with their child who is autistic has deepened their understanding of human nature -- of disability, and of creativity, intelligence, and accomplishment. Here&apos;s your chance to observe the editorial process and let us know what you think.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/2008/beingautistic/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070927_beingautistic_uc-parents.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070927_beingautistic_uc-parents.mp3</guid>
+   <pubDate>Mon, 27 Oct 2008 04:20:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista&apos;s unedited interview with Paul Collins and Jennifer Elder.</itunes:subtitle>
+   <itunes:summary>In this edition of SOF Unheard Cuts, Krista interviewed Paul Collins and Jennifer Elder for &quot;Being Autistic, Being Human.&quot; They talk about how life with their child who is autistic has deepened their understanding of human nature -- of disability, and of creativity, intelligence, and accomplishment. Here&apos;s your chance to observe the editorial process and let us know what you think.</itunes:summary>
+   <itunes:duration>1:50:24</itunes:duration>
+   <itunes:keywords>unheard cuts, autism, autistic, aspberger, microsoft, paul collins, jennifer elder, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+     <title>African American. Woman. Leader. Meeting Bishop Vashti McKenzie. (October 23, 2008)</title>
+     <description>The 2008 U.S. presidential election has illustrated how gender, race, and religion can become lightning rods, and seen as potential stumbling blocks to leadership. Vashti McKenzie is a pioneering figure on all these fronts; when she became the first woman bishop of the oldest historic black church in America, she declared: &quot;The stained glass ceiling has been pierced and broken.&quot; We offer her story, her wisdom, and her good humor as an edifying lens on the American past, present, and future.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/2008/vashti_mckenzie/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081023_vashti_mckenzie.mp3"; length="51335580" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20081023_vashti_mckenzie.mp3</guid>
+     <pubDate>Thu, 23 Oct 2008 09:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Bishop Vashti McKenzie&apos;s story, wisdom, and good humor provide an edifying lens on the American past, present, and future.</itunes:subtitle>
+     <itunes:summary>The 2008 U.S. presidential election has illustrated how gender, race, and religion can become lightning rods, and seen as potential stumbling blocks to leadership. Vashti McKenzie is a pioneering figure on all these fronts; when she became the first woman bishop of the oldest historic black church in America, she declared: &quot;The stained glass ceiling has been pierced and broken.&quot; We offer her story, her wisdom, and her good humor as an edifying lens on the American past, present, and future.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>vashti mckenzie, bishop vashti murphy mckenzie, christianity, theology, american methodist episcopal, radio, payne memorial, racism, sexism, religion, ethics, jeremiah wright, trinity united church, james cone, politics</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>SOF EXTRA (audio) | Unedited Interview with Rod Dreher</title>
+   <description>In this edition of SOF Unheard Cuts, Krista interviewed Rod Dreher for the second part of our series &quot;The Faith Life of the Party.&quot; A conservative columnist, Rod Dreher is an outspoken critic of mainstream Republican economic and environmental ideas and the conduct of the Iraq war, but he voted for George W. Bush twice. We explore the little-known story of religiously influenced impulses within the conservative movement that diverge from the Religious Right. Here&apos;s your chance to observe the editorial process and let us know what you think.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/2008/dreher/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081009_dreher_uc-dreher.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20081009_dreher_uc-dreher.mp3</guid>
+   <pubDate>Mon, 20 Oct 2008 04:20:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista&apos;s unedited interview with Rod Dreher on politics and faith of the conservative right</itunes:subtitle>
+   <itunes:summary>In this edition of SOF Unheard Cuts, Krista interviewed Rod Dreher for the second part of our series &quot;The Faith Life of the Party.&quot; A conservative columnist, Rod Dreher is an outspoken critic of mainstream Republican economic and environmental ideas and the conduct of the Iraq war, but he voted for George W. Bush twice. Here&apos;s your chance to observe the editorial process and let us know what you think.</itunes:summary>
+   <itunes:duration>50:11</itunes:duration>
+   <itunes:keywords>unheard cuts, rod dreher, republican, republican party, conservative, politics, john mccain, sarah palin, speaking of faith, krista tippett, religion, ethics, morality</itunes:keywords>
+  </item>
+		
+		<item>
+     <title>Being Autistic, Being Human (October 16, 2008)</title>
+     <description>One of every 150 children is now diagnosed to be somewhere on the mysterious spectrum of autism. We step back from the controversies about the causes and cures of autism and explore one family&apos;s experience with an autistic child. Jennifer Elder, an artist, and Paul Collins, a literary historian, have unearthed a vivid history of people grappling with autism, before it had a name. And they share what all of this is teaching them about what it means to be human.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/2008/beingautistic/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081016_beingautistic.mp3"; length="51330524" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20081016_beingautistic.mp3</guid>
+     <pubDate>Thu, 16 Oct 2008 09:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Discovering the humanity, challenges, and gifts of autism with the parents of one child.</itunes:subtitle>
+     <itunes:summary>One of every 150 children is now diagnosed to be somewhere on the mysterious spectrum of autism. We step back from the controversies about the causes and cures of autism and explore one family&apos;s experience with an autistic child. Jennifer Elder, an artist, and Paul Collins, a literary historian, have unearthed a vivid history of people grappling with autism, before it had a name. And they share what all of this is teaching them about what it means to be human.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>autism, autistic, aspberger, microsoft, paul collins, jennifer elder, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+   </item>
+  
+  <item>
+   <title>SOF EXTRA (audio) | Unedited Interview with Amy Sullivan</title>
+   <description>In this edition of SOF Unheard Cuts, Krista interviewed Amy Sullivan for the first part of our series &quot;The Faith Life of the Party.&quot; She&apos;s a national corresponent for Time magazine, an Evangelical Christian, and an observer of the Democratic Party. Here&apos;s your chance to observe the editorial process and let us know what you think.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/2008/sullivan/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081002_sullivan_uc-sullivan.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20081002_sullivan_uc-sullivan.mp3</guid>
+   <pubDate>Mon, 13 Oct 2008 04:20:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista&apos;s unedited interview with Amy Sullivan on politics and faith of the political left</itunes:subtitle>
+   <itunes:summary>In this edition of SOF Unheard Cuts, Krista interviewed Amy Sullivan for the first part of our series &quot;The Faith Life of the Party.&quot; She&apos;s a national corresponent for Time magazine, an Evangelical Christian, and an observer of the Democratic Party. Here&apos;s your chance to observe the editorial process and let us know what you think.</itunes:summary>
+   <itunes:duration>1:01:21</itunes:duration>
+   <itunes:keywords>unheard cuts, democrat, democratic party, liberal, abortion, amy sullivan, barack obama, democratic national convention, politics, faith, evangelical, morality, presidental election, john mccain, sarah palin, bill clinton, leah daughtry, ethics</itunes:keywords>
+  </item>
+		
+		<item>
+		   <title>The Faith Life of the Party - Part II, The Right (October 9, 2008)</title>
+		   <description>The second part of our examination of religious energies below the surface of the 2008 presidential campaign. Conservative columnist Rod Dreher is an outspoken critic of mainstream Republican economic and environmental ideas and the conduct of the Iraq war, but he voted for George W. Bush twice. We explore the little-known story of religiously-influenced impulses within the conservative movement that diverge from the Religious Right.</description>
+		   <category>Public Radio</category>
+		   <link>http://speakingoffaith.org/programs/2008/dreher/</link>
+		   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081009_dreher.mp3"; length="51500983" type="audio/mpeg"></enclosure>
+		   <guid>http://download.publicradio.org/podcast/speakingoffaith/20081009_dreher.mp3</guid>
+		   <pubDate>Thu, 09 Oct 2008 09:00:00 CST</pubDate>
+		   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+		   <itunes:subtitle>Rod Dreher on the religiously-influenced impulses within conservative politics</itunes:subtitle>
+		   <itunes:summary>The second part of our examination of religious energies below the surface of the 2008 presidential campaign. Conservative columnist Rod Dreher is an outspoken critic of mainstream Republican economic and environmental ideas and the conduct of the Iraq war, but he voted for George W. Bush twice. We explore the little-known story of religiously-influenced impulses within the conservative movement that diverge from the Religious Right.</itunes:summary>
+		   <itunes:duration>53:09</itunes:duration>
+		   <itunes:keywords>rod dreher, republican, republican party, conservative, politics, john mccain, sarah palin, religion, ethics, morality, abortion</itunes:keywords>
+	</item>
+  
+  <item>
+		   <title>The Faith Life of the Party - Part I, The Left (October 2, 2008)</title>
+		   <description>We begin a refreshing, thought-provoking two-part conversation on politics and religion below the surface of the current U.S. presidential campaign. I speak with two counterintuitive yet influential voices. This week, national correspondent for Time magazine, Amy Sullivan, and next week, conservative columnist for the Dallas Morning News, Rod Dreher. Sullivan is a political liberal, an Evangelical Christian, and a savvy observer of the Democratic Party&apos;s complex relationship with faith over the past decade.</description>
+		   <category>Public Radio</category>
+		   <link>http://speakingoffaith.org/programs/2008/sullivan/</link>
+		   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20081002_sullivan.mp3"; length="51400890" type="audio/mpeg"></enclosure>
+		   <guid>http://download.publicradio.org/podcast/speakingoffaith/20081002_sullivan.mp3</guid>
+		   <pubDate>Thu, 02 Oct 2008 09:00:00 CST</pubDate>
+		   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+		   <itunes:subtitle>Explore the Democratic Party&apos;s complex relationship with faith and the little-told story of the left&apos;s response to the rise of the Religious Right.</itunes:subtitle>
+		   <itunes:summary>We begin a refreshing, thought-provoking two-part conversation on politics and religion below the surface of the current U.S. presidential campaign. I speak with two counterintuitive yet influential voices. This week, national correspondent for Time magazine, Amy Sullivan, and next week, conservative columnist for the Dallas Morning News, Rod Dreher. Sullivan is a political liberal, an Evangelical Christian, and a savvy observer of the Democratic Party&apos;s complex relationship with faith over the past decade.</itunes:summary>
+		   <itunes:duration>53:09</itunes:duration>
+		   <itunes:keywords>democrat, democratic party, liberal, abortion, amy sullivan, barack obama, democratic national convention, politics, faith, evangelical, morality, presidental election, john mccain, sarah palin, bill clinton, leah daughtry, ethics</itunes:keywords>
+	</item>
+  
+  <item>
+		   <title>Days of Awe (September 25, 2008)</title>
+		   <description>We&apos;ll delve into the world and meaning of the approaching Jewish High Holy Days -- ten days that span the new year of Rosh Hashanah through Yom Kippur&apos;s rituals of atonement. Sharon Brous, a young rabbi in L.A., is one voice in a Jewish spiritual renaissance that is taking many forms across the U.S. The vast majority of her congregation are people in their 20s and 30s, who, she says, are making life-giving connections between ritual, personal transformation, and relevance in the world.</description>
+		   <category>Public Radio</category>
+		   <link>http://speakingoffaith.org/programs/2008/daysofawe/</link>
+		   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080925_daysofawe.mp3"; length="51337463" type="audio/mpeg"></enclosure>
+		   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080925_daysofawe.mp3</guid>
+		   <pubDate>Thu, 25 Sep 2008 09:00:00 CST</pubDate>
+		   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+		   <itunes:subtitle>Delve into the world and meaning of the approaching Jewish High Holy Days with rabbi Sharon Brous.</itunes:subtitle>
+		   <itunes:summary>We&apos;ll delve into the world and meaning of the approaching Jewish High Holy Days -- ten days that span the new year of Rosh Hashanah through Yom Kippur&apos;s rituals of atonement. Sharon Brous, a young rabbi in L.A., is one voice in a Jewish spiritual renaissance that is taking many forms across the U.S. The vast majority of her congregation are people in their 20s and 30s, who, she says, are making life-giving connections between ritual, personal transformation, and relevance in the world.</itunes:summary>
+		   <itunes:duration>53:09</itunes:duration>
+		   <itunes:keywords>sharon brous, jew, judaism, nephesh, high holy days, rosh hashanah, yom kippur, ikar, speaking of faith, krista tippett, religion, faith, spirituality, shofar, social justice, kol nidre, social justice</itunes:keywords>
+	</item>
+  
+	
+	<item>
+		   <title>The Origins and Impact of Pentecostalism (September 18, 2008)</title>
+		   <description>Pentecostalism has appeared as a force on both sides of the current presidential campaign. News coverage of vice presidential candidate Sarah Palin&apos;s Pentecostal background has overshadowed the fact that senior leaders of the Obama campaign and the Democratic National Convention are Pentecostal too. In 2006, Pentecostals from all around the globe traveled to the birthplace of this tradition -- Azusa Street in Los Angeles. We were there to cover the centennial celebration -- and now we bring this program into the present, exploring the origins, theology, and impact of this faith that now reaches an estimated half a billion people globally.</description>
+		   <category>Public Radio</category>
+		   <link>http://speakingoffaith.org/programs/2008/azusarevival/</link>
+		   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080918_azusarevival.mp3"; length="51467805" type="audio/mpeg"></enclosure>
+		   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080918_azusarevival.mp3</guid>
+		   <pubDate>Thu, 18 Sep 2008 09:00:00 CST</pubDate>
+		   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+		   <itunes:subtitle>Explore the origins, theology, and impact of Pentecostalism -- a faith that now reaches an estimated half a billion people globally.</itunes:subtitle>
+		   <itunes:summary>Pentecostalism has appeared as a force on both sides of the current presidential campaign. News coverage of vice presidential candidate Sarah Palin&apos;s Pentecostal background has overshadowed the fact that senior leaders of the Obama campaign and the Democratic National Convention are Pentecostal too. In 2006, Pentecostals from all around the globe traveled to the birthplace of this tradition -- Azusa Street in Los Angeles. We were there to cover the centennial celebration -- and now we bring this program into the present, exploring the origins, theology, and impact of this faith that now reaches an estimated half a billion people globally.</itunes:summary>
+		   <itunes:duration>53:09</itunes:duration>
+		   <itunes:keywords>pentecostal, charismatic, azusa, william seymour, parham, los angeles, christian, evangelical, fundamentalist, mel robeck, arlene sanchez walsh, krista tippett, faith, religion, spirituality, sarah palin, morality</itunes:keywords>
+		</item>
+	
+		<item>
+   <title>SOF EXTRA (video) | The Myth of Order</title>
+   <description>James Prosek has spent his life capturing wildlife -- whether it be literally as an avid fly-fisher, or figuratively through writing, drawing, and painting. View some of his artwork as he talks about these &quot;mystical creatures,&quot; the names we give them, and ultimately why it&apos;s necessary to protect them.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/rememberingforward/soundseen_video-stream640.shtml</link>
+   <enclosure url="http://download.publicradio.org/video/speakingoffaith/20080828_fishing_ss-mythoforder.mov"; length="37520505" type="video/mov"></enclosure>
+   <guid>http://download.publicradio.org/video/speakingoffaith/20080828_fishing_ss-mythoforder.mov</guid>
+   <pubDate>Tue, 16 Sep 2008 15:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>James Prosek on the mystical acts of fishing, writing, and art</itunes:subtitle>
+   <itunes:summary>James Prosek has spent his life capturing wildlife -- whether it be literally as an avid fly-fisher, or figuratively through writing, drawing, and painting. View some of his artwork as he talks about these &quot;mystical creatures,&quot; the names we give them, and ultimately why it&apos;s necessary to protect them.</itunes:summary>
+   <itunes:duration>5:02</itunes:duration>
+   <itunes:keywords>fishing, art, illustration, james prosek, god, eels, trout, krista tippett, speaking of faith, religion</itunes:keywords>
+  </item>
+		
+		<item>
+		   <title>Yoga. Meditation in Action with Seane Corn (September 11, 2008)</title>
+		   <description>Yoga studios are cropping up on street corners across the U.S., and there are now yoga classes at YMCAs, law schools, and corporate headquarters. This 5000 year old spiritual technology is converging intriguingly with 21st century medical science and with many religious and philosophical perspectives. Seane Corn takes us inside the practicalities and power of yoga, and describes how it helps her face the darkness in herself and the world.</description>
+		   <category>Public Radio</category>
+		   <link>http://speakingoffaith.org/programs/2008/yoga/</link>
+		   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080911_yoga.mp3"; length="51512661" type="audio/mpeg"></enclosure>
+		   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080911_yoga.mp3</guid>
+		   <pubDate>Thu, 11 Sep 2008 09:00:00 CST</pubDate>
+		   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+		   <itunes:subtitle>Seane Corn takes us inside the practicalities and power of yoga.</itunes:subtitle>
+		   <itunes:summary>Yoga studios are cropping up on street corners across the U.S., and there are now yoga classes at YMCAs, law schools, and corporate headquarters. This 5000 year old spiritual technology is converging intriguingly with 21st century medical science and with many religious and philosophical perspectives. Seane Corn takes us inside the practicalities and power of yoga, and describes how it helps her face the darkness in herself and the world.</itunes:summary>
+		   <itunes:duration>53:09</itunes:duration>
+		   <itunes:keywords>seane corn, yoga, obsessive-compulsive disorder, healing, spirituality, activism, buddhism, hinduism, child abuse, prayer, speaking of faith, krista tippett, american public media, APM</itunes:keywords>
+		</item>
+
+		<item>
+	   <title>Stress and the Balance Within (September 4, 2008)</title>
+	   <description>The American experience of stress has spawned a multi-billion dollar self-help industry. Wary of this, Esther Sternberg says that, until recently, modern science did not have the tools or the inclination to take emotional stress seriously. She shares fascinating new scientific insight into the molecular level of the mind-body connection.</description>
+	   <category>Public Radio</category>
+	   <link>http://speakingoffaith.org/programs/2008/stress/</link>
+	   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080904_stress.mp3"; length="51448129" type="audio/mpeg"></enclosure>
+	   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080904_stress.mp3</guid>
+	   <pubDate>Thu, 04 Sep 2008 11:00:00 CST</pubDate>
+	   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+	   <itunes:subtitle>Esther Sternberg discusses scientific insight into emotional stress.</itunes:subtitle>
+	   <itunes:summary>The American experience of stress has spawned a multi-billion dollar self-help industry. Wary of this, Esther Sternberg says that, until recently, modern science did not have the tools or the inclination to take emotional stress seriously. She shares fascinating new scientific insight into the molecular level of the mind-body connection.</itunes:summary>
+	   <itunes:duration>53:09</itunes:duration>
+	   <itunes:keywords>	speaking of faith, krista tippett, esther sternberg, stress, orthodox judaism, jew, crete, asclepius, radio, faith, religion, spirituality, morality, american public media, APM</itunes:keywords>
+	</item>
+
+
+	<item>
+	   <title>Fishing with Mystery (August 28, 2008)</title>
+	   <description>James Prosek is a 33-year-old artist, writer, and fly-fisher who has always, as he puts it, found God &quot;through the theater of nature.&quot; From a young age he has been fascinated by trout, and now eel -- which he sees as &quot;mystical creatures&quot; -- and he&apos;s captured them physically and artistically, by way of both angling and paint. We explore the sense of meaning and ritual James Prosek developed along the way, including his concern with how we humans limit our sense of other creatures by the names we give them. We&apos;ll also hear the words of Henry David Thoreau, Bruce Chatwin, and Izaak Walton.</description>
+	   <category>Public Radio</category>
+	   <link>http://speakingoffaith.org/programs/2008/fishing/</link>
+	   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080828_fishing.mp3"; length="51306363 " type="audio/mpeg"></enclosure>
+	   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080828_fishing.mp3</guid>
+	   <pubDate>Thu, 28 Aug 2008 09:30:00 CST</pubDate>
+	   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+	   <itunes:subtitle>James Prosek discusses his sense of meaning and ritual inspired by &quot;the theater of nature.&quot;</itunes:subtitle>
+	   <itunes:summary>James Prosek is a 33-year-old artist, writer, and fly-fisher who has always, as he puts it, found God &quot;through the theater of nature.&quot; From a young age he has been fascinated by trout, and now eel -- which he sees as &quot;mystical creatures&quot; -- and he&apos;s captured them physically and artistically, by way of both angling and paint. We explore the sense of meaning and ritual James Prosek developed along the way, including his concern with how we humans limit our sense of other creatures by the names we give them. We&apos;ll also hear the words of Henry David Thoreau, Bruce Chatwin, and Izaak Walton.</itunes:summary>
+	   <itunes:duration>53:09</itunes:duration>
+	   <itunes:keywords>james prosek, fly-fishing, painting, nature, environment, god, eels, mystery, speaking of faith, krista tippett</itunes:keywords>
+	</item>
+
+
+  <item>
+   <title>Rick and Kay Warren at Saddleback (August 21, 2008)</title>
+   <description>Evangelical leader Rick Warren is in the news for bringing John McCain and Barack Obama together at his Saddleback Church in California. This two-hour event, broadcast live on CNN, is just one sign of the cross-cultural authority Warren and his wife Kay have achieved in a handful of years. We revisit Krista&apos;s conversation with them at Saddleback last year -- exploring who they are and what motivates them.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/2008/warren/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080821_warren.mp3"; length="51306363 " type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080821_warren.mp3</guid>
+   <pubDate>Thu, 21 Aug 2008 12:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Rick and Kay Warren exploring who they are and what motivates them.</itunes:subtitle>
+   <itunes:summary>Evangelical leader Rick Warren is in the news for bringing John McCain and Barack Obama together at his Saddleback Church in California. This two-hour event, broadcast live on CNN, is just one sign of the cross-cultural authority Warren and his wife Kay have achieved in a handful of years. We revisit Krista&apos;s conversation with them at Saddleback last year -- exploring who they are and what motivates them.</itunes:summary>
+   <itunes:duration>53:09</itunes:duration>
+   <itunes:keywords>	evangelical, rick warren, kay warren, purpose driven life, saddleback, aids, politics, poverty, africa, christianity, christian, speaking of faith, krista tippett, religion, faith, spirituality, barack obama, john mccain, politics</itunes:keywords>
+  </item>
+
+
+  <item>
+   <title>The Power of Eckhart Tolle&apos;s Now (August 14, 2008)</title>
+   <description>Host Krista Tippett creates a certain kind of space in her interviews, and this conversation is no exception. Tolle shares his youthful experience of depression and despair -- suffering that led him to his own spiritual breakthrough, and ultimately, freedom and peace of mind. He also explicates his view of what he calls &quot;the pain body&quot; -- the accumulated emotional pain that may influence us and our relationships in negative ways. And Tolle talks about spirit and God, and what those concepts mean to him.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/tolle/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080814_tolle.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080814_tolle.mp3</guid>
+   <pubDate>Wed, 13 Aug 2008 12:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Eckhart Tolle on spirit and God, pain-bodies, presence, and living with fame.</itunes:subtitle>
+   <itunes:summary>Host Krista Tippett creates a certain kind of space in her interviews, and this conversation is no exception. Tolle shares his youthful experience of depression and despair -- suffering that led him to his own spiritual breakthrough, and ultimately, freedom and peace of mind. He also explicates his view of what he calls &quot;the pain body&quot; -- the accumulated emotional pain that may influence us and our relationships in negative ways. And Tolle talks about spirit and God, and what those concepts mean to him.</itunes:summary>
+   <itunes:duration>53:09</itunes:duration>
+   <itunes:keywords>eckhart tolle, oprah winfrey, a new earth, ram dass, power of now, pain bodies, speaking of faith, krista tippett</itunes:keywords>
+  </item>
+
+  <item>
+   <title>Living Vodou (August 7, 2008)</title>
+   <description>Vodou is the African-based spiritual world of the people of Haiti, a living religion wherever Haitians are found. It involves dramatic rituals and drumming, trances and dreaming, and belief in a spiritual realm that mirrors the physical world and interacts with it. But contrary to popular notions, it has nothing to do with sticking pins into dolls. With Patrick Bellegarde-Smith, a scholar who is also a Vodou priest, we explore its practices and metaphysics.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/vodou/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080807_vodou.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080807_vodou.mp3</guid>
+   <pubDate>Thu, 7 Aug 2008 12:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Patrick Bellegarde-Smith talks about the roots of Haitian Vodou</itunes:subtitle>
+   <itunes:summary>Vodou is the African-based spiritual world of the people of Haiti, a living religion wherever Haitians are found. It involves dramatic rituals and drumming, trances and dreaming, and belief in a spiritual realm that mirrors the physical world and interacts with it. But contrary to popular notions, it has nothing to do with sticking pins into dolls. With Patrick Bellegarde-Smith, a scholar who is also a Vodou priest, we explore its practices and metaphysics.</itunes:summary>
+   <itunes:duration>53:09</itunes:duration>
+   <itunes:keywords>voodoo, vodou, haiti, brooklyn, legba, ogou, gede, ghede, spirits, possessed, possession, syncretism, catholic, drumming, patrick bellegarde-smith, claudine michel, maya deren, mama lola, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+     <title>The Business of Doing Good (July 31, 2008)</title>
+     <description>The news has been marked in recent years, at regular intervals, by the moral and practical downfall of prominent businesses. Jonathan Greenblatt is among a new generation of entrepreneurs who want to lead a fundamental shift in corporate culture as well as philanthropy -- a merger between making a profit and doing good. We explore his way of seeing the world and his economics of &quot;ethical brand architecture&quot; and &quot;fiercely pragmatic idealism.&quot;</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/business_of_good/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080731_business_of_good.mp3"; length="51387696" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080731_business_of_good.mp3</guid>
+     <pubDate>Thu, 31 Jul 2008 12:01:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Jonathan Greenblatt describes the merging philosophy of making a profit and doing good.</itunes:subtitle>
+     <itunes:summary>The news has been marked in recent years, at regular intervals, by the moral and practical downfall of prominent businesses. Jonathan Greenblatt is among a new generation of entrepreneurs who want to lead a fundamental shift in corporate culture as well as philanthropy -- a merger between making a profit and doing good. We explore his way of seeing the world and his economics of &quot;ethical brand architecture&quot; and &quot;fiercely pragmatic idealism.&quot;</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>jonathan greenblatt, business, ethos water, starbucks, social entrepreneur, socially responsible investing, ethics, religion, spirituality, krista tippett, profit</itunes:keywords>
+   </item>
+			
+			<item>
+     <title>Play, Spirit, and Character (July 24, 2008)</title>
+     <description>Stuart Brown, a physician and director of the National Institute for Play, says that pleasurable, purposeless activity prevents violence and promotes trust, empathy, and adaptability to life&apos;s complication. He promotes cutting-edge science on human play, and draws on a rich universe of study of intelligent social animals.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/play/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080724_play.mp3"; length="51387696" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080724_play.mp3</guid>
+     <pubDate>Thu, 24 Jul 2008 12:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Stuart Brown discusses the value of purposeless activity.</itunes:subtitle>
+     <itunes:summary>Stuart Brown, a physician and director of the National Institute for Play, says that pleasurable, purposeless activity prevents violence and promotes trust, empathy, and adaptability to life&apos;s complication. He promotes cutting-edge science on human play, and draws on a rich universe of study of intelligent social animals.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>stuart brown, play, stress, behavior, speaking of faith, krista tippett, tippet, faith, radio, religion, spirituality, christianity, ethics, morality, jane goodall</itunes:keywords>
+   </item>
+
+  <item>
+     <title>Recovering Chinese Religiosities (July 17, 2008)</title>
+     <description>Put the words &quot;religion&quot; and &quot;China&quot; in a sentence together, and Western imaginations may go to indifference at best, to brutal repression at worst. Yet in grand historical perspective, China is a crucible of religious and philosophical thought and practice. Anthropologist and filmmaker Mayfair Yang says that the upheavals of the 20th century created an amnesia -â in the West as in China itself -- about this rich, pluralistic spiritual inheritance. She traces some of this story for us, and describes a subtle new revival of reverence and ritual.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/joecarter/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080717_chinese_religiosities.mp3"; length="51206579" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080717_chinese_religiosities.mp3</guid>
+     <pubDate>Thu, 10 Jul 2008 12:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Mayfair Yang on Chinese religious and political thought and practice.</itunes:subtitle>
+     <itunes:summary>Put the words &quot;religion&quot; and &quot;China&quot; in a sentence together, and Western imaginations may go to indifference at best, to brutal repression at worst. Yet in grand historical perspective, China is a crucible of religious and philosophical thought and practice. Anthropologist and filmmaker Mayfair Yang says that the upheavals of the 20th century created an amnesia -â in the West as in China itself -- about this rich, pluralistic spiritual inheritance. She traces some of this story for us, and describes a subtle new revival of reverence and ritual.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>mayfair yang, china, buddhism, confuscianism, taiwan, religion, daoism, taoism, communism, ethics, secular, tibet, mao, history, ethics, tibet, ritual, speaking of faith, krista tippett</itunes:keywords>
+   </item>
+			
+			<item>
+     <title>Joe Carter and the Legacy of the African-American Spiritual (July 10, 2008)</title>
+     <description>The spiritual is celebrated in American culture and beyond. It is the source from which gospel, jazz, blues and hip-hop evolved. It was born in the American South, created by slaves, bards whose names history never recorded. The organizing concept of this music is not the melody of Europe, but the rhythm of Africa. And the theology conveyed in these songs is a potent mix of African spirituality, Hebrew narrative, Christian doctrine, and an extreme experience of human suffering.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/joecarter/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080710_joecarter.mp3"; length="51206579" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080710_joecarter.mp3</guid>
+     <pubDate>Thu, 10 Jul 2008 12:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Singer Joe Carter shares stories about the meaning of the Negro spiritual in word and song.</itunes:subtitle>
+     <itunes:summary>The spiritual is celebrated in American culture and beyond. It is the source from which gospel, jazz, blues and hip-hop evolved. It was born in the American South, created by slaves, bards whose names history never recorded. The organizing concept of this music is not the melody of Europe, but the rhythm of Africa. And the theology conveyed in these songs is a potent mix of African spirituality, Hebrew narrative, Christian doctrine, and an extreme experience of human suffering.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>joe carter, negro spiritual, african-american, african american, song, slavery, sorrow songs, slave, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+   </item>
+
+  <item>
+     <title>The Ethics of Eating (July 3, 2008)</title>
+     <description>Author Barbara Kingsolver describes an adventure her family undertook to spend one year eating primarily what they could grow or raise themselves. As a citizen and mother more than an expert, she turned her life towards questions many of us are asking. Food, she says, is a &quot;rare moral arena&quot; in which the ethical choice is often the pleasurable choice.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/ethicsofeating/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080703_ethicsofeating.mp3"; length="51350395" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080703_ethicsofeating.mp3</guid>
+     <pubDate>Thu, 03 Jul 2008 12:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Author Barbara Kingsolver describes an adventure her family undertook to spend one year eating primarily what they could grow or raise themselves.</itunes:subtitle>
+     <itunes:summary>Author Barbara Kingsolver describes an adventure her family undertook to spend one year eating primarily what they could grow or raise themselves. As a citizen and mother more than an expert, she turned her life towards questions many of us are asking. Food, she says, is a &quot;rare moral arena&quot; in which the ethical choice is often the pleasurable choice.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>barbara kingsolver, organic, sustainability, green, gardening, krista tippett, poisonwood bible, ethics, religion, spirituality, values, morality</itunes:keywords>
+   </item>
+
+  <item>
+     <title>Presence in the Wild (June 26, 2008)</title>
+     <description>Kate Braestrup is a writer, mother and a chaplain to game wardens on search-and-rescue missions in Maine. She is called in when children disappear in the woods and when snowmobilers disappear under the ice. There, she says, the rubber meets the road theologically. And her sense of life, death, and God is formed by what happens between and among people.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/braestrup/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080626_braestrup.mp3"; length="5281625" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080626_braestrup.mp3</guid>
+     <pubDate>Thu, 26 Jun 2008 12:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Kate Braestrup, chaplain to game wardens on search-and-rescue missions in Maine, discusses her experiences and how it affects her sense of life, death, and God.</itunes:subtitle>
+     <itunes:summary>	Kate Braestrup is a writer, mother and a chaplain to game wardens on search-and-rescue missions in Maine. She is called in when children disappear in the woods and when snowmobilers disappear under the ice. There, she says, the rubber meets the road theologically. And her sense of life, death, and God is formed by what happens between and among people.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>braestrup, maine, search and rescue, chaplain, game warden, death, loss, park, forest, unitarian universalist, religion, god, community, love, radio</itunes:keywords>
+   </item>
+
+  <item>
+     <title>Sustaining Language, Sustaining Meaning - an Ojibwe Story (June 19, 2008)</title>
+     <description>Novelist and translator David Treuer is helping to compile the first practical grammar of the Ojibwe tongue of his tribe -- one of the 90 percent of human languages that could be endangered in this century. Treuer describes an unfolding awareness of aspects of his personality, of a sense of what brings him joy, an understanding of what makes him human -- that the Ojibwe language distinctly conveys.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/sustaining_language/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080619_treuer.mp3"; length="51428304" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080619_treuer.mp3</guid>
+     <pubDate>Fri, 20 Jun 2008 14:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>David Treuer on the identity of speaking Ojibwe.</itunes:subtitle>
+     <itunes:summary>Novelist and translator David Treuer is helping to compile the first practical grammar of the Ojibwe tongue of his tribe -- one of the 90 percent of human languages that could be endangered in this century. Treuer describes an unfolding awareness of aspects of his personality, of a sense of what brings him joy, an understanding of what makes him human -- that the Ojibwe language distinctly conveys.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>ojibwe, native american, indigenous, aboriginal, preserving language, david treuer, speaking of faith, jew, judaism, christianity, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+   </item>
+			
+			<item>
+     <title>Pagans Ancient and Modern (June 12, 2008)</title>
+     <description>An environmentalist who pursued the ecological impulse of Paganism, from its ancient roots to its modern revival in Europe and North America, discusses his observations about the spirit of Paganism and its influence on everyday Western culture -- and even on old-time religion.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/pagans/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080612_pagans.mp3"; length="51428304" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080612_pagans.mp3</guid>
+     <pubDate>Thu, 12 Jun 2008 14:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Adrian Ivakhiv discusses his observations about the spirit of Paganism and its influence on everyday Western culture.</itunes:subtitle>
+     <itunes:summary>An environmentalist who pursued the ecological impulse of Paganism, from its ancient roots to its modern revival in Europe and North America, discusses his observations about the spirit of Paganism and its influence on everyday Western culture -- and even on old-time religion.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>pagan, paganism, neopagan, druids, wicca, wiccans, heathen, carpathian, ukraine, krista tippett, adrian ivakhiv, ecology, environment, radio, faith, religion, spirituality, morality, american public media, APM</itunes:keywords>
+   </item>
+
+  <item>
+     <title>The Spiritual Audacity of Abraham Joshua Heschel (June 5, 2008)</title>
+     <description>Heschel was a mystic who wrote transcendent, poetic words about God. At the very same time, he marched alongside Martin Luther King Jr. and organized religious leadership against the war in Vietnam, embodying the extreme social activism of the biblical prophets he studied. We explore his teachings and his legacy for people in our day.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/heschel/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080605_heschel.mp3"; length="51675197" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080605_heschel.mp3</guid>
+     <pubDate>Thu, 5 Jun 2008 14:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Exploring the teachings and legacy of Abraham Joshua Heschel for people in our day.</itunes:subtitle>
+     <itunes:summary>Heschel was a mystic who wrote transcendent, poetic words about God. At the very same time, he marched alongside Martin Luther King Jr. and organized religious leadership against the war in Vietnam, embodying the extreme social activism of the biblical prophets he studied. We explore his teachings and his legacy for people in our day.</itunes:summary>
+     <itunes:duration>53:20</itunes:duration>
+     <itunes:keywords>heschel, judaism, hasidism, vietnam war, old testament, prophets, speaking of faith, krista tippett, arnold eisen, jewish theological seminary, radio, faith, life, religion, ethics</itunes:keywords>
+   </item>
+			
+			<item>
+     <title>Quarks and Creation (May 29, 2008)</title>
+     <description>Science and religion are often pitted against one another; but how do they complement, rather than contradict, one another? We learn how one man applies the deepest insights of modern physics to think about how the world fundamentally works, and how the universe might make space for prayer.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/quarks/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080529_quarks.mp3"; length="51721199" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080529_quarks.mp3</guid>
+     <pubDate>Thu, 29 May 2008 12:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Scientist and theologian John Polkinghorne applies the insights of quantum physics to religious mysteries and the evolution debate.</itunes:subtitle>
+     <itunes:summary>Science and religion are often pitted against one another; but how do they complement, rather than contradict, one another? We learn how one man applies the deepest insights of modern physics to think about how the world fundamentally works, and how the universe might make space for prayer.</itunes:summary>
+     <itunes:duration>53:21</itunes:duration>
+     <itunes:keywords>speaking of faith, polkinghorne, polkinghorn, chaos theory, quarks, hadrons, evolution, creationism, intelligent design, science, templeton, apm, american public media, radio, program, faith, life, religion, ethics</itunes:keywords>
+  </item>
+
+  <item>
+     <title>Approaching Prayer (May 22, 2008)</title>
+     <description>Americans are religious and non-religious, devout and irreverent. But in astonishing numbers, across that spectrum, most of us say that we pray. We open up the subject of prayer and explore how it sounds and what it means in three different traditions and lives.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/approachingprayer/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080522_approachingprayer.mp3"; length="51675197" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080522_approachingprayer.mp3</guid>
+     <pubDate>Thu, 22 May 2008 12:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Anoushka Shankar, Stephen Mitchell, and Roberta Bondi open up the subject of prayer.</itunes:subtitle>
+     <itunes:summary>Americans are religious and non-religious, devout and irreverent. But in astonishing numbers, across that spectrum, most of us say that we pray. We open up the subject of prayer and explore how it sounds and what it means in three different traditions and lives.</itunes:summary>
+     <itunes:duration>53:20</itunes:duration>
+     <itunes:keywords>speaking of faith, prayer, bondi, shankar, mitchell, jew, judaism, hasid, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+   </item>
+			
+			<item>
+     <title>The Spirituality of Addiction and Recovery (May 15, 2008)</title>
+     <description>Alcoholics Anonymous co-founder Bill Wilson once said that the program he helped create is, &quot;utter simplicity which encases a complete mystery.&quot; We explore the spiritual foundations of addiction and recovery with authors Kevin Griffin and Susan Cheever. Griffin reflects on the consonance of Buddhist teachings and the 12 Steps; Cheever tells her personal story and that of her father, the late fiction writer John Cheever.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/recovery/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080515_recovery.mp3"; length="51339146" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080515_recovery.mp3</guid>
+     <pubDate>Fri, 16 May 2008 04:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Buddhist teacher Kevin Griffin on the consonance of the Twelve Steps and Zen instruction; and Susan Cheever tells her personal story and that of her father, the late fiction writer John Cheever.</itunes:subtitle>
+     <itunes:summary>Alcoholics Anonymous co-founder Bill Wilson once said that the program he helped create is, &quot;utter simplicity which encases a complete mystery.&quot; We explore the spiritual foundations of addiction and recovery with authors Kevin Griffin and Susan Cheever. Griffin reflects on the consonance of Buddhist teachings and the 12 Steps; Cheever tells her personal story and that of her father, the late fiction writer John Cheever.</itunes:summary>
+     <itunes:duration>53:20</itunes:duration>
+     <itunes:keywords>addiction, 12 steps, big book, bill wilson, bill w, alcoholism, drug abuse, spirituality, god, christianity, buddhism, kevin griffin, susan cheever, krista tippett, speaking of faith, religion, ethics, morals, religion</itunes:keywords>
+   </item>
+			
+  <item>
+     <title>The Freelance Monotheism of Karen Armstrong (May 8, 2008)</title>
+     <description>Karen Armstrong speaks about her progression from a disillusioned and damaged young nun into, in her words, a &quot;freelance monotheist.&quot; She&apos;s a formidable thinker and scholar, but as a theologian she calls herself an amateur -- noting that the Latin root of the word &quot;amateur&quot; means a love of one&apos;s subject. Seven years in a strict religious order nearly snuffed out her ability to think about faith at all. Here, we hear the story behind Armstrong&apos;s developing ideas about God.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/armstrong/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080508_armstrong.mp3"; length="51339146" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080508_armstrong.mp3</guid>
+     <pubDate>Thu, 8 May 2008 05:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Armstrong reflects on the role of religion in the modern world, theology, poetry, and her life as a freelance monotheist.</itunes:subtitle>
+     <itunes:summary>Karen Armstrong speaks about her progression from a disillusioned and damaged young nun into, in her words, a &quot;freelance monotheist.&quot; She&apos;s a formidable thinker and scholar, but as a theologian she calls herself an amateur -- noting that the Latin root of the word &quot;amateur&quot; means a love of one&apos;s subject. Seven years in a strict religious order nearly snuffed out her ability to think about faith at all. Here, we hear the story behind Armstrong&apos;s developing ideas about God.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>karen armstrong, islam, jew, judaism, nun, christianity, jesuit, spiral staircase, krista tippett, catholic, muhammad, faith, religion, spirituality, morality</itunes:keywords>
+   </item>
+			
+			<item>
+     <title>Being Catholic, The Beauty and Challenge of - Hearing the Faithful (May 3, 2008)</title>
+     <description>We depart from our usual format and listen to a spectrum of lay Catholic voices on the force of this vast and ancient tradition on their lives, the way they struggle with it, the sources of their love for it. Even to be a &quot;lapsed Catholic,&quot; we hear, is a complex state of being.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/being_catholic/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080501_being_catholic.mp3"; length="51339146" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080501_being_catholic.mp3</guid>
+     <pubDate>Sat, 3 May 2008 05:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Nine lay Catholic voices on their ancient tradition.</itunes:subtitle>
+     <itunes:summary>We depart from our usual format and listen to a spectrum of lay Catholic voices on the force of this vast and ancient tradition on their lives, the way they struggle with it, the sources of their love for it. Even to be a &quot;lapsed Catholic,&quot; we hear, is a complex state of being.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>catholic, christian, mass, doctrine, pope, vatican, benedict, christianity, abortion, choice, right to life, krista tippett, speaking of faith, religion, ethics, morals, religion</itunes:keywords>
+   </item>
+			
+			<item>
+     <title>Planting the Future with Wangari Maathai (April 24, 2008)</title>
+     <description>In honor of Earth Day, a riveting Kenyan environmentalist and Nobel Peace Prize Laureate, Wangari Maathai. She knows what many in the West have forgotten -- that ecological crises are often the hidden root causes of war. Maathai speaks about the global balance of human and natural resources, and she shares her thoughts on where God resides.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/plantingthefuture/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080424_plantingthefuture.mp3"; length="51339146" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080424_plantingthefuture.mp3</guid>
+     <pubDate>Thu, 24 Apr 2008 10:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Wangari Maathai on fighting for environmental awareness and women&apos;s rights in Africa.</itunes:subtitle>
+     <itunes:summary>In honor of Earth Day, a riveting Kenyan environmentalist and Nobel Peace Prize Laureate, Wangari Maathai. She knows what many in the West have forgotten -- that ecological crises are often the hidden root causes of war. Maathai speaks about the global balance of human and natural resources, and she shares her thoughts on where God resides.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>wangari maathai, nobel peace prize, kenya, green belt movement, conservation, deforestation, feminism, poverty, catholic, kikuyu, krista tippett, ecology, environment, radio, faith, religion, spirituality, morality</itunes:keywords>
+   </item>
+
+  <item>
+     <title>Evangelical Politics: Three Generations (April 17, 2008)</title>
+     <description>A passionate discussion is unfolding among Evangelical leaders and communities. Should Christians be involved in politics and if so, how? What has gone wrong, and what has been learned from the Moral Majority to today? Chuck Colson, Greg Boyd, and Shane Claiborne are three generations of Evangelicals who discuss and debate these answers.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/evangelical_politics/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080417_evangelicalpolitics.mp3"; length="51085200" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080417_evangelicalpolitics.mp3</guid>
+     <pubDate>Fri, 18 Apr 2008 08:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Chuck Colson, Greg Boyd, and Shane Claiborner in a public dialogue about what it means to be Evangelical today.</itunes:subtitle>
+     <itunes:summary>A passionate discussion is unfolding among Evangelical leaders and communities. Should Christians be involved in politics and if so, how? What has gone wrong, and what has been learned from the Moral Majority to today? Chuck Colson, Greg Boyd, and Shane Claiborne are three generations of Evangelicals who discuss and debate these answers.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>evangelical, charles colson, shane claiborne, greg boyd, politics, christian, christianity, abortion, choice, right to life, krista tippett, speaking of faith, religion, ethics, morals, religion</itunes:keywords>
+   </item>
+			
+			<item>
+     <title>Brother Thay: A Radio Pilgrimmage with Thich Nhat Hanh (April 10, 2008)</title>
+     <description>Forcibly exiled from his native country, Zen master and poet Thich Nhat Hanh recently visited Vietnam for the first time in nearly 40 years. In 2003, Speaking of Faith took a radio pilgrimage with the Buddhist monk at a Christian conference center in a lakeside setting of rural Wisconsin. Thich Nhat Hanh offers stark, gentle wisdom for living in a world of anger and violence. Here, he discusses the concepts of engaged Buddhism, being peace, and mindfulness.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/thichnhathanh/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080410_thichnhathanh.mp3"; length="51085200" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080410_thichnhathanh.mp3</guid>
+     <pubDate>Thu, 10 Apr 2008 12:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Zen master and poet Thich Nhat Hanh offers wisdom for living in a world of anger and violence.</itunes:subtitle>
+     <itunes:summary>Forcibly exiled from his native country, Zen master and poet Thich Nhat Hanh recently visited Vietnam for the first time in nearly 40 years. In 2003, Speaking of Faith took a radio pilgrimage with the Buddhist monk at a Christian conference center in a lakeside setting of rural Wisconsin. Thich Nhat Hanh offers stark, gentle wisdom for living in a world of anger and violence. Here, he discusses the concepts of engaged Buddhism, being peace, and mindfulness.</itunes:summary>
+     <itunes:duration>53:08</itunes:duration>
+     <itunes:keywords>thich nhat hanh, buddha, buddhism, plum village, thomas merton, engaged Buddhism, larry ward, maples, dharma, boddhisatva, monk, vietnam, viet nam, sangha, green lake conference center, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+   </item>
+   
+  <item>
+     <title>The Spirituality of Parenting (April 3, 2008)</title>
+     <description>More and more people in our time are disconnected from religious institutions, at least for part of their lives. Others are religious and find themselves creating a family with a spouse from another tradition or no tradition at all. And the experience of parenting tends to raise spiritual questions anew. We sense that there is a spiritual aspect to our children&apos;s natures and wonder how to support and nurture that. The spiritual life, our guest says, begins not in abstractions, but in concrete everyday experiences. And children need our questions as much as our answers.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/spiritualityofparenting/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080403_spiritualityofparenting.mp3"; length="51226650" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080403_spiritualityofparenting.mp3</guid>
+     <pubDate>Thu, 03 Apr 2008 11:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Rabbi Sandi Sasso discusses nurturing the spiritual and moral awareness of children.</itunes:subtitle>
+     <itunes:summary>More and more people in our time are disconnected from religious institutions, at least for part of their lives. Others are religious and find themselves creating a family with a spouse from another tradition or no tradition at all. And the experience of parenting tends to raise spiritual questions anew. We sense that there is a spiritual aspect to our children&apos;s natures and wonder how to support and nurture that. The spiritual life, our guest says, begins not in abstractions, but in concrete everyday experiences. And children need our questions as much as our answers.</itunes:summary>
+     <itunes:duration>53:09</itunes:duration>
+     <itunes:keywords>parenting, children, sandy sasso, rabbi, jew, judaism, unchurched, god, christian, christianity, stoires, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+   </item>
+
+  <item>
+     <title>Exploring a New Humanism (March 27, 2008)</title>
+     <description>In a recent Pew poll, 16 percent of Americans identified themselves as &quot;unaffiliated&quot; - atheist, agnostic, or most prominently &quot;nothing in particular.&quot; Greg Epstein, a Humanist chaplain at Harvard, described himself that way until he discovered the tradition of humanism. He is passionate about articulating an atheist identity that is not driven by a stance against religion but by positive ethical beliefs and actions.</description>
+     <category>Public Radio</category>
+     <link>http://speakingoffaith.org/programs/new_humanism/</link>
+     <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080327_new_humanism.mp3"; length="51421163" type="audio/mpeg"></enclosure>
+     <guid>http://download.publicradio.org/podcast/speakingoffaith/20080327_new_humanism.mp3</guid>
+     <pubDate>Thu, 27 Mar 2008 11:00:00 CST</pubDate>
+     <itunes:author>Krista Tippett, American Public Media</itunes:author>
+     <itunes:subtitle>Harvard Humanist chaplain Greg Epstein discusses an atheism driven by positive ethical beliefs and actions.</itunes:subtitle>
+     <itunes:summary>In a recent Pew poll, 16 percent of Americans identified themselves as &quot;unaffiliated&quot; - atheist, agnostic, or most prominently &quot;nothing in particular.&quot; Greg Epstein, a Humanist chaplain at Harvard, described himself that way until he discovered the tradition of humanism. He is passionate about articulating an atheist identity that is not driven by a stance against religion but by positive ethical beliefs and actions.</itunes:summary>
+     <itunes:duration>53:27</itunes:duration>
+     <itunes:keywords>	humanism, atheism, agnostic, unchurched, harvard, greg epstein, religion, krista tippett, faith, religion, spirituality, morality</itunes:keywords>
+   </item>
+
+  <item>
+   <title>SOF EXTRA (video) | Bach&apos;s Bible</title>
+   <description>Johann Sebastian Bach&apos;s compositions, Dr. Thomas Rossin says, stemmed from his private faith - a faith evidenced by Bach&apos;s handwritten notes in his Bible. Hear about the Bible&apos;s nomadic journey and its possible influence of his &quot;Mass in B Minor&quot; - what the late, great scholar of creeds, Jaroslav Pelikan, holds up as an example of the &quot;best we&apos;ve ever done.&quot;</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/pelikan/ss_bachsbible/ss-bachsbible.shtml#slideshow</link>
+   <enclosure url="http://download.publicradio.org/video/speakingoffaith/20080320_pelikan_vid-bachsbible.mov"; length="37520505" type="video/mov"></enclosure>
+   <guid>http://download.publicradio.org/video/speakingoffaith/20080320_pelikan_vid-bachsbible.mov</guid>
+   <pubDate>Tue, 25 Mar 2008 10:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Dr. Thomas Rossin discusses Johann Sebastian Bach&apos;s bible.</itunes:subtitle>
+   <itunes:summary>Johann Sebastian Bach&apos;s compositions, Dr. Thomas Rossin says, stemmed from his private faith - a faith evidenced by Bach&apos;s handwritten notes in his Bible. Hear about the Bible&apos;s nomadic journey and its possible influence of his &quot;Mass in B Minor&quot; - what the late, great scholar of creeds, Jaroslav Pelikan, holds up as an example of the &quot;best we&apos;ve ever done.&quot;</itunes:summary>
+   <itunes:duration>3:47</itunes:duration>
+   <itunes:keywords>	jaroslav pelikan, creed, prayer, masai, maasai, orthodox, nicene creed, constantine, st. augustine, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+
+  <item>
+   <title>The Need for Creeds (March 20, 2008)</title>
+   <description>For many modern Americans, the very idea of reciting an unchanging creed, composed centuries ago, is troublesome. But, Jaroslav Pelikan, who died on May 13, 2006, was a scholar who devoted his life to exploring the vitality of ancient theology and creeds. He insisted that even modern pluralists need strong statements of belief. Here, we revisit Krista&apos;s 2003 conversation with him, who, then, in his 80th year, had released a historic collection of Christian faith from biblical times to the present and from across the globe. They discuss the history and nature of creeds, and how a fixed creed can be reconciled with an honest, intellectual faith that changes and evolves.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/pelikan/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080320_pelikan.mp3"; length="51375166" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080320_pelikan.mp3</guid>
+   <pubDate>Thu, 20 Mar 2008 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Scholar Jaroslav Pelikan discusses the modern need for strong statements of belief.</itunes:subtitle>
+   <itunes:summary>For many modern Americans, the very idea of reciting an unchanging creed, composed centuries ago, is troublesome. But, Jaroslav Pelikan, who died on May 13, 2006, was a scholar who devoted his life to exploring the vitality of ancient theology and creeds. He insisted that even modern pluralists need strong statements of belief. Here, we revisit Krista&apos;s 2003 conversation with him, who, then, in his 80th year, had released a historic collection of Christian faith from biblical times to the present and from across the globe. They discuss the history and nature of creeds, and how a fixed creed can be reconciled with an honest, intellectual faith that changes and evolves</itunes:summary>
+   <itunes:duration>53:27</itunes:duration>
+   <itunes:keywords>jaroslav pelikan, creed, prayer, masai, maasai, orthodox, nicene creed, constantine, st. augustine, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+
+
+  <item>
+   <title>Liberating the Founders (March 13, 2008)</title>
+   <description>Warning: this conversation may not mirror what you learned in school. The culture wars of recent years, journalist Steven Waldman says, hijacked Americans&apos; understanding of the country&apos;s founders and of the meaning of religious liberty. This hinders people from grasping what is really at stake in the current debates about the relationship between government and religion. It may even distort the wisdom we might bring to young democracies around the world.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/liberating_the_founders/</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080313_liberating_the_founders.mp3"; length="51330634" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080313_liberating_the_founders.mp3</guid>
+   <pubDate>Wed, 12 Mar 2008 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Journalist Steven Waldman discusses the American founding fathers&apos; views on government and religion.</itunes:subtitle>
+   <itunes:summary>Warning: this conversation may not mirror what you learned in school. The culture wars of recent years, journalist Steven Waldman says, hijacked Americans&apos; understanding of the country&apos;s founders and of the meaning of religious liberty. This hinders people from grasping what is really at stake in the current debates about the relationship between government and religion. It may even distort the wisdom we might bring to young democracies around the world.</itunes:summary>
+   <itunes:duration>53:27</itunes:duration>
+   <itunes:keywords>founding fathers, church, state, religion, james madison, thomas jefferson, steven waldman, government, liberty, democracy</itunes:keywords>
+  </item>
+
+  <item>
+   <title>SOF EXTRA (video) | Beannacht</title>
+   <description>Shortly before his death in 2008, the late Irish poet John O&apos;Donohue recited his poem &quot;Beannacht&quot;, meaning blessing, during an interview with Krista Tippett. We&apos;ve woven his close friends&apos; photographs of him in his Celtic landscapes with this reading. Produced by Colleen Scheck and Trent Gilliss.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/john_odonahue/ss_beannacht/ss-beannacht.shtml#slideshow</link>
+   <enclosure url="http://download.publicradio.org/video/speakingoffaith/20080228_john-odonohue_slideshow-beannacht.mov"; length="37520505" type="video/mov"></enclosure>
+   <guid>http://download.publicradio.org/video/speakingoffaith/20080228_john-odonohue_slideshow-beannacht.mov</guid>
+   <pubDate>Mon, 10 Mar 2008 10:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>John O&apos;Donohue reads Beannacht with images of his Celtic landscape</itunes:subtitle>
+   <itunes:summary>Shortly before his death in 2008, the late Irish poet John O&apos;Donohue recited his poem &quot;Beannacht&quot;, meaning blessing, during an interview with Krista Tippett. We&apos;ve woven his close friends&apos; photographs of him in his Celtic landscapes with this reading. Produced by Colleen Scheck and Trent Gilliss.</itunes:summary>
+   <itunes:duration>1:18</itunes:duration>
+   <itunes:keywords>john o&apos;donohue, poem, poetry, beannacht, anam cara, celtic, gaelic, ireland, irish, burren, krista tippett, speaking of faith, religion</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>A New Voice for Islam (March 6, 2008)</title>
+   <description>Ingrid Mattson, the first woman and first convert to lead the Islamic Society of North America, describes her experience of Islamic spirituality, which she discovered in her twenties after a Catholic upbringing. We probe her unusual perspective on a tumultuous age for Islam in the West and around the world.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/newvoice/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080306_newvoice.mp3"; length="51315397" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080306_newvoice.mp3</guid>
+   <pubDate>Thu, 6 Mar 2008 13:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Muslim leader Ingrid Mattson discusses the future of Islam</itunes:subtitle>
+   <itunes:summary>Ingrid Mattson, the first woman and first convert to lead the Islamic Society of North America, describes her experience of Islamic spirituality, which she discovered in her twenties after a Catholic upbringing. We probe her unusual perspective on a tumultuous age for Islam in the West and around the world.</itunes:summary>
+   <itunes:duration>53:27</itunes:duration>
+   <itunes:keywords>ingrid mattson, islam, muslim, islamic society of north america, salat, allah, krista tippett, faith, religion, spirituality, morality</itunes:keywords>
+ </item>
+	
+		<item>
+   <title>The Inner Landscape of Beauty (February 28, 2008)</title>
+   <description>John O&apos;Donohue was an Irish poet and philosopher beloved for his book &quot;Anam Cara&quot; â Gaelic for &quot;soul friend&quot; â and for his insistence on beauty as a human calling and a defining aspect of God. Before his untimely death this year, he spoke with Krista in our studios. And so this hour has become a remembrance of him. But John O&apos;Donohue had a very Celtic, lifelong fascination with what he called &quot;the invisible world.&quot; And he would also surely see this also as a serendipitous continuation of his life&apos;s work â of bringing ancient Celtic wisdom to modern confusions and longings.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/john_odonahue/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080228_john-odonohue.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080228_john-odonohue.mp3</guid>
+   <pubDate>Sat, 1 Mar 2008 16:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Irish poet John O&apos;Donohue on beauty and friendship</itunes:subtitle>
+   <itunes:summary>John O&apos;Donohue was an Irish poet and philosopher beloved for his book Anam Cara â Gaelic for &quot;soul friend&quot; â and for his insistence on beauty as a human calling and a defining aspect of God. Before his untimely death this year, he spoke with Krista in our studios. And so this hour has become a remembrance of him. But John O&apos;Donohue had a very Celtic, lifelong fascination with what he called &quot;the invisible world.&quot; And he would also surely see this also as a serendipitous continuation of his life&apos;s work â of bringing ancient Celtic wisdom to modern confusions and longings.</itunes:summary>
+   <itunes:duration>53:05</itunes:duration>
+   <itunes:keywords>john o&apos;donohue, poetry, ireland, irish, celtic, gaelic, priest, christianity, beauty, landscape, god, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | [8 of 8] Poem: &quot;The Nativity&quot;</title>
+   <description>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;The Nativity&quot; is the eighth of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/john-odonohue/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_08_nativity.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_08_nativity.mp3</guid>
+   <pubDate>Sat, 23 Feb 2008 15:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>[8 of 10] Poem: &quot;The Nativity&quot;</itunes:subtitle>
+   <itunes:summary>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;The Nativity&quot; is the eighth of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</itunes:summary>
+   <itunes:duration>0:57</itunes:duration>
+   <itunes:keywords>john o&apos;donohue, poetry, ireland, irish, celtic, gaelic, priest, christianity, beauty, landscape, god, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>SOF EXTRA (audio) | [7 of 8] Poem: &quot;Since You Came&quot;</title>
+   <description>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;Since You Came&quot; is the seventh of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/john-odonohue/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_07_since-you-came.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_07_since-you-came.mp3</guid>
+   <pubDate>Sat, 23 Feb 2008 15:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>[7 of 10] Poem: &quot;Since You Came&quot;</itunes:subtitle>
+   <itunes:summary>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;Since You Came&quot; is the seventh of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</itunes:summary>
+   <itunes:duration>0:53</itunes:duration>
+   <itunes:keywords>john o&apos;donohue, poetry, ireland, irish, celtic, gaelic, priest, christianity, beauty, landscape, god, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>SOF EXTRA (audio) | [6 of 8] Poem: &quot;For the Pilgrim a Kiss: Body Language&quot;</title>
+   <description>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;For the Pilgrim a Kiss: Between Things&quot; is the sixth of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/john-odonohue/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_06_for-the-pilgrim3.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_06_for-the-pilgrim3.mp3</guid>
+   <pubDate>Sat, 23 Feb 2008 15:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>[6 of 10] Poem: &quot;For the Pilgrim a Kiss: Body Language&quot;</itunes:subtitle>
+   <itunes:summary>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;For the Pilgrim a Kiss: Between Things&quot; is the sixth of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</itunes:summary>
+   <itunes:duration>1:27</itunes:duration>
+   <itunes:keywords>john o&apos;donohue, poetry, ireland, irish, celtic, gaelic, priest, christianity, beauty, landscape, god, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>SOF EXTRA (audio) | [5 of 8] Poem: &quot;For the Pilgrim a Kiss: Between Things&quot;</title>
+   <description>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;For the Pilgrim a Kiss: Between Things&quot; is the fifth of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/john-odonohue/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_05_for-the-pilgrim2.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_05_for-the-pilgrim2.mp3</guid>
+   <pubDate>Sat, 23 Feb 2008 15:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>[5 of 10] Poem: &quot;For the Pilgrim a Kiss: Between Things&quot;</itunes:subtitle>
+   <itunes:summary>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;For the Pilgrim a Kiss: Between Things&quot; is the fifth of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</itunes:summary>
+   <itunes:duration>1:08</itunes:duration>
+   <itunes:keywords>john o&apos;donohue, poetry, ireland, irish, celtic, gaelic, priest, christianity, beauty, landscape, god, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | [4 of 8] Poem: &quot;For the Pilgrim a Kiss: The Caha River&quot;</title>
+   <description>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;For the Pilgrim a Kiss: The Caha River&quot; is the fourth of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/john-odonohue/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_04_for-the-pilgrim1.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_04_for-the-pilgrim1.mp3</guid>
+   <pubDate>Sat, 23 Feb 2008 15:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>[4 of 10] Poem: &quot;For the Pilgrim a Kiss: The Caha River&quot;</itunes:subtitle>
+   <itunes:summary>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;For the Pilgrim a Kiss: The Caha River&quot; is the fourth of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</itunes:summary>
+   <itunes:duration>0:50</itunes:duration>
+   <itunes:keywords>john o&apos;donohue, poetry, ireland, irish, celtic, gaelic, priest, christianity, beauty, landscape, god, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | [3 of 8] Poem: &quot;Beannacht&quot;</title>
+   <description>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;Beannacht&quot; is the third of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/john-odonohue/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_03_beannacht.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_03_beannacht.mp3</guid>
+   <pubDate>Sat, 23 Feb 2008 15:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>[3 of 10] Poem: &quot;Beannacht&quot;</itunes:subtitle>
+   <itunes:summary>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;Beannacht&quot; is the third of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</itunes:summary>
+   <itunes:duration>1:01</itunes:duration>
+   <itunes:keywords>john o&apos;donohue, poetry, ireland, irish, celtic, gaelic, priest, christianity, beauty, landscape, god, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | [2 of 8] Poem: &quot;A Blessing for One Who Holds Power&quot;</title>
+   <description>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;A Blessing for One Who Holds Power&quot; is the second of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/john-odonohue/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_02_blessing-for-one.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_02_blessing-for-one.mp3</guid>
+   <pubDate>Sat, 23 Feb 2008 15:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>[2 of 10] Poem: &quot;A Blessing for One Who Holds Power&quot;</itunes:subtitle>
+   <itunes:summary>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;A Blessing for One Who Holds Power&quot; is the second of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</itunes:summary>
+   <itunes:duration>1:23</itunes:duration>
+   <itunes:keywords>john o&apos;donohue, poetry, ireland, irish, celtic, gaelic, priest, christianity, beauty, landscape, god, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | [1 of 8] Poem: &quot;A Blessing for a Friend on the Arrival of Illness&quot;</title>
+   <description>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;A Blessing for a Friend on the Arrival of Illness&quot; is the first of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/john-odonohue/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_01_blessing-for-a-friend.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/odonohue_poems/odonohue_01_blessing-for-a-friend.mp3</guid>
+   <pubDate>Sat, 23 Feb 2008 15:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>[1 of 10] Poem: &quot;A Blessing for a Friend on the Arrival of Illness&quot;</itunes:subtitle>
+   <itunes:summary>Interviewed shortly before his death, the Irish poet John O&apos;Donohue recited several of his poems during his conversation with Krista. &quot;A Blessing for a Friend on the Arrival of Illness&quot; is the first of eight poems that provide a preview of their conversation in The Inner Landscape of Beauty.</itunes:summary>
+   <itunes:duration>2:22</itunes:duration>
+   <itunes:keywords>john o&apos;donohue, poetry, ireland, irish, celtic, gaelic, priest, christianity, beauty, landscape, god, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>Whale Songs and Elephant Loves (February 21, 2008)</title>
+   <description>Katy Payne is an acoustic biologist with a Quaker sensibility. In a career that has spanned the wild coast of Argentina and the rainforests of Africa, she discovered that humpback whales compose ever-changing songs; and that elephants communicate across long distances by way of sounds beyond the realm of human hearing. She reflects on life in this world through listening to two of its largest and most mysterious creatures.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/whalesongs/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080221_whalesongs.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080221_whalesongs.mp3</guid>
+   <pubDate>Thu, 21 Feb 2008 13:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Katy Payne on listening and humanity</itunes:subtitle>
+   <itunes:summary>Our guest, Katy Payne, is an acoustic biologist with a Quaker sensibility. In a career that has spanned the wild coast of Argentina and the rainforests of Africa, she discovered that humpback whales compose ever-changing songs; and that elephants communicate across long distances by way of sounds beyond the realm of human hearing. She reflects on life in this world through listening to two of its largest and most mysterious creatures.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>whales, elephants, humpback, africa, culling, conservation, song, quaker, christian, krista tippett, faith, radio, religion, spirituality, tippet</itunes:keywords>
+  </item>
+		
+		
+		<item>
+   <title>No More Taking Sides (February 14, 2008)</title>
+   <description>Robi Damelin lost her son David to a Palestinian sniper. Ali Abu Awwad lost his older brother Yousef to an Israeli soldier. But, instead of clinging to traditional ideologies and turning their pain into more violence, they&apos;ve decided to understand the other side -- Israeli and Palestinian -- by sharing their pain and their humanity. They tell of a gathering network of survivors who share their grief, their stories of loved ones, and their ideas for lasting peace. They don&apos;t want to be right; they want to be honest.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/nomore/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080214_nomore.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080214_nomore.mp3</guid>
+   <pubDate>Fri, 15 Feb 2008 06:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>An Israeli and a Palestinian share stories of grief, love, and solutions</itunes:subtitle>
+   <itunes:summary>Robi Damelin lost her son David to a Palestinian sniper. Ali Abu Awwad lost his older brother Yousef to an Israeli soldier. But, instead of clinging to traditional ideologies and turning their pain into more violence, they&apos;ve decided to understand the other side -- Israeli and Palestinian -- by sharing their pain and their humanity. They tell of a gathering network of survivors who share their grief, their stories of loved ones, and their ideas for lasting peace. They don&apos;t want to be right; they want to be honest.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>judaism, islam, muslim, jew, israel, palestine, robi damelin, ali abu awaad, sniper, conflict, holy land, killing, checkpoints, holocaust, south africa, christian, divestment, krista tippett, faith, radio, religion, spirituality, tippet</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Reflections of a British Muslim Extremist (February 7, 2008)</title>
+   <description>British activist Ed Husain was seduced, at the age of 16, by revolutionary Islamist ideals that flourished at the heart of educated British culture. Yet he later shrank back from radicalism after coming close to a murder and watching people he loved become suicide bombers. He dug deeper into Islamic spirituality, and now offers a fresh and daring perspective on the way forward.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/britishradical/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080207_britishradical.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080207_britishradical.mp3</guid>
+   <pubDate>Thu, 7 Feb 2008 08:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Ed Husain on radical Muslim fundamentalism in the UK</itunes:subtitle>
+   <itunes:summary>British activist Ed Husain was seduced, at the age of 16, by revolutionary Islamist ideals that flourished at the heart of educated British culture. Yet he later shrank back from radicalism after coming close to a murder and watching people he loved become suicide bombers. He dug deeper into Islamic spirituality, and now offers a fresh and daring perspective on the way forward.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>muslim, extremist, fundamentalist, islam, islamism, ed husain, hizb ut-tahrir, england, great britain, terrorism, east london mosque, the islamist, muhammad, god, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (video) | A Musical Evening with Krista Tippett</title>
+   <description>Krista Tippett gives a live performance on April 5, 2007 at the Fitzgerald Theater in downtown St. Paul, Minnesota. Accompanied by Dan Chouinard and Marc Anderson, she reads from her 2007 book, titled &quot;Speaking of Faith: Why Religion Matters--and How to Talk About It.&quot;
+			
+			Yes, we&apos;re a radio program, but sometimes the visual helps -- especially when trying to envision the exotic instruments in the background!</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/rememberingforward/soundseen_video-stream640.shtml</link>
+   <enclosure url="http://download.publicradio.org/video/speakingoffaith/20070607_rememberingforward-video_stream320-300.mov"; length="37520505" type="video/mov"></enclosure>
+   <guid>http://download.publicradio.org/video/speakingoffaith/20070607_rememberingforward-video_stream320-300.mov</guid>
+   <pubDate>Wed, 06 Feb 2008 15:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista Tippett&apos;s live performance at the Fitzgerald Theater</itunes:subtitle>
+   <itunes:summary>Krista Tippett gives a live performance on April 5, 2007 at the Fitzgerald Theater in downtown St. Paul, Minnesota. Accompanied by Dan Chouinard and Marc Anderson, she reads from her 2007 book, titled &quot;Speaking of Faith: Why Religion Matters--and How to Talk About It.&quot;
+			
+			Yes, we&apos;re a radio program, but sometimes the visual helps -- especially when trying to envision the exotic instruments in the background!</itunes:summary>
+   <itunes:duration>59:37</itunes:duration>
+   <itunes:keywords>krista tippett, speaking of faith, religion, memoir, st. paul, fitzgerald theater, live performance</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Remembering Forward (January 31, 2008)</title>
+   <description>Before a live audience at the Fitzgerald Theater in St. Paul, Minnesota, Krista reads from her book, &quot;Speaking of Faith.&quot; She traces the intersection of human experience and religious ideas in her own life, just as she asks her guests to do each week. Krista reflects on her adventure of conversation across the world&apos;s traditions -- and on the whole story of religion in human life, beyond the headlines of violence.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/rememberingforward/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080131_rememberingforward.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080131_rememberingforward.mp3</guid>
+   <pubDate>Thu, 31 Jan 2008 08:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista Tippett reflects on her conversations in a live performance</itunes:subtitle>
+   <itunes:summary>Before a live audience at the Fitzgerald Theater in St. Paul, Minnesota, Krista reads from her book, &quot;Speaking of Faith.&quot; She traces the intersection of human experience and religious ideas in her own life, just as she asks her guests to do each week. Krista reflects on her adventure of conversation across the world&apos;s traditions -- and on the whole story of religion in human life, beyond the headlines of violence.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>krista tippett, live performance, fitzgerald theater, speaking of faith, tippet, faith, radio, religion, spirituality, christianity, ethics, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | Unedited Interview with Douglas Johnston</title>
+   <description>In this edition of SOF Unheard Cuts, Krista interviewed Douglas Johnston, president and founder of the International Center for Religion and Diplomacy. We&apos;re making the entire, unedited conversation available for the first time. Here&apos;s your chance to observe the editorial process and let us know what you think.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/diplomacyandreligion/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080103_diplomacyandreligion_uc-johnston.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080103_diplomacyandreligion_uc-johnston.mp3</guid>
+   <pubDate>Wed, 30 Jan 2008 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista&apos;s unedited interview with Douglas Johnston on religion and diplomacy</itunes:subtitle>
+   <itunes:summary>n this edition of SOF Unheard Cuts, Krista interviewed Douglas Johnston, president and founder of the International Center for Religion and Diplomacy. We&apos;re making the entire, unedited conversation available for the first time. Here&apos;s your chance to observe the editorial process and let us know what you think.</itunes:summary>
+   <itunes:duration>1:23:34</itunes:duration>
+   <itunes:keywords>unheard cuts, religious freedom, douglas johnston, foreign policy, interfaith, iran, sudan, christian, krista tippett, faith, radio, religion, spirituality, tippet</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Inside Mormon Faith (January 24, 2008)</title>
+   <description>Americans have been hearing about Mormonism in the context of the presidential campaign. But we&apos;re learning about this faith of 13 million people indirectly, by way of rhetoric and defense. In this program, we avoid well-trodden, controversial ground and seek an understanding of some doctrinal and spiritual basics of the Church of Jesus Christ of Latter-day Saints. Robert Millet, a leading scholar of the church and a lifelong practitioner, describes a developing young religion with distinct mystical and practical interpretations of the nature of God, family, and eternity.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/insidemormonfaith/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080124_insidemormonfaith.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080124_insidemormonfaith.mp3</guid>
+   <pubDate>Thu, 24 Jan 2008 12:15:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Robert Millet on Mormonism</itunes:subtitle>
+   <itunes:summary>Americans have been hearing about Mormonism in the context of the presidential campaign. But we&apos;re learning about this faith of 13 million people indirectly, by way of rhetoric and defense. In this program, we avoid well-trodden, controversial ground and seek an understanding of some doctrinal and spiritual basics of the Church of Jesus Christ of Latter-day Saints. Robert Millet, a leading scholar of the church and a lifelong practitioner, describes a developing young religion with distinct mystical and practical interpretations of the nature of God, family, and eternity.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>mormon, latter-day saints, utah, joseph smith, brigham young, christian, jesus, eternal families, god, robert millett, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Discovering Where We Live: Reimagining Environmentalism (January 17, 2008)</title>
+   <description>Environmentalism and climate change are hot topics; yet they&apos;re still often imagined as the territory of scientists, expert activists, and those who can afford to be environmentally conscious. We discover two people who are transforming the ecology of their immediate worlds: biologist Calvin DeWitt in Dunn, Wisconsin and Majora Carter in New York&apos;s South Bronx.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/discoveringwherewelive/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080117_discoveringwherewelive.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080117_discoveringwherewelive.mp3</guid>
+   <pubDate>Thu, 17 Jan 2008 06:15:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Majora Carter and Calvin DeWitt on making environmentalism relevant</itunes:subtitle>
+   <itunes:summary>Environmentalism and climate change are hot topics; yet they&apos;re still often imagined as the territory of scientists, expert activists, and those who can afford to be environmentally conscious. We discover two people who are transforming the ecology of their immediate worlds: biologist Calvin DeWitt in Dunn, Wisconsin and Majora Carter in New York&apos;s South Bronx.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>environment, environmentalism, ecology, majora carter, cal dewitt, south bronx, dunn, christian, evangelical, urban heat island, marsh, reclamation, krista tippett, faith, radio, religion, spirituality, tippet</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Mathematics, Purpose, and Truth (January 10, 2008)</title>
+   <description>As a theoretical physicist, Janna Levin probes whether the universe is finite or infinite. As a novelist, she explored the separate but parallel lives of two influential 20th-century scientists: Kurt Godel and Alan Turing. Their work laid the foundations for computer intelligence while challenging fundamental notions about how we can know what is true.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/mathandtruth/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080110_mathandtruth.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080110_mathandtruth.mp3</guid>
+   <pubDate>Thu, 10 Jan 2008 13:15:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Janna Levin on Godel, Turing, and the paradox of truth</itunes:subtitle>
+   <itunes:summary>As a theoretical physicist, Janna Levin probes whether the universe is finite or infinite. As a novelist, she explored the separate but parallel lives of two influential 20th-century scientists: Kurt Godel and Alan Turing. Their work laid the foundations for computer intelligence while challenging fundamental notions about how we can know what is true.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>janna levin, physics, logic, kurt godel, alan turing, science, truth, math, mathematics, god, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>Diplomacy and Religion in the 21st Century (January 3, 2008)</title>
+   <description>The greatest threat in the post-Cold War world, says Douglas Johnston, is the prospective marriage of religious extremism with weapons of mass destruction. Yet the U.S. spends most of its time, resources, and weapons fighting the symptoms of this threat, not the cause. The diplomacy of the future, he is showing, must engage religion as part of the strategic solution to global conflicts.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/diplomacyandreligion/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20080103_diplomacyandreligion.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20080103_diplomacyandreligion.mp3</guid>
+   <pubDate>Thu, 3 Jan 2008 10:15:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Douglas Johnston advocates including religion as a component of statecraft</itunes:subtitle>
+   <itunes:summary>The greatest threat in the post-Cold War world, says Douglas Johnston, is the prospective marriage of religious extremism with weapons of mass destruction. Yet the U.S. spends most of its time, resources, and weapons fighting the symptoms of this threat, not the cause. The diplomacy of the future, he is showing, must engage religion as part of the strategic solution to global conflicts.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>douglas johnston, politics, statecraft, speaking of faith, pakistan, islam, muslims, iran, diplomacy, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Listening Generously: The Medicine of Rachel Naomi Remen (December 27, 2007)</title>
+   <description>Dr. Remen is a clinical professor at the University of California at San Francisco School of Medicine and a leader in the growing field of integrative medicine, bringing together the best of modern knowledge both scientific and spiritual. She speaks about the art of listening to patients and other physicians, the difference between curing and healing, and how our losses help us to live.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/listeninggenerously/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071227_listeninggenerously.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071227_listeninggenerously.mp3</guid>
+   <pubDate>Fri, 28 Dec 2007 09:15:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Dr. Rachel Naomi Remen on listening, healing, and loss helps us live</itunes:subtitle>
+   <itunes:summary>Dr. Remen is a clinical professor at the University of California at San Francisco School of Medicine and a leader in the growing field of integrative medicine, bringing together the best of modern knowledge both scientific and spiritual. She speaks about the art of listening to patients and other physicians, the difference between curing and healing, and how our losses help us to live.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>speaking of faith, healing, faith, medicine, integrative medicine, kabbalah, jew, jewish, judaism, mystic, storytelling, rachel naomi remen, krista tippett, radio, faith, religion, spirituality, morality, tikkun olam</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The Wisdom of Tenderness (December 20, 2007)</title>
+   <description>For the Christmas season and the New Year, a rare conversation with one of the wise men in our world today -- Jean Vanier. The philosopher and Catholic social innovator created a model of community, L&apos;Arche, that embodies the ideal of power in smallness and light in the darkness of human existence.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/wisdomoftenderness/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071220_wisdomoftenderness.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071220_wisdomoftenderness.mp3</guid>
+   <pubDate>Thu, 20 Dec 2007 21:15:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Jean Vanier on L&apos;Arche, human touch, and kindness</itunes:subtitle>
+   <itunes:summary>For the Christmas season and the New Year, a rare conversation with one of the wise men in our world today -- Jean Vanier. The philosopher and Catholic social innovator created a model of community, L&apos;Arche, that embodies the ideal of power in smallness and light in the darkness of human existence.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>jean vanier, l&apos;arche, mental retardation, handicapped, christian, catholic, touch, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The Ecstatic Faith of Rumi (December 13, 2007)</title>
+   <description>The 13th-century Muslim mystic and poet Rumi has long shaped Muslims around the world and has now become popular in the West. Rumi created a new language of love within the Islamic mystical tradition of Sufism. We hear his poetry as we delve into his world and listen for its echoes in our own.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/rumi/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071213_rumi.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071213_rumi.mp3</guid>
+   <pubDate>Thu, 13 Dec 2007 00:08:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Fatemeh Keshavarz brings Rumi&apos;s exuberant poetry to life</itunes:subtitle>
+   <itunes:summary>The 13th-century Muslim mystic and poet Rumi has long shaped Muslims around the world and has now become popular in the West. Rumi created a new language of love within the Islamic mystical tradition of Sufism. We hear his poetry as we delve into his world and listen for its echoes in our own.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>rumi, persian, sufi, sufism, poetry, shams, fatemeh keshavarz, islam, muslim, iran, afghanistan, dervish, whirling dervish, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The New Evangelical Leaders: Part 2 - Rick and Kay Warren (December 6, 2007)</title>
+   <description>The second in a two-part series on influential leaders who are reshaping Evangelical Christianity from within progressive and conservative circles. The best-selling author of &quot;The Purpose Driven Life,&quot; Rick Warren and his wife Kay lead one of the largest churches in the U.S. They are now partnering in global ventures to fight AIDS and poverty.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/warren/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071206_warren.mp3"; length="63786512" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071206_warren.mp3</guid>
+   <pubDate>Sat, 08 Dec 2007 14:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Rick and Kay Warren, new conservative Evangelical leaders</itunes:subtitle>
+   <itunes:summary>The second in a two-part series on influential leaders who are reshaping Evangelical Christianity from within progressive and conservative circles. The best-selling author of &quot;The Purpose Driven Life,&quot; Rick Warren and his wife Kay lead one of the largest churches in the U.S. They are now partnering in global ventures to fight AIDS and poverty.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>evangelical, rick warren, kay warren, purpose driven life, saddleback, aids, politics, poverty, africa, christianity, christian, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>SOF EXTRA (video) | The Homes and Voices of Mason&apos;s Bend</title>
+   <description>Auburn University&apos;s Rural Studio in western Alabama draws architectural students into the design and construction of homes and public spaces in some of the poorest counties in the United States. They&apos;re creating beautiful and economical structures that are unique in the world â and that nurture sustainability of the natural world as of human dignity. The iconographic structures of Mason&apos;s Bend have become synonymous with Sam Mockbee and the Rural Studio. We&apos;ve put together a feast of images and voices from the people who live and work there.
+</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/ruralstudio/ss_masonsbend/soundseen_ss-masonsbend.shtml#slideshow</link>
+   <enclosure url="http://download.publicradio.org/video/speakingoffaith/20071115_ruralstudio_slideshow-masonsbend.mov"; length="37520505" type="video/mov"></enclosure>
+   <guid>http://download.publicradio.org/video/speakingoffaith/20071115_ruralstudio_slideshow-masonsbend.mov</guid>
+   <pubDate>Tue, 04 Dec 2007 14:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Rural Studio projects in Mason&apos; Bend, Alabama</itunes:subtitle>
+   <itunes:summary>Auburn University&apos;s Rural Studio in western Alabama draws architectural students into the design and construction of homes and public spaces in some of the poorest counties in the United States. They&apos;re creating beautiful and economical structures that are unique in the world â and that nurture sustainability of the natural world as of human dignity. The iconographic structures of Mason&apos;s Bend have become synonymous with Sam Mockbee and the Rural Studio. We&apos;ve put together a feast of images and voices from the people who live and work there.</itunes:summary>
+   <itunes:duration>2:45</itunes:duration>
+   <itunes:keywords>mason&apos;s bend, alabama, auburn, design, architecture, mockbee, religion, sambo, sustainability, rural studio, low-income housing, carpet house</itunes:keywords>
+  </item>
+
+		<item>
+   <title>The New Evangelical Leaders: Part 1 - Jim Wallis (November 29, 2007)</title>
+   <description>Evangelical Christianity has no single, central authority, but it does have guiding figures in every generation. Progressive social activist Jim Wallis has become something of a national celebrity, proposing a new agenda for religion in politics in what he calls the &quot;post-Religious Right era.&quot;</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/jimwallis/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071129_jimwallis.mp3"; length="63786512" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071129_jimwallis.mp3</guid>
+   <pubDate>Thu, 29 Nov 2007 06:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Jim Wallis, a new progressive Evangelical leader</itunes:subtitle>
+   <itunes:summary>Evangelical Christianity has no single, central authority, but it does have guiding figures in every generation. Progressive social activist Jim Wallis has become something of a national celebrity, proposing a new agenda for religion in politics in what he calls the &quot;post-Religious Right era.&quot;</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>evangelical, jim wallis, sojourners, politics, poverty, christianity, christian, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | Unedited Interview with Andrew Freear</title>
+   <description>In this edition of SOF Unheard Cuts, Krista interviewed Andrew Freear, director of Auburn University&apos;s Rural Studio in western Alabama. Here&apos;s your chance to listen to their entire, unedited conversation and observe the editorial process. And let us know what you think.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/daysofawe/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071115_ruralstudio_uc-freear.mp3"; length="49533875" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071115_ruralstudio_uc-freear.mp3</guid>
+   <pubDate>Mon, 26 Nov 2007 10:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista&apos;s unedited interview with Andrew Freear on the Rural Studio</itunes:subtitle>
+   <itunes:summary>In this edition of SOF Unheard Cuts, Krista interviewed Andrew Freear, director of Auburn University&apos;s Rural Studio in western Alabama. Here&apos;s your chance to listen to their entire, unedited conversation and observe the editorial process. And let us know what you think.</itunes:summary>
+   <itunes:duration>1:43:01</itunes:duration>
+   <itunes:keywords>unheard cuts, andrew freear, rural studio, auburn university, alabama, poverty, housing, mockbee, speaking of faith, krista tippett, religion, faith, spirituality, social justice</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The Heart&apos;s Reason: Hinduism and Science (November 22, 2007)</title>
+   <description>A rich global dialogue is taking place between religious thinkers and scientists of many disciplines. The global dialogue between science and religion often is obscured by headlines of a science/religion clash. V.V. Raman, a Hindu physicist, shares the ideals of his spirituality and insights from his study of physics.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/heartsreason/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071122_heartsreason.mp3"; length="63786512" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071122_heartsreason.mp3</guid>
+   <pubDate>Wed, 21 Nov 2007 06:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>VV Raman on Hinduism and science</itunes:subtitle>
+   <itunes:summary>A rich global dialogue is taking place between religious thinkers and scientists of many disciplines. The global dialogue between science and religion often is obscured by headlines of a science/religion clash. V.V. Raman, a Hindu physicist, shares the ideals of his spirituality and insights from his study of physics.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>hindu, hinduism, ganesha, saraswati, sarasvati, gods, polytheism, raman, karma, dharma, reincarnation, india, physics, science, caste, brahmin, bhagavad gita, rig veda, faith, radio, religion, spirituality, speaking of faith, krista tippett, tippet</itunes:keywords>
+  </item>
+
+		<item>
+   <title>SOF EXTRA (audio) | Krista&apos;s Commentary on Consumption and Sustainability</title>
+   <description>Krista says the globe should welcome the challenge of sustainability as an invitation -- a way to strengthen moral resources such as delight, dignity, elegance, and hope: 
+			
+			Our emerging national conversation about sustainability has a decidedly &quot;eat your spinach&quot; tone. We&apos;re steeling ourselves to enter the realm of sacrifice, and penance. But as I&apos;ve explored ethics and meaning in American life these past few years, I&apos;ve been struck by the heightened sense of delight and beauty in lives and communities pursuing a new alignment with the natural world. 
+			
+			Innovation in sustainability often begins, I&apos;ve found, with people defining what they cherish as much as diagnosing what is wrong. I think of Majora Carter. The cutting-edge project she founded, Sustainable South Bronx, began when she and the people of that borough began to reclaim their riverfront for refreshment and play. 
+			
+			I think also of the author Barbara Kingsolver, who found in a year of sustainable eating that when it comes to food, the ethical choice is also the pleasurable choice. And she says that as we face the grand ecological crises of our time, one of our most important renewable resources is hope. We simply have to put it on with our shoes every morning. 
+			
+			Recently we visited the Rural Studio at Auburn University in Alabama. There, architectural students build elegant homes and public spaces in poor communities. Long before sustainability was fashionable, the Rural Studio was innovating &quot;zero-maintenance&quot; design. This architectural philosophy shelters the body while honoring the environment and human dignity. 
+			
+			The writer Frederich Buechner has said that &quot;vocation&quot; happens when our deep gladness meets the world&apos;s deep need. I&apos;d like to propose the work of sustainability as an unfolding vocation â not merely a response to problems, but an invitation to possibility and a way to strengthen moral resources such as delight, dignity, elegance, and hope.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/ruralstudio/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071114_consumed-ktcommentary.mp3"; length="974606" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071114_consumed-ktcommentary.mp3</guid>
+   <pubDate>Mon, 19 Nov 2007 16:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista&apos;s commentary on sustainability and consumption for APM&apos;s Consumed series</itunes:subtitle>
+   <itunes:summary>Krista says the globe should welcome the challenge of sustainability as an invitation -- a way to strengthen moral resources such as delight, dignity, elegance, and hope:
+			
+			Our emerging national conversation about sustainability has a decidedly &quot;eat your spinach&quot; tone. We&apos;re steeling ourselves to enter the realm of sacrifice, and penance. But as I&apos;ve explored ethics and meaning in American life these past few years, I&apos;ve been struck by the heightened sense of delight and beauty in lives and communities pursuing a new alignment with the natural world. 
+			
+			Innovation in sustainability often begins, I&apos;ve found, with people defining what they cherish as much as diagnosing what is wrong. I think of Majora Carter. The cutting-edge project she founded, Sustainable South Bronx, began when she and the people of that borough began to reclaim their riverfront for refreshment and play. 
+			
+			I think also of the author Barbara Kingsolver, who found in a year of sustainable eating that when it comes to food, the ethical choice is also the pleasurable choice. And she says that as we face the grand ecological crises of our time, one of our most important renewable resources is hope. We simply have to put it on with our shoes every morning. 
+			
+			Recently we visited the Rural Studio at Auburn University in Alabama. There, architectural students build elegant homes and public spaces in poor communities. Long before sustainability was fashionable, the Rural Studio was innovating &quot;zero-maintenance&quot; design. This architectural philosophy shelters the body while honoring the environment and human dignity. 
+			
+			The writer Frederich Buechner has said that &quot;vocation&quot; happens when our deep gladness meets the world&apos;s deep need. I&apos;d like to propose the work of sustainability as an unfolding vocation â not merely a response to problems, but an invitation to possibility and a way to strengthen moral resources such as delight, dignity, elegance, and hope.</itunes:summary>
+   <itunes:duration>2:01</itunes:duration>
+   <itunes:keywords>sustainability, consumption, krista tippett, marketplace morning report, commentary, speaking of faith, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>An Architecture of Decency (November 15, 2007)</title>
+   <description>We travel to western Alabama to the Rural Studio. Scattered across it are some 75 works of livable art â elegant, sustainable homes and public buildings in some of the poorest counties in the United States. They&apos;re the products of an architectural adventure. Here, architecture serves as a &quot;social art&quot; â and as a force for repairing the fabric of human community as well as the natural world.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/ruralstudio/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071115_ruralstudio.mp3"; length="51022486" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071115_ruralstudio.mp3</guid>
+   <pubDate>Fri, 16 Nov 2007 06:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Andrew Freear and other voices on the work of the Rural Studio as a &quot;social art&quot;</itunes:subtitle>
+   <itunes:summary>We travel to western Alabama to the Rural Studio. Scattered across it are some 75 works of livable art â elegant, sustainable homes and public buildings in some of the poorest counties in the United States. They&apos;re the products of an architectural adventure. Here, architecture serves as a &quot;social art&quot; â and as a force for repairing the fabric of human community as well as the natural world.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>rural studio, architecture, mockbee, sambo, auburn university, alabama, mason&apos;s bend, poverty, housing, andrew freear, black belt, lucy harris, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Money and Moral Balance (November 8, 2007)</title>
+   <description>Many of us are gearing up to spend more money than we actually have for the upcoming holiday season, which has deep roots in religion. We explore the turmoil many of us experience with money in our day-to-day lives â and how we might work towards a moral and practical balance for ourselves and the next generation.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/moneymorals/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071108_moneymorals.mp3"; length="50944171" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071108_moneymorals.mp3</guid>
+   <pubDate>Fri, 9 Nov 2007 06:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Working towards a moral and practical balance for ourselves and the next generation</itunes:subtitle>
+   <itunes:summary>Many of us are gearing up to spend more money than we actually have for the upcoming holiday season, which has deep roots in religion. We explore the turmoil many of us experience with money in our day-to-day lives â and how we might work towards a moral and practical balance for ourselves and the next generation.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>money, morals, ethics, financial planning, christian, debt, credit card, investing, socially responsible investing, nathan dungan, krista tippett, faith, radio, religion, spirituality, tippet</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (video) | Krista&apos;s Interview with Nathan Dungan</title>
+   <description>As part of American Public Media&apos;s &quot;Consumed&quot; series, Krista spoke with financial educator Nathan Dungan. He says that the U.S. -- and churches in particular -- have been complicit in equating consumption with success and happiness at the peril of our own morality. Watch complete, behind-the-scenes footage of Krista&apos;s in-studio conversation with Dungan in Studio P at Minnesota Public Radio on November 6, 2006.
+</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/moneymorals/video300kstream-lg.html</link>
+   <enclosure url="http://download.publicradio.org/video/speakingoffaith/20061130_moneymorals-interview300kstream.mov"; length="237714402" type="video/mov"></enclosure>
+   <guid>http://download.publicradio.org/video/speakingoffaith/20061130_moneymorals-interview300kstream.mov</guid>
+   <pubDate>Mon, 5 Nov 2007 22:50:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Video of Krista&apos;s interview with Nathan Dungan</itunes:subtitle>
+   <itunes:summary>As part of American Public Media&apos;s &quot;Consumed&quot; series, Krista spoke with financial educator Nathan Dungan. He says that the U.S. -- and churches in particular -- have been complicit in equating consumption with success and happiness at the peril of our own morality. Watch complete, behind-the-scenes footage of Krista&apos;s in-studio conversation with Dungan in Studio P at Minnesota Public Radio on November 6, 2006.</itunes:summary>
+   <itunes:duration>1:16:50</itunes:duration>
+   <itunes:keywords>money, morals, ethics, financial planning, christian, debt, credit card, investing, socially responsible investing, nathan dungan, krista tippett, faith, radio, religion, spirituality, tippet</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Burma - Buddhism and Power (November 1, 2007)</title>
+   <description>Former Burmese Buddhist nun and anthropologist Ingrid Jordt takes us inside the spiritual culture of Burma, exploring the meaning of monks taking to the streets there in September, the way in which religion and military rule are intertwined, and how Buddhism remains a force in and beyond the current crisis.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/burma/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071101_burma.mp3"; length="50934462" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071101_burma.mp3</guid>
+   <pubDate>Fri, 2 Nov 2007 06:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Ingrid Jordt on Buddhist thought inside Burmese society and culture</itunes:subtitle>
+   <itunes:summary>Former Burmese Buddhist nun and anthropologist Ingrid Jordt takes us inside the spiritual culture of Burma, exploring the meaning of monks taking to the streets there in September, the way in which religion and military rule are intertwined, and how Buddhism remains a force in and beyond the current crisis.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>burma, aung san suu kyi, monks, buddhism, buddha, myanmar, yangon, rangoon, yellow robes, protests, authoritarian, meditation, peace, alms, march, ingrid jordt, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Moral Man and Immoral Society: Rediscovering Reinhold Niebuhr (October 25, 2007)</title>
+   <description>Reinhold Niebuhr was a 20th-century theologian who had crossover appeal among religious and secular Americans. He&apos;s now being rediscovered as decision-makers on the right and the left ponder war, nation-building, and the relationship between politics and religion.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/niebuhr-rediscovered/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071025_niebuhr-rediscovered.mp3"; length="50950936" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071025_niebuhr-rediscovered.mp3</guid>
+   <pubDate>Thu, 25 Oct 2007 11:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Rediscovering Niebuhr&apos;s thought and how it can apply today</itunes:subtitle>
+   <itunes:summary>Reinhold Niebuhr was a 20th-century theologian who had crossover appeal among religious and secular Americans. He&apos;s now being rediscovered as decision-makers on the right and the left ponder war, nation-building, and the relationship between politics and religion.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>speaking of faith, press release, neibuhr, niebuhr, cold war, communism, christian, protestant, frankfurter, original sin, krista tippett, american public media, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Beyond the Atheism-Religion Divide (October 18, 2007)</title>
+   <description>In 1965, young Harvard professor Harvey Cox became the best-selling voice of secularism in America with his book &quot;The Secular City.&quot; He sees the old thinking in the &quot;new atheism&quot; of figures like Richard Dawkins and Christopher Hitchens. Cox says that either/or debates between religion and atheism obscure the truly interesting interplay between faith and other forms of knowledge that is unfolding today.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/atheism-religion/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071018_atheism-religion.mp3"; length="51062350" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071018_atheism-religion.mp3</guid>
+   <pubDate>Fri, 19 Oct 2007 16:40:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Harvey Cox on moving past the debates between atheists and believers</itunes:subtitle>
+   <itunes:summary>In 1965, young Harvard professor Harvey Cox became the best-selling voice of secularism in America with his book &quot;The Secular City.&quot; He sees the old thinking in the &quot;new atheism&quot; of figures like Richard Dawkins and Christopher Hitchens. Cox says that either/or debates between religion and atheism obscure the truly interesting interplay between faith and other forms of knowledge that is unfolding today.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>atheism, atheist, agnostic, dawkins, sam harris, christopher hitchens, harvey cox, secular, secularism, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The Body&apos;s Grace: Matthew Sanford&apos;s Story (October 11, 2007)</title>
+   <description>An unusual take on the mind-body connection with author and yoga teacher Matthew Sanford. He&apos;s been a paraplegic since the age of 13. He shares his wisdom for us all on knowing the strength and grace of our bodies even in the face of illness, aging, and death.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/bodysgrace/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071011_bodysgrace.mp3"; length="50942391" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071011_bodysgrace.mp3</guid>
+   <pubDate>Mon, 15 Oct 2007 16:40:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>An unusual take on the mind-body connection with author and yoga teacher Matthew Sanford</itunes:subtitle>
+   <itunes:summary>An unusual take on the mind-body connection with author and yoga teacher Matthew Sanford. He&apos;s been a paraplegic since the age of 13. He shares his wisdom for us all on knowing the strength and grace of our bodies even in the face of illness, aging, and death.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>speaking of faith, matthew sanford, waking, healing, paraplegic, yoga, iyengar, handicap, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | Unedited Interview with Sharon Brous</title>
+   <description>In this edition of SOF Unheard Cuts, Krista interviewed Sharon Brous, a Conservative rabbi in Los Angeles who is part of a Jewish spiritual renaissance. Here&apos;s your chance to listen to their entire, unedited conversation and observe the editorial process. And let us know what you think.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/daysofawe/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070906_daysofawe_uc-brous.mp3"; length="40767311" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070906_daysofawe_uc-brous.mp3</guid>
+   <pubDate>Fri, 5 Oct 2007 16:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista&apos;s unedited interview with Rabbi Sharon Brous on the High Holy Days</itunes:subtitle>
+   <itunes:summary>In this edition of SOF Unheard Cuts, Krista interviewed Sharon Brous, a Conservative rabbi in Los Angeles who is part of a Jewish spiritual renaissance. Here&apos;s your chance to listen to their entire, unedited conversation and observe the editorial process. And let us know what you think.</itunes:summary>
+   <itunes:duration>1:24:46</itunes:duration>
+   <itunes:keywords>sharon brous, jew, judaism, nephesh, high holy days, rosh hashanah, yom kippur, ikar, speaking of faith, krista tippett, religion, faith, spirituality, shofar, social justice, kol nidre, social justice</itunes:keywords>
+  </item>
+
+ 	<item>
+   <title>Obedience and Action (October 4, 2007)</title>
+   <description>In over 50 years as a Benedictine nun, Joan Chittister has emerged as a powerful and at times uncomfortable voice in Roman Catholicism and in global politics. If women were ordained in the Catholic Church in our lifetime, some say, she should be the first woman bishop.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/obedienceandaction/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20071004_obedienceandaction.mp3"; length="50958962" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20071004_obedienceandaction.mp3</guid>
+   <pubDate>Thu, 4 Oct 2007 06:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Sr. Joan Chittister on her upbringing, her Benedictine order, and the state of the Catholic Church today</itunes:subtitle>
+   <itunes:summary>In over 50 years as a Benedictine nun, Joan Chittister has emerged as a powerful and at times uncomfortable voice in Roman Catholicism and in global politics. If women were ordained in the Catholic Church in our lifetime, some say, she should be the first woman bishop.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>benedictine, woman, female, nun, joan chittister, catholic, catholicism, roman catholic, interfaith, spiritual progressive, god, christian, christianity, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Being Autistic, Being Human (September 27, 2007)</title>
+   <description>One in every 150 children is now diagnosed to be somewhere on the mysterious spectrum of autism. We step back from the controversies about the causes and cures of autism and explore one family&apos;s experience with an autistic child. Jennifer Elder, an artist, and Paul Collins, a literary historian, have unearthed a vivid history of people grappling with autism, before it had a name. And they share what all of this is teaching them about what it means to be human.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/beingautistic/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070927_beingautistic.mp3"; length="50960595" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070927_beingautistic.mp3</guid>
+   <pubDate>Thu, 27 Sep 2007 12:50:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Two parents talk about what their autistic child is teaching them about themselves</itunes:subtitle>
+   <itunes:summary>One in every 150 children is now diagnosed to be somewhere on the mysterious spectrum of autism. We step back from the controversies about the causes and cures of autism and explore one family&apos;s experience with an autistic child. Jennifer Elder, an artist, and Paul Collins, a literary historian, have unearthed a vivid history of people grappling with autism, before it had a name. And they share what all of this is teaching them about what it means to be human.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>autism, autistic, aspberger, microsoft, paul collins, jennifer elder, speaking of faith, krista tippett, religion, faith, spirituality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>Evolution and Wonder: Understanding Charles Darwin (September 20, 2007)</title>
+   <description>From the Scopes Trial to school board controversies in our day, Charles Darwin and his theory of evolution are portrayed as a refutal of the very idea of God. With Darwin biographer James Moore, we&apos;ll learn about the world in which Darwin formulated his ideas and why he delighted in the beauty of the natural world.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/darwin/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070920_darwin.mp3"; length="50935171" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070920_darwin.mp3</guid>
+   <pubDate>Thu, 20 Sep 2007 11:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Biographer James Moore on Darwin&apos;s delight in beauty in the natural world</itunes:subtitle>
+   <itunes:summary>From the Scopes Trial to school board controversies in our day, Charles Darwin and his theory of evolution are portrayed as a refutal of the very idea of God. With Darwin biographer James Moore, we&apos;ll learn about the world in which Darwin formulated his ideas and why he delighted in the beauty of the natural world.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>evolution, charles darwin, natural selection, adaptation, origin of species, descent of man, variation, intelligent design, creationism, beagle, transmutation, zoonomia, erasmus darwin, down house, god, christian, christianity, krista tippett</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (video) | &quot;Animals at Play&quot;</title>
+   <description>Anyone who has a pet can testify that play is not exclusive to humans. And, in the wild, different species often are at odds. But, Stuart Brown witnessed something different. Here, he describes Norbert Rosing&apos;s striking images of a wild polar bear playing with sled dogs in the wilds of Canada&apos;s Hudson Bay.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/play/audiogallery/soundseen.shtml#slideshow</link>
+   <enclosure url="http://download.publicradio.org/video/speakingoffaith/20070823_play_slideshow.mov"; length="40489301" type="video/mov"></enclosure>
+   <guid>http://download.publicradio.org/video/speakingoffaith/20070823_play_slideshow.mov</guid>
+   <pubDate>Sun, 16 Sep 2007 22:50:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Wild polar bears and sled dogs at play</itunes:subtitle>
+   <itunes:summary>Anyone who has a pet can testify that play is not exclusive to humans. And, in the wild, different species often are at odds. But, Stuart Brown witnessed something different. Here, he describes Norbert Rosing&apos;s striking images of a wild polar bear playing with sled dogs in the wilds of Canada&apos;s Hudson Bay.</itunes:summary>
+   <itunes:duration>2:20</itunes:duration>
+   <itunes:keywords>stuart brown, play, stress, behavior, speaking of faith, krista tippett, tippet, faith, radio, religion, spirituality, christianity, ethics, morality, jane goodall, polar bears, husky, sled dogs</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Surviving the Religion of Mao (September 13, 2007)</title>
+   <description>Anchee Min has recently published the second book in her fictional account of the last Chinese imperial court and its empress. In her personal story and in her writing, Anchee Min offers a window into spiritual instincts and experiences that mark a rapidly evolving China into the present.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/ancheemin/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070913_ancheemin.mp3"; length="50963152" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070913_ancheemin.mp3</guid>
+   <pubDate>Thu, 13 Sep 2007 11:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Anchee Min on the human spirit in Communist China</itunes:subtitle>
+   <itunes:summary>Anchee Min has recently published the second book in her fictional account of the last Chinese imperial court and its empress. In her personal story and in her writing, Anchee Min offers a window into spiritual instincts and experiences that mark a rapidly evolving China into the present.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>speaking of faith, krista tippett, tippet, faith, radio, religion, spirituality, anchee min, mao, zedong, tse-tung, china, cultural revolution, communism, communist, chairman mao, leap forward, buddhism, daoism, christianity, red azalea, madame mao</itunes:keywords>
+  </item>
+
+		<item>
+   <title>SOF EXTRA (audio) | Unedited Interview with Dr. Mehmet Oz</title>
+   <description>Krista&apos;s interview with cardiovascular surgeon Mehmet Oz for &quot;Heart and Soul&quot; underwent some merciless editing in order to fit our hour-long radio format. Here&apos;s your chance to listen to their entire, unedited conversation and observe the editorial process. And let us know what you think.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/heartandsoul/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070830_heartandsoul_uc-oz.mp3"; length="35584882" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070830_heartandsoul_uc-oz.mp3</guid>
+   <pubDate>Wed, 12 Sep 2007 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista&apos;s unedited interview with Dr. Mehmet Oz on the frontiers of integrative medicine Stuart Brown on play</itunes:subtitle>
+   <itunes:summary>Krista&apos;s interview with cardiovascular surgeon Mehmet Oz for &quot;Heart and Soul&quot; underwent some merciless editing in order to fit our hour-long radio format. Here&apos;s your chance to listen to their entire, unedited conversation and observe the editorial process. And let us know what you think.</itunes:summary>
+   <itunes:duration>1:13:39</itunes:duration>
+   <itunes:keywords>speaking of faith, mehmet oz, turkish, heart, surgeon, cardiovascular, homeopathy, muslim, jehovah&apos;s witness, krista tippett, radio, faith, religion, spirituality, unheard cuts</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Days of Awe (September 6, 2007)</title>
+   <description>We delve into the world and meaning of the approaching Jewish High Holy Days -- ten days that span the new year of Rosh Hashanah through Yom Kippur&apos;s rituals of atonement. Sharon Brous, a young rabbi in L.A., is one voice in a Jewish spiritual renaissance that is taking many forms across the U.S. The vast majority of her congregation are people in their 20s and 30s, who, she says, are making life-giving connections between ritual, personal transformation, and relevance in the world.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/daysofawe/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070906_daysofawe.mp3"; length="50963152" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070906_daysofawe.mp3</guid>
+   <pubDate>Thu, 6 Sep 2007 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Sharon Brous speaks about the Jewish High Holy Days</itunes:subtitle>
+   <itunes:summary>We delve into the world and meaning of the approaching Jewish High Holy Days -- ten days that span the new year of Rosh Hashanah through Yom Kippur&apos;s rituals of atonement. Sharon Brous, a young rabbi in L.A., is one voice in a Jewish spiritual renaissance that is taking many forms across the U.S. The vast majority of her congregation are people in their 20s and 30s, who, she says, are making life-giving connections between ritual, personal transformation, and relevance in the world.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>sharon brous, jew, judaism, nephesh, high holy days, rosh hashanah, yom kippur, ikar, speaking of faith, krista tippett, religion, faith, spirituality, shofar, social justice, kol nidre, social justice</itunes:keywords>
+  </item>
+
+		<item>
+   <title>SOF EXTRA (audio) | Unedited Interview with Stuart Brown</title>
+   <description>Krista&apos;s interview with Stuart Brown for &quot;Play, Spirit, and Character&quot; underwent some merciless editing in order to fit our hour-long radio format. Here&apos;s your chance to listen to their entire, unedited conversation and observe the editorial process. And let us know what you think.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/play/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070823_play_uc-brown.mp3"; length="72658401" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070823_play_uc-brown.mp3</guid>
+   <pubDate>Thu, 30 Aug 2007 20:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista&apos;s unedited interview with Stuart Brown on play</itunes:subtitle>
+   <itunes:summary>Krista&apos;s interview with Stuart Brown for &quot;Play, Spirit, and Character&quot; underwent some merciless editing in order to fit our hour-long radio format. Here&apos;s your chance to listen to their entire, unedited conversation and observe the editorial process. And let us know what you think.</itunes:summary>
+   <itunes:duration>1:13:51</itunes:duration>
+   <itunes:keywords>stuart brown, play, krista tippett, speaking of faith, faith, stress, religion, faith, spirituality, unheard cuts</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Heart and Soul: The Integrative Medicine of Dr. Mehmet Oz (August 30, 2007)</title>
+   <description>The word &quot;healing&quot; means &quot;to make whole.&quot; But historically, Western medicine has taken a divided view of human health. It has stressed medical treatments of biological ailments. That may be changing. Mehmet Oz, a cardiovascular surgeon, is part of a new generation of doctors who are taking medicine to new technological and spiritual frontiers.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/heartandsoul/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070830_heartandsoul.mp3"; length="50980453" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070830_heartandsoul.mp3</guid>
+   <pubDate>Thu, 30 Aug 2007 08:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Mehmet Oz looks to traditions and technologies to advance modern medicine</itunes:subtitle>
+   <itunes:summary>The word &quot;healing&quot; means &quot;to make whole.&quot; But historically, Western medicine has taken a divided view of human health. It has stressed medical treatments of biological ailments. That may be changing. Mehmet Oz, a cardiovascular surgeon, is part of a new generation of doctors who are taking medicine to new technological and spiritual frontiers.</itunes:summary>
+   <itunes:duration>53:04</itunes:duration>
+   <itunes:keywords>speaking of faith, mehmet oz, turkish, heart, surgeon, cardiovascular, homeopathy, muslim, jehovah&apos;s witness, krista tippett, radio, faith, religion, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (video) | &quot;Fellowship of the Rings&quot;</title>
+   <description>As part of our expanding SoundSeen series, we partnered with Jessica Roberts and the News21 Initiative at the Unversity of Southern California. Here, we expand on Stuart Brand&apos;s idea of play by showing you the traveling rings on a beach in Santa Monica. Not only do they offer great exercise and a chance to feel like Spiderman or Tarzan, but, some regulars say, the rings offer a unique spiritual practice that brings together their minds and bodies.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.publicradio.org/programs/play/soundseen_video-rings.shtml#slideshow</link>
+   <enclosure url="http://download.publicradio.org/video/speakingoffaith/20070823_play_vid-rings.mov"; length="50940229" type="video/mov"></enclosure>
+   <guid>http://download.publicradio.org/video/speakingoffaith/20070823_play_vid-rings.mov</guid>
+   <pubDate>Mon, 27 Aug 2007 14:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Play and the traveling rings on Santa Monica beach</itunes:subtitle>
+   <itunes:summary>As part of our expanding SoundSeen series, we partnered with Jessica Roberts and the News21 Initiative at the Unversity of Southern California. Here, we expand on Stuart Brand&apos;s idea of play by showing you the traveling rings on a beach in Santa Monica. Not only do they offer great exercise and a chance to feel like Spiderman or Tarzan, but, some regulars say, the rings offer a unique spiritual practice that brings together their minds and bodies.</itunes:summary>
+   <itunes:duration>2:51</itunes:duration>
+   <itunes:keywords>traveling rings, santa monica, play, stuart brown, krista tippett, speaking of faith, meditation, zen, relaxation, stress, religion, faith, spirituality, swinging, jessica roberts, news21, usc</itunes:keywords>
+  </item>
+
+  <item>
+   <title>Play, Spirit, and Character (August 23, 2007)</title>
+   <description>Stuart Brown, a physician and director of the National Institute for Play, says that pleasurable, purposeless activity prevents violence and promotes trust, empathy, and adaptability to life&apos;s complication. He promotes cutting-edge science on human play, and draws on a rich universe of study of intelligent social animals.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/play/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070823_play.mp3"; length="50946947" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070823_play.mp3</guid>
+   <pubDate>Thu, 23 Aug 2007 09:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Stuart Brown on the importance of play</itunes:subtitle>
+   <itunes:summary>Stuart Brown, a physician and director of the National Institute for Play, says that pleasurable, purposeless activity prevents violence and promotes trust, empathy, and adaptability to life&apos;s complication. He promotes cutting-edge science on human play, and draws on a rich universe of study of intelligent social animals.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>stuart brown, play, stress, behavior, speaking of faith, krista tippett, tippet, faith, radio, religion, spirituality, christianity, ethics, morality, jane goodall</itunes:keywords>
+  </item>
+
+ 	<item>
+   <title>SOF EXTRA (slideshow) | &quot;Vodou Brooklyn&quot;</title>
+   <description>As part of our SoundSeen series, photojournalist Stephanie Keith met a Vodou priest at a Buddhist interfaith event in New York. He invited her to photograph and experience the religious world of his Haitian culture. Ten ceremonies later, she offers her images and reflections on these late-night rituals.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/vodou/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/video/speakingoffaith/20070628_vodou_slideshow.mov"; length="50940229" type="video/mov"></enclosure>
+   <guid>http://download.publicradio.org/video/speakingoffaith/20070628_vodou_slideshow.mov</guid>
+   <pubDate>Mon, 20 Aug 2007 13:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Stephanie Keith discusses her images and experiences at Vodou ceremonies</itunes:subtitle>
+   <itunes:summary>As part of our SoundSeen series, photojournalist Stephanie Keith met a Vodou priest at a Buddhist interfaith event in New York. He invited her to photograph and experience the religious world of his Haitian culture. Ten ceremonies later, she offers her images and reflections on these late-night rituals.</itunes:summary>
+   <itunes:duration>5:09</itunes:duration>
+   <itunes:keywords>stephanie keith, vodou, brooklyn, voodoo, legba, ritual, haiti, lwa, ogou, speaking of faith, religion, faith</itunes:keywords>
+  </item>
+
+  <item>
+   <title>Religious Passion, Pluralism, and the Young (August 16, 2007)</title>
+   <description>We revisit Krista&apos;s 2005 conversation with Eboo Patel, who calls al-Qaeda the most effective youth organization in the world. But contrary to the wisdom of secular society, he&apos;s working to deepen rather than tame the religious energies of the young across many traditions. And he believes this may be our only chance for survival.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/religiousyouth/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070816_religiousyouth.mp3"; length="50946947" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070816_religiousyouth.mp3</guid>
+   <pubDate>Thu, 16 Aug 2007 09:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Eboo Patel works with the religious energies of youth</itunes:subtitle>
+   <itunes:summary>We revisit Krista&apos;s 2005 conversation with Eboo Patel, who calls al-Qaeda the most effective youth organization in the world. But contrary to the wisdom of secular society, he&apos;s working to deepen rather than tame the religious energies of the young across many traditions. And he believes this may be our only chance for survival.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>interfaith, eboo patel, interfaith youth core, ecumenism, national council of churches, world council of churches, ncc, wcc, speaking of faith, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+
+  <item>
+   <title>Reviving Sister Aimee (August 9, 2007)</title>
+   <description>Twentieth-century Pentecostal evangelist Aimee Semple McPherson helped to popularize a charismatic faith that touched millions of people and now reaches an estimated half billion people. The eccentricity and integrity of Sister Aimee shed light on some of the most confusing and powerful religious currents in our world today.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/sisteraimee/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070809_sisteraimee.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070809_sisteraimee.mp3</guid>
+   <pubDate>Thu, 9 Aug 2007 13:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Exploring the impact of Aimee Semple McPherson on contemporary Pentecostalism and women</itunes:subtitle>
+   <itunes:summary>Twentieth-century Pentecostal evangelist Aimee Semple McPherson helped to popularize a charismatic faith that touched millions of people and now reaches an estimated half billion people. The eccentricity and integrity of Sister Aimee shed light on some of the most confusing and powerful religious currents in our world today.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>aimee semple mcpherson, angelus temple, pentecostalism, azusa, feminism, christian, christianity, anthea butler, arlene sanchez walsh, krista tippett, aimee simple mcpherson, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>SOF EXTRA (slideshow) | &quot;The Veil as Resistance: Muslim Women and Social Change in Egypt&quot;</title>
+   <description>As part of our SoundSeen series, photojournalist Diana Matar describes her exquisite series of images portraying a new generation of Muslim women in Cairo. These women are reclaiming and redefining the veil as a symbol of political dissent, piety, and fashion in contemporary Egypt.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/muslimwomen/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/video/speakingoffaith/20061207_muslimwomen_slideshow.mov"; length="50940229" type="video/mov"></enclosure>
+   <guid>http://download.publicradio.org/video/speakingoffaith/20061207_muslimwomen_slideshow.mov</guid>
+   <pubDate>Tue, 7 Aug 2007 13:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Diana Matar speaks about her images of the veil</itunes:subtitle>
+   <itunes:summary>As part of our SoundSeen series, photojournalist Diana Matar describes her exquisite series of images portraying a new generation of Muslim women in Cairo. These women are reclaiming and redefining the veil as a symbol of political dissent, piety, and fashion in contemporary Egypt.</itunes:summary>
+   <itunes:duration>5:11</itunes:duration>
+   <itunes:keywords>diana matar, veil, burqa, burkha, chador, egypt, cairo, women, islam, muslim, speaking of faith, religion, faith, arab</itunes:keywords>
+  </item>
+
+  <item>
+   <title>L&apos;Arche: A Community of Brokenness and Beauty (August 2, 2007)</title>
+   <description>We make a radio pilgrimage into the world of L&apos;Arche, communities formed around people with mental disabilities and others who share life with them. At the heart of the L&apos;Arche movement is a religious idea of difference as normal and imperfection as a source of strength.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/larche/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070802_larche.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070802_larche.mp3</guid>
+   <pubDate>Thu, 2 Aug 2007 10:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>A movement that sees imperfection as strength</itunes:subtitle>
+   <itunes:summary>We make a radio pilgrimage into the world of L&apos;Arche, communities formed around people with mental disabilities and others who share life with them. At the heart of the L&apos;Arche movement is a religious idea of difference as normal and imperfection as a source of strength.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>l&apos;arche, larche, larch, jean vanier, horstmann, god, christianity, mentally retarded, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+
+  <item>
+   <title>Latino Migrations and the Changing Face of Religion in the Americas (July 26, 2007)</title>
+   <description>With Salvadoran-American scholar Manuel Vasquez, we explore how religious and spiritual worldviews anchor Latino cultures and are reshaping North American culture in fascinating ways.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/latinomigrations/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070726_latinomigrations.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070726_latinomigrations.mp3</guid>
+   <pubDate>Thu, 26 Jul 2007 08:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Manuel Vasquez on transnationalism in Latino cultures</itunes:subtitle>
+   <itunes:summary>With Salvadoran-American scholar Manuel Vasquez, we explore how religious and spiritual worldviews anchor Latino cultures and are reshaping North American culture in fascinating ways.</itunes:summary>
+   <itunes:duration>53:00</itunes:duration>
+   <itunes:keywords>hispanic, latino, immigration, immigrant, mexico, el salvador, pentecostal, christian, christianity, speaking of faith, krista tippett, manuel vasquez, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+
+  <item>
+   <title>The Ethics of Eating (July 19, 2007)</title>
+   <description>Author Barbara Kingsolver describes an adventure her family undertook to spend one year eating primarily what they could grow or raise themselves. As a citizen and mother more than an expert, she turned her life towards questions many of us are asking. What can climate change and sustainability really have to do my family&apos;s daily routines? Where does the food we eat come from? And why do we resist when the healthiest choices can be a delight?</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/ethicsofeating/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070719_ethicsofeating.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070719_ethicsofeating.mp3</guid>
+   <pubDate>Thu, 19 Jul 2007 06:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Barbara Kingsolver talks about eating locally and better</itunes:subtitle>
+   <itunes:summary>Author Barbara Kingsolver describes an adventure her family undertook to spend one year eating primarily what they could grow or raise themselves. As a citizen and mother more than an expert, she turned her life towards questions many of us are asking. What can climate change and sustainability really have to do my family&apos;s daily routines? Where does the food we eat come from? And why do we resist when the healthiest choices can be a delight?</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>barbara kingsolver, organic, sustainability, green, gardening, krista tippett, poisonwood bible, ethics, religion, spirituality, values, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Stress and the Balance Within (July 12, 2007)</title>
+   <description>Dr. Esther Sternberg works at the molecular level of the mind-body connection. The language of genes, neurotransmitters, and hormones, as she describes it, is helping science understand how our emotions and our bodies are connected -- why stress can make us sick, and loving and believing can help us be well.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/stress/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070712_stress.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070712_stress.mp3</guid>
+   <pubDate>Thu, 12 Jul 2007 00:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Esther Sternberg on why stress can make you sick</itunes:subtitle>
+   <itunes:summary>Dr. Esther Sternberg works at the molecular level of the mind-body connection. The language of genes, neurotransmitters, and hormones, as she describes it, is helping science understand how our emotions and our bodies are connected -- why stress can make us sick, and loving and believing can help us be well.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>krista tippett, esther sternberg, stress, orthodox judaism, jew, crete, asclepius, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Marriage, Family, and Divorce (July 5, 2007)</title>
+   <description>American ideals of courtship and marriage echo with Biblical imagery â &quot;bone of my bones&quot; &quot;flesh of my flesh.&quot; But what does the Bible really say, and how has it been taught across the centuries in which the institution of marriage has changed dramatically? With a rabbi and a New Testament scholar, we explore nuances of biblical teachings about marriage, family, and divorce â the surprising ambiguities of the New Testament and the striking practicality of Jewish tradition across the ages.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/marriageI/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070705_marriageI.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070705_marriageI.mp3</guid>
+   <pubDate>Thu, 5 Jul 2007 00:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>A rabbi and New Testament scholar on what the Bible has to say about love and family</itunes:subtitle>
+   <itunes:summary>American ideals of courtship and marriage echo with Biblical imagery â &quot;bone of my bones&quot; &quot;flesh of my flesh.&quot; But what does the Bible really say, and how has it been taught across the centuries in which the institution of marriage has changed dramatically? With a rabbi and a New Testament scholar, we explore nuances of biblical teachings about marriage, family, and divorce â the surprising ambiguities of the New Testament and the striking practicality of Jewish tradition across the ages.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>religion, marriage, divorce, jew, christian, judaism, luke timothy johnson, elliot dorff, jew, scripture, love, children, agape, get, ketubah, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Living Vodou (June 28, 2007)</title>
+   <description>Vodou is the African-based spiritual world of the people of Haiti, a living religion wherever Haitians are found. It involves dramatic rituals and drumming, trances and dreaming, and belief in a spiritual realm that mirrors the physical world and interacts with it. But contrary to popular notions, it has nothing to do with sticking pins into dolls. With Patrick Bellegarde-Smith, a scholar who is also a Vodou priest, we explore its practices and metaphysics.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/vodou/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070628_vodou.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070628_vodou.mp3</guid>
+   <pubDate>Thu, 28 Jun 2007 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Patrick Bellegarde-Smith talks about the roots of Haitian Vodou</itunes:subtitle>
+   <itunes:summary>Vodou is the African-based spiritual world of the people of Haiti, a living religion wherever Haitians are found. It involves dramatic rituals and drumming, trances and dreaming, and belief in a spiritual realm that mirrors the physical world and interacts with it. But contrary to popular notions, it has nothing to do with sticking pins into dolls. With Patrick Bellegarde-Smith, a scholar who is also a Vodou priest, we explore its practices and metaphysics.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>voodoo, vodou, haiti, brooklyn, legba, ogou, gede, ghede, spirits, possessed, possession, syncretism, catholic, drumming, patrick bellegarde-smith, claudine michel, maya deren, mama lola, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>A Spirit of Defiance (June 21, 2007)</title>
+   <description>A film based on Mariane Pearl&apos;s memoir, &quot;A Mighty Heart,&quot; opens in theaters, with Angelina Jolie in the starring role. Pearl was married to the &quot;Wall Street Journal&quot; correspondent Daniel Pearl, who was murdered by Al Qaeda operatives in Pakistan. He was killed in part because he was American and Jewish. Mariane Pearl, a Buddhist, spoke intimately with Krista about making sense of her husband&apos;s murder and her spiritual ethic on what she calls the front line of the war on terror.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/pearl/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070621_pearl.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070621_pearl.mp3</guid>
+   <pubDate>Wed, 20 Jun 2007 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Mariane Pearl on her spiritual ethic on the front line of the war on terror</itunes:subtitle>
+   <itunes:summary>A film based on Mariane Pearl&apos;s memoir, &quot;A Mighty Heart,&quot; opens in theaters, with Angelina Jolie in the starring role. Pearl was married to the &quot;Wall Street Journal&quot; correspondent Daniel Pearl, who was murdered by Al Qaeda operatives in Pakistan. He was killed in part because he was American and Jewish. Mariane Pearl, a Buddhist, spoke intimately with Krista about making sense of her husband&apos;s murder and her spiritual ethic on what she calls the front line of the war on terror.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>marianne, marianne pearl, mariane pearl, daniel pearl, danny pearl, buddhist, buddhism, chant, jew, judaism, zen, pakistan, karachi, terrorism, abduction, murder, wall street reporter, krista tippett, radio, faith, religion, spirituality, adam pearl</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Joe Carter and the Legacy of the African-American Spiritual (June 14, 2007)</title>
+   <description>We celebrate the life of performer, educator, and humanitarian Joe Carter with his exploration in word and song of the meaning of the African-American spiritual. Before his death last year at the age of 57, he traveled the world and introduced the spiritual to audiences from Novosibirsk to Nigeria. He had a singular understanding of the religious sensibility of this music -- its hidden meanings, as well as its beauty, lament, and hope.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/joecarter/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070614_joecarter.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070614_joecarter.mp3</guid>
+   <pubDate>Thu, 14 Jun 2007 07:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Joe Carter tells stories about and sings Negro spirituals</itunes:subtitle>
+   <itunes:summary>We celebrate the life of performer, educator, and humanitarian Joe Carter with his exploration in word and song of the meaning of the African-American spiritual. Before his death last year at the age of 57, he traveled the world and introduced the spiritual to audiences from Novosibirsk to Nigeria. He had a singular understanding of the religious sensibility of this music -- its hidden meanings, as well as its beauty, lament, and hope.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>speaking of faith, joe carter, negro spiritual, african-american, african american, song, slavery, sorrow songs, slave, krista tippett, apm, american public media, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Remembering Forward: Krista Tippett on Speaking of Faith (June 7, 2007)</title>
+   <description>Before a live audience at the Fitzgerald Theater in St. Paul, Minnesota, Krista reads from her book, &quot;Speaking of Faith.&quot; She traces the intersection of human experience and religious ideas in her own life, just as she asks her guests to do each week. Krista reflects on her adventure of conversation across the world&apos;s traditions â and on the whole story of religion in human life, beyond the headlines of violence.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/rememberingforward/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070607_rememberingforward.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070607_rememberingforward.mp3</guid>
+   <pubDate>Thu, 7 Jun 2007 16:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista Tippett reflects on her conversations in a live performance</itunes:subtitle>
+   <itunes:summary>Before a live audience at the Fitzgerald Theater in St. Paul, Minnesota, Krista reads from her book, &quot;Speaking of Faith.&quot; She traces the intersection of human experience and religious ideas in her own life, just as she asks her guests to do each week. Krista reflects on her adventure of conversation across the world&apos;s traditions â and on the whole story of religion in human life, beyond the headlines of violence.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>krista tippett, live performance, fitzgerald theater, speaking of faith, tippet, faith, radio, religion, spirituality, christianity, ethics, morality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>The Buddha in the World (May 31, 2007)</title>
+   <description>In an adventure of travel and thought across India and Europe, Afghanistan and America, Pankaj Mishra followed the legacy of the Buddha. He developed a provocative critique of modern politics, culture, and economics as he pursued the social relevance of the Buddha&apos;s core questions: Do desiring and acquiring make us happy? Does large-scale political change really address human suffering?</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/buddhaintheworld/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070531_buddhaintheworld.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070531_buddhaintheworld.mp3</guid>
+   <pubDate>Wed, 30 May 2007 14:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Pankaj Mishra and the social relevance of the Buddha&apos; today</itunes:subtitle>
+   <itunes:summary>In an adventure of travel and thought across India and Europe, Afghanistan and America, Pankaj Mishra followed the legacy of the Buddha. He developed a provocative critique of modern politics, culture, and economics as he pursued the social relevance of the Buddha&apos;s core questions: Do desiring and acquiring make us happy? Does large-scale political change really address human suffering?</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>buddha, siddharta, bodh gaya, dalai lama, pankaj mishra, india, hindu, brahmin, enlightenment, zen, speaking of faith, krista tippett, american public media, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>The Soul of War (May 24, 2007)</title>
+   <description>For Memorial Day weekend, we revisit Krista&apos;s 2006 conversation with Chaplain Major John Morris. He reveals his experiences of war and its imprint on a soldier&apos;s spirit. He offers practical guidance for veterans and civilians for the sake of our common life.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/soulofwar/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070524_soulofwar.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070524_soulofwar.mp3</guid>
+   <pubDate>Thu, 24 May 2007 07:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Chaplain Major John Morris on reintegrating veterans from Iraq</itunes:subtitle>
+   <itunes:summary>For Memorial Day weekend, we revisit Krista&apos;s 2006 conversation with Chaplain Major John Morris. He reveals his experiences of war and its imprint on a soldier&apos;s spirit. He offers practical guidance for veterans and civilians for the sake of our common life.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>beyond the yellow ribbon, chaplain, national guard, army, navy, military, iraq, war, christianity, islam, judaism, john morris, fallujah, minnesota, radio, faith, religion, spirituality, morality, speaking of faith, krista tippett</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | &quot;It Is Finished&quot;</title>
+   <description>In this Unheard Cut, Armenian Orthodox theologian Vigen Guroian offers an alternative ending to Mel Gibson&apos; film about the Passion story.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/restoringthesenses/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/extra/guroian-melgibson.mp3"; length="3246432" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/extra/guroian-melgibson.mp3</guid>
+   <pubDate>Tue, 22 May 2007 13:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Vigen Guroian on the ending to Mel Gibson&apos; film</itunes:subtitle>
+   <itunes:summary>In this Unheard Cut, Armenian Orthodox theologian Vigen Guroian offers an alternative ending to Mel Gibson&apos; film about the Passion story.</itunes:summary>
+   <itunes:duration>3:18</itunes:duration>
+   <itunes:keywords>krista tippett, vigen guroian, speaking of faith, mel gibson, passion story, christianity, jesus christ, crucifixion</itunes:keywords>
+  </item>
+
+		<item>
+   <title>The New Monastics: Meeting Shane Claiborne (May 17, 2007)</title>
+   <description>Shane Claiborne is an original voice, a creative spirit, in a gathering movement of young people known as the &quot;new monastics.&quot; With virtues like simplicity and imagination, they are engaging great contradictions of our culture â beginning with the gap between the churches they were raised in, the needs of the poor, and the &quot;loneliness&quot; they find in our culture&apos;s vision of adulthood.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/newmonastics/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070517_newmonastics.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070517_newmonastics.mp3</guid>
+   <pubDate>Thu, 17 May 2007 13:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Shane Claiborne and new monasticism</itunes:subtitle>
+   <itunes:summary>Shane Claiborne is an original voice, a creative spirit, in a gathering movement of young people known as the &quot;new monastics.&quot; With virtues like simplicity and imagination, they are engaging great contradictions of our culture â beginning with the gap between the churches they were raised in, the needs of the poor, and the &quot;loneliness&quot; they find in our culture&apos;s vision of adulthood.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>shane claiborne, the simple way, new monasticism, christian, evangelical, speaking of faith, krista tippett, tippet, faith, radio, religion, spirituality, christianity, ethics, morality, philadelphia</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | 6 of 10 - Krista reads from her book, &quot;Speaking of Faith&quot; (May 15, 2007)</title>
+   <description>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was released in March. In this bonus clip, Krista finds that dealing with terms such as faith and religion and spirituality can be tricky. She&apos;s interested in reclaiming the connotations of these words, as they are lived.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/events.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-6.mp3"; length="4453376" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-6.mp3</guid>
+   <pubDate>Tue, 15 May 2007 16:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista reads the 6th installment of selected passages from her book, &quot;Speaking of Faith&quot;</itunes:subtitle>
+   <itunes:summary>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was released in March. In this bonus clip, Krista finds that dealing with terms such as faith and religion and spirituality can be tricky. She&apos;s interested in reclaiming the connotations of these words, as they are lived.</itunes:summary>
+   <itunes:duration>4:27</itunes:duration>
+   <itunes:keywords>krista tippett, book, speaking of faith, krista tippett, public radio, faith, religion, spirituality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>Science and Hope (May 10, 2007)</title>
+   <description>A conversation with South African Quaker and cosmologist George Ellis. He argues that ethics, like mathematics, is a part of the universe that we discover rather than invent.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/scienceandhope/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070510_scienceandhope.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070510_scienceandhope.mp3</guid>
+   <pubDate>Thu, 10 May 2007 21:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Quaker George Ellis on ethics and cosmology</itunes:subtitle>
+   <itunes:summary>A conversation with South African Quaker and cosmologist George Ellis. He argues that ethics, like mathematics, is a part of the universe that we discover rather than invent.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>speaking of faith, krista tippett, tippet, faith, radio, religion, spirituality, christianity, george ellis, cosmology, science, math, mathematics, ethics, morality, kenosis, suffering, apartheid, whyy, live event, philadelphia, quaker</itunes:keywords>
+  </item>
+
+		<item>
+   <title>A History of Doubt (May 3, 2007)</title>
+   <description>The neglected story of the world&apos;s great doubters with Jennifer Michael Hecht, author of &quot;Doubt: A History.&quot; In an age of strident religious and atheist voices, we&apos;ll explore how questioning, as much as certainty, has driven human life forward.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/doubt/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070503_doubt.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070503_doubt.mp3</guid>
+   <pubDate>Wed, 2 May 2007 13:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>The neglected story of the world&apos;s great doubters with Jennifer Michael Hecht</itunes:subtitle>
+   <itunes:summary>The neglected story of the world&apos;s great doubters with Jennifer Michael Hecht, author of &quot;Doubt: A History.&quot; In an age of strident religious and atheist voices, we&apos;ll explore how questioning, as much as certainty, has driven human life forward.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>doubt, skeptic, cynic, epicurus, job, jennifer michael hecht, socrates, diogenes, atheist, agnostic, faith, judaism, mishnah, jesus, descartes, maimonides, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>The Private Faith of Jimmy Carter (April 26, 2007)</title>
+   <description>Jimmy Carter speaks of his born-again faith with a directness that is striking even in today&apos;s political culture. Hear his reflections about being commander in chief while following "the Prince of Peace"; about upholding the law of the land while privately opposing abortion; and about his marriage of 60 years as a metaphor for the challenge of human relationship both personal and global.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/jimmycarter/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070426_jimmycarter.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070426_jimmycarter.mp3</guid>
+   <pubDate>Thu, 26 Apr 2007 11:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Jimmy Carter reflects on love and politics, public life and the Bible</itunes:subtitle>
+   <itunes:summary>Jimmy Carter speaks of his born-again faith with a directness that is striking even in today&apos;s political culture. Hear his reflections about being commander in chief while following "the Prince of Peace"; about upholding the law of the land while privately opposing abortion; and about his marriage of 60 years as a metaphor for the challenge of human relationship both personal and global.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>jimmy carter, carter center, u.s. president, democrat, evangelical, christian, abortion, krista tippett, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | 5 of 10 - Krista reads from her book, &quot;Speaking of Faith&quot; (April 25, 2007)</title>
+   <description>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was released in March. In this clip, Krista deals with one of the more popular themes of our radio show: science and belief. Krista loves her conversations with scientists. Science, like religion, she says, is about questions more than answers.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/events.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-5.mp3"; length="4453376" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-5.mp3</guid>
+   <pubDate>Wed, 25 Apr 2007 07:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista reads the 5th installment of selected passages from her book, &quot;Speaking of Faith&quot;</itunes:subtitle>
+   <itunes:summary>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was released in March. In this clip, Krista deals with one of the more popular themes of our radio show: science and belief. Krista loves her conversations with scientists. Science, like religion, she says, is about questions more than answers.</itunes:summary>
+   <itunes:duration>4:25</itunes:duration>
+   <itunes:keywords>krista tippett, book, speaking of faith, krista tippett, public radio, faith, religion, spirituality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>A New Voice for Islam (April 19, 2007)</title>
+   <description>Ingrid Mattson, the first woman and first convert to lead the Islamic Society of North America, describes her experience of Islamic spirituality, which she discovered in her twenties after a Catholic upbringing. We probe her unusual perspective on a tumultuous age for Islam in the West and around the world.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/newvoice/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070419_newvoice.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070419_newvoice.mp3</guid>
+   <pubDate>Thu, 19 Apr 2007 11:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Ingrid Mattson discusses the changing roles of Muslim women</itunes:subtitle>
+   <itunes:summary>Ingrid Mattson, the first woman and first convert to lead the Islamic Society of North America, describes her experience of Islamic spirituality, which she discovered in her twenties after a Catholic upbringing. We probe her unusual perspective on a tumultuous age for Islam in the West and around the world.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>ingrid mattson, islam, muslim, islamic society of north america, salat, allah, krista tippett, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | 4 of 10 - Krista reads from her book, &quot;Speaking of Faith&quot; (April 17, 2007)</title>
+   <description>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was released in March. In this clip, Krista tells us how she came to take religion seriously after her tenure in Germany, and looks to her conversation with Karen Armstrong for some of the answers.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/events.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-4.mp3"; length="4453376" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-4.mp3</guid>
+   <pubDate>Tue, 17 Apr 2007 16:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista reads the 4th installment of selected passages from her book, &quot;Speaking of Faith&quot;</itunes:subtitle>
+   <itunes:summary>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was released in March. In this clip, Krista tells us how she came to take religion seriously after her tenure in Germany, and looks to her conversation with Karen Armstrong for some of the answers.</itunes:summary>
+   <itunes:duration>4:24</itunes:duration>
+   <itunes:keywords>krista tippett, book, speaking of faith, krista tippett, public radio, faith, religion, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The Evolution of American Evangelicalism (April 12, 2007)</title>
+   <description>Last month, conservative Christian leaders demanded that Richard Cizik be silenced or removed from his post. They charged that his concerns about climate change and torture have shifted attention away from moral issues such as gay marriage and abortion. But for Cizik, poverty, war, and the environment are moral issues too. We revisit Krista&apos;s 2006 conversation with Cizik that took many listeners by surprise.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/evangelicalevolution/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070412_evangelicalevolution.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070412_evangelicalevolution.mp3</guid>
+   <pubDate>Thu, 12 Apr 2007 06:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Richard Cizik on the Evangelical shift from moral to global concerns</itunes:subtitle>
+   <itunes:summary>Last month, conservative Christian leaders demanded that Richard Cizik be silenced or removed from his post. They charged that his concerns about climate change and torture have shifted attention away from moral issues such as gay marriage and abortion. But for Cizik, poverty, war, and the environment are moral issues too. We revisit Krista&apos;s 2006 conversation with Cizik that took many listeners by surprise.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>evangelical, richard cizik, environment, green, god, christian, christianity, covenant, conservation, pollution, bible, stewardship, national association of evangelicals, krista tippett, ecology, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+
+		<item>
+   <title>SOF EXTRA (audio) | 3 of 10 - Krista reads from her book, &quot;Speaking of Faith&quot; (April 9, 2007)</title>
+   <description>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was just released in March. In this excerpt, Krista tells us how certain religious figures unsettled her political views of the world -- as did the people her politics were designed to save. She reads from the second chapter, &quot;Remembering Forward.&quot;</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/events.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-3.mp3"; length="4453376" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-3.mp3</guid>
+   <pubDate>Mon, 9 Apr 2007 16:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista reads the 3rd installment of selected passages from her book, &quot;Speaking of Faith&quot;</itunes:subtitle>
+   <itunes:summary>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was just released in March. In this excerpt, Krista tells us how certain religious figures unsettled her political views of the world -- as did the people her politics were designed to save. She reads from the second chapter, &quot;Remembering Forward.&quot;</itunes:summary>
+   <itunes:duration>4:23</itunes:duration>
+   <itunes:keywords>krista tippett, book, speaking of faith, krista tippett, public radio, faith, religion, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Restoring the Senses: Life, Gardening, and an Orthodox Easter (April 5, 2007)</title>
+   <description>Theologian Vigen Guroian experiences Easter as &quot;a call to our senses.&quot; We&apos;ll explore his Eastern Orthodox sensibility that is at once more mystical and more earthy than the Christianity dominant in Western culture. And at this time of year and beyond, Guroian does real theology in his garden as richly as in church.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/restoringthesenses/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070405_restoringthesenses.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070405_restoringthesenses.mp3</guid>
+   <pubDate>Thu, 5 Apr 2007 09:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Vigen Guroian on gardening and Orthox Christianity</itunes:subtitle>
+   <itunes:summary>Theologian Vigen Guroian experiences Easter as &quot;a call to our senses.&quot; We&apos;ll explore his Eastern Orthodox sensibility that is at once more mystical and more earthy than the Christianity dominant in Western culture. And at this time of year and beyond, Guroian does real theology in his garden as richly as in church.</itunes:summary>
+   <itunes:duration>53:07</itunes:duration>
+   <itunes:keywords>orthodox, armenian orthodox, eastern orthodox, pascha, easter, holy week, resurrection, crucifixion, vigen guroian, incense, iconography, icon, gardening, speaking of faith, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | 2 of 10 - Krista reads from her book, &quot;Speaking of Faith&quot; (April 2, 2007)</title>
+   <description>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was just released in March. In this excerpt, Krista connects memories of her grandfather&apos;s complexity with what it once meant to be an Evangelical Christian, and what it means today. She reads from the second chapter, &quot;Remembering Forward.&quot;</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/events.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-2.mp3"; length="4453376" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-2.mp3</guid>
+   <pubDate>Mon, 2 Apr 2007 15:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista reads the 2nd installment of selected passages from her book, &quot;Speaking of Faith&quot;</itunes:subtitle>
+   <itunes:summary>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was just released in March. In this excerpt, Krista connects memories of her grandfather&apos;s complexity with what it once meant to be an Evangelical Christian, and what it means today. She reads from the second chapter, &quot;Remembering Forward.&quot;</itunes:summary>
+   <itunes:duration>5:48</itunes:duration>
+   <itunes:keywords>krista tippett, book, speaking of faith, krista tippett, public radio, faith, religion, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Exodus, Cargo of Hidden Stories (March 29, 2007)</title>
+   <description>Avivah Zornberg is one of the great, creative interpreters of Talmud and Torah in the contemporary world. She guides us through the Exodus story that is remembered at Passover, and that has inspired oppressed peoples in many cultures across history. We find meaning in the text that Cecil B. DeMille and Disney never imagined â about the worst and the best of human nature, and the realities and ironies of human freedom.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/exodus/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070329_exodus.mp3"; length="51243008" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070329_exodus.mp3</guid>
+   <pubDate>Wed, 28 Mar 2007 14:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Avivah Zornberg explains midrash and the story of Exodus</itunes:subtitle>
+   <itunes:summary>Avivah Zornberg is one of the great, creative interpreters of Talmud and Torah in the contemporary world. She guides us through the Exodus story that is remembered at Passover, and that has inspired oppressed peoples in many cultures across history. We find meaning in the text that Cecil B. DeMille and Disney never imagined â about the worst and the best of human nature, and the realities and ironies of human freedom.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>exodus, avivah zornberg, moses, moshe, passover, seder, circumcision, torah, talmud, jew, judaism, israelites, red sea, pharaoh, matzoh, unleavened bread, speaking of faith, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>SOF EXTRA (audio) | 1 of 10 - Krista reads from her book, &quot;Speaking of Faith&quot; (March 26, 2007)</title>
+   <description>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was just released in March. In this excerpt, Krista reads from the first chapter, &quot;Genesis: How We Got Here.&quot;</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/events.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-1.mp3"; length="4453376" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/extra/book_tippett-speakingoffaith-1.mp3</guid>
+   <pubDate>Mon, 26 Mar 2007 15:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Krista reads the first installment of selected passages from her book, &quot;Speaking of Faith&quot;</itunes:subtitle>
+   <itunes:summary>We&apos;ve selected a series of passages from the writings of our very own -- Krista Tippett. Her new book, titled &quot;Speaking of Faith,&quot; was just released in March. In this excerpt, Krista reads from the first chapter, &quot;Genesis: How We Got Here.&quot;</itunes:summary>
+   <itunes:duration>4:33</itunes:duration>
+   <itunes:keywords>krista tippett, book, speaking of faith, krista tippett, public radio, faith, religion, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Truth and Reconciliation (March 22, 2007)</title>
+   <description>South Africa&apos;s Truth and Reconciliation Commission created a new model of national healing after a history of extreme violence. Two people who did the work of the commission -- Charles Villa-Vicencio, a white theologian, and Pumla Gobodo-Madikizela, a black psychologist -- speak on the religious lessons and legacy of that process.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/truth/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070322_truth.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070322_truth.mp3</guid>
+   <pubDate>Wed, 21 Mar 2007 14:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Pumla Gobodo-Madikizela and Charles Villa-Vicencio talk about their role in the South African TRC</itunes:subtitle>
+   <itunes:summary>South Africa&apos;s Truth and Reconciliation Commission created a new model of national healing after a history of extreme violence. Two people who did the work of the commission -- Charles Villa-Vicencio, a white theologian, and Pumla Gobodo-Madikizela, a black psychologist -- speak on the religious lessons and legacy of that process.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>truth and reconciliation commission, south africa, trc, apartheid, villa-vicencio, gobodo-madikizela, tutu, mandela, krista tippett, brian mitchell, forgiveness, radio, program, faith, life, religion, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Einstein&apos;s Ethics (March 15, 2007)</title>
+   <description>In the final episode of this two-part series, we delve into Einstein&apos;s Jewish identity, his passionate engagement around issues of war and race, and modern extensions of his ethical and scientific perspectives with theoretical physicist S. James Gates, Jr. and biographer Thomas Levenson.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/einstein/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070315_einsteinsethics.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070315_einsteinsethics.mp3</guid>
+   <pubDate>Wed, 14 Mar 2007 00:01:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>S. James Gates, Jr. and Thomas Levenson delve into Einstein&apos;s Jewish identity and engagement around issues of war and race</itunes:subtitle>
+   <itunes:summary>In the final episode of this two-part series, we delve into Einstein&apos;s Jewish identity, his passionate engagement around issues of war and race, and modern extensions of his ethical and scientific perspectives with theoretical physicist S. James Gates, Jr. and biographer Thomas Levenson.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>albert einstein, James Gates, Thomas Levenson, physics, physicist, racism, robeson, marian anderson, relativity, special relativity, general relativity, germany, humanitarian, jew, jewish, war, science, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Einstein&apos;s God (March 8, 2007)</title>
+   <description>In the first episode of this two-part series, we use Einstein&apos;s science as a starting point for exploring the great physicist&apos;s perspective on ideas such as mystery, eternity, and the mind of God -- with theoretical physicists Freeman Dyson and Paul Davies.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/einstein/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070308_einsteinsgod.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070308_einsteinsgod.mp3</guid>
+   <pubDate>Wed, 7 Mar 2007 00:01:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Freeman Dyson and Paul Davies explore Einstein&apos;s way of thinking about mystery, eternity, and the mind of God</itunes:subtitle>
+   <itunes:summary>In the first episode of this two-part series, we use Einstein&apos;s science as a starting point for exploring the great physicist&apos;s perspective on ideas such as mystery, eternity, and the mind of God -- with theoretical physicists Freeman Dyson and Paul Davies.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>albert einstein, freeman dyson, paul davies, physics, physicist, relativity, special relativity, general relativity, germany, humanitarian, jew, jewish, war, science, prize, god</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The Ecstatic Faith of Rumi (March 1, 2007)</title>
+   <description>The 13th-century Muslim mystic and poet Rumi has long shaped Muslims around the world and has now become popular in the West. Rumi created a new language of love within the Islamic mystical tradition of Sufism. We hear his poetry as we delve into his world and listen for its echoes in our own.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/rumi/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070301_rumi.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070301_rumi.mp3</guid>
+   <pubDate>Thu, 1 Mar 2007 00:01:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Fatemeh Keshavarz brings Rumi&apos;s exuberant poetry to life</itunes:subtitle>
+   <itunes:summary>The 13th-century Muslim mystic and poet Rumi has long shaped Muslims around the world and has now become popular in the West. Rumi created a new language of love within the Islamic mystical tradition of Sufism. We hear his poetry as we delve into his world and listen for its echoes in our own.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>rumi, persian, sufi, sufism, poetry, shams, fatemeh keshavarz, islam, muslim, iran, afghanistan, dervish, whirling dervish, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Sacred Wilderness, An African Story (February 22, 2007)</title>
+   <description>Isabel Mukonyora has followed and studied a religious movement of her Shona people, the Masowe Apostles, that embraces Christian tradition while addressing the drama of African life and history. The founder of this movement, Johane Masowe, emphasized an ancient Jewish and Christian pull to the wilderness. Through her stories we explore modern African spirituality, diaspora, and finding meaning, as Mukonyora says, &quot;in the margins.&quot;</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/sacredwilderness/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070222_sacredwilderness.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070222_sacredwilderness.mp3</guid>
+   <pubDate>Thu, 22 Feb 2007 09:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Isabel Mukonyora on the Masowe Apostles of Zimbabwe and greater Africa</itunes:subtitle>
+   <itunes:summary>Isabel Mukonyora has followed and studied a religious movement of her Shona people, the Masowe Apostles, that embraces Christian tradition while addressing the drama of African life and history. The founder of this movement, Johane Masowe, emphasized an ancient Jewish and Christian pull to the wilderness. Through her stories we explore modern African spirituality, diaspora, and finding meaning, as Mukonyora says, &quot;in the margins.&quot;</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>isabel mukonyora, masowe, zimbabwe, indigenous religion, africa, christianity, colonialism, johane masowe, harare, diaspora, radio, faith, religion, spirituality, morality, krista tippett</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Pagans Ancient and Modern (February 15, 2007)</title>
+   <description>Environmentalist Adrian Ivakhiv pursued the ecological impulse of Paganism, from its ancient roots to its modern revival in Europe and North America. He discusses his observations about the spirit of Paganism and its influence on everyday Western culture â and even on old-time religion.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/pagans/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070215_pagans.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070215_pagans.mp3</guid>
+   <pubDate>Thu, 15 Feb 2007 09:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Adrian Ivakhiv about the historical influence of Paganism</itunes:subtitle>
+   <itunes:summary>Environmentalist Adrian Ivakhiv pursued the ecological impulse of Paganism, from its ancient roots to its modern revival in Europe and North America. He discusses his observations about the spirit of Paganism and its influence on everyday Western culture â and even on old-time religion.
+</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>pagan, paganism, neopagan, druids, wicca, wiccans, heathen, carpathian, ukraine, krista tippett, adrian ivakhiv, ecology, environment, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Children of Abraham (February 8, 2007)</title>
+   <description>Abraham is the common patriarch of Judaism, Islam, and Christianity. His story spans dramatic territory of the modern world â both physical and spiritual â beginning in southern Iraq and ending in the West Bank city of Hebron. Journalist Bruce Feiler went in search of Abraham to understand the crises and possibilities of the 21st-century world. The story of Abraham, Feiler says, illuminates God and politics, sacred geography, and modern spirituality.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/abraham/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070208_abraham.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070208_abraham.mp3</guid>
+   <pubDate>Thu, 8 Feb 2007 09:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Bruce Feiler on why the Abrahamic story is the key to politics, land disputes, and peace in the Middle East</itunes:subtitle>
+   <itunes:summary>Abraham is the common patriarch of Judaism, Islam, and Christianity. His story spans dramatic territory of the modern world â both physical and spiritual â beginning in southern Iraq and ending in the West Bank city of Hebron. Journalist Bruce Feiler went in search of Abraham to understand the crises and possibilities of the 21st-century world. The story of Abraham, Feiler says, illuminates God and politics, sacred geography, and modern spirituality.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>bruce feiler, abraham, hebron, jewish, muslim, christian, Machpelah, isaac, sarah, dylan, terrorism, 9/11, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Whale Songs and Elephant Loves (February 1, 2007)</title>
+   <description>Katy Payne is an acoustic biologist with a Quaker sensibility. In a career that has spanned the wild coast of Argentina and the rainforests of Africa, she discovered that humpback whales compose ever-changing songs; and that elephants communicate across long distances by way of sounds beyond the realm of human hearing. She reflects on life in this world through listening to two of its largest and most mysterious creatures.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/whalesongs/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070201_whalesongs.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070201_whalesongs.mp3</guid>
+   <pubDate>Thu, 1 Feb 2007 12:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Katy Payne on listening and humanity</itunes:subtitle>
+   <itunes:summary>Our guest, Katy Payne, is an acoustic biologist with a Quaker sensibility. In a career that has spanned the wild coast of Argentina and the rainforests of Africa, she discovered that humpback whales compose ever-changing songs; and that elephants communicate across long distances by way of sounds beyond the realm of human hearing. She reflects on life in this world through listening to two of its largest and most mysterious creatures.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>whales, elephants, humpback, africa, culling, conservation, song, quaker, christian, krista tippett, faith, radio, religion, spirituality, tippet</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Diplomacy and Religion in the 21st Century (January 25, 2007)</title>
+   <description>The greatest threat in the post-Cold War world, says Douglas Johnston, is the prospective marriage of religious extremism with weapons of mass destruction. Yet the U.S. spends most of its time, resources, and weapons fighting the symptoms of this threat, not the cause. The diplomacy of the future, he is showing, must engage religion as part of the strategic solution to global conflicts.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/diplomacyandreligion/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070125_diplomacyandreligion.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070125_diplomacyandreligion.mp3</guid>
+   <pubDate>Thu, 18 Jan 2007 14:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Douglas Johnston argues that religion must be part of the political solution to global conflicts</itunes:subtitle>
+   <itunes:summary>The greatest threat in the post-Cold War world, says Douglas Johnston, is the prospective marriage of religious extremism with weapons of mass destruction. Yet the U.S. spends most of its time, resources, and weapons fighting the symptoms of this threat, not the cause. The diplomacy of the future, he is showing, must engage religion as part of the strategic solution to global conflicts.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>religious freedom, douglas johnston, foreign policy, interfaith, iran, sudan, christian, krista tippett, faith, radio, religion, spirituality, tippet</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The Biology of the Spirit (January 18, 2007)</title>
+   <description>Author and surgeon Sherwin Nuland reflects on life by way of elegant detail about physiological realities. He speaks about his sense of wonder at the body&apos;s capacity to sustain life and support our pursuits of order and meaning, and why he believes the spirit is an evolutionary accomplishment of the brain.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/biologyofthespirit/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070118_biologyofthespirit.mp3"; length="51245470" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070118_biologyofthespirit.mp3</guid>
+   <pubDate>Thu, 18 Jan 2007 14:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Sherwin Nuland on the spirit as an evolutionary accomplishment of the brain</itunes:subtitle>
+   <itunes:summary>Author and surgeon Sherwin Nuland reflects on life by way of elegant detail about physiological realities. He speaks about his sense of wonder at the body&apos;s capacity to sustain life and support our pursuits of order and meaning, and why he believes the spirit is an evolutionary accomplishment of the brain.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>sherwin nuland, brain, how we die, wisdom of the body, spirit, evolution, yale, christian, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Discovering Where We Live: Reimagining Environmentalism (January 11, 2007)</title>
+   <description>Environmentalism and climate change are hot topics; yet they&apos;re still often imagined as the territory of scientists, expert activists, and those who can afford to be environmentally conscious. We discover two people who are transforming the ecology of their immediate worlds â Majora Carter, a secular urban strategist unraveling ties between ecology and injustice as she strives for balance and beauty in the South Bronx; and Calvin DeWitt, a scientist and evangelical Christian who&apos;s been pioneering sustainability in the rural Midwest for three decades.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/discoveringwherewelive/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070111_discoveringwherewelive.mp3"; length="51271017" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070111_discoveringwherewelive.mp3</guid>
+   <pubDate>Thu, 11 Jan 2007 11:15:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Majora Carter and Calvin DeWitt on the sustainability in their communities</itunes:subtitle>
+   <itunes:summary>Environmentalism and climate change are hot topics; yet they&apos;re still often imagined as the territory of scientists, expert activists, and those who can afford to be environmentally conscious. We discover two people who are transforming the ecology of their immediate worlds â Majora Carter, a secular urban strategist unraveling ties between ecology and injustice as she strives for balance and beauty in the South Bronx; and Calvin DeWitt, a scientist and evangelical Christian who&apos;s been pioneering sustainability in the rural Midwest for three decades.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>environment, environmentalism, ecology, majora carter, cal dewitt, south bronx, dunn, christian, evangelical, urban heat island, marsh, reclamation, krista tippett, faith, radio, religion, spirituality, tippet</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Brother Thay: A Radio Pilgrimage with Thich Nhat Hanh (January 4, 2007)</title>
+   <description>Zen master and poet Thich Nhat Hanh offers stark, gentle wisdom for living in a world of anger and violence. This hour we&apos;ll revisit my intimate 2003 conversation with him and with others who make use of his teachings in surprising settings. We&apos;ll explore the spiritual discipline of mindfulness, tangibly affecting suffering in the world by facing it in oneself and in others head-on.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/thichnhathanh/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20070104_thichnhathanh.mp3"; length="51271017" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20070104_thichnhathanh.mp3</guid>
+   <pubDate>Thu, 4 Jan 2007 07:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Thich Nhat Hanh on mindfulness, being peace, and engaged Buddhism</itunes:subtitle>
+   <itunes:summary>Zen master and poet Thich Nhat Hanh offers stark, gentle wisdom for living in a world of anger and violence. This hour we&apos;ll revisit my intimate 2003 conversation with him and with others who make use of his teachings in surprising settings. We&apos;ll explore the spiritual discipline of mindfulness, tangibly affecting suffering in the world by facing it in oneself and in others head-on.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>thich nhat hanh, tic, buddha, buddhism, plum village, thomas merton, engaged Buddhism, larry ward, maples, dharma, boddhisatva, monk, vietnam, viet nam, sangha, green lake conference center, krista tippett</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Approaching Prayer (December 28, 2006)</title>
+   <description>We explore creative and generous approaches to prayer in three very different lives: Hindu chant with musician Anoushka Shankar; poetry and &quot;non-religious&quot; prayer with translator Stephen Mitchell; and theologian Roberta Bondi on learning to pray with the Desert Fathers and Mothers. Also, a reflection on prayer by poet and memoirist Patricia Hampl.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/approachingprayer/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061228_approachingprayer.mp3"; length="51271017" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061228_approachingprayer.mp3</guid>
+   <pubDate>Thu, 28 Dec 2006 07:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>A musician, translator, and theologian tell their creative approach to prayer</itunes:subtitle>
+   <itunes:summary>We explore creative and generous approaches to prayer in three very different lives: Hindu chant with musician Anoushka Shankar; poetry and &quot;non-religious&quot; prayer with translator Stephen Mitchell; and theologian Roberta Bondi on learning to pray with the Desert Fathers and Mothers. Also, a reflection on prayer by poet and memoirist Patricia Hampl.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>prayer, bondi, shankar, mitchell, hindu, chant, desert fathers, desert mothers, jew, judaism, hasid, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Planting the Future (December 21, 2006)</title>
+   <description>For the holiday season, a story of human activism, courage and hope. Krista speaks with Kenyan environmentalist and 2004 Nobel Peace Prize Laureate Wangari Maathai. Sitting in her remarkable presence, it is not hard to imagine that this woman stood up to a dictator and won, and that she has fought off encroaching desert by planting 30 million trees. Maathai speaks about the global balance of human and natural resources, and she shares her thoughts on where God resides.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/plantingthefuture/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061221_plantingthefuture.mp3"; length="51271017" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061221_plantingthefuture.mp3</guid>
+   <pubDate>Thu, 21 Dec 2006 00:01:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Wangari Maathai on the global balance of human and natural resources, and where God resides</itunes:subtitle>
+   <itunes:summary>For the holiday season, a story of human activism, courage and hope. Krista speaks with Kenyan environmentalist and 2004 Nobel Peace Prize Laureate Wangari Maathai. Sitting in her remarkable presence, it is not hard to imagine that this woman stood up to a dictator and won, and that she has fought off encroaching desert by planting 30 million trees. Maathai speaks about the global balance of human and natural resources, and she shares her thoughts on where God resides.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>nobel peace prize, kenya, green belt movement, conservation, deforestation, feminism, poverty, catholic, kikuyu, wangari maathai, krista tippett, ecology, environment, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>No More Taking Sides: An Israeli-Palestinian Story (December 14, 2006)</title>
+   <description>Robi Damelin lost her son David to a Palestinian sniper. Ali Abu Awwad lost his older brother Yousef to an Israeli soldier. But, instead of clinging to traditional ideologies and turning their pain into more violence, they&apos;ve decided to understand the other side â Israeli and Palestinian â by sharing their pain and their humanity. They tell of a gathering network of survivors who share their grief, their stories of loved ones, and their ideas for lasting peace. They don&apos;t want to be right; they want to be honest.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/nomore/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061214_nomore.mp3"; length="51271017" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061214_nomore.mp3</guid>
+   <pubDate>Thu, 14 Dec 2006 09:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Robi Damelin and Ali Abu Awwad share their pain and their humanity about their loved ones&apos; deaths</itunes:subtitle>
+   <itunes:summary>Robi Damelin lost her son David to a Palestinian sniper. Ali Abu Awwad lost his older brother Yousef to an Israeli soldier. But, instead of clinging to traditional ideologies and turning their pain into more violence, they&apos;ve decided to understand the other side â Israeli and Palestinian â by sharing their pain and their humanity. They tell of a gathering network of survivors who share their grief, their stories of loved ones, and their ideas for lasting peace. They don&apos;t want to be right; they want to be honest.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>judaism, islam, muslim, jew, israel, palestine, robi damelin, ali abu awwad, sniper, conflict, holy land, killing, checkpoints, holocaust, south africa, christian, divestment, krista tippett, faith, radio, religion, spirituality</itunes:keywords>
+  </item>
+		
+  <item>
+   <title>Muslim Women and Other Misunderstandings (December 7, 2006)</title>
+   <description>Is our Western concern about women in Islam really a concern for the well-being of women? Is the veil a symptom of their problems, or ours? Our guest Leila Ahmed provides essential background and challenges Western thinking on these and other questions.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/muslimwomen/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061207_muslimwomen.mp3"; length="51271017" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061207_muslimwomen.mp3</guid>
+   <pubDate>Thu, 7 Dec 2006 07:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Leila Ahmed challenges Western attitudes toward the veil</itunes:subtitle>
+   <itunes:summary>Is our Western concern about women in Islam really a concern for the well-being of women? Is the veil a symptom of their problems, or ours? Our guest Leila Ahmed provides essential background and challenges Western thinking on these and other questions.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>muslim, islam, veil, burkha, burka, hijab, egypt, sharia law, rights, leila ahmed, krista tippett, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Money and Moral Balance (November 30, 2006)</title>
+   <description>The sales are starting, the stores are open late, and many of us are gearing up to spend more money than we actually have in a holiday season with deep roots in religion. With family financial advisor Nathan Dungan, we&apos;ll explore turmoil many of us experience with money in our day-to-day lives â and how we might work towards a moral and practical balance for ourselves and the next generation.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/moneymorals/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061130_moneymorals.mp3"; length="51271017" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061130_moneymorals.mp3</guid>
+   <pubDate>Thu, 30 Nov 2006 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Nathan Dungan discusses his Share Save Spend approach to personal finance</itunes:subtitle>
+   <itunes:summary>The sales are starting, the stores are open late, and many of us are gearing up to spend more money than we actually have in a holiday season with deep roots in religion. With family financial advisor Nathan Dungan, we&apos;ll explore turmoil many of us experience with money in our day-to-day lives â and how we might work towards a moral and practical balance for ourselves and the next generation.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>money, morals, ethics, financial planning, christian, debt, credit card, investing, socially responsible investing, nathan dungan, krista tippett</itunes:keywords>
+  </item>
+
+		
+		<item>
+   <title>The Spirituality of Parenting (November 23, 2006)</title>
+   <description>&quot;We want our children to be gracious and grateful, we want them to have courage in difficult times, we want them to have a sense of joy and purpose. That&apos;s what it means to nurture their spiritual life.&quot; For Thanksgiving, we bring back our conversation with Rabbi Sandy Sasso, who helps children and adults of many backgrounds discuss religion and ethics together.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/spiritualityofparenting/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061123_spiritualityofparenting.mp3"; length="51228800" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061123_spiritualityofparenting.mp3</guid>
+   <pubDate>Tue, 21 Nov 2006 16:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Rabbi Sandy Sasso on the spiritual moorings of children and adults</itunes:subtitle>
+   <itunes:summary>&quot;We want our children to be gracious and grateful, we want them to have courage in difficult times, we want them to have a sense of joy and purpose. That&apos;s what it means to nurture their spiritual life.&quot; For Thanksgiving, we bring back our conversation with Rabbi Sandy Sasso, who helps children and adults of many backgrounds discuss religion and ethics together.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>children, sandy sasso, judaism, jewish, mishnah, midrash, secularism, krista tippett, radio, faith, life, religion, spirituality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The Soul in Depression (November 16, 2006)</title>
+   <description>Nearly ten million Americans are diagnosed with clinical depression. And, as we have become more conversant about the disease, a body of literature has appeared by people who have struggled with depression and found it to be a lesson in the nature of the human soul. Krista engages some of these voices: author Andrew Solomon, poet and psychologist Anita Barrows, and Quaker educator Parker Palmer.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/depression/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061116_depression.mp3"; length="51228800" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061116_depression.mp3</guid>
+   <pubDate>Thu, 16 Nov 2006 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Solomon, Barrows, and Palmer on depression and the nature of the human soul</itunes:subtitle>
+   <itunes:summary>Nearly ten million Americans are diagnosed with clinical depression. And, as we have become more conversant about the disease, a body of literature has appeared by people who have struggled with depression and found it to be a lesson in the nature of the human soul. Krista engages some of these voices: author Andrew Solomon, poet and psychologist Anita Barrows, and Quaker educator Parker Palmer.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>depression, suicide, noonday demon, mental health, Andrew Solomon, Anita Barrows, Parker Palmer, krista tippett, anti-depressant, radio, faith, life, religion, spirituality</itunes:keywords>
+  </item>		
+		
+		<item>
+   <title>The Heart&apos;s Reason: Hinduism and Science (November 9, 2006)</title>
+   <description>U.S. culture&apos;s clash between religion and science is almost exclusively driven by Christian instincts and arguments. Hindu physicist V.V. Raman offers another view of religion, the universe, and the complementarity of the questions of science and faith.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/heartsreason/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061109_heartsreason.mp3"; length="51357949" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061109_heartsreason.mp3</guid>
+   <pubDate>Thu, 9 Nov 2006 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>V.V. Raman on Hinduism and Science</itunes:subtitle>
+   <itunes:summary>U.S. culture&apos;s clash between religion and science is almost exclusively driven by Christian instincts and arguments. Hindu physicist V.V. Raman offers another view of religion, the universe, and the complementarity of the questions of science and faith.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>hindu, hinduism, ganesha, saraswati, sarasvati, gods, polytheism, raman, karma, dharma, reincarnation, india, physics, science, caste, brahmin, bhagavad gita, rig veda, faith, radio, religion, spirituality, speaking of faith, krista tippett, tippet</itunes:keywords>
+  </item>		
+		
+		<item>
+   <title>America&apos;s Changing Religious Landscape (November 2, 2006)</title>
+   <description>The great public theologian and historian Martin Marty describes how religion in U.S. politics has been gathering narrative shape for decades. He offers wisdom, good humor, and a generous imagination about evolving religious dynamics in U.S. and global life.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/marty/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061102_marty.mp3"; length="51257053" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061102_marty.mp3</guid>
+   <pubDate>Thu, 2 Nov 2006 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Martin Marty on religion in U.S. politics</itunes:subtitle>
+   <itunes:summary>The great public theologian and historian Martin Marty describes how religion in U.S. politics has been gathering narrative shape for decades. He offers wisdom, good humor, and a generous imagination about evolving religious dynamics in U.S. and global life.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>martin marty, protestant, fundamentalism, god, christianity, catholic, krista tippett, radio, faith, religion, spirituality, morality, politics, religious right</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The Religious Roots of American Democracy (October 26, 2006)</title>
+   <description>Philosopher Jacob Needleman speaks on the spiritual and moral ideals of the American founders â and how these ideals resonate in our culture today. Democracy, Needleman says, is inner work, not just a set of outward structures.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/democracy/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061026_democracy.mp3"; length="51250447" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061026_democracy.mp3</guid>
+   <pubDate>Thu, 26 Oct 2006 09:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Jacob Needleman traces the spiritual and moral ideas of America&apos;s founders</itunes:subtitle>
+   <itunes:summary>Philosopher Jacob Needleman speaks on the spiritual and moral ideals of the American founders â and how these ideals resonate in our culture today. Democracy, Needleman says, is inner work, not just a set of outward structures.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>democracy, needleman, declaration of independence, quaker, ephrata, pluralism, soul, mystic community, thomas jefferson, george washington, thomas paine, douglass, common sense, faith, religion, spirituality, christianity, krista tippett</itunes:keywords>
+  </item>
+		
+		<item>	
+		 <title>A Spirit of Defiance (October 19, 2006)</title>
+   <description>In this close-up look at the human dynamics of the war on terror, Mariane Pearl speaks about her husband, journalist Daniel Pearl, who was murdered in Pakistan shortly after 9/11. She talks about Buddhism, her ethic of spiritual defiance, and her hopes for the future.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/pearl/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061019_pearl.mp3"; length="51250447" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061019_pearl.mp3</guid>
+   <pubDate>Thu, 19 Oct 2006 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Mariane Pearl speaks about terrorism, love, and survival</itunes:subtitle>
+   <itunes:summary>In this close-up look at the human dynamics of the war on terror, Mariane Pearl speaks about her husband, journalist Daniel Pearl, who was murdered in Pakistan shortly after 9/11. She talks about Buddhism, her ethic of spiritual defiance, and her hopes for the future.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>terrorism, buddhism, mariane pearl, marianne pearl, daniel pearl, danny pearl, buddhist, jew, judaism, zen, pakistan, karachi, abduction, murder, wall street reporter, krista tippett</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Globalization and the Rise of Religion (October 12, 2006)</title>
+   <description>Experts once predicted that as the world grew more modern, religion would decline. Precisely the opposite has proven true. Two leading thinkers, Boston University sociologist Peter Berger and Harvard Business School&apos;s Rosabeth Moss Kanter, discuss why religion of all kinds is increasingly shaping discussions of world politics and the global economy and political order.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/globalization/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061012_globalization.mp3"; length="51250447" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061012_globalization.mp3</guid>
+   <pubDate>Thu, 12 Oct 2006 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Peter Berger and Rosabeth Moss Kanter discuss the shaping role of religion in world politics and the global economy</itunes:subtitle>
+   <itunes:summary>Experts once predicted that as the world grew more modern, religion would decline. Precisely the opposite has proven true. Two leading thinkers, Boston University sociologist Peter Berger and Harvard Business School&apos;s Rosabeth Moss Kanter, discuss why religion of all kinds is increasingly shaping discussions of world politics and the global economy and political order.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>globalization, peter berger, kanter, pentecostalism, secularization, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>The Body&apos;s Grace: Matthew Sanford&apos;s Story (October 5, 2006)</title>
+   <description>This program presents an unusual take on the mind-body connection with author and yoga teacher Matthew Sanford. He&apos;s been a paraplegic since the age of 13. He shares his wisdom for us all on knowing the strength and grace of our bodies even in the face of illness, aging, and death.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/bodysgrace/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20061005_bodysgrace.mp3"; length="51222671" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20061005_bodysgrace.mp3</guid>
+   <pubDate>Thu, 5 Oct 2006 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Matthew Sanford on yoga, disability, and the mind-body connection</itunes:subtitle>
+   <itunes:summary>This program presents an unusual take on the mind-body connection with author and yoga teacher Matthew Sanford. He&apos;s been a paraplegic since the age of 13. He shares his wisdom for us all on knowing the strength and grace of our bodies even in the face of illness, aging, and death.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>matthew sanford, yoga, iyengar, waking, healing, paraplegic, handicap, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Faith Fired by Literature (September 28, 2006)</title>
+   <description>Art, life, and religious faith converge in Paul Elie&apos;s unusual biography of the intersecting stories of four literary Americans of the 20th century: Trappist monk Thomas Merton, social activist Dorothy Day, and fiction writers Walker Percy and Flannery O&apos;Connor. &quot;Certain books, certain writers,&quot; Elie says, &quot;reach us at the center of ourselves.&quot;</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/faithfiredbylit/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060928_faithfiredbylit-uw.mp3"; length="51170807" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060928_faithfiredbylit-uw.mp3</guid>
+   <pubDate>Thu, 28 Sep 2006 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Paul Elie explores the religious lives of Thomas Merton, Walker Percy, Flannery O&apos;Connor, and Dorothy Day</itunes:subtitle>
+   <itunes:summary>Art, life, and religious faith converge in Paul Elie&apos;s unusual biography of the intersecting stories of four literary Americans of the 20th century: Trappist monk Thomas Merton, social activist Dorothy Day, and fiction writers Walker Percy and Flannery O&apos;Connor. &quot;Certain books, certain writers,&quot; Elie says, &quot;reach us at the center of ourselves.&quot;</itunes:summary>
+   <itunes:duration>53:11</itunes:duration>
+   <itunes:keywords>paul elie, thomas merton, flannery o&apos;connor, walker percy, dorothy day, catholic worker, catholic, poverty, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+
+  <item>
+   <title>Listening Generously: The Medicine of Rachel Naomi Remen (September 21, 2006)</title>
+   <description>Physician and author Rachel Naomi Remen intertwines stories from life and her practice of oncology. She gives perspective on the core human experiences of loss and disappointment and the achievable work of healing and repair. How we approach this, she says, profoundly shapes our individual lives and that of our society.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/listeninggenerously/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060921_listeninggenerously-uw.mp3"; length="51196457" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060921_listeninggenerously-uw.mp3</guid>
+   <pubDate>Thu, 21 Sep 2006 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Dr. Rachel Naomi Remen on healing and story in medicine</itunes:subtitle>
+   <itunes:summary>Physician and author Rachel Naomi Remen intertwines stories from life and her practice of oncology. She gives perspective on the core human experiences of loss and disappointment and the achievable work of healing and repair. How we approach this, she says, profoundly shapes our individual lives and that of our society.</itunes:summary>
+   <itunes:duration>53:11</itunes:duration>
+   <itunes:keywords>healing, faith, integrative medicine, kabbalah, jew, jewish, judaism, mystic, storytelling, rachel naomi remen, krista tippett, radio, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Conservative Politics and Moderate Religion (September 14, 2006)</title>
+   <description>John Danforth â a former U.S. Senator and UN Ambassador, a lawyer who is also an Episcopal priest â has emerged as a cautionary Republican voice. He speaks about the values that have helped him navigate the line between private faith and public life and his current concerns about religion in his own party and in the world.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/danforth/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060914_danforth-uw.mp3"; length="51121955" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060914_danforth-uw.mp3</guid>
+   <pubDate>Thu, 14 Sep 2006 10:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Sen. John Danforth on faith and politics in the U.S.</itunes:subtitle>
+   <itunes:summary>John Danforth â a former U.S. Senator and UN Ambassador, a lawyer who is also an Episcopal priest â has emerged as a cautionary Republican voice. He speaks about the values that have helped him navigate the line between private faith and public life and his current concerns about religion in his own party and in the world.</itunes:summary>
+   <itunes:duration>53:11</itunes:duration>
+   <itunes:keywords>john danforth, republican, episcopal, senator, ambassador, united nations, un, sudan, missouri, religious right, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Hearing Muslim Voices Since 9/11 (September 7, 2006)</title>
+   <description>Dramatic headlines convey a predominantly violent picture of global Islam. But, during the past five years, Muslim guests on Speaking of Faith have conveyed a thoughtful, questing, diverse, and compelling faith. Step back with us and hear these voices from the traditional and evolving center of Islam. And, Krista Tippett speaks with Seyyed Hossein Nasr, an esteemed Muslim scholar who brings a broad religious and historical perspective to hard questions about Islam and the West that have lingered uncomfortably in American life since 9/11.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/hearingmuslims/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060907_hearingmuslims-uw.mp3"; length="51181256" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060907_hearingmuslims-uw.mp3</guid>
+   <pubDate>Thu, 7 Sep 2006 12:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Wise Muslim voices on the traditional and evolving center of Islam</itunes:subtitle>
+   <itunes:summary>Dramatic headlines convey a predominantly violent picture of global Islam. But, during the past five years, Muslim guests on Speaking of Faith have conveyed a thoughtful, questing, diverse, and compelling faith. Step back with us and hear these voices from the traditional and evolving center of Islam. And, Krista Tippett speaks with Seyyed Hossein Nasr, an esteemed Muslim scholar who brings a broad religious and historical perspective to hard questions about Islam and the West that have lingered uncomfortably in American life since 9/11.</itunes:summary>
+   <itunes:duration>53:11</itunes:duration>
+   <itunes:keywords>seyyed hossein nasr, 9/11, 9-11, September 11, muslim, islam, nasr, world trade center, terror, terrorist, sharia, sunni, shia, arab, iran, iraq, sufi, allah, muhammad, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+		<item>
+   <title>Religious Passion, Pluralism, and the Young (August 31, 2006)</title>
+   <description>Eboo Patel, a 30-year-old Indian-American Muslim and former Rhodes Scholar, is setting out to change the way young people relate to their own religious traditions and those of others. Al Quaeda is the most effective youth program in the world, he says, and we neglect this work at our peril.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/religiousyouth/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060831_religiousyouth-uw.mp3"; length="51181256" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060831_religiousyouth-uw.mp3</guid>
+   <pubDate>Thu, 31 Aug 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Eboo Patel on the need for youth to make a difference in the world</itunes:subtitle>
+   <itunes:summary>Eboo Patel, a 30-year-old Indian-American Muslim and former Rhodes Scholar, is setting out to change the way young people relate to their own religious traditions and those of others. Al Quaeda is the most effective youth program in the world, he says, and we neglect this work at our peril.</itunes:summary>
+   <itunes:duration>53:11</itunes:duration>
+   <itunes:keywords>interfaith, eboo patel, interfaith youth core, ecumenism, national council of churches, world council of churches, ncc, wcc, speaking of faith, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+		
+  <item>
+   <title>Seeing Poverty after Katrina (August 24, 2006)</title>
+   <description>One year ago this month, Hurricane Katrina brought horrific pictures of urban poverty in America into all of our living rooms. Dr. David Hilfiker tells the story of how concentrated poverty and racial isolation came to be in cities across America. He lives creatively and constructively with questions many of us began to ask in the wake of Hurricane Katrina.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/seeingpoverty/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060824_seeingpoverty-uw.mp3"; length="51145638" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060824_seeingpoverty-uw.mp3</guid>
+   <pubDate>Thu, 24 Aug 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>David Hilfiker on the history of poverty in the U.S.</itunes:subtitle>
+   <itunes:summary>One year ago this month, Hurricane Katrina brought horrific pictures of urban poverty in America into all of our living rooms. Dr. David Hilfiker tells the story of how concentrated poverty and racial isolation came to be in cities across America. He lives creatively and constructively with questions many of us began to ask in the wake of Hurricane Katrina.</itunes:summary>
+   <itunes:duration>53:11</itunes:duration>
+   <itunes:keywords>david hilfiker, poor, poverty, urban, homeless, christian, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>The Freelance Monotheism of Karen Armstrong (August 17, 2006)</title>
+   <description>Karen Armstrong speaks about her progression from a disillusioned and damaged young nun into, in her words, a &quot;freelance monotheist.&quot; She&apos;s a formidable thinker and scholar, but as a theologian she calls herself an amateur -- noting that the Latin root of the word &quot;amateur&quot; means a love of one&apos;s subject. Seven years in a strict religious order nearly snuffed out her ability to think about faith at all. Here, we hear the story behind Armstrong&apos;s developing ideas about God.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/armstrong/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060817_armstrong-uw.mp3"; length="51168924" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060817_armstrong-uw.mp3</guid>
+   <pubDate>Thu, 17 Aug 2006 08:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Karen Armstrong reflects on poetry of theology and religion in the modern world</itunes:subtitle>
+   <itunes:summary>Karen Armstrong speaks about her progression from a disillusioned and damaged young nun into, in her words, a &quot;freelance monotheist.&quot; She&apos;s a formidable thinker and scholar, but as a theologian she calls herself an amateur -- noting that the Latin root of the word &quot;amateur&quot; means a love of one&apos;s subject. Seven years in a strict religious order nearly snuffed out her ability to think about faith at all. Here, we hear the story behind Armstrong&apos;s developing ideas about God.</itunes:summary>
+   <itunes:duration>53:11</itunes:duration>
+   <itunes:keywords>karen armstrong, islam, jew, judaism, nun, christianity, jesuit, spiral staircase, krista tippett, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+
+  <item>
+   <title>Surviving the Religion of Mao (August 10, 2006)</title>
+   <description>Author Anchee Min has won acclaim for her memoir of growing up in China under Mao Zedong. She&apos;s also written several works of fiction in which she explores the human hunger to survive against extreme social brutality. In this conversation, Anchee Min tells us what she learned about the human spirit in the forced labor camp in which she spent her teenage years, and how she&apos;s found healing in America.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/ancheemin/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060810_ancheemin-uw.mp3"; length="51125779" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060810_ancheemin-uw.mp3</guid>
+   <pubDate>Thu, 10 Aug 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Anchee Min on the human spirit in communist China and healing in America</itunes:subtitle>
+   <itunes:summary>Author Anchee Min has won acclaim for her memoir of growing up in China under Mao Zedong. She&apos;s also written several works of fiction in which she explores the human hunger to survive against extreme social brutality. In this conversation, Anchee Min tells us what she learned about the human spirit in the forced labor camp in which she spent her teenage years, and how she&apos;s found healing in America.</itunes:summary>
+   <itunes:duration>53:11</itunes:duration>
+   <itunes:keywords>anchee min, mao, zedong, tse-tung, china, cultural revolution, communism, communist, chairman mao, leap forward, buddhism, daoism, taoism, christianity, red azalea, madame mao, speaking of faith, krista tippett</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Gay Marriage: Broken or Blessed? Two Evangelical Views (August 3, 2006)</title>
+   <description>Our culture&apos;s acrimonious debate on the morality of gay marriage has been framed in religious â largely conservative Christian â terms. With Richard Mouw and Virginia Ramey Mollenkott, we go behind the rhetoric to explore the human confusion, hopes, and fears this subject arouses. We&apos;ll name hard questions that these religious people on both sides of the issue are asking themselves, and that they would like to ask of others.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/gaymarriage/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060803_gaymarriage.mp3"; length="51238759" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060803_gaymarriage.mp3</guid>
+   <pubDate>Thu, 3 Aug 2006 09:15:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Evangelical voices on both sides of the gay marriage debate</itunes:subtitle>
+   <itunes:summary>Our culture&apos;s acrimonious debate on the morality of gay marriage has been framed in religious â largely conservative Christian â terms. With Richard Mouw and Virginia Ramey Mollenkott, we go behind the rhetoric to explore the human confusion, hopes, and fears this subject arouses. We&apos;ll name hard questions that these religious people on both sides of the issue are asking themselves, and that they would like to ask of others.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>marriage, gay marriage, homosexuality, same-sex, same sex, evangelical, christian, richard mouw, virginia mollenkott, scripture, love, children, sacrament, defense of marriage, constitutional amendment, krista tippett</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>The Spirituality of Addiction and Recovery (July 27, 2006)</title>
+   <description>Alcoholics Anonymous co-founder Bill Wilson once said that the program he helped create is &quot;utter simplicity which encases a complete mystery.&quot; We&apos;ll explore the spiritual aspects of addiction and recovery with Susan Cheever, who&apos;s written a biography of Bill Wilson. Also, Lakota teacher and healer, Basil Brave Heart, describes how, in his own life and in Native communities, the 12 Steps find resonance in indigenous spiritual practices.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/recovery/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060727_recovery.mp3"; length="51252155" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060727_recovery.mp3</guid>
+   <pubDate>Thu, 27 Jul 2006 10:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Basil Brave Heart on indigenous spiritual practices and recovery and Susan Cheever on Bill W.</itunes:subtitle>
+   <itunes:summary>Alcoholics Anonymous co-founder Bill Wilson once said that the program he helped create is &quot;utter simplicity which encases a complete mystery.&quot; We&apos;ll explore the spiritual aspects of addiction and recovery with Susan Cheever, who&apos;s written a biography of Bill Wilson. Also, Lakota teacher and healer, Basil Brave Heart, describes how, in his own life and in Native communities, the 12 Steps find resonance in indigenous spiritual practices.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>basil braveheart, susan cheever, aa, alcoholics anonymous, addiction, alcohol, indian, native american, bill w, bill wilson, sun dance, sacred hoop, pipe, vision quest, lakota, sioux, john cheever, krista tippett, faith, religion, spirituality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Evolution and Wonder: Understanding Charles Darwin (July 20, 2006)</title>
+   <description>From the Scopes Trial to school board controversies in our day, Charles Darwin and his theory of evolution are portrayed as a refutal of the very idea of God. With Darwin biographer James Moore, we&apos;ll learn about the world in which Darwin formulated his ideas and how he took religion seriously.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/darwin/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060720_darwin.mp3"; length="51238977" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060720_darwin.mp3</guid>
+   <pubDate>Thu, 20 Jul 2006 19:15:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>James Moore on Charles Darwin&apos;s view of religion, adaptation, and creation</itunes:subtitle>
+   <itunes:summary>From the Scopes Trial to school board controversies in our day, Charles Darwin and his theory of evolution are portrayed as a refutal of the very idea of God. With Darwin biographer James Moore, we&apos;ll learn about the world in which Darwin formulated his ideas and how he took religion seriously.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>evolution, charles darwin, natural selection, adaptation, origin of species, descent of man, variation, intelligent design, creationism, beagle, transmutation, zoonomia, erasmus darwin, down house, god, christian, christianity, krista tippett</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>The Tragedy of the Believer (July 13, 2006)</title>
+   <description>With Nobel Laureate Elie Wiesel, we explore the literary and religious journey that unfolded after Night, his memoir of the Holocaust that has climbed to bestseller lists five decades after its publication. We hear passages of his varied writings of the last 50 years. And, we explore his thoughts on God and evil, youth in Jerusalem and Berlin, and prayer after the Holocaust.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/wiesel/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060713_wiesel.mp3"; length="51231767" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060713_wiesel.mp3</guid>
+   <pubDate>Thu, 13 Jul 2006 11:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Elie Wiesel on God and evil, youth in Jerusalem and Berlin, and the Holocaust</itunes:subtitle>
+   <itunes:summary>With Nobel Laureate Elie Wiesel, we explore the literary and religious journey that unfolded after Night, his memoir of the Holocaust that has climbed to bestseller lists five decades after its publication. We hear passages of his varied writings of the last 50 years. And, we explore his thoughts on God and evil, youth in Jerusalem and Berlin, and prayer after the Holocaust.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>elie wiesel, holocaust, night, jew, judaism, jewish, hasidic, concentration camps, Nazi, Hitler, God, World War II, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Joe Carter and the Legacy of the African-American Spiritual (July 6, 2006)</title>
+   <description>We celebrate the life of performer, educator, and humanitarian Joe Carter with his exploration in word and song of the meaning of the African-American spiritual. He traveled the world and introduced the spiritual to audiences from Novosibirsk to Nigeria. He had a singular understanding of the religious sensibility of this music â its hidden meanings, as well as its beauty, lament, and hope.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/joecarter/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060706_joecarter.mp3"; length="51211748" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060706_joecarter.mp3</guid>
+   <pubDate>Thu, 6 Jul 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Joe Carter sings and explains Negro spirituals</itunes:subtitle>
+   <itunes:summary>We celebrate the life of performer, educator and humanitarian Joe Carter with his exploration in word and song of the meaning of the African-American spiritual. He traveled the world and introduced the spiritual to audiences from Novosibirsk to Nigeria. He had a singular understanding of the religious sensibility of this music â its hidden meanings, as well as its beauty, lament, and hope.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>speaking of faith, joe carter, negro spiritual, african-american, african american, song, slavery, sorrow songs, slave, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Obedience and Action (June 29, 2006)</title>
+   <description>In over 50 years as a Benedictine nun, Sister Joan Chittister has emerged as a powerful and uncomfortable voice in Roman Catholicism and in global politics. If women were ordained in the Catholic Church in our lifetime, some say, she would be the first female bishop.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/obedienceandaction/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060629_obedienceandaction.mp3"; length="51290352" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060629_obedienceandaction.mp3</guid>
+   <pubDate>Thu, 29 Jun 2006 13:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Sr. Joan Chittister on women&apos;s ordination, global politics, and Roman Catholicism</itunes:subtitle>
+   <itunes:summary>In over 50 years as a Benedictine nun, Sister Joan Chittister has emerged as a powerful and uncomfortable voice in Roman Catholicism and in global politics. If women were ordained in the Catholic Church in our lifetime, some say, she would be the first female bishop.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>benedictine, woman, female, nun, joan chittister, catholic, catholicism, roman catholic, interfaith, spiritual progressive, god, christian, christianity, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Heart and Soul: The Integrative Medicine of Dr. Mehmet Oz (June 22, 2006)</title>
+   <description>The word healing means to make whole. But historically, in a field like cardiology, Western medicine has taken a divided view of human health. It has stressed medical treatment of biological ailments. Cardiovascular surgeon Mehmet Oz speaks about the intersection of Western medicine, human spirituality, and the physiology of the human heart.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/heartandsoul/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060622_heartandsoul.mp3"; length="51223226" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060622_heartandsoul.mp3</guid>
+   <pubDate>Thu, 22 Jun 2006 10:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Dr. Mehmet Oz on Western medicine, spirituality, and the human heart</itunes:subtitle>
+   <itunes:summary>The word healing means to make whole. But historically, in a field like cardiology, Western medicine has taken a divided view of human health. It has stressed medical treatment of biological ailments. Cardiovascular surgeon Mehmet Oz speaks about the intersection of Western medicine, human spirituality, and the physiology of the human heart.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>mehmet oz, integrative medicine, palliative care, holistic medicine, prayer, heart, surgeon, cardiovascular, homeopathy, muslim, jehovah&apos;s witness, krista tippett, radio, faith, religion, spirituality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>The Spirituality of Parenting (June 15, 2006)</title>
+   <description>How do parents and grandparents nurture the spiritual and moral awareness of the children in our lives? Rabbi Sandy Sasso has written books that help children and adults of many backgrounds discuss religion and ethics together. The spiritual life, she says, begins not in abstractions, but in concrete everyday experiences. And children need our questions as much as our answers.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/spiritualityofparenting/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060615_spiritualityofparenting.mp3"; length="51282541" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060615_spiritualityofparenting.mp3</guid>
+   <pubDate>Thu, 15 Jun 2006 14:15:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Rabbi Sandy Sasso on the spiritual development of children</itunes:subtitle>
+   <itunes:summary>How do parents and grandparents nurture the spiritual and moral awareness of the children in our lives? Rabbi Sandy Sasso has written books that help children and adults of many backgrounds discuss religion and ethics together. The spiritual life, she says, begins not in abstractions, but in concrete everyday experiences. And children need our questions as much as our answers.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>parenting, children, sandy sasso, rabbi, jew, judaism, unchurched, god, christian, christianity, stoires, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>A History of Doubt (June 8, 2006)</title>
+   <description>Our guest, poet and historian Jennifer Michael Hecht, says that as a scholar she always noticed the &quot;shadow history&quot; of doubt out of the corner of her eye. She shows how non-belief, skepticism, and doubt have paralleled and at times shaped the world&apos;s great religious and secular belief systems. She suggests that only in modern time has doubt been narrowly equated with a complete rejection of faith, or a broader sense of mystery.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/doubt/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060608_doubt.mp3"; length="51399504" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060608_doubt.mp3</guid>
+   <pubDate>Thu, 8 Jun 2006 10:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Poet and historian Jennifer Michael Hecht discusses history of doubt</itunes:subtitle>
+   <itunes:summary>Poet and historian Jennifer Michael Hecht has published a sweeping, lyrical history of the world&apos;s great doubters, and she shows that the act of questioning, as much as the act of believing, has changed the world.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>doubt, skeptic, cynic, epicurus, job, jennifer michael hecht, socrates, diogenes, atheist, agnostic, faith, judaism, mishnah, jesus, descartes, maimonides, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Deciphering the Da Vinci Code (June 1, 2006)</title>
+   <description>The wildly popular novel turned movie reimagines the New Testament, in part, as a cover-up. What really happened in the fluid early years of Christianity? What is the truth about Mary Magdalene? We separate fact from fiction in the story&apos;s plot with two New Testament scholars, Luke Timothy Johnson and Bernadette Brooten, who say that the story is simpler and much more interesting than conspiracy theories suggest.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/davinci/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060601_davinci.mp3"; length="51367332" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060601_davinci.mp3</guid>
+   <pubDate>Thu, 1 Jun 2006 12:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>New Testament scholars discuss The Da Vinci Code</itunes:subtitle>
+   <itunes:summary>The wildly popular novel turned movie reimagines the New Testament, in part, as a cover-up. What really happened in the fluid early years of Christianity? What is the truth about Mary Magdalene? We separate fact from fiction in the story&apos;s plot with two New Testament scholars, Luke Timothy Johnson and Bernadette Brooten, who say that the story is simpler and much more interesting than conspiracy theories suggest.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>da vinci, mary magdalene, gnostic, gospel, gospels, krista tippett, thomas, marcion, opus dei, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>The Soul of War (May 25, 2006)</title>
+   <description>Since September 11, 2001, 1.3 million military men and women have served in Iraq and Afghanistan. More than one million have returned home. Chaplain Major John Morris has helped to develop a pioneering program, the first of its kind in the country, to support the reintegration of National Guard and Reserve members into their lives, their families, and their communities.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/soulofwar/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060525_soulofwar.mp3"; length="51236185" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060525_soulofwar.mp3</guid>
+   <pubDate>Thu, 25 May 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Chaplain John Morris on the spiritual toll of war on soldiers</itunes:subtitle>
+   <itunes:summary>Since September 11, 2001, 1.3 million military men and women have served in Iraq and Afghanistan. More than one million have returned home. Chaplain Major John Morris has helped to develop a pioneering program, the first of its kind in the country, to support the reintegration of National Guard and Reserve members into their lives, their families, and their communities.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>chaplain, national guard, army, navy, military, iraq, war, christianity, islam, judaism, john morris, fallujah, minnesota, radio, faith, religion, spirituality, morality, speaking of faith, krista tippett</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>The Need for Creeds (May 18, 2006)</title>
+   <description>For many modern Americans, the very idea of reciting an unchanging creed, composed centuries ago, is troublesome. But, Jaroslav Pelikan, a scholar who has devoted his life to exploring the vitality of ancient theology and creeds, insists that even modern pluralists need strong statements of belief. Here, we revisit Krista&apos;s 2003 conversation with him, who, then, in his 80th year, had released a historic collection of Christian faith from biblical times to the present and from across the globe. They discuss the history and nature of creeds, and how a fixed creed can be reconciled with an honest, intellectual faith that changes and evolves.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/pelikan/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060518_pelikan.mp3"; length="51234732" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060518_pelikan.mp3</guid>
+   <pubDate>Thu, 18 May 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Jaroslav Pelikan on creeds and modernity</itunes:subtitle>
+   <itunes:summary>For many modern Americans, the very idea of reciting an unchanging creed, composed centuries ago, is troublesome. But, Jaroslav Pelikan, a scholar who has devoted his life to exploring the vitality of ancient theology and creeds, insists that even modern pluralists need strong statements of belief. Here, we revisit Krista&apos;s 2003 conversation with him, who, then, in his 80th year, had released a historic collection of Christian faith from biblical times to the present and from across the globe. They discuss the history and nature of creeds, and how a fixed creed can be reconciled with an honest, intellectual faith that changes and evolves.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>jaroslav pelikan, creed, prayer, masai, maasai, orthodox, nicene creed, constantine, st. augustine, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>The Evolution of American Evangelicalism (May 11, 2006)</title>
+   <description>Richard Cizik is evangelical Christianity&apos;s key advocate before Congress, the White House, and the Supreme Court. In a wide-ranging and unpredictable conversation, Cizik speaks about new directions for politicized evangelical Christianity â from climate change and the war in Iraq to the virtue of humility. If you think you&apos;ve got American evangelicals figured out, he may surprise you.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/evangelicalevolution/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060511_evangelicalevolution.mp3"; length="51243358" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060511_evangelicalevolution.mp3</guid>
+   <pubDate>Thu, 11 May 2006 16:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Richard Cizik on evangelicalism and global warming</itunes:subtitle>
+   <itunes:summary>Richard Cizik is evangelical Christianity&apos;s key advocate before Congress, the White House, and the Supreme Court. In a wide-ranging and unpredictable conversation, Cizik speaks about new directions for politicized evangelical Christianity â from climate change and the war in Iraq to the virtue of humility. If you think you&apos;ve got American evangelicals figured out, he may surprise you.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>evangelical, richard cizik, environment, green, god, christian, christianity, covenant, conservation, pollution, bible, stewardship, national association of evangelicals, krista tippett, ecology</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Room for J: One Family&apos;s Struggle with Schizophrenia (May 4, 2006)</title>
+   <description>Joel Hanson has schizophrenia and believes he is God. His parents reflect on living with their son and how they have learned to see mental illness, normalcy, and religion differently. Is there room in our culture to consider a schizophrenic personality as another form of human difference and diversity?</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/roomforj/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060504_roomforj.mp3"; length="51109881" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060504_roomforj.mp3</guid>
+   <pubDate>Thu, 4 May 2006 11:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Dan and Sue Hanson on being the parents of a son with schizophrenia</itunes:subtitle>
+   <itunes:summary>Joel Hanson has schizophrenia and believes he is God. His parents reflect on living with their son and how they have learned to see mental illness, normalcy, and religion differently. Is there room in our culture to consider a schizophrenic personality as another form of human difference and diversity?</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>speaking of faith, dan hanson, sue hanson, joel hanson, schizophrenia, martin buber, god, mental illness, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+    <item>
+   <title>Spiritual Tidal Wave, The Origins and Impact of Pentecostalism (April 27, 2006)</title>
+   <description>The birth of the Pentecostal movement began 100 years ago on Azusa Street in Los Angeles. We take our show on the road to cover this global gathering and revival that is reshaping Christianity, culture, and politics worldwide. Guests include Cecil Robeck and Arlene Sanchez Walsh.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/azusarevival/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060427_azusarevival.mp3"; length="51109881" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060427_azusarevival.mp3</guid>
+   <pubDate>Thu, 27 Apr 2006 15:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Cecil Robeck on past, present and future of Pentecostalism</itunes:subtitle>
+   <itunes:summary>The birth of the Pentecostal movement began 100 years ago on Azusa Street in Los Angeles. We take our show on the road to cover this global gathering and revival that is reshaping Christianity, culture, and politics worldwide. Guests include Cecil Robeck and Arlene Sanchez Walsh.</itunes:summary>
+   <itunes:duration>53:10</itunes:duration>
+   <itunes:keywords>pentecost, pentecostal, charismatic, azusa, william seymour, parham, los angeles, christian, christianity, evangelical, fundamentalism, fundamentalist, mel robeck, arlene sanchez walsh, speaking of faith, krista tippett</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Quarks and Creation (April 20, 2006)</title>
+   <description>Science and religion are often pitted against one another; but how do they complement, rather than contradict, one another? We learn how scientist and theologian John Polkinghorne applies the deepest insights of modern physics to think about how the world fundamentally works, and how the universe might make space for prayer.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/quarks/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060420_quarks.mp3"; length="51109881" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060420_quarks.mp3</guid>
+   <pubDate>Thu, 20 Apr 2006 10:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Physicist John Polkinghorne on modern physics and prayer</itunes:subtitle>
+   <itunes:summary>Science and religion are often pitted against one another; but how do they complement, rather than contradict, one another? We learn how scientist and theologian John Polkinghorne applies the deepest insights of modern physics to think about how the world fundamentally works, and how the universe might make space for prayer.</itunes:summary>
+   <itunes:duration>53:10</itunes:duration>
+   <itunes:keywords>speaking of faith, polkinghorne, polkinghorn, chaos theory, quarks, hadrons, evolution, creationism, intelligent design, science, templeton, radio, program, faith, life, religion, ethics</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Exodus, Cargo of Hidden Stories (April 13, 2006)</title>
+   <description>Avivah Zornberg is one of the great, creative interpreters of Talmud and Torah in the  ontemporary world. She guides us through the Exodus story that is commemorated during the eight days of Passover. Passover is also the backdrop of the Easter events of the Christian New Testament. We find meaning in the text that Cecil B. DeMille and Disney never imagined â about the worst and the best of human nature, and the realities and ironies of human freedom.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/exodus/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060413_exodus.mp3"; length="51088341" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060413_exodus.mp3</guid>
+   <pubDate>Thu, 13 Apr 2006 13:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Avivah Zornberg gives her interpretation of the story of Exodus</itunes:subtitle>
+   <itunes:summary>Avivah Zornberg is one of the great, creative interpreters of Talmud and Torah in the  ontemporary world. She guides us through the Exodus story that is commemorated during the eight days of Passover. Passover is also the backdrop of the Easter events of the Christian New Testament. We find meaning in the text that Cecil B. DeMille and Disney never imagined â about the worst and the best of human nature, and the realities and ironies of human freedom.</itunes:summary>
+   <itunes:duration>53:10</itunes:duration>
+   <itunes:keywords>exodus, avivah zornberg, moses, moshe, passover, seder, circumcision, torah, talmud, jew, judaism, israelites, red sea, pharaoh, matzoh, unleavened bread, speaking of faith, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Planting the Future with Wangari Maathai (April 6, 2006)</title>
+   <description>Wangari Maathai, a native Kenyan, was the first African woman to be awarded the Nobel Peace Prize. She is founder of the Green Belt Movement â a grassroots organization that empowers African women to improve their lives and conserve the environment through planting trees. Deforestation and climate change have plunged Africa into the worst drought in decades. After helping plant 30 million trees, she speaks about the global balance of human and natural resources and shares her thoughts on where God resides.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/plantingthefuture/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060406_plantingthefuture.mp3"; length="51103954" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060406_plantingthefuture.mp3</guid>
+   <pubDate>Thu, 6 Apr 2006 12:45:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Wangari Maathai on planting trees and restoring the environment</itunes:subtitle>
+   <itunes:summary>Wangari Maathai, a native Kenyan, was the first African woman to be awarded the Nobel Peace Prize. She is founder of the Green Belt Movement â a grassroots organization that empowers African women to improve their lives and conserve the environment through planting trees. Deforestation and climate change have plunged Africa into the worst drought in decades. After helping plant 30 million trees, she speaks about the global balance of human and natural resources and shares her thoughts on where God resides.</itunes:summary>
+   <itunes:duration>53:10</itunes:duration>
+   <itunes:keywords>nobel peace prize, kenya, green belt movement, conservation, deforestation, feminism, poverty, catholic, kikuyu, wangari maathai, krista tippett, ecology, environment, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Pagans Ancient and Modern (March 30, 2006)</title>
+   <description>Adrian Ivakhiv is an environmentalist who pursued the ecological impulse of Paganism from its ancient roots to its modern revival in Europe and North America. We hear his observations about the spirit of Paganism and its influence on everyday Western culture â and even on old-time religion.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/pagans/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060330_pagans.mp3"; length="51175090" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060330_pagans.mp3</guid>
+   <pubDate>Thu, 30 Mar 2006 15:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Adrian Ivakhiv on Paganism</itunes:subtitle>
+   <itunes:summary>Adrian Ivakhiv is an environmentalist who pursued the ecological impulse of Paganism from its ancient roots to its modern revival in Europe and North America. We hear his observations about the spirit of Paganism and its influence on everyday Western culture â and even on old-time religion.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>pagan, druid, paganism, solstice, equinox, witch, wicca, glastonbury, sedona, krista tippett, radio, faith, religion, spirituality, morality</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Approaching Prayer (March 23, 2006)</title>
+   <description>We explore creative and generous approaches to prayer in three very different lives: Hindu chant with musician Anoushka Shankar; poetry and &quot;non-religious&quot; prayer with translator Stephen Mitchell; and theologian Roberta Bondi on learning to pray with the Desert Fathers and Mothers. Also, a reflection on prayer by poet and memoirist Patricia Hampl.
+</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/approachingprayer/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060323_approachingprayer.mp3"; length="51273129" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060323_approachingprayer.mp3</guid>
+   <pubDate>Thu, 23 Mar 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Creative and generous approaches to prayer in three very different lives</itunes:subtitle>
+   <itunes:summary>We explore creative and generous approaches to prayer in three very different lives: Hindu chant with musician Anoushka Shankar; poetry and &quot;non-religious&quot; prayer with translator Stephen Mitchell; and theologian Roberta Bondi on learning to pray with the Desert Fathers and Mothers. Also, a reflection on prayer by poet and memoirist Patricia Hampl.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>prayer, bondi, shankar, mitchell, jew, judaism, hasid, krista tippett, radio, faith, religion, spirituality, morality, desert mothers, desert fathers, hindu, chant</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Two Narratives, Reflections on the Israeli-Palestinian Conflict - part 2 (March 16, 2006)</title>
+   <description>In the second of a two-part series, continue listening to experiences and perceptions that divide Israelis and Palestinians even as they share a land they both consider holy. Two Muslim Palestinians, Mohammed Abu-Nimer and Sami Adwan, speak about the intersection of the spiritual and the political in their lives.
+</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/twonarratives/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060316_twonarratives.mp3"; length="51230343" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060316_twonarratives.mp3</guid>
+   <pubDate>Thu, 16 Mar 2006 16:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Mohammed Abu-Nimer and Sami Adwan&apos;s perceptions and perspectives as Muslim Palestinians</itunes:subtitle>
+   <itunes:summary>In the second of a two-part series, continue listening to experiences and perceptions that divide Israelis and Palestinians even as they share a land they both consider holy. Two Muslim Palestinians, Mohammed Abu-Nimer and Sami Adwan, speak about the intersection of the spiritual and the political in their lives.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>abu-nimer, adwan, muslim, islam, palestine, druze, jew, holy land, israel, judaism, orthodox, jerusalem, arab, green line, war, terrorism, hamas, security barrier, peace, tippett</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Two Narratives, Reflections on the Israeli-Palestinian Conflict - part 1 (March 9, 2006)</title>
+   <description>In the first of a two-part series, we&apos;ll seek to understand the difficulty of peace in a land that its inhabitants, on both sides of conflict, consider holy. We listen this hour to journalist Yossi Klein Halevi&apos;s perceptions and perspectives as an Israeli Jew.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/twonarratives/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060309_twonarratives.mp3"; length="49976343" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060309_twonarratives.mp3</guid>
+   <pubDate>Thu, 9 Mar 2006 15:30:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Yossi Klein Halevi&apos;s perceptions and perspectives as an Israeli Jew</itunes:subtitle>
+   <itunes:summary>In the first of a two-part series, we&apos;ll seek to understand the difficulty of peace in a land that its inhabitants, on both sides of conflict, consider holy. We listen this hour to journalist Yossi Klein Halevi&apos;s perceptions and perspectives as an Israeli Jew.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>halevi, jew, holy land, israel, judaism, orthodox, jerusalem, arab, green line, war, terrorism, hamas, security barrier, peace, tippett</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Brother Thay: A Radio Pilgrimage with Thich Nhat Hanh (March 2, 2006)</title>
+   <description>Vietnamese Zen master and poet, Thich Nhat Hanh, offers stark, gentle wisdom for living in a world of anger and violence. We speak with him and others at an unusual retreat attended by law enforcement officials.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/thichnhathanh/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060302_thichnhathanh.mp3"; length="51240677" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060302_thichnhathanh.mp3</guid>
+   <pubDate>Thu, 2 Mar 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Thich Nhat Hanh on living in a world with anger and violence</itunes:subtitle>
+   <itunes:summary>Vietnamese Zen master and poet, Thich Nhat Hanh, offers stark, gentle wisdom for living in a world of anger and violence. We speak with him and others at an unusual retreat attended by law enforcement officials.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>thich nhat hanh, thay, buddhism, mindfulness, meditation, zen, vietnam, viet nam, inner peace, plum village, tippett</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>The Gods of Business (February 23, 2006)</title>
+   <description>As the Enron trial unfolds in Houston, we speak with international business analyst Prabhu Guptara of UBS in Switzerland. He has fascinating perspective on how an Enron scandal can happen and why it matters to people around the world. He explains how the United States can be one of the world&apos;s most religious countries -- yet at the same time, a culture in which moral values can fail to penetrate the workplace.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/godsofbusiness/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060223_godsofbusiness.mp3"; length="51286716" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060223_godsofbusiness.mp3</guid>
+   <pubDate>Thu, 23 Feb 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Prabhu Guptara discusses why business ethics matter in a global world</itunes:subtitle>
+   <itunes:summary>As the Enron trial unfolds in Houston, we speak with international business analyst Prabhu Guptara of UBS in Switzerland. He has fascinating perspective on how an Enron scandal can happen and why it matters to people around the world. He explains how the United States can be one of the world&apos;s most religious countries -- yet at the same time, a culture in which moral values can fail to penetrate the workplace.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>guptara, business ethics, india, enron, ubs, davos, hindu, christian, global economy, tippett</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>The Face of the Prophet: Cartoons and Chasm (February 16, 2006)</title>
+   <description>We seek to untangle the knot of violent and bewildered reactions to cartoons depicting the Prophet Muhammad. Vincent Cornell, a professor of history and director of the King Fahd Center for Middle East and Islamic Studies at the University of Arkansas, provides insight into this complex issue.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/faceoftheprophet/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060216_faceoftheprophet.mp3"; length="51235315" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060216_faceoftheprophet.mp3</guid>
+   <pubDate>Thu, 16 Feb 2006 15:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Vincent Cornell provides insight into the reactions to the Danish cartoons</itunes:subtitle>
+   <itunes:summary>We seek to untangle the knot of violent and bewildered reactions to cartoons depicting the Prophet Muhammad. Vincent Cornell, a professor of history and director of the King Fahd Center for Middle East and Islamic Studies at the University of Arkansas, provides insight into this complex issue.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>cornell, danish cartoon, muslim, violence, islam, colonialism, middle east, iraq, tippett</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Sacred Wilderness, An African Story (February 9, 2006)</title>
+   <description>Isabel Mukonyora has followed and studied a religious movement of her Shona people, the Masowe Apostles, that embraces Christian tradition while addressing the drama of African life and history. The founder of this movement, Johane Masowe, emphasized an ancient Jewish and Christian pull to the wilderness. Through her stories we explore modern African spirituality, diaspora, and finding meaning, as Mukonyora says, &quot;in the margins.&quot;</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/sacredwilderness/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060209_sacredwilderness.mp3"; length="51259574" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060209_sacredwilderness.mp3</guid>
+   <pubDate>Thu, 9 Feb 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Mukonyora explores modern African spirituality</itunes:subtitle>
+   <itunes:summary>Isabel Mukonyora has followed and studied a religious movement of her Shona people, the Masowe Apostles, that embraces Christian tradition while addressing the drama of African life and history. The founder of this movement, Johane Masowe, emphasized an ancient Jewish and Christian pull to the wilderness. Through her stories we explore modern African spirituality, diaspora, and finding meaning, as Mukonyora says, &quot;in the margins.&quot;</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>mukonyora, zimbabwe, diaspora, africa, masowe, christianity, colonialism, tippett</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Ethics and the Will of God: The Legacy of Dietrich Bonhoeffer (February 2, 2006)</title>
+   <description>With Bonhoeffer documentarian Martin Doblmeier, we explore this 20th-century theologian who was executed for his complicity in a plot to assassinate Adolph Hitler. Bonhoeffer&apos;s example and his extant writings, including &quot;Letters and Papers from Prison,&quot; continue to inspire with creative and challenging ideas about &quot;religionless Christianity,&quot; the nature of ethics, and the &quot;will of God&quot; versus &quot;tribal&quot; religion.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/bonhoeffer/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060202_bonhoeffer.mp3"; length="51228743" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060202_bonhoeffer.mp3</guid>
+   <pubDate>Thu, 2 Feb 2006 11:23:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Doblmeier paints a picture of the German theologian who sacrificed his life for ethics</itunes:subtitle>
+   <itunes:summary>With Bonhoeffer documentarian Martin Doblmeier, we explore this 20th-century theologian who was executed for his complicity in a plot to assassinate Adolph Hitler. Bonhoeffer&apos;s example and his extant writings, including &quot;Letters and Papers from Prison,&quot; continue to inspire with creative and challenging ideas about &quot;religionless Christianity,&quot; the nature of ethics, and the &quot;will of God&quot; versus &quot;tribal&quot; religion.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>bonhoeffer, germany, theologian, war, ethics, protestant, tippett, jew, judaism, holocaust, nazi, doblmeier</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>The Buddha in the World (January 26, 2006)</title>
+   <description>In an intellectual and personal adventure across India and Europe, Afghanistan and America, Pankaj Mishra, an Indian journalist and author of &quot;An End to Suffering: The Buddha in the World,&quot; pursued the history and the meaning of the Buddha â not as a religious figure but as a critical social thinker. He came to doubt some of the most basic assumptions about politics and progress that define the modern world.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/buddhaintheworld/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060126_buddhaintheworld.mp3"; length="51237301" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060126_buddhaintheworld.mp3</guid>
+   <pubDate>Thu, 26 Jan 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Mishra discusses the history of meaning of the Buddha in our times</itunes:subtitle>
+   <itunes:summary>In an intellectual and personal adventure across India and Europe, Afghanistan and America, Pankaj Mishra, an Indian journalist and author of &quot;An End to Suffering: The Buddha in the World,&quot; pursued the history and the meaning of the Buddha -- not as a religious figure but as a critical social thinker. He came to doubt some of the most basic assumptions about politics and progress that define the modern world.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>buddha, india, asoka, hindu, peace, adam smith, economics, suffering, tippett, mishra</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Globalizing the Sacred (January 19, 2006)</title>
+   <description>Americans of Hispanic descent have now become this country&apos;s largest minority. Salvadoran-American scholar of religion and social change, Manuel Vasquez, says Americans have not grasped the way their culture will be changed by the religious and spiritual worldviews being imported. And as he sees it, indigenous religious practice and identity are growing more influential in the global age.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/globalizingthesacred/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060119_globalizingthesacred.mp3"; length="51246892" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060119_globalizingthesacred.mp3</guid>
+   <pubDate>Thu, 19 Jan 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Vasquez discusses immigration and the transnationality of religion</itunes:subtitle>
+   <itunes:summary>Americans of Hispanic descent have now become this country&apos;s largest minority. Salvadoran-American scholar of religion and social change, Manuel Vasquez, says Americans have not grasped the way their culture will be changed by the religious and spiritual worldviews being imported. And as he sees it, indigenous religious practice and identity are growing more influential in the global age.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>immigration, latin america, hispanic, latino, mexico, integration, transnational, tippett, vasquez</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Stress and the Balance Within (January 12, 2006)</title>
+   <description>The American experience of stress has spawned a multi-billion dollar self-help industry. Doctor Esther Sternberg is wary of that. But she says that, until very recently, modern science did not have the tools or the inclination to take emotional stress seriously. Here she shares fascinating new scientific insight into the molecular level of the mind-body connection.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/stress/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20060112_stress.mp3"; length="51268753" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20060112_stress.mp3</guid>
+   <pubDate>Thu, 12 Jan 2006 12:00:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Sternberg discusses new scientific insight into the molecular level of the mind-body connection</itunes:subtitle>
+   <itunes:summary>The American experience of stress has spawned a multi-billion dollar self-help industry. Doctor Esther Sternberg is wary of that. But she says that, until very recently, modern science did not have the tools or the inclination to take emotional stress seriously. Here she shares fascinating new scientific insight into the molecular level of the mind-body connection.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>stress, distress, healing, mental health, cortisol, tippett, vasquez</itunes:keywords>
+  </item>
+    
+  <item>
+   <title>Einstein&apos;s Ethics (December 15, 2005)</title>
+   <description>Part two of the series &quot;Einstein and the Mind of God&quot; delves into Einstein&apos;s Jewish identity, his passionate engagement around issues of war and race, and modern extensions of his ethical and scientific perspectives.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/einstein/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20051215_einsteinsethics.mp3"; length="51224301" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20051215_einsteinsethics.mp3</guid>
+   <pubDate>Thu, 5 Jan 2006 03:35:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Tom Levenson and S. James Gates, explore Einstein&apos;s approaches to war, race, and spiritual genius.</itunes:subtitle>
+   <itunes:summary>Part two of the series on &quot;Einstein and the Mind of God&quot; delves into Einstein&apos;s Jewish identity, his passionate engagement around issues of war and race, and modern extensions of his ethical and scientific perspectives.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>einstein, relativity, cosmic religion, judaism, jew, israel, physics, quantum, tippett, gates, levenson, robeson, racism</itunes:keywords>
+  </item>
+  
+  <item>
+   <title>Einstein&apos;s God (December 5, 2005)</title>
+   <description>Part one of the series on &quot;Einstein and the Mind of God&quot; takes Einstein&apos;s science as a starting point for exploring the great physicist&apos;s perspective on ideas such as mystery, eternity, and the mind of God.</description>
+   <category>Public Radio</category>
+   <link>http://speakingoffaith.org/programs/einstein/index.shtml</link>
+   <enclosure url="http://download.publicradio.org/podcast/speakingoffaith/20051208_einsteinsgod.mp3"; length="51238099" type="audio/mpeg"></enclosure>
+   <guid>http://download.publicradio.org/podcast/speakingoffaith/20051208_einsteinsgod.mp3</guid>
+   <pubDate>Thu, 5 Jan 2006 03:35:00 CST</pubDate>
+   <itunes:author>Krista Tippett, American Public Media</itunes:author>
+   <itunes:subtitle>Freeman Dyson and Paul Davies explore Einstein&apos;s way of thinking about mystery, eternity, and the mind of God.</itunes:subtitle>
+   <itunes:summary>Part one of the series on &quot;Einstein and the Mind of God&quot; takes Einstein&apos;s science as a starting point for exploring the great physicist&apos;s perspective on ideas such as mystery, eternity, and the mind of God.</itunes:summary>
+   <itunes:duration>53:18</itunes:duration>
+   <itunes:keywords>einstein, relativity, cosmic religion, judaism, jew, israel, physics, quantum, tippett, gates, levenson</itunes:keywords>
+  </item>
+ </channel>
+</rss>

Added: trunk/plparse/tests/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/plparse/tests/Makefile.am	Mon Mar 16 22:13:16 2009
@@ -0,0 +1,43 @@
+include $(top_srcdir)/Makefile.decl
+
+pwd=`pwd`
+INCLUDES = \
+	-I$(top_srcdir)/plparse	\
+	-DTEST_FILE_DIR=\""$(pwd)/"\"
+
+noinst_PROGRAMS = $(TEST_PROGS)
+
+TEST_PROGS			+= parser
+parser_SOURCES			 = parser.c
+parser_LDADD			 = \
+				$(progs_ldadd)		\
+				$(TOTEM_PLPARSER_LIBS)	\
+				../libtotem-plparser.la
+parser_CPPFLAGS			 = \
+				-I$(top_srcdir)			\
+				-I$(top_srcdir)/lib		\
+				-I$(top_builddir)/plparse	\
+				-DGNOMELOCALEDIR=\""$(datadir)/locale"\"\
+				$(DISABLE_DEPRECATED)		\
+				$(AM_CPPFLAGS)
+parser_CFLAGS			 = \
+				$(TOTEM_PLPARSER_CFLAGS)\
+				$(HAL_CFLAGS)		\
+				$(DBUS_CFLAGS)		\
+				$(WARN_CFLAGS)		\
+				$(AM_CFLAGS)
+
+TEST_PROGS			+= disc
+disc_SOURCES			 = disc.c
+disc_LDADD			 = \
+				$(progs_ldadd)		\
+				../libtotem-plparser.la	\
+				$(TOTEM_PLPARSER_LIBS)
+disc_CPPFLAGS			 = \
+				$(common_defines)	\
+				$(AM_CPPFLAGS)
+disc_CFLAGS			 = \
+				$(WARN_CFLAGS)		\
+				$(TOTEM_PLPARSER_CFLAGS)\
+				$(AM_CFLAGS)
+disc_LDFLAGS			 = $(AM_LDFLAGS)

Copied: trunk/plparse/tests/disc.c (from r334, /trunk/plparse/disc-test.c)
==============================================================================
--- /trunk/plparse/disc-test.c	(original)
+++ trunk/plparse/tests/disc.c	Mon Mar 16 22:13:16 2009
@@ -24,93 +24,111 @@
 
 #include "totem-disc.h"
 
-gint
-main (gint   argc,
-      gchar *argv[])
+static void
+test_disc (gconstpointer data)
 {
-  TotemDiscMediaType type;
-  GError *error = NULL;
-  const char *type_s = NULL;
-  char *uri = NULL;
-  gboolean is_dir = FALSE;
-  GList *or, *list;
-  GVolumeMonitor *mon;
-
-  if (argc != 2) {
-    g_print ("Usage: %s <device>\n", argv[0]);
-    return -1;
-  }
-
-  g_thread_init (NULL);
-  g_type_init ();
-  g_log_set_always_fatal (G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL);
-
-  if (g_file_test (argv[1], G_FILE_TEST_IS_DIR) != FALSE) {
-    type = totem_cd_detect_type_from_dir (argv[1], &uri, &error);
-    is_dir = TRUE;
-  } else {
-    type = totem_cd_detect_type_with_url (argv[1], &uri, &error);
-  }
-
-  switch (type) {
-    case MEDIA_TYPE_ERROR:
-      mon = g_volume_monitor_get ();
-      g_print ("Error: %s\n", error ? error->message : "unknown reason");
-      g_print ("\n");
-      g_print ("List of connected drives:\n");
-      for (or = list = g_volume_monitor_get_connected_drives (mon); list != NULL; list = list->next) {
-        char *device;
-        device = g_drive_get_identifier ((GDrive *) list->data, G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE);
-        g_print ("%s\n", device);
-	g_free (device);
-	g_object_unref (list->data);
-      }
-      if (or == NULL)
-        g_print ("No connected drives!\n");
-      else
-        g_list_free (or);
-
-      g_print ("List of volumes:\n");
-      for (or = list = g_volume_monitor_get_volumes (mon); list != NULL; list = list->next) {
-        char *device;
-
-	device = g_volume_get_identifier ((GVolume *) list->data, G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE);
-	g_print ("%s", device);
-	if (g_volume_get_mount ((GVolume *) list->data) == NULL)
-	  g_print ("\n");
-	else
-	  g_print (" (mounted)\n");
-	g_free (device);
-	g_object_unref (list->data);
-      }
-      if (or == NULL)
-        g_print ("No volumes!\n");
-      else
-        g_list_free (or);
-      return -1;
-    case MEDIA_TYPE_DATA:
-      type_s = "Data CD";
-      break;
-    case MEDIA_TYPE_CDDA:
-      type_s = "Audio CD";
-      break;
-    case MEDIA_TYPE_VCD:
-      type_s = "Video CD";
-      break;
-    case MEDIA_TYPE_DVD:
-      type_s = "DVD";
-      break;
-    default:
-      g_assert_not_reached ();
-  }
-
-  g_print ("%s contains a %s\n", argv[1], type_s);
-
-  if (uri != NULL) {
-    g_print ("URI for directory is %s\n", uri);
-  }
+	TotemDiscMediaType type;
+	GError *error = NULL;
+	char *mrl = NULL;
+	const char *device = (const char*) data;
+
+	type = totem_cd_detect_type_with_url (device, &mrl, &error);
+
+	if (type == MEDIA_TYPE_ERROR) {
+		GList *or, *list;
+		GVolumeMonitor *mon;
+
+		g_message ("Error getting media type: %s", error ? error->message : "unknown reason");
+		g_message ("List of connected drives:");
+
+		mon = g_volume_monitor_get ();
+		for (or = list = g_volume_monitor_get_connected_drives (mon); list != NULL; list = list->next) {
+			char *device;
+			device = g_drive_get_identifier ((GDrive *) list->data, G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE);
+			g_message ("\t%s", device);
+			g_free (device);
+			g_object_unref (list->data);
+		}
+		if (or == NULL)
+			g_message ("\tNo connected drives!");
+		else
+			g_list_free (or);
+
+		g_message ("List of volumes:");
+		for (or = list = g_volume_monitor_get_volumes (mon); list != NULL; list = list->next) {
+			char *device;
+
+			device = g_volume_get_identifier ((GVolume *) list->data, G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE);
+			if (g_volume_get_mount ((GVolume *) list->data) == NULL)
+				g_message ("\t%s", device);
+			else
+				g_message ("\t%s (mounted)", device);
+			g_free (device);
+			g_object_unref (list->data);
+		}
+
+		if (or == NULL)
+			g_message ("\tNo volumes!");
+		else
+			g_list_free (or);
+
+		return;
+	}
+
+	g_message ("%s contains a %s.", device, totem_cd_get_human_readable_name (type));
+	g_assert (mrl != NULL);
+	g_message ("MRL for directory is \"%s\".", mrl);
 
-  g_free (uri);
+	g_free (mrl);
 
-  return 0;
+	return;
+}
+
+static void
+log_handler (const char *log_domain, GLogLevelFlags log_level, const char *message, gpointer user_data)
+{
+	g_test_message ("%s", message);
+}
+
+int
+main (int argc, char *argv[])
+{
+	GError *error = NULL;
+	GOptionContext *context;
+	gchar **device_paths;
+	guint i = 0;
+	const GOptionEntry entries[] = {
+		{ G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &device_paths, "[Device paths...]", NULL },
+		{ NULL }
+	};
+
+	g_type_init ();
+	g_test_init (&argc, &argv, NULL);
+	g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=";);
+
+	/* Parse our own command-line options */
+	context = g_option_context_new ("- test disc functions");
+	g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
+
+	if (g_option_context_parse (context, &argc, &argv, &error) == FALSE) {
+		g_print ("Option parsing failed: %s\n", error->message);
+		return 1;
+	}
+
+	if (device_paths == NULL) {
+		/* We need to handle log messages produced by g_message so they're interpreted correctly by the GTester framework */
+		g_log_set_handler (NULL, G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, log_handler, NULL);
+
+		/* NOTE: A disc needs to be in /dev/dvd for this test to do anything useful. Not really any way to work around this. */
+		g_test_add_data_func ("/disc/exists", "/dev/dvd", test_disc);
+		g_test_add_data_func ("/disc/not-exists", "/this/does/not/exist", test_disc);
+
+		return g_test_run ();
+	}
+
+	/* If we're passed device paths, test them instead of running the GTests */
+	while (device_paths[i] != NULL)
+		test_disc (device_paths[i++]);
+
+	return 0;
 }

Copied: trunk/plparse/tests/parser.c (from r334, /trunk/plparse/test-parser.c)
==============================================================================
--- /trunk/plparse/test-parser.c	(original)
+++ trunk/plparse/tests/parser.c	Mon Mar 16 22:13:16 2009
@@ -14,31 +14,16 @@
 #include "totem-pl-parser-mini.h"
 #include "totem-pl-parser-private.h"
 
-#define USE_DATA
-
 static GMainLoop *loop = NULL;
 static gboolean option_no_recurse = FALSE;
 static gboolean option_debug = FALSE;
-static gboolean option_data = FALSE;
 static gboolean option_force = FALSE;
 static gboolean option_disable_unsafe = FALSE;
-static gboolean option_duration = FALSE;
-static gboolean g_fatal_warnings = FALSE;
 static char *option_base_uri = NULL;
-static char **files = NULL;
+static char **uris = NULL;
 
-static void
-header (const char *message)
-{
-	g_print ("\n");
-	g_print ("###################### %s ################\n", message);
-	g_print ("\n");
-}
-
-#define error(x...) { g_warning (x); exit(1); }
-
-static void
-test_relative_real (const char *uri, const char *output, const char *expected)
+static char *
+test_relative_real (const char *uri, const char *output)
 {
 	GFile *output_file;
 	char *base;
@@ -47,133 +32,220 @@
 	base = totem_pl_parser_relative (output_file, uri);
 	g_object_unref (output_file);
 
-	if (base == NULL && expected == NULL) {
-		g_print ("Relative: '%s' with output '%s' has no relative path\n",
-			 uri, output);
-		return;
-	}
+	return base;
+}
 
-	if ((base != NULL && expected == NULL)
-	    || (base == NULL && expected != NULL)
-	    || (strcmp (base, expected) != 0)) {
-	    	if (base == NULL) {
-			error ("Relative: '%s' with output '%s' got no relative path (expected '%s')",
-			       uri, output, expected);
-		} else {
-			error ("Relative: '%s' with output '%s' got '%s' (expected '%s')",
-			       uri, output, base, expected ? expected : "none");
-			g_free (base);
-		}
-		return;
-	}
+static void
+test_relative (void)
+{
+	g_assert_cmpstr (test_relative_real ("/home/hadess/test/test file.avi", "/home/hadess/foobar.m3u"), ==, "test/test file.avi");
+	g_assert_cmpstr (test_relative_real ("file:///home/hadess/test/test%20file.avi", "/home/hadess/whatever.m3u"), ==, "test/test file.avi");
+	g_assert_cmpstr (test_relative_real ("smb://server/share/file.mp3", "/home/hadess/whatever again.m3u"), ==, NULL);
+	g_assert_cmpstr (test_relative_real ("smb://server/share/file.mp3", "smb://server/share/file.m3u"), ==, "file.mp3");
+	g_assert_cmpstr (test_relative_real ("/home/hadess/test.avi", "/home/hadess/test/file.m3u"), ==, NULL);
+	g_assert_cmpstr (test_relative_real ("http://foobar.com/test.avi";, "/home/hadess/test/file.m3u"), ==, NULL);
+	g_assert_cmpstr (test_relative_real ("file:///home/jan.old.old/myfile.avi", "file:///home/jan/myplaylist.m3u"), ==, NULL);
+	g_assert_cmpstr (test_relative_real ("/1", "/test"), ==, "1");
+}
 
-	g_print ("Relative: '%s' with output '%s' got '%s'\n", uri, output, base);
+static void
+test_duration (void)
+{
+	gboolean verbose = g_test_verbose ();
 
-#if 0
-	{
-		char *dos;
-		dos = totem_pl_parser_uri_to_dos (uri, output);
-		g_print ("DOS path: %s\n", dos);
-		g_print ("\n");
-		g_free (dos);
-	}
-#endif
+	g_assert_cmpint (totem_pl_parser_parse_duration ("500", verbose), ==, 500);
+	g_assert_cmpint (totem_pl_parser_parse_duration ("01:01", verbose), ==, 61);
+	g_assert_cmpint (totem_pl_parser_parse_duration ("00:00:00.01", verbose), ==, 1);
+	g_assert_cmpint (totem_pl_parser_parse_duration ("01:00:01.01", verbose), ==, 3601);
+	g_assert_cmpint (totem_pl_parser_parse_duration ("01:00.01", verbose), ==, 60);
+	g_assert_cmpint (totem_pl_parser_parse_duration ("24.59", verbose), ==, 1499);
 }
 
 static void
-test_relative (void)
+test_date (void)
 {
-	header ("Relative paths for playlist saving feature");
+	gboolean verbose = g_test_verbose ();
 
-	test_relative_real ("/home/hadess/test/test file.avi",
-			    "/home/hadess/foobar.m3u", "test/test file.avi");
-	test_relative_real ("file:///home/hadess/test/test%20file.avi",
-			    "/home/hadess/whatever.m3u", "test/test file.avi");
-	test_relative_real ("smb://server/share/file.mp3",
-			    "/home/hadess/whatever again.m3u", NULL);
-	test_relative_real ("smb://server/share/file.mp3",
-			    "smb://server/share/file.m3u", "file.mp3");
-	test_relative_real ("/home/hadess/test.avi",
-			    "/home/hadess/test/file.m3u", NULL);
-	test_relative_real ("http://foobar.com/test.avi";,
-			    "/home/hadess/test/file.m3u", NULL);
-	test_relative_real ("file:///home/jan.old.old/myfile.avi",
-			    "file:///home/jan/myplaylist.m3u", NULL);
-	test_relative_real ("/1", "/test", "1");
+	/* RSS */
+	g_assert_cmpuint (totem_pl_parser_parse_date ("28 Mar 2007 10:28:18 GMT", verbose), ==, 1175077698);
+	g_assert_cmpuint (totem_pl_parser_parse_date ("01 may 2007 12:34:19 GMT", verbose), ==, 1178022859);
+
+	/* Atom */
+	g_assert_cmpuint (totem_pl_parser_parse_date ("2003-12-13T18:30:02Z", verbose), ==, 1071340202);
+	g_assert_cmpuint (totem_pl_parser_parse_date ("1990-12-31T15:59:60-08:00", verbose), ==, 662688000);
 }
 
-static void
-test_duration_real (const char *duration, gint64 expected)
-{
-	gint64 res;
-
-	res = totem_pl_parser_parse_duration (duration, option_debug);
-	if (res != expected)
-		error ("Error parsing '%s' to %"G_GINT64_FORMAT" secs, got %"G_GINT64_FORMAT" secs",
-		       duration ? duration : "(null)", expected, res);
-	g_print ("Parsed '%s' to %"G_GINT64_FORMAT" secs\n", duration ? duration : "(null)", res);
+#define READ_CHUNK_SIZE 8192
+#define MIME_READ_CHUNK_SIZE 1024
+
+static char *
+test_data_get_data (const char *uri, guint *len)
+{
+	gssize bytes_read;
+	GFileInputStream *stream;
+	GFile *file;
+	GError *error = NULL;
+	char *buffer;
+
+	*len = 0;
+
+	file = g_file_new_for_commandline_arg (uri);
+
+	/* Open the file. */
+	stream = g_file_read (file, NULL, &error);
+	if (stream == NULL) {
+		g_test_message ("URI '%s' couldn't be opened in test_data_get_data: '%s'\n", uri, error->message);
+		g_error_free (error);
+		return NULL;
+	}
+
+	buffer = g_malloc (MIME_READ_CHUNK_SIZE);
+	bytes_read = g_input_stream_read (G_INPUT_STREAM (stream), buffer, MIME_READ_CHUNK_SIZE, NULL, &error);
+	g_object_unref (G_INPUT_STREAM (stream));
+	if (bytes_read == -1) {
+		g_free (buffer);
+		return NULL;
+	}
+
+	if (bytes_read == -1) {
+		g_test_message ("URI '%s' couldn't be read or closed in _get_mime_type_with_data: '%s'\n", uri, error->message);
+		g_error_free (error);
+		g_free (buffer);
+		return NULL;
+	}
+
+	/* Return the file null-terminated. */
+	buffer = g_realloc (buffer, bytes_read + 1);
+	buffer[bytes_read] = '\0';
+	*len = bytes_read;
+
+	return buffer;
 }
 
 static void
-test_duration (void)
+test_parsability (void)
 {
-	header ("Duration string parsing");
+	guint i;
+	struct {
+		const char *uri;
+		gboolean parsable;
+		gboolean slow;
+	} const files[] = {
+		/* NOTE: For relative paths, don't add a protocol. */
+		{ "560051.xml", TRUE, FALSE },
+		{ "file:///tmp/file_doesnt_exist.wmv", FALSE, FALSE },
+		{ "http://live.hujjat.org:7860/main";, FALSE, TRUE },
+		{ "http://www.comedycentral.com/sitewide/media_player/videoswitcher.jhtml?showid=934&category=/shows/the_daily_show/videos/headlines&sec=videoId%3D36032%3BvideoFeatureId%3D%3BpoppedFrom%3D_shows_the_daily_show_index.jhtml%3BisIE%3Dfalse%3BisPC%3Dtrue%3Bpagename%3Dmedia_player%3Bzyg%3D%27%2Bif_nt_zyg%2B%27%3Bspan%3D%27%2Bif_nt_span%2B%27%3Bdemo%3D%27%2Bif_nt_demo%2B%27%3Bbps%3D%27%2Bif_nt_bandwidth%2B%27%3Bgateway%3Dshows%3Bsection_1%3Dthe_daily_show%3Bsection_2%3Dvideos%3Bsection_3%3Dheadlines%3Bzyg%3D%27%2Bif_nt_zyg%2B%27%3Bspan%3D%27%2Bif_nt_span%2B%27%3Bdemo%3D%27%2Bif_nt_demo%2B%27%3Bera%3D%27%2Bif_nt_era%2B%27%3Bbps%3D%27%2Bif_nt_bandwidth%2B%27%3Bfla%3D%27%2Bif_nt_Flash%2B%27&itemid=36032&clip=com/dailyshow/headlines/10156_headline.wmv&mswmext=.asx";, TRUE, TRUE },
+		{ NULL,  FALSE, FALSE }
+	};	
+
+	/* Loop through the list, downloading the URIs and checking for parsability */
+	for (i = 0; files[i].uri != NULL; ++i) {
+		gboolean parsable;
+		char *data;
+		guint len;
+
+		/* Slow test! */
+		if (files[i].slow && !g_test_slow ())
+			continue;
 
-	test_duration_real ("500", 500);
-	test_duration_real ("01:01", 61);
-	test_duration_real ("00:00:00.01", 1);
-	test_duration_real ("01:00:01.01", 3601);
-	test_duration_real ("01:00.01", 60);
-	test_duration_real ("24.59", 1499);
+		g_test_message ("Testing \"%s\"...", files[i].uri);
+
+		data = test_data_get_data (files[i].uri, &len);
+		if (files[i].parsable == TRUE)
+			g_assert (data != NULL);
+		else if (data == NULL)
+			continue;
+
+		parsable = totem_pl_parser_can_parse_from_data (data, len, TRUE);
+		g_free (data);
+
+		g_assert (parsable == files[i].parsable);
+	}
+
+	/* Loop through again by filename */
+	for (i = 0; files[i].uri != NULL; ++i) {
+		/* Slow test! */
+		if (files[i].slow && !g_test_slow ())
+			continue;
+
+		g_test_message ("Testing \"%s\"...", files[i].uri);
+		g_assert (totem_pl_parser_can_parse_from_filename (files[i].uri, TRUE) == files[i].parsable);
+	}
 }
 
-#define DATE_BUFSIZE 512
-#define PRINT_DATE_FORMAT "%Y-%m-%dT%H:%M:%SZ"
+static TotemPlParserResult
+simple_parser_test (const char *uri)
+{
+	TotemPlParserResult retval;
+	TotemPlParser *pl = totem_pl_parser_new ();
+
+	g_object_set (pl, "recurse", !option_no_recurse,
+			  "debug", option_debug,
+			  "force", option_force,
+			  "disable-unsafe", option_disable_unsafe,
+			  NULL);
+
+	retval = totem_pl_parser_parse_with_base (pl, uri, option_base_uri, FALSE);
+	g_object_unref (pl);
+
+	return retval;
+}
 
 static void
-test_date_real (const char *date_str, guint64 expected)
+test_parsing_hadess (void)
 {
-	char res_str[DATE_BUFSIZE];
-	struct tm *tm;
-	guint64 res;
+	g_assert (simple_parser_test ("file:///home/hadess/Movies") != TOTEM_PL_PARSER_RESULT_ERROR);
+}
 
-	res = totem_pl_parser_parse_date (date_str, option_debug);
+static void
+test_parsing_nonexistent_files (void)
+{
+	g_test_bug ("330120");
+	g_assert (simple_parser_test ("file:///tmp/file_doesnt_exist.wmv") == TOTEM_PL_PARSER_RESULT_ERROR);
+}
 
-	tm = gmtime ((time_t *) &res);
-	strftime ((char *) &res_str, DATE_BUFSIZE, PRINT_DATE_FORMAT, tm);
+static void
+test_parsing_broken_asx (void)
+{
+	TotemPlParserResult result;
 
-	if (res != expected) {
-		char expected_str[DATE_BUFSIZE];
+	/* Slow test! */
+	if (!g_test_slow ())
+		return;
 
-		tm = gmtime ((time_t *) &expected);
-		strftime ((char *) &expected_str, DATE_BUFSIZE, PRINT_DATE_FORMAT, tm);
+	g_test_bug ("323683");
+	result = simple_parser_test ("http://www.comedycentral.com/sitewide/media_player/videoswitcher.jhtml?showid=934&category=/shows/the_daily_show/videos/headlines&sec=videoId%3D36032%3BvideoFeatureId%3D%3BpoppedFrom%3D_shows_the_daily_show_index.jhtml%3BisIE%3Dfalse%3BisPC%3Dtrue%3Bpagename%3Dmedia_player%3Bzyg%3D%27%2Bif_nt_zyg%2B%27%3Bspan%3D%27%2Bif_nt_span%2B%27%3Bdemo%3D%27%2Bif_nt_demo%2B%27%3Bbps%3D%27%2Bif_nt_bandwidth%2B%27%3Bgateway%3Dshows%3Bsection_1%3Dthe_daily_show%3Bsection_2%3Dvideos%3Bsection_3%3Dheadlines%3Bzyg%3D%27%2Bif_nt_zyg%2B%27%3Bspan%3D%27%2Bif_nt_span%2B%27%3Bdemo%3D%27%2Bif_nt_demo%2B%27%3Bera%3D%27%2Bif_nt_era%2B%27%3Bbps%3D%27%2Bif_nt_bandwidth%2B%27%3Bfla%3D%27%2Bif_nt_Flash%2B%27&itemid=36032&clip=com/dailyshow/headlines/10156_headline.wmv&mswmext=.asx";);
+	g_assert (result != TOTEM_PL_PARSER_RESULT_ERROR);
+}
 
-		error ("Error parsing '%s' to %"G_GUINT64_FORMAT" (%s), got %"G_GUINT64_FORMAT" (%s)",
-		       date_str, expected, expected_str, res, res_str);
-	}
-	g_print ("Parsed '%s' to %"G_GINT64_FORMAT" (%s)\n",
-		 date_str, res, res_str);
+static void
+test_parsing_404_error (void)
+{
+	g_test_bug ("158052");
+	g_assert (simple_parser_test ("http://live.hujjat.org:7860/main";) == TOTEM_PL_PARSER_RESULT_ERROR);
 }
 
 static void
-test_date (void)
+test_parsing_xml_head_comments (void)
 {
-	header ("Date/Time string parsing");
+	g_test_bug ("560051");
+	g_assert (simple_parser_test ("file://" TEST_FILE_DIR "560051.xml") == TOTEM_PL_PARSER_RESULT_SUCCESS);
+}
 
-	/* RSS */
-	test_date_real ("28 Mar 2007 10:28:18 GMT", 1175077698);
-	test_date_real ("01 may 2007 12:34:19 GMT", 1178022859);
-	/* Atom */
-	test_date_real ("2003-12-13T18:30:02Z", 1071340202);
-	test_date_real ("1990-12-31T15:59:60-08:00", 662688000);
+static void
+test_parsing_xml_comment_whitespace (void)
+{
+	g_test_bug ("541405");
+	g_assert (simple_parser_test ("file://" TEST_FILE_DIR "541405.xml") == TOTEM_PL_PARSER_RESULT_SUCCESS);
 }
 
 #define MAX_DESCRIPTION_LEN 128
+#define DATE_BUFSIZE 512
+#define PRINT_DATE_FORMAT "%Y-%m-%dT%H:%M:%SZ"
 
 static void
-entry_metadata_foreach (const char *key,
-			const char *value,
-			gpointer data)
+entry_metadata_foreach (const char *key, const char *value, gpointer data)
 {
 	if (g_ascii_strcasecmp (key, TOTEM_PL_PARSER_FIELD_URI) == 0)
 		return;
@@ -185,7 +257,7 @@
 	    			*s = '\0';
 	    			break;
 			}
-	    	g_print ("\t%s = '%s' (truncated)\n", key, tmp);
+	    	g_message ("\t%s = '%s' (truncated)", key, tmp);
 	    	return;
 	}
 	if (g_ascii_strcasecmp (key, TOTEM_PL_PARSER_FIELD_PUB_DATE) == 0) {
@@ -198,20 +270,19 @@
 			tm = gmtime ((time_t *) &res);
 			strftime ((char *) &res_str, DATE_BUFSIZE, PRINT_DATE_FORMAT, tm);
 
-			g_print ("\t%s = '%s' (%"G_GUINT64_FORMAT"/'%s')\n", key, res_str, res, value);
+			g_message ("\t%s = '%s' (%"G_GUINT64_FORMAT"/'%s')", key, res_str, res, value);
 		} else {
-			g_print ("\t%s = '%s' (date parsing failed)\n", key, value);
+			g_message ("\t%s = '%s' (date parsing failed)", key, value);
 		}
 		return;
 	}
-	g_print ("\t%s = '%s'\n", key, value);
+	g_message ("\t%s = '%s'", key, value);
 }
 
 static void
-entry_parsed (TotemPlParser *parser, const char *uri,
-	      GHashTable *metadata, gpointer data)
+entry_parsed (TotemPlParser *parser, const char *uri, GHashTable *metadata, gpointer data)
 {
-	g_print ("added URI '%s'\n", uri);
+	g_message ("Added URI \"%s\"...", uri);
 	g_hash_table_foreach (metadata, (GHFunc) entry_metadata_foreach, NULL);
 }
 
@@ -224,13 +295,13 @@
 	if (res != TOTEM_PL_PARSER_RESULT_SUCCESS) {
 		switch (res) {
 		case TOTEM_PL_PARSER_RESULT_UNHANDLED:
-			g_print ("URI '%s' unhandled\n", uri);
+			g_message ("URI \"%s\" unhandled.", uri);
 			break;
 		case TOTEM_PL_PARSER_RESULT_ERROR:
-			g_print ("error handling URI '%s'\n", uri);
+			g_message ("Error handling URI \"%s\".", uri);
 			break;
 		case TOTEM_PL_PARSER_RESULT_IGNORED:
-			g_print ("ignored URI '%s'\n", uri);
+			g_message ("Ignored URI \"%s\".", uri);
 			break;
 		default:
 			g_assert_not_reached ();
@@ -242,122 +313,28 @@
 static gboolean
 push_parser (gpointer data)
 {
-	TotemPlParser *pl = (TotemPlParser *)data;
-
-	if (files != NULL) {
-		guint i;
-
-		for (i = 0; files[i] != NULL; ++i) {
-			test_parsing_real (pl, files[i]);
-		}
-	} else {
-		//test_parsing_real (pl, "file:///mnt/cdrom");
-		test_parsing_real (pl, "file:///home/hadess/Movies");
-		/* Bugzilla 158052, 404 */
-		test_parsing_real (pl, "http://live.hujjat.org:7860/main";);
-		/* Bugzilla 330120 */
-		test_parsing_real (pl, "file:///tmp/file_doesnt_exist.wmv");
-		/* Bugzilla 323683 */
-		test_parsing_real (pl, "http://www.comedycentral.com/sitewide/media_player/videoswitcher.jhtml?showid=934&category=/shows/the_daily_show/videos/headlines&sec=videoId%3D36032%3BvideoFeatureId%3D%3BpoppedFrom%3D_shows_the_daily_show_index.jhtml%3BisIE%3Dfalse%3BisPC%3Dtrue%3Bpagename%3Dmedia_player%3Bzyg%3D%27%2Bif_nt_zyg%2B%27%3Bspan%3D%27%2Bif_nt_span%2B%27%3Bdemo%3D%27%2Bif_nt_demo%2B%27%3Bbps%3D%27%2Bif_nt_bandwidth%2B%27%3Bgateway%3Dshows%3Bsection_1%3Dthe_daily_show%3Bsection_2%3Dvideos%3Bsection_3%3Dheadlines%3Bzyg%3D%27%2Bif_nt_zyg%2B%27%3Bspan%3D%27%2Bif_nt_span%2B%27%3Bdemo%3D%27%2Bif_nt_demo%2B%27%3Bera%3D%27%2Bif_nt_era%2B%27%3Bbps%3D%27%2Bif_nt_bandwidth%2B%27%3Bfla%3D%27%2Bif_nt_Flash%2B%27&itemid=36032&clip=com/dailyshow/headlines/10156_headline.wmv&mswmext=.asx";);
-	}
-	g_main_loop_quit (loop);
-	return FALSE;
-}
-
-#ifdef USE_DATA
-
-#define READ_CHUNK_SIZE 8192
-#define MIME_READ_CHUNK_SIZE 1024
-
-static char *
-test_data_get_data (const char *uri, guint *len)
-{
-	gssize bytes_read;
-	GFileInputStream *stream;
-	GFile *file;
-	GError *error = NULL;
-	char *buffer;
-
-	*len = 0;
-
-	file = g_file_new_for_uri (uri);
-
-	/* Open the file. */
-	stream = g_file_read (file, NULL, &error);
-	if (stream == NULL) {
-		g_print ("URI '%s' couldn't be opened in test_data_get_data: '%s'\n", uri, error->message);
-		g_error_free (error);
-		return NULL;
-	}
-
-	buffer = g_malloc (MIME_READ_CHUNK_SIZE);
-	bytes_read = g_input_stream_read (G_INPUT_STREAM (stream), buffer, MIME_READ_CHUNK_SIZE, NULL, &error);
-	g_object_unref (G_INPUT_STREAM (stream));
-	if (bytes_read == -1) {
-		g_free (buffer);
-		return NULL;
-	}
-
-	if (bytes_read == -1) {
-		g_message ("URI '%s' couldn't be read or closed in _get_mime_type_with_data: '%s'\n", uri, error->message);
-		g_error_free (error);
-		g_free (buffer);
-		return NULL;
-	}
-
-	/* Return the file null-terminated. */
-	buffer = g_realloc (buffer, bytes_read + 1);
-	buffer[bytes_read] = '\0';
-	*len = bytes_read;
-
-	return buffer;
-}
-#endif /* USE_DATA */
-
-static void
-test_data (void)
-{
 	guint i;
+	TotemPlParser *pl = TOTEM_PL_PARSER (data);
 
-	for (i = 0; files[i] != NULL; ++i) {
-		char *filename = files[i];
-		gboolean retval;
-#ifdef USE_DATA
-		char *data;
-		guint len;
+	for (i = 0; uris[i] != NULL; ++i)
+		test_parsing_real (pl, uris[i]);
 
-		data = test_data_get_data (filename, &len);
-		if (data == NULL) {
-			g_message ("Couldn't get data for %s", filename);
-			continue;
-		}
-		retval = totem_pl_parser_can_parse_from_data (data, len, TRUE);
-		g_free (data);
-#else
-		retval = totem_pl_parser_can_parse_from_filename (filename, TRUE);
-#endif /* USE_DATA */
+	g_main_loop_quit (loop);
 
-		if (retval != FALSE) {
-			g_message ("IS a playlist: %s", filename);
-		} else {
-			g_message ("ISNOT playlist: %s", filename);
-		}
-	}
+	return FALSE;
 }
 
 static void
 playlist_started (TotemPlParser *parser, const char *uri, GHashTable *metadata)
 {
-	g_print ("Started playlist '%s'\n", uri);
+	g_message ("Started playlist \"%s\"...", uri);
 	g_hash_table_foreach (metadata, (GHFunc) entry_metadata_foreach, NULL);
-	g_print ("\n");
 }
 
 static void
 playlist_ended (TotemPlParser *parser, const char *uri)
 {
-	g_print ("Playlist '%s' ended\n", uri);
-	g_print ("\n");
+	g_message ("Playlist \"%s\" ended.", uri);
 }
 
 static void
@@ -374,92 +351,57 @@
 	g_signal_connect (G_OBJECT (pl), "playlist-started", G_CALLBACK (playlist_started), NULL);
 	g_signal_connect (G_OBJECT (pl), "playlist-ended", G_CALLBACK (playlist_ended), NULL);
 
-	header ("parsing");
 	g_idle_add (push_parser, pl);
 	loop = g_main_loop_new (NULL, FALSE);
 	g_main_loop_run (loop);
 }
 
-int main (int argc, char **argv)
+int
+main (int argc, char *argv[])
 {
-	GOptionEntry option_entries [] =
-	{
+	GError *error = NULL;
+	GOptionContext *context;
+	const GOptionEntry entries[] = {
 		{ "no-recurse", 'n', 0, G_OPTION_ARG_NONE, &option_no_recurse, "Disable recursion", NULL },
 		{ "debug", 'd', 0, G_OPTION_ARG_NONE, &option_debug, "Enable debug", NULL },
-		{ "data", 't', 0, G_OPTION_ARG_NONE, &option_data, "Use data instead of filename", NULL },
 		{ "force", 'f', 0, G_OPTION_ARG_NONE, &option_force, "Force parsing", NULL },
 		{ "disable-unsafe", 'u', 0, G_OPTION_ARG_NONE, &option_disable_unsafe, "Disabling unsafe playlist-types", NULL },
-		{ "base-uri", 'b', 0, G_OPTION_ARG_STRING, &option_base_uri, "Base URI to resolve relative items from", NULL },
-		{ "duration", 0, 0, G_OPTION_ARG_NONE, &option_duration, "Run duration test", NULL },
-		{ "g-fatal-warnings", 0, 0, G_OPTION_ARG_NONE, &g_fatal_warnings, "Make all warnings fatal", NULL },
-		{ G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_STRING_ARRAY, &files, NULL, "[URI...]" },
+		{ "base-uri", 'b', 0, G_OPTION_ARG_STRING, &option_base_uri, "Base URI from which to resolve relative items", NULL },
+		{ G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_STRING_ARRAY, &uris, NULL, "[URI...]" },
 		{ NULL }
 	};
-	GOptionContext *context;
-	GError *error = NULL;
-	gboolean retval;
-
-	setlocale (LC_ALL, "");
 
-	g_thread_init (NULL);
 	g_type_init ();
+	g_test_init (&argc, &argv, NULL);
+	g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=";);
 
-	context = g_option_context_new (NULL);
-	g_option_context_add_main_entries (context, option_entries, NULL);
-
-	retval = g_option_context_parse (context, &argc, &argv, &error);
-	g_option_context_free (context);
-
-	if (!retval) {
-		g_print ("Error parsing arguments: %s\n", error->message);
-		g_error_free (error);
+	/* Parse our own command-line options */
+	context = g_option_context_new ("- test parser functions");
+	g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
 
-		g_print ("Usage: %s <-n | --no-recurse> <-d | --debug> <-h | --help> <-t | --data > <-u | --disable-unsafe> <uri>\n", argv[0]);
-		exit (1);
-	}
-
-	if (g_fatal_warnings) {
-		GLogLevelFlags fatal_mask;
-
-		fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
-		fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
-		g_log_set_always_fatal (fatal_mask);
-	}
-
-	if (option_data != FALSE && files == NULL) {
-		g_message ("Please pass specific files to check by data");
+	if (g_option_context_parse (context, &argc, &argv, &error) == FALSE) {
+		g_print ("Option parsing failed: %s\n", error->message);
 		return 1;
 	}
 
-	if (option_duration != FALSE) {
-		if (files == NULL) {
-			test_duration ();
-			return 0;
-		} else {
-			guint i;
-
-			for (i = 0; files[i] != NULL; i++) {
-				g_print ("Parsed '%s' to %"G_GINT64_FORMAT" secs\n",
-					 files[i],
-					 totem_pl_parser_parse_duration (files[i], option_debug));
-			}
+	/* If we've been given no URIs, run the static tests */
+	if (uris == NULL) {
+		g_test_add_func ("/parser/duration", test_duration);
+		g_test_add_func ("/parser/date", test_date);
+		g_test_add_func ("/parser/relative", test_relative);
+		g_test_add_func ("/parser/parsability", test_parsability);
+		g_test_add_func ("/parser/parsing/hadess", test_parsing_hadess);
+		g_test_add_func ("/parser/parsing/nonexistent_files", test_parsing_nonexistent_files);
+		g_test_add_func ("/parser/parsing/broken_asx", test_parsing_broken_asx);
+		g_test_add_func ("/parser/parsing/404_error", test_parsing_404_error);
+		g_test_add_func ("/parser/parsing/xml_head_comments", test_parsing_xml_head_comments);
+		g_test_add_func ("/parser/parsing/xml_comment_whitespace", test_parsing_xml_comment_whitespace);
 
-			return 0;
-		}
+		return g_test_run ();
 	}
 
-	if (files == NULL) {
-		test_duration ();
-		test_date ();
-		test_relative ();
-		test_parsing ();
-	} else {
-		if (option_data) {
-			test_data ();
-		} else {
-			test_parsing ();
-		}
-	}
+	/* Test the parser on all the given input URIs */
+	test_parsing ();
 
 	return 0;
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]