mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add duration format to XSLT call
Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
a46cebd1ad
commit
65ee482adb
2 changed files with 7 additions and 3 deletions
2
dive.h
2
dive.h
|
@ -633,7 +633,7 @@ extern int parse_file(const char *filename);
|
|||
extern int parse_csv_file(const char *filename, int time, int depth, int temp, int po2f, int cnsf, int ndlf, int ttsf, int stopdepthf, int pressuref, int sepidx, const char *csvtemplate, int units);
|
||||
extern int parse_seabear_csv_file(const char *filename, int time, int depth, int temp, int po2f, int cnsf, int ndlf, int ttsf, int stopdepthf, int pressuref, int sepidx, const char *csvtemplate, int units);
|
||||
extern int parse_txt_file(const char *filename, const char *csv);
|
||||
extern int parse_manual_file(const char *filename, int separator_index, int units, int dateformat, int number, int date, int time, int duration, int location, int gps, int maxdepth, int meandepth, int buddy, int notes, int weight, int tags, int cylsizef, int startpresf, int endpresf, int o2f, int hef, int airtempf, int watertempf);
|
||||
extern int parse_manual_file(const char *filename, int separator_index, int units, int dateformat, int durationformat, int number, int date, int time, int duration, int location, int gps, int maxdepth, int meandepth, int buddy, int notes, int weight, int tags, int cylsizef, int startpresf, int endpresf, int o2f, int hef, int airtempf, int watertempf);
|
||||
|
||||
extern int save_dives(const char *filename);
|
||||
extern int save_dives_logic(const char *filename, bool select_only);
|
||||
|
|
8
file.c
8
file.c
|
@ -969,11 +969,11 @@ int parse_seabear_csv_file(const char *filename, int timef, int depthf, int temp
|
|||
return ret;
|
||||
}
|
||||
|
||||
int parse_manual_file(const char *filename, int sepidx, int units, int dateformat, int numberf, int datef, int timef, int durationf, int locationf, int gpsf, int maxdepthf, int meandepthf, int buddyf, int notesf, int weightf, int tagsf, int cylsizef, int startpresf, int endpresf, int o2f, int hef, int airtempf, int watertempf)
|
||||
int parse_manual_file(const char *filename, int sepidx, int units, int dateformat, int durationformat, int numberf, int datef, int timef, int durationf, int locationf, int gpsf, int maxdepthf, int meandepthf, int buddyf, int notesf, int weightf, int tagsf, int cylsizef, int startpresf, int endpresf, int o2f, int hef, int airtempf, int watertempf)
|
||||
{
|
||||
struct memblock mem;
|
||||
int pnr = 0;
|
||||
char *params[49];
|
||||
char *params[51];
|
||||
char numberbuf[MAXCOLDIGITS];
|
||||
char datebuf[MAXCOLDIGITS];
|
||||
char timebuf[MAXCOLDIGITS];
|
||||
|
@ -989,6 +989,7 @@ int parse_manual_file(const char *filename, int sepidx, int units, int dateforma
|
|||
char separator_index[MAXCOLDIGITS];
|
||||
char unit[MAXCOLDIGITS];
|
||||
char datefmt[MAXCOLDIGITS];
|
||||
char durationfmt[MAXCOLDIGITS];
|
||||
char cylsizebuf[MAXCOLDIGITS];
|
||||
char startpresbuf[MAXCOLDIGITS];
|
||||
char endpresbuf[MAXCOLDIGITS];
|
||||
|
@ -1020,6 +1021,7 @@ int parse_manual_file(const char *filename, int sepidx, int units, int dateforma
|
|||
snprintf(separator_index, MAXCOLDIGITS, "%d", sepidx);
|
||||
snprintf(unit, MAXCOLDIGITS, "%d", units);
|
||||
snprintf(datefmt, MAXCOLDIGITS, "%d", dateformat);
|
||||
snprintf(durationfmt, MAXCOLDIGITS, "%d", durationformat);
|
||||
snprintf(cylsizebuf, MAXCOLDIGITS, "%d", cylsizef);
|
||||
snprintf(startpresbuf, MAXCOLDIGITS, "%d", startpresf);
|
||||
snprintf(endpresbuf, MAXCOLDIGITS, "%d", endpresf);
|
||||
|
@ -1069,6 +1071,8 @@ int parse_manual_file(const char *filename, int sepidx, int units, int dateforma
|
|||
params[pnr++] = unit;
|
||||
params[pnr++] = "datefmt";
|
||||
params[pnr++] = datefmt;
|
||||
params[pnr++] = "durationfmt";
|
||||
params[pnr++] = durationfmt;
|
||||
params[pnr++] = "cylindersizeField";
|
||||
params[pnr++] = cylsizebuf;
|
||||
params[pnr++] = "startpressureField";
|
||||
|
|
Loading…
Add table
Reference in a new issue