############# Install Instructions ############################# # # Install this program under any name, and make it executable (chmod 755)!! # it gets its installed name from "set programname [file tail [info script]]" # # The program reads a rc file: .${programname}rc # if the file does not exist the progam uses the names: # "logfiles" for the log directory and # ".${programname}.dat" for the logfile # # i.e. if the program is installed under the name "hamlog" # then the log is stored in the file ~/logfiles/hamlog.dat # # If separate logs are preferred for different operations # make symbolic links to the actual program with the prefered # logfile names without the .dat suffixt and you are done. # or use the rc file to set the logfile name. # # for example: ln -s MyMALog.tcl contest # when invoked as "contest" it reads the initfile .contestrc # # the rc file uses the following syntax, see .*rc file for full list: # # MY_CALL your_callsign # MYNAME your_name # QTH your_own_qth # ADDRESS your_mailing_address # CQZ your_cq_zone # IOTA your_iota_zone # ITUZ your_itu_zone # LIC your_licence_year # LATLONG your_latitud_and_longitude # GRIDSQUARE your_grid_locator # LOGDIR your_logdir_name # DATABASE your_database_name your_logbook_name . . # LIBRARY your_library_dir # DXCC_FILE your_dxccfile_name # OFFSET where to start when looking up old QSO's # EQSL where to start when exporting eQSL # GUI_LANG the GUI language, is or en are currently supported # # dxcc list is used for looking up the country informations # # Download the DXCC file from\ # "http://www.arrl.org/files/infoserv/tech/dxcck2di.txt" # Install it in the LIBRARY directory, see the *rc file. # # Make the following changes to dxcck2di.txt # For the dxcc lookup to work better: #-------------------------------------------------------------------- # CT3:Madeira Is:Af:36:33:-1:33N:17W:CQ9,CT9: # FT_W:Crozet:Af:68:39:+3:46S:52E::FT_W # FT_X:Kerguelen Is:Af:68:39:+5:50S:70E::FT_X # FT_Z:Amsterdam & St Paul Is:Af:68:39:+5:38S:78E::FT_Z # K:United States:NA:06-08:03-05:-5:39N:77W:AA-AL,KA-KZ,NA-NZ,WA-WZ:N,W # OX:Greenland:NA:05,75:40:-3:64N:52W::XP1AB:XP # YU:Serbia:Eu:28:15:+1:45N:21E:4N-4O,YT-YU,YZ: # YU3:Montenegro:Eu:28:15:+1:45N:21E:4N3-4O3,YT3-YU3,YZ3:YU6,4N6-4O6,YT6-YU6,YZ6 # #-------------------------------------------------------------------- # # Remember to install the "gcb" package for Linux # # The program uses Mozilla to lookup callsigns in qrz.com # ############## MySQL instructions: # # Remember to install the "mysqltcl" package on your computer # # On first time start the program will ask for your callsign. # and a password for the database. # To prepare the MySQL admin (root) has to make a database # for you, if your callsign is "TF3MA" then # your database name will be "TF3MA_logbook" # and if your user name is tf3ma, # then this is what has to be done: # # mysql -u root -p # mysql> create database TF3MA_logbook; # mysql> grant all on TF3MA_logbook.* to tf3ma@localhost identified by\ # 'password'; # mysql> exit # # If you want to use different database name edit the rc file DATABASE\ # entry # and make sure you have all grants to that database # #############