• recursion errors

    From Rastus@VERT/EWBBS to DOVE-Net.Synchronet_JavaScript on Sat Dec 28 20:25:16 2013
    This question has undoubtedly been asked before so I'll apologize in advance ãfor not keeping adequate archives.ããI have a several JavaScript menus that are two levels deep. They work fine ãwhen calling an external program, but I get a recursion error when calling a ãJavaScript program such as a JavaScript external message editor or yet ãanother JavaScript menu.ããIs there a way to circumvent this error other than the obvious choice of ãlimiting the depth of the menus to one level?ããThanks,ããNickãã---ã þ Synchronet þ Electronic Warfare BBS | telnet://ewbbs.synchro.netã
  • From echicken@VERT/ECBBS to Rastus on Sun Dec 29 02:48:34 2013
    Re: recursion errorsã By: Rastus to DOVE-Net.Synchronet_JavaScript on Sat Dec 28 2013 20:25:16ãã Ra> I have a several JavaScript menus that are two levels deep. They workã Ra> fine when calling an external program, but I get a recursion error whenã Ra> calling a JavaScript program such as a JavaScript external message editorã Ra> or yet another JavaScript menu.ãã Ra> Is there a way to circumvent this error other than the obvious choice of ã Ra> limiting the depth of the menus to one level?ããCan you put the code somewhere so we can look at it? Is there an exact errorãmessage that you can provide, or is it just "Recursion error"?ãã---ãechickenãelectronic chicken bbs - bbs.electronicchicken.com - 416-273-7230ã þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.comã
  • From Nightfox@VERT/DIGDIST to Rastus on Sun Dec 29 09:06:00 2013
    Re: recursion errorsã By: Rastus to DOVE-Net.Synchronet_JavaScript on Sat Dec 28 2013 20:25:16ãã Ra> I have a several JavaScript menus that are two levels deep. They workã Ra> fine when calling an external program, but I get a recursion error whenã Ra> calling a JavaScript program such as a JavaScript external messageã Ra> editor or yet another JavaScript menu.ãã Ra> Is there a way to circumvent this error other than the obvious choice ofã Ra> limiting the depth of the menus to one level?ããYou shouldn't be getting a recursion error if your JavaScript code is only twoãlevels deep. I've only ever seen that error in JavaScript when I was calling aãrecursive function that had (probably) called itself hundreds or perhapsãthousands of times.ããIf you can post the code that is producing the error, that might help diagnoseãit.ããNightfoxãã---ã þ Synchronet þ Digital Distortion BBS - digitaldistortionbbs.comã
  • From Rastus@VERT/EWBBS to echicken on Sun Dec 29 12:03:42 2013
    echicken wrote:ãã> Re: recursion errorsã> By: Rastus to DOVE-Net.Synchronet_JavaScript on Sat Dec 28 2013 20:25:16ã> ã> Ra> I have a several JavaScript menus that are two levels deep. Theyã> work Ra> fine when calling an external program, but I get a recursionã> error when Ra> calling a JavaScript program such as a JavaScript externalã> message editor Ra> or yet another JavaScript menu.ã> ã> Ra> Is there a way to circumvent this error other than the obvious choiceã> of Ra> limiting the depth of the menus to one level?ã> ã> Can you put the code somewhere so we can look at it? Is there an exactã> error message that you can provide, or is it just "Recursion error"?ãããI am using Eric Oulashin's BRE/Lord Menu's. I used the example provided to ãcreate a hierarchal menu for BRE. I placed the url of the archive below. ããI ran into trouble when I added a Message Base to a menu.. I also use Eric's ãSlyEdit as my editor of choice. Calling the editor from 2 layers deep ãcreates the following error:ãã---<snip>--ã!JavaScript /sbbs/exec/L169_Menu.js line 206: too much recursionã!JavaScript /sbbs/exec/SlyEdit.js line 1: unknown (can't convert to string)ãã!ERROR compiling /sbbs/exec/SlyEdit.jsã---<snip>---ããThe editor is not in question, calling any JavaScript file from 2 layers ãdeep creates the same type of error message. However there is no problem ãcalling JS files from The first layer of a such a JS menu.ããI am quite fond of Eric's Menus. It makes adding new games a breeze, far ãeasier than trying to do Lightbars with Baja, and it looks great too!ããI included the link because there are a couple of JS Scripts including ãDDlightBarMenu.js. The Archive can be found here:ãftp://www.digitaldistortionbbs.com/bbs/SYNC_JS/lbBRELRD.zipããNicholas Loch | SysOp: Electronic Warfare BBSãPlay Barren Realms Elite, Falcon's Eye, & More!ãhttp://www.ewbbs.net | telnet://bbs.ewbbs.netãã---ã þ Synchronet þ Electronic Warfare BBS | telnet://ewbbs.synchro.netã
  • From Nightfox@VERT/DIGDIST to Rastus on Sun Dec 29 12:05:45 2013
    Re: Re: recursion errorsã By: Rastus to echicken on Sun Dec 29 2013 12:03:42ãã Ra> I ran into trouble when I added a Message Base to a menu.. ããWhen you say you added a message base to a menu, what does that mean exactly? ãA command to read messages?ãã Ra> I am using Eric Oulashin's BRE/Lord Menu's. I used the example providedã...ã Ra> !JavaScript /sbbs/exec/L169_Menu.js line 206: too much recursionããL169_Menu.js is not one of the files in my BRE/LORD menu package. Can you giveãmore details on where you got that file from? Or is it one that you created? ãIf so, posting the code on & around line 206 might help us see what the issueãmight be.ãã Ra> !JavaScript /sbbs/exec/SlyEdit.js line 1: unknown (can't convert toã Ra> string)ããI'm not sure about that one.. Line 1 of SlyEdit.js is a comment, so theãJavaScript interpreteer should simply ignore it. I'm not sure why it's givingãyou an error there.ãã Ra> The editor is not in question, calling any JavaScript file from 2 layersã Ra> deep creates the same type of error message. However there is noã Ra> problem calling JS files from The first layer of a such a JS menu.ããWhen you say "layer", do you mean creating another menu based on the optionãchosen from the first menu?ããNightfoxãã---ã þ Synchronet þ Digital Distortion BBS - digitaldistortionbbs.comã
  • From echicken@VERT/ECBBS to Rastus on Mon Dec 30 01:08:15 2013
    Re: Re: recursion errorsã By: Rastus to echicken on Sun Dec 29 2013 12:03:42ãã Ra> !JavaScript /sbbs/exec/L169_Menu.js line 206: too much recursionããI think that this is the file I'd need to take a look at in order to tell youãanything. Pastebin, perhaps?ãã---ãechickenãelectronic chicken bbs - bbs.electronicchicken.com - 416-273-7230ã þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.comã
  • From Rastus@VERT/EWBBS to Nightfox on Sun Dec 29 23:16:40 2013
    Nightfox wrote:ãã> Re: Re: recursion errorsã> By: Rastus to echicken on Sun Dec 29 2013 12:03:42ã> ã> Ra> I ran into trouble when I added a Message Base to a menu..ã> ã> When you say you added a message base to a menu, what does that meanã> exactly? A command to read messages?ãããYes.. A command to read messages.. Reads fine.. but when replying or posting ãfrom there is where the problem occurs but only IF using an FS Editor such ãas SlyEdit which is JavaScript. However, if the user does not use a JS ãeditor then no errors occur. ãã(The editor only presents an issue because it IS JavaScript .. So don't get ãhung up on this specific command.)ãã case BNREAD:ã console.gotoxy(1, BREMenu.topLeftY + BREMenu.height);ã console.print("^An^Ah^AyStarting ....");ã console.clear()ã bbs.scan_msgs("bn000d");ã break;ãã> L169_Menu.js is not one of the files in my BRE/LORD menu package. Can youã> giveã> more details on where you got that file from? Or is it one that youã> created? If so, posting the code on & around line 206 might help us seeã> what the issue might be.ã> ã> Ra> !JavaScript /sbbs/exec/SlyEdit.js line 1: unknown (can't convert toã> Ra> string)ã> ã> I'm not sure about that one.. Line 1 of SlyEdit.js is a comment, so theã> JavaScript interpreteer should simply ignore it. I'm not sure why it'sã> giving you an error there.ããNo it's not a comment, it is the error message as output by Synchronet to ãthe terminal. (see better description below)ã ã> When you say "layer", do you mean creating another menu based on theã> option chosen from the first menu?ãããI'll start over...ããI use Erics BRE/Lord Menus for all my external programs. The filenames ãbelow are those that I created using the original as a template. The first ã"Layer" is the main External Program (DOOR) Menu.. Most of the commands in ãDOOR_Menu.js point to other Menus such as L169_Menu.js which then point to ãan external program.. This is not a problem unless that Third program is ãalso a JavaScript program.. if it IS a JS script program then the error as I ãlisted it below occurs. ããI don't know how else I can explain it.. maybe this will help.. ããThis works:ã(Level 0) Baja Main Menu -->ã(Level 1)DOOR_Menu.js --> (Level 2) L169_Menu.js --> (Level 3) EXT_Prog_IDã(the above works but ONLY if Level3 is NOT a JavaScript Program)ããThis does not:ã(Level 0) Baja Main Menu -->ã(Level 1)DOOR_Menu.js --> (Level 2) L169_Menu.js --> (Level 3) AnyOther.js ããThe following lines between the snips are the error out as reported by ãSynchronet.ããã---<snip>--ã!JavaScript /sbbs/exec/L169_Menu.js line 206: too much recursionã!JavaScript /sbbs/exec/SlyEdit.js line 1: unknown (can't convert to string)ãã!ERROR compiling /sbbs/exec/SlyEdit.jsã---<snip>---ãã(The script file names are not important..as ANY JavaScript will fail when ãcalled from what I called Level 2)ãã-- ãNicholas Loch | SysOp: Electronic Warfare BBSãPlay Barren Realms Elite, Falcon's Eye, & More!ãhttp://www.ewbbs.net | telnet://bbs.ewbbs.netãã---ã þ Synchronet þ Electronic Warfare BBS | telnet://ewbbs.synchro.netã
  • From Nightfox@VERT/DIGDIST to Rastus on Mon Dec 30 08:06:41 2013
    Re: Re: recursion errorsã By: Rastus to Nightfox on Sun Dec 29 2013 23:16:40ãã > Ra>> !JavaScript /sbbs/exec/SlyEdit.js line 1: unknown (can't convertã > Ra>> to string)ãã >> I'm not sure about that one.. Line 1 of SlyEdit.js is a comment, soã >> the JavaScript interpreteer should simply ignore it. I'm not sure whyã >> it's giving you an error there.ãã Ra> No it's not a comment, it is the error message as output by Synchronet toããThat error is reporting an error on line 1 of SlyEdit.js - and line 1 ofãSlyEdit.js is indeed a comment. This is line 1 of SlyEdit.js:ã/* This is a text editor for Synchronet designed to mimic the look & feel ofãSo I'm not sure why it's getting that error on a comment in the JavaScriptãsource.ãã Ra> This works:ã Ra> (Level 0) Baja Main Menu -->ã Ra> (Level 1)DOOR_Menu.js --> (Level 2) L169_Menu.js --> (Level 3)ã Ra> EXT_Prog_ID (the above works but ONLY if Level3 is NOT a JavaScriptã Ra> Program)ãã Ra> This does not:ã Ra> (Level 0) Baja Main Menu -->ã Ra> (Level 1)DOOR_Menu.js --> (Level 2) L169_Menu.js --> (Level 3)ã Ra> AnyOther.js ãã Ra> !JavaScript /sbbs/exec/L169_Menu.js line 206: too much recursionããThat's odd. But if you could post the code from L169_Menu.js around line 206,ãthat might help us see what's going on.ããNightfoxãã---ã þ Synchronet þ Digital Distortion BBS - digitaldistortionbbs.comã
  • From Rastus@VERT/EWBBS to Nightfox on Mon Dec 30 15:20:04 2013
    You shouldn't be getting a recursion error if your JavaScript code is onlyã> two levels deep. I've only ever seen that error in JavaScript when I wasã> calling a recursive function that had (probably) called itself hundreds orã> perhaps thousands of times.ããWith this in mind..(any without any holiday cheer in my glass).. I revisited ãThe Synchronet JavaScript Object Model Reference and found that I've been ãcalling the menu scripts incorrectly:ããHad been calling the Javascript menus using a command such as this:ããbbs.exec("?Space_Menu.js");ããBut if I found if I call them using 'Load' I'm not seeing errors and the ãprograms work properly. ie:ããload("Space_Menu.js");ããI can then use bbs.exec to call any JavaScript door programs ie:ã ãbbs.exec("?/sbbs/xtrn/dicewarz/dice.js");ããOr should I using some other syntax?ããThanks,ããNickãã---ã þ Synchronet þ Electronic Warfare BBS | telnet://ewbbs.synchro.netã
  • From Rastus@VERT/EWBBS to Rastus on Mon Dec 30 15:36:29 2013
    Rastus wrote:ãã>> You shouldn't be getting a recursion error if your JavaScript code isã>> onlyã>> two levels deep. I've only ever seen that error in JavaScript when I wasã>> calling a recursive function that had (probably) called itself hundredsã>> or perhaps thousands of times.ã> ã> With this in mind..(any without any holiday cheer in my glass).. Iã> revisited The Synchronet JavaScript Object Model Reference and found thatã> I've been calling the menu scripts incorrectly:ã> ã> Had been calling the Javascript menus using a command such as this:ã> ã> bbs.exec("?Space_Menu.js");ã> ã> But if I found if I call them using 'Load' I'm not seeing errors and theã> programs work properly. ie:ã> ã> load("Space_Menu.js");ã> ã> I can then use bbs.exec to call any JavaScript door programs ie:ã> ã> bbs.exec("?/sbbs/xtrn/dicewarz/dice.js");ããThis is just an example.. I would create a xtrn program using scfg for such ãthing... I forgot to mention that..ã ã> Or should I using some other syntax?ã> ã> Thanks,ã> ã> Nickã--ãã---ã þ Synchronet þ Electronic Warfare BBS | telnet://ewbbs.synchro.netã
  • From Rastus@VERT/EWBBS to Rastus on Mon Dec 30 16:05:25 2013
    When using 'load' to load the menus they exit back to the Main Menu. I wish ãthem to return to the calling menu. This the exit command that was used by ãdefault:ãã case EXIT_MENU:ã continueOn = false;ã break;ããI want to make sure that I'm exiting the menu properly as to not create a ãnew recursion issue.. or a memory hole...ããI'm not a JS programmer and can only tinker with scripts using examples.. ãI've read the jsobs docs and much the comments have the reader examine other ãjs files for examples.. this is great for other programmers.. I often get ãlost in the code.. sometimes I find what I'm looking for and sometimes I ãonly think I'm looking in the right place if I'm looking in the right place ãat all.. ããThanks Again,ããNickãã---ã þ Synchronet þ Electronic Warfare BBS | telnet://ewbbs.synchro.netã
  • From Nightfox@VERT/DIGDIST to Rastus on Mon Dec 30 19:44:45 2013
    Re: Re: recursion errorsã By: Rastus to Rastus on Mon Dec 30 2013 15:36:29ãã >> Had been calling the Javascript menus using a command such as this:ãã >> bbs.exec("?Space_Menu.js");ãã >> But if I found if I call them using 'Load' I'm not seeing errors andã >> the programs work properly. ie:ãã >> load("Space_Menu.js");ãã >> I can then use bbs.exec to call any JavaScript door programs ie:ãã >> bbs.exec("?/sbbs/xtrn/dicewarz/dice.js");ãã Ra> This is just an example.. I would create a xtrn program using scfg forã Ra> such thing... I forgot to mention that..ãã >> Or should I using some other syntax?ããI don't think I've tried running a JavaScript door using bbs.exec().. Iãusually set up a JavaScript as an external door in SCFG and running it usingãbbs.exec_xtrn() and passing the door's internal code. For instance, one of theãdoors I have set up on my BBS is Global One-Linerz, which is implemented inãJavaScript. I've set that up with the internal code GONLINRZ, so to run thatãfrom a JavaScript script, I call bbs.exec_xtrn("GONLINRZ");ããI'd think you should be able to use bbs.exec("?....js") though... Sorry Iãcan't think of a good reason why that's not working.ããNightfoxãã---ã þ Synchronet þ Digital Distortion BBS - digitaldistortionbbs.comã
  • From echicken@VERT/ECBBS to Rastus on Fri Jan 3 11:28:32 2014
    Re: Re: recursion errorsã By: Rastus to Nightfox on Mon Dec 30 2013 15:20:04ãã Ra> bbs.exec("?Space_Menu.js");ããThis runs "Space_Menu.js" in its own scope, meaning that (likely) won't haveãaccess to variables or functions defined in the script that called it.ãã Ra> load("Space_Menu.js");ããThis loads "Space_Menu.js" into the scope of the script that's currentlyãrunning. (If it helps, you can think of it as essentially appending theãcontents of "Space_Menu.js" to the current script. That may give you someãideas as to how "Space_Menu.js" is able to reference or modify variables andãfunctions defined in the parent script.)ããWhich of these is best to use depends on the design of your module.ãã---ãechickenãelectronic chicken bbs - bbs.electronicchicken.com - 416-273-7230ã þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.comã
  • From Digital Man@VERT to echicken on Fri Jan 3 16:46:32 2014
    Re: Re: recursion errorsã By: echicken to Rastus on Fri Jan 03 2014 11:28 amãã > Re: Re: recursion errorsã > By: Rastus to Nightfox on Mon Dec 30 2013 15:20:04ã >ã > Ra> bbs.exec("?Space_Menu.js");ã >ã > This runs "Space_Menu.js" in its own scope, meaning that (likely) won'tã > have access to variables or functions defined in the script that called it.ã >ã > Ra> load("Space_Menu.js");ã >ã > This loads "Space_Menu.js" into the scope of the script that's currentlyã > running. (If it helps, you can think of it as essentially appending theã > contents of "Space_Menu.js" to the current script. That may give you someã > ideas as to how "Space_Menu.js" is able to reference or modify variablesã > and functions defined in the parent script.)ã >ã > Which of these is best to use depends on the design of your module.ããAnd neither of which is the correct way to launch an external program which has ãbeen configured in SCFG->External Programs->Online Programs. Just say'n. :-)ãã digital manããSynchronet "Real Fact" #11:ãSynchronet was the first BBS software to ship with built-in RIPscrip support.ãNorco, CA WX: 67.9øF, 27.0% humidity, 7 mph SE wind, 0.00 inches rain/24hrsã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From echicken@VERT/ECBBS to Digital Man on Fri Jan 3 23:51:12 2014
    Re: Re: recursion errorsã By: Digital Man to echicken on Fri Jan 03 2014 16:46:32ãã DM> And neither of which is the correct way to launch an external programã DM> which has been configured in SCFG->External Programs->Online Programs.ã DM> Just say'n. :-)ããI didn't want to confuse things by mentioning that, because I don't believeãthat the script in question is an external program (as such.) I suspect he'sãbroken the menus of his command shell out into separate .js files and isãloading them inline as necessary. Once he deals with that for a while, he'llãlikely figure out some tidier ways of organizing his code (I know I did.)ãã---ãechickenãelectronic chicken bbs - bbs.electronicchicken.com - 416-273-7230ãã---ã þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.comã
  • From Rastus@VERT/EWBBS to Digital Man on Thu Jan 9 19:47:26 2014
    I'll try explain one more time..ããSince you are using the BRE/LORD menus too..ããUsing the BRE/Lord Menus.. Create 3 MenusããNest Them. IE: Call a JS Menu from a JS Menu and Do it a third time..ããyou'll see what I mean..ããanytime, anywhere, anyway.. I try to call a JS from a JS from a JS I get a ãrecursion error..ããbtw.. I am running Linux and 3.15b updated from source today.ããIf you don't understand what I am trying to say then forget it.. I'll just ãlive with it and hope the problem is corrected in the next version....ãã---ã þ Synchronet þ Electronic Warfare BBS | telnet://ewbbs.synchro.netã
  • From Digital Man@VERT to Rastus on Thu Jan 9 18:40:11 2014
    Re: Re: recursion errorsã By: Rastus to Digital Man on Thu Jan 09 2014 07:47 pmãã > I'll try explain one more time..ã >ã > Since you are using the BRE/LORD menus too..ããI am?ãã > Using the BRE/Lord Menus.. Create 3 Menusã >ã > Nest Them. IE: Call a JS Menu from a JS Menu and Do it a third time..ã >ã > you'll see what I mean..ããYou must be thinking of someone else. I'm not using "the BRE/Lord Menus".ãã > anytime, anywhere, anyway.. I try to call a JS from a JS from a JS I get aã > recursion error..ã >ã > btw.. I am running Linux and 3.15b updated from source today.ã >ã > If you don't understand what I am trying to say then forget it.. I'll justã > live with it and hope the problem is corrected in the next version....ããHave you considered trying the current development version (3.16), as an ãexperiment, to see if it resolves the issue?ãã digital manããSynchronet "Real Fact" #59:ãFree dynamic yourbbs.synchro.net hostnames were made first available in 2003.ãNorco, CA WX: 54.3øF, 83.0% humidity, 3 mph SSE wind, 0.00 inches rain/24hrsã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Rastus@VERT/EWBBS to Digital Man on Sat Jan 11 11:47:53 2014
    Digital Man wrote:ãã> You must be thinking of someone else. I'm not using "the BRE/Lord Menus".ããSorry, my comments were directed at echicken.. I believed he said he was ãusing them.. ãã> Have you considered trying the current development version (3.16), as anã> experiment, to see if it resolves the issue?ããI have been wanting to try 3.16. I like to update from CVS and I have not ãseen any instructions on how to upgrade to 3.16 using that method. I've ãbeen told there are instructions on the Sync Wiki, but I went all over the ãWiki and ended up going in circles looking for it. I gave up looking for the ãinstructions after spending hours doing so. What's more, I had a stroke and ãand no longer type very well so I don't want to waste anyone's time in the ãIRC channels. That damned stroke has also made it difficult for me to ãcommunicate my thoughts and ideas.. somehow they get lost between my brain ãand the keyboard and I often come across like I'm an ass when that was not ãmy intention at all..ããI can not find any upgrade instructions elsewhere either other than some ãstuff in the DoveNet echo's but most of it directed towards the Win version.ããI downloaded the 316 binaries from Vert, the description said they were i386 ãbut the readme in the archive suggested that they were 64 bit. I am running ãthe i386 version and did want to risk any downtime as my board is very ãactive right now.ããI am not in a hurry to fix this issue. I can come close to making a Baja ãlightbar menu that mimics Eric's JS menus.. but the JS menus are so much ãeasier to maintain.ããI am really looking forward to the newer releases.ããThanks,ããNickãã---ã þ Synchronet þ Electronic Warfare BBS | telnet://ewbbs.synchro.netã
  • From Mro@VERT/BBSESINF to Rastus on Sat Jan 11 14:31:13 2014
    Re: Re: recursion errorsã By: Rastus to Digital Man on Sat Jan 11 2014 11:47 amãã > I have been wanting to try 3.16. I like to update from CVS and I have notã > seen any instructions on how to upgrade to 3.16 using that method. I'veã > been told there are instructions on the Sync Wiki, but I went all over theãããyou download from the cvs and drop in the files. do not replace any customãscripts or mods you have.ããbackup first. ããthis is a good opportunity to learn about what does what and where it isãlocated in regards to synchronet.ããbtw, i dont believe i was ever a user on your bbs, but you have my ip blocked.ãblocking my ip didnt really accomplish keeping me off your system, just wasãwondering why i was blocked cause i find that odd.ãããgood luck upgrading. it's not hard.ãã back up first.ã---ã þ Synchronet þ ::: BBSES.info - free BBS services :::ã
  • From echicken@VERT/ECBBS to Rastus on Sat Jan 11 22:16:39 2014
    Re: Re: recursion errorsã By: Rastus to Digital Man on Sat Jan 11 2014 11:47:53ãã >> You must be thinking of someone else. I'm not using "the BRE/Lordã >> Menus".ãã Ra> Sorry, my comments were directed at echicken.. I believed he said he was ã Ra> using them.. ããI'm not sure what the BRE/LORD menus are, but I am fairly certain that I'm notãusing them.ãã---ãechickenãelectronic chicken bbs - bbs.electronicchicken.com - 416-273-7230ã þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.comã
  • From Digital Man@VERT to Rastus on Sat Jan 11 20:28:45 2014
    Re: Re: recursion errorsã By: Rastus to Digital Man on Sat Jan 11 2014 11:47 amãã > Digital Man wrote:ã >ã > > You must be thinking of someone else. I'm not using "the BRE/Lord Menus".ã >ã > Sorry, my comments were directed at echicken.. I believed he said he wasã > using them..ã >ã > > Have you considered trying the current development version (3.16), as anã > > experiment, to see if it resolves the issue?ã >ã > I have been wanting to try 3.16. I like to update from CVS and I have notã > seen any instructions on how to upgrade to 3.16 using that method.ããHere are those instructions:ãhttp://wiki.synchro.net/install:nix#updatingãã digital manããSynchronet "Real Fact" #82:ãDonations to the Synchronet project are welcome @ http://wiki.synchro.net/donateãNorco, CA WX: 59.8øF, 60.0% humidity, 1 mph SE wind, 0.00 inches rain/24hrsã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Rastus@VERT/EWBBS to Mro on Tue Jan 14 07:43:12 2014
    Mro wrote:ãã> you download from the cvs and drop in the files. do not replace any customã> scripts or mods you have.ã> ã> backup first.ã> ã> this is a good opportunity to learn about what does what and where it isã> located in regards to synchronet.ã> ã> btw, i dont believe i was ever a user on your bbs, but you have my ipã> blocked. blocking my ip didnt really accomplish keeping me off yourã> system, just was wondering why i was blocked cause i find that odd.ãããThanks but I had asked about upgrading to 3.16. I keep current.. here's the ãscript I run at least weekly:ããcd /sbbsãtar -czf exec.tgz execãexport CVSROOT=:pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs ãcvs update -d execãcvs update src 3rdpãcd /sbbs/src/sbbs3ãmake RELEASE=1ãcd /sbbs/src/sbbs3/scfgãmake RELEASE=1ãcd /sbbs/execãmakeã/sbbs/exec/jsexec update.jsããNickãã---ã þ Synchronet þ Electronic Warfare BBS | telnet://ewbbs.synchro.netã
  • From Rastus@VERT/EWBBS to Mro on Tue Jan 14 08:08:16 2014
    Mro wrote:ãã> btw, i dont believe i was ever a user on your bbs, but you have my ipã> blocked. blocking my ip didnt really accomplish keeping me off yourã> system, just was wondering why i was blocked cause i find that odd.ããYou were on my board but I removed your account and blocked your IP because ãyou requested it after receiving a message I had sent to all users about ãhanging up properly. It was early on.. and at the time there were only a ãfew users on my board. But neither you or anyone else is gonna tell me how ãto run my BBS. In short.. you were being an ass.. ãã<snip>ãYes, i set it up to forward to email, and that's what i intended it to do.ãi didnt chose [Y]es to receiving dumb msgs though.ããthanks for deleting my account and please put 184.59.39.94 into yourãsbbs/text/ip.canããhave a good one!ãã---ã þ Synchronet þ Electronic Warfare BBS | telnet://ewbbs.synchro.netã
  • From Khelair@VERT/TINFOIL to Mro on Tue Jan 14 13:02:37 2014
    Re: Re: recursion errorsã By: Mro to Rastus on Sat Jan 11 2014 14:31:13ãã Mr> btw, i dont believe i was ever a user on your bbs, but you have my ipã Mr> blocked. blocking my ip didnt really accomplish keeping me off yourã Mr> system, just was wondering why i was blocked cause i find that odd.ãã Wow, Mro, your digital penis really _is_ bigger than everyone else's.ãã --Damo dice, "Perhaps today IS a good day to die!"ãã---ã þ Synchronet þ Tinfoil Tetrahedron BBS - telnet bismaninfo.hopto.org 8023ã
  • From Mro@VERT/BBSESINF to Rastus on Tue Jan 14 17:01:18 2014
    Re: Re: recursion errorsã By: Rastus to Mro on Tue Jan 14 2014 07:43 amãã > > blocked. blocking my ip didnt really accomplish keeping me off yourã > > system, just was wondering why i was blocked cause i find that odd.ããã > Thanks but I had asked about upgrading to 3.16. I keep current.. here'sã > the script I run at least weekly:ãããyeah i was talking about upgrading to 3.16ããmaybe you should stop running a script so you know what does what with yourãbbs software.ã---ã þ Synchronet þ ::: BBSES.info - free BBS services :::ã
  • From Mro@VERT/BBSESINF to Rastus on Tue Jan 14 17:05:23 2014
    Re: Re: recursion errorsã By: Rastus to Mro on Tue Jan 14 2014 08:08 amãã > You were on my board but I removed your account and blocked your IP becauseã > you requested it after receiving a message I had sent to all users aboutã > hanging up properly. It was early on.. and at the time there were only aã > few users on my board. But neither you or anyone else is gonna tell me howã > to run my BBS. In short.. you were being an ass.. ãããOH, well i felt you were being an ass.ããjust because someone is giving you criticism, that doesnt mean theyã"are telling you how to run your bbs". ããit must have been a real snotty email for me to reply to you like thatãand tell you to block my ip and how to do it. i dont just do that on a whim.ãnothing pisses me off more than a sysgod.ããeither way i guess neither of us learned from it.ããi'll let you know when my ip changes next.ã---ã þ Synchronet þ ::: BBSES.info - free BBS services :::ã
  • From MCMLXXIX@VERT/MDJ to Mro on Tue Jan 14 22:28:20 2014
    Re: Re: recursion errorsã By: Mro to Rastus on Tue Jan 14 2014 17:05:23ãã > just because someone is giving you criticism, that doesnt mean theyã > "are telling you how to run your bbs".ã > ã > it must have been a real snotty email for me to reply to you like thatã > and tell you to block my ip and how to do it. i dont just do that on a whim.ã > nothing pisses me off more than a sysgod.ããi tend to think you put a great deal of time into telling people how to runãtheir bbs... and you do it on a whim, all the time... ãã---ã þ Synchronet þ The BRoKEN BuBBLE (bbs.thebrokenbubble.com)ã
  • From art@VERT/FATCATS to All on Thu Jan 16 08:11:53 2014
    Re: Re: recursion errorsã By: Mro to Rastus on Tue Jan 14 2014 17:05:23ããAvast! It must be joking hour!ãã > it must have been a real snotty email for me to reply to you like thatã > and tell you to block my ip and how to do it. i dont just do that on aã > whim. nothing pisses me off more than a sysgod.ãã... ããActually. I'm not going to write anything at all. That sums it up.ãã:DããDarkest condolences,ãã art@fatcatsbbsdotcom ãã"What was that ?"ã"It is large. Approximately 200 kilograms."ã -- Picard and Data in ST:TNG "Genesis"ãã---ã þ Synchronet þ fatcats bbs - fatcatsbbs.comã