If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Any ideas on how to push the value of a form as RSS output feed by using
MIVA.
The idea is not to use email to obtain the form value submitted on a
website but to obtain the value with RSS feed.
An RSS feed is just a dynamic XML page, so all you have to do is
research how an RSS feed is put together, or just look at one and copy
it. One of the my local papers, seattlepi.com, has RSS feeds and if you
look at the RSS feed page, it would be easy enough to copy the structure.
As far as miva script goes, you would use MvEXPORT to create the XML
file in the data directory, and when you are done building/exporting it,
move it over to your script directory somewhere and provide a link so
people can put the address in their RSS readers.
Scot
Herman Steyn wrote:
> Any ideas on how to push the value of a form as RSS output feed by using
> MIVA.
> The idea is not to use email to obtain the form value submitted on a
> website but to obtain the value with RSS feed.
>
> Herman
>
And this is an OK client side reader for testing, etc.
<A HREF ="http://www.download.com/SharpReader/3000-9227_4-10287606.html">http://www.download.com/SharpReader/3000-9227_4-10287606.html</A>
Andrew Noce=20
Director of Technology
Hotel Interactive, Inc.=20
Hospitality Industry News and Services=20
<A HREF ="http://www.hotelinteractive.com=20">http://www.hotelinteractive.com=20</A>
=20
=20
> -----Original Message-----
> From: Herman Steyn [mailto:[email protected]]=20
> Sent: Tuesday, April 05, 2005 1:14 PM
> To: [email protected]
> Subject: [meu] Output value of a form as RSS feed
>=20
>=20
> Any ideas on how to push the value of a form as RSS output=20
> feed by using=20
> MIVA.
> The idea is not to use email to obtain the form value=20
> submitted on a website but to obtain the value with RSS feed.
>=20
> Herman
>=20
I'm a big fan of FeedDemon v1.5. Absolutely fabulous reader that keeps getting
better! From the author of TopStyle, the same guy who wrote HomeSite.
HTH
Tom
> -----Original Message-----
> From: [email protected] [mailto:[email protected]]On
> Behalf Of Andrew Noce
> Sent: Tuesday, April 05, 2005 12:39 PM
> To: [email protected]; [email protected]
> Subject: RE: [meu] Output value of a form as RSS feed
>
>
> Our RSS feed page:
> <A HREF ="http://www.hotelinteractive.com/rss.aspx">http://www.hotelinteractive.com/rss.aspx</A>
>
> This is a good start...
> http://blogs.law.harvard.edu/tech/rss
>
> And this is an OK client side reader for testing, etc.
> <A HREF ="http://www.download.com/SharpReader/3000-9227_4-10287606.html">http://www.download.com/SharpReader/3000-9227_4-10287606.html</A>
>
>
> Andrew Noce
> Director of Technology
> Hotel Interactive, Inc.
> Hospitality Industry News and Services
> <A HREF ="http://www.hotelinteractive.com">http://www.hotelinteractive.com</A>
>
>
>
>
>
>
>
>
>
> > -----Original Message-----
> > From: Herman Steyn [mailto:[email protected]]
> > Sent: Tuesday, April 05, 2005 1:14 PM
> > To: [email protected]
> > Subject: [meu] Output value of a form as RSS feed
> >
> >
> > Any ideas on how to push the value of a form as RSS output
> > feed by using
> > MIVA.
> > The idea is not to use email to obtain the form value
> > submitted on a website but to obtain the value with RSS feed.
> >
> > Herman
> >
<MvCOMMENT> *** Extra code just to make RFC822 date
***</MvCOMMENT>
<MvASSIGN NAME = "l.zone" VALUE = "{ timezone() }">
<MvASSIGN NAME = "l.time_num" VALUE = "{ Thizbee.d.date
}">
<MvASSIGN NAME = "l.month_num" VALUE = "{ time_t_month(
l.time_num, l.zone ) }">
<MvASSIGN NAME = "l.month_name" VALUE = "{ gettoken(
'Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec', '|',
l.month_num ) }">
<MvASSIGN NAME = "l.day_num" VALUE = "{
time_t_dayofmonth( l.time_num, l.zone ) }">
<MvASSIGN NAME = "l.year_num" VALUE = "{ time_t_year(
l.time_num, l.zone ) }">
<MvASSIGN NAME = "l.day_of_week" VALUE = "{ gettoken(
'Sun|Mon|Tue|Wed|Thu|Fri|Sat', '|', time_t_dayofweek(
l.time_num, l.zone ) ) }">
<MvASSIGN NAME = "l.hour" VALUE = "{ padl( time_t_hour(
l.time_num, l.zone ), 2, '0' ) }">
<MvASSIGN NAME = "l.minute" VALUE = "{ padl( time_t_min(
l.time_num, l.zone ), 2, '0' ) }">
<MvASSIGN NAME = "l.second" VALUE = "{ padl( time_t_sec(
l.time_num, l.zone ), 2, '0' ) }">
<MvASSIGN NAME = "l.timezonename" VALUE = "{
s.dyn_stm_zone }">
<MvCOMMENT> *** Extra crap just to make RFC822 date
***</MvCOMMENT>
<MvASSIGN NAME = "l.copy" VALUE = "{ fscopy( l.filepath,
'/' $ l.filename ) }">
<MvASSIGN NAME = "l.chmod" VALUE = "{ schmod( '/' $
l.filename, 644 ) }">
</MvFUNCTION>
/Scott
--- Scot Ranney <[email protected]> wrote:
> An RSS feed is just a dynamic XML page, so all you have
> to do is
> research how an RSS feed is put together, or just look at
> one and copy
> it. One of the my local papers, seattlepi.com, has RSS
> feeds and if you
> look at the RSS feed page, it would be easy enough to
> copy the structure.
>
> As far as miva script goes, you would use MvEXPORT to
> create the XML
> file in the data directory, and when you are done
> building/exporting it,
> move it over to your script directory somewhere and
> provide a link so
> people can put the address in their RSS readers.
>
> Scot
>
> Herman Steyn wrote:
> > Any ideas on how to push the value of a form as RSS
> output feed by using
> > MIVA.
> > The idea is not to use email to obtain the form value
> submitted on a
> > website but to obtain the value with RSS feed.
> >
> > Herman
> >
Comment