From: Stefan Sterz <s.sterz@proxmox.com>
To: pbs-devel@lists.proxmox.com, pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH SERIES v3 0/6] fix #3607: add notes to functionality in webui
Date: Fri, 4 Mar 2022 12:31:56 +0100 [thread overview]
Message-ID: <20220304113202.4137916-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 commit for proxmox-backup and pve-manager need to be
applied and bumped with or after the toolkit.
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 (4):
fix #3067: api: add support for multi-line comments in node.cfg
fix #3607: docs: add markdown primer from pve to pbs
fix #3607: ui: add a separate notes view for longer markdown notes
fix #3607: ui: refactor notes by moving the panel/window to widget kit
docs/index.rst | 1 +
docs/markdown-primer.rst | 178 +++++++++++++++++++++++++++++++++++++++
pbs-api-types/src/lib.rs | 9 ++
src/api2/node/config.rs | 4 +
src/config/node.rs | 14 ++-
src/tools/config.rs | 56 +++++++++++-
www/Makefile | 1 +
www/NavigationTree.js | 6 ++
www/NodeNotes.js | 22 +++++
9 files changed, 288 insertions(+), 3 deletions(-)
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 | 155 ++++++++++++++++++++++++++++++++++++++++
src/window/NotesEdit.js | 38 ++++++++++
3 files changed, 195 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 v3 0/6] fix #3607: add notes to functionality in webui
Date: Fri, 4 Mar 2022 12:31:56 +0100 [thread overview]
Message-ID: <20220304113202.4137916-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 commit for proxmox-backup and pve-manager need to be
applied and bumped with or after the toolkit.
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 (4):
fix #3067: api: add support for multi-line comments in node.cfg
fix #3607: docs: add markdown primer from pve to pbs
fix #3607: ui: add a separate notes view for longer markdown notes
fix #3607: ui: refactor notes by moving the panel/window to widget kit
docs/index.rst | 1 +
docs/markdown-primer.rst | 178 +++++++++++++++++++++++++++++++++++++++
pbs-api-types/src/lib.rs | 9 ++
src/api2/node/config.rs | 4 +
src/config/node.rs | 14 ++-
src/tools/config.rs | 56 +++++++++++-
www/Makefile | 1 +
www/NavigationTree.js | 6 ++
www/NodeNotes.js | 22 +++++
9 files changed, 288 insertions(+), 3 deletions(-)
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 | 155 ++++++++++++++++++++++++++++++++++++++++
src/window/NotesEdit.js | 38 ++++++++++
3 files changed, 195 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-03-04 11:32 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-04 11:31 Stefan Sterz [this message]
2022-03-04 11:31 ` [pbs-devel] " Stefan Sterz
2022-03-04 11:31 ` [pve-devel] [PATCH proxmox-backup v3 1/6] fix #3067: api: add support for multi-line comments in node.cfg Stefan Sterz
2022-03-04 11:31 ` [pbs-devel] " Stefan Sterz
2022-03-23 8:15 ` [pve-devel] " Wolfgang Bumiller
2022-03-23 8:15 ` Wolfgang Bumiller
2022-03-23 9:53 ` [pve-devel] applied: " Thomas Lamprecht
2022-03-23 9:53 ` [pbs-devel] applied: " Thomas Lamprecht
2022-03-04 11:31 ` [pve-devel] [PATCH proxmox-backup v3 2/6] fix #3607: docs: add markdown primer from pve to pbs Stefan Sterz
2022-03-04 11:31 ` [pbs-devel] " Stefan Sterz
2022-03-04 11:31 ` [pve-devel] [PATCH proxmox-backup v3 3/6] fix #3607: ui: add a separate notes view for longer markdown notes Stefan Sterz
2022-03-04 11:31 ` [pbs-devel] " Stefan Sterz
2022-03-23 11:08 ` [pve-devel] " Thomas Lamprecht
2022-03-23 11:08 ` [pbs-devel] " Thomas Lamprecht
2022-03-04 11:32 ` [pve-devel] [PATCH widget-toolkit v3 4/6] toolkit: add markdown based NotesView and NotesEdit Stefan Sterz
2022-03-04 11:32 ` [pbs-devel] " Stefan Sterz
2022-03-23 11:04 ` [pve-devel] " Thomas Lamprecht
2022-03-23 11:04 ` [pbs-devel] " Thomas Lamprecht
2022-03-04 11:32 ` [pve-devel] [PATCH proxmox-backup v3 5/6] fix #3607: ui: refactor notes by moving the panel/window to widget kit Stefan Sterz
2022-03-04 11:32 ` [pbs-devel] " Stefan Sterz
2022-03-23 11:09 ` [pve-devel] " Thomas Lamprecht
2022-03-23 11:09 ` [pbs-devel] " Thomas Lamprecht
2022-03-04 11:32 ` [pve-devel] [PATCH manager v3 6/6] ui: move NotesView panel and NotesEdit window " Stefan Sterz
2022-03-04 11:32 ` [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=20220304113202.4137916-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.