docs: add onlineHelp to some panels
name sections according to the title or content and add the respective onlineHelp to the following panels: - datastore - user management - ACL - backup remote Signed-off-by: Oguz Bektas <o.bektas@proxmox.com> Reviewed-By: Dominik Csapak <d.csapak@proxmox.com> Tested-By: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
a329324139
commit
298c6aaef6
|
@ -127,7 +127,7 @@ Backup Server Management
|
||||||
The command line tool to configure and manage the backup server is called
|
The command line tool to configure and manage the backup server is called
|
||||||
:command:`proxmox-backup-manager`.
|
:command:`proxmox-backup-manager`.
|
||||||
|
|
||||||
|
.. _datastore_intro:
|
||||||
|
|
||||||
:term:`DataStore`
|
:term:`DataStore`
|
||||||
~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~
|
||||||
|
@ -364,7 +364,7 @@ directories will store the chunked data after a backup operation has been execut
|
||||||
276489 drwxr-xr-x 3 backup backup 4.0K Jul 8 12:35 ..
|
276489 drwxr-xr-x 3 backup backup 4.0K Jul 8 12:35 ..
|
||||||
276490 drwxr-x--- 1 backup backup 1.1M Jul 8 12:35 .
|
276490 drwxr-x--- 1 backup backup 1.1M Jul 8 12:35 .
|
||||||
|
|
||||||
|
.. _user_mgmt:
|
||||||
|
|
||||||
User Management
|
User Management
|
||||||
~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~
|
||||||
|
@ -448,6 +448,8 @@ Or completely remove the user with:
|
||||||
# proxmox-backup-manager user remove john@pbs
|
# proxmox-backup-manager user remove john@pbs
|
||||||
|
|
||||||
|
|
||||||
|
.. _user_acl:
|
||||||
|
|
||||||
Access Control
|
Access Control
|
||||||
~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
@ -631,6 +633,8 @@ You can also configure DNS settings, from the **DNS** section
|
||||||
of **Configuration** or by using the ``dns`` subcommand of
|
of **Configuration** or by using the ``dns`` subcommand of
|
||||||
``proxmox-backup-manager``.
|
``proxmox-backup-manager``.
|
||||||
|
|
||||||
|
.. _backup_remote:
|
||||||
|
|
||||||
:term:`Remote`
|
:term:`Remote`
|
||||||
~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,22 @@ const proxmoxOnlineHelpInfo = {
|
||||||
"link": "/docs/index.html",
|
"link": "/docs/index.html",
|
||||||
"title": "Proxmox Backup Server Documentation Index"
|
"title": "Proxmox Backup Server Documentation Index"
|
||||||
},
|
},
|
||||||
|
"datastore-intro": {
|
||||||
|
"link": "/docs/administration-guide.html#datastore-intro",
|
||||||
|
"title": ":term:`DataStore`"
|
||||||
|
},
|
||||||
|
"user-mgmt": {
|
||||||
|
"link": "/docs/administration-guide.html#user-mgmt",
|
||||||
|
"title": "User Management"
|
||||||
|
},
|
||||||
|
"user-acl": {
|
||||||
|
"link": "/docs/administration-guide.html#user-acl",
|
||||||
|
"title": "Access Control"
|
||||||
|
},
|
||||||
|
"backup-remote": {
|
||||||
|
"link": "/docs/administration-guide.html#backup-remote",
|
||||||
|
"title": ":term:`Remote`"
|
||||||
|
},
|
||||||
"syncjobs": {
|
"syncjobs": {
|
||||||
"link": "/docs/administration-guide.html#syncjobs",
|
"link": "/docs/administration-guide.html#syncjobs",
|
||||||
"title": "Sync Jobs"
|
"title": "Sync Jobs"
|
||||||
|
|
|
@ -3,6 +3,8 @@ Ext.define('PBS.window.ACLEdit', {
|
||||||
alias: 'widget.pbsACLAdd',
|
alias: 'widget.pbsACLAdd',
|
||||||
mixins: ['Proxmox.Mixin.CBind'],
|
mixins: ['Proxmox.Mixin.CBind'],
|
||||||
|
|
||||||
|
onlineHelp: 'user_acl',
|
||||||
|
|
||||||
url: '/access/acl',
|
url: '/access/acl',
|
||||||
method: 'PUT',
|
method: 'PUT',
|
||||||
isAdd: true,
|
isAdd: true,
|
||||||
|
|
|
@ -3,6 +3,9 @@ Ext.define('PBS.DataStoreEdit', {
|
||||||
alias: 'widget.pbsDataStoreEdit',
|
alias: 'widget.pbsDataStoreEdit',
|
||||||
mixins: ['Proxmox.Mixin.CBind'],
|
mixins: ['Proxmox.Mixin.CBind'],
|
||||||
|
|
||||||
|
|
||||||
|
onlineHelp: 'datastore_intro',
|
||||||
|
|
||||||
subject: gettext('Datastore'),
|
subject: gettext('Datastore'),
|
||||||
isAdd: true,
|
isAdd: true,
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,8 @@ Ext.define('PBS.window.RemoteEdit', {
|
||||||
alias: 'widget.pbsRemoteEdit',
|
alias: 'widget.pbsRemoteEdit',
|
||||||
mixins: ['Proxmox.Mixin.CBind'],
|
mixins: ['Proxmox.Mixin.CBind'],
|
||||||
|
|
||||||
|
onlineHelp: 'backup_remote',
|
||||||
|
|
||||||
userid: undefined,
|
userid: undefined,
|
||||||
|
|
||||||
isAdd: true,
|
isAdd: true,
|
||||||
|
|
|
@ -3,6 +3,8 @@ Ext.define('PBS.window.UserEdit', {
|
||||||
alias: 'widget.pbsUserEdit',
|
alias: 'widget.pbsUserEdit',
|
||||||
mixins: ['Proxmox.Mixin.CBind'],
|
mixins: ['Proxmox.Mixin.CBind'],
|
||||||
|
|
||||||
|
onlineHelp: 'user_mgmt',
|
||||||
|
|
||||||
userid: undefined,
|
userid: undefined,
|
||||||
|
|
||||||
isAdd: true,
|
isAdd: true,
|
||||||
|
|
Loading…
Reference in New Issue