File tree Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change
1
+ ./self/api/dotty.dokka/-documentable-element/index.html,are overrides pointing to correct function? is filtering working
2
+ ./self/api/dotty.dokka/model/api/-member/index.html,is source link pointing to correct element (object Member)?
3
+ ./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"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ function print-beginning {
4
4
cat << 'EOF '
5
5
<html>
6
6
<body>
7
- <p> Available projects: </p>
7
+ <p> $1 </p>
8
8
<ul>
9
9
EOF
10
10
}
@@ -15,6 +15,12 @@ function print-list-element {
15
15
EOF
16
16
}
17
17
18
+ function print-list-element-text {
19
+ cat << EOF
20
+ <li> $1 </li>
21
+ EOF
22
+ }
23
+
18
24
function print-ending {
19
25
cat << 'EOF '
20
26
</ul>
25
31
26
32
cd " $1 " || exit
27
33
28
- print-beginning
34
+ print-beginning " Available project: "
29
35
for f in *
30
36
do
31
37
! [[ -d $f ]] && continue
40
46
print-list-element " $INDEX " " $f "
41
47
done
42
48
print-ending
49
+
50
+ print-beginning " Links for manual testing:"
51
+ while read line; do
52
+ print-list-element-text " $line "
53
+ done < " tocheck.txt"
54
+
55
+ while read line; do
56
+ IFS=' ,' read INDEX f <<< " ${line}"
57
+ print-list-element " $INDEX " " $f "
58
+ done < " linkstovisit.txt"
59
+ print-ending
60
+
61
+
62
+
63
+
Original file line number Diff line number Diff line change
1
+ on any page try minimizing window to see if relative styles are applied correctly
2
+ is searchbar correct width
3
+ are logos in good propotions
4
+ is sidebar not collapsing/overlaying
You can’t perform that action at this time.
0 commit comments