Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

rss-media · RSS Media

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1150
  • Category: XML
  • Founded: Dec 2, 2004
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 1012 - 1041 of 1261   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#1012 From: "mdubinko" <mdubinko@...>
Date: Tue Jun 26, 2007 11:10 pm
Subject: Atom-Media?
mdubinko
Send Email Send Email
 
Is anyone using Atom with the RSS-Media extensions? I've seen Sam
Ruby's message on this list from some time back, indicating that it
embeds well within Atom.

Does anyone have any recent experiences with this combination? Does it
work as well as expected, or are there any rough patches?

Thanks,

.micah

#1013 From: "tufpixgarden" <pixgarden@...>
Date: Thu Jul 5, 2007 2:15 pm
Subject: Direct Link to FLV
tufpixgarden
Send Email Send Email
 
I tried to make some test with a Media RSS
http://www.videopolis.com/rss.xml

But i dont know what i've missed, but yahoo is doing a direct link to
the flv files : http://video.yahoo.com/video/play?vid=1113916834

More over this media rss work well in aol video or blinkx so dont know
what to do

Can you help me ?

François

#1014 From: Abdul Qabiz <mail@...>
Date: Thu Jul 5, 2007 6:03 pm
Subject: Re: Direct Link to FLV
abdulqabiz3
Send Email Send Email
 
Yahoo! is not giving direct link to FLV, they are providing a player
(html page) instead.

AOL, Youtube also do the same. Blip.tv does provide you flv url, Google
Video provides you media:group element which has multiple media:content
elements for different video-formats (flv, mp4 etc).


Media RSS allows you to have direct content url or/and player...

I really didn't get your question, I looked at your feed media-rss stuff
looks good except there is something wrong in pubDate (RSS element).

Check at:-

http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.videopolis.com%2Frss.xml


-abdul

tufpixgarden wrote:
>
> I tried to make some test with a Media RSS
> http://www.videopolis.com/rss.xml <http://www.videopolis.com/rss.xml>
>
> But i dont know what i've missed, but yahoo is doing a direct link to
> the flv files : http://video.yahoo.com/video/play?vid=1113916834
> <http://video.yahoo.com/video/play?vid=1113916834>
>
> More over this media rss work well in aol video or blinkx so dont know
> what to do
>
> Can you help me ?
>
> François
>
>

#1015 From: "opentank" <rwalikis@...>
Date: Fri Jul 6, 2007 9:17 pm
Subject: MediaRSS in a "Multi-Channel, Single Feed" Implementation
opentank
Send Email Send Email
 
Running back through the archives, I'm not seeing a clear answer to
this question....

Why can't we use the MRSS spec to enable a single feed to enclose
multiple "channels" of content, where:

<rss>
<channel>
<item>{first channel}
    {item meta-data} = channel meta-data
    <media:content>{first title}</media:content>
       {media:content meta-data} = title meta-data
    <media:content>{second title}
       {media:content meta-data} = second title meta-data
    etc.
</item>
<item>{second channel}
    {item meta-data} = channel meta-data
    <media:content>{first title, second channel}</media:content>
       {media:content meta-data} = title meta-data
    <media:content>{second title, second channel}
       {media:content meta-data} = second title meta-data
    etc.
</item>
etc.
</channel>
</rss>

This came from extending sample 4 at http://search.yahoo.com/mrss into
a logical framework, based on our understanding of the restrictions of
RSS 2.0 / MediaRSS, and also wanting to provide extended meta-data for
both channels and titles in a single source feed that aggregates other
feeds (i.e. channels).

1) In constructing a sample file of this sort and testing it,
http://feedvalidator.org is indicating this is valid RSS, although
it's not clear if all current MediaRSS tests are strictly adhered to
its the current deployment as of 7/6/07

2) I would understand that current feedreaders are not currently
"programmed" to see multiple <media:content> tags under an individual
<item> tag,.... but maybe they should be?

Any guidance and/or thoughts?

- W

#1016 From: "muralikpbhat" <muralik@...>
Date: Mon Jul 16, 2007 12:50 pm
Subject: support for 'Delete' in MRSS feed ?
muralikpbhat
Send Email Send Email
 
Hi,
Is there a way to send 'deletes' through mrss format ?

What I mean is , suppose if today I send some urls and it has made to
the 'index', is it possible to tell 'delete' this url from index if
needed later?

Thanks,
Murali

#1017 From: "Rik Sagar" <jedorm@...>
Date: Tue Jul 17, 2007 6:19 pm
Subject: Re: MediaRSS in a "Multi-Channel, Single Feed" Implementation
jedorm
Send Email Send Email
 
Why embed all the channels into the single feed?  Why not use the
<media:content>  or  <enclosure> within a single <item> to point to
another RSS/MRSS feed?  If you use a content-type of text/rss+xml your
feed reader would know it was a 'nested feed' rather than true content
to download.

Another thing I've been playing with in my app is to add a 'feed of
feeds' by having the <enclosure> or <media:content> tag point to a URL
that starts with the pcast:// protocol.

I realize this approach has the downside of an extra fetch and (XML)
parse for each level you drill down, but I think it scales better.  My
concern with the single file approach would be the size of a file you
could potentially build-up by nesting all the feeds into one.

I'm focused on portable devices where performance is limited by XML
parsing speed and memory availability.  Some feeds are already getting
very big, with 100s of episodes.  Nesting the whole of, say, revision3
into a single feed would kill me :P

Rik.




--- In rss-media@yahoogroups.com, "opentank" <rwalikis@...> wrote:
>
> Running back through the archives, I'm not seeing a clear answer to
> this question....
>
> Why can't we use the MRSS spec to enable a single feed to enclose
> multiple "channels" of content, where:
>
> <rss>
> <channel>
> <item>{first channel}
>    {item meta-data} = channel meta-data
>    <media:content>{first title}</media:content>
>       {media:content meta-data} = title meta-data
>    <media:content>{second title}
>       {media:content meta-data} = second title meta-data
>    etc.
> </item>
> <item>{second channel}
>    {item meta-data} = channel meta-data
>    <media:content>{first title, second channel}</media:content>
>       {media:content meta-data} = title meta-data
>    <media:content>{second title, second channel}
>       {media:content meta-data} = second title meta-data
>    etc.
> </item>
> etc.
> </channel>
> </rss>
>
> This came from extending sample 4 at http://search.yahoo.com/mrss into
> a logical framework, based on our understanding of the restrictions of
> RSS 2.0 / MediaRSS, and also wanting to provide extended meta-data for
> both channels and titles in a single source feed that aggregates other
> feeds (i.e. channels).
>
> 1) In constructing a sample file of this sort and testing it,
> http://feedvalidator.org is indicating this is valid RSS, although
> it's not clear if all current MediaRSS tests are strictly adhered to
> its the current deployment as of 7/6/07
>
> 2) I would understand that current feedreaders are not currently
> "programmed" to see multiple <media:content> tags under an individual
> <item> tag,.... but maybe they should be?
>
> Any guidance and/or thoughts?
>
> - W
>

#1018 From: "opentank" <rwalikis@...>
Date: Fri Jul 20, 2007 5:47 pm
Subject: Re: MediaRSS in a "Multi-Channel, Single Feed" Implementation
opentank
Send Email Send Email
 
I agree that the other option we considered was to have 1 channel=1
feed and provide a separate "feed of channel feeds" to aggregate....

Feed size was not such a major consideration, as this was originally
intended as a provider to provider implementation, rather than
provider to consumer focus, although we don't see why it cannot be
used for the latter, if a) readers a MRSS compatible, and b) they
truly support example 4 of the MRSS implementation recommendation...

A sample file I used in Feed Validator is up at:

http://www.fairsource.com/MRSSfeedsample.rss

- Rob

--- In rss-media@yahoogroups.com, "Rik Sagar" <jedorm@...> wrote:
>
> Why embed all the channels into the single feed?  Why not use the
> <media:content>  or  <enclosure> within a single <item> to point to
> another RSS/MRSS feed?  If you use a content-type of text/rss+xml your
> feed reader would know it was a 'nested feed' rather than true content
> to download.
>
> Another thing I've been playing with in my app is to add a 'feed of
> feeds' by having the <enclosure> or <media:content> tag point to a URL
> that starts with the pcast:// protocol.
>
> I realize this approach has the downside of an extra fetch and (XML)
> parse for each level you drill down, but I think it scales better.  My
> concern with the single file approach would be the size of a file you
> could potentially build-up by nesting all the feeds into one.
>
> I'm focused on portable devices where performance is limited by XML
> parsing speed and memory availability.  Some feeds are already getting
> very big, with 100s of episodes.  Nesting the whole of, say, revision3
> into a single feed would kill me :P
>
> Rik.
>
>
>
>
> --- In rss-media@yahoogroups.com, "opentank" <rwalikis@> wrote:
> >
> > Running back through the archives, I'm not seeing a clear answer to
> > this question....
> >
> > Why can't we use the MRSS spec to enable a single feed to enclose
> > multiple "channels" of content, where:
> >
> > <rss>
> > <channel>
> > <item>{first channel}
> >    {item meta-data} = channel meta-data
> >    <media:content>{first title}</media:content>
> >       {media:content meta-data} = title meta-data
> >    <media:content>{second title}
> >       {media:content meta-data} = second title meta-data
> >    etc.
> > </item>
> > <item>{second channel}
> >    {item meta-data} = channel meta-data
> >    <media:content>{first title, second channel}</media:content>
> >       {media:content meta-data} = title meta-data
> >    <media:content>{second title, second channel}
> >       {media:content meta-data} = second title meta-data
> >    etc.
> > </item>
> > etc.
> > </channel>
> > </rss>
> >
> > This came from extending sample 4 at http://search.yahoo.com/mrss into
> > a logical framework, based on our understanding of the restrictions of
> > RSS 2.0 / MediaRSS, and also wanting to provide extended meta-data for
> > both channels and titles in a single source feed that aggregates other
> > feeds (i.e. channels).
> >
> > 1) In constructing a sample file of this sort and testing it,
> > http://feedvalidator.org is indicating this is valid RSS, although
> > it's not clear if all current MediaRSS tests are strictly adhered to
> > its the current deployment as of 7/6/07
> >
> > 2) I would understand that current feedreaders are not currently
> > "programmed" to see multiple <media:content> tags under an individual
> > <item> tag,.... but maybe they should be?
> >
> > Any guidance and/or thoughts?
> >
> > - W
> >
>

#1019 From: "melvinhcox" <melcox@...>
Date: Thu Aug 2, 2007 6:21 am
Subject: Re: Wordpress plugin for writing RSS Media extentions in Wordpress generated fee
melvinhcox
Send Email Send Email
 
Implementation of RSS Media extensions in WordPress is long overdue.

Sadly, there appears to be a very palpable gap in communication
between developers of the more advanced feed readers (Miro, FireAnt,
etc.) and the teams working on Podcasting software.

The WordPress community does not appear to understand that this IS
(and will continue to be) a major issue for content producers wishing
to utilize the very attractive WordPress framework. The tools offered
via the Structured Blogging plugin are, in my view, not at all acceptable.

At this writing, you appear to have three options:

1) Write your own plugin (which I for one would be willing to purchase
at a reasonable price 'in a New York minute').

2) Commission the development of such a plugin.

3) Join us in lobbying the team responsible for the popular podPress
plugin to include full support for RSS Media extensions without
further delay.

Please see postings re Media RSS within the podPress User Group (also
on Yahoo!).


M.C.


P.S. Our next best hope would be for the Participatory Culture
Foundation's now dormant "Broadcast Machine" project to find the
funding necessary for its full resurrection.


--- In rss-media@yahoogroups.com, "Steve Wilhelm" <steve.wilhelm@...>
wrote:
>
> Is there a Wordpress plugin to include RSS Media extensions in
> Wordpress  generated feeds?
>

#1020 From: "Michael Sullivan" <sulleleven@...>
Date: Thu Aug 2, 2007 4:50 pm
Subject: Re: Re: Wordpress plugin for writing RSS Media extentions in Wordpress generated fee
sulleleven
Send Email Send Email
 
the last time i was involved in a similar discussion, i tossed up a
sample wordpress blog and posted about custom field usage and editing
the rss template:

http://vastmachine.com/blog/

however, i agree that a proper plugin or even better, native support
in wordpress core.... is needed.

sull

On 8/2/07, melvinhcox <melcox@...> wrote:
> Implementation of RSS Media extensions in WordPress is long overdue.
>
> Sadly, there appears to be a very palpable gap in communication
> between developers of the more advanced feed readers (Miro, FireAnt,
> etc.) and the teams working on Podcasting software.
>
> The WordPress community does not appear to understand that this IS
> (and will continue to be) a major issue for content producers wishing
> to utilize the very attractive WordPress framework. The tools offered
> via the Structured Blogging plugin are, in my view, not at all acceptable.
>
> At this writing, you appear to have three options:
>
> 1) Write your own plugin (which I for one would be willing to purchase
> at a reasonable price 'in a New York minute').
>
> 2) Commission the development of such a plugin.
>
> 3) Join us in lobbying the team responsible for the popular podPress
> plugin to include full support for RSS Media extensions without
> further delay.
>
> Please see postings re Media RSS within the podPress User Group (also
> on Yahoo!).
>
>
> M.C.
>
>
> P.S. Our next best hope would be for the Participatory Culture
> Foundation's now dormant "Broadcast Machine" project to find the
> funding necessary for its full resurrection.
>
>
> --- In rss-media@yahoogroups.com, "Steve Wilhelm" <steve.wilhelm@...>
> wrote:
> >
> > Is there a Wordpress plugin to include RSS Media extensions in
> > Wordpress  generated feeds?
> >
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>

#1021 From: "Mike Meiser" <groups-yahoo-com@...>
Date: Mon Aug 13, 2007 5:20 pm
Subject: Re: Re: Wordpress plugin for writing RSS Media extentions in Wordpress generated fee
mmeiser8
Send Email Send Email
 
FYI, I was at Pixelodeon (videoblogging conference) in LA a few months back at a blogger.com session, wordpress was represented by at least one if not two people at that session, I think Matt himself might have been there and many members including those from blip and the videoblogging community repeatedly cited that blogger.com needed mediaRSS support and why.  It's importance for meta data, multiple enclosures and several other points was very well empasized. I spoke to a couple of the wordpress people afterward, I didn't beat the issue to death but I think they got the point.

 
Show in a Box a vlog / video podcast specific wordpress plugin also debuted at Pixelodeon. Though I'm not sure it outputs mediaRSS it does address some of the problems of mediaRSS such as handling multiple video types through vPIP, one of the included plugins.


Perhaps there's some opportunity there for development.  The developer is Enric. He should be contactable through the blog if he's not already on this list.  In fact, it looks like they have a vPIP google group. I just signed up.

I must say I'd really really love to see full mediaRSS support in Wordpress too.  What we've mostly been doing to get around the problem is using various microformats since they can be specified right in the HTML.

I can't believe there's no "proper" MediaRSS plugin yet.  Perhaps between Enric, Sull yourself and a few others we can bang something out. I volunteer my time but I'm only good for testing and support as I'm not much of a programmer.

-Mike

Michael Meiser
mmeiser.com/blog

On 8/2/07, Michael Sullivan <sulleleven@...> wrote:
the last time i was involved in a similar discussion, i tossed up a
sample wordpress blog and posted about custom field usage and editing
the rss template:

http://vastmachine.com/blog/

however, i agree that a proper plugin or even better, native support
in wordpress core.... is needed.

sull

On 8/2/07, melvinhcox <melcox@...> wrote:
> Implementation of RSS Media extensions in WordPress is long overdue.
>
> Sadly, there appears to be a very palpable gap in communication
> between developers of the more advanced feed readers (Miro, FireAnt,
> etc.) and the teams working on Podcasting software.
>
> The WordPress community does not appear to understand that this IS
> (and will continue to be) a major issue for content producers wishing
> to utilize the very attractive WordPress framework. The tools offered
> via the Structured Blogging plugin are, in my view, not at all acceptable.
>
> At this writing, you appear to have three options:
>
> 1) Write your own plugin (which I for one would be willing to purchase
> at a reasonable price 'in a New York minute').
>
> 2) Commission the development of such a plugin.
>
> 3) Join us in lobbying the team responsible for the popular podPress
> plugin to include full support for RSS Media extensions without
> further delay.
>
> Please see postings re Media RSS within the podPress User Group (also
> on Yahoo!).
>
>
> M.C.
>
>
> P.S. Our next best hope would be for the Participatory Culture
> Foundation's now dormant "Broadcast Machine" project to find the
> funding necessary for its full resurrection.
>
>
> --- In rss-media@yahoogroups.com, "Steve Wilhelm" <steve.wilhelm@...>
> wrote:
> >
> > Is there a Wordpress plugin to include RSS Media extensions in
> > Wordpress  generated feeds?
> >
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>



Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/rss-media/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/rss-media/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:rss-media-digest@yahoogroups.com
    mailto:rss-media-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
    rss-media-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
     http://docs.yahoo.com/info/terms/


 

#1022 From: "Mike Meiser" <groups-yahoo-com@...>
Date: Mon Aug 13, 2007 5:27 pm
Subject: Re: Re: Wordpress plugin for writing RSS Media extentions in Wordpress generated fee
mmeiser8
Send Email Send Email
 
FYI, I was at Pixelodeon (videoblogging conference) in LA a few months back at a blogger.com session, wordpress was represented by at least one if not two people at that session, I think Matt himself might have been there and many members including those from blip and the videoblogging community repeatedly cited that blogger.com needed mediaRSS support and why.  It's importance for meta data, multiple enclosures and several other points was very well empasized. I spoke to a couple of the wordpress people afterward, I didn't beat the issue to death but I think they got the point.

 
Show in a Box a vlog / video podcast specific wordpress plugin also debuted at Pixelodeon. Though I'm not sure it outputs mediaRSS it does address some of the problems of mediaRSS such as handling multiple video types through vPIP, one of the included plugins.


Perhaps there's some opportunity there for development.  The developer is Enric. He should be contactable through the blog if he's not already on this list.  In fact, it looks like they have a vPIP google group. I just signed up.

I must say I'd really really love to see full mediaRSS support in Wordpress too.  What we've mostly been doing to get around the problem is using various microformats since they can be specified right in the HTML.

I can't believe there's no "proper" MediaRSS plugin yet.  Perhaps between Enric, Sull yourself and a few others we can bang something out. I volunteer my time but I'm only good for testing and support as I'm not much of a programmer.

-Mike

Michael Meiser
mmeiser.com/blog

On 8/2/07, Michael Sullivan <sulleleven@...> wrote:
the last time i was involved in a similar discussion, i tossed up a
sample wordpress blog and posted about custom field usage and editing
the rss template:

http://vastmachine.com/blog/

however, i agree that a proper plugin or even better, native support
in wordpress core.... is needed.

sull

On 8/2/07, melvinhcox <melcox@...> wrote:
> Implementation of RSS Media extensions in WordPress is long overdue.
>
> Sadly, there appears to be a very palpable gap in communication
> between developers of the more advanced feed readers (Miro, FireAnt,
> etc.) and the teams working on Podcasting software.
>
> The WordPress community does not appear to understand that this IS
> (and will continue to be) a major issue for content producers wishing
> to utilize the very attractive WordPress framework. The tools offered
> via the Structured Blogging plugin are, in my view, not at all acceptable.
>
> At this writing, you appear to have three options:
>
> 1) Write your own plugin (which I for one would be willing to purchase
> at a reasonable price 'in a New York minute').
>
> 2) Commission the development of such a plugin.
>
> 3) Join us in lobbying the team responsible for the popular podPress
> plugin to include full support for RSS Media extensions without
> further delay.
>
> Please see postings re Media RSS within the podPress User Group (also
> on Yahoo!).
>
>
> M.C.
>
>
> P.S. Our next best hope would be for the Participatory Culture
> Foundation's now dormant "Broadcast Machine" project to find the
> funding necessary for its full resurrection.
>
>
> --- In rss-media@yahoogroups.com, "Steve Wilhelm" <steve.wilhelm@...>
> wrote:
> >
> > Is there a Wordpress plugin to include RSS Media extensions in
> > Wordpress  generated feeds?
> >
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>



Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/rss-media/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/rss-media/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:rss-media-digest@yahoogroups.com
    mailto:rss-media-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
    rss-media-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
     http://docs.yahoo.com/info/terms/


 

#1023 From: "Andrew Baisley" <baisley@...>
Date: Fri Aug 24, 2007 1:43 pm
Subject: Replacing an MRSS feed on Yahoo
baisleyroo
Send Email Send Email
 
Hi All,

I work for ROO Group. We have a channel on Yahoo at:
http://video.yahoo.com/video/group?gid=1073761131&fr=yfp-t-471

This channel is not being created from our official MRSS feed. We've
tried to submit the new feed via the online form, but it doesn't seem
to be taking (we've waited a few weeks for it to take effect). Anyone
have any ideas on what our next steps should be?

I would love to contact someone at Yahoo and have them replace the
feed driving this channel with the new one.

Also, while I'm here - does submitting one MRSS feed cover all of
Yahoo's properties in other countries? For example, do we need to
submit a separate UK feed that resolves to a .co.uk URL?

Thanks for any advice on how we should move forward!

Regards,


ROO | Andrew Baisley | Manager, Business Development
Direct: 646-278-6058 | Mobile: 917-776-2420
Email: andrew.baisley@...
228 East 45th Street, 8th Floor, New York, NY 10017

#1024 From: "Ryan Parman" <lists@...>
Date: Mon Aug 27, 2007 7:52 pm
Subject: Media RSS Namespace URL
skyzyxufks
Send Email Send Email
 
I came across this note online:
http://forums.feedburner.com/viewtopic.php?t=14466

This posting notes that the correct namespace URL is
http://search.yahoo.com/mrss/, although the spec says
http://search.yahoo.com/mrss.

Additionally, http://search.yahoo.com/mrss/ no longer displays the
specification, while http://search.yahoo.com/mrss does.

What is the official word on this, and if there are errors, when will
they be rectified?

#1025 From: "tufpixgarden" <pixgarden@...>
Date: Mon Aug 27, 2007 9:37 pm
Subject: Re: Replacing an MRSS feed on Yahoo
tufpixgarden
Send Email Send Email
 
Have you try a 301 redirect ?


--- In rss-media@yahoogroups.com, "Andrew Baisley" <baisley@...> wrote:
>
> Hi All,
>
> I work for ROO Group. We have a channel on Yahoo at:
> http://video.yahoo.com/video/group?gid=1073761131&fr=yfp-t-471
>
> This channel is not being created from our official MRSS feed. We've
> tried to submit the new feed via the online form, but it doesn't seem
> to be taking (we've waited a few weeks for it to take effect). Anyone
> have any ideas on what our next steps should be?
>
> I would love to contact someone at Yahoo and have them replace the
> feed driving this channel with the new one.
>
> Also, while I'm here - does submitting one MRSS feed cover all of
> Yahoo's properties in other countries? For example, do we need to
> submit a separate UK feed that resolves to a .co.uk URL?
>
> Thanks for any advice on how we should move forward!
>
> Regards,
>
>
> ROO | Andrew Baisley | Manager, Business Development
> Direct: 646-278-6058 | Mobile: 917-776-2420
> Email: andrew.baisley@...
> 228 East 45th Street, 8th Floor, New York, NY 10017
>

#1026 From: "Andrew Baisley" <baisley@...>
Date: Tue Aug 28, 2007 1:11 pm
Subject: Re: Replacing an MRSS feed on Yahoo
baisleyroo
Send Email Send Email
 
I think the issue is that we have no idea where they are picking it up
from - it's not our servers. In any case, I was able to find a contact
at Yahoo this morning and it looks like we're going to be able to take
care of it.

I appreciate the suggestions though.

Andrew

#1027 From: WWWhatsup <joly@...>
Date: Wed Aug 29, 2007 4:45 pm
Subject: Re: Media RSS Namespace URL
wwwhatsup4
Send Email Send Email
 
At 03:52 PM 8/27/2007, you wrote:
>I came across this note online:
>http://forums.feedburner.com/viewtopic.php?t=14466
>
>This posting notes that the correct namespace URL is
>http://search.yahoo.com/mrss/, although the spec says
>http://search.yahoo.com/mrss.
>
>Additionally, http://search.yahoo.com/mrss/ no longer displays the
>specification, while http://search.yahoo.com/mrss does.
>
>What is the official word on this, and if there are errors, when will
>they be rectified?
>


This was the last official word:


>From: "David Hall" <daviddhall@...>
>
>Date: Wed, 20 Jun 2007 01:44:38 -0000
>Subject: [rss-media] Re: Media RSS namespace
>
>
>--- In rss-media@yahoogroups.com, "Sam Ruby" <rubys@...> wrote:
>>
>> Eric, please see:
>>
>> http://tech.groups.yahoo.com/group/rss-media/message/966
>>
>> David and the rest of the rss-media group:
>>
>> Has this changed?
>
>Hi Sam and Eric -
>
>The short answer is that it should always end with a trailing slash.
>
>In 1.1.0, we changed it to have a trailing slash, partially based on
>this post:
>
>http://groups.yahoo.com/group/rss-media/message/610
>
>However, in that release, we had examples that mistakenly used the
>namespace without a trailing slash which caused some confusion. I
>meant to fix it along with a number of other minor issues that Sam
>uncovered; however, I got preoccupied with other things. It appears
>that at some point in recent months, the specification was reverted to
>specify the namespace without a trailing slash. My guess is that this
>is because the actual url "http://search.yahoo.com/mrss/" stopped working.
>
>I'll get the appropriate person to fix this along with the other
>issues that should have been corrected long ago.
>
>Again, the namespace should end with a trailing slash:
>
>http://search.yahoo.com/mrss/ (this doesn't currently resolve correctly)
>
>Thanks-
>David



---------------------------------------------------------------
              WWWhatsup NYC
http://pinstand.com - http://punkcast.com
---------------------------------------------------------------

#1028 From: "lord_mikelon" <lord_mikelon@...>
Date: Fri Aug 31, 2007 5:14 pm
Subject: Problem with my feed
lord_mikelon
Send Email Send Email
 
Hello

I have some videoblogs (wordpress based) and I have modified my rss
feed  for make it compatible with mrss (yahoo media rss). I have
submitted my videoblogs to yahoo video (2 weeks ago) and my vids still
are not indexed.

What can be the problem? I have <enclosure>, <media:content> and
<media:player> (I think these are the most important) for all my video
files, and feedvalidator says my feed is ok. My videos are in .wmv
format. Can somebody please look my feed and check if I have made some
mistake?

One of my blogs is www.spafood.info and the feed url is:
http://www.spafood.info/?feed=rss2

Thanks in advance and excuse me if my english is not very good, Im spanish

#1029 From: "lord_mikelon" <lord_mikelon@...>
Date: Tue Aug 28, 2007 8:07 pm
Subject: Problem with my feed
lord_mikelon
Send Email Send Email
 
Hello for all

I have a sex blog (wordpress based) and I modified my rss feed adding
some tags for make it compatible with yahoo media rss. You can see my
feed here http://www.sexmsncams.com/feed/ (I have followed mrss
specifications and I have checked it at feedvalidator and all is OK)

I submitted it to Yahoo video through web form 1 week ago. My vids
still are not indexed. what can be the reason? Moreover I used the
same rss for another blog I have and:

My videos are indexed but... When a user clicks on the vid, he gets
the vid download. I modified my rss in order to get my vids are play
from my own site. I have seen other channels do this (youtube, blip,
etc..)
I added a <media:player> tag with this purpose but don't work. Is not
the correct tag?

Sorry for my long post and for my bad english, I'm spanish

Thanks in advance

#1030 From: "yohannankvarghese" <yohannankvarghese@...>
Date: Mon Sep 3, 2007 3:48 pm
Subject: Remove Special chars from RSS feed
yohannankvar...
Send Email Send Email
 
Hi All,

I had created an RSS feed and validated in feed validator and
throwing the error. How do I correct this error? If I change the
charset to UTF-8 and am getting more errors. Please help with a
solution for this.

My RSS feed is this

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>ZUG > Funniest Conversations</title>
<link>http://www.zug.com/gab/index.cgi?
func=list_conv&sort=funnymtd</link>
<description>Funniest conversations right now on
ZUG.com</description>
<language>en-us</language>
<copyright>Copyright 2005, Media Shower, Inc.</copyright>
<lastBuildDate>Mon, 03 Sep 2007 03:07:47 CDT</lastBuildDate>
<item>
<title></title>
<description>Tonight was the night the new girl was supposed to come
in and get trained.  This means one thing to an all male staff in a
small town Chinese restaurant\x85 Game time.   I get there early so
I can get my stretches done and go over my battle plan in full and
intricate detail\x85 When she came through that door It was like
something out of a shitty (but lovely) teen flick\x85 porn music was
playing and she walked with such brisk and determined motion that
her hair flapped in her\x85 hotness aurora.  She's gots eyes that
burn like cigarettes and nails that shine like justice I wanted to
tour her facilities and do so much more than pick up slack. I mean
if you were lucky enough to have sex with her I think God would stop
time and just... give you a high-five.    Unfortunately my manager
who thinks he's a friggen stud decides to move in and shut me down
from the beginning telling her how immature I am and how I'm
destined to work minimum wage jobs for the rest of my meaningless
life. (I mean his burns were a lot more thought out and clever then
I\x92ll ever choose to remember\x85 but fuck him this is my post.)
</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75783</link>
<pubDate>Sun, 02 Sep 2007 01:21:00 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75783</guid>
</item>
<item>
<title></title>
<description>I need you kids to trust me on this one.  There's a guy
out there who is having heart surgery. If he either dies or is bed-
ridden for the long term (Shiavo, stroke, whatever), GAB benefits.
I don't want to go into detail because it'd get a GABber in trouble,
but if everyone would, would you please send out some negative
vibes?  We'll just call him Vito for convenience sake.
Thanks.</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75756</link>
<pubDate>Fri, 31 Aug 2007 11:11:39 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75756</guid>
</item>
<item>
<title></title>
<description>Ok, hypothetically speaking, if I was to have a little
shindig in the next month or two, who would be interested in coming
to it, IF invited?  Not saying I'll let you, but I'm just curious.
I know Trix is in, well....cause he always is.   And I know there
are a few locals who could come with no problem.  I'm thinking
something similar to GAB2 at Six Flags...   Let me know and if there
is a good enough response, I shall start the planning.</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75778</link>
<pubDate>Sat, 01 Sep 2007 11:08:20 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75778</guid>
</item>
<item>
<title></title>
<description>37 years ago today, my mother and father married.
They've had their ups and downs. They've gone through sickness and
health. They've been supportive of their children. Hell, they even
supported their daughter when she told them she was pregnant at 15.
But at the end of the day, they are still together.
I'll catch my dad looking at my mom sometimes. He'll be looking at
her like it's the first time he's ever seen her. He looks at her
sometimes like a love sick teenager. Of course, there are also times
when he looks at her like he wants to kill her, but that doesn't
happen often.
So I started this thread to tell my dad how much I love him and to
thank him for giving me such a fine example of what a man, a
husband, and a father is supposed to act like.</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=46642</link>
<pubDate>Thu, 02 Sep 2004 11:26:20 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=46642</guid>
</item>
<item>
<title></title>
<description>They are indeed a good match.  I'm sitting here
house/dog sitting for a friend, SNL in the background (not unlike
elevator music) and decided I'd have a night cap.  Not much here in
the way of mixers, so I opted for some Johnny Walker Black on the
rocks.  I've never been much of a scotch drinker, until now.  It's
deeeeeelish!!!</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75779</link>
<pubDate>Sat, 01 Sep 2007 11:12:17 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75779</guid>
</item>
<item>
<title></title>
<description>So like everyone else in Boston, I moved today. Since U-
haul is run by such competent professionals, they completely flaped
up in getting us our large truck last night. I reserved the truck,
but my friends were picking it up, so they called me while I was
working to say they didn't have our truck, but could give us a van
half the size. Bullshuffle, try moving out 4 people on Sept 1 in
Boston with a little cargo van. No sleep, 8 trips through gridlocked
traffic (our move was about 1 mile away) and 12, yes 12 hours of
actually moving, (that is after 6 hours of packing and cleaning) I
am finally done.  Now that all I want to do is sleep, I need to work
again tonight!  How was your Sept. 1 in Boston?</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75775</link>
<pubDate>Sat, 01 Sep 2007 05:29:01 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75775</guid>
</item>
<item>
<title></title>
<description>My wife is buying me a guitar and lessons for my
birthday this year. I have always wanted to learn to play, and I
guess my incessant nagging has finally paid off.  The pimply, 18
year-old at my local music shop has recommended the following \x96
CORT Earth 100.  Yamaha F700S.  And something called a
Tanglewood.    Sooo, what the fuck is a \x91Venetian cutaway\x92 and
is a 'solid top' important to start with?  Those in the know please
give me some advice. </description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75734</link>
<pubDate>Wed, 29 Aug 2007 06:45:42 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75734</guid>
</item>
<item>
<title></title>
<description>You guys rule!  I know you won't see this until you're
done being plastered. Enjoy!</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75782</link>
<pubDate>Sat, 01 Sep 2007 11:28:14 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75782</guid>
</item>
<item>
<title></title>
<description>And what a pain in the ass  this kitten is already!  We
discovered the kitten earlier this morning.  Apparently our cat Zoe
is retarded, because she dug out part of a wall in an unfinished
section of a spare bedroom and gave birth into a big clump of pink
insulation.  So, the kitten was covered in it.  After having the
baby, Zoe came downstairs and kept mewing and mewing, trying to get
our attention.  Then we went upstairs and found it.  This totally
freaked out my daughter, because she thought there was a dead kitten
attached to the live one.  It turned out that Zoe doesn't like the
taste of insulation-covered placenta.  So, I made my daughter pick
off as much of the fuzzy stuff as she could.  (I don't like wasting
food.)  Zoe did eat it after that.  I moved mama and baby downstairs
and finally Zoe is nursing like she should be.  We are hoping that
more babies are born soon, because if not we'll have to take her
into the vet for a $400 exam and ultrasound, and then maybe a costly
C-section.  The vet says it could be a perfectly normal
"delayed labor" and not to freak out too much yet.  So
keep your fingers crossed.  If the kittens have died inside her, I
could have dinner for at least 3 nights this week!</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75755</link>
<pubDate>Fri, 31 Aug 2007 10:54:00 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75755</guid>
</item>
<item>
<title></title>
<description>with someone found on an internet dating site!
"After taking precautions to ensure their safety during the
first in-person encounter, 30 percent of the women reported having
sex during that date, and 77 percent of those did not use condoms,
Padgett reported."  now thats a bunch of loose women on
match.com</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75744</link>
<pubDate>Thu, 30 Aug 2007 12:38:37 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75744</guid>
</item>
<item>
<title></title>
<description>Okay, not really, but that's what I thought when I saw
the title to this article on my favorite movie site.  Given that
this is a Peter Jackson film I would have thought the twins would've
made sure all the competition had "accidents" preventing
them from being in the film.  It's not too late girls; they haven't
started shooting yet.</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75785</link>
<pubDate>Sun, 02 Sep 2007 08:38:22 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75785</guid>
</item>
<item>
<title></title>
<description>This morning I went to the gym.  For those of you
unfamiliar with gyms, they're just like medieval torture rooms
except the victims are volunteers.  I spent my first 45 minutes on
an elliptical machine.  For those of you unfamiliar with elliptical
machines, they're devices where you mimic the motion of cross-
country skiing except with no joy whatsoever.  Also, since there was
nothing interesting on the TVs that hang overhead, my time on the
elliptical machine also involved watching fat, sweaty men on
Stairmasters.  (Because looking at that was still more pleasant for
me than looking into the weight-lifting area and seeing really fit
guys picking up women faster than I would be able to introduce
myself).  Anyway, at one point, two very fat kids got on some nearby
elliptical machines.  They were probably about 10 years old.  The
boy explained to the girl, "The tough thing about the
ellipticals is not falling off" and "I'm sweating more
than walking!" which I found slightly amusing.  My attention
drifted off of the kids for a couple of minutes until suddenly I
realized the girl was yelling "help!"    I soon realized
that she was part of some sort of program and was calling for her
trainer to assist her with the machine.  Their conversation went
something like this:  Girl: This exercise isn't working.  Trainer:
On this machine, you have to move to make it work.  Girl: I tried
that, but it didn't help.  Trainer: You have to keep moving.  The
whole time.  Girl: Ohhhhh!    If the kids had been really skinny,
this would have been an amusing anecdote for Reader's Digest or
something.  But given that the kids were morbidly obese, I figure
this story is more up GAB's alley.  Also, note that it's perfectly
acceptable for me to mock hilarious fat kids, since I'm overweight
myself.  It's sort of like how it's fine for black people to use the
n-word.  . . .  Or how the Holocaust was OK 'cause Hitler was part-
Jewish. </description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75774</link>
<pubDate>Sat, 01 Sep 2007 05:17:24 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75774</guid>
</item>
<item>
<title></title>
<description>I just confiscated a bottle of Courvoisier v.s. 500ml
80 proof (looks older then when skippy was funny).  Google didn't
help when I tried to see if this was any good.  So now I look to you
alcoholics Gabbers to inform me if I should keep it or deposit it
directly into the toilet.</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75763</link>
<pubDate>Fri, 31 Aug 2007 09:28:13 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75763</guid>
</item>
<item>
<title></title>
<description>Don't bother reading the article, it's not
interesting.   But doesn't Manhole Blast sound like some new gaymo
energy drink?  or enema kit?  or BOTH!?    Manhole Blast! It prompts
evacuation! </description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75758</link>
<pubDate>Fri, 31 Aug 2007 12:34:53 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75758</guid>
</item>
<item>
<title></title>
<description>I ask this for no reason.</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75786</link>
<pubDate>Sun, 02 Sep 2007 09:20:37 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75786</guid>
</item>
<item>
<title></title>
<description>You menfolk should be thinking of all the hot, sexy
estrogen hormones congregating here in Memphis because I am just
about to walk out the door to meet KChi for lunch!  We will
discussing our plans for taking over the world. And diapers. Oh, and
there will be pictures. Oh yes, there will be
pictures.</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75787</link>
<pubDate>Sun, 02 Sep 2007 11:58:02 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75787</guid>
</item>
<item>
<title></title>
<description>Ok, gang, the doc said I'm underweight for my second
trimester and she wants me to put on 5 pounds in the next 4 weeks,
before my next appointment.  Dieting Gabbers! What would you eat
mass quantites of if you could?  Fat Gabbers! What DO you eat mass
quantities of to maintain your massive girth?</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75792</link>
<pubDate>Mon, 03 Sep 2007 06:35:19 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75792</guid>
</item>
<item>
<title></title>
<description>I liked it.  Now I'm not a big horror movie fan, and I
didn't worship the original, so take my opinion with that in mind.
Plus I didn't go into the theatre expecting to see Out of Africa or
Citizen Kane.  Still, it had a lot of great, underused actors, and a
really cool kid playing Michael Meyers as a 10-year-old (which was
about half, and the better half, of the movie).  Add to that a good
deal of gratuitous toplessness, some excellent kills, Malcolm
MacDowell and Danny Trejo, and it was a nice way to spend a Sunday
afternoon.  The theatre I went to has about 1,000 seats, a fucking
gigantic screen and a completely overblown sound system, which is
why I went there.  But here's the thing:  out of about 60 people in
the theatre, fully a dozen of them were under the age of 10.  I
swear to you that there were three or four kids in there who were
less than 7 years old.  Who the fuck takes a little kid to see the R-
rated Rob Zombie version of a flick that was over the top in horror
and suspense in its original version 30 years ago?  In the first 10
minutes, Michael (as a 10-year-old) had killed a rat with his bare
hands, cut it apart and flushed it down the toilet and killed a cat,
which he stored in a clear plastic bag in his schoolbag.  In the
next 10 minutes, he killed a schoolmate by bashing him in the head
repeatedly with a tree limb, then killed his mother's boyfriend by
slashing his throat, his sister's boyfriend by beating him with an
aluminum baseball bat, and his sister by repeatedly stabbing her as
she staggered through the house.  You really can't blame him,
though, because he had seen his sister, who was pretty cute, getting
fucked by her boyfriend, who was pretty scuzzy and not really
sensitive to her needs.</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75790</link>
<pubDate>Mon, 03 Sep 2007 12:12:37 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75790</guid>
</item>
<item>
<title></title>
<description>Next Saturday I'm hanging with Dan Ackroyd. Firend of
mine is hooking me up on the guest list of a small charity thing.
Sure, he hasn't done anything good for, um, decades, but who cares.
It's Elwood motherfuking Blues. It's the inventor of the bassmatic.
It's Beldar for fuck sake.  I'm happy.  </description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75788</link>
<pubDate>Sun, 02 Sep 2007 11:59:27 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75788</guid>
</item>
<item>
<title></title>
<description> <action>is star gazing
tonight\x85</action> There is an amazing meteor shower
starting in about 3 hours and 30 minutes(4:30am PST) </description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75767</link>
<pubDate>Sat, 01 Sep 2007 02:58:15 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75767</guid>
</item>
<item>
<title></title>
<description>She got flustered while in a stressful situation and
said something that didn't make any sense. Big deal, it's happened
to all of us. </description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75761</link>
<pubDate>Fri, 31 Aug 2007 01:43:35 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75761</guid>
</item>
<item>
<title></title>
<description>My back porch has a roof over the patio and the birds
love to build nests under there because it's next to the pool, so
instant drinking water, bath water, toilet water, whatever, for
them, and also no wind or rain to bother the youngins'.  Usually my
dad will just rip down any nests that are built under there, but
they always come back. Thus far it's only been dirty boring birds
like robins, but recently a Dove built hers under there. Dad grew
fond of it apparently, and let the nest stay.  Well yesterday I
bought me one of these and was playing around with it outside.  I
was close to the nest, but not nearly close enough to bother
anything (I thought), and was also on the outside of the roof. The
helicopter was in the air for a while before mom got scared and took
off, knocking an egg out of the nest.  Now there's dove placenta and
a tiny fetus on my patio... Al? Dibbs?</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75762</link>
<pubDate>Fri, 31 Aug 2007 01:55:41 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75762</guid>
</item>
<item>
<title></title>
<description>Seller does not answer emails regarding an item.
A++++++++!</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75749</link>
<pubDate>Thu, 30 Aug 2007 09:40:03 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75749</guid>
</item>
<item>
<title></title>
<description>A new drug called "camel toads"???  God, this
woman is retarded.  Linky.  And on a related note:  Song and video
tribute to "camel toads", sung to the tune of
"Kokomo". </description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75724</link>
<pubDate>Wed, 29 Aug 2007 02:17:53 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75724</guid>
</item>
<item>
<title></title>
<description>White teen girl: Ooh, Alexander Hamilton was such a
dreamboat... That's why he's my favorite federalist.  I call him
Hammy! And he was big pals with B-Frank, and Johnny Ads, and G-
Dubya, and J-Marsh, and... And...   And I can't remember any more
founding fathers, but of course they all had their own gangsta
names, too. They were big pimpin' over there in Independence Hall.
The only things they were missing were the hos... And that's why
Abby A. wanted them to remember the ladies.  </history
lesson></description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75766</link>
<pubDate>Sat, 01 Sep 2007 12:11:43 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75766</guid>
</item>
<item>
<title></title>
<description>...</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75780</link>
<pubDate>Sat, 01 Sep 2007 11:14:06 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75780</guid>
</item>
<item>
<title></title>
<description>AAAAAAAAAAAAAAHHHHHHHHHHHH!!!!!!!!!!!!</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75776</link>
<pubDate>Sat, 01 Sep 2007 06:59:53 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75776</guid>
</item>
<item>
<title></title>
<description>I hear it's the drug of choice in the
suburbs</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75768</link>
<pubDate>Sat, 01 Sep 2007 03:34:39 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75768</guid>
</item>
<item>
<title></title>
<description>I had some friends visiting this weekend, from around
NZ and from Germany. Although we called everyone else by their first
names, they insisted on calling me Neep. Because Neep is just me,
apparently.  At first I cringed each time because it was weird, but
now I am completely used to hearing "Neep" out loud.  Do
you guys (apart from Phuc) think you could get used to it?
</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75690</link>
<pubDate>Mon, 27 Aug 2007 06:53:13 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75690</guid>
</item>
<item>
<title></title>
<description>From the country that brought us imitation American
cheese and  back to school specials at gun shops.
McLink.</description>
<link>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75777</link>
<pubDate>Sat, 01 Sep 2007 07:39:21 CDT</pubDate>
<guid>http://www.zug.com/gab/index.cgi?
func=view_thread&thread_id=75777</guid>
</item>
</channel>
</rss>

Am getting these errors when I run the URL in validator(
http://feedvalidator.org/)


line 12, column 166: description contains bad characters (10
occurrences) [help]

... staff in a small town Chinese restaurant\x85 Game time.   I get
there early ...                                             ^
line 147, column 0: Invalid HTML: action (2 occurrences) [help]

<description> <action>is star gazing
tonight\x85</action> There is  ...


Thanks in advance.

Yohannan Varghese

#1031 From: "lord_mikelon" <lord_mikelon@...>
Date: Fri Aug 31, 2007 1:00 pm
Subject: Problem submitting my feed
lord_mikelon
Send Email Send Email
 
Hello

I have submitted my blog rss feed at least 3 times to yahoo video and
my videos are not indexed.

Can somebody check if my feed syntax is correct? The url is
http://www.spafood.info/?feed=rss2

Thanks in advance

#1032 From: WWWhatsup <joly@...>
Date: Thu Sep 6, 2007 9:15 am
Subject: Re: Remove Special chars from RSS feed
wwwhatsup4
Send Email Send Email
 
What is the url of your feed?

joly
At 11:48 AM 9/3/2007, you wrote:
>Hi All,
>
>I had created an RSS feed and validated in feed validator and
>throwing the error. How do I correct this error? If I change the
>charset to UTF-8 and am getting more errors. Please help with a
>solution for this.
>
>My RSS feed is this
>
><?xml version="1.0" encoding="ISO-8859-1" ?>
><rss version="2.0">
><channel>
><title>ZUG > Funniest Conversations</title>
><link>http://www.zug.com/gab/index.cgi?
>func=list_conv&sort=funnymtd</link>
><description>Funniest conversations right now on
>ZUG.com</description>
><language>en-us</language>
><copyright>Copyright 2005, Media Shower, Inc.</copyright>
><lastBuildDate>Mon, 03 Sep 2007 03:07:47 CDT</lastBuildDate>
><item>
><title></title>
><description>Tonight was the night the new girl was supposed to come
>in and get trained.  This means one thing to an all male staff in a
>small town Chinese restaurant\x85 Game time.   I get there early so
>I can get my stretches done and go over my battle plan in full and
>intricate detail\x85 When she came through that door It was like
>something out of a shitty (but lovely) teen flick\x85 porn music was
>playing and she walked with such brisk and determined motion that
>her hair flapped in her\x85 hotness aurora.  She's gots eyes that
>burn like cigarettes and nails that shine like justice I wanted to
>tour her facilities and do so much more than pick up slack. I mean
>if you were lucky enough to have sex with her I think God would stop
>time and just... give you a high-five.    Unfortunately my manager
>who thinks he's a friggen stud decides to move in and shut me down
>from the beginning telling her how immature I am and how I'm
>destined to work minimum wage jobs for the rest of my meaningless
>life. (I mean his burns were a lot more thought out and clever then
>I\x92ll ever choose to remember\x85 but fuck him this is my post.)
></description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75783</link>
><pubDate>Sun, 02 Sep 2007 01:21:00 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75783</guid>
></item>
><item>
><title></title>
><description>I need you kids to trust me on this one.  There's a guy
>out there who is having heart surgery. If he either dies or is bed-
>ridden for the long term (Shiavo, stroke, whatever), GAB benefits.
>I don't want to go into detail because it'd get a GABber in trouble,
>but if everyone would, would you please send out some negative
>vibes?  We'll just call him Vito for convenience sake.
>Thanks.</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75756</link>
><pubDate>Fri, 31 Aug 2007 11:11:39 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75756</guid>
></item>
><item>
><title></title>
><description>Ok, hypothetically speaking, if I was to have a little
>shindig in the next month or two, who would be interested in coming
>to it, IF invited?  Not saying I'll let you, but I'm just curious.
>I know Trix is in, well....cause he always is.   And I know there
>are a few locals who could come with no problem.  I'm thinking
>something similar to GAB2 at Six Flags...   Let me know and if there
>is a good enough response, I shall start the planning.</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75778</link>
><pubDate>Sat, 01 Sep 2007 11:08:20 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75778</guid>
></item>
><item>
><title></title>
><description>37 years ago today, my mother and father married.
>They've had their ups and downs. They've gone through sickness and
>health. They've been supportive of their children. Hell, they even
>supported their daughter when she told them she was pregnant at 15.
>But at the end of the day, they are still together.
>I'll catch my dad looking at my mom sometimes. He'll be looking at
>her like it's the first time he's ever seen her. He looks at her
>sometimes like a love sick teenager. Of course, there are also times
>when he looks at her like he wants to kill her, but that doesn't
>happen often.
>So I started this thread to tell my dad how much I love him and to
>thank him for giving me such a fine example of what a man, a
>husband, and a father is supposed to act like.</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=46642</link>
><pubDate>Thu, 02 Sep 2004 11:26:20 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=46642</guid>
></item>
><item>
><title></title>
><description>They are indeed a good match.  I'm sitting here
>house/dog sitting for a friend, SNL in the background (not unlike
>elevator music) and decided I'd have a night cap.  Not much here in
>the way of mixers, so I opted for some Johnny Walker Black on the
>rocks.  I've never been much of a scotch drinker, until now.  It's
>deeeeeelish!!!</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75779</link>
><pubDate>Sat, 01 Sep 2007 11:12:17 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75779</guid>
></item>
><item>
><title></title>
><description>So like everyone else in Boston, I moved today. Since U-
>haul is run by such competent professionals, they completely flaped
>up in getting us our large truck last night. I reserved the truck,
>but my friends were picking it up, so they called me while I was
>working to say they didn't have our truck, but could give us a van
>half the size. Bullshuffle, try moving out 4 people on Sept 1 in
>Boston with a little cargo van. No sleep, 8 trips through gridlocked
>traffic (our move was about 1 mile away) and 12, yes 12 hours of
>actually moving, (that is after 6 hours of packing and cleaning) I
>am finally done.  Now that all I want to do is sleep, I need to work
>again tonight!  How was your Sept. 1 in Boston?</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75775</link>
><pubDate>Sat, 01 Sep 2007 05:29:01 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75775</guid>
></item>
><item>
><title></title>
><description>My wife is buying me a guitar and lessons for my
>birthday this year. I have always wanted to learn to play, and I
>guess my incessant nagging has finally paid off.  The pimply, 18
>year-old at my local music shop has recommended the following \x96
>CORT Earth 100.  Yamaha F700S.  And something called a
>Tanglewood.    Sooo, what the fuck is a \x91Venetian cutaway\x92 and
>is a 'solid top' important to start with?  Those in the know please
>give me some advice. </description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75734</link>
><pubDate>Wed, 29 Aug 2007 06:45:42 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75734</guid>
></item>
><item>
><title></title>
><description>You guys rule!  I know you won't see this until you're
>done being plastered. Enjoy!</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75782</link>
><pubDate>Sat, 01 Sep 2007 11:28:14 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75782</guid>
></item>
><item>
><title></title>
><description>And what a pain in the ass  this kitten is already!  We
>discovered the kitten earlier this morning.  Apparently our cat Zoe
>is retarded, because she dug out part of a wall in an unfinished
>section of a spare bedroom and gave birth into a big clump of pink
>insulation.  So, the kitten was covered in it.  After having the
>baby, Zoe came downstairs and kept mewing and mewing, trying to get
>our attention.  Then we went upstairs and found it.  This totally
>freaked out my daughter, because she thought there was a dead kitten
>attached to the live one.  It turned out that Zoe doesn't like the
>taste of insulation-covered placenta.  So, I made my daughter pick
>off as much of the fuzzy stuff as she could.  (I don't like wasting
>food.)  Zoe did eat it after that.  I moved mama and baby downstairs
>and finally Zoe is nursing like she should be.  We are hoping that
>more babies are born soon, because if not we'll have to take her
>into the vet for a $400 exam and ultrasound, and then maybe a costly
>C-section.  The vet says it could be a perfectly normal
>"delayed labor" and not to freak out too much yet.  So
>keep your fingers crossed.  If the kittens have died inside her, I
>could have dinner for at least 3 nights this week!</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75755</link>
><pubDate>Fri, 31 Aug 2007 10:54:00 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75755</guid>
></item>
><item>
><title></title>
><description>with someone found on an internet dating site!
>"After taking precautions to ensure their safety during the
>first in-person encounter, 30 percent of the women reported having
>sex during that date, and 77 percent of those did not use condoms,
>Padgett reported."  now thats a bunch of loose women on
>match.com</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75744</link>
><pubDate>Thu, 30 Aug 2007 12:38:37 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75744</guid>
></item>
><item>
><title></title>
><description>Okay, not really, but that's what I thought when I saw
>the title to this article on my favorite movie site.  Given that
>this is a Peter Jackson film I would have thought the twins would've
>made sure all the competition had "accidents" preventing
>them from being in the film.  It's not too late girls; they haven't
>started shooting yet.</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75785</link>
><pubDate>Sun, 02 Sep 2007 08:38:22 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75785</guid>
></item>
><item>
><title></title>
><description>This morning I went to the gym.  For those of you
>unfamiliar with gyms, they're just like medieval torture rooms
>except the victims are volunteers.  I spent my first 45 minutes on
>an elliptical machine.  For those of you unfamiliar with elliptical
>machines, they're devices where you mimic the motion of cross-
>country skiing except with no joy whatsoever.  Also, since there was
>nothing interesting on the TVs that hang overhead, my time on the
>elliptical machine also involved watching fat, sweaty men on
>Stairmasters.  (Because looking at that was still more pleasant for
>me than looking into the weight-lifting area and seeing really fit
>guys picking up women faster than I would be able to introduce
>myself).  Anyway, at one point, two very fat kids got on some nearby
>elliptical machines.  They were probably about 10 years old.  The
>boy explained to the girl, "The tough thing about the
>ellipticals is not falling off" and "I'm sweating more
>than walking!" which I found slightly amusing.  My attention
>drifted off of the kids for a couple of minutes until suddenly I
>realized the girl was yelling "help!"    I soon realized
>that she was part of some sort of program and was calling for her
>trainer to assist her with the machine.  Their conversation went
>something like this:  Girl: This exercise isn't working.  Trainer:
>On this machine, you have to move to make it work.  Girl: I tried
>that, but it didn't help.  Trainer: You have to keep moving.  The
>whole time.  Girl: Ohhhhh!    If the kids had been really skinny,
>this would have been an amusing anecdote for Reader's Digest or
>something.  But given that the kids were morbidly obese, I figure
>this story is more up GAB's alley.  Also, note that it's perfectly
>acceptable for me to mock hilarious fat kids, since I'm overweight
>myself.  It's sort of like how it's fine for black people to use the
>n-word.  . . .  Or how the Holocaust was OK 'cause Hitler was part-
>Jewish. </description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75774</link>
><pubDate>Sat, 01 Sep 2007 05:17:24 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75774</guid>
></item>
><item>
><title></title>
><description>I just confiscated a bottle of Courvoisier v.s. 500ml
>80 proof (looks older then when skippy was funny).  Google didn't
>help when I tried to see if this was any good.  So now I look to you
>alcoholics Gabbers to inform me if I should keep it or deposit it
>directly into the toilet.</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75763</link>
><pubDate>Fri, 31 Aug 2007 09:28:13 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75763</guid>
></item>
><item>
><title></title>
><description>Don't bother reading the article, it's not
>interesting.   But doesn't Manhole Blast sound like some new gaymo
>energy drink?  or enema kit?  or BOTH!?    Manhole Blast! It prompts
>evacuation! </description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75758</link>
><pubDate>Fri, 31 Aug 2007 12:34:53 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75758</guid>
></item>
><item>
><title></title>
><description>I ask this for no reason.</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75786</link>
><pubDate>Sun, 02 Sep 2007 09:20:37 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75786</guid>
></item>
><item>
><title></title>
><description>You menfolk should be thinking of all the hot, sexy
>estrogen hormones congregating here in Memphis because I am just
>about to walk out the door to meet KChi for lunch!  We will
>discussing our plans for taking over the world. And diapers. Oh, and
>there will be pictures. Oh yes, there will be
>pictures.</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75787</link>
><pubDate>Sun, 02 Sep 2007 11:58:02 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75787</guid>
></item>
><item>
><title></title>
><description>Ok, gang, the doc said I'm underweight for my second
>trimester and she wants me to put on 5 pounds in the next 4 weeks,
>before my next appointment.  Dieting Gabbers! What would you eat
>mass quantites of if you could?  Fat Gabbers! What DO you eat mass
>quantities of to maintain your massive girth?</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75792</link>
><pubDate>Mon, 03 Sep 2007 06:35:19 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75792</guid>
></item>
><item>
><title></title>
><description>I liked it.  Now I'm not a big horror movie fan, and I
>didn't worship the original, so take my opinion with that in mind.
>Plus I didn't go into the theatre expecting to see Out of Africa or
>Citizen Kane.  Still, it had a lot of great, underused actors, and a
>really cool kid playing Michael Meyers as a 10-year-old (which was
>about half, and the better half, of the movie).  Add to that a good
>deal of gratuitous toplessness, some excellent kills, Malcolm
>MacDowell and Danny Trejo, and it was a nice way to spend a Sunday
>afternoon.  The theatre I went to has about 1,000 seats, a fucking
>gigantic screen and a completely overblown sound system, which is
>why I went there.  But here's the thing:  out of about 60 people in
>the theatre, fully a dozen of them were under the age of 10.  I
>swear to you that there were three or four kids in there who were
>less than 7 years old.  Who the fuck takes a little kid to see the R-
>rated Rob Zombie version of a flick that was over the top in horror
>and suspense in its original version 30 years ago?  In the first 10
>minutes, Michael (as a 10-year-old) had killed a rat with his bare
>hands, cut it apart and flushed it down the toilet and killed a cat,
>which he stored in a clear plastic bag in his schoolbag.  In the
>next 10 minutes, he killed a schoolmate by bashing him in the head
>repeatedly with a tree limb, then killed his mother's boyfriend by
>slashing his throat, his sister's boyfriend by beating him with an
>aluminum baseball bat, and his sister by repeatedly stabbing her as
>she staggered through the house.  You really can't blame him,
>though, because he had seen his sister, who was pretty cute, getting
>fucked by her boyfriend, who was pretty scuzzy and not really
>sensitive to her needs.</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75790</link>
><pubDate>Mon, 03 Sep 2007 12:12:37 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75790</guid>
></item>
><item>
><title></title>
><description>Next Saturday I'm hanging with Dan Ackroyd. Firend of
>mine is hooking me up on the guest list of a small charity thing.
>Sure, he hasn't done anything good for, um, decades, but who cares.
>It's Elwood motherfuking Blues. It's the inventor of the bassmatic.
>It's Beldar for fuck sake.  I'm happy.  </description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75788</link>
><pubDate>Sun, 02 Sep 2007 11:59:27 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75788</guid>
></item>
><item>
><title></title>
><description> <action>is star gazing
>tonight\x85</action> There is an amazing meteor shower
>starting in about 3 hours and 30 minutes(4:30am PST) </description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75767</link>
><pubDate>Sat, 01 Sep 2007 02:58:15 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75767</guid>
></item>
><item>
><title></title>
><description>She got flustered while in a stressful situation and
>said something that didn't make any sense. Big deal, it's happened
>to all of us. </description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75761</link>
><pubDate>Fri, 31 Aug 2007 01:43:35 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75761</guid>
></item>
><item>
><title></title>
><description>My back porch has a roof over the patio and the birds
>love to build nests under there because it's next to the pool, so
>instant drinking water, bath water, toilet water, whatever, for
>them, and also no wind or rain to bother the youngins'.  Usually my
>dad will just rip down any nests that are built under there, but
>they always come back. Thus far it's only been dirty boring birds
>like robins, but recently a Dove built hers under there. Dad grew
>fond of it apparently, and let the nest stay.  Well yesterday I
>bought me one of these and was playing around with it outside.  I
>was close to the nest, but not nearly close enough to bother
>anything (I thought), and was also on the outside of the roof. The
>helicopter was in the air for a while before mom got scared and took
>off, knocking an egg out of the nest.  Now there's dove placenta and
>a tiny fetus on my patio... Al? Dibbs?</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75762</link>
><pubDate>Fri, 31 Aug 2007 01:55:41 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75762</guid>
></item>
><item>
><title></title>
><description>Seller does not answer emails regarding an item.
>A++++++++!</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75749</link>
><pubDate>Thu, 30 Aug 2007 09:40:03 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75749</guid>
></item>
><item>
><title></title>
><description>A new drug called "camel toads"???  God, this
>woman is retarded.  Linky.  And on a related note:  Song and video
>tribute to "camel toads", sung to the tune of
>"Kokomo". </description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75724</link>
><pubDate>Wed, 29 Aug 2007 02:17:53 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75724</guid>
></item>
><item>
><title></title>
><description>White teen girl: Ooh, Alexander Hamilton was such a
>dreamboat... That's why he's my favorite federalist.  I call him
>Hammy! And he was big pals with B-Frank, and Johnny Ads, and G-
>Dubya, and J-Marsh, and... And...   And I can't remember any more
>founding fathers, but of course they all had their own gangsta
>names, too. They were big pimpin' over there in Independence Hall.
>The only things they were missing were the hos... And that's why
>Abby A. wanted them to remember the ladies.  </history
>lesson></description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75766</link>
><pubDate>Sat, 01 Sep 2007 12:11:43 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75766</guid>
></item>
><item>
><title></title>
><description>...</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75780</link>
><pubDate>Sat, 01 Sep 2007 11:14:06 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75780</guid>
></item>
><item>
><title></title>
><description>AAAAAAAAAAAAAAHHHHHHHHHHHH!!!!!!!!!!!!</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75776</link>
><pubDate>Sat, 01 Sep 2007 06:59:53 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75776</guid>
></item>
><item>
><title></title>
><description>I hear it's the drug of choice in the
>suburbs</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75768</link>
><pubDate>Sat, 01 Sep 2007 03:34:39 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75768</guid>
></item>
><item>
><title></title>
><description>I had some friends visiting this weekend, from around
>NZ and from Germany. Although we called everyone else by their first
>names, they insisted on calling me Neep. Because Neep is just me,
>apparently.  At first I cringed each time because it was weird, but
>now I am completely used to hearing "Neep" out loud.  Do
>you guys (apart from Phuc) think you could get used to it?
></description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75690</link>
><pubDate>Mon, 27 Aug 2007 06:53:13 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75690</guid>
></item>
><item>
><title></title>
><description>From the country that brought us imitation American
>cheese and  back to school specials at gun shops.
>McLink.</description>
><link>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75777</link>
><pubDate>Sat, 01 Sep 2007 07:39:21 CDT</pubDate>
><guid>http://www.zug.com/gab/index.cgi?
>func=view_thread&thread_id=75777</guid>
></item>
></channel>
></rss>
>
>Am getting these errors when I run the URL in validator(
>http://feedvalidator.org/)
>
>
>line 12, column 166: description contains bad characters (10
>occurrences) [help]
>
>... staff in a small town Chinese restaurant\x85 Game time.   I get
>there early ...                                             ^
>line 147, column 0: Invalid HTML: action (2 occurrences) [help]
>
><description> <action>is star gazing
>tonight\x85</action> There is  ...
>
>
>Thanks in advance.
>
>Yohannan Varghese
>
>
>
>
>
>
>
>
>
>Yahoo! Groups Links
>
>
>

---------------------------------------------------------------
              WWWhatsup NYC
http://pinstand.com - http://punkcast.com
---------------------------------------------------------------

#1033 From: WWWhatsup <joly@...>
Date: Thu Sep 6, 2007 9:19 am
Subject: Re: Problem with my feed
wwwhatsup4
Send Email Send Email
 
Altho I see your feed in my browser, when I try and validate it:

http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.spafood.info%2F%3Ffeed%3\
Drss2

I get "Server returned timed out"

Perhaps your server is discriminating against certain user-agents?


At 01:14 PM 8/31/2007, you wrote:
>Hello
>
>I have some videoblogs (wordpress based) and I have modified my rss
>feed  for make it compatible with mrss (yahoo media rss). I have
>submitted my videoblogs to yahoo video (2 weeks ago) and my vids still
>are not indexed.
>
>What can be the problem? I have <enclosure>, <media:content> and
><media:player> (I think these are the most important) for all my video
>files, and feedvalidator says my feed is ok. My videos are in .wmv
>format. Can somebody please look my feed and check if I have made some
>mistake?
>
>One of my blogs is www.spafood.info and the feed url is:
>http://www.spafood.info/?feed=rss2
>
>Thanks in advance and excuse me if my english is not very good, Im spanish
>
>
>
>
>Yahoo! Groups Links
>
>
>

---------------------------------------------------------------
              WWWhatsup NYC
http://pinstand.com - http://punkcast.com
---------------------------------------------------------------

#1034 From: "lord_mikelon" <lord_mikelon@...>
Date: Thu Sep 6, 2007 6:02 pm
Subject: Re: Problem with my feed
lord_mikelon
Send Email Send Email
 
Hello

Please Try with: http://www.spafood.info/wp-rss2.php


--- In rss-media@yahoogroups.com, WWWhatsup <joly@...> wrote:
>
>
> Altho I see your feed in my browser, when I try and validate it:
>
>
http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.spafood.info%2F%3Ffeed%3\
Drss2
>
> I get "Server returned timed out"
>
> Perhaps your server is discriminating against certain user-agents?
>
>
> At 01:14 PM 8/31/2007, you wrote:
> >Hello
> >
> >I have some videoblogs (wordpress based) and I have modified my rss
> >feed  for make it compatible with mrss (yahoo media rss). I have
> >submitted my videoblogs to yahoo video (2 weeks ago) and my vids still
> >are not indexed.
> >
> >What can be the problem? I have <enclosure>, <media:content> and
> ><media:player> (I think these are the most important) for all my video
> >files, and feedvalidator says my feed is ok. My videos are in .wmv
> >format. Can somebody please look my feed and check if I have made some
> >mistake?
> >
> >One of my blogs is www.spafood.info and the feed url is:
> >http://www.spafood.info/?feed=rss2
> >
> >Thanks in advance and excuse me if my english is not very good, Im
spanish
> >
> >
> >
> >
> >Yahoo! Groups Links
> >
> >
> >
>
> ---------------------------------------------------------------
>              WWWhatsup NYC
> http://pinstand.com - http://punkcast.com
> ---------------------------------------------------------------
>

#1035 From: "David Hall" <daviddhall@...>
Date: Mon Sep 10, 2007 5:40 pm
Subject: State of affairs
daviddhall
Send Email Send Email
 
Hello Everyone –

For those attempting to get your questions resolved over recent
months, my apologies for not responding in a timely manner. I traveled
extensively over the summer and avoided the internet as much as I
could. It appears that perhaps my handoff on the work relating to the
specification could have been managed a little better.

Unfortunately, my lack of involvement with Media RSS is probably going
to remain this way for the foreseeable future. I enrolled in Business
School at Boston University for this Fall and thus had to leave my job
with Yahoo!. (For those curious, it's a dual degree program - MSIS and
MBA)

This hopefully shouldn't have too much of an affect on Media RSS
because our esteemed Jeremy Zawodny (jzawodn@...,
http://jeremy.zawodny.com/blog/) has agreed
to pick up the reins for now. I'm catching him up on where things are
in some of the behind-the-scenes action as well as other housekeeping
items related to correcting mistakes and confusion within the
specification itself.

I'd ask that those of you simply inquiring about why your content
isn't in the Yahoo index to contact Phil Yu (pyu@...)
directly. He should be help you out or at least get you in contact
with the correct individual. I think it's best to keep this forum
clearly devoted to specification related issues.

My heart still lies with what we are trying to accomplish and I want
to help out in any way that I can. Don't hesitate to contact me
directly as well. My contact info is below.

It's been a real pleasure working with all of you and I look forward
to more interactions in the future… Especially with those looking for
a MBA intern with programming skillz. ;-)

-David Hall
dave.hall@...
http://www.linkedin.com/in/daviddhall

#1036 From: "stoesstravis" <travis@...>
Date: Fri Sep 7, 2007 2:50 am
Subject: Need media rss feed generator
stoesstravis
Send Email Send Email
 
I have hundreds of videos that i would like to create a mrss feed for
and have no idea of how to create feeds. I am in need of someone who
knows yahoo's mrss code and has experience with creating feeds for
yahoo video. Please contact me at my email travis@... if
you are interested in taking on this small project.

Thanks and Kind Regards

Travis

#1037 From: "lord_mikelon" <lord_mikelon@...>
Date: Mon Sep 10, 2007 9:56 am
Subject: What happens with yahoo video?
lord_mikelon
Send Email Send Email
 
After talk with other webmasters, all have the same problem. Yahoo
video has stopped of indexing videos through rss via web form
(http://search.yahoo.com/mrss/submit)

And now? how can we send our content to yahoo? I have tried to contact
with help service but no luck.

#1038 From: "tufpixgarden" <pixgarden@...>
Date: Tue Sep 11, 2007 8:02 am
Subject: Re: What happens with yahoo video?
tufpixgarden
Send Email Send Email
 
Dont know, same for us, no refresh from our mrss.


--- In rss-media@yahoogroups.com, "lord_mikelon" <lord_mikelon@...> wrote:
>
> After talk with other webmasters, all have the same problem. Yahoo
> video has stopped of indexing videos through rss via web form
> (http://search.yahoo.com/mrss/submit)
>
> And now? how can we send our content to yahoo? I have tried to contact
> with help service but no luck.
>

#1039 From: "lord_mikelon" <lord_mikelon@...>
Date: Mon Oct 1, 2007 5:41 pm
Subject: Re: What happens with yahoo video?
lord_mikelon
Send Email Send Email
 
--- In rss-media@yahoogroups.com, "tufpixgarden" <pixgarden@...> wrote:
>
> Dont know, same for us, no refresh from our mrss.
>
>
> --- In rss-media@yahoogroups.com, "lord_mikelon" <lord_mikelon@> wrote:
> >
> > After talk with other webmasters, all have the same problem. Yahoo
> > video has stopped of indexing videos through rss via web form
> > (http://search.yahoo.com/mrss/submit)
> >
> > And now? how can we send our content to yahoo? I have tried to contact
> > with help service but no luck.
> >
>


Somebody knows how to contact with yahoo video?

#1040 From: Tamim Shahriar <subeenacm@...>
Date: Mon Oct 1, 2007 10:41 pm
Subject: trouble parsing media rss with perl
subeenacm
Send Email Send Email
 
Hi,

I am trying to parse a media rss using perl module named XML::RSS. But can't get it right. Actually I am having trouble with the media content url, media player url etc. fields (<media:content url='abc.com'... >), can't extract those information. But I can extract the keywords from <media:keyword>abc</media:keword>

Please help to to parse media rss using XML::RSS or any other Library of Perl.

Regards,
Subeen.


Need a vacation? Get great deals to amazing places on Yahoo! Travel.

#1041 From: WWWhatsup <joly@...>
Date: Tue Oct 2, 2007 11:59 pm
Subject: Re: Re: Problem with my feed
wwwhatsup4
Send Email Send Email
 
I'm sorry I didn't get back to you but

http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.spafood.info%2Fwp-rss2.p\
hp

seems to validate fine.

joly

At 02:02 PM 9/6/2007, you wrote:
>Hello
>
>Please Try with: http://www.spafood.info/wp-rss2.php
>
>
>--- In rss-media@yahoogroups.com, WWWhatsup <joly@...> wrote:
>>
>>
>> Altho I see your feed in my browser, when I try and validate it:
>>
>>
>http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.spafood.info%2F%3Ffeed%\
3Drss2
>>
>> I get "Server returned timed out"
>>
>> Perhaps your server is discriminating against certain user-agents?
>>
>>
>> At 01:14 PM 8/31/2007, you wrote:
>> >Hello
>> >
>> >I have some videoblogs (wordpress based) and I have modified my rss
>> >feed  for make it compatible with mrss (yahoo media rss). I have
>> >submitted my videoblogs to yahoo video (2 weeks ago) and my vids still
>> >are not indexed.
>> >
>> >What can be the problem? I have <enclosure>, <media:content> and
>> ><media:player> (I think these are the most important) for all my video
>> >files, and feedvalidator says my feed is ok. My videos are in .wmv
>> >format. Can somebody please look my feed and check if I have made some
>> >mistake?
>> >
>> >One of my blogs is www.spafood.info and the feed url is:
>> >http://www.spafood.info/?feed=rss2
>> >
>> >Thanks in advance and excuse me if my english is not very good, Im
>spanish
>> >
>> >
>> >
>> >
>> >Yahoo! Groups Links
>> >
>> >
>> >
>>
>> ---------------------------------------------------------------
>>              WWWhatsup NYC
>> http://pinstand.com - http://punkcast.com
>> ---------------------------------------------------------------
>>
>
>
>
>
>
>Yahoo! Groups Links
>
>
>

---------------------------------------------------------------
              WWWhatsup NYC
http://pinstand.com - http://punkcast.com
---------------------------------------------------------------

Messages 1012 - 1041 of 1261   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help