www.webdeveloper.com
Recent Articles
  • Finding Slow Running Queries in ASE 15
  • A More Advanced Pie Chart for Analysis Services Data
  • Adobe AIR Programming Unleashed: Working with Windows
  • Performance Testing SQL Server 2008's Change Data Capture Functionality
  • The ABC's of PHP: Introduction to PHP
  • How to Migrate from BasicFiles to SecureFiles Storage
  • Why the Twitter Haters Are Wrong
  • User Personalization with PHP: Beginning the Application
  • Whats in an Oracle Schema?
  • Lighting Enhancement in Photoshop
  •  

    Go Back   WebDeveloper.com > Client-Side Development > XML

    XML Discussion and technical support for using and deploying XML applications and websites.

    Reply
     
    Thread Tools Rate Thread Display Modes
      #1  
    Old 12-29-2006, 10:57 AM
    Corey Bryant's Avatar
    Corey Bryant Corey Bryant is offline
    Texan at Heart
     
    Join Date: Dec 2006
    Location: Castle Pines North, CO
    Posts: 211
    Adding an image to a podcast RSS Feed

    I used this to help create an RSS feed for podcasting
    Code:
    <?xml version="1.0"?>
    	<rss version="2.0">
    	<channel>
    		<title>Merchant Account Show</title>
    		<link>http://www.merchantaccountshow.net</link>
    		<description>Merchant Account information brought to you by LoudCommerce and Lynn Brooks</description>
    		<language>en-us</language>
    		<copyright></copyright>
    		<lastBuildDate>Sun, 24 Dec 2006 06:42:44 GMT</lastBuildDate>
    		<generator>tdscripts.com Podcast Generator</generator>		<webMaster></webMaster>
    		<ttl>1</ttl>
    		<item>
    			<title>Non Receipt of Goods or Services Chargeback Codes</title>
    			<description>There is only one chargeback reason code in this group. These chargebacks can happen from time to time if the consumer claims the services were not provided or the goods were not delivered - maybe even not received in a timely fashion.</description>
    			<pubDate>Sun, 24 Dec 2006 06:42:44 GMT</pubDate>
    			<enclosure url="http://www.merchantaccountshow.net/mp3/loud-ps-20061224.mp3" length="1.97M" type="audio/mpeg"/>
    			</item>
    		</channel>
    	</rss>
    and it seems to work. I then found this one from iTunes re: RSS feeds for podcasting. Is the one from Apple's site 'better' in the long run?

    It also shows
    Code:
    <itunes:image href="http://example.com/podcasts/everything/AllAboutEverything.jpg" />
    to add an image. Should I possibly use two different feeds or what can I use to add an image?

    Thank you!
    __________________
    Corey
    My Merchant Account Blog | Merchant Account Show
    Reply With Quote
      #2  
    Old 01-04-2007, 11:29 AM
    gimbras gimbras is offline
    Registered User
     
    Join Date: Mar 2005
    Location: Lisboa, Portugal
    Posts: 86
    Arrow

    I was looking for the same thing too. I think!
    I wanted to know if it is possible to add a favicon to the RSS Feeds.

    I use Firefox and Opera to read my RSS Feeds and only after I visit one of the feeds the favicon appears. But I wanted it to be loaded prior to that, when the feed loads.

    Can anybody help me, please?

    Thanks.
    Reply With Quote
      #3  
    Old 01-04-2007, 12:05 PM
    Corey Bryant's Avatar
    Corey Bryant Corey Bryant is offline
    Texan at Heart
     
    Join Date: Dec 2006
    Location: Castle Pines North, CO
    Posts: 211
    This is what I came up with
    Code:
    <?xml version="1.0"?>
    	<rss version="2.0">
    	<channel>
    		<title>Merchant Account Show</title>
    		<link>http://www.merchantaccountshow.net</link>
    		<description>Merchant Account information brought to you by LoudCommerce and Lynn Brooks</description>
    		<language>en-us</language>
    		<copyright>LoudCommerce 2006</copyright>
    		<lastBuildDate>Sun, 24 Dec 2006 06:42:44 GMT</lastBuildDate>
    		<generator>LoudCommerce</generator>
    		<image>
    			<url>http://www.loudcommerce.com/images/logo/first-data-merchant-services.gif</url>
    			<title>LoudCommerce - Merchant Account Solutions</title>
    			<link>http://www.loudcommerce.com/</link>
    			<description>Process your credit cards with a leader in the industry</description>
    		</image>		
    		<webMaster></webMaster>
    		<ttl>1</ttl>
    		<item>
    			<title>Non Receipt of Goods or Services Chargeback Codes</title>
    			<description>There is only one chargeback reason code in this group. These chargebacks can happen from time to time if the consumer claims the services were not provided or the goods were not delivered - maybe even not received in a timely fashion.</description>
    			<pubDate>Sun, 24 Dec 2006 06:42:44 GMT</pubDate>
    			<enclosure url="http://www.merchantaccountshow.net/mp3/loud-ps-20061224.mp3" length="1.97M" type="audio/mpeg"/>
    			</item>
    		</channel>
    	</rss>
    and the image shows in my Sony Playstation portable GUI and it links over to our website
    __________________
    Corey
    My Merchant Account Blog | Merchant Account Show
    Reply With Quote
      #4  
    Old 01-04-2007, 01:15 PM
    yodasw16's Avatar
    yodasw16 yodasw16 is offline
    weener mobile
     
    Join Date: Feb 2006
    Location: Detroit, MI
    Posts: 118
    You can have both <image> and <itunes:image> in the same feed. If you are submitting your feed to iTunes, then I would certainly include the itunes image tag. If you aren't, then it isn't necessary. go here for all of the itunes specs.
    __________________
    Some useful sites I use:
    W3C Markup Validation Service - Make sure you are using valid HTML! This way people won't make fun of you as much.
    W3Schools Online Web Tutorials - Learn things.
    SWFobject from deconcept, UFO from Bobby VanDersluis - Embedding Flash the right way!
    CSSPlay by Stu Nicholls - Lots of cool CSS experiments.
    CSS Zen Garden - Some really great examples of how CSS can be used to make really beautiful websites.
    Reply With Quote
      #5  
    Old 01-04-2007, 02:11 PM
    Corey Bryant's Avatar
    Corey Bryant Corey Bryant is offline
    Texan at Heart
     
    Join Date: Dec 2006
    Location: Castle Pines North, CO
    Posts: 211
    Thanks! I was not certain if the extra tags would be read, thrown out, etc by the other readers.
    __________________
    Corey
    My Merchant Account Blog | Merchant Account Show
    Reply With Quote
      #6  
    Old 01-15-2007, 09:36 AM
    gimbras gimbras is offline
    Registered User
     
    Join Date: Mar 2005
    Location: Lisboa, Portugal
    Posts: 86
    I read somewhere else that favicon is not possible to show up.
    But I went forward and add that image tag to my feeds and I can see it using Opera9+ ou IE7.
    Reply With Quote
    Reply

    Bookmarks


    Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
     
    Thread Tools
    Display Modes Rate This Thread
    Rate This Thread:

    Posting Rules
    You may not post new threads
    You may not post replies
    You may not post attachments
    You may not edit your posts

    BB code is On
    Smilies are On
    [IMG] code is Off
    HTML code is Off
    Forum Jump


    All times are GMT -5. The time now is 01:09 PM.



    Acceptable Use Policy

    Internet.com
    The Network for Technology Professionals

    Search:

    About Internet.com

    Legal Notices, Licensing, Permissions, Privacy Policy.
    Advertise | Newsletters | E-mail Offers

    Powered by vBulletin® Version 3.7.3
    Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.