-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (94 loc) · 3.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/skeleton.css">
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<script src="js/d3.v3.min.js"></script>
<script src="js/saveSvgAsPng.js"></script>
<!--script src="js/string-compress.js" defer></script-->
<script src="js/script.js" defer></script>
<link rel="shortcut icon" href="res/favicon.ico" type="image/x-icon">
<link rel="icon" href="res/favicon.ico" type="image/x-icon">
<title>PSP Generator</title>
</head>
<body>
<header>
<div id="top">
<div id="title">
<img src="res/icon-light.png" width="30px">
<h4>PSP Generator</h4>
</div>
<hr>
<button id="eval" class="button-primary">→ Generate</button>
<!--select>
<option value="1">Tab Width: 1</option>
<option value="2" selected>Tab Width: 2</option>
<option value="3">Tab Width: 3</option>
<option value="4">Tab Width: 4</option>
<option value="5">Tab Width: 5</option>
<option value="6">Tab Width: 6</option>
<option value="7">Tab Width: 7</option>
<option value="8">Tab Width: 8</option>
</select-->
<button id="download">↓ Export PNG</button>
<button id="link-gen">⇱ Create Link</button>
<button id="toggle">⮎ horizontal/vertical</button>
<button id="expand">🞱 expand/collapse all</button>
<hr>
<div class="check"><label for="numbered"><input type="checkbox" id="numbered" name="numbered" value="" checked>Auto numbered</label></div>
<div class="check"><label for="rect"><input type="checkbox" id="rect" name="numbered" value="" checked>Rectangles</label></div>
<div class="check"><label for="text-centered"><input type="checkbox" id="text-centered" name="text-centered" value="" checked>Text centered</label></div>
<hr>
<label for="node-dist-h">🡘 Horizontal distance: <div></div></label>
<input id="node-dist-h" type="range" min="20" max="500" value="200">
<label for="node-dist-v">🡙 Vertical distance: <div></div></label>
<input id="node-dist-v" type="range" min="20" max="500" value="150">
<hr>
<label for="node-width">🡘 Box width: <div></div></label>
<input id="node-width" type="range" min="50" max="400" value="170">
<label for="node-width">🡙 Box height: <div></div></label>
<input id="node-height" type="range" min="20" max="200" value="30">
</div>
<div id="bottom">
<a href="https://github.com/Tryops/psp-generator">Project on GitHub</a>
</div>
</header>
<textarea id="input" contenteditable>
// Hier mit Tabs den PSP aufbauen (nicht Spaces!):
// Zeilen mit "//" werden ignoriert.
// Meilensteine mit "<>" am Anfang.
// Leere Zeilen sind erlaubt.
// Der Graph ist interaktiv:
// z.B.: blaue Boxen können ausgeklappt werden.
// Zum Schluss raus zoomen und als PNG exportieren.
Laufshirt.at
Projektstartphase Planung
Vertrag mit PAG unterzeichnen
Kick-Off-Meeting halten
Umfeldanalyse + Risiko/Marketing durchführen
OSP erstellen
PSP erstellen
<> Planung abgenommen
Realisierung
Technische Planung
Umsetzung
Testen
Abschluss
Doku fertigstellen
Abnahme durchführen
Projekt abgenommen
P-Abschlussbericht
Lessons learned durchführen
Feier / Team auflösen
<> Projekt abgeschlossen
</textarea>
<div id="tree"></div>
<div id="modal" class="modal">
<div class="modal-content">
<span class="close-button">×</span>
<div id="modal-content-paste"></div>
</div>
</div>
</body>
</html>