Shop OBEX P1 Docs P2 Docs Learn Events
Testing new forum code ... — Parallax Forums

Testing new forum code ...

Does superscript work now?
How about subscript?
And [noparse]noparse[/noparse]?

Nope, nope, and nope. Still waiting and hoping ...

-Phil
«1

Comments

  • jmgjmg Posts: 15,140
    edited 2018-10-02 19:15
    Does superscript work now?
    How about subscript?
    And [noparse]noparse[/noparse]?

    Nope, nope, and nope. Still waiting and hoping ...

    -Phil

    Here the first two appear to do something ?

    Testing: 8) or 8 ) still flips to an icon...
  • jmg wrote:
    Here the first two appear to do something ?
    Not on my MacBook with Chrome, although the BBCodes disappear. I'll try on a PC ...

    Just looked at the page source, and <sup> and <sub> are both there. So those two have been added. Yay!

    -Phil
  • jmgjmg Posts: 15,140
    jmg wrote:
    Here the first two appear to do something ?
    Not on my MacBook with Chrome, although the BBCodes disappear. I'll try on a PC ...

    Just looked at the page source, and <sup> and <sub> are both there. So those two have been added. Yay!

    Hmm, changed from IPad and Safari, which worked, to PC and Chrome, and the rendering <sup> and <sub> fails.... - looks like Chrome users cannot see this ?
  • First two work Ok here on Win10
  • No super/sub working on my Android + Chrome or Ubuntu + Chrome
  • Win 10 + Chrome and I see Phil's first post just fine - superscript up half a line and subscript down half a line, both in a smaller font. Going to see if it works with Edge........Yup, works on Edge, too.
  • Hal AlbachHal Albach Posts: 747
    edited 2018-10-02 23:55

    Has anyone noticed if unread messages randomly pop up as read when returning from a thread?
  • jmgjmg Posts: 15,140
    Hal Albach wrote: »
    Win 10 + Chrome and I see Phil's first post just fine - superscript up half a line and subscript down half a line, both in a smaller font. Going to see if it works with Edge........Yup, works on Edge, too.

    Hmm, maybe the version matters ?
    I have Win10, updated a few nights ago, and
    Google Chrome is up to date
    Version 69.0.3497.100 (Official Build) (64-bit)


    that fails to render right, but I did see it ok on iPad/Safari
  • I just did a Win 10 update today and Chrome is at Version 69.0.3497.100 (Official Build) (64-bit) also.
  • Both sub and sup work with Firefox and Chrome on Win7. I also dug into the CSS files to see if maybe there was some weirdness with vertical-align that might confuse some browsers, but they're correctly defined for the userContent section. So I have to assume it's a browser issue.

    Would really like to have noparse working, though ...

    -Phil
  • My Win specs are:
    Win 10 Pro
    ver 1803
    OS Build 17134.320
  • Heater.Heater. Posts: 21,230
    edited 2018-10-03 00:11
    That's odd, Win 10 here and:

    Chrome 69.0.3497.100 - Nope, nope and nope. Superscript, subscript and noparse does not work.

    Firefox 61 - Yep, yep and nope. Super and subscript work, noparse does not.

    Edge - Same as Firefox.

    I notice some changes to the way code blocks are displayed. There seems to be some syntax highlighting going on. Except it's a total mess. For Spin code at least.

    1) Happy.
    2) Happy.
    3) Happy.
    4) Happy.
    5) Happy.
    6) Happy.
    7) Happy.
    8) Sad.
    9) Happy.

  • evanhevanh Posts: 15,126
    The real test for parsing is in code blocks:
    8)
    
  • evanhevanh Posts: 15,126
    Yay! 8)
  • evanhevanh Posts: 15,126
    edited 2018-10-03 00:19
    There's an intermittent problem with posting refresh getting stuck. The post is successfully made ... the page goes blank and the browser sits waiting for the forum to refresh but nothing happens and the browser times out.

    A manual reload of the forum shows a new posting - the one just posted.

    EDIT: Sometimes the page doesn't even go blank. It just hangs like the posting wasn't made at all. But it still is posted.

    PS: This is all without scripting so those with scripting enabled might experience it differently.
  • Heater.Heater. Posts: 21,230
    Boo! 8)
  • evanh wrote:
    There's an intermittent problem with posting refresh getting stuck. ...

    I've noticed that, too. Moreover, if I preview a new post, I'm unable to reedit it, since the Edit button is grayed out.

    -Phil
  • evanhevanh Posts: 15,126
    edited 2018-10-03 00:27
    [deleted]
  • Heater.Heater. Posts: 21,230
    PUB weirdSyntaxHighlighting : x, y, z
        while z == 0
            x := 42
            ' What is this ?
            y := x
        return 10000
    
  • evanhevanh Posts: 15,126
    Heater,
    The highlighting/colouring only appears with scripting enabled.
  • Dave HeinDave Hein Posts: 6,347
    edited 2018-10-03 00:43
    Testing at-at-var.
    @@var
    @@var
    
    Doesn't work. One of the @'s disappears.

    Testing at-var.
    @var
    @var 
    
    That works, except when I type @var it tries to autocomplete with something from it's dictionary. If I put a space after @var it leaves it as I type it, but if I hit a CR it autocompletes with @varnon .
    Maybe it's a browser thing. I'm using Edge.
  • Heater.Heater. Posts: 21,230
    I always have scripting enabled. I have coloring. It's a mess.

    Here is a longer example:
    PUB AddNums(Num1,Num2):Flag
        Num1_ := Num1
        Num2_ := Num2
        cognew(@entry, @Num1)
    
        'waitcnt(cnt+10000)
        'return Flag
       
        repeat while Flag == 0
    
        return Num1
    
    DAT
                            org
    entry
                            mov     t1,   par       ' Move argument address into t1
                            add     t1,   #8        ' Point to 3rd argument ( In this case 'Flag' )
                           
                            wrlong  Zero, t1        ' Clear 'Flag before we start'
                            
                            add     Num1_,Num2_     ' Add Num1 to Num2
                            wrlong  Num1_, par      ' Return result to Num1
    
                            wrlong  One, t1         ' Set 'Flag when we are done'
    
                            CogId   CogNum          ' Get COG ID
                            CogStop CogNum          ' Stop this COG
    
    CogNum                  long    0               ' Reserved variables
    Num1_                   long    0
    Num2_                   long    0
    
    Zero                    long    0
    One                     long    1
    
    t1                      res     1
    
  • evanhevanh Posts: 15,126
    Bugger. We need our @s. I've never understood the enthusiasm for doing that to a person's name in the first place.

  • evanhevanh Posts: 15,126
    Dave Hein wrote: »
    ...but if I hit a CR it autocompletes with @varnon .
    Maybe it's a browser thing. I'm using Edge.

    It'll be a scripting thing.
  • TorTor Posts: 2,010
    edited 2018-10-04 11:07
    I dislike how the new update shows every second post with a coloured background. My brain thinks "quote" automatically, whatever I do. I don't like this change.

    (Why is this thread sunk, by the way? It doesn't show up as having new posts)
    (Edit: Although that post got it to the top.. however, yesterday's posts didn't. Strange.)
  • This thread has not been sunk.
  • Slightly related: The forum does not auto-upgrade connections to HTTPS where possible. I really appreciate sites leaving the unencrypted connection available (some older/simpler browsers don't understand the new encryption protocols or have really outdated root certificates), but on a site where one has to enter a password, not using HTTPS is a really terrible idea.
  • super/sub script are working for me now. I'm on Ubuntu 18.10 with Chrome 69.0.3497.100
  • Sub and sup are working for me, too, on my MacBook using Chrome. What was changed? But, whatever, thanks to the forum dev gurus!

    -Phil
  • PublisonPublison Posts: 12,366
    edited 2018-10-04 18:37
    Alright...all posts in this thread are now alternating background color. Still using Chrome.
Sign In or Register to comment.