Files
thpeetz-notes/Archiv/Ingenieurbüro Thomas Peetz/Projekte/Rohde Schwarz Cybersecurity/Entwicklung SITScope.md
T
2026-02-13 15:54:03 +01:00

2.0 KiB

status, tags, title
status tags title
Archiv
process/project
Weiterentwicklung und Produktpflege des Managementsystems SITScope sowie zugehöriger Komponenten

[!abstract]- Project Goal:: Progress:: $= dv.view('project-progress', {file: 'Entwicklung SITScope'}) Target:: $= dv.view('project-target', {file: 'Entwicklung SITScope'}) Bar:: $= dv.view('project-progress-bar', {file: 'Entwicklung SITScope'}) Tasks:: $= const aufgaben = dv.page('Entwicklung SITScope').file.inlinks.where(t => { const mt = dv.page(t.path); return mt.tags?.includes('process/task') && mt.status === 'In Arbeit'}); if (aufgaben.length > 0) { dv.header(4, aufgaben.length > 1 ? "Aufgaben" : "Aufgabe"); dv.list(aufgaben) }

Project Info

Kunde Rohde & Schwarz Cybersecurity GmbH

Kollegen

LIST
FROM [[]] AND !outgoing([[]]) AND #process/contact 

Termine

LIST
FROM [[]] AND !outgoing([[]]) AND "Journal"
SORT file.mtime DESC
LIMIT 20

Meetings

LIST
FROM [[]] AND !outgoing([[]]) AND #process/meeting 
SORT file.mtime DESC
LIMIT 20

Thoughts

Resources

Review questions

Aufgaben

Offene Aufgaben

const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task')).where(p => dv.page(p.path).file.tasks.length != dv.page(p.path).file.tasks.where(t => t.fullyCompleted === true).length);

dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
	const page = dv.page(p.path);
	const tasks = page.file.tasks;
   	return [
   		page.file.link,
   		page.status,
   		tasks.where(t => t.fullyCompleted === true).length,
   		tasks.length
   	]
}));

Aufgaben

const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task'));

dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
	const page = dv.page(p.path);
	const tasks = page.file.tasks;
	return [
		page.file.link,
		page.status,
		tasks.where(t => t.fullyCompleted === true).length,
		tasks.length
	]
}));