Summary: | Incorrect default URLs for the validators plugin | ||
---|---|---|---|
Product: | [Applications] konqueror | Reporter: | Benjamin Niemann <pink> |
Component: | general | Assignee: | Konqueror Developers <konq-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | w3c validators fix |
Description
Benjamin Niemann
2007-01-24 10:26:04 UTC
Created attachment 19498 [details]
w3c validators fix
I can confirm this bug (3.5.6). HTML validator won't work at all (some errors
about recursion). CSS validator did't load it's style. Link validator works for
me. All of them seems to work fine without trailing slash, so I create fast fix
( Sorry but I can't check now, if it works. But it's so simple that shouldn't
be any problems. ).
This is patch is for kdeaddons 3.5.6.
SVN commit 640363 by mkoller: BUG: 140539 CCMAIL: hannibal@megapolis.pl correct default URLs M +3 -3 validatorsdialog.cpp --- branches/KDE/3.5/kdeaddons/konq-plugins/validators/validatorsdialog.cpp #640362:640363 @@ -98,19 +98,19 @@ m_WWWValidatorCB->insertStringList(m_config->readListEntry("WWWValidatorUrl")); if (m_WWWValidatorCB->count()==0) { - m_WWWValidatorCB->insertItem("http://validator.w3.org/check/"); + m_WWWValidatorCB->insertItem("http://validator.w3.org/check"); } m_WWWValidatorCB->setCurrentItem(m_config->readNumEntry("WWWValidatorUrlIndex",0)); m_CSSValidatorCB->insertStringList(m_config->readListEntry("CSSValidatorUrl")); if (m_CSSValidatorCB->count()==0) { - m_CSSValidatorCB->insertItem("http://jigsaw.w3.org/css-validator/validator/"); + m_CSSValidatorCB->insertItem("http://jigsaw.w3.org/css-validator/validator"); } m_CSSValidatorCB->setCurrentItem(m_config->readNumEntry("CSSValidatorUrlIndex",0)); m_linkValidatorCB->insertStringList(m_config->readListEntry("LinkValidatorUrl")); if (m_linkValidatorCB->count()==0) { - m_linkValidatorCB->insertItem("http://validator.w3.org/checklink/"); + m_linkValidatorCB->insertItem("http://validator.w3.org/checklink"); } m_linkValidatorCB->setCurrentItem(m_config->readNumEntry("LinkValidatorUrlIndex",0)); |