You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 24, 2021. It is now read-only.
Reporter: zstadler [Submitted to the original trac issue database at 12.49pm, Monday, 16th October 2017]
== Description ==
The GPX recording produced by my navigation app includes notes I enter as waypoints. However, when I open the trace with Potlatch 2's "Tasks" button, the tasks list is empty.
== Cause ==
The note is stored in the <name> tag, but Potlatch 2 does not consider this tag when reading a tasks GPX file.
== Potential fix ==
Please add the <name> tag to the list of tags used for extracting task text.
As far as I could see from the [https://github.com/systemed/potlatch2/blob/master/net/systemeD/potlatch2/dialogs/TasksDialog.mxml#L98 source code], this could be done by using
text: wpt.desc || wpt.cmt || wpt.sym || wpt.name
instead of
text: wpt.desc || wpt.cmt || wpt.sym
in TasksDialog.mxml's parseFromGPX()
The text was updated successfully, but these errors were encountered:
Reporter: zstadler
[Submitted to the original trac issue database at 12.49pm, Monday, 16th October 2017]
== Description ==
The GPX recording produced by my navigation app includes notes I enter as waypoints. However, when I open the trace with Potlatch 2's "Tasks" button, the tasks list is empty.
== Cause ==
The note is stored in the
<name>
tag, but Potlatch 2 does not consider this tag when reading a tasks GPX file.== Potential fix ==
Please add the
<name>
tag to the list of tags used for extracting task text.As far as I could see from the [https://github.com/systemed/potlatch2/blob/master/net/systemeD/potlatch2/dialogs/TasksDialog.mxml#L98 source code], this could be done by using
instead of
in
TasksDialog.mxml
'sparseFromGPX()
The text was updated successfully, but these errors were encountered: