Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
4ba5c0d
render math in job tab info
RobBuchananCompPhys Sep 25, 2025
11278bd
make fontsize slightly smaller
RobBuchananCompPhys Sep 26, 2025
cc7d891
use dict to hold boolean is expression
RobBuchananCompPhys Sep 26, 2025
50b4b84
ruff - sort import block
RobBuchananCompPhys Sep 26, 2025
de8a2b0
ruff - missing import
RobBuchananCompPhys Sep 26, 2025
ffebde2
ruff - dict as literal
RobBuchananCompPhys Sep 26, 2025
5bd7ea1
ruff - iterate without calling .keys()
RobBuchananCompPhys Sep 26, 2025
f8dbd42
ruff - use raw string instead of invalid esscape
RobBuchananCompPhys Sep 26, 2025
af726c4
ruff - var name
RobBuchananCompPhys Sep 26, 2025
3a50d59
ruff - combine if and and instead of nested if
RobBuchananCompPhys Sep 26, 2025
305ecf1
ruff - fix imports
RobBuchananCompPhys Sep 26, 2025
97ec9f3
type hint
RobBuchananCompPhys Sep 26, 2025
38f72e1
use tupe instead of dict to hold substrings in case of overwrite
RobBuchananCompPhys Sep 26, 2025
0fee823
refactor to catch block math as well as inline
RobBuchananCompPhys Sep 28, 2025
2275bd1
add break
RobBuchananCompPhys Sep 28, 2025
b87fd96
slightly bigger plotsize for expressions, refactor html
RobBuchananCompPhys Sep 28, 2025
b68bb08
ruff
RobBuchananCompPhys Sep 28, 2025
002cd71
dark mode font
RobBuchananCompPhys Sep 29, 2025
28e6123
method name builtin clash
RobBuchananCompPhys Oct 20, 2025
5ec4ce0
use regex search
RobBuchananCompPhys Oct 20, 2025
ad8c4a9
maximal use of regex
RobBuchananCompPhys Oct 30, 2025
af0efcf
ruff check
RobBuchananCompPhys Oct 30, 2025
1944362
doc strings
RobBuchananCompPhys Nov 3, 2025
7ad61cd
tidy ii
RobBuchananCompPhys Nov 3, 2025
db84f29
tidy iii - simplyify and tidy things up
RobBuchananCompPhys Nov 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions MDANSE_GUI/Src/MDANSE_GUI/Tabs/JobTab.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from MDANSE_GUI.Tabs.Models.JobTree import JobTree
from MDANSE_GUI.Tabs.Views.ActionsTree import ActionsTree
from MDANSE_GUI.Tabs.Visualisers.Action import Action
from MDANSE_GUI.Tabs.Visualisers.TextInfo import TextInfo
from MDANSE_GUI.Tabs.Visualisers.TextInfo import MathInfo

job_tab_label = """This is the list of <b>analysis tasks</b>
you can run using MDANSE.
Expand Down Expand Up @@ -182,7 +182,7 @@ def standard_instance(cls):
layout=partial(
MultiPanel,
left_panels=[
TextInfo(
MathInfo(
header="MDANSE Analysis",
footer="Look up our Read The Docs page:"
+ "https://mdanse.readthedocs.io/en/protos/",
Expand Down Expand Up @@ -220,7 +220,7 @@ def gui_instance(
layout=partial(
MultiPanel,
left_panels=[
TextInfo(
MathInfo(
header="MDANSE Analysis",
footer="Look up our "
+ '<a href="https://mdanse.readthedocs.io/en/protos/">Read The Docs</a>'
Expand Down Expand Up @@ -253,7 +253,7 @@ def gui_instance(
layout=partial(
MultiPanel,
left_panels=[
TextInfo(
MathInfo(
header="MDANSE Analysis",
footer="Look up our "
+ '<a href="https://mdanse.readthedocs.io/en/protos/">Read The Docs</a>'
Expand Down
Loading