• user_extdesc

    From esc@VERT/MONTEREY to All on Sat Sep 12 20:05:01 2009
    How can I make a js script toggle user.settings.USER_EXTDESC so that my fileãlists default to displaying all the diz's? :)ããThanks.ãesc<demonic/+o monterey>ãã---ã þ Synchronet þ :: montereybbs.com ::ã
  • From Nightfox@VERT/DIGDIST to esc on Sat Sep 12 19:38:27 2009
    Re: user_extdescã By: esc to All on Sat Sep 12 2009 20:05:01ãã > > How can I make a js script toggle user.settings.USER_EXTDESC so that my fã > > lists default to displaying all the diz's? :)ããThis is the code I use to toggle that:ããif (user.settings & USER_EXTDESC)ã user.settings = (user.settings & ~USER_EXTDESC);ãelseã user.settings = (user.settings | USER_EXTDESC);ããNightfoxãã---ã þ Synchronet þ Digital Distortion BBS: digdist.bbsindex.comã
  • From esc@VERT/MONTEREY to Nightfox on Sun Sep 13 02:44:07 2009
    Re: user_extdescã By: Nightfox to esc on Sat Sep 12 2009 07:38 pmãã > This is the code I use to toggle that:ã > ã > if (user.settings & USER_EXTDESC)ã > user.settings = (user.settings & ~USER_EXTDESC);ã > elseã > user.settings = (user.settings | USER_EXTDESC);ããThanks man :) Right before I read that, I miraculously figured it out. Dumbãluck, lol.ããStill wrapping my head around js.ããMost of the bbs/telnet side of things are done (or at least presentable). NowãI need to try and figure out what to do about the ssjs webserver :) I'mãwondering...can I make a regular old index.html type of page, and still useãsome of the js synchronet commands in there? I'm thinking a sort of hybrid webãservice. Honestly, the only thing I'll neex is access to the messages, so I'dãneed a logon/pass mod. Oh, and to figure out phpbb :P This is hsaping up toãbe pretty educational.ãesc<demonic/+o monterey>ãã---ã þ Synchronet þ :: montereybbs.com ::ã
  • From Nightfox@VERT/DIGDIST to esc on Sun Sep 13 01:23:06 2009
    Re: user_extdescã By: esc to Nightfox on Sun Sep 13 2009 02:44:07ãã > > I need to try and figure out what to do about the ssjs webserver :) I'mã > > wondering...can I make a regular old index.html type of page, and still uã > > some of the js synchronet commands in there? I'm thinking a sort of hybrã > > service. Honestly, the only thing I'll neex is access to the messages, sããAn .html file can contain a JavaScript section.. I haven't done much moddingãof my Synchronet web server (I've been trying to come up with an idea of how Iãwant to approach that). One idea I've had is to install Apache with PHP andãrun Apache on port 80 and Synchronet's web server on port 81. I could startãwriting my own pages using PHP, and when I want to give users access toãdifferent parts of my BBS, I could determine the URL I'd need for Synchronet'sãweb server and link to it from my PHP pages. I'm sure there are other ways toãdo it, too..ããNightfoxãã---ã þ Synchronet þ Digital Distortion BBS: digdist.bbsindex.comã
  • From Digital Man@VERT to Nightfox on Tue Sep 15 08:57:18 2009
    Re: user_extdescã By: Nightfox to esc on Sat Sep 12 2009 07:38 pmãã > Re: user_extdescã > By: esc to All on Sat Sep 12 2009 20:05:01ã >ã > > > How can I make a js script toggle user.settings.USER_EXTDESC so thatã > > > my f lists default to displaying all the diz's? :)ã >ã > This is the code I use to toggle that:ã >ã > if (user.settings & USER_EXTDESC)ã > user.settings = (user.settings & ~USER_EXTDESC);ã > elseã > user.settings = (user.settings | USER_EXTDESC);ããThat works, but here's a short-cut:ããuser.settings ^= USER_EXTDESC;ãã digital manããSnapple "Real Fact" #151:ãThe fastest served ball in tennis was clocked at 154 miles per hour in 1963. ã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Nightfox@VERT/DIGDIST to Digital Man on Tue Sep 15 09:56:10 2009
    Re: user_extdescã By: Digital Man to Nightfox on Tue Sep 15 2009 08:57:18ãã > > That works, but here's a short-cut:ã > > ã > > user.settings ^= USER_EXTDESC;ããThanks.. I hadn't thought of XOR.ããNightfoxãã---ã þ Synchronet þ Digital Distortion BBS: digdist.bbsindex.comã