mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Introduces the ability to add comments to QSOs by enclosing text in angle brackets, updates the UI to display a new Comment column, and documents the feature in the syntax help. The JavaScript logic is updated to extract, display, and save comments with each QSO.
66 lines
1.9 KiB
PHP
66 lines
1.9 KiB
PHP
<p><?php echo lang('qso_simplefle_syntax_help_ln1') ?>:</p>
|
|
<p><?php echo lang('qso_simplefle_syntax_help_ln2') ?></p>
|
|
<p><?php echo lang('qso_simplefle_syntax_help_ln3') ?></p>
|
|
<p><?php echo lang('qso_simplefle_syntax_help_ln4') ?></p>
|
|
<pre>
|
|
20m ssb
|
|
2134 2m0sql
|
|
</pre>
|
|
<p><?php echo lang('qso_simplefle_syntax_help_ln5') ?><p>
|
|
<p><?php echo lang('qso_simplefle_syntax_help_ln6') ?></p>
|
|
<pre>
|
|
20m ssb
|
|
2134 2m0sql
|
|
6 la8aja 47 46
|
|
</pre>
|
|
<p><?php echo lang('qso_simplefle_syntax_help_ln7') ?></p>
|
|
<p><?php echo lang('qso_simplefle_syntax_help_ln8') ?></p>
|
|
<pre>
|
|
20m ssb
|
|
2134 2m0sql
|
|
6 la8aja 47 46
|
|
date 2021-05-14
|
|
40m
|
|
40 dj7nt
|
|
day ++
|
|
df3et
|
|
</pre>
|
|
<p><?php echo lang('qso_simplefle_syntax_help_ln9') ?></p>
|
|
|
|
<p><strong>Satellite QSOs:</strong></p>
|
|
<p>For satellite contacts, use the <code>sat</code> or <code>satellite</code> keyword, followed by the satellite name and mode. The system will automatically populate frequencies from the satellite database.</p>
|
|
<pre>
|
|
sat
|
|
ao-7 V/U
|
|
1234 m0abc
|
|
1236 g4xyz
|
|
|
|
satellite
|
|
fo-29 U/L
|
|
1300 dl1abc 59 57
|
|
</pre>
|
|
<p>Supported satellite modes include: V/U, U/V, L/S, V, U, etc.</p>
|
|
|
|
<p><strong>Gridsquares:</strong></p>
|
|
<p>You can include gridsquares (locators) on the same line as the callsign:</p>
|
|
<pre>
|
|
20m ssb
|
|
1234 g0abi io91
|
|
1244 g0iiq io92tn
|
|
|
|
40m cw
|
|
1300 dl1abc jn48 59 57
|
|
</pre>
|
|
<p>Gridsquares can be 4, 6, or 8 characters (e.g., IO91, IO92TN, JO01AA55).</p>
|
|
|
|
<p><strong>Comments:</strong></p>
|
|
<p>You can add comments to any QSO by enclosing text in angle brackets. The comment will be saved in the QSO's comment field:</p>
|
|
<pre>
|
|
20m ssb
|
|
1234 dl5mo < worked from home station >
|
|
1240 2m0sql < great signal >
|
|
|
|
40m cw
|
|
1300 g4xyz < QRP 5W >
|
|
</pre>
|
|
<p>Everything inside < > will be stored as a comment and won't interfere with callsign or other field parsing.</p>
|