• web page suggestion

    From Finnigann@BNB to Digital Man on Thursday, July 06, 2006 02:52:00
    For v4.0

    Add an RSS link that opens a web page with all of the RSS feeds in RSS.INI, in link firmat of course.

    Thanks


    ******** ** **
    /**///// // // *****
    /** ** ******* ******* ** **///** ****** ******* *******
    /******* /**//**///**//**///**/**/** /** //////** //**///**//**///**
    /**//// /** /** /** /** /**/**//****** ******* /** /** /** /**
    /** /** /** /** /** /**/** /////** **////** /** /** /** /**
    /** /** *** /** *** /**/** ***** //******** *** /** *** /**
    // // /// // /// // // ///// //////// /// // /// //

    ---
    ■ Synchronet ■ Bits-N-Bytes - bnb.dtdns.net / bnb.synchro.net
  • From Digital Man to Finnigann on Thursday, July 06, 2006 00:55:27
    Re: web page suggestion
    By: Finnigann to Digital Man on Thu Jul 06 2006 02:52 am

    For v4.0

    Add an RSS link that opens a web page with all of the RSS feeds in RSS.INI, link firmat of course.

    Isn't that what rss.ssjs already does?

    (e.g. http://vert.synchro.net/rss.ssjs)

    digital man

    Snapple "Real Fact" #93:
    A Kangaroo can jump 30 feet.
    Norco, CA WX: 68.7°F, 65% humidity, 0 mph WNW wind, 0.00 inches rain/24hrs
  • From Finnigann@BNB to Digital Man on Thursday, July 06, 2006 06:16:00
    With interpidation and the MAGIC of QWK Mail Digital Man wrote to Finnigann
    <=-

    Re: web page suggestion
    By: Finnigann to Digital Man on Thu Jul 06 2006 02:52 am

    For v4.0

    Add an RSS link that opens a web page with all of the RSS feeds in RSS.INI, link firmat of course.

    Isn't that what rss.ssjs already does?

    (e.g. http://vert.synchro.net/rss.ssjs)


    Yes it does, but where is the link to that page?

    I was thinking it could be added to the line of servers along the
    bottom of the main page.

    [telnet] [rlogin] [ftp] [irc] [news] [gopher] [RSS]


    Looking at index.sjss...

    I see:
    ...
    template.additional_services+='[' + ("gopher".link("gopher://"+host +gopher_port)) + '] ';

    The next line could be one for RSS. Can I add a line here to include
    RSS?

    template.additional_services+='[' + ("RSS".link("http://"+host
    +RSS_port)) + '] ';

    But this isn't right, as those other lines start a service but I want a
    web page called (rss.sjss)


    OK that doesn't work.

    I get an error:

    !JavaScript c:\sbbs\web\html\index.ssjs line 80: ReferenceError:
    RSS_port is not defined.

    Well I'm stuck...




    ----------------------------------------------------------------
    James King KC8UGV | Sysop - Bits-N-Bytes BBS
    Coldwater, MI 49036 | http://www.synchro.net/sbbslist.html
    ----------------------------------------------------------------
    RSS http://tinyurl.com/zswzs
    ----------------------------------------------------------------
    ... Computer Hacker wanted. Must have own axe.
    --- MultiMail/Win32 v0.46
    ■ Synchronet ■ Bits-N-Bytes - bnb.dtdns.net / bnb.synchro.net
  • From Mindless Automaton@ELDRITCH to Finnigann on Thursday, July 06, 2006 09:54:00
    Finnigann wrote:
    I see:
    ...
    template.additional_services+='[' + ("gopher".link("gopher://"+host +gopher_port)) + '] ';

    The next line could be one for RSS. Can I add a line here to include
    RSS?

    template.additional_services+='[' + ("RSS".link("http://"+host
    +RSS_port)) + '] ';

    But this isn't right, as those other lines start a service but I want a
    web page called (rss.sjss)


    OK that doesn't work.

    I get an error:

    !JavaScript c:\sbbs\web\html\index.ssjs line 80: ReferenceError:
    RSS_port is not defined.



    Maybe:

    template.additional_services+='[' +
    ("RSS".link("http://"+host+"/rss.ssjs"
    )) + '] ';

    ?

    RSS is the same port as http (80) so I guess you could do +http_port
    instead of RSS_port

    -Mindless Automaton
    ---
    ■ Synchronet ■ Eldritch Clockwork BBS
  • From Digital Man to Finnigann on Thursday, July 06, 2006 14:06:14
    Re: Re: web page suggestion
    By: Finnigann to Digital Man on Thu Jul 06 2006 06:16 am

    With interpidation and the MAGIC of QWK Mail Digital Man wrote to Finnig
    <=-

    Re: web page suggestion
    By: Finnigann to Digital Man on Thu Jul 06 2006 02:52 am

    For v4.0

    Add an RSS link that opens a web page with all of the RSS feeds in RSS.IN link firmat of course.

    Isn't that what rss.ssjs already does?

    (e.g. http://vert.synchro.net/rss.ssjs)


    Yes it does, but where is the link to that page?

    I was thinking it could be added to the line of servers along the
    bottom of the main page.

    [telnet] [rlogin] [ftp] [irc] [news] [gopher] [RSS]


    Looking at index.sjss...

    I see:
    ...
    template.additional_services+='[' + ("gopher".link("gopher://"+host +gopher_port)) + '] ';

    The next line could be one for RSS. Can I add a line here to include
    RSS?

    Of course.

    template.additional_services+='[' + ("RSS".link("http://"+host
    +RSS_port)) + '] ';

    But this isn't right, as those other lines start a service but I want a
    web page called (rss.sjss)

    Do this instead:

    template.additional_services+='[' + ("RSS".link("rss.ssjs")) + '] ';

    You don't need the protocol and port specified since it's just a web page.

    digital man

    Snapple "Real Fact" #102:
    A one-minute kiss burns 26 calories.
    Norco, CA WX: 99.6°F, 33% humidity, 4 mph WNW wind, 0.00 inches rain/24hrs
  • From Finnigann@BNB to Mindless Automaton on Thursday, July 06, 2006 17:50:00
    With interpidation and the MAGIC of QWK Mail Mindless Automaton wrote to
    Finnigann <=-

    Finnigann wrote:
    I see:
    ...
    template.additional_services+='[' + ("gopher".link("gopher://"+host +gopher_port)) + '] ';

    The next line could be one for RSS. Can I add a line here to include
    RSS?

    template.additional_services+='[' + ("RSS".link("http://"+host
    +RSS_port)) + '] ';

    But this isn't right, as those other lines start a service but I want a
    web page called (rss.sjss)


    OK that doesn't work.

    I get an error:

    !JavaScript c:\sbbs\web\html\index.ssjs line 80: ReferenceError:
    RSS_port is not defined.



    Maybe:

    template.additional_services+='[' + ("RSS".link("http://"+host+"/rss.ssjs"
    )) + '] ';

    ?

    RSS is the same port as http (80) so I guess you could do +http_port instead of RSS_port


    Wahoo!! you're my new hero!

    Yes! adding that line added to the main web page the link to the
    RSS.SSJS

    Big Thanks!!




    ----------------------------------------------------------------
    James King KC8UGV | Sysop - Bits-N-Bytes BBS
    Coldwater, MI 49036 | http://www.synchro.net/sbbslist.html
    ----------------------------------------------------------------
    RSS http://tinyurl.com/zswzs
    ----------------------------------------------------------------
    ... You don't get once-in-a-lifetime offers like this every day.
    --- MultiMail/Win32 v0.46
    ■ Synchronet ■ Bits-N-Bytes - bnb.dtdns.net / bnb.synchro.net
  • From Finnigann@BNB to Digital Man on Thursday, July 06, 2006 18:39:00
    With interpidation and the MAGIC of QWK Mail Digital Man wrote to Finnigann
    <=-

    Re: Re: web page suggestion
    By: Finnigann to Digital Man on Thu Jul 06 2006 06:16 am

    With interpidation and the MAGIC of QWK Mail Digital Man wrote to Finnig
    <=-

    Re: web page suggestion
    By: Finnigann to Digital Man on Thu Jul 06 2006 02:52 am

    For v4.0

    Add an RSS link that opens a web page with all of the RSS feeds in RSS.IN link firmat of course.

    Isn't that what rss.ssjs already does?

    (e.g. http://vert.synchro.net/rss.ssjs)


    Yes it does, but where is the link to that page?

    I was thinking it could be added to the line of servers along the
    bottom of the main page.

    [telnet] [rlogin] [ftp] [irc] [news] [gopher] [RSS]


    Looking at index.sjss...

    I see:
    ...
    template.additional_services+='[' + ("gopher".link("gopher://"+host +gopher_port)) + '] ';

    The next line could be one for RSS. Can I add a line here to include
    RSS?

    Of course.

    template.additional_services+='[' + ("RSS".link("http://"+host
    +RSS_port)) + '] ';

    But this isn't right, as those other lines start a service but I want a
    web page called (rss.sjss)

    Do this instead:

    template.additional_services+='[' + ("RSS".link("rss.ssjs")) + '] ';

    You don't need the protocol and port specified since it's just a web
    page.

    Mindless Automation gen'd this one up.

    template.additional_services+='['+("RSS".link("http://"+host+"/rss.ssjs"))+']';

    Hmmm your's is shorter... 0-:

    Thanks to you both.




    ----------------------------------------------------------------
    James King KC8UGV | Sysop - Bits-N-Bytes BBS
    Coldwater, MI 49036 | http://www.synchro.net/sbbslist.html
    ----------------------------------------------------------------
    RSS http://tinyurl.com/zswzs
    ----------------------------------------------------------------
    ... Heisenberg may have slept here.
    --- MultiMail/Win32 v0.46
    ■ Synchronet ■ Bits-N-Bytes - bnb.dtdns.net / bnb.synchro.net