Skip to content

Commit 7edf948

Browse files
committed
Something is off
1 parent 18e679b commit 7edf948

2 files changed

Lines changed: 16 additions & 18 deletions

File tree

content/pages/svn-dist.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,22 @@ The legacy domains are currently connected to `svn:dist/release` as follows:
3737

3838
```mermaid
3939
flowchart TD
40-
subgraph Legacy
40+
subgraph Legacy
4141
A[svn:dist/release]
4242
B[rsync.apache.org]
4343
A -->|svn| B
4444
C{"downloads.apache.org"}
4545
D[archive.apache.org]
4646
B -->|rsync| C
4747
B -->|rsync| D
48-
end
48+
end
4949
```
5050

5151
1. **ATR writes to SVN** - ATR Releases write to `svn:dist/release` as an interim step.
5252

5353
```mermaid
5454
flowchart TD
55-
subgraph Transition 1
55+
subgraph Transition 1
5656
ATR[releases.apache.org]
5757
A[svn:dist/release]
5858
ATR -->|svn| A
@@ -62,7 +62,7 @@ flowchart TD
6262
D[archive.apache.org]
6363
B -->|rsync| C
6464
B -->|rsync| D
65-
end
65+
end
6666
```
6767

6868
2. **ATR and Legacy are Integrated** - Insert ATR into the rsync chain.
@@ -72,7 +72,7 @@ flowchart TD
7272

7373
```mermaid
7474
flowchart TD
75-
subgraph Transition 2A
75+
subgraph Transition 2A
7676
A[svn:dist/release]
7777
B[rsync.apache.org]
7878
A -->|svn| B
@@ -82,7 +82,7 @@ flowchart TD
8282
D[archive.apache.org]
8383
ATR -->|rsync| C
8484
ATR -->|rsync| D
85-
end
85+
end
8686
```
8787

8888
Or
@@ -91,41 +91,41 @@ flowchart TD
9191

9292
```mermaid
9393
flowchart TD
94-
subgraph Transition 2B
94+
subgraph Transition 2B
9595
A[svn:dist/release]
9696
subgraph ATR on Rsync
97-
ATR[releases.apache.org]
98-
B[rsync.apache.org]
99-
ATR <--> B
97+
ATR[releases.apache.org]
98+
B[rsync.apache.org]
99+
ATR <--> B
100100
end
101101
A -->|svn| ATR
102102
C{"downloads.apache.org"}
103103
D[archive.apache.org]
104104
B -->|rsync| C
105105
B -->|rsync| D
106-
end
106+
end
107107
```
108108

109109
3. **Legacy is Retired** - `svn:dist/release` is retired.
110110

111111
```mermaid
112112
flowchart TD
113-
subgraph Transition 3
113+
subgraph Transition 3
114114
ATR[releases.apache.org]
115115
C{"downloads.apache.org"}
116116
D[archive.apache.org]
117117
ATR -->|rsync| C
118118
ATR -->|rsync| D
119-
end
119+
end
120120
```
121121

122122
4. **Further Integration** - downloads.apache.org is hosted on ATR. Downloads.apache.org is multiple servers. ATR would need to work on multiple servers
123123

124124
```mermaid
125125
flowchart TD
126-
subgraph Transition 4
126+
subgraph Transition 4
127127
ATR{"releases.apache.org"}
128128
D[archive.apache.org]
129129
ATR -->|rsync| D
130-
end
130+
end
131131
```

content/theme/templates/page.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@
2626
document.querySelectorAll("pre > code.language-mermaid").forEach(code => {
2727
const rawHtml = code.innerHTML;
2828
const decoded = decodeHtmlEntities(rawHtml);
29-
console.log("=== Mermaid block raw HTML ===");
30-
console.log(rawHtml);
3129
console.log("=== Mermaid block decoded text ===");
32-
console.log(decoded);
30+
console.log(Array.from(decoded).map(c => c.charCodeAt(0)));
3331
const div = document.createElement("div");
3432
div.className = "mermaid";
3533
// Replace <pre><code>…</code></pre> with <div class="mermaid">…</div>

0 commit comments

Comments
 (0)