Home › Forums › FABRIC General Questions and Discussion › Forum submit button UX
- This topic has 14 replies, 4 voices, and was last updated 2 years ago by Ilya Baldin.
-
AuthorPosts
-
July 8, 2022 at 8:34 am #2234
This is a minor detail, but it bothers me that the “submit” button in the forum is gray until you mouse over it. The longstanding UI convention is that a gray button is disabled. I keep assuming that it is disabled, and looking for a required field I may have missed or something to enable the “submit” button…
July 8, 2022 at 8:39 am #2235Also, both today (on this post) and yesterday, when I create a new topic on this forum, it takes a long time to load and then times out with nginx error 504 Gateway Time-out. (It does still create the topic.)
September 29, 2022 at 11:49 am #3222FYI – the 504 Gateway Time-out error is still happening for me when I create a new topic on this forum.
October 4, 2022 at 9:07 pm #3255It’s very difficult to write/share code snippets on this forum. Python indentation is always messed up.
Maybe operator should switch to a different forum software? Vanilla and Discourse have better UX.
October 5, 2022 at 1:44 pm #3258Fraida,
504 error is a known issue, we are looking into it. There is an internal support ticket opened for it.
October 5, 2022 at 1:51 pm #3261@yoursunny,
Thank you we will look to see if this forum software can be tweaked to better support code snippets. As a workaround you can use github gists and link them into messages.
October 27, 2022 at 2:18 pm #3396I just enabled BBCodes in the forum content editor and this is a test reply to try various tag options that BBCodes support. (BBCode tags reference).
Code Snippet
status, advertised_topology = slice_manager.resources() print(f"Status: {status}") if status == Status.OK: print(f"Toplogy: {advertised_topology}") else: print(f"Error: {advertised_topology}")
Youtube Video
Quote
Hello World
Link to an existing forum topic by id
https://learn.fabric-testbed.net/forums/topic/quick-start-guide/October 27, 2022 at 2:23 pm #3397Can you enable Markdown too?
Both GitHub and Jupyter have Markdown, so more developers are already familiar with it.November 1, 2022 at 11:02 am #3426Hi, this forum is powered by the plugin bbPress and we use another plugin GD bbPress Toolbox to support the Code Snippet requirements in this topic/ reply editor, which currently only supports BBCodes but not markdown yet.
The good news is that there will be markdown support in the upcoming 7.0 version per the developer of GD bbPress Toolbox.
November 1, 2022 at 12:45 pm #3427This is a test reply with TinyMCE Rich Editor and use BBCodes for content formatting as well.
Code Snippet (using BBCodes “scode” tag)
status, advertised_topology = slice_manager.resources() print(f"Status: {status}") if status == Status.OK: print(f"Toplogy: {advertised_topology}") else: print(f"Error: {advertised_topology}")
Item List/ Text Color/ Strikethrough (using TinyMCE editor toolbar)
- Item 1
- Item 2
Item 3
- This reply was modified 2 years ago by Yaxue Guo.
November 1, 2022 at 1:54 pm #3430Here is how to use the “scode” tag:
- This reply was modified 2 years ago by Ilya Baldin.
- This reply was modified 2 years ago by Ilya Baldin.
- This reply was modified 2 years ago by Ilya Baldin.
- This reply was modified 2 years ago by Ilya Baldin.
November 1, 2022 at 1:57 pm #3435This is a piece of python code:
def __init__(self): super().__init__() self.network_service_info = None def set_network_service_info(self, ns_info: NetworkServiceInfo): self.network_service_info = ns_info
And this is without the tag:
def __init__(self): super().__init__() self.network_service_info = None def set_network_service_info(self, ns_info: NetworkServiceInfo): self.network_service_info = ns_info
- This reply was modified 2 years ago by Ilya Baldin.
- This reply was modified 2 years ago by Ilya Baldin.
- This reply was modified 2 years ago by Ilya Baldin.
- This reply was modified 2 years ago by Ilya Baldin.
- This reply was modified 2 years ago by Yaxue Guo.
November 1, 2022 at 2:24 pm #3440Test reply with Ilya’s code:
def __init__(self): super().__init__() self.network_service_info = None def set_network_service_info(self, ns_info: NetworkServiceInfo): self.network_service_info = ns_info
- This reply was modified 2 years ago by Yaxue Guo.
November 1, 2022 at 3:20 pm #3443I see indentation errors in the two snippets above.
Also, there’s no Preview button so that it’s impossible to know whether my content would render correctly before publishing.
November 1, 2022 at 3:26 pm #3445Yaxue and I are discussing it – this is unfortunately an imperfect solution. A simple cut-and-paste actually works preserving indentation, but doesn’t offer syntax highlighting or line numbers. scode tag does, but requires some manipulations to work correctly.
- This reply was modified 2 years ago by Ilya Baldin.
-
AuthorPosts
- You must be logged in to reply to this topic.