| Summary: | Javascript links are reported as "javascript not supported". They should be reported as valid. | ||
|---|---|---|---|
| Product: | [Unmaintained] klinkstatus | Reporter: | Petr Sodomka <pesmail2003> |
| Component: | general | Assignee: | Paulo Moura Guedes <kde> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Petr Sodomka
2006-09-20 09:52:04 UTC
SVN commit 588052 by mojo:
BUG: 134373
- Each link now has an associated status:
UNDETERMINED,
SUCCESSFULL,
BROKEN,
HTTP_REDIRECTION,
HTTP_CLIENT_ERROR,
HTTP_SERVER_ERROR,
TIMEOUT,
NOT_SUPPORTED,
MALFORMED
that is clearly set after it being checked, which didn't happen before.
This fixes bug #134373 which was caused by a typo btw.
Also fix some failed assertions; there were some code paths in LinkChecker that weren't properly managed.
M +10 -10 klinkstatus.kdevelop
M +55 -21 src/engine/linkchecker.cpp
M +3 -1 src/engine/linkchecker.h
M +4 -1 src/engine/linkstatus.cpp
M +19 -4 src/engine/linkstatus.h
M +19 -10 src/engine/linkstatus_impl.h
M +10 -9 src/engine/searchmanager.cpp
M +13 -21 src/ui/resultview.cpp
M +1 -1 src/ui/sessionwidget.cpp
M +39 -95 src/ui/treeview.cpp
|