-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move document parsing into Layout and clean-up compile time warnings.
This commit updates the naming convention standard going forward. All public functions will use CamelCase(). Many small adjustments as well to reduce the amount of code inside of Application.
- Loading branch information
Showing
13 changed files
with
440 additions
and
425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<root> | ||
<author>n.skelsey</author> | ||
<wifi_router> | ||
<network> | ||
<bridge>router</bridge> | ||
<tag>1</tag> | ||
<ip>192.168.1.1</ip> | ||
<mac>be:ef:be:ef:be:ef</mac> | ||
</network> | ||
</wifi_router> | ||
<winzoz_pc> | ||
<network> | ||
<bridge>vmbr</bridge> | ||
<tag>1</tag> | ||
<ip>192.168.1.101</ip> | ||
<mac>be:ef:ca:fe:ca:fe</mac> | ||
</network> | ||
<started>true</started> | ||
<vm_id>104</vm_id> | ||
</winzoz_pc> | ||
<iphone_30> | ||
<network> | ||
<bridge>vmbr</bridge> | ||
<tag>2</tag> | ||
<ip>192.168.1.42</ip> | ||
<mac>ca:fe:ca:fe:ca:fe</mac> | ||
</network> | ||
<vm_id>106</vm_id> | ||
</iphone_30> | ||
</root> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<mxfile host="app.diagrams.net" modified="2020-07-12T17:19:06.336Z" agent="5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36" etag="01VAlMM4bLZX3p2JBdlc" compressed="true" version="13.4.2" type="device"> | ||
<diagram id="jqfGGf_7ZzLIy3FHOFG0" name="Page-1"> | ||
<mxGraphModel dx="871" dy="465" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0"> | ||
<root> | ||
<mxCell id="0" /> | ||
<mxCell id="1" parent="0" /> | ||
<object label="(0,0)" class="center" id="HuDwKePgMMkB4XPKHNRV-101"> | ||
<mxCell style="whiteSpace=wrap;html=1;aspect=fixed;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1"> | ||
<mxGeometry x="434" y="319.5" width="1" height="1" as="geometry" /> | ||
</mxCell> | ||
</object> | ||
<object label="" class="switch" id="coFcF6SQwalx10ZarlYS-23"> | ||
<mxCell style="group" parent="1" vertex="1" connectable="0"> | ||
<mxGeometry x="260" y="250" width="100" height="130" as="geometry" /> | ||
</mxCell> | ||
</object> | ||
<object label="wifi_router" class="switch-rect" id="HuDwKePgMMkB4XPKHNRV-7"> | ||
<mxCell style="rounded=0;whiteSpace=wrap;html=1;" parent="coFcF6SQwalx10ZarlYS-23" vertex="1"> | ||
<mxGeometry x="10" y="10" width="80" height="120" as="geometry" /> | ||
</mxCell> | ||
</object> | ||
<object label="1" class="device" id="R_lO7g0ntE3RoQr6fGAW-17"> | ||
<mxCell style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;" parent="coFcF6SQwalx10ZarlYS-23" vertex="1"> | ||
<mxGeometry x="80" y="60" width="20" height="20" as="geometry" /> | ||
</mxCell> | ||
</object> | ||
<object label="winzoz_pc" class="device" id="YTh0AKUFCmQrXkss0Y7l-4"> | ||
<mxCell style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;" parent="1" vertex="1"> | ||
<mxGeometry x="425" y="310" width="20" height="20" as="geometry" /> | ||
</mxCell> | ||
</object> | ||
<object label="iphone_30" class="device" id="YTh0AKUFCmQrXkss0Y7l-18"> | ||
<mxCell style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;" parent="1" vertex="1"> | ||
<mxGeometry x="510" y="310" width="20" height="20" as="geometry" /> | ||
</mxCell> | ||
</object> | ||
</root> | ||
</mxGraphModel> | ||
</diagram> | ||
</mxfile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.