Update userguide and welcome pages.

This is the first userguide export on the Postgres-based translation tool
(previously it used MySQL), so please double-check it extra carefully.
(I spotted a few minor problems in the export and fixed the relevant
bugs already.)
This commit is contained in:
waddlesplash
2018-09-26 01:46:30 -04:00
parent fdb2588484
commit 6f415a4a02
1018 changed files with 6484 additions and 5976 deletions
+24 -4
View File
@@ -4,7 +4,7 @@
<head>
<!--
*
* Copyright 2015-2017, Haiku. All rights reserved.
* Copyright 2015-2018, Haiku. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
@@ -24,7 +24,7 @@
<body>
<div id="banner">
<div><span>User guide</span></div>
<div><span>Používateľská príručka</span></div>
</div>
<div class="nav">
@@ -59,7 +59,7 @@
<div id="content">
<div>
<div class="box-info">The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.</div>
<div class="box-info">Preklad tejto stránky zatiaľ nie je dokončený. Dovtedy sa nedokončené časti zobrazia v anglickom origináli.</div>
<h2><img src="../../images/apps-images/debugger-icon_64.png" alt="debugger-icon_64.png" width="64" height="64" />Ladiaci nástroj</h2>
<table summary="layout" border="0" cellspacing="0" cellpadding="2">
@@ -79,6 +79,27 @@
<li><p><span class="button">Uložiť hlásenie</span> vytvorí hlásenie o chybe, ktoré sa uloží ako textový súbor na Ploche a je možné ho poslať emailom vývojárovi aplikácie, ktorá havarovala alebo prípadne pripojiť k hláseniu v nástroji na sledovanie chýb.<br />
Hlásenie o chybe obsahuje informácie o vašom hardvéri (typ CPU a použitej pamäte atď.), presnú verziu Haiku a všetky dostupné informácie o stave systému, ktoré by mohli súvisieť s haváriou.</p></li>
</ul>
<p>The default action when a crash happens can be configured with a text file <span class="path">~/config/settings/system/debug_server/settings</span>.<br />
The file takes on a driver_settings style format as follows:</p>
<pre>default_action user
executable_actions {
app1 log
/path/app2* debug
}</pre>
<p>Valid values for a default_action are:</p>
<table summary="action values" border="0" cellspacing="0" cellpadding="2">
<tr><td>user</td><td style="width:30px"></td><td>Prompt the user for action.</td></tr>
<tr><td>kill</td><td></td><td>Silently terminate the crashing team.</td></tr>
<tr><td>debug</td><td></td><td>Attach the debugger to the crashing team.</td></tr>
<tr><td>log / report</td><td></td><td>Save a crash report and terminate the team.</td></tr>
<tr><td>core</td><td></td><td>Save a (possibly very large) core file and terminate the team.</td></tr>
</table>
<p>If no default_action is specified, "user" is assumed.</p>
<p>The executable_actions subsection contains individual overrides of the default. These take the form above, where the individual lines can be only a team name, or a path, with wildcards.</p>
<p><br /></p>
<hr />
<p><br /></p>
<p>Popis práce so samotným ladiacim nástrojom je mimo zameranie tohto sprievodcu, ktorý popisuje potreby bežného používateľa Haiku. Pre úplnosť, tu je okno, ktoré uvidíte ak vo vyššie uvedenom upozornení zvolíte možnosť <span class="button">Ladiť</span>:</p>
<img src="../images/apps-images/debugger.png" alt="debugger.png" />
<p>As you'll quickly see when you start poking around a bit, the Debugger is one of the most complex and sophisticated applications for Haiku. If you're a developer and are used to graphical debuggers on other platforms, many features will be familiar to you.</p>
@@ -87,7 +108,6 @@ Hlásenie o chybe obsahuje informácie o vašom hardvéri (typ CPU a použitej p
<tr><td class="onelinetop"><a href="https://www.dropbox.com/s/e6gx39r0asc2t8f/DebuggerReferenceManual.pdf?dl=1">Debugger Reference Manual</a></td><td></td><td>This is the most in-depth source on how to work with the Debugger.</td></tr>
<tr><td><a href="https://www.haiku-os.org/blog/anevilyak/">Príspevky na blogu</a></td><td> </td><td>There are a few articles on the Debugger, mostly by Rene Gollent after implementing a new feature.</td></tr>
<tr><td class="onelinetop"><a href="https://www.youtube.com/watch?v=n-NDFwtmQcI&amp;list=PL2KiE-VO9zk-9XPmfusEDaOFd_7AiVKzz">Video z BeGeistert 026</a></td><td> </td><td>A video from the BeGeistert meeting in 2012, in which Ingo Weinhold demonstrates the state of the Debugger back then and shows other interesting tools like the profiler to hunt down bottlenecks.</td></tr>
<tr><td class="onelinetop"><a href="http://cgit.haiku-os.org/haiku/commit/?id=hrev46547">Default action when crashing</a></td><td> </td><td>This commit message describes how to change the behavior when something crashes. For example, you can have the system always save a crash report instead of asking the user by showing the usual crash alert. You can limit that behavior to specific applications.</td></tr>
</table>
</div>