mirror of
https://github.com/MatMoul/dokytree.git
synced 2025-04-05 05:31:45 +00:00
Compare commits
No commits in common. "dev" and "v0.0.6" have entirely different histories.
@ -5,7 +5,7 @@ _githubrepo=dokytree
|
|||||||
_gitcommit=56fa5970af2c659e730a850f923b6983a842f85c
|
_gitcommit=56fa5970af2c659e730a850f923b6983a842f85c
|
||||||
|
|
||||||
pkgname=dokytree-git
|
pkgname=dokytree-git
|
||||||
pkgver=0.0.7
|
pkgver=0.0.6
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc='A versatil documentation system based on yaml files in directory tree with pugjs templates '
|
pkgdesc='A versatil documentation system based on yaml files in directory tree with pugjs templates '
|
||||||
arch=('any')
|
arch=('any')
|
||||||
|
@ -62,87 +62,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"backups": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"type": {
|
|
||||||
"anyOf": [
|
|
||||||
{ "type": "string" },
|
|
||||||
{ "enum": [
|
|
||||||
"''",
|
|
||||||
"'none'",
|
|
||||||
"'hypervisor'",
|
|
||||||
"'windowsbackup'"
|
|
||||||
]}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"method": {
|
|
||||||
"anyOf": [
|
|
||||||
{ "type": "string" },
|
|
||||||
{ "enum": [
|
|
||||||
"''",
|
|
||||||
"'auto'",
|
|
||||||
"'manual'"
|
|
||||||
]}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"frequency": {
|
|
||||||
"anyOf": [
|
|
||||||
{ "type": "string" },
|
|
||||||
{ "enum": [
|
|
||||||
"''",
|
|
||||||
"'daily'",
|
|
||||||
"'weekly'",
|
|
||||||
"'monthly'",
|
|
||||||
"'quarterly'",
|
|
||||||
"'halfyearly'",
|
|
||||||
"'yearly'",
|
|
||||||
"'monday'",
|
|
||||||
"'tuesday'",
|
|
||||||
"'wednesday'",
|
|
||||||
"'thursday'",
|
|
||||||
"'friday'",
|
|
||||||
"'saturday'",
|
|
||||||
"'sonday'"
|
|
||||||
]}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"target": {
|
|
||||||
"anyOf": [
|
|
||||||
{"type": "string"},
|
|
||||||
{"enum": [
|
|
||||||
"''",
|
|
||||||
"'usb'",
|
|
||||||
"'pbs'",
|
|
||||||
"'share'",
|
|
||||||
"'iscsi'",
|
|
||||||
"'cloud'"
|
|
||||||
]}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"time": {
|
|
||||||
"anyOf": [
|
|
||||||
{"type": "string"},
|
|
||||||
{"enum": [
|
|
||||||
"''",
|
|
||||||
"'auto'"
|
|
||||||
]}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"duration": {
|
|
||||||
"anyOf": [
|
|
||||||
{ "type": "string" },
|
|
||||||
{ "type": "integer" },
|
|
||||||
{"enum": [
|
|
||||||
"''"
|
|
||||||
]}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"headfiles": {
|
"headfiles": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
|
@ -4,5 +4,4 @@ title
|
|||||||
book
|
book
|
||||||
toc
|
toc
|
||||||
templates
|
templates
|
||||||
maintenance_backups
|
|
||||||
files
|
files
|
||||||
|
@ -2,11 +2,10 @@ div#HEADFILES
|
|||||||
-
|
-
|
||||||
const backups = []
|
const backups = []
|
||||||
const readNode = (curNode) => {
|
const readNode = (curNode) => {
|
||||||
if(curNode?.backups?.length > 0) {
|
if(curNode?.data?.backups?.length > 0) {
|
||||||
const nodeItem = {
|
const nodeItem = {
|
||||||
name: curNode.title,
|
name: curNode.data.name,
|
||||||
url: curNode.url,
|
backups: curNode.data.backups,
|
||||||
backups: curNode.backups,
|
|
||||||
}
|
}
|
||||||
backups.push(nodeItem)
|
backups.push(nodeItem)
|
||||||
}
|
}
|
||||||
@ -28,8 +27,8 @@ div#HEADFILES
|
|||||||
|
|
||||||
table
|
table
|
||||||
thead
|
thead
|
||||||
th Object
|
th Devices
|
||||||
th Type
|
th Types
|
||||||
th Content
|
th Content
|
||||||
th Frequency
|
th Frequency
|
||||||
th Time
|
th Time
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
div#HEADFILES
|
div#HEADFILES
|
||||||
|
|
||||||
each itm in node.items
|
each itm in node.items
|
||||||
div.bold=itm.data.name
|
table
|
||||||
a(href=itm.data.url, target="_blank")=itm.data.url
|
tr
|
||||||
|
td.bold=itm.data.name
|
||||||
|
tr
|
||||||
|
td=itm.data.url
|
||||||
|
|
||||||
div#FILES
|
div#FILES
|
||||||
div#FOOTFILES
|
div#FOOTFILES
|
||||||
|
@ -27,8 +27,8 @@ div#HEADFILES
|
|||||||
|
|
||||||
table
|
table
|
||||||
thead
|
thead
|
||||||
th Object
|
th Devices
|
||||||
th Type
|
th Types
|
||||||
th Method
|
th Method
|
||||||
th Frequency
|
th Frequency
|
||||||
th Time
|
th Time
|
||||||
|
@ -27,7 +27,6 @@ const load = (yamlFile) => {
|
|||||||
node: '@node',
|
node: '@node',
|
||||||
items: '@item',
|
items: '@item',
|
||||||
},
|
},
|
||||||
bakups: [],
|
|
||||||
parent: null,
|
parent: null,
|
||||||
nodes: [],
|
nodes: [],
|
||||||
items: [],
|
items: [],
|
||||||
@ -68,7 +67,6 @@ const load = (yamlFile) => {
|
|||||||
node: '@node',
|
node: '@node',
|
||||||
items: '@item',
|
items: '@item',
|
||||||
},
|
},
|
||||||
bakups: [],
|
|
||||||
parent: parentNode,
|
parent: parentNode,
|
||||||
nodes: [],
|
nodes: [],
|
||||||
items: [],
|
items: [],
|
||||||
@ -89,7 +87,6 @@ const load = (yamlFile) => {
|
|||||||
if(yamlNode.book == false) node.book = yamlNode.book
|
if(yamlNode.book == false) node.book = yamlNode.book
|
||||||
if(yamlNode?.templates?.node) node.templates.node = yamlNode.templates.node
|
if(yamlNode?.templates?.node) node.templates.node = yamlNode.templates.node
|
||||||
if(yamlNode?.templates?.items) node.templates.items = yamlNode.templates.items
|
if(yamlNode?.templates?.items) node.templates.items = yamlNode.templates.items
|
||||||
if(yamlNode.backups) node.backups = yamlNode.backups
|
|
||||||
if(yamlNode.headfiles) node.headfiles = yamlNode.headfiles
|
if(yamlNode.headfiles) node.headfiles = yamlNode.headfiles
|
||||||
if(yamlNode.files) node.files = yamlNode.files
|
if(yamlNode.files) node.files = yamlNode.files
|
||||||
if(yamlNode.footfiles) node.footfiles = yamlNode.footfiles
|
if(yamlNode.footfiles) node.footfiles = yamlNode.footfiles
|
||||||
|
Loading…
Reference in New Issue
Block a user