Compare commits

..

No commits in common. "dev" and "v0.0.5" have entirely different histories.
dev ... v0.0.5

8 changed files with 14 additions and 97 deletions

View File

@ -5,7 +5,7 @@ _githubrepo=dokytree
_gitcommit=56fa5970af2c659e730a850f923b6983a842f85c _gitcommit=56fa5970af2c659e730a850f923b6983a842f85c
pkgname=dokytree-git pkgname=dokytree-git
pkgver=0.0.7 pkgver=0.0.5
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')

View File

@ -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": {

View File

@ -4,5 +4,4 @@ title
book book
toc toc
templates templates
maintenance_backups
files files

View File

@ -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

View File

@ -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

View File

@ -5,7 +5,7 @@ div#HEADFILES
if(curNode?.todo?.length > 0) { if(curNode?.todo?.length > 0) {
curNode.todo.forEach((itm) => { curNode.todo.forEach((itm) => {
const nodeItem = { const nodeItem = {
name: curNode.title, name: curNode.name,
url: curNode.url, url: curNode.url,
todo: itm, todo: itm,
} }

View File

@ -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

View File

@ -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