DjangoAdminHackers / django-linkcheck

An app that will analyze and report on links in any model that you register with it. Links can be bare (urls or image and file fields) or embedded in HTML (linkcheck handles the parsing). It's fairly easy to override methods of the Linkcheck object should you need to do anything more complicated (like generate URLs from slug fields etc).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

checklinks limit is applied before knowing if the urls are real targets

claudep opened this issue · comments

In utils.check_links(), the limit is applied to the initial Urls queryset, but we have not yet determined if the urls are an appropriate set. For example, if the limit is 10, and the 10 first Urls are internal links and we are doing the external checks, no check will be done.