<?xml version="1.0" encoding="utf-8"?>

<!-- Identifies the files as RSS 2.0 files. -->
<rss version="2.0"
       xmlns:itunes="http://www.itunes.com/DTDs/Podcast-1.0.dtd"
       xmlns:media="http://search.yahoo.com/mrss/">

       <!-- Indicates the start of information about the podcasting feed. -->
       <channel>

       <!-- This is the actual title of the podcast as seen by the end user. -->
       <title>Learn Podcasting</title>

       <!-- The URL (Internet web address) where the podcast is located. -->
       <link>http://comscigate.com/podCasting/learn_Podcasting.htm</link>

       <!-- A description of this particular episode. -->
       <description>Exemplifies Learning Podcasting</description>

       <!-- "English-Canadian": Allows podcatchers to group sites by language. -->
       <language>en-ca</language>

       <!-- Year of copyright -->
       <copyright>2007</copyright>

       <!-- Creator of the file, not necessarily the podcast author. -->
       <generator>Gerry Donaldson</generator>

       <!-- Last date that the podcast files were modified. -->
       <!-- Uses military time: the 24 hour clock. -->
       <!-- Time zone is number of hours (-0700) from GMT (Greenwich Mean Time). -->
       <lastBuildDate>Fri, 9 Feb 2007 11:10:35 -0700</lastBuildDate>

       <!-- Contact information for the webmaster of the website hosting the podcast. -->
       <webMaster>gerrydonaldson@gmail.com</webMaster>

       <!-- "Time to Live" = tells podcatchers how often to check -->
       <!-- (in terms of minutes) whether a new feed is available. -->
       <ttl>60</ttl>

       <!-- Starts section detailing the actual podcast feed information. -->
       <item>

             <!-- Title of the podcast or a particular episode of a serial podcast. -->
             <title>First Attempt</title>

             <!-- Describes the podcast or particular episode of a serial podcast. -->
             <description>Highlights Importance of Podcasting</description>

             <!-- Name of the person(s) who created the content. -->
             <author>Gerry Donaldson</author>

             <!-- Date and time that the podcast was actually posted to the website. -->
             <!-- Uses military time: the 24 hour clock. -->
             <!-- Time zone is number of hours (-0700) from GMT (Greenwich Mean Time). -->
             <pubDate>Fri, 9 Feb 2007 11:10:35 -0700</pubDate>

             <!-- The link to the file that the podcatching software will download. -->
             <!-- The file's "length" is measured in terms of bytes. -->
             <!-- The files's "type" describes the precise type of file to be downloaded. -->
             <enclosure url="http://www.comscigate.com/podCasting/pod/LearnPodcasting.mp3"
                          length="2257945" type="audio/mpeg"/>

       <!-- Ends section detailing the actual podcast feed information. -->
       </item>

       <!-- Indicates the end of information about the podcasting feed. -->
       </channel>

</rss>
