dbpedia / databus

A digital factory platform for managing files online with stable IDs, high-quality metadata, powerful API and tools for building on data: find, access, make interoperable, re-use
Apache License 2.0
36 stars 16 forks source link

Overlapping <thead> in results table at the sparql endpoint (https://dev.databus.dbpedia.org/sparql) #181

Open JonathanJustavino opened 2 weeks ago

JonathanJustavino commented 2 weeks ago

Margin/Padding incorrect. If a query variable of a sparql query is longer than its corresponding results, then the <thead> is overlapping with the next <thead> of the next query variable.

Example Query:

SELECT DISTINCT ?distributionURL ?veryLongQueryVariable ?downloadURL  WHERE {
  ?hasVersion dct:hasVersion ?veryLongQueryVariable .
  ?hasVersion dcat:distribution ?distributionURL .
  ?distributionURL dcat:downloadURL ?downloadURL .
  FILTER(CONTAINS(str(?hasVersion), "RIL"))
}

thead-bug