Skip to content

Commit 00c8c62

Browse files
committed
Updated documentation for 6.0.5 release.
1 parent e09c5f1 commit 00c8c62

File tree

143 files changed

+39473
-24051
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+39473
-24051
lines changed

Diff for: Documentation/CodeGen.chm

-162 Bytes
Binary file not shown.

Diff for: Documentation/CodeGen.hsmx

5.26 KB
Binary file not shown.

Diff for: docs/css/app.css

+1,088
Large diffs are not rendered by default.

Diff for: docs/css/apr.css

+404
Large diffs are not rendered by default.

Diff for: docs/css/topics.css

+3,036
Large diffs are not rendered by default.

Diff for: docs/css/tree.css

+183-90
Original file line numberDiff line numberDiff line change
@@ -1,101 +1,194 @@
11
ul.hstree-root {
2-
padding: 0;
3-
margin: 0;
4-
}
5-
.hstree-root ul {
6-
padding: 0;
7-
margin: 0;
8-
display: none;
2+
padding: 0;
3+
margin: 0;
94
}
105
ul.hstree-root li {
11-
list-style-type: none;
12-
display: block;
13-
margin: 0 0 0 22px;
14-
padding: 0;
15-
background: url("images/tree-sprites.png") repeat-y -110px 0;
16-
}
17-
ul.hstree-root > li {
18-
margin-left: 0;
19-
}
6+
list-style-type: none;
7+
display: table;
8+
width: 100%;
9+
margin: 0;
10+
padding: 0;
11+
}
12+
ul.hstree-root ul {
13+
display: none;
14+
padding: 0;
15+
margin: 0 0 0 22px;
16+
}
17+
ul.hstree-root a {
18+
display: flex;
19+
color: #333;
20+
font: 10pt "Segoe UI", Tahoma, Verdana, Arial, sans-serif;
21+
font-weight: normal;
22+
text-decoration: none;
23+
outline: none;
24+
transition: background-color 0.1s ease 0s, border-color 0.1s ease 0s;
25+
}
26+
ul.hstree-root a:hover {
27+
background-color: #f7f7f7;
28+
}
29+
2030
.hstree-node-btn {
21-
vertical-align: middle;
22-
display: table-cell;
23-
width: 22px;
24-
min-width: 22px;
25-
overflow: hidden;
31+
position: relative;
32+
display: flex;
33+
align-items: center;
34+
justify-content: flex-end;
2635
}
2736
.hstree-node-btn > i {
28-
display: block;
29-
width: 22px;
30-
height: 22px;
31-
position: relative;
32-
overflow: hidden;
37+
display: block;
38+
width: 22px;
39+
height: 22px;
40+
position: relative;
41+
overflow: hidden;
42+
transition: background-color 0.4s ease 0s;
3343
}
3444
.hstree-node-btn > i:before {
35-
content: "";
36-
position: absolute;
37-
top: 0;
38-
left: 0;
39-
right: 0;
40-
bottom: 0;
41-
background: url("images/tree-sprites.png") no-repeat -44px 0;
42-
}
43-
.hstree-collapsed > .hstree-node-btn > i:before {
44-
background-position: -66px 0;
45-
}
46-
.hstree-expanded > .hstree-node-btn > i:before {
47-
background-position: -88px 0;
48-
}
49-
.hstree-has-children > .hstree-node-btn {
50-
cursor: pointer;
51-
}
52-
ul.hstree-root .hstree-node.hstree-last {
53-
background: none;
54-
}
55-
.hstree-node-cnt {
56-
vertical-align: middle;
57-
display: table-cell;
58-
}
59-
.hstree-node-cnt-w {
60-
display: table;
61-
}
45+
content: "";
46+
position: absolute;
47+
top: 0;
48+
left: 0;
49+
right: 0;
50+
bottom: 0;
51+
}
52+
53+
.hstree-btn-rgt .hstree-node-btn {
54+
order: 1;
55+
flex-grow: 1;
56+
}
57+
.hstree-btn-rgt .hstree-node-icon > i {
58+
margin-left: 4px;
59+
}
60+
61+
.hstree-has-children .hstree-node-btn > i {
62+
cursor: pointer;
63+
border-radius: 50%;
64+
}
65+
.hstree-has-children .hstree-node-btn > i:before {
66+
position: absolute;
67+
color: #333;
68+
font-family: "hs-icons";
69+
font-style: normal;
70+
font-weight: normal;
71+
speak: none;
72+
text-decoration: none;
73+
text-align: center;
74+
font-variant: normal;
75+
text-transform: none;
76+
line-height: 1;
77+
transition: color 0.2s ease 0s;
78+
}
79+
.hstree-has-children > a .hstree-node-btn > i:hover {
80+
background-color: #e8e8e8;
81+
}
82+
6283
.hstree-node-icon {
63-
vertical-align: middle;
64-
display: table-cell;
65-
}
66-
.hstree-node-icon i {
67-
display: block;
68-
width: 22px;
69-
height: 22px;
70-
min-width: 22px;
71-
position: relative;
72-
}
73-
.hstree-node-icon i:before {
74-
content: "";
75-
position: absolute;
76-
width: 22px;
77-
height: 22px;
78-
top: 0;
79-
left: 0;
80-
background: url("images/tree-sprites.png") 0 -22px no-repeat;
81-
}
84+
display: flex;
85+
align-items: center;
86+
}
87+
.hstree-node-icon > i {
88+
display: block;
89+
width: 22px;
90+
height: 22px;
91+
position: relative;
92+
}
93+
.hstree-node-icon > i:before {
94+
content: "";
95+
position: absolute;
96+
top: 0;
97+
left: 0;
98+
right: 0;
99+
bottom: 0;
100+
}
101+
82102
.hstree-node-title {
83-
vertical-align: middle;
84-
display: table-cell;
85-
}
86-
.hstree-node-title > a {
87-
display: inline-block;
88-
padding: 1px 3px 2px;
89-
outline: none;
90-
text-decoration: none;
91-
}
92-
.hstree-node .hstree-node-title > a:hover {
93-
background-color: #e9f1f5;
94-
}
95-
.hstree-node .hstree-node-title > a:focus {
96-
background-color: #e9f1f5;
97-
}
98-
.hstree-node.hstree-active > .hstree-node-cnt .hstree-node-title > a {
99-
background-color: #2d87e2;
100-
color: #fff;
103+
display: flex;
104+
align-items: center;
105+
justify-content: center;
106+
}
107+
108+
li.hstree-node > a:focus {
109+
background-color: #f7f7f7;
110+
}
111+
li.hstree-node.hstree-active > a {
112+
background-color: #f2f2f2;
113+
}
114+
115+
.hstree-nowrap .hstree-node-title {
116+
white-space: nowrap;
117+
}
118+
119+
.hstree-btn-lrg li.hstree-node .hstree-node-btn > i {
120+
width: 32px;
121+
height: 32px;
122+
}
123+
124+
.hs-btn-r .hstree-collapsed > a .hstree-node-btn > i:before {
125+
transform: rotate(0) translate(0, 0);
126+
}
127+
.hs-btn-r .hstree-expanded > a .hstree-node-btn > i:before {
128+
transform: rotate(90deg) translate(0, 0);
129+
}
130+
.hs-btn-corners .hstree-has-children > a .hstree-node-btn > i:before {
131+
content: "\e801";
132+
top: 7px;
133+
left: 3px;
134+
font-size: 9px;
135+
}
136+
.hs-btn-corners.hs-btn-r .hstree-has-children > a .hstree-node-btn > i:before {
137+
transform-origin: 8px 4px;
138+
}
139+
.hs-btn-corners.hstree-btn-lrg .hstree-has-children > a .hstree-node-btn > i:before {
140+
top: 13px;
141+
left: 3px;
142+
font-size: 10px;
143+
}
144+
.hs-btn-corners.hstree-btn-lrg.hs-btn-r .hstree-has-children > a .hstree-node-btn > i:before {
145+
transform-origin: 13px 4px;
146+
}
147+
148+
.hs-btn-triangles .hstree-has-children > a .hstree-node-btn > i:before {
149+
content: "\e805";
150+
top: 5px;
151+
left: 2px;
152+
font-size: 14px;
153+
}
154+
.hs-btn-triangles.hs-btn-r .hstree-has-children > a .hstree-node-btn > i:before {
155+
transform-origin: 9px 7px;
156+
}
157+
.hs-btn-triangles.hstree-btn-lrg .hstree-has-children > a .hstree-node-btn > i:before {
158+
top: 8px;
159+
left: 2px;
160+
font-size: 16px;
161+
}
162+
.hs-btn-triangles.hstree-btn-lrg.hs-btn-r .hstree-has-children > a .hstree-node-btn > i:before {
163+
transform-origin: 14px 8px;
164+
}
165+
166+
.hs-btn-plusminus .hstree-has-children > a .hstree-node-btn > i:before {
167+
content: "\e802";
168+
top: 8px;
169+
left: 1px;
170+
font-size: 10px;
171+
}
172+
.hs-btn-plusminus .hstree-has-children.hstree-expanded > a .hstree-node-btn > i:before {
173+
content: "\e803";
174+
}
175+
.hs-btn-plusminus.hstree-btn-lrg .hstree-has-children > a .hstree-node-btn > i:before {
176+
top: 11px;
177+
left: 1px;
178+
font-size: 11px;
179+
}
180+
181+
.hs-btn-plusminus-s .hstree-has-children > a .hstree-node-btn > i:before {
182+
content: "\f196";
183+
top: 7px;
184+
left: 1px;
185+
font-size: 11px;
186+
}
187+
.hs-btn-plusminus-s .hstree-has-children.hstree-expanded > a .hstree-node-btn > i:before {
188+
content: "\f147";
189+
}
190+
.hs-btn-plusminus-s.hstree-btn-lrg .hstree-has-children > a .hstree-node-btn > i:before {
191+
top: 10px;
192+
left: -1px;
193+
font-size: 14px;
101194
}

Diff for: docs/data/index.json

+1
Large diffs are not rendered by default.

Diff for: docs/data/search.json

+1
Large diffs are not rendered by default.

Diff for: docs/data/toc.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"icon":"hs-weblink","idx":"51"},{"idx":"45"},{"icon":"hs-book","idx":"0","children":[{"idx":"40"},{"idx":"9"},{"idx":"23"},{"idx":"30"},{"idx":"72"},{"idx":"4"},{"idx":"42"}]},{"icon":"hs-book","idx":"5","children":[{"idx":"24"},{"idx":"8"},{"idx":"52"},{"idx":"6"},{"idx":"58"},{"idx":"69"}]},{"icon":"hs-book","idx":"73","children":[{"idx":"26"},{"idx":"12"},{"idx":"67"}]},{"icon":"hs-book","idx":"77","children":[{"idx":"13"},{"idx":"28"}]},{"icon":"hs-book","idx":"14","children":[{"idx":"68"},{"idx":"31"},{"idx":"2"},{"icon":"hs-book","idx":"38","children":[{"idx":"89"},{"idx":"29"}]}]},{"icon":"hs-book","idx":"15","children":[{"idx":"91"},{"idx":"32"},{"icon":"hs-book","idx":"16","children":[{"idx":"90"},{"idx":"41"}]}]},{"icon":"hs-book","idx":"17","children":[{"idx":"92"},{"idx":"39"},{"icon":"hs-book","idx":"99","children":[{"idx":"100"},{"idx":"101"}]}]},{"icon":"hs-book","idx":"34","children":[{"idx":"93"},{"idx":"36"},{"icon":"hs-book","idx":"35","children":[{"idx":"94"},{"idx":"37"}]}]},{"icon":"hs-book","idx":"19","children":[{"idx":"95"},{"idx":"33"}]},{"icon":"hs-book","idx":"46","children":[{"idx":"96"},{"idx":"25"}]},{"icon":"hs-book","idx":"65","children":[{"idx":"97"},{"idx":"66"}]},{"icon":"hs-book","idx":"48","children":[{"idx":"98"},{"idx":"49"}]},{"icon":"hs-book","idx":"78","children":[{"idx":"20"},{"idx":"27"}]},{"icon":"hs-book","idx":"50"},{"icon":"hs-book","idx":"79","children":[{"idx":"18"}]},{"icon":"hs-book","idx":"71","children":[{"icon":"hs-book","idx":"74","children":[{"idx":"80"},{"idx":"81"}]},{"icon":"hs-book","idx":"75","children":[{"idx":"82"},{"idx":"83"}]},{"icon":"hs-book","idx":"76","children":[{"idx":"84"},{"idx":"85"}]},{"idx":"3"}]},{"icon":"hs-book","idx":"86","children":[{"idx":"21"},{"idx":"64"},{"idx":"59"},{"idx":"102"},{"idx":"47"},{"idx":"1"}]},{"icon":"hs-book","idx":"87","children":[{"idx":"22"},{"idx":"61"}]},{"icon":"hs-book","idx":"43","children":[{"icon":"hs-book","idx":"126","children":[{"idx":"57"},{"idx":"53"},{"idx":"44"},{"idx":"112"},{"idx":"113"},{"idx":"114"},{"idx":"115"},{"idx":"116"},{"idx":"62"}]},{"icon":"hs-book","idx":"120","children":[{"idx":"121"},{"idx":"122"},{"idx":"63"},{"idx":"117"},{"idx":"123"},{"idx":"124"},{"idx":"125"},{"idx":"118"},{"idx":"119"},{"idx":"111"}]}]},{"icon":"hs-book","idx":"88","children":[{"idx":"54"},{"idx":"55"},{"idx":"56"},{"idx":"60"}]},{"icon":"hs-book","idx":"103","children":[{"idx":"105"},{"idx":"106"},{"idx":"110"},{"idx":"109"},{"idx":"70"},{"idx":"104"},{"idx":"108"},{"idx":"107"}]}]

0 commit comments

Comments
 (0)