mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Desktop: add export to html
Add the export of environmental parameters in star widgets to .html format. The dive rating is always shown both in the condensed as well as in the expanded view. The other five environmental variables are only shown in the expanded view. Only those star widgets with a rating are shown: if a star widget has not been rated in the UI, then it is assumed unrated and is not indicated in the expanded view. Signed-off-by: willemferguson <willemferguson@zoology.up.ac.za> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
9006e3d102
commit
7c024f12d2
2 changed files with 26 additions and 8 deletions
|
@ -355,6 +355,10 @@ void write_one_dive(struct membuffer *b, struct dive *dive, const char *photos_d
|
||||||
put_HTML_coordinates(b, dive);
|
put_HTML_coordinates(b, dive);
|
||||||
put_format(b, "\"rating\":%d,", dive->rating);
|
put_format(b, "\"rating\":%d,", dive->rating);
|
||||||
put_format(b, "\"visibility\":%d,", dive->visibility);
|
put_format(b, "\"visibility\":%d,", dive->visibility);
|
||||||
|
put_format(b, "\"current\":%d,", dive->current);
|
||||||
|
put_format(b, "\"wavesize\":%d,", dive->wavesize);
|
||||||
|
put_format(b, "\"surge\":%d,", dive->surge);
|
||||||
|
put_format(b, "\"chill\":%d,", dive->chill);
|
||||||
put_format(b, "\"dive_duration\":\"%u:%02u min\",",
|
put_format(b, "\"dive_duration\":\"%u:%02u min\",",
|
||||||
FRACTION(dive->duration.seconds, 60));
|
FRACTION(dive->duration.seconds, 60));
|
||||||
put_string(b, "\"temperature\":{");
|
put_string(b, "\"temperature\":{");
|
||||||
|
@ -512,8 +516,13 @@ void export_translation(const char *file_name)
|
||||||
write_attribute(b, "Advanced_Search", translate("gettextFromC", "Advanced search"), ", ");
|
write_attribute(b, "Advanced_Search", translate("gettextFromC", "Advanced search"), ", ");
|
||||||
|
|
||||||
//Dive expanded view
|
//Dive expanded view
|
||||||
|
|
||||||
write_attribute(b, "Rating", translate("gettextFromC", "Rating"), ", ");
|
write_attribute(b, "Rating", translate("gettextFromC", "Rating"), ", ");
|
||||||
|
write_attribute(b, "WaveSize", translate("gettextFromC", "WaveSize"), ", ");
|
||||||
write_attribute(b, "Visibility", translate("gettextFromC", "Visibility"), ", ");
|
write_attribute(b, "Visibility", translate("gettextFromC", "Visibility"), ", ");
|
||||||
|
write_attribute(b, "Current", translate("gettextFromC", "Current"), ", ");
|
||||||
|
write_attribute(b, "Surge", translate("gettextFromC", "Surge"), ", ");
|
||||||
|
write_attribute(b, "Chill", translate("gettextFromC", "Chill"), ", ");
|
||||||
write_attribute(b, "Duration", translate("gettextFromC", "Duration"), ", ");
|
write_attribute(b, "Duration", translate("gettextFromC", "Duration"), ", ");
|
||||||
write_attribute(b, "DiveMaster", translate("gettextFromC", "Divemaster"), ", ");
|
write_attribute(b, "DiveMaster", translate("gettextFromC", "Divemaster"), ", ");
|
||||||
write_attribute(b, "Buddy", translate("gettextFromC", "Buddy"), ", ");
|
write_attribute(b, "Buddy", translate("gettextFromC", "Buddy"), ", ");
|
||||||
|
|
|
@ -224,11 +224,10 @@ function getExpanded(dive)
|
||||||
var res = '<table><tr><td class="words">' + translate.Date + ': </td><td>' + dive.date +
|
var res = '<table><tr><td class="words">' + translate.Date + ': </td><td>' + dive.date +
|
||||||
'</td><td class="words"> ' + translate.Time + ': </td><td>' + dive.time +
|
'</td><td class="words"> ' + translate.Time + ': </td><td>' + dive.time +
|
||||||
'</td><td class="words"> ' + translate.Location + ': </td><td>' + '<a onclick=\"Search_list_Modules(\'' + dive.location + '\', {location:true, divemaster:false, buddy:false, notes:false, tags:false,})\">' + dive.location + '</a>' + getDiveCoor(dive) +
|
'</td><td class="words"> ' + translate.Location + ': </td><td>' + '<a onclick=\"Search_list_Modules(\'' + dive.location + '\', {location:true, divemaster:false, buddy:false, notes:false, tags:false,})\">' + dive.location + '</a>' + getDiveCoor(dive) +
|
||||||
'</td></tr></table><table><tr><td class="words">' + translate.Rating + ':</td><td>' + putRating(dive.rating) +
|
|
||||||
'</td><td class="words"> ' + translate.Visibility + ':</td><td>' + putRating(dive.visibility) +
|
|
||||||
'</td></tr></table>' +
|
'</td></tr></table>' +
|
||||||
'<table><tr><td class="words">' + translate.Air_Temp + ': </td><td>' + dive.temperature.air +
|
'<table><tr><td class="words">' + translate.Air_Temp + ': </td><td>' + dive.temperature.air +
|
||||||
'</td><td class="words"> ' + translate.Water_Temp + ': </td><td>' + dive.temperature.water +
|
'</td><td class="words"> ' + translate.Water_Temp + ': </td><td>' + dive.temperature.water +
|
||||||
|
'</td><td class="words"> ' + translate.Rating + ':</td><td>' + putRating(dive.rating) +
|
||||||
'</td></tr></table><table><tr><td class="words">' + translate.Max_Depth + ': </td><td>' + put_depth_unit(dive.maxdepth) + " " + depth_unit + '</td></tr><tr><td class="words">' + translate.Duration + ': </td><td>' + dive.dive_duration +
|
'</td></tr></table><table><tr><td class="words">' + translate.Max_Depth + ': </td><td>' + put_depth_unit(dive.maxdepth) + " " + depth_unit + '</td></tr><tr><td class="words">' + translate.Duration + ': </td><td>' + dive.dive_duration +
|
||||||
'</td></tr><tr><td class="words">' + translate.DiveMaster + ': </td><td>' + dive.divemaster +
|
'</td></tr><tr><td class="words">' + translate.DiveMaster + ': </td><td>' + dive.divemaster +
|
||||||
'</td></tr><tr><td class="words"><p>' + translate.Buddy + ': </p></td><td>' + dive.buddy +
|
'</td></tr><tr><td class="words"><p>' + translate.Buddy + ': </p></td><td>' + dive.buddy +
|
||||||
|
@ -964,13 +963,23 @@ function getDiveCoor(dive)
|
||||||
*/
|
*/
|
||||||
function get_dive_HTML(dive)
|
function get_dive_HTML(dive)
|
||||||
{
|
{
|
||||||
var res = '<h2 class="det_hed">' + translate.Dive_information + '</h2><table><tr><td class="words">' + translate.Date + ': </td><td>' + dive.date +
|
var table1 = '<h2 class="det_hed">' + translate.Dive_information + '</h2><table><tr><td class="words">' + translate.Date + ': </td><td>' + dive.date +
|
||||||
'</td><td class="words"> ' + translate.Time + ': </td><td>' + dive.time +
|
'</td><td class="words"> ' + translate.Time + ': </td><td>' + dive.time +
|
||||||
'</td><td class="words"> ' + translate.Location + ': </td><td>' + '<a onclick=\"Search_list_Modules(\'' + dive.location + '\', {location:true, divemaster:false, buddy:false, notes:false, tags:false,})\">' + dive.location + '</a></td>' + getDiveCoor(dive) +
|
'</td><td class="words"> ' + translate.Location + ': </td><td>' + '<a onclick=\"Search_list_Modules(\'' + dive.location + '\', {location:true, divemaster:false, buddy:false, notes:false, tags:false,})\">' + dive.location + '</a></td>' + getDiveCoor(dive) +
|
||||||
'</tr></table><table><tr><td class="words">' + translate.Rating + ':</td><td>' + putRating(dive.rating) +
|
'</tr></table>';
|
||||||
'</td><td class="words"> ' + translate.Visibility + ':</td><td>' + putRating(dive.visibility) +
|
var table2 = '<table><tr><td class="words">' + translate.Rating + ':</td><td>' + putRating(dive.rating) + '</td>';
|
||||||
'</td></tr></table>' +
|
if (dive.wavesize > 0)
|
||||||
'<table><tr><td class="words">' + translate.Air_Temp + ': </td><td>' + dive.temperature.air +
|
table2 += '<td class="words"> ' + translate.WaveSize + ':</td><td>' + putRating(dive.wavesize) + '</td>';
|
||||||
|
if (dive.visibility > 0)
|
||||||
|
table2 += '</td><td class="words"> ' + translate.Visibility + ':</td><td>' + putRating(dive.visibility) + '</td>';
|
||||||
|
if (dive.current > 0)
|
||||||
|
table2 += '<td class="words"> ' + translate.Current + ':</td><td>' + putRating(dive.current) + '</td>';
|
||||||
|
if (dive.surge > 0)
|
||||||
|
table2 += '<td class="words"> ' + translate.Surge + ':</td><td>' + putRating(dive.surge) + '</td>';
|
||||||
|
if (dive.chill > 0)
|
||||||
|
table2 += '<td class="words"> ' + translate.Chill + ':</td><td>' + putRating(dive.chill) + '</td>';
|
||||||
|
table2 += '</tr></table>';
|
||||||
|
var table3 = '<table><tr><td class="words">' + translate.Air_Temp + ': </td><td>' + dive.temperature.air +
|
||||||
'</td><td class="words"> ' + translate.Water_Temp + ': </td><td>' + dive.temperature.water +
|
'</td><td class="words"> ' + translate.Water_Temp + ': </td><td>' + dive.temperature.water +
|
||||||
'</td></tr></table><table><tr><td class="words">' + translate.Max_Depth + ': </td><td>' + put_depth_unit(dive.maxdepth) + " " + depth_unit + '</td></tr><tr><td class="words">' + translate.Duration + ': </td><td>' + dive.dive_duration +
|
'</td></tr></table><table><tr><td class="words">' + translate.Max_Depth + ': </td><td>' + put_depth_unit(dive.maxdepth) + " " + depth_unit + '</td></tr><tr><td class="words">' + translate.Duration + ': </td><td>' + dive.dive_duration +
|
||||||
'</td></tr><tr><td class="words">' + translate.DiveMaster + ': </td><td>' + dive.divemaster +
|
'</td></tr><tr><td class="words">' + translate.DiveMaster + ': </td><td>' + dive.divemaster +
|
||||||
|
@ -978,7 +987,7 @@ function get_dive_HTML(dive)
|
||||||
'</td></tr><tr><td class="words">' + translate.Suit + ': </td><td>' + dive.suit +
|
'</td></tr><tr><td class="words">' + translate.Suit + ': </td><td>' + dive.suit +
|
||||||
'</td></tr><tr><td class="words">' + translate.Tags + ': </td><td>' + putTags(dive.tags) +
|
'</td></tr><tr><td class="words">' + translate.Tags + ': </td><td>' + putTags(dive.tags) +
|
||||||
'</td></tr></table>'+ put_divecomputer_details(dive.divecomputers) +'<div style="margin:10px;"><p class="words">' + translate.Notes + ': </p>' + dive.notes + '</div>';
|
'</td></tr></table>'+ put_divecomputer_details(dive.divecomputers) +'<div style="margin:10px;"><p class="words">' + translate.Notes + ': </p>' + dive.notes + '</div>';
|
||||||
return res;
|
return table1 + table2 + table3;
|
||||||
};
|
};
|
||||||
|
|
||||||
function put_divecomputer_details(dc)
|
function put_divecomputer_details(dc)
|
||||||
|
|
Loading…
Reference in a new issue