-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Devdocs offliner, category and warehouse path
- Loading branch information
Showing
11 changed files
with
195 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1915,6 +1915,7 @@ components: | |
- wikihow | ||
- zimit | ||
- ifixit | ||
- devdocs | ||
example: | ||
- mwoffliner | ||
- sotoki | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
162 changes: 162 additions & 0 deletions
162
dispatcher/backend/src/common/schemas/offliners/devdocs.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
from marshmallow import fields | ||
|
||
from common.schemas import SerializableSchema, String | ||
from common.schemas.fields import ( | ||
validate_output, | ||
validate_zim_description, | ||
validate_zim_longdescription, | ||
) | ||
|
||
|
||
class DevDocsFlagsSchema(SerializableSchema): | ||
class Meta: | ||
ordered = True | ||
|
||
all_flag = fields.Boolean( | ||
truthy=[True], | ||
falsy=[False], | ||
metadata={ | ||
"label": "All", | ||
"description": "Fetch all Devdocs resources, and produce one ZIM " | ||
"per resource.", | ||
}, | ||
data_key="all", | ||
) | ||
|
||
slug = String( # should be ListOfString but not yet supported by Zimfarm | ||
metadata={ | ||
"label": "Slug", | ||
"description": "Fetch the provided Devdocs resource. " | ||
"Slugs are the first path entry in the Devdocs URL. " | ||
"For example, the slug for: `https://devdocs.io/gcc~12/` is `gcc~12`.", | ||
}, | ||
) | ||
|
||
first = fields.Integer( | ||
metadata={ | ||
"label": "Number of first items", | ||
"description": "Fetch only the first N items per slug as shown " | ||
"in the DevDocs UI. Do not set to fetch all items.", | ||
}, | ||
) | ||
|
||
skip_slug_regex = String( | ||
metadata={ | ||
"label": "Skip slugs regex", | ||
"description": "Skips slugs matching the given regular expression." | ||
"Do not set to fetch all slugs", | ||
}, | ||
data_key="skip-slug-regex", | ||
) | ||
|
||
file_name_format = String( | ||
metadata={ | ||
"label": "ZIM filename", | ||
"description": "ZIM filename. Do not input trailing `.zim`, it " | ||
"will be automatically added. You can use placeholders, see " | ||
"https://github.com/openzim/devdocs/blob/main/README.md. Defaults " | ||
"to devdocs.io_en_{clean_slug}_{period}", | ||
}, | ||
data_key="file-name-format", | ||
) | ||
|
||
name_format = String( | ||
metadata={ | ||
"label": "ZIM name", | ||
"description": "ZIM name. You can use placeholders, see " | ||
"https://github.com/openzim/devdocs/blob/main/README.md. Defaults " | ||
"to devdocs.io_en_{clean_slug}", | ||
}, | ||
data_key="name-format", | ||
) | ||
|
||
title_format = String( | ||
metadata={ | ||
"label": "ZIM title", | ||
"description": "ZIM title. You can use placeholders, see " | ||
"https://github.com/openzim/devdocs/blob/main/README.md. Defaults " | ||
"to `{full_name} Docs`", | ||
}, | ||
data_key="title-format", | ||
) | ||
|
||
description_format = String( | ||
metadata={ | ||
"label": "ZIM description", | ||
"description": "ZIM description. You can use placeholders, see " | ||
"https://github.com/openzim/devdocs/blob/main/README.md. Defaults " | ||
"to `{full_name} docs by DevDocs`", | ||
}, | ||
data_key="description-format", | ||
validate=validate_zim_description, | ||
) | ||
|
||
long_description_format = String( | ||
metadata={ | ||
"label": "ZIM long description", | ||
"description": "ZIM long description. You can use placeholders, see " | ||
"https://github.com/openzim/devdocs/blob/main/README.md. Defaults " | ||
"to `{full_name} docs by DevDocs`", | ||
}, | ||
data_key="long-description-format", | ||
validate=validate_zim_longdescription, | ||
) | ||
|
||
tags = String( | ||
metadata={ | ||
"label": "ZIM Tags", | ||
"description": "List of semi-colon-separated Tags for the ZIM file. " | ||
" You can use placeholders, see " | ||
"https://github.com/openzim/devdocs/blob/main/README.md. Defaults to" | ||
"`devdocs;{slug_without_version}`", | ||
} | ||
) | ||
|
||
creator = String( | ||
metadata={ | ||
"label": "Creator", | ||
"description": "Name of content creator. “DevDocs” otherwise", | ||
}, | ||
) | ||
|
||
publisher = String( | ||
metadata={ | ||
"label": "Publisher", | ||
"description": "Custom publisher name (ZIM metadata). “openZIM” otherwise", | ||
}, | ||
) | ||
|
||
output = String( | ||
metadata={ | ||
"label": "Output folder", | ||
"placeholder": "/output", | ||
"description": "Output folder for ZIM file(s). Leave it as `/output`", | ||
}, | ||
load_default="/output", | ||
dump_default="/output", | ||
validate=validate_output, | ||
) | ||
|
||
debug = fields.Boolean( | ||
truthy=[True], | ||
falsy=[False], | ||
metadata={"label": "Debug", "description": "Enable verbose output"}, | ||
) | ||
|
||
devdocs_frontend_url = String( | ||
metadata={ | ||
"label": "DevDocs frontend URL", | ||
"description": "Scheme and hostname for the devdocs frontend." | ||
"Defaults to https://devdocs.io", | ||
}, | ||
data_key="devdocs-frontend-url", | ||
) | ||
|
||
devdocs_documents_url = String( | ||
metadata={ | ||
"label": "DevDocs documents URL", | ||
"description": "Scheme and hostname for the devdocs documents server." | ||
"Defaults to https://documents.devdocs.io", | ||
}, | ||
data_key="devdocs-documents-url", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -336,17 +336,17 @@ export default { | |
cancelable_statuses: cancelable_statuses, | ||
running_statuses: running_statuses, | ||
contact_email: "[email protected]", | ||
categories: ["freecodecamp", "gutenberg", "ifixit", "other", "phet", "psiram", "stack_exchange", | ||
categories: ["devdocs", "freecodecamp", "gutenberg", "ifixit", "other", "phet", "psiram", "stack_exchange", | ||
"ted", "openedx", "vikidia", "wikibooks", "wikihow", "wikinews", | ||
"wikipedia", "wikiquote", "wikisource", "wikispecies", "wikiversity", | ||
"wikivoyage", "wiktionary"], // list of categories for fileering | ||
warehouse_paths: ["/freecodecamp", "/gutenberg", "/ifixit", "/other", "/phet", "/psiram", "/stack_exchange", | ||
warehouse_paths: ["/devdocs", "/freecodecamp", "/gutenberg", "/ifixit", "/other", "/phet", "/psiram", "/stack_exchange", | ||
"/ted", "/mooc", "/videos", "/vikidia", "/wikibooks", "/wikihow", | ||
"/wikinews", "/wikipedia", "/wikiquote", "/wikisource", | ||
"/wikiversity", "/wikivoyage", "/wiktionary", "/zimit", | ||
"/.hidden/dev", "/.hidden/private", "/.hidden/endless", | ||
"/.hidden/bard", "/.hidden/bsf", "/.hidden/custom_apps"], | ||
offliners: ["mwoffliner", "youtube", "phet", "gutenberg", "sotoki", "nautilus", "ted", "openedx", "zimit", "kolibri", "wikihow", "ifixit", "freecodecamp"], | ||
offliners: ["mwoffliner", "youtube", "phet", "gutenberg", "sotoki", "nautilus", "ted", "openedx", "zimit", "kolibri", "wikihow", "ifixit", "freecodecamp", "devdocs"], | ||
periodicities: ["manually", "monthly", "quarterly", "biannualy", "annually"], | ||
memory_values: [536870912, // 512MiB | ||
1073741824, // 1GiB | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters