From a2e30e57062cb6e826bbb87dec3db433fcc20260 Mon Sep 17 00:00:00 2001 From: albert-github Date: Fri, 11 Jan 2019 19:13:28 +0100 Subject: Invalid id possible with tooltips In case a filename starts with a number the `id` also starts with a number and this is not allowed in XHTML and results in the message: `Syntax of value for attribute id of div is not valid` on other places it has been solved by placing an `a` as first character, this is done here as well but also needs to be don in the transformation from reference to tooltip id (htmlgen.cpp) --- src/htmlgen.cpp | 2 +- src/tooltip.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index efd2108..b8fc5a2 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -769,7 +769,7 @@ void HtmlGenerator::init() t << endl << "$(document).ready(function() {\n" " $('.code,.codeRef').each(function() {\n" - " $(this).data('powertip',$('#'+$(this).attr('href').replace(/.*\\//,'').replace(/[^a-z_A-Z0-9]/g,'_')).html());\n" + " $(this).data('powertip',$('#a'+$(this).attr('href').replace(/.*\\//,'').replace(/[^a-z_A-Z0-9]/g,'_')).html());\n" " $(this).powerTip({ placement: 's', smartPlacement: true, mouseOnToPopup: true });\n" " });\n" "});\n"; diff --git a/src/tooltip.cpp b/src/tooltip.cpp index 3b128a9..91da583 100644 --- a/src/tooltip.cpp +++ b/src/tooltip.cpp @@ -84,6 +84,7 @@ void TooltipManager::addTooltip(Definition *d) { id+="_"+anc; } + id = "a" + id; if (p->tooltipInfo.find(id)==0) { p->tooltipInfo.insert(id,d); -- cgit v0.12