summaryrefslogtreecommitdiffstats
path: root/docbook/wsdg_src/images
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /docbook/wsdg_src/images
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'docbook/wsdg_src/images')
-rw-r--r--docbook/wsdg_src/images/caution.svg3
-rw-r--r--docbook/wsdg_src/images/git-triangular-workflow.gv59
-rw-r--r--docbook/wsdg_src/images/git-triangular-workflow.svg62
-rw-r--r--docbook/wsdg_src/images/important.svg4
-rw-r--r--docbook/wsdg_src/images/note.svg3
-rw-r--r--docbook/wsdg_src/images/tip.svg3
-rw-r--r--docbook/wsdg_src/images/warning.svg4
-rw-r--r--docbook/wsdg_src/images/ws-capture-sync.diabin0 -> 2943 bytes
-rw-r--r--docbook/wsdg_src/images/ws-capture-sync.pngbin0 -> 5507 bytes
-rw-r--r--docbook/wsdg_src/images/ws-capture_internals.diabin0 -> 2149 bytes
-rw-r--r--docbook/wsdg_src/images/ws-capture_internals.pngbin0 -> 3699 bytes
-rw-r--r--docbook/wsdg_src/images/ws-dev-guide-cover.pngbin0 -> 13679 bytes
-rw-r--r--docbook/wsdg_src/images/ws-function-blocks.diabin0 -> 3343 bytes
-rw-r--r--docbook/wsdg_src/images/ws-function-blocks.pngbin0 -> 10555 bytes
-rw-r--r--docbook/wsdg_src/images/ws-logo.pngbin0 -> 5707 bytes
-rw-r--r--docbook/wsdg_src/images/wslua-new-dialog.pngbin0 -> 21786 bytes
-rw-r--r--docbook/wsdg_src/images/wslua-progdlg.pngbin0 -> 12695 bytes
-rw-r--r--docbook/wsdg_src/images/wslua-textwindow.pngbin0 -> 26843 bytes
18 files changed, 138 insertions, 0 deletions
diff --git a/docbook/wsdg_src/images/caution.svg b/docbook/wsdg_src/images/caution.svg
new file mode 100644
index 0000000..793c602
--- /dev/null
+++ b/docbook/wsdg_src/images/caution.svg
@@ -0,0 +1,3 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-lightning-charge" viewBox="0 0 16 16">
+ <path d="M11.251.068a.5.5 0 0 1 .227.58L9.677 6.5H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9.5H3a.5.5 0 0 1-.364-.843l8-8.5a.5.5 0 0 1 .615-.09zM4.157 8.5H7a.5.5 0 0 1 .478.647L6.11 13.59l5.732-6.09H9a.5.5 0 0 1-.478-.647L9.89 2.41 4.157 8.5z"/>
+</svg>
diff --git a/docbook/wsdg_src/images/git-triangular-workflow.gv b/docbook/wsdg_src/images/git-triangular-workflow.gv
new file mode 100644
index 0000000..809877a
--- /dev/null
+++ b/docbook/wsdg_src/images/git-triangular-workflow.gv
@@ -0,0 +1,59 @@
+// dot -Tsvg -o docbook/wsdg_graphics/git-triangular-workflow.svg docbook/wsdg_graphics/git-triangular-workflow.gv
+
+digraph G {
+ // XXX Integrate ws.css. Match it manually for now.
+ graph [
+ fontname = "Georgia",
+ fontsize = 12
+ ];
+
+ node [
+ fontname = "Georgia",
+ fontsize = 12,
+ shape=box,
+ style=rounded
+ ];
+
+ edge [
+ fontname = "Georgia",
+ fontsize = 12
+ ];
+
+ rankdir = TB;
+ ranksep = 1.0;
+ nodesep = 1.0;
+ // margin = "0.5,0.5";
+
+ main_repo [
+ label=<Main Repository<br/><font point-size="9">gitlab.com/wireshark/wireshark</font>>
+ ]
+
+ your_fork [
+ label=<Your Fork<br/><font point-size="9">gitlab.com/you/wireshark</font>>
+ ]
+
+ your_repo [
+ label=<Your Local Repository<br/><font point-size="9">Somewhere on your machine</font>>
+ ]
+
+ { rank = same; main_repo; your_fork; }
+
+ // :nw adds needed space
+ main_repo -> your_fork:nw [
+ label = "Fork (once)",
+ style = dashed
+ ]
+
+ main_repo -> your_repo [
+ label = "Pull"
+ ]
+
+ your_repo -> your_fork [
+ label = "Push"
+ ]
+
+ your_fork -> main_repo [
+ label = "Merge Request"
+ ]
+
+}
diff --git a/docbook/wsdg_src/images/git-triangular-workflow.svg b/docbook/wsdg_src/images/git-triangular-workflow.svg
new file mode 100644
index 0000000..1f8ae3a
--- /dev/null
+++ b/docbook/wsdg_src/images/git-triangular-workflow.svg
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<!-- Generated by graphviz version 2.44.1 (20200629.0846)
+ -->
+<!-- Title: G Pages: 1 -->
+<svg width="429pt" height="205pt"
+ viewBox="0.00 0.00 428.50 205.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 201)">
+<title>G</title>
+<polygon fill="white" stroke="transparent" points="-4,4 -4,-201 424.5,-201 424.5,4 -4,4"/>
+<!-- main_repo -->
+<g id="node1" class="node">
+<title>main_repo</title>
+<path fill="none" stroke="black" d="M134,-157C134,-157 12,-157 12,-157 6,-157 0,-151 0,-145 0,-145 0,-133 0,-133 0,-127 6,-121 12,-121 12,-121 134,-121 134,-121 140,-121 146,-127 146,-133 146,-133 146,-145 146,-145 146,-151 140,-157 134,-157"/>
+<text text-anchor="start" x="27.5" y="-140.9" font-family="Georgia" font-size="12.00">Main Repository</text>
+<text text-anchor="start" x="8" y="-131.3" font-family="Georgia" font-size="9.00">gitlab.com/wireshark/wireshark</text>
+</g>
+<!-- your_fork -->
+<g id="node2" class="node">
+<title>your_fork</title>
+<path fill="none" stroke="black" d="M408.5,-157C408.5,-157 311.5,-157 311.5,-157 305.5,-157 299.5,-151 299.5,-145 299.5,-145 299.5,-133 299.5,-133 299.5,-127 305.5,-121 311.5,-121 311.5,-121 408.5,-121 408.5,-121 414.5,-121 420.5,-127 420.5,-133 420.5,-133 420.5,-145 420.5,-145 420.5,-151 414.5,-157 408.5,-157"/>
+<text text-anchor="start" x="332" y="-140.9" font-family="Georgia" font-size="12.00">Your Fork</text>
+<text text-anchor="start" x="307.5" y="-131.3" font-family="Georgia" font-size="9.00">gitlab.com/you/wireshark</text>
+</g>
+<!-- main_repo&#45;&gt;your_fork -->
+<g id="edge1" class="edge">
+<title>main_repo&#45;&gt;your_fork:nw</title>
+<path fill="none" stroke="black" stroke-dasharray="5,2" d="M111.13,-157.13C158.91,-177.68 241.75,-203.49 292.02,-163.66"/>
+<polygon fill="black" stroke="black" points="294.36,-166.27 299.5,-157 289.71,-161.04 294.36,-166.27"/>
+<text text-anchor="middle" x="222" y="-187.4" font-family="Georgia" font-size="12.00">Fork (once)</text>
+</g>
+<!-- your_repo -->
+<g id="node3" class="node">
+<title>your_repo</title>
+<path fill="none" stroke="black" d="M272.5,-36C272.5,-36 159.5,-36 159.5,-36 153.5,-36 147.5,-30 147.5,-24 147.5,-24 147.5,-12 147.5,-12 147.5,-6 153.5,0 159.5,0 159.5,0 272.5,0 272.5,0 278.5,0 284.5,-6 284.5,-12 284.5,-12 284.5,-24 284.5,-24 284.5,-30 278.5,-36 272.5,-36"/>
+<text text-anchor="start" x="155.5" y="-19.9" font-family="Georgia" font-size="12.00">Your Local Repository</text>
+<text text-anchor="start" x="157.5" y="-10.3" font-family="Georgia" font-size="9.00">Somewhere on your machine</text>
+</g>
+<!-- main_repo&#45;&gt;your_repo -->
+<g id="edge2" class="edge">
+<title>main_repo&#45;&gt;your_repo</title>
+<path fill="none" stroke="black" d="M93.49,-120.95C118.23,-100.36 159.98,-65.62 187.76,-42.5"/>
+<polygon fill="black" stroke="black" points="190.1,-45.11 195.55,-36.02 185.62,-39.72 190.1,-45.11"/>
+<text text-anchor="middle" x="160" y="-75.4" font-family="Georgia" font-size="12.00">Pull</text>
+</g>
+<!-- your_fork&#45;&gt;main_repo -->
+<g id="edge4" class="edge">
+<title>your_fork&#45;&gt;main_repo</title>
+<path fill="none" stroke="black" d="M299.29,-139C257.86,-139 202.13,-139 156.46,-139"/>
+<polygon fill="black" stroke="black" points="156.29,-135.5 146.29,-139 156.29,-142.5 156.29,-135.5"/>
+<text text-anchor="middle" x="222" y="-142.4" font-family="Georgia" font-size="12.00">Merge Request</text>
+</g>
+<!-- your_repo&#45;&gt;your_fork -->
+<g id="edge3" class="edge">
+<title>your_repo&#45;&gt;your_fork</title>
+<path fill="none" stroke="black" d="M236.59,-36.02C261.49,-56.59 303.53,-91.33 331.52,-114.46"/>
+<polygon fill="black" stroke="black" points="329.43,-117.28 339.37,-120.95 333.89,-111.88 329.43,-117.28"/>
+<text text-anchor="middle" x="305.5" y="-75.4" font-family="Georgia" font-size="12.00">Push</text>
+</g>
+</g>
+</svg>
diff --git a/docbook/wsdg_src/images/important.svg b/docbook/wsdg_src/images/important.svg
new file mode 100644
index 0000000..a2ee701
--- /dev/null
+++ b/docbook/wsdg_src/images/important.svg
@@ -0,0 +1,4 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-exclamation-circle" viewBox="0 0 16 16">
+ <path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
+ <path d="M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z"/>
+</svg>
diff --git a/docbook/wsdg_src/images/note.svg b/docbook/wsdg_src/images/note.svg
new file mode 100644
index 0000000..803dc13
--- /dev/null
+++ b/docbook/wsdg_src/images/note.svg
@@ -0,0 +1,3 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-sticky" viewBox="0 0 16 16">
+ <path d="M2.5 1A1.5 1.5 0 0 0 1 2.5v11A1.5 1.5 0 0 0 2.5 15h6.086a1.5 1.5 0 0 0 1.06-.44l4.915-4.914A1.5 1.5 0 0 0 15 8.586V2.5A1.5 1.5 0 0 0 13.5 1h-11zM2 2.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 .5.5V8H9.5A1.5 1.5 0 0 0 8 9.5V14H2.5a.5.5 0 0 1-.5-.5v-11zm7 11.293V9.5a.5.5 0 0 1 .5-.5h4.293L9 13.793z"/>
+</svg>
diff --git a/docbook/wsdg_src/images/tip.svg b/docbook/wsdg_src/images/tip.svg
new file mode 100644
index 0000000..1a60b74
--- /dev/null
+++ b/docbook/wsdg_src/images/tip.svg
@@ -0,0 +1,3 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-lightbulb" viewBox="0 0 16 16">
+ <path d="M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13a.5.5 0 0 1 0 1 .5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1 0-1 .5.5 0 0 1 0-1 .5.5 0 0 1-.46-.302l-.761-1.77a1.964 1.964 0 0 0-.453-.618A5.984 5.984 0 0 1 2 6zm6-5a5 5 0 0 0-3.479 8.592c.263.254.514.564.676.941L5.83 12h4.342l.632-1.467c.162-.377.413-.687.676-.941A5 5 0 0 0 8 1z"/>
+</svg>
diff --git a/docbook/wsdg_src/images/warning.svg b/docbook/wsdg_src/images/warning.svg
new file mode 100644
index 0000000..80c0ba5
--- /dev/null
+++ b/docbook/wsdg_src/images/warning.svg
@@ -0,0 +1,4 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-exclamation-triangle" viewBox="0 0 16 16">
+ <path d="M7.938 2.016A.13.13 0 0 1 8.002 2a.13.13 0 0 1 .063.016.146.146 0 0 1 .054.057l6.857 11.667c.036.06.035.124.002.183a.163.163 0 0 1-.054.06.116.116 0 0 1-.066.017H1.146a.115.115 0 0 1-.066-.017.163.163 0 0 1-.054-.06.176.176 0 0 1 .002-.183L7.884 2.073a.147.147 0 0 1 .054-.057zm1.044-.45a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566z"/>
+ <path d="M7.002 12a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 5.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995z"/>
+</svg>
diff --git a/docbook/wsdg_src/images/ws-capture-sync.dia b/docbook/wsdg_src/images/ws-capture-sync.dia
new file mode 100644
index 0000000..00ba9cf
--- /dev/null
+++ b/docbook/wsdg_src/images/ws-capture-sync.dia
Binary files differ
diff --git a/docbook/wsdg_src/images/ws-capture-sync.png b/docbook/wsdg_src/images/ws-capture-sync.png
new file mode 100644
index 0000000..d46e1e9
--- /dev/null
+++ b/docbook/wsdg_src/images/ws-capture-sync.png
Binary files differ
diff --git a/docbook/wsdg_src/images/ws-capture_internals.dia b/docbook/wsdg_src/images/ws-capture_internals.dia
new file mode 100644
index 0000000..0eae20e
--- /dev/null
+++ b/docbook/wsdg_src/images/ws-capture_internals.dia
Binary files differ
diff --git a/docbook/wsdg_src/images/ws-capture_internals.png b/docbook/wsdg_src/images/ws-capture_internals.png
new file mode 100644
index 0000000..6d110af
--- /dev/null
+++ b/docbook/wsdg_src/images/ws-capture_internals.png
Binary files differ
diff --git a/docbook/wsdg_src/images/ws-dev-guide-cover.png b/docbook/wsdg_src/images/ws-dev-guide-cover.png
new file mode 100644
index 0000000..8134d2d
--- /dev/null
+++ b/docbook/wsdg_src/images/ws-dev-guide-cover.png
Binary files differ
diff --git a/docbook/wsdg_src/images/ws-function-blocks.dia b/docbook/wsdg_src/images/ws-function-blocks.dia
new file mode 100644
index 0000000..cc85781
--- /dev/null
+++ b/docbook/wsdg_src/images/ws-function-blocks.dia
Binary files differ
diff --git a/docbook/wsdg_src/images/ws-function-blocks.png b/docbook/wsdg_src/images/ws-function-blocks.png
new file mode 100644
index 0000000..169e19e
--- /dev/null
+++ b/docbook/wsdg_src/images/ws-function-blocks.png
Binary files differ
diff --git a/docbook/wsdg_src/images/ws-logo.png b/docbook/wsdg_src/images/ws-logo.png
new file mode 100644
index 0000000..04226f3
--- /dev/null
+++ b/docbook/wsdg_src/images/ws-logo.png
Binary files differ
diff --git a/docbook/wsdg_src/images/wslua-new-dialog.png b/docbook/wsdg_src/images/wslua-new-dialog.png
new file mode 100644
index 0000000..9de7e4a
--- /dev/null
+++ b/docbook/wsdg_src/images/wslua-new-dialog.png
Binary files differ
diff --git a/docbook/wsdg_src/images/wslua-progdlg.png b/docbook/wsdg_src/images/wslua-progdlg.png
new file mode 100644
index 0000000..d8d9510
--- /dev/null
+++ b/docbook/wsdg_src/images/wslua-progdlg.png
Binary files differ
diff --git a/docbook/wsdg_src/images/wslua-textwindow.png b/docbook/wsdg_src/images/wslua-textwindow.png
new file mode 100644
index 0000000..7defd0f
--- /dev/null
+++ b/docbook/wsdg_src/images/wslua-textwindow.png
Binary files differ