mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
HTML: Fix event value fields.
- The gas event values can contain o2 and he mix in gas change events. - Give a '-' value for events that don't have any sensible values. - Show event value if event type is heading or gaschange. Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
0416a09a1e
commit
bfc919b1c3
2 changed files with 15 additions and 1 deletions
|
@ -37,6 +37,7 @@ void put_HTML_bookmarks(struct membuffer *b, struct dive *dive)
|
|||
while (ev) {
|
||||
put_format(b, "{\"name\":\"%s\",", ev->name);
|
||||
put_format(b, "\"value\":\"%d\",", ev->value);
|
||||
put_format(b, "\"type\":\"%d\",", ev->type);
|
||||
put_format(b, "\"time\":\"%d\",},", ev->time.seconds);
|
||||
ev = ev->next;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue