Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
Dernière révisionLes deux révisions suivantes
wiki:syntax [04/06/2020 13:09] – modification externe 127.0.0.1wiki:syntax [16/06/2020 19:15] bonnet
Ligne 67: Ligne 67:
   * DokuWiki does not use [[wp>CamelCase]] to automatically create links by default, but this behavior can be enabled in the [[doku>config]] file. Hint: If DokuWiki is a link, then it's enabled.   * DokuWiki does not use [[wp>CamelCase]] to automatically create links by default, but this behavior can be enabled in the [[doku>config]] file. Hint: If DokuWiki is a link, then it's enabled.
   * When a section's heading is changed, its bookmark changes, too. So don't rely on section linking too much.   * When a section's heading is changed, its bookmark changes, too. So don't rely on section linking too much.
 +
  
 ==== Interwiki ==== ==== Interwiki ====
Ligne 268: Ligne 269:
  
 There are three exceptions which do not come from that pattern file: multiplication entity (640x480), 'single' and "double quotes". They can be turned off through a [[doku>config:typography|config option]]. There are three exceptions which do not come from that pattern file: multiplication entity (640x480), 'single' and "double quotes". They can be turned off through a [[doku>config:typography|config option]].
 +
 +===== Diagrams =====
 +==== Network Diagram ====
 +<code>
 +<uml>
 +@startuml
 +nwdiag {
 +  network Sample_front {
 +    address = "192.168.10.0/24";
 +
 +    // define group
 +    group web {
 +      web01 [address = ".1"];
 +      web02 [address = ".2"];
 +    }
 +  }
 +  network Sample_back {
 +    address = "192.168.20.0/24";
 +    web01 [address = ".1"];
 +    web02 [address = ".2"];
 +    db01 [address = ".101"];
 +    db02 [address = ".102"];
 +
 +    // define network using defined nodes
 +    group db {
 +      db01;
 +      db02;
 +    }
 +  }
 +}
 +@enduml
 +</uml>
 +</code>
 +
 +More information on: [[https://plantuml.com/fr/nwdiag]].
 +
 +<uml>
 +@startuml
 +nwdiag {
 +  network Sample_front {
 +    address = "192.168.10.0/24";
 +
 +    // define group
 +    group web {
 +      web01 [address = ".1"];
 +      web02 [address = ".2"];
 +    }
 +  }
 +  network Sample_back {
 +    address = "192.168.20.0/24";
 +    web01 [address = ".1"];
 +    web02 [address = ".2"];
 +    db01 [address = ".101"];
 +    db02 [address = ".102"];
 +
 +    // define network using defined nodes
 +    group db {
 +      db01;
 +      db02;
 +    }
 +  }
 +}
 +@enduml
 +</uml>
 +
 +==== Pannel Diagram ====
 +For more documentation : [[https://github.com/GreenItSolutions/dokuwiki-plugin-switchpanel]]
 +
 +<code>
 +<switchpanel>
 +Index,Label:color="color|#rgb",case="rj45|of|2of|gbic|none|serial|close",text="Information",link="proto://url",target="page|_new|_blank"
 +</switchpanel>
 +</code>
 +
 +<switchpanel showEars=false group=12>
 +# Documentation et rapports de bug : https://github.com/GreenItSolutions/dokuwiki-plugin-switchpanel
 +==text
 +4x12 ports sur 2U (01-12 & 13-24)
 +==line:number=24
 +01,01,PC01:color="lime",text="Information supplémentaire",link="http://adresse.du.lien",target="_blank"
 +02,02,PC02:color="cyan",text="Information supplémentaire"
 +03,03,PC03:color="blue"
 +04,04:color="#FF0000"
 +05,05
 +06,06
 +07,07
 +08,08
 +09,09
 +10,10
 +11,11:case=close,text="Fermé"
 +12,12:case=serial,text="Port série"
 +13,13,PC13:color="teal",text="Information supplémentaire",link="http://adresse.du.lien",target="_blank"
 +14,14,PC14:color="peru",text="Information supplémentaire"
 +15,15,PC15:color="gold"
 +16,16:color="#ABCDEF"
 +17,17
 +18,18
 +19,19
 +20,20
 +21,21
 +22,22
 +23,23:case=of,text="Fibre optique"
 +24,24:case=gbic,text="Port Gbic"
 +==text
 +4x12 ports sur 2U (25-36 & 37-48)
 +==line:number=24
 +01,25,PC25:color="lime",text="Information supplémentaire",link="http://adresse.du.lien",target="_blank"
 +02,26,PC26:color="cyan",text="Information supplémentaire"
 +03,27,PC27:color="blue"
 +04,28:color="#FF0000"
 +05,29
 +06,30
 +07,31
 +08,32
 +09,33
 +10,34
 +11,35:case=close,text="Fermé"
 +12,36:case=serial,text="Port série"
 +13,37,PC37:color="teal",text="Information supplémentaire",link="http://adresse.du.lien",target="_blank"
 +14,38,PC38:color="peru",text="Information supplémentaire"
 +15,39,PC39:color="gold"
 +16,40:color="#ABCDEF"
 +17,41
 +18,42
 +19,43
 +20,44
 +21,45
 +22,46
 +23,47:case=2of,text="Fibre double"
 +24,48:case=gbic,text="Port Gbic"
 +</switchpanel>
 +
 +==== UML Diagram ====
 +<code>
 +<uml>
 +@startuml
 +Alice -> Bob: Authentication Request
 +Bob --> Alice: Authentication Response
 +
 +Alice -> Bob: Another authentication Request
 +Alice <-- Bob: another authentication Response
 +@enduml
 +</uml>
 +</code>
 +
 +More documentation for avalaible diagram on [[https://plantuml.com/fr/|PlantUML]]
 +
 +<uml>
 +@startuml
 +Alice -> Bob: Authentication Request
 +Bob --> Alice: Authentication Response
 +
 +Alice -> Bob: Another authentication Request
 +Alice <-- Bob: another authentication Response
 +@enduml
 +</uml>
  
 ===== Quoting ===== ===== Quoting =====