From OpenSCADAWiki
Jump to: navigation, search
(Importing a new version from external source)
(Importing a new version from external source)
Line 1: Line 1:
=== Tag of the information structure for describing the groups of child branches of the page ===
+
=== BRANCHES — tag of the information structure of the description of groups of child branches ===
Each page can contain groups of child branches. For descriptions of groups of branches there is the tag "branches". Tag contains the description of groups of branches through embedded tags ''grp''. The group tag can be accessed as for the "read" (visibility) and for modification (the execution of commands for adding and removing the elements of the group), hence the element of the triad of access may be:
+
Each page can contain groups of child branches, which are described with the ''branches'' tag. The tag contains a description of groups of branches by included tags '''grp''', which can be accessed both for reading — visibility (SEC_RD) and for writing (SEC_WR) — adding and removing group elements.
:''0'' — there is no any access;
+
:''4'' — there is an access only for reading;
+
:''2'' — there is only access fro the writing, usually this value has no meaning because the write access means access for reading;
+
:''6'' — there is an access to read, and to write.
+
In the high octet it contains the maximum permition.
+
<syntaxhighlight lang="XML">
+
<branches id='br'>
+
  <grp id='/br/in_' descr='Input transport' acs='52'/>
+
  <grp id='/br/out_' descr='Output transport' acs='52'/>
+
</branches>
+
</syntaxhighlight>
+

Revision as of 11:22, 7 January 2023

BRANCHES — tag of the information structure of the description of groups of child branches

Each page can contain groups of child branches, which are described with the branches tag. The tag contains a description of groups of branches by included tags grp, which can be accessed both for reading — visibility (SEC_RD) and for writing (SEC_WR) — adding and removing group elements.