From: Stefan Sterz <s.sterz@proxmox.com>
To: pbs-devel@lists.proxmox.com, pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH SERIES v4 0/4] add notes to functionality to pbs webui
Date: Fri, 1 Apr 2022 12:19:04 +0200 [thread overview]
Message-ID: <20220401101908.1154385-1-s.sterz@proxmox.com> (raw)
adds support for markdown-based notes to pbs. It also refactors the
pve `NotesView` panel and `NotesEdit` window so that we can move it
to the widget toolkit and maintain a single version of the two.
hence, the last commits for proxmox-backup and pve-manager need to be
applied and bumped with or after the toolkit.
changes v4 (thanks @ Thomas Lamprecht):
* several improvements to NotesView
* makes onlineHelp of the NotesEdit window used by NotesView
configurable
changes v3 (thanks @ Dominik Csapak):
* refactored NotesView and NotesEdit
* removed notes from dashboard
* several javascrpt improvements
changes v2 (thanks @ Wolfgang Bumiller):
* performance improvements when parsing/writing a node configuration
* adjusted multi-line regex to remove superfluous "\s*"
* better formatting of rust code
proxmox-backup:
Stefan Sterz (2):
fix #3067: docs: add markdown primer from pve to pbs
fix #3067: ui: add a separate notes view for longer markdown notes
docs/index.rst | 1 +
docs/markdown-primer.rst | 178 +++++++++++++++++++++++++++++++++++++++
www/Makefile | 1 +
www/NavigationTree.js | 6 ++
www/NodeNotes.js | 23 +++++
5 files changed, 209 insertions(+)
create mode 100644 docs/markdown-primer.rst
create mode 100644 www/NodeNotes.js
widget-toolkit:
Stefan Sterz (1):
toolkit: add markdown based NotesView and NotesEdit
src/Makefile | 2 +
src/panel/NotesView.js | 149 ++++++++++++++++++++++++++++++++++++++++
src/window/NotesEdit.js | 38 ++++++++++
3 files changed, 189 insertions(+)
create mode 100644 src/panel/NotesView.js
create mode 100644 src/window/NotesEdit.js
pve-manager:
Stefan Sterz (1):
ui: move NotesView panel and NotesEdit window to widget kit
www/manager6/Makefile | 2 -
www/manager6/dc/Config.js | 2 +-
www/manager6/node/Config.js | 2 +-
www/manager6/panel/GuestSummary.js | 2 +-
www/manager6/panel/NotesView.js | 129 -----------------------------
www/manager6/window/NotesEdit.js | 38 ---------
6 files changed, 3 insertions(+), 172 deletions(-)
delete mode 100644 www/manager6/panel/NotesView.js
delete mode 100644 www/manager6/window/NotesEdit.js
--
2.30.2
WARNING: multiple messages have this Message-ID
From: Stefan Sterz <s.sterz@proxmox.com>
To: pbs-devel@lists.proxmox.com, pve-devel@lists.proxmox.com
Subject: [pbs-devel] [PATCH SERIES v4 0/4] add notes to functionality to pbs webui
Date: Fri, 1 Apr 2022 12:19:04 +0200 [thread overview]
Message-ID: <20220401101908.1154385-1-s.sterz@proxmox.com> (raw)
adds support for markdown-based notes to pbs. It also refactors the
pve `NotesView` panel and `NotesEdit` window so that we can move it
to the widget toolkit and maintain a single version of the two.
hence, the last commits for proxmox-backup and pve-manager need to be
applied and bumped with or after the toolkit.
changes v4 (thanks @ Thomas Lamprecht):
* several improvements to NotesView
* makes onlineHelp of the NotesEdit window used by NotesView
configurable
changes v3 (thanks @ Dominik Csapak):
* refactored NotesView and NotesEdit
* removed notes from dashboard
* several javascrpt improvements
changes v2 (thanks @ Wolfgang Bumiller):
* performance improvements when parsing/writing a node configuration
* adjusted multi-line regex to remove superfluous "\s*"
* better formatting of rust code
proxmox-backup:
Stefan Sterz (2):
fix #3067: docs: add markdown primer from pve to pbs
fix #3067: ui: add a separate notes view for longer markdown notes
docs/index.rst | 1 +
docs/markdown-primer.rst | 178 +++++++++++++++++++++++++++++++++++++++
www/Makefile | 1 +
www/NavigationTree.js | 6 ++
www/NodeNotes.js | 23 +++++
5 files changed, 209 insertions(+)
create mode 100644 docs/markdown-primer.rst
create mode 100644 www/NodeNotes.js
widget-toolkit:
Stefan Sterz (1):
toolkit: add markdown based NotesView and NotesEdit
src/Makefile | 2 +
src/panel/NotesView.js | 149 ++++++++++++++++++++++++++++++++++++++++
src/window/NotesEdit.js | 38 ++++++++++
3 files changed, 189 insertions(+)
create mode 100644 src/panel/NotesView.js
create mode 100644 src/window/NotesEdit.js
pve-manager:
Stefan Sterz (1):
ui: move NotesView panel and NotesEdit window to widget kit
www/manager6/Makefile | 2 -
www/manager6/dc/Config.js | 2 +-
www/manager6/node/Config.js | 2 +-
www/manager6/panel/GuestSummary.js | 2 +-
www/manager6/panel/NotesView.js | 129 -----------------------------
www/manager6/window/NotesEdit.js | 38 ---------
6 files changed, 3 insertions(+), 172 deletions(-)
delete mode 100644 www/manager6/panel/NotesView.js
delete mode 100644 www/manager6/window/NotesEdit.js
--
2.30.2
next reply other threads:[~2022-04-01 10:19 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-01 10:19 Stefan Sterz [this message]
2022-04-01 10:19 ` [pbs-devel] " Stefan Sterz
2022-04-01 10:19 ` [pve-devel] [PATCH proxmox-backup v4 1/4] fix #3067: docs: add markdown primer from pve to pbs Stefan Sterz
2022-04-01 10:19 ` [pbs-devel] " Stefan Sterz
2022-04-01 10:19 ` [pve-devel] [PATCH widget-toolkit v4 2/4] toolkit: add markdown based NotesView and NotesEdit Stefan Sterz
2022-04-01 10:19 ` [pbs-devel] " Stefan Sterz
2022-04-06 8:26 ` [pve-devel] " Stefan Sterz
2022-04-06 8:26 ` [pbs-devel] " Stefan Sterz
2022-04-06 11:39 ` [pve-devel] " Thomas Lamprecht
2022-04-06 11:39 ` Thomas Lamprecht
2022-04-01 10:19 ` [pve-devel] [PATCH proxmox-backup v4 3/4] fix #3067: ui: add a separate notes view for longer markdown notes Stefan Sterz
2022-04-01 10:19 ` [pbs-devel] " Stefan Sterz
2022-04-01 10:19 ` [pve-devel] [PATCH manager v4 4/4] ui: move NotesView panel and NotesEdit window to widget kit Stefan Sterz
2022-04-01 10:19 ` [pbs-devel] " Stefan Sterz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220401101908.1154385-1-s.sterz@proxmox.com \
--to=s.sterz@proxmox.com \
--cc=pbs-devel@lists.proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.