• Re: RSS - Theme Your RSS

    From Mindless Automaton@VERT/ELDRITCH to Finnigann on Thursday, July 06, 2006 20:49:00
    Finnigann wrote:
    With interpidation and the MAGIC of QWK Mail Mindless Automaton wrote to
    DOVE-Net.Programming_(Jav <=-

    The RSS list page is pretty bland, so we can make a few changes so it will fit our default theme at least.

    In rss.ssjs, change these lines:

    ---start code---

    if(channel==undefined) {
    writeln('<html>');
    writeln('<body>');
    writeln('<h1>' + system.name + " News (RSS) Channels" +
    '</h1>');
    writeln('<ul>');
    for(c in channel_list)
    writeln('<li>'
    + channel_list[c].name.link(link_root +
    "?channel=" + channel_list[c].name));
    writeln('</ul>');
    writeln('</body>');
    writeln('</html>');
    exit();
    }

    ---end code---

    to:

    ---start code---

    if(channel==undefined) {
    if(do_header)

    I get an error after this line:

    !JavaScript c:\sbbs\web\html\rss.ssjs line 42: ReferenceError:
    do_header is not defined



    Oops! Add:

    load("../web/lib/template.ssjs");


    Under:

    load("sbbsdefs.js");



    so it'd be like line 8 or so.. :)

    the do_stuff is all defined in the general template.ssjs.

    Sorry about that..

    -Mindless Automaton
    ---
    þ Synchronet þ Eldritch Clockwork BBS
  • From Finnigann@VERT/BNB to Mindless Automaton on Friday, July 07, 2006 02:35:00
    With interpidation and the MAGIC of QWK Mail Mindless Automaton wrote to
    Finnigann <=-

    Finnigann wrote:
    With interpidation and the MAGIC of QWK Mail Mindless Automaton wrote to
    DOVE-Net.Programming_(Jav <=-

    I get an error after this line:

    !JavaScript c:\sbbs\web\html\rss.ssjs line 42: ReferenceError:
    do_header is not defined



    Oops! Add:

    load("../web/lib/template.ssjs");


    Under:

    load("sbbsdefs.js");



    so it'd be like line 8 or so.. :)

    the do_stuff is all defined in the general template.ssjs.

    Sorry about that..

    Actually that line is located further down... Does that make a
    difference?

    I remmed out the proper code /* */ And pasted in your code... but I
    don't see any diff.




    ----------------------------------------------------------------
    James King KC8UGV | Sysop - Bits-N-Bytes BBS
    Coldwater, MI 49036 | http://www.synchro.net/sbbslist.html
    ----------------------------------------------------------------
    RSS http://tinyurl.com/zswzs
    ----------------------------------------------------------------
    ... "42? 7 and a half million years and all you can come up with is 42?!"
    --- MultiMail/Win32 v0.46
    þ Synchronet þ Bits-N-Bytes - bnb.dtdns.net / bnb.synchro.net
  • From Mindless Automaton@VERT/ELDRITCH to Finnigann on Friday, July 07, 2006 11:37:00
    Finnigann wrote:

    so it'd be like line 8 or so.. :)

    the do_stuff is all defined in the general template.ssjs.

    Sorry about that..

    Actually that line is located further down... Does that make a
    difference?


    Nope, I just grouped it with the other load()



    I remmed out the proper code /* */ And pasted in your code... but I
    don't see any diff.


    Well thats no fun. It should be something like:

    http://eldritch.darktech.org/rss.ssjs


    I can't seem to connect to your site to take a peek. I get connection
    timed out. :( I guess you could view source and compare or something
    though..

    Also, I am working with rss.ssjs v1.19 in case that is different.

    -Mindless Automaton
    ---
    þ Synchronet þ Eldritch Clockwork BBS
  • From Finnigann@VERT/BNB to Mindless Automaton on Friday, July 07, 2006 14:25:00
    With interpidation and the MAGIC of QWK Mail Mindless Automaton wrote to
    Finnigann <=-

    Finnigann wrote:

    so it'd be like line 8 or so.. :)

    the do_stuff is all defined in the general template.ssjs.

    Sorry about that..

    Actually that line is located further down... Does that make a
    difference?


    Nope, I just grouped it with the other load()

    loading twice doesn't bolix anything? I have it in there in both
    places.



    I remmed out the proper code /* */ And pasted in your code... but I
    don't see any diff.


    Well thats no fun. It should be something like:

    http://eldritch.darktech.org/rss.ssjs

    That's sort of what I expected. You seem to understand javascript very
    well.

    I can't seem to connect to your site to take a peek. I get connection timed out. :( I guess you could view source and compare or something though..

    This is a plague. I can load my web page but no one else. telnet etc
    works... I have a router and I feel confident [1] it's configured
    correctly.


    Also, I am working with rss.ssjs v1.19 in case that is different.

    1.15 here. I guess I should snag the latest and greatest...



    [1] Evidense to the contary ignored.




    ----------------------------------------------------------------
    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
  • From Mindless Automaton@VERT/ELDRITCH to Finnigann on Monday, July 10, 2006 00:06:00
    Finnigann wrote:
    With interpidation and the MAGIC of QWK Mail Mindless Automaton wrote to
    Finnigann <=-

    Finnigann wrote:

    so it'd be like line 8 or so.. :)

    the do_stuff is all defined in the general template.ssjs.

    Sorry about that..

    Actually that line is located further down... Does that make a
    difference?


    Nope, I just grouped it with the other load()

    loading twice doesn't bolix anything? I have it in there in both
    places.

    Hmm.. actually, the second one only gets loaded if the:

    if(http_request.query["item"]) {

    happens..

    Placing it in the beginning makes it global to the whole script, so in
    theory one could just comment/delete the second one.




    I remmed out the proper code /* */ And pasted in your code... but I
    don't see any diff.


    Well thats no fun. It should be something like:

    http://eldritch.darktech.org/rss.ssjs

    That's sort of what I expected. You seem to understand javascript very
    well.

    I can't seem to connect to your site to take a peek. I get connection timed out. :( I guess you could view source and compare or something though..

    This is a plague. I can load my web page but no one else. telnet etc
    works... I have a router and I feel confident [1] it's configured
    correctly.


    Dynamic DNS stuff isn't getting updated with your current/correct
    external IP?

    Right now I don't run an updater, but Comcast only changes my IP like
    once every 3 months or so..

    -Mindless Automaton
    ---
    þ Synchronet þ Eldritch Clockwork BBS
  • From Mindless Automaton@VERT/ELDRITCH to Finnigann on Monday, July 10, 2006 00:07:00
    Finnigann wrote:

    This is a plague. I can load my web page but no one else. telnet etc
    works... I have a router and I feel confident [1] it's configured
    correctly.


    I also tried to shoot an email your way..

    A message (from <mindless.automaton@eldritch.darktech.org>) was received
    at 6 Jul 2006 23:51:59 +0000.

    The following addresses had delivery problems:

    sysop@bnb.dtdns.net
    Persistent Transient Failure: Delivery time expired
    Delivery last attempted at 6 Jul 2006 23:51:59 +0000



    Reporting-MTA: dns; comcast.net
    Arrival-Date: 6 Jul 2006 23:51:59 +0000

    Final-Recipient: rfc822; sysop@bnb.dtdns.net
    Action: failed
    Status: 4.4.7 Unable to contact host for 1 days,
    Diagnostic-Code: smtp; Persistent Transient Failure: Delivery time expired Last-Attempt-Date: 6 Jul 2006 23:51:59 +0000
    ---
    þ Synchronet þ Eldritch Clockwork BBS
  • From jas hud@VERT/DSTREAM to Mindless Automaton on Monday, July 10, 2006 00:18:00
    Re: Re: RSS - Theme Your RSS
    By: Mindless Automaton to Finnigann on Mon Jul 10 2006 01:07 am

    This is a plague. I can load my web page but no one else. telnet etc works... I have a router and I feel confident [1] it's configured correctly.


    yeah, i dont think his router is configured properly if nobody can connect
    but him. :D

    sysop@bnb.dtdns.net Persistent Transient Failure: Delivery time
    expired Delivery last attempted at 6 Jul 2006 23:51:59 +0000


    looks like email is down too.

    |15 .Ä.Ú Â Â ÂÂ.Ä. ÂÚ¿
    |07-³ ³Ã¿³ ³³ ³³³ ³³ ³À¿-
    |07 `Ä'ÀÙÁÙÁ`\/'Á`Ä'À-ÙÀÙ
    |08+o edge of oblivion bbs þ eob.darktech.org þ NUV þ

    ---
    þ Synchronet þ -[Data Stream - telnet/web/ftp dsbbs.net]-
  • From Finnigann@VERT/BNB to Mindless Automaton on Monday, July 10, 2006 01:47:00
    With interpidation and the MAGIC of QWK Mail Mindless Automaton wrote to
    Finnigann <=-


    This is a plague. I can load my web page but no one else. telnet etc
    works... I have a router and I feel confident [1] it's configured
    correctly.


    Dynamic DNS stuff isn't getting updated with your current/correct
    external IP?

    Right now I don't run an updater, but Comcast only changes my IP like
    once every 3 months or so..


    This has been going on for sometime. PLUS I use the sync tool for
    updating bnb.synchro.net

    nada

    I am oing to contact Charter and see if they have started blocking any
    ports.

    This has worked in the past, AND the said they don't block ports.

    Last straw will be to make this machine a DMZ... sigh




    ----------------------------------------------------------------
    James King KC8UGV | Sysop - Bits-N-Bytes BBS
    Coldwater, MI 49036 | http://www.synchro.net/sbbslist.html
    ----------------------------------------------------------------
    RSS http://tinyurl.com/zswzs
    ----------------------------------------------------------------
    ... Get a clue or continue being the intellectual toy-of-the-week.
    --- MultiMail/Win32 v0.46
    þ Synchronet þ Bits-N-Bytes - bnb.dtdns.net / bnb.synchro.net
  • From Finnigann@VERT/BNB to jas hud on Monday, July 10, 2006 08:56:00
    Without Duece's permission: jas hud wrote to Mindless Automaton <=-

    Re: Re: RSS - Theme Your RSS
    By: Mindless Automaton to
    Finnigann on Mon Jul 10 2006 01:07 am
    > > This is a plague. I can load my web page but no one
    else. telnet etc
    works... I have a router and I feel confident [1] it's configured correctly.


    yeah, i dont think his router is configured properly if nobody can
    connect but him. :D

    I have all of the required BBS ports.[1] They all point to the same
    (internal) address. Telnet works as does FTP (at least to me) The web
    interface works locally (using the bnb.synchro.net address).

    That address should have to go out of my machine to the synchro.net
    DNS server, right?

    It's not short-circuited via the HOSTS file. So, unless it's being cut
    off someplace else... I can't explain what I see... Duece?


    [1]
    As I first configured them:
    http://webpages.charter.net/jking5150/IMAGES/routertable-1.png
    I tried a second approach, being more explicit:
    http://webpages.charter.net/jking5150/IMAGES/routertable-2.png
    And for those unbelievers...
    http://webpages.charter.net/jking5150/IMAGES/bbs-logon_screen.png




    ----------------------------------------------------------------
    James King KC8UGV | Sysop - Bits-N-Bytes BBS
    Coldwater, MI 49036 | http://www.synchro.net/sbbslist.html
    ----------------------------------------------------------------
    RSS http://tinyurl.com/zswzs
    ----------------------------------------------------------------
    ... "Experience is what you get when you don't get what you wanted"
    --- MultiMail/Win32 v0.46
    þ Synchronet þ Bits-N-Bytes - bnb.dtdns.net / bnb.synchro.net
  • From jas hud@VERT/DSTREAM to Finnigann on Monday, July 10, 2006 17:26:00
    Re: Re: RSS - Theme Your RSS
    By: Finnigann to jas hud on Mon Jul 10 2006 09:56 am


    I have all of the required BBS ports.[1] They all point to the same (internal) address. Telnet works as does FTP (at least to me) The web interface works locally (using the bnb.synchro.net address).


    (at least to me) isnt good enough. as i said before, it is possible your isp BLOCKS these ports. did you try running them on other ports and having a friend [dont try it yourself, that wont help] try to connect?

    |15 .Ä.Ú Â Â ÂÂ.Ä. ÂÚ¿
    |07-³ ³Ã¿³ ³³ ³³³ ³³ ³À¿-
    |07 `Ä'ÀÙÁÙÁ`\/'Á`Ä'À-ÙÀÙ
    |08+o edge of oblivion bbs þ eob.darktech.org þ NUV þ

    ---
    þ Synchronet þ -[Data Stream - telnet/web/ftp dsbbs.net]-
  • From Finnigann@VERT/BNB to jas hud on Monday, July 10, 2006 23:03:00
    Without Duece's permission: jas hud wrote to Finnigann <=-

    Re: Re: RSS - Theme Your RSS
    By: Finnigann to
    jas hud on Mon Jul 10 2006 09:56 am

    I have all of the required BBS ports.[1] They all point to the same (internal) address. Telnet works as does FTP (at least to me) The web interface works locally (using the bnb.synchro.net address).


    (at least to me) isnt good enough. as i said before, it is possible
    your isp BLOCKS these ports. did you try running them on other ports
    and having a friend [dont try it yourself, that wont help] try to
    connect?


    Quite right. It's looking like ports maybe closed at Charter.


    BTW, how can I access my web pages FTP, and no one else can?




    ----------------------------------------------------------------
    James King KC8UGV | Sysop - Bits-N-Bytes BBS
    Coldwater, MI 49036 | http://www.synchro.net/sbbslist.html
    ----------------------------------------------------------------
    RSS http://tinyurl.com/zswzs
    ----------------------------------------------------------------
    ... Fruit is pretty honest about when it goes bad.
    --- MultiMail/Win32 v0.46
    þ Synchronet þ Bits-N-Bytes - bnb.dtdns.net / bnb.synchro.net
  • From MRoblivious1bmf@VERT to Finnigann on Tuesday, July 11, 2006 03:22:15
    To: Finnigann
    .,: This is something about Re: RSS - Theme Your RSS,
    Finnigann said it to jas hud on Mon Jul 10 2006 11:03 pm ---------------------------------------------------------------------

    BTW, how can I access my web pages FTP, and no one else can?

    C:\Documents and Settings\-oblivious->ftp bnb.synchro.net
    Connected to bnb.synchro.net.
    Connection closed by remote host.

    that's your address right? is your ftp on another port?

    i'm connected to your telnet port with no problems.

    --- Synchronet 3.13a-Win32 NewsLink 1.83
    * eob - Racine, WisconSIN - telnet://eob.darktech.org
    þ Synchronet þ Vertrauen þ Home of Synchronet þ telnet://vert.synchro.net