• R/O
  • SSH

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

See https://natrixnatrix.readthedocs.io


Commit MetaInfo

Revision842f4670fc4d6e849a65ebe8c2668b8924274182 (tree)
Zeit2020-06-27 22:10:24
AutorAlbert Mietus < albert AT mietus DOT nl >
CommiterAlbert Mietus < albert AT mietus DOT nl >

Log Message

asis

Ändern Zusammenfassung

Diff

diff -r 626baef8620e -r 842f4670fc4d .hgignore
--- a/.hgignore Sun Apr 12 14:56:07 2020 +0200
+++ b/.hgignore Sat Jun 27 15:10:24 2020 +0200
@@ -8,3 +8,4 @@
88
99 syntax: glob
1010 ./docs/doc/Burolade/*.png
11+RTD-settings.mk
\ No newline at end of file
diff -r 626baef8620e -r 842f4670fc4d Makefile
--- a/Makefile Sun Apr 12 14:56:07 2020 +0200
+++ b/Makefile Sat Jun 27 15:10:24 2020 +0200
@@ -9,6 +9,10 @@
99
1010 .PHONY: docs clean cleaner veryclean
1111
12-RTfD-build RTfD RTD, RTfF-webhook:
13- curl -X POST -d "branches=default" -d "token=a27b559f67c7683fcb88b1d8bd95094f8409bdab" https://readthedocs.org/api/v2/webhook/natrixnatrix/117277/
12+
13+include RTD-settings.mk
14+RTfD-build RTfD RTD RTFD RTfD-webhook:
15+ @BRANCH=$${BRANCH:-`hg branch`} ;\
16+ curl -X POST -d "branches=$${BRANCH}" -d "token=${TOKEN}" https://readthedocs.org/api/v2/webhook/natrixnatrix/117277/
1417 @echo
18+
diff -r 626baef8620e -r 842f4670fc4d docs/doc/Burolade/02.classes.puml
--- a/docs/doc/Burolade/02.classes.puml Sun Apr 12 14:56:07 2020 +0200
+++ b/docs/doc/Burolade/02.classes.puml Sat Jun 27 15:10:24 2020 +0200
@@ -19,8 +19,8 @@
1919
2020 '''''''''''
2121 class Fitter <<(F, #90FFFF>> {
22- #kind: FitterKind
23- ~name: stringID
22+ # kind: FitterKind
23+ ~ name: stringID
2424 }
2525 note top of Fitter #9FF
2626 A fitter is like a //port//,
@@ -29,7 +29,7 @@
2929 end note
3030
3131 enum FitterKind {
32- Pub, Sub,
32+ Pub, Sub, __VIA__
3333 ...
3434 }
3535 Fitter *-- FitterKind
@@ -37,8 +37,8 @@
3737
3838 '''''''''''
3939 interface Link <<(L, #90FFFF>> {
40- #kind: LinkKind
41- ~name: stringID
40+ # kind: LinkKind
41+ ~ name: stringID
4242 }
4343 note top of Link #9FF
4444 A Link connects two (or more)
@@ -54,13 +54,19 @@
5454 '''''''''''''''
5555 class SwitchBoard <<(A, #90FFFF>> {
5656 cos: CoClass[]
57- links: Link[]
58- runtime()
57+ links: Link[] // intern
58+ + VIAs Fitter[] // ex
59+ - runtime()
5960 }
6061 note top of SwitchBoard #9FF
6162 The SwitchBoard is the **runtime**
6263 for a set of //CoClass//es
6364 end note
64-note bottom of SwitchBoard: It is also a kind of CoClass
65+note bottom of SwitchBoard
66+ It is also a kind of CoClass
67+ - \\links\\ are the intern: connecting the CoClasses
68+ - \\VIAs\\ connect the internal links with the external ones
69+end note
70+
6571
6672 @enduml