From e021184c27e612375e21c6df63521e62b178b523 Mon Sep 17 00:00:00 2001 From: Henry Wilkinson Date: Thu, 26 Jan 2023 17:41:18 -0500 Subject: [PATCH 1/2] Updates crawl type descriptions Improvements based on Nicholas' feedback. --- frontend/src/pages/org/crawl-configs-new.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/org/crawl-configs-new.ts b/frontend/src/pages/org/crawl-configs-new.ts index 39983b30..93512422 100644 --- a/frontend/src/pages/org/crawl-configs-new.ts +++ b/frontend/src/pages/org/crawl-configs-new.ts @@ -148,7 +148,7 @@ export class CrawlTemplatesNew extends LiteElement {
${msg("URL List")}

${msg( - "The crawler visits every URL you tell it to and optionally every URL linked on those pages." + "The crawler visits every URL specified in a list, and optionally every URL linked on those pages." )}

@@ -169,7 +169,7 @@ export class CrawlTemplatesNew extends LiteElement {
${msg("Seeded Crawl")}

${msg( - "The crawler automatically finds new pages and archives them." + "The crawler automatically discovers and archives pages starting from a single seed URL." )}

From 796565c0ad0a16eadc6afbbbaef29bf9aaa6a7da Mon Sep 17 00:00:00 2001 From: Henry Wilkinson Date: Thu, 26 Jan 2023 18:01:01 -0500 Subject: [PATCH 2/2] Minor Updates to Seeded Crawl control descriptions & names - Renames the first step as `Crawl Scope` from `Crawl Setup`. Technically this whole process is setting up crawls, `Crawl Scope` should be more descriptive. - Changes the help text regarding crawler instances to mention rate limiting instead of the amount of resources it takes up on our end which isn't terribly relevant to users. --- frontend/src/pages/org/crawl-config-editor.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/pages/org/crawl-config-editor.ts b/frontend/src/pages/org/crawl-config-editor.ts index ad8c1da1..7fc6c509 100644 --- a/frontend/src/pages/org/crawl-config-editor.ts +++ b/frontend/src/pages/org/crawl-config-editor.ts @@ -442,7 +442,7 @@ export class CrawlConfigEditor extends LiteElement { render() { const tabLabels: Record = { - crawlSetup: msg("Crawl Setup"), + crawlSetup: msg("Crawl Scope"), browserSettings: msg("Browser Settings"), crawlScheduling: msg("Crawl Scheduling"), crawlInformation: msg("Crawl Information"), @@ -944,7 +944,7 @@ https://example.com/path`} ${this.renderFormCol(html` @@ -987,7 +987,7 @@ https://example.net`} > `)} ${this.renderHelpTextCol( - html`Crawl pages outside of Crawl Scope that begin with these URLs.` + html`If the crawler finds pages outside of the Start URL Scope they will only be saved if they begin with URLs listed here.` )} ${this.renderFormCol(html` `)} ${this.renderHelpTextCol( - html`Increasing parallel crawler instances will speed up crawls, but - take up more system resources.` + html`Increasing parallel crawler instances can speed up crawls, but + may increase the chances of getting rate limited.` )} `; }