File tree Expand file tree Collapse file tree 3 files changed +52
-6
lines changed Expand file tree Collapse file tree 3 files changed +52
-6
lines changed Original file line number Diff line number Diff line change
1
+ ./self/api/dotty.dokka/tasty/comments/wiki/-converter/index.html,on any page try minimizing window to see if relative styles are applied correctly
2
+ ./self/api/dotty.dokka/-base-key/index.html,is searchbar correct width
3
+ ./self/api/dotty.dokka/as-map.html,are logos in good propotions
4
+ ./self/api/dotty.dokka/model/api/as-signature.html,is sidebar not collapsing/overlaying
5
+ ./self/api/dotty.dokka/-documentable-element/index.html,are overrides pointing to correct function? is filtering working
6
+ ./self/api/dotty.dokka/model/api/-member/index.html,is source link pointing to correct element (object Member)?
7
+ ./self/api/dotty.dokka/-scala-content-node/index.html,you can see is graph properly rendered; can you navigate by nodes up and down the hierarchy
8
+ ./self/api/index/index.html,package overview
9
+ ./self/api/dotty.dokka/index.html,example package
10
+ ./self/api/dotty.dokka/-documentable-element/index.html,example classlike
11
+ ./self/api/dotty.dokka/get-from-extra.html,example package level method
12
+ ./self/api/dotty.dokka/put.html,example extension
13
+ ./self/api/dotty.dokka/-dot-diagram-builder/build.html,example method
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- function print-beginning {
4
- cat << 'EOF '
3
+ MYDIR=" $( dirname " $( readlink -f " $0 " ) " ) "
4
+
5
+
6
+ function html-beginning {
7
+ cat << EOF
5
8
<html>
6
9
<body>
7
- <p> Available projects: </p>
10
+ EOF
11
+ }
12
+
13
+ function html-ending {
14
+ cat << EOF
15
+ </body>
16
+ </html>
17
+ EOF
18
+ }
19
+
20
+ function print-beginning {
21
+ cat << EOF
22
+ <p> $1 </p>
8
23
<ul>
9
24
EOF
10
25
}
@@ -15,17 +30,23 @@ function print-list-element {
15
30
EOF
16
31
}
17
32
33
+ function print-list-element-text {
34
+ cat << EOF
35
+ <li> $1 </li>
36
+ EOF
37
+ }
38
+
18
39
function print-ending {
19
40
cat << 'EOF '
20
41
</ul>
21
- </body>
22
- </html>
23
42
EOF
24
43
}
25
44
26
45
cd " $1 " || exit
27
46
28
- print-beginning
47
+
48
+ html-beginning
49
+ print-beginning " Available project:"
29
50
for f in *
30
51
do
31
52
! [[ -d $f ]] && continue
40
61
print-list-element " $INDEX " " $f "
41
62
done
42
63
print-ending
64
+
65
+ print-beginning " Links for manual testing:"
66
+ while read line; do
67
+ print-list-element-text " $line "
68
+ done < " $MYDIR /tocheck.txt"
69
+
70
+ while read line; do
71
+ IFS=' ,' read INDEX f <<< " ${line}"
72
+ print-list-element " $INDEX " " $f "
73
+ done < " $MYDIR /linkstovisit.txt"
74
+ print-ending
75
+ html-ending
You can’t perform that action at this time.
0 commit comments