Make notes GPX valid and add useful official elements
The "creator" attribute is required and "extensions" is the correct name of this element. Validated with SAXCount from the xerces-c package: $ SAXCount -v=always -n -s -f notes.gpx Original error messages: Error at file /home/markus/notes.gpx, line 2, char 171 Message: no declaration found for element 'gpx' Error at file /home/markus/notes.gpx, line 2, char 171 Message: attribute 'version' is not declared for element 'gpx' After adding the "xmlns" attribute: Error at file /home/markus/notes.gpx, line 2, char 213 Message: missing required attribute 'creator' Error at file /home/markus/notes.gpx, line 18, char 14 Message: no declaration found for element 'extension' Error at file /home/markus/notes.gpx, line 26, char 7 Message: element 'extension' is not allowed for content model '(ele?,time?,magvar?,geoidheight?,name?,cmt?,desc?,src?,link*,sym?,type?,fix?,sat?,hdop?,vdop?,pdop?,ageofdgpsdata?,dgpsid?,extensions?)' The current errors now are caused by the missing XML schema for the extensions. Also add the time, name and link elements.
This commit is contained in:
parent
81d79f5e16
commit
166dc76ae9
4 changed files with 11 additions and 2 deletions
|
@ -510,7 +510,7 @@ class NotesControllerTest < ActionController::TestCase
|
|||
assert_equal "application/gpx+xml", @response.content_type
|
||||
assert_select "gpx", :count => 1 do
|
||||
assert_select "wpt[lat='#{notes(:open_note).lat}'][lon='#{notes(:open_note).lon}']", :count => 1 do
|
||||
assert_select "extension", :count => 1 do
|
||||
assert_select "extensions", :count => 1 do
|
||||
assert_select "id", notes(:open_note).id
|
||||
assert_select "url", note_url(notes(:open_note), :format => "gpx")
|
||||
assert_select "comment_url", comment_note_url(notes(:open_note), :format => "gpx")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue