Skip to content

Commit

Permalink
add helpers on what mean the different crawl stati (closes #474)
Browse files Browse the repository at this point in the history
  • Loading branch information
boogheta committed Aug 25, 2023
1 parent da59085 commit e67e123
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
1 change: 0 additions & 1 deletion hyphe_frontend/app/js/directives.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ angular.module('hyphe.directives', [])
cog: '='
}
,link: function(scope, el, attrs) {

}
}
}])
Expand Down
2 changes: 1 addition & 1 deletion hyphe_frontend/app/partials/waterloader.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
<div class="water-loader-content message-lonely" ng-if="messageOnly">
{{message}}
</div>
</div>
</div>
20 changes: 19 additions & 1 deletion hyphe_frontend/app/views/monitorCrawls.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,24 @@ <h3>No crawl job</h3>
ng-click="focusOnJob(job, $event)"
class="pointable-grid-tile"
>
<md-tooltip ng-if="job.globalStatus == 'CRASHED'" md-direction="bottom">
This crawl crashed: there's probably a bug within Hyphe which you should report. See the "Report an issue" button within the HELP tab.
</md-tooltip>
<md-tooltip ng-if="job.globalStatus == 'UNSUCCESSFUL'" md-direction="bottom">
This crawl could not proceed properly: either the website is not accessible, the startpages used do not exist, or it uses technologies Hyphe can not deal with (full Javascript websites for instance).
</md-tooltip>
<md-tooltip ng-if="job.globalStatus == 'INDEXING'" md-direction="bottom">
This crawl is completed and the webpages and links found are currently being indexed within Hyphe's database
</md-tooltip>
<md-tooltip ng-if="job.globalStatus == 'WAITING'" md-direction="bottom">
This crawl is completed and the webpages and links found will soon be indexed within Hyphe's database
</md-tooltip>
<md-tooltip ng-if="job.globalStatus == 'PENDING'" md-direction="bottom">
All of Hyphe's crawling slots are currently busy running other crawls, this one will start whenever possible
</md-tooltip>
<md-tooltip ng-if="job.globalStatus == 'SUSPICIOUS'" md-direction="bottom">
This crawl is completed but it returned very few links which might indicate an issue while crawling it. Maybe the website redirects elsewhere or the startpages used are not proper pages, or maybe it uses technologies Hyphe can not deal with (full Javascript websites for instance).
</md-tooltip>
<div
layout="column"
layout-align="center center"
Expand Down Expand Up @@ -396,7 +414,7 @@ <h3 style="margin-bottom:0px">SETTINGS</h3>
<dd ng-if="!crawljobsIndex[focusedJobId].crawl_arguments.phantom">
No
</dd>

</dl>

<div ng-if="crawljobsIndex[focusedJobId].crawl_arguments.webarchives.option !== ''">
Expand Down

0 comments on commit e67e123

Please sign in to comment.