Skip to content

Commit 6a4da11

Browse files
committed
Update docs
1 parent a643bd4 commit 6a4da11

File tree

3,746 files changed

+93771
-127219
lines changed

Some content is hidden

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

3,746 files changed

+93771
-127219
lines changed

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

annotated.html

Lines changed: 25 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</div>
3535
<div id="projectbrief"><a class="titlelink" href="index.html">C++ Async Framework (beta)</a></div>
3636
</td>
37-
<td style="float: right; padding-right: 40px; padding-top: 15px;">
37+
<td style="float: right; padding-right: 15px; padding-top: 15px;">
3838
<a href="https://github.com/userver-framework/" rel="noopener" target="_blank" class="titlelink">
3939
<img src="github_logo.svg" alt="Github"/>
4040
</a>
@@ -1278,11 +1278,8 @@
12781278
<!-- HTML footer for doxygen 1.8.13-->
12791279
<!-- start footer part -->
12801280
<hr class="footer"/>
1281-
<a id='page_edit' style="float:left; padding-left: 7pt;" href="#">⚒ Редактировать страницу</a>
12821281
<address class="footer"><small>
1283-
Generated by &#160;<a href="http://www.doxygen.org/index.html">
1284-
<img class="footer" src="doxygen.png" alt="doxygen"/>
1285-
</a> 1.9.4
1282+
Generated by <a href="http://www.doxygen.org/index.html">Doxygen</a> 1.9.4
12861283
</small></address>
12871284
<script type="text/javascript">
12881285
const LOWER_CASE_TRANSLITTERATION_MAPPING = {
@@ -1305,19 +1302,6 @@
13051302
return p.innerHTML;
13061303
};
13071304
}();
1308-
function setup_page_edit() {
1309-
let href = window.location.href;
1310-
const idx = href.indexOf('md_ru_');
1311-
if (idx === -1) {
1312-
$('#page_edit').hide();
1313-
return;
1314-
}
1315-
href = href.substring(idx).split('.html')[0];
1316-
href = href.split('#')[0];
1317-
href = href.replace('md_ru_', 'https://wiki.yandex-team.ru/taxi/backend/');
1318-
href = href.replaceAll('_', '/');
1319-
$('#page_edit').attr("href", href + '/.edit');
1320-
}
13211305
function draw_toc() {
13221306
let headers = $(':header');
13231307
if (headers.length === 0) {
@@ -1402,29 +1386,34 @@
14021386
if (document.getElementById('landing_logo_id') === null) {
14031387
return false;
14041388
}
1405-
$('#titlearea').hide();
1406-
const main_nav = $('#main-nav')
1407-
main_nav.addClass('main-nav-landing');
1408-
main_nav.append('<hr>');
1409-
$('.header').hide();
1410-
$('body').css('background-color', 'black');
1411-
$('#page_edit').hide();
1389+
$(function() {
1390+
$('#titlearea').hide();
1391+
const main_nav = $('#main-nav')
1392+
main_nav.addClass('main-nav-landing');
1393+
main_nav.append('<hr>');
1394+
$('.header').hide();
1395+
$('body').css('background-color', 'black');
1396+
$('#page_edit').hide();
1397+
});
14121398
return true;
14131399
}
14141400
function sticky_menu() {
14151401
const main_nav = $('#main-nav');
14161402
const menu_y_position = 94;
14171403
const search_results_window = $('#MSearchResultsWindow');
1404+
const search_select_window = $('#MSearchSelectWindow');
14181405
var menu_is_sticky = false;
14191406
const stick = function () {
14201407
if ($(this).scrollTop() > menu_y_position) {
14211408
if (menu_is_sticky) return;
14221409
search_results_window.addClass('stickySearchResults');
1410+
search_select_window.addClass('stickySearchResults');
14231411
main_nav.addClass('stickyHeader');
14241412
menu_is_sticky = true;
14251413
} else {
14261414
if (!menu_is_sticky) return;
14271415
search_results_window.removeClass('stickySearchResults');
1416+
search_select_window.removeClass('stickySearchResults');
14281417
// 'top' property of the results window is computed by Doxygen JS
14291418
// and it may give bad results if the computation is invoked at the
14301419
// middle of the page.
@@ -1436,7 +1425,7 @@
14361425
menu_is_sticky = false;
14371426
}
14381427
};
1439-
stick(); // on page refresh draw the menu on a right position
1428+
stick(); // on page refresh draw the menu on the right position
14401429
$(window).on("scroll", stick);
14411430
}
14421431
function telegram_channel_language() {
@@ -1447,14 +1436,16 @@
14471436
}
14481437
}
14491438
}
1450-
$(function() {
1451-
if (setup_if_landing()) return;
1452-
draw_toc();
1453-
highlight_code();
1454-
setup_page_edit();
1455-
telegram_channel_language();
1456-
sticky_menu();
1457-
});
1439+
// We do not use $(function() { ... }); because
1440+
// * all the elements (except menue parts) are already parsed up above
1441+
// * skipping it speedups page load
1442+
// * with it Firefox does not scroll to a JS generated anchor links
1443+
if (!setup_if_landing()) {
1444+
draw_toc();
1445+
highlight_code();
1446+
telegram_channel_language();
1447+
sticky_menu();
1448+
}
14581449
</script>
14591450
</body>
14601451
</html>

classes.html

Lines changed: 25 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</div>
3535
<div id="projectbrief"><a class="titlelink" href="index.html">C++ Async Framework (beta)</a></div>
3636
</td>
37-
<td style="float: right; padding-right: 40px; padding-top: 15px;">
37+
<td style="float: right; padding-right: 15px; padding-top: 15px;">
3838
<a href="https://github.com/userver-framework/" rel="noopener" target="_blank" class="titlelink">
3939
<img src="github_logo.svg" alt="Github"/>
4040
</a>
@@ -166,11 +166,8 @@
166166
<!-- HTML footer for doxygen 1.8.13-->
167167
<!-- start footer part -->
168168
<hr class="footer"/>
169-
<a id='page_edit' style="float:left; padding-left: 7pt;" href="#">⚒ Редактировать страницу</a>
170169
<address class="footer"><small>
171-
Generated by &#160;<a href="http://www.doxygen.org/index.html">
172-
<img class="footer" src="doxygen.png" alt="doxygen"/>
173-
</a> 1.9.4
170+
Generated by <a href="http://www.doxygen.org/index.html">Doxygen</a> 1.9.4
174171
</small></address>
175172
<script type="text/javascript">
176173
const LOWER_CASE_TRANSLITTERATION_MAPPING = {
@@ -193,19 +190,6 @@
193190
return p.innerHTML;
194191
};
195192
}();
196-
function setup_page_edit() {
197-
let href = window.location.href;
198-
const idx = href.indexOf('md_ru_');
199-
if (idx === -1) {
200-
$('#page_edit').hide();
201-
return;
202-
}
203-
href = href.substring(idx).split('.html')[0];
204-
href = href.split('#')[0];
205-
href = href.replace('md_ru_', 'https://wiki.yandex-team.ru/taxi/backend/');
206-
href = href.replaceAll('_', '/');
207-
$('#page_edit').attr("href", href + '/.edit');
208-
}
209193
function draw_toc() {
210194
let headers = $(':header');
211195
if (headers.length === 0) {
@@ -290,29 +274,34 @@
290274
if (document.getElementById('landing_logo_id') === null) {
291275
return false;
292276
}
293-
$('#titlearea').hide();
294-
const main_nav = $('#main-nav')
295-
main_nav.addClass('main-nav-landing');
296-
main_nav.append('<hr>');
297-
$('.header').hide();
298-
$('body').css('background-color', 'black');
299-
$('#page_edit').hide();
277+
$(function() {
278+
$('#titlearea').hide();
279+
const main_nav = $('#main-nav')
280+
main_nav.addClass('main-nav-landing');
281+
main_nav.append('<hr>');
282+
$('.header').hide();
283+
$('body').css('background-color', 'black');
284+
$('#page_edit').hide();
285+
});
300286
return true;
301287
}
302288
function sticky_menu() {
303289
const main_nav = $('#main-nav');
304290
const menu_y_position = 94;
305291
const search_results_window = $('#MSearchResultsWindow');
292+
const search_select_window = $('#MSearchSelectWindow');
306293
var menu_is_sticky = false;
307294
const stick = function () {
308295
if ($(this).scrollTop() > menu_y_position) {
309296
if (menu_is_sticky) return;
310297
search_results_window.addClass('stickySearchResults');
298+
search_select_window.addClass('stickySearchResults');
311299
main_nav.addClass('stickyHeader');
312300
menu_is_sticky = true;
313301
} else {
314302
if (!menu_is_sticky) return;
315303
search_results_window.removeClass('stickySearchResults');
304+
search_select_window.removeClass('stickySearchResults');
316305
// 'top' property of the results window is computed by Doxygen JS
317306
// and it may give bad results if the computation is invoked at the
318307
// middle of the page.
@@ -324,7 +313,7 @@
324313
menu_is_sticky = false;
325314
}
326315
};
327-
stick(); // on page refresh draw the menu on a right position
316+
stick(); // on page refresh draw the menu on the right position
328317
$(window).on("scroll", stick);
329318
}
330319
function telegram_channel_language() {
@@ -335,14 +324,16 @@
335324
}
336325
}
337326
}
338-
$(function() {
339-
if (setup_if_landing()) return;
340-
draw_toc();
341-
highlight_code();
342-
setup_page_edit();
343-
telegram_channel_language();
344-
sticky_menu();
345-
});
327+
// We do not use $(function() { ... }); because
328+
// * all the elements (except menue parts) are already parsed up above
329+
// * skipping it speedups page load
330+
// * with it Firefox does not scroll to a JS generated anchor links
331+
if (!setup_if_landing()) {
332+
draw_toc();
333+
highlight_code();
334+
telegram_channel_language();
335+
sticky_menu();
336+
}
346337
</script>
347338
</body>
348339
</html>

customdoxygen.css

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -242,23 +242,25 @@ div.fragment {
242242
text-decoration: none; /* do not undeline */
243243
}
244244

245-
/* Enlarge search box: doxygen 1.9.4 */
246-
#searchBoxPos2 > #MSearchBox {
247-
transform: scale(1.3) translateX(-35px);
248-
}
245+
@media (min-width: 768px) {
246+
/* Enlarge search box: doxygen 1.9.4 */
247+
#searchBoxPos2 > #MSearchBox {
248+
transform: scale(1.3) translateX(-10px);
249+
}
249250

250-
/* Enlarge search box: doxygen 1.8.* */
251-
:not(#searchBoxPos2) > #MSearchBox > span {
252-
transform: scale(1.3) translateX(-35px);
253-
}
251+
/* Enlarge search box: doxygen 1.8.* */
252+
:not(#searchBoxPos2) > #MSearchBox > span {
253+
transform: scale(1.3) translateX(-35px);
254+
}
254255

255-
:not(#searchBoxPos2) > #MSearchBox > span.right {
256-
transform: scale(1.3);
257-
}
256+
:not(#searchBoxPos2) > #MSearchBox > span.right {
257+
transform: scale(1.3);
258+
}
258259

259-
/* Enlarge search dropdown selection */
260-
#MSearchSelectWindow {
261-
transform: scale(1.3) translate(-35px, 10px);
260+
/* Enlarge search dropdown selection */
261+
#MSearchSelectWindow {
262+
transform: scale(1.3) translate(-35px, 10px);
263+
}
262264
}
263265

264266
/* Force examples to have same proportions */

d0/d01/classstorages_1_1postgres_1_1InvalidInputBufferSize-members.html

Lines changed: 25 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</div>
3535
<div id="projectbrief"><a class="titlelink" href="../../index.html">C++ Async Framework (beta)</a></div>
3636
</td>
37-
<td style="float: right; padding-right: 40px; padding-top: 15px;">
37+
<td style="float: right; padding-right: 15px; padding-top: 15px;">
3838
<a href="https://github.com/userver-framework/" rel="noopener" target="_blank" class="titlelink">
3939
<img src="../../github_logo.svg" alt="Github"/>
4040
</a>
@@ -99,11 +99,8 @@
9999
<!-- HTML footer for doxygen 1.8.13-->
100100
<!-- start footer part -->
101101
<hr class="footer"/>
102-
<a id='page_edit' style="float:left; padding-left: 7pt;" href="#">⚒ Редактировать страницу</a>
103102
<address class="footer"><small>
104-
Generated by &#160;<a href="http://www.doxygen.org/index.html">
105-
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
106-
</a> 1.9.4
103+
Generated by <a href="http://www.doxygen.org/index.html">Doxygen</a> 1.9.4
107104
</small></address>
108105
<script type="text/javascript">
109106
const LOWER_CASE_TRANSLITTERATION_MAPPING = {
@@ -126,19 +123,6 @@
126123
return p.innerHTML;
127124
};
128125
}();
129-
function setup_page_edit() {
130-
let href = window.location.href;
131-
const idx = href.indexOf('md_ru_');
132-
if (idx === -1) {
133-
$('#page_edit').hide();
134-
return;
135-
}
136-
href = href.substring(idx).split('.html')[0];
137-
href = href.split('#')[0];
138-
href = href.replace('md_ru_', 'https://wiki.yandex-team.ru/taxi/backend/');
139-
href = href.replaceAll('_', '/');
140-
$('#page_edit').attr("href", href + '/.edit');
141-
}
142126
function draw_toc() {
143127
let headers = $(':header');
144128
if (headers.length === 0) {
@@ -223,29 +207,34 @@
223207
if (document.getElementById('landing_logo_id') === null) {
224208
return false;
225209
}
226-
$('#titlearea').hide();
227-
const main_nav = $('#main-nav')
228-
main_nav.addClass('main-nav-landing');
229-
main_nav.append('<hr>');
230-
$('.header').hide();
231-
$('body').css('background-color', 'black');
232-
$('#page_edit').hide();
210+
$(function() {
211+
$('#titlearea').hide();
212+
const main_nav = $('#main-nav')
213+
main_nav.addClass('main-nav-landing');
214+
main_nav.append('<hr>');
215+
$('.header').hide();
216+
$('body').css('background-color', 'black');
217+
$('#page_edit').hide();
218+
});
233219
return true;
234220
}
235221
function sticky_menu() {
236222
const main_nav = $('#main-nav');
237223
const menu_y_position = 94;
238224
const search_results_window = $('#MSearchResultsWindow');
225+
const search_select_window = $('#MSearchSelectWindow');
239226
var menu_is_sticky = false;
240227
const stick = function () {
241228
if ($(this).scrollTop() > menu_y_position) {
242229
if (menu_is_sticky) return;
243230
search_results_window.addClass('stickySearchResults');
231+
search_select_window.addClass('stickySearchResults');
244232
main_nav.addClass('stickyHeader');
245233
menu_is_sticky = true;
246234
} else {
247235
if (!menu_is_sticky) return;
248236
search_results_window.removeClass('stickySearchResults');
237+
search_select_window.removeClass('stickySearchResults');
249238
// 'top' property of the results window is computed by Doxygen JS
250239
// and it may give bad results if the computation is invoked at the
251240
// middle of the page.
@@ -257,7 +246,7 @@
257246
menu_is_sticky = false;
258247
}
259248
};
260-
stick(); // on page refresh draw the menu on a right position
249+
stick(); // on page refresh draw the menu on the right position
261250
$(window).on("scroll", stick);
262251
}
263252
function telegram_channel_language() {
@@ -268,14 +257,16 @@
268257
}
269258
}
270259
}
271-
$(function() {
272-
if (setup_if_landing()) return;
273-
draw_toc();
274-
highlight_code();
275-
setup_page_edit();
276-
telegram_channel_language();
277-
sticky_menu();
278-
});
260+
// We do not use $(function() { ... }); because
261+
// * all the elements (except menue parts) are already parsed up above
262+
// * skipping it speedups page load
263+
// * with it Firefox does not scroll to a JS generated anchor links
264+
if (!setup_if_landing()) {
265+
draw_toc();
266+
highlight_code();
267+
telegram_channel_language();
268+
sticky_menu();
269+
}
279270
</script>
280271
</body>
281272
</html>

0 commit comments

Comments
 (0)