• FTN nodelist parser

    From Nightfox@VERT/DIGDIST to All on Sun Aug 6 19:04:34 2017
    I have been working on some JavaScript code that can parse a FTN nodelist, inthe form of a function that takes a nodelist filename and returns an arraycontaining zone objects (each zone object would have information about thezone, and include an array of nodes on the zone and an array of regions, whichin turn would contain an array of nets, which in turn contains an array ofnodes. Once parsed into that data structure, I'm thinking that could be usedin a JavaScript script for doing things like zone, region, net, and nodelookups, FTN sysop lookups, etc.. Do any other Synchronet sysops think thismight be useful? I've seen other sysops occasionally ask about FTN nodelistparsing/searching for Synchronet, but it's not something that has beendiscussed a whole lot.Nightfox--- Synchronet Digital Distortion: digitaldistortionbbs.com
  • From Bill McGarrity@VERT/TEQUILAM to Nightfox on Mon Aug 7 08:19:00 2017
    Nightfox wrote to All on 08-06-17 19:04 <=- Ni> I have been working on some JavaScript code that can parse a FTN Ni> nodelist, in the form of a function that takes a nodelist filename and Ni> returns an array containing zone objects (each zone object would have Ni> information about the zone, and include an array of nodes on the zone Ni> and an array of regions, which in turn would contain an array of nets, Ni> which in turn contains an array of nodes. Once parsed into that data Ni> structure, I'm thinking that could be used in a JavaScript script for Ni> doing things like zone, region, net, and node lookups, FTN sysop Ni> lookups, etc.. Do any other Synchronet sysops think this might be Ni> useful? I've seen other sysops occasionally ask about FTN nodelist Ni> parsing/searching for Synchronet, but it's not something that has been Ni> discussed a whole lot.I use FNLScan as of now. It's abandonware but it still works. As of now itwill parse 10 separate nodelists as follows: _______________________________________________ +---------------------+ FNLScan Main Menu +---------------------+ 1) Search nodelist by BBS name 2) Search nodelist by sysop name 3) Search nodelist by city 4) Search nodelist by area code 5) Search nodelist by zone and net 6) Search nodelist entries for text T) Toggle short/long node display mode X) Toggle expert mode H) Help on FNLScan Q) Quit to BBS Would be nice to have a Synch plugin. :) --BillTelnet: tequilamockingbirdonline.netWeb: bbs.tequilamockingbirdonline.netFTP: ftp.tequilamockingbirdonline.net:2121IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697Radio: radio.tequilamockingbirdonline.net:8010/live... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!--- MultiMail/Win32 v0.50 Synchronet TequilaMockingbird Online - Toms River, NJ
  • From poindexter FORTRAN@VERT/REALITY to Nightfox on Mon Aug 7 08:51:10 2017
    Re: FTN nodelist parser By: Nightfox to All on Sun Aug 06 2017 07:04 pmNi> I have been working on some JavaScript code that can parse a FTN nodelist,Ni> Do any otherNi> Synchronet sysops think this might be useful? I've seen other sysopsNi> occasionally ask about FTN nodelist parsing/searching for Synchronet, butNi> it's not something that has been discussed a whole lot.Yes! I'd love for SBBS to be able to do a nodelist lookup when you enter a namein the to: field.--- Synchronet realitycheckBBS -- http://realitycheckBBS.org
  • From Nightfox@VERT/DIGDIST to poindexter FORTRAN on Mon Aug 7 09:24:26 2017
    Re: FTN nodelist parser By: poindexter FORTRAN to Nightfox on Mon Aug 07 2017 08:51 am PF> Yes! I'd love for SBBS to be able to do a nodelist lookup when you enter a PF> name in the to: field.I was thinking of creating a script to do that. But I was thinking, it wouldreally only work for sysops & coordinators, since those are the only people inthe nodelist.. If you want to be able to email a non-sysop, you'd still needto know their FTN address.Nightfox--- Synchronet Digital Distortion: digitaldistortionbbs.com
  • From poindexter FORTRAN@VERT/REALITY to Nightfox on Mon Aug 7 11:13:18 2017
    Re: FTN nodelist parser By: Nightfox to poindexter FORTRAN on Mon Aug 07 2017 09:24 am Ni> I was thinking of creating a script to do that. But I was thinking, it Ni> would really only work for sysops & coordinators, since those are the only Ni> people in the nodelist.. If you want to be able to email a non-sysop, you'dNi> still need to know their FTN address. I mostly netmail sysops from the mail menu these days, the lack of user lookupshouldn't cause too much of a problem. If I'm netmailing a user, it's usually anetmail reply to an echomail, which pulls up either an SMTP address or netmailaddress. Pretty nifty. --- Synchronet realitycheckBBS -- http://realitycheckBBS.org
  • From Digital Man@VERT to Nightfox on Mon Aug 7 17:54:13 2017
    Re: FTN nodelist parser By: Nightfox to All on Sun Aug 06 2017 07:04 pm > I have been working on some JavaScript code that can parse a FTN nodelist, > in the form of a function that takes a nodelist filename and returns an > array containing zone objects (each zone object would have information about > the zone, and include an array of nodes on the zone and an array of regions, > which in turn would contain an array of nets, which in turn contains an > array of nodes. Once parsed into that data structure, I'm thinking that > could be used in a JavaScript script for doing things like zone, region, > net, and node lookups, FTN sysop lookups, etc.. Do any other Synchronet > sysops think this might be useful? I've seen other sysops occasionally ask > about FTN nodelist parsing/searching for Synchronet, but it's not something > that has been discussed a whole lot.Deuce has a parse_nodelist() function in exec/load/fido.js. Might want to takea look at it. digital manSynchronet/BBS Terminology Definition #17:DSL = Digital Subscriber LineNorco, CA WX: 85.5F, 48.0% humidity, 7 mph E wind, 0.00 inches rain/24hrs--- Synchronet Vertrauen Home of Synchronet [vert/cvs/bbs].synchro.net
  • From Nightfox@VERT/DIGDIST to Digital Man on Mon Aug 7 18:30:52 2017
    Re: FTN nodelist parser By: Digital Man to Nightfox on Mon Aug 07 2017 05:54 pm DM> Deuce has a parse_nodelist() function in exec/load/fido.js. Might want to DM> take a look at it.Interesting.. Thanks.Nightfox--- Synchronet Digital Distortion: digitaldistortionbbs.com
  • From DesotoFireflite@VERT/VALHALLA to Bill McGarrity on Tue Aug 8 15:56:29 2017
    Re: FTN nodelist parser By: Bill McGarrity to Nightfox on Mon Aug 07 2017 08:19 am BM> I use FNLScan as of now. It's abandonware but it still works. As of now it BM> will parse 10 separate nodelists as follows: BM> _______________________________________________ BM> +---------------------+ BM> FNLScan Main Menu BM> +---------------------+ BM> 1) Search nodelist by BBS name BM> 2) Search nodelist by sysop name BM> 3) Search nodelist by city BM> 4) Search nodelist by area code BM> 5) Search nodelist by zone and net BM> 6) Search nodelist entries for text BM> T) Toggle short/long node display mode BM> X) Toggle expert mode BM> H) Help on FNLScan BM> Q) Quit to BBS BM> BM> Would be nice to have a Synch plugin. :)Echicken made a nodelist scanner that works well with Sync. I still use it onmy sync system. It's called FTNNV, FTN Node Viewer.SysOp: C.G. Learn, AKA: DesotoFirefliteValhalla Home Services! - (Synchronet) - bbs.valhallabbs.comValhalla II! - (GAP) - bbs.valhallabbs.com:24A Gamers Paradise - Over 150 Registered Online Game Doors!Featuring Legion, A New RPG, Available On Both Systems!--- Don't eat the yellow snow! Synchronet Valhalla Home Services USA http://valhalla.synchro.net
  • From Bill McGarrity@VERT/TEQUILAM to DesotoFireflite on Tue Aug 8 18:26:00 2017
    DesotoFireflite wrote to Bill McGarrity on 08-08-17 15:56 <=- De> Re: FTN nodelist parser De> By: Bill McGarrity to Nightfox on Mon Aug 07 2017 08:19 am BM> I use FNLScan as of now. It's abandonware but it still works. As of now it BM> will parse 10 separate nodelists as follows: BM> Would be nice to have a Synch plugin. :) De> Echicken made a nodelist scanner that works well with Sync. I still use De> it on my sync system. It's called FTNNV, FTN Node Viewer.I'll take a look at it... thanks..--BillTelnet: tequilamockingbirdonline.netWeb: bbs.tequilamockingbirdonline.netFTP: ftp.tequilamockingbirdonline.net:2121IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697Radio: radio.tequilamockingbirdonline.net:8010/live... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!--- MultiMail/Win32 v0.50 Synchronet TequilaMockingbird Online - Toms River, NJ
  • From Nightfox@VERT/DIGDIST to DesotoFireflite on Wed Aug 9 12:27:33 2017
    Re: FTN nodelist parser By: DesotoFireflite to Bill McGarrity on Tue Aug 08 2017 03:56 pm De> Echicken made a nodelist scanner that works well with Sync. I still use it De> on my sync system. It's called FTNNV, FTN Node Viewer.I'll have to take a look at that.. Thanks for mentioning it.Nightfox--- Synchronet Digital Distortion: digitaldistortionbbs.com
  • From DesotoFireflite@VERT/VALHALLA to Nightfox on Wed Aug 9 16:43:24 2017
    Re: FTN nodelist parser By: Nightfox to DesotoFireflite on Wed Aug 09 2017 12:27 pm De>> Echicken made a nodelist scanner that works well with Sync. I still De>> use it on my sync system. It's called FTNNV, FTN Node Viewer. Ni> I'll have to take a look at that.. Thanks for mentioning it.glad i could help. its a nice little program. it also ley you replace thenetmail command, and look uo tge node and send the message all at once.SysOp: C.G. Learn, AKA: DesotoFirefliteValhalla Home Services! - (Synchronet) - bbs.valhallabbs.comValhalla II! - (GAP) - bbs.valhallabbs.com:24A Gamers Paradise - Over 150 Registered Online Game Doors!Play Trade Wars Between 10 Other BBS's On Valhalla's Trade Wars Game Server!Featuring Legion, A New RPG, Available On Both Systems!--- CAT (n.), Furry keyboard cover. Synchronet Valhalla Home Services USA http://valhalla.synchro.net
  • From Nightfox@VERT/DIGDIST to DesotoFireflite on Wed Aug 9 14:48:46 2017
    Re: FTN nodelist parser By: DesotoFireflite to Nightfox on Wed Aug 09 2017 04:43 pm De>>> Echicken made a nodelist scanner that works well with Sync. I still De>>> use it on my sync system. It's called FTNNV, FTN Node Viewer. Ni>> I'll have to take a look at that.. Thanks for mentioning it. De> glad i could help. its a nice little program. it also ley you replace the De> netmail command, and look uo tge node and send the message all at once.Well shazam.. That's what I was thinking about creating myself.. :)Nightfox--- Synchronet Digital Distortion: digitaldistortionbbs.com
  • From Nightfox@VERT/DIGDIST to DesotoFireflite on Thu Aug 10 13:19:33 2017
    Re: FTN nodelist parser By: DesotoFireflite to Nightfox on Wed Aug 09 2017 04:43 pm De>>> Echicken made a nodelist scanner that works well with Sync. I still De>>> use it on my sync system. It's called FTNNV, FTN Node Viewer. Ni>> I'll have to take a look at that.. Thanks for mentioning it. De> glad i could help. its a nice little program. it also ley you replace the De> netmail command, and look uo tge node and send the message all at once.I installed it on my BBS yesterday, and I think it's fairly nifty and workswell. It was pretty much what I had in mind when I was thinking of writing myown.Nightfox--- Synchronet Digital Distortion: digitaldistortionbbs.com
  • From Nightfox@VERT/DIGDIST to poindexter FORTRAN on Thu Aug 10 13:20:30 2017
    Re: FTN nodelist parser By: poindexter FORTRAN to Nightfox on Mon Aug 07 2017 08:51 am PF> Yes! I'd love for SBBS to be able to do a nodelist lookup when you enter a PF> name in the to: field.DesotoFireflite pointed me to echicken's FTNNV, which does that. It'savailable on Electronic Chicken BBS if you want to download it and check itout. I think it works fairly well.Nightfox--- Synchronet Digital Distortion: digitaldistortionbbs.com
  • From DesotoFireflite@VERT/VALHALLA to Nightfox on Thu Aug 10 19:53:48 2017
    Re: FTN nodelist parser By: Nightfox to DesotoFireflite on Thu Aug 10 2017 01:19 pm De>>>> Echicken made a nodelist scanner that works well with Sync. I De>>>> still use it on my sync system. It's called FTNNV, FTN Node De>>>> Viewer. Ni>>> I'll have to take a look at that.. Thanks for mentioning it. De>> glad i could help. its a nice little program. it also ley you De>> replace the netmail command, and look uo tge node and send the De>> message all at once. Ni> I installed it on my BBS yesterday, and I think it's fairly nifty and Ni> works well. It was pretty much what I had in mind when I was thinking of Ni> writing my own.Yeah, a bunch of us were looking for something like this a few years ago, so hethrew it togeather for us. I don't think he has fixed the user number lookupyet, but it works well for names and such. I just edited one of the js filesand removed the reference to number lookup on the input field so no one wouldtry to find anyone by bbs user number.SysOp: C.G. Learn, AKA: DesotoFirefliteValhalla Home Services! - (Synchronet) - bbs.valhallabbs.comValhalla II! - (GAP) - bbs.valhallabbs.com:24A Gamers Paradise - Over 150 Registered Online Game Doors!Play Trade Wars Between 10 Other BBS's On Valhalla's Trade Wars Game Server!Featuring Legion, A New RPG, Available On Both Systems!--- A true friend knows who you are... But likes you anyway. Synchronet Valhalla Home Services USA http://valhalla.synchro.net
  • From Nightfox@VERT/DIGDIST to DesotoFireflite on Thu Aug 10 19:36:10 2017
    Re: FTN nodelist parser By: DesotoFireflite to Nightfox on Thu Aug 10 2017 07:53 pm De>>>>> Echicken made a nodelist scanner that works well with Sync. I De>>>>> still use it on my sync system. It's called FTNNV, FTN Node De>>>>> Viewer. De> Yeah, a bunch of us were looking for something like this a few years ago, De> so he threw it togeather for us. I don't think he has fixed the user De> number lookup yet, but it works well for names and such. I just edited one De> of the js files and removed the reference to number lookup on the input De> field so no one would try to find anyone by bbs user number.The stock Synchronet email menu has 2 options, one for sending mail (for localemail) and another for sending netmail. Since netmail is intended for sendingemail outside of the BBS, I think it's fine that it doesn't do a user numberlookup.. That might not be a bug.Nightfox--- Synchronet Digital Distortion: digitaldistortionbbs.com
  • From Bill McGarrity@VERT/TEQUILAM to Nightfox on Fri Aug 11 09:24:00 2017
    Nightfox wrote to DesotoFireflite on 08-10-17 13:19 <=- Ni> Re: FTN nodelist parser Ni> By: DesotoFireflite to Nightfox on Wed Aug 09 2017 04:43 pm De>>> Echicken made a nodelist scanner that works well with Sync. I still De>>> use it on my sync system. It's called FTNNV, FTN Node Viewer. Ni>> I'll have to take a look at that.. Thanks for mentioning it. De> glad i could help. its a nice little program. it also ley you replace the De> netmail command, and look uo tge node and send the message all at once. Ni> I installed it on my BBS yesterday, and I think it's fairly nifty and Ni> works well. It was pretty much what I had in mind when I was thinking Ni> of writing my own.OK... do you have multiple nodelists? I edited the mail-prompt.js as per thereadme file but only showing the zones 1-4 from the fido.This is what I have...var nodelistPaths = ["c:/fd/nodelist/nodelist.*","c:/fd/nodelist/sportnet.*","c:/fd/nodelist/league10.*","c:/fd/nodelist/agoranet.*","c:/fd/nodelist/whispnet.*","c:/fd/nodelist/TQMRadio.*","c:/fd/nodelist/micronet.*","c:/fd/nodelist/RWNLIST.*"];Is there another way? Should this all be on one line?Thanks.. --BillTelnet: tequilamockingbirdonline.netWeb: bbs.tequilamockingbirdonline.netFTP: ftp.tequilamockingbirdonline.net:2121IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697Radio: radio.tequilamockingbirdonline.net:8010/live... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!--- MultiMail/Win32 v0.50 Synchronet TequilaMockingbird Online - Toms River, NJ
  • From Nightfox@VERT/DIGDIST to Bill McGarrity on Fri Aug 11 09:10:35 2017
    Re: FTN nodelist parser By: Bill McGarrity to Nightfox on Fri Aug 11 2017 09:24 am BM> OK... do you have multiple nodelists? I edited the mail-prompt.js as per BM> the readme file but only showing the zones 1-4 from the fido. BM> This is what I have... BM> var nodelistPaths = [ BM> "c:/fd/nodelist/nodelist.*", BM> "c:/fd/nodelist/sportnet.*", BM> "c:/fd/nodelist/league10.*", BM> "c:/fd/nodelist/agoranet.*", BM> "c:/fd/nodelist/whispnet.*", BM> "c:/fd/nodelist/TQMRadio.*", BM> "c:/fd/nodelist/micronet.*", BM> "c:/fd/nodelist/RWNLIST.*" BM> ]; BM> Is there another way? Should this all be on one line?That looks fine to me.. That's how I've specified my nodelists, and it seemsto be working for me.Nightfox--- Synchronet Digital Distortion: digitaldistortionbbs.com
  • From DesotoFireflite@VERT/VALHALLA to Nightfox on Fri Aug 11 12:25:33 2017
    Re: FTN nodelist parser By: Nightfox to DesotoFireflite on Thu Aug 10 2017 07:36 pm De>>>>>> still use it on my sync system. It's called FTNNV, FTN Node De>>>>>> Viewer. De>> Yeah, a bunch of us were looking for something like this a few years De>> ago, so he threw it togeather for us. I don't think he has fixed the De>> user number lookup yet, but it works well for names and such. I just De>> edited one of the js files and removed the reference to number De>> lookup on the input field so no one would try to find anyone by bbs De>> user number. Ni> The stock Synchronet email menu has 2 options, one for sending mail (for Ni> local email) and another for sending netmail. Since netmail is intended Ni> for sending email outside of the BBS, I think it's fine that it doesn't do Ni> a user number lookup.. That might not be a bug.It was meant to replace the stock sync email sending function, so you couldin fact use the user number. I chose just to make it a netmail function, so thebbs user number would not come into play, so it never bothered me. I also haveit as a lockup address function program also. I've been very happy with it. SysOp: C.G. Learn, AKA: DesotoFirefliteValhalla Home Services! - (Synchronet) - bbs.valhallabbs.comValhalla II! - (GAP) - bbs.valhallabbs.com:24A Gamers Paradise - Over 150 Registered Online Game Doors!Play Trade Wars Between 10 Other BBS's On Valhalla's Trade Wars Game Server!Featuring Legion, A New RPG, Available On Both Systems!--- Old farts never die! They just smell that way... Synchronet Valhalla Home Services USA http://valhalla.synchro.net
  • From DesotoFireflite@VERT/VALHALLA to Bill McGarrity on Fri Aug 11 12:30:11 2017
    Re: FTN nodelist parser By: Bill McGarrity to Nightfox on Fri Aug 11 2017 09:24 am BM> OK... do you have multiple nodelists? I edited the mail-prompt.js as per BM> the readme file but only showing the zones 1-4 from the fido. BM> This is what I have... BM> var nodelistPaths = [ BM> "c:/fd/nodelist/nodelist.*", BM> "c:/fd/nodelist/sportnet.*", BM> "c:/fd/nodelist/league10.*", BM> "c:/fd/nodelist/agoranet.*", BM> "c:/fd/nodelist/whispnet.*", BM> "c:/fd/nodelist/TQMRadio.*", BM> "c:/fd/nodelist/micronet.*", BM> "c:/fd/nodelist/RWNLIST.*"This is how mine is set up Bill// The paths to your nodelistsvar nodelistPaths = ["/sbbs/radius/nodelist/nodelist.*","/sbbs/radius/nodelist/rwnlist.*","/sbbs/radius/nodelist/gnetwork.*"];SysOp: C.G. Learn, AKA: DesotoFirefliteValhalla Home Services! - (Synchronet) - bbs.valhallabbs.comValhalla II! - (GAP) - bbs.valhallabbs.com:24A Gamers Paradise - Over 150 Registered Online Game Doors!Play Trade Wars Between 10 Other BBS's On Valhalla's Trade Wars Game Server!Featuring Legion, A New RPG, Available On Both Systems!--- Fartvergnugen: The pleasure of breaking wind. Synchronet Valhalla Home Services USA http://valhalla.synchro.net
  • From Bill McGarrity@VERT/TEQUILAM to Nightfox on Sat Aug 12 07:55:00 2017
    Nightfox wrote to Bill McGarrity on 08-11-17 09:10 <=- Ni> Re: FTN nodelist parser Ni> By: Bill McGarrity to Nightfox on Fri Aug 11 2017 09:24 am BM> OK... do you have multiple nodelists? I edited the mail-prompt.js as per BM> the readme file but only showing the zones 1-4 from the fido. BM> This is what I have... BM> var nodelistPaths = [ BM> "c:/fd/nodelist/nodelist.*", BM> "c:/fd/nodelist/sportnet.*", BM> "c:/fd/nodelist/league10.*", BM> "c:/fd/nodelist/agoranet.*", BM> "c:/fd/nodelist/whispnet.*", BM> "c:/fd/nodelist/TQMRadio.*", BM> "c:/fd/nodelist/micronet.*", BM> "c:/fd/nodelist/RWNLIST.*" BM> ]; BM> Is there another way? Should this all be on one line? Ni> That looks fine to me.. That's how I've specified my nodelists, and it Ni> seems to be working for me.Nada over here. This is what I get... FTN Nodelist Viewer+Zone 1: North America+Zone 2: Eur (288)+Zone 3: Australia NZ PNG+Zone 4: America Latina:(--BillTelnet: tequilamockingbirdonline.netWeb: bbs.tequilamockingbirdonline.netFTP: ftp.tequilamockingbirdonline.net:2121IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697Radio: radio.tequilamockingbirdonline.net:8010/live... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!--- MultiMail/Win32 v0.50 Synchronet TequilaMockingbird Online - Toms River, NJ
  • From KK4QBN@VERT/KK4QBN to DesotoFireflite on Sun Aug 13 12:19:17 2017
    Re: FTN nodelist parser By: DesotoFireflite to Nightfox on Thu Aug 10 2017 19:53:48 De>>>>> Echicken made a nodelist scanner that works well with Sync. I De>>>>> still use it on my sync system. It's called FTNNV, FTN Node De>>>>> Viewer. E-Chicken is the Bomb! I appreciate all the he and other developers have putinto this great systemm coming back from a ten year hiatus and seeing all thesenew additions was crazy, and overkill, but I'm still going through code everyday just about!Salute!--Tim Smith (KK4QBN)KK4QBN BBS--- * Synchronet * KK4QBN - kk4qbn.synchro.net - 7064229538 - Chatsworth GA USA
  • From Accession@VERT/PHARCYDE to Bill McGarrity on Sun Aug 13 11:18:12 2017
    Hello Bill,On Sat Aug 12 2017 07:55:00, Bill McGarrity wrote to Nightfox: BM>> OK... do you have multiple nodelists? I edited the mail-prompt.js BM>> as per the readme file but only showing the zones 1-4 from the BM>> fido. This is what I have... BM>> var nodelistPaths = [ BM>> "c:/fd/nodelist/nodelist.*", BM>> "c:/fd/nodelist/sportnet.*", BM>> "c:/fd/nodelist/league10.*", BM>> "c:/fd/nodelist/agoranet.*", BM>> "c:/fd/nodelist/whispnet.*", BM>> "c:/fd/nodelist/TQMRadio.*", BM>> "c:/fd/nodelist/micronet.*", BM>> "c:/fd/nodelist/RWNLIST.*" BM>> ]; BM>> Is there another way? Should this all be on one line? Ni>> That looks fine to me.. That's how I've specified my nodelists, Ni>> and it seems to be working for me. BM> Nada over here. This is what I get... BM> FTN Nodelist Viewer BM> +Zone 1: North America BM> +Zone 2: Eur (288) BM> +Zone 3: Australia NZ PNG BM> +Zone 4: America LatinaThere is no zone 5 or 6 any more. So they most likely wouldn't show up if the nodelist is read by whatever program you guys are referring to.Regards,Nick... "Не знаю. Я здесь только работаю."--- GoldED+/LNX 1.1.5-b20170303 * Origin: thePharcyde_ distribution system (Wisconsin) (723:1/1) Synchronet thePharcyde_ telnet://bbs.pharcyde.org (Wisconsin)
  • From Bill McGarrity@VERT/TEQUILAM to Accession on Sun Aug 13 19:13:00 2017
    Hiya Nick..-=> Accession wrote to Bill McGarrity on 08-13-17 11:18 <=- Ac> On Sat Aug 12 2017 07:55:00, Bill McGarrity wrote to Nightfox: BM>> OK... do you have multiple nodelists? I edited the mail-prompt.js BM>> as per the readme file but only showing the zones 1-4 from the BM>> fido. This is what I have... BM>> var nodelistPaths = [ BM>> "c:/fd/nodelist/nodelist.*", BM>> "c:/fd/nodelist/sportnet.*", BM>> "c:/fd/nodelist/league10.*", BM>> "c:/fd/nodelist/agoranet.*", BM>> "c:/fd/nodelist/whispnet.*", BM>> "c:/fd/nodelist/TQMRadio.*", BM>> "c:/fd/nodelist/micronet.*", BM>> "c:/fd/nodelist/RWNLIST.*" BM>> ]; BM>> Is there another way? Should this all be on one line? Ni>> That looks fine to me.. That's how I've specified my nodelists, Ni>> and it seems to be working for me. BM> Nada over here. This is what I get... BM> FTN Nodelist Viewer BM> +Zone 1: North America BM> +Zone 2: Eur (288) BM> +Zone 3: Australia NZ PNG BM> +Zone 4: America Latina Ac> There is no zone 5 or 6 any more. So they most likely wouldn't show up Ac> if the nodelist is read by whatever program you guys are referring to.I know that but from what I understood, I have other zone's nodelists listed aswell, therefore, they should appear right after z1-z4. (I am assuming in orderof actual zone #.)--BillTelnet: tequilamockingbirdonline.netWeb: bbs.tequilamockingbirdonline.netFTP: ftp.tequilamockingbirdonline.net:2121IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697Radio: radio.tequilamockingbirdonline.net:8010/live... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!--- MultiMail/Win32 v0.50 Synchronet TequilaMockingbird Online - Toms River, NJ
  • From Accession@VERT/PHARCYDE to Bill McGarrity on Sun Aug 13 19:48:44 2017
    Hello Bill,On Sun Aug 13 2017 19:13:00, Bill McGarrity wrote to Accession: Ac>> There is no zone 5 or 6 any more. So they most likely wouldn't Ac>> show up if the nodelist is read by whatever program you guys are Ac>> referring to. BM> I know that but from what I understood, I have other zone's nodelists BM> listed as well, therefore, they should appear right after z1-z4. (I am BM> assuming in order of actual zone #.)Ah. Sorry, I misunderstood the original posts then. Does this script use any other .ini like ftn_domains.ini or anything where those zones would also need to be specified?Otherwise, maybe if there is no zone 5 in any of your nodelists, it skips the rest?Could just be not parsing any of the nodelists after the first one it reads. Unfortunately, that's out of my realm. ;)Regards,Nick... "Не знаю. Я здесь только работаю."--- GoldED+/LNX 1.1.5-b20170303 * Origin: thePharcyde_ distribution system (Wisconsin) (723:1/1) Synchronet thePharcyde_ telnet://bbs.pharcyde.org (Wisconsin)
  • From Bill McGarrity@VERT/TEQUILAM to Accession on Mon Aug 14 08:01:00 2017
    Hiya Nick..-=> Accession wrote to Bill McGarrity on 08-13-17 19:48 <=- Ac> On Sun Aug 13 2017 19:13:00, Bill McGarrity wrote to Accession: Ac>> There is no zone 5 or 6 any more. So they most likely wouldn't Ac>> show up if the nodelist is read by whatever program you guys are Ac>> referring to. BM> I know that but from what I understood, I have other zone's nodelists BM> listed as well, therefore, they should appear right after z1-z4. (I am BM> assuming in order of actual zone #.) Ac> Ah. Sorry, I misunderstood the original posts then. Does this script Ac> use any other .ini like ftn_domains.ini or anything where those zones Ac> would also need to be specified? Ac> Otherwise, maybe if there is no zone 5 in any of your nodelists, it Ac> skips the rest? Ac> Could just be not parsing any of the nodelists after the first one it Ac> reads. Unfortunately, that's out of my realm. ;)From my understanding the file where I added all the extra nodelists is allthat is needed. There is no .ini file. The only files that are used are all.js, including one that's in the ../exec/load folder.I'm at a loss... for now. :)--BillTelnet: tequilamockingbirdonline.netWeb: bbs.tequilamockingbirdonline.netFTP: ftp.tequilamockingbirdonline.net:2121IRC: irc.tequilamockingbirdonline.net Ports: 6661-6670 SSL: +6697Radio: radio.tequilamockingbirdonline.net:8010/live... Look Twice... Save a Life!!! Motorcycles are Everywhere!!!--- MultiMail/Win32 v0.50 Synchronet TequilaMockingbird Online - Toms River, NJ
  • From Nightfox@VERT/DIGDIST to KK4QBN on Mon Aug 14 12:44:44 2017
    Re: FTN nodelist parser By: KK4QBN to DesotoFireflite on Sun Aug 13 2017 12:19 pm KK> E-Chicken is the Bomb! I appreciate all the he and other developers have KK> put into this great systemm coming back from a ten year hiatus and seeing KK> all these new additions was crazy, and overkill, but I'm still going KK> through code every day just about!10-year hiatus? I've been running my current Synchronet BBS for 10 years, andSynchronet has been in steady development during that time, with mods beingavailable for it too.Nightfox--- Synchronet Digital Distortion: digitaldistortionbbs.com
  • From KK4QBN@VERT/KK4QBN to Nightfox on Mon Aug 14 17:36:35 2017
    Re: FTN nodelist parser By: Nightfox to KK4QBN on Mon Aug 14 2017 12:44:44 KK>> E-Chicken is the Bomb! I appreciate all the he and other developers KK>> have put into this great systemm coming back from a ten year hiatus KK>> and seeing all these new additions was crazy, and overkill, but I'm KK>> still going through code every day just about! Ni> 10-year hiatus? I've been running my current Synchronet BBS for 10 years, Ni> and Synchronet has been in steady development during that time, with mods Ni> being available for it too.Maybe a bit longer than 10 but not by far... the last time I ran SBBS thewebserver was just coming out in full force, with the Runemaster additions,etc.. not all these cool JS additions..--Tim Smith (KK4QBN)KK4QBN BBS--- * Synchronet * KK4QBN - kk4qbn.synchro.net - 7064229538 - Chatsworth GA USA
  • From Nightfox@VERT/DIGDIST to KK4QBN on Mon Aug 14 19:02:27 2017
    Re: FTN nodelist parser By: KK4QBN to Nightfox on Mon Aug 14 2017 05:36 pm KK>>> have put into this great systemm coming back from a ten year hiatus Ni>> 10-year hiatus? I've been running my current Synchronet BBS for 10 KK> Maybe a bit longer than 10 but not by far... the last time I ran SBBS the KK> webserver was just coming out in full force, with the Runemaster KK> additions, etc.. not all these cool JS additions..Ah, I think I misunderstood.. Thought you meant Synchronet was on a 10-yearhiatus, but I see you mean your BBS..Nightfox--- Synchronet Digital Distortion: digitaldistortionbbs.com
  • From KK4QBN@VERT/KK4QBN to Nightfox on Tue Aug 15 09:26:07 2017
    Re: FTN nodelist parser By: Nightfox to KK4QBN on Mon Aug 14 2017 19:02:27 Ni> Ah, I think I misunderstood.. Thought you meant Synchronet was on a Ni> 10-year hiatus, but I see you mean your BBS..YEs, thats correct :) I was on a ten year Hiatus :)--Tim Smith (KK4QBN)KK4QBN BBS--- * Synchronet * KK4QBN - kk4qbn.synchro.net - 7064229538 - Chatsworth GA USA