Files
thpeetz-notes/Areas/cimt AG/Projekte/Messe München/Talend Pipeline.md
T
2026-02-27 16:55:05 +01:00

2.8 KiB

status, tags, subtitle
status tags subtitle
Archiv
process/project
Talend Pipeline

[!abstract]- Project Goal:: Progress:: $= dv.view('project-progress', {file: 'Talend Pipeline'}) Target:: $= dv.view('project-target', {file: 'Talend Pipeline'}) Bar:: $= dv.view('project-progress-bar', {file: 'Talend Pipeline'}) Tasks:: $= const aufgaben = dv.page('Talend Pipeline').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 Infos/Unternehmen/Messe München GmbH Ansprechpartner: Peter Tubak

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

Sprints

Sprint planning: https://dev.nmm.de/co/display/TAL/Sprint+planning

LIST
FROM "Areas/cimt AG/Projekte/Messe München/Sprints" 
SORT file.name DESC
LIMIT 20

On-Site Week

Availability 2025: https://dev.nmm.de/co/display/TAL/Planning+On-Site+Week+25

Thoughts

Resources

USER: peetzth AD USER: Thomas.Peetz-Extern@messe-muenchen.de PASSWORTLINK: https://1ty.me/Pp8mD3R55

Outlook Web Access

Bitbucket Repository

Conflucence Seiten

Aufgaben

  • Zugang AppServer überprüfen #process/task [start:: 2024-11-21] [scheduled:: 2024-11-21] [due:: 2024-11-21] [completion:: 2024-11-21]

Offene Aufgaben

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

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
	]
}));