Skip to content

Commit eee0061

Browse files
committed
Remove mkshort options. Fixes #982
1 parent 6357264 commit eee0061

File tree

6 files changed

+2
-204
lines changed

6 files changed

+2
-204
lines changed

garmin.cc

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ static char* poweroff = nullptr;
7171
static char* eraset = nullptr;
7272
static char* resettime = nullptr;
7373
static char* snlen = nullptr;
74-
static char* snwhiteopt = nullptr;
7574
static char* deficon = nullptr;
7675
static char* category = nullptr;
7776
static char* categorybitsopt = nullptr;
@@ -94,10 +93,6 @@ QVector<arglist_t> garmin_args = {
9493
"snlen", &snlen, "Length of generated shortnames", nullptr,
9594
ARGTYPE_INT, "1", nullptr, nullptr
9695
},
97-
{
98-
"snwhite", &snwhiteopt, "Allow whitespace synth. shortnames",
99-
nullptr, ARGTYPE_BOOL, ARG_NOMINMAX, nullptr
100-
},
10196
{ "deficon", &deficon, "Default icon name", nullptr, ARGTYPE_STRING, ARG_NOMINMAX, nullptr },
10297
{
10398
"get_posn", &getposn, "Return current position as a waypoint",
@@ -265,7 +260,6 @@ rw_init(const QString& fname)
265260
case 786: /* HC model */
266261
case 957: /* Legend HC */
267262
receiver_short_length = 14;
268-
snwhiteopt = xstrdup("1");
269263
receiver_must_upper = 0;
270264
/* This might be 8859-1 */
271265
receiver_charset = "windows-1252";
@@ -323,10 +317,6 @@ rw_init(const QString& fname)
323317
setshort_length(mkshort_handle, receiver_short_length);
324318
}
325319

326-
if (snwhiteopt) {
327-
setshort_whitespace_ok(mkshort_handle, xstrtoi(snwhiteopt, nullptr, 10));
328-
}
329-
330320
/*
331321
* Until Garmins documents how to determine valid character space
332322
* for the new models, we just release this safety check manually.

ozi.cc

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,6 @@ static int route_wpt_count;
8787
static int new_track;
8888

8989
static char* snlenopt = nullptr;
90-
static char* snwhiteopt = nullptr;
91-
static char* snupperopt = nullptr;
92-
static char* snuniqueopt = nullptr;
9390
static char* wptfgcolor = nullptr;
9491
static char* wptbgcolor = nullptr;
9592
static char* pack_opt = nullptr;
@@ -114,18 +111,6 @@ QVector<arglist_t> ozi_args = {
114111
"snlen", &snlenopt, "Max synthesized shortname length",
115112
"32", ARGTYPE_INT, "1", nullptr, nullptr
116113
},
117-
{
118-
"snwhite", &snwhiteopt, "Allow whitespace synth. shortnames",
119-
nullptr, ARGTYPE_BOOL, ARG_NOMINMAX, nullptr
120-
},
121-
{
122-
"snupper", &snupperopt, "UPPERCASE synth. shortnames",
123-
nullptr, ARGTYPE_BOOL, ARG_NOMINMAX, nullptr
124-
},
125-
{
126-
"snunique", &snuniqueopt, "Make synth. shortnames unique",
127-
nullptr, ARGTYPE_BOOL, ARG_NOMINMAX, nullptr
128-
},
129114
{
130115
"wptfgcolor", &wptfgcolor, "Waypoint foreground color",
131116
"black", ARGTYPE_STRING, ARG_NOMINMAX, nullptr
@@ -467,18 +452,6 @@ wr_init(const QString& fname)
467452

468453
setshort_length(mkshort_handle, xstrtoi(snlenopt, nullptr, 10));
469454

470-
if (snwhiteopt) {
471-
setshort_whitespace_ok(mkshort_handle, xstrtoi(snwhiteopt, nullptr, 10));
472-
}
473-
474-
if (snupperopt) {
475-
setshort_mustupper(mkshort_handle, xstrtoi(snupperopt, nullptr, 10));
476-
}
477-
478-
if (snuniqueopt) {
479-
setshort_mustuniq(mkshort_handle, xstrtoi(snuniqueopt, nullptr, 10));
480-
}
481-
482455
setshort_badchars(mkshort_handle, "\",");
483456
}
484457

reference/format3.txt

Lines changed: 0 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@ option xcsv style Full path to XCSV style file file https://www.gpsbabel.org/
44

55
option xcsv snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snlen
66

7-
option xcsv snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snwhite
8-
9-
option xcsv snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snupper
10-
11-
option xcsv snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snunique
12-
137
option xcsv urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_urlbase
148

159
option xcsv prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_prefer_shortnames
@@ -20,12 +14,6 @@ internal rw---- tabsep All database fields on one tab-separated line xcsv
2014
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html
2115
option tabsep snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snlen
2216

23-
option tabsep snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snwhite
24-
25-
option tabsep snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snupper
26-
27-
option tabsep snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snunique
28-
2917
option tabsep urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_urlbase
3018

3119
option tabsep prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_prefer_shortnames
@@ -38,12 +26,6 @@ file rw---- cambridge dat Cambridge/Winpilot glider software xcsv
3826
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html
3927
option cambridge snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snlen
4028

41-
option cambridge snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snwhite
42-
43-
option cambridge snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snupper
44-
45-
option cambridge snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snunique
46-
4729
option cambridge urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_urlbase
4830

4931
option cambridge prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_prefer_shortnames
@@ -56,12 +38,6 @@ file rw---- csv Comma separated values xcsv
5638
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html
5739
option csv snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snlen
5840

59-
option csv snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snwhite
60-
61-
option csv snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snupper
62-
63-
option csv snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snunique
64-
6541
option csv urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_urlbase
6642

6743
option csv prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_prefer_shortnames
@@ -72,12 +48,6 @@ internal rw---- custom Custom "Everything" Style xcsv
7248
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html
7349
option custom snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snlen
7450

75-
option custom snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snwhite
76-
77-
option custom snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snupper
78-
79-
option custom snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snunique
80-
8151
option custom urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_urlbase
8252

8353
option custom prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_prefer_shortnames
@@ -88,12 +58,6 @@ file --rw-- iblue747 csv Data Logger iBlue747 csv xcsv
8858
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html
8959
option iblue747 snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snlen
9060

91-
option iblue747 snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snwhite
92-
93-
option iblue747 snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snupper
94-
95-
option iblue747 snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snunique
96-
9761
option iblue747 urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_urlbase
9862

9963
option iblue747 prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_prefer_shortnames
@@ -104,12 +68,6 @@ file --rw-- iblue757 csv Data Logger iBlue757 csv xcsv
10468
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html
10569
option iblue757 snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snlen
10670

107-
option iblue757 snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snwhite
108-
109-
option iblue757 snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snupper
110-
111-
option iblue757 snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snunique
112-
11371
option iblue757 urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_urlbase
11472

11573
option iblue757 prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_prefer_shortnames
@@ -148,12 +106,6 @@ file rw---- garmin301 Garmin 301 Custom position and heartrate xcsv
148106
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html
149107
option garmin301 snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snlen
150108

151-
option garmin301 snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snwhite
152-
153-
option garmin301 snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snupper
154-
155-
option garmin301 snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snunique
156-
157109
option garmin301 urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_urlbase
158110

159111
option garmin301 prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_prefer_shortnames
@@ -164,12 +116,6 @@ file --rw-- garmin_g1000 csv Garmin G1000 datalog input filter file xcsv
164116
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html
165117
option garmin_g1000 snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snlen
166118

167-
option garmin_g1000 snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snwhite
168-
169-
option garmin_g1000 snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snupper
170-
171-
option garmin_g1000 snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snunique
172-
173119
option garmin_g1000 urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_urlbase
174120

175121
option garmin_g1000 prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_prefer_shortnames
@@ -212,12 +158,6 @@ file rw---- garmin_poi Garmin POI database xcsv
212158
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html
213159
option garmin_poi snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snlen
214160

215-
option garmin_poi snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snwhite
216-
217-
option garmin_poi snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snupper
218-
219-
option garmin_poi snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snunique
220-
221161
option garmin_poi urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_urlbase
222162

223163
option garmin_poi prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_prefer_shortnames
@@ -258,8 +198,6 @@ serial rwrwrw garmin Garmin serial/USB protocol garmin
258198
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html
259199
option garmin snlen Length of generated shortnames integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_snlen
260200

261-
option garmin snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_snwhite
262-
263201
option garmin deficon Default icon name string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_deficon
264202

265203
option garmin get_posn Return current position as a waypoint boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_get_posn
@@ -364,12 +302,6 @@ file --rw-- land_air_sea txt GPS Tracking Key Pro text xcsv
364302
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html
365303
option land_air_sea snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snlen
366304

367-
option land_air_sea snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snwhite
368-
369-
option land_air_sea snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snupper
370-
371-
option land_air_sea snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snunique
372-
373305
option land_air_sea urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_urlbase
374306

375307
option land_air_sea prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_prefer_shortnames
@@ -382,12 +314,6 @@ file rw---- arc txt GPSBabel arc filter file xcsv
382314
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html
383315
option arc snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snlen
384316

385-
option arc snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snwhite
386-
387-
option arc snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snupper
388-
389-
option arc snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snunique
390-
391317
option arc urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_urlbase
392318

393319
option arc prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_prefer_shortnames
@@ -398,12 +324,6 @@ file rw---- gpsdrive GpsDrive Format xcsv
398324
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html
399325
option gpsdrive snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snlen
400326

401-
option gpsdrive snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snwhite
402-
403-
option gpsdrive snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snupper
404-
405-
option gpsdrive snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snunique
406-
407327
option gpsdrive urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_urlbase
408328

409329
option gpsdrive prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_prefer_shortnames
@@ -414,12 +334,6 @@ file rw---- gpsdrivetrack GpsDrive Format for Tracks xcsv
414334
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html
415335
option gpsdrivetrack snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snlen
416336

417-
option gpsdrivetrack snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snwhite
418-
419-
option gpsdrivetrack snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snupper
420-
421-
option gpsdrivetrack snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snunique
422-
423337
option gpsdrivetrack urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_urlbase
424338

425339
option gpsdrivetrack prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_prefer_shortnames
@@ -624,12 +538,6 @@ option ozi pack Write all tracks into one file boolean https://www.gpsbabel.o
624538

625539
option ozi snlen Max synthesized shortname length integer 32 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snlen
626540

627-
option ozi snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snwhite
628-
629-
option ozi snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snupper
630-
631-
option ozi snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snunique
632-
633541
option ozi wptfgcolor Waypoint foreground color string black https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_wptfgcolor
634542

635543
option ozi wptbgcolor Waypoint background color string yellow https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_wptbgcolor
@@ -694,12 +602,6 @@ file rw---- openoffice Tab delimited fields useful for OpenOffice xcsv
694602
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html
695603
option openoffice snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snlen
696604

697-
option openoffice snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snwhite
698-
699-
option openoffice snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snupper
700-
701-
option openoffice snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snunique
702-
703605
option openoffice urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_urlbase
704606

705607
option openoffice prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_prefer_shortnames

0 commit comments

Comments
 (0)