Skip to content

'gnuboard' html


How do I rotate the macro with html checked all the time?

Comments

  • SvenSven www.GSA-Online.de
    I had a look at the engine and it seems as it is checking that box already ba default.
    Here are the steps how to define the things.
    1. right click on the field -> Inspect Element
    2. get everything you can about this input field like <label id=i1">LabelName></label><input name="varname" class="classname" id="idname">
    3. write in the script the following to let SER know how to fill it...
    labelname=xyz
    varname=xyz
    classname=xyz
    idname=xyz

    It would be enough to use varname here but in some situations it is random and you can then use id/class or label.

  • Sven said:
    I had a look at the engine and it seems as it is checking that box already ba default.
    Here are the steps how to define the things.
    1. right click on the field -> Inspect Element
    2. get everything you can about this input field like <label id=i1">LabelName></label><input name="varname" class="classname" id="idname">
    3. write in the script the following to let SER know how to fill it...
    labelname=xyz
    varname=xyz
    classname=xyz
    idname=xyz

    It would be enough to use varname here but in some situations it is random and you can then use id/class or label.

    It's supposed to be "html=html2", do I have to give it back?
  • Here are the steps how to define the things.
    1. right click on the field -> Inspect Element
    2. get everything you can about this input field like <label id=i1">LabelName></label><input name="varname" class="classname" id="idname">
    3. write in the script the following to let SER know how to fill it...
    labelname=xyz
    varname=xyz
    classname=xyz
    idname=xyz

    It would be enough to use varname here but in some situations it is random and you can then use id/class or label.

    I don't understand what this is.
  • SvenSven www.GSA-Online.de
    well I don't understand your issue as well. Maybe someone else can jump in and help us to overcome our language barriers ?
  • Sven said:
    well I don't understand your issue as well. Maybe someone else can jump in and help us to overcome our language barriers ?
    If you look at the picture, it says "html=html1", right?
    It was originally "html=html2".
    So, if I put it back to the original state, the macro will run as an automatic htmlBOX check, right?

    I want to experiment right away, but I can't.

    I'm sorry because I can't speak English so you can't speak English.
  • SvenSven www.GSA-Online.de
    well, give me the URL from that screenshot to have a look, but I think html2 is correct.
  • Sven said:
    well, give me the URL from that screenshot to have a look, but I think html2 is correct.
    http://ebsw.co.kr/bbs/write.php?bo_table=bo5_1
    https://konacardshop.com/bbs/write.php?bo_table=free
    http://www.searainbow.kr/bbs/write.php?bo_table=after
    https://face-maker.co.kr/bbs/write.php?bo_table=free

    Yeah. I'd rather you look at this link and give me a notepad form
  • I just checked. If you turned the macro with 'html check' in place, you should have applied 'img link tag', but it was not applied.
  • SvenSven www.GSA-Online.de
    As seen in attached screenshot, the html=html2 is actually correct!

  • Sven said:
    As seen in attached screenshot, the html=html2 is actually correct!

    Thank you very much for your reply. But I don't know the reason why I can't use the img tag... Link tags work well, but other Html tags don't work, so I have to manually run them myselfㅠㅠ
  • http://ebsw.co.kr/bbs/write.php?bo_table=bo5_1
    http://www.searainbow.kr/bbs/write.php?bo_table=after
    And I'm sorry, but I have 2 more questions.

    1. The link above is also made based on 'gnuboard', but the reason why it doesn't work is because the link is different. Is there a way to make it happen? EX: bo_table=free

    2. Is it possible to use a comment macro other than an article on the 'gnuboard' site?
  • SvenSven www.GSA-Online.de
    1. yes, you simply change things ia script using modify url=...
    2. anything you like and defined in the script.
  • Sven said:
    1. yes, you simply change things ia script using modify url=...
    2. anything you like and defined in the script.
    I'm sorry, but can you explain it in more detail?
    (1. yes, you simply change things ia script using modify url=...)
    (2. anything you like and defined in the script.)
    I'd like you to give me a sample or script code that makes this possible.



    and Please answer my question about "HTML"
    (Thank you very much for your reply. But I don't know the reason why I can't use the img tag... Link tags work well, but other Html tags don't work, so I have to manually run them myself)
  • SvenSven www.GSA-Online.de
    maybe that engine does not support all html syntax?
  • cherubcherub SERnuke.com
    I think I did most of the work on the Gnuboard engine. Looking at it there doesn't seem to be anything that should strip html tags. Are you using full urls when specifying your images?
  • cherub said:
    I think I did most of the work on the Gnuboard engine. Looking at it there doesn't seem to be anything that should strip html tags. Are you using full urls when specifying your images?
    Yes. I only use 'gnuboard'.

    EX: <img src="123.png"> full url

    Is there anything wrong here?
  • cherubcherub SERnuke.com
    edited October 2023
    I had a little play around with the engine, and found adding a custom img format to the Article variable definition gets it working, so

    [Article]
    type=memo
    allow html=1
    html to bbs=0
    must be filled=1
    hint=The full article comes here.
    auto modify=0
    auto add anchor url=2
    auto add anchor url content=%file-auto_anchor-article.dat%
    custom mode=1
    html line break=1
    html line break format=<br/>
    html to custom link format=1
    custom link format=<a href="%url%">%anchor_text%</a>
    custom img format=<img src="%url%">

    @Sven does this perhaps have something to do with custom mode=1 being set?
  • SvenSven www.GSA-Online.de
    @cherub this "custom mode=1" will show this input field before submission if set so in project options (default off) and has nothing to do with this problem. 
    However, if "custom link format" is used and you do not use "basic html only=0", it will assume it is "basic html only=1" and skip image html unless you set it via "custom img format".
    This change was added some versions back when "basic html only" was introduced and might have broken some engines (but fixed others.
    I will add your change for next update.
  • cherubcherub SERnuke.com
    Sven said:
    However, if "custom link format" is used and you do not use "basic html only=0", it will assume it is "basic html only=1" and skip image html unless you set it via "custom img format".
    That makes sense, will try and remember for future reference (getting harder these days!)
  • cherub said:
    Sven said:
    However, if "custom link format" is used and you do not use "basic html only=0", it will assume it is "basic html only=1" and skip image html unless you set it via "custom img format".
    That makes sense, will try and remember for future reference (getting harder these days!)
    Thank you so much. Thanks to you, I was able to write images.
  • cherub said:
    Sven said:
    However, if "custom link format" is used and you do not use "basic html only=0", it will assume it is "basic html only=1" and skip image html unless you set it via "custom img format".
    That makes sense, will try and remember for future reference (getting harder these days!)
    Can you tell me how to apply html <mark> or background color?
  • cherubcherub SERnuke.com
    From Sven's post earlier it might help if you add 'basic html only=0' to the Article variable definition.
  • cherub said:
    From Sven's post earlier it might help if you add 'basic html only=0' to the Article variable definition.
    It really helped me a lot Thank you.

    I'm sorry, but one more thing, please. You can reply slowly when you have time.

    https://face-maker.co.kr/bbs/board.php?bo_table=free&wr_id=163088

    The link above is a 'Gnubord' based site. I'd like to use Comment Macro for this site. Is it possible with "GSA Ser"?
  • cherubcherub SERnuke.com
    So you want to be able to post comments on Gnuboard sites instead of articles? That should be doable, but would be a separate engine. I can't promise anything but I'll look at it when I have time.
  • cherub said:
    So you want to be able to post comments on Gnuboard sites instead of articles? That should be doable, but would be a separate engine. I can't promise anything but I'll look at it when I have time.
    YES. Thank you so much. It would be really helpful if you could let me know when you have time!
Sign In or Register to comment.