Added links to the ADIF and DXCC websites.

pull/17/head
Christian Jacobs 2013-10-04 19:59:11 +01:00
rodzic dfaadaa6c2
commit 0310984f56
4 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -138,7 +138,7 @@ To create a new log, click \texttt{New Log} in the \texttt{Logbook} menu and ent
The log name must be unique (i.e. it cannot already exist in the logbook). Furthermore, it can only be composed of alphanumeric characters and the underscore character, and the first character in the name must not be a number.
Note: When logs are stored in the database file, field/column names from the ADIF standard are used. However, please note that only the following subset of all the ADIF fields is considered: CALL, QSO\_DATE, TIME\_ON, FREQ, BAND, MODE, TX\_PWR, RST\_SENT, RST\_RCVD, QSL\_SENT, QSL\_RCVD, NOTES, NAME, ADDRESS, STATE, COUNTRY, DXCC, CQZ, ITUZ, IOTA.
Note: When logs are stored in the database file, field/column names from the ADIF standard are used. However, please note that only the following subset of all the ADIF fields is considered: CALL, QSO\_DATE, TIME\_ON, FREQ, BAND, MODE, TX\_PWR, RST\_SENT, RST\_RCVD, QSL\_SENT, QSL\_RCVD, NOTES, NAME, ADDRESS, STATE, COUNTRY, DXCC, CQZ, ITUZ, IOTA. Visit http://adif.org/ for more information about these fields.
\section{Renaming a log}
To rename the currently selected log, click \texttt{Rename Selected Log} in the \texttt{Logbook} menu. Remember that the log's new name cannot be the same as another log in the logbook.
@ -231,7 +231,7 @@ The grey line tool (see Figure \ref{fig:grey_line}) can be used to check which p
\end{figure}
\section{Awards}
The awards data is updated each time a record is added, deleted, or modified. Currently only the DXCC award is supported (see Figure \ref{fig:awards}).
The awards progress tracker (see Figure \ref{fig:awards}) updates its data each time a record is added, deleted, or modified. Currently only the DXCC award is supported (visit http://www.arrl.org/dxcc for more information).
\begin{figure}
\centering

Wyświetl plik

@ -87,7 +87,7 @@ DATA_TYPES = ["A", "B", "N", "S", "I", "D", "T", "M", "G", "L", "E"]
ADIF_VERSION = "1.0"
class ADIF:
""" The ADIF class supplies methods for reading, parsing, and writing log files in the Amateur Data Interchange Format (ADIF). """
""" The ADIF class supplies methods for reading, parsing, and writing log files in the Amateur Data Interchange Format (ADIF). For more information, visit http://adif.org/ """
def __init__(self):
# Class for I/O of files using the Amateur Data Interchange Format (ADIF).

Wyświetl plik

@ -22,7 +22,7 @@ from gi.repository import Gtk, GObject
import logging
class Awards(Gtk.VBox):
""" A tool for tracking progress towards an award. Currently this only supports the DXCC award. """
""" A tool for tracking progress towards an award. Currently this only supports the DXCC award. For more information visit http://www.arrl.org/dxcc """
def __init__(self, parent):
""" Set up a table for progress tracking purposes. """

Wyświetl plik

@ -24,7 +24,7 @@ setup(name='PyQSO',
version='0.1a',
description='A contact logging tool for amateur radio operators.',
author='Christian Jacobs',
url='https://launchpad.net/pyqso',
url='https://github.com/ctjacobs/pyqso',
packages=['pyqso'],
package_dir = {'pyqso': 'pyqso'},
scripts=["bin/pyqso"],