Add a "retrograde" attribute to <body> tags in the generated XML

This commit is contained in:
Gergely Polonkai 2014-08-26 18:51:01 +02:00
parent 8351445868
commit 1bdf0ee31b
1 changed files with 10 additions and 0 deletions

View File

@ -1682,6 +1682,16 @@ ag_chart_create_svg(AgChart *chart, gsize *length, GError **err)
xmlNewProp(node, BAD_CAST "degree", BAD_CAST value);
g_free(value);
xmlNewProp(
node,
BAD_CAST "retrograde",
BAD_CAST (
gswe_planet_data_get_retrograde(planet_data)
? "True"
: "False"
)
);
value = g_strdup_printf("%d", dist);
xmlNewProp(node, BAD_CAST "dist", BAD_CAST value);
g_free(value);