diff --git a/src/wikimore/app.py b/src/wikimore/app.py index 2f3fda2..c6be571 100644 --- a/src/wikimore/app.py +++ b/src/wikimore/app.py @@ -394,13 +394,14 @@ def wiki_article( # Check if the article is something we need to handle differently info_api_request = urllib.request.Request( - f"{base_url}/w/api.php?action=query&format=json&titles={escape(quote(title.replace(' ', '_')), True)}&prop=info|pageprops|categoryinfo|langlinks&lllimit=500", + f"{base_url}/w/api.php?action=query&format=json&titles={escape(quote(title.replace(' ', '_')), True)}&prop=info|pageprops|categoryinfo|langlinks|categories&lllimit=500&cllimit=500", headers=HEADERS, ) category_members = [] interwiki = [] badges = [] + categories = [] with urllib.request.urlopen(info_api_request) as response: logger.debug( @@ -522,6 +523,18 @@ def wiki_article( title=member["title"], ) + # Get categories the article is in + if "categories" in page: + categories = page["categories"] + + for category in categories: + category["url"] = url_for( + "wiki_article", + project=project, + lang=lang, + title=category["title"], + ) + interwiki = langsort(interwiki) # Prepare the API request to fetch the article content @@ -716,6 +729,7 @@ def wiki_article( license=license, interwiki=interwiki, badges=badges, + categories=categories, category_members=category_members, ) diff --git a/src/wikimore/static/css/style.css b/src/wikimore/static/css/style.css index b21d546..c91472b 100644 --- a/src/wikimore/static/css/style.css +++ b/src/wikimore/static/css/style.css @@ -204,16 +204,16 @@ h1 { text-align: center; } -section:last-child>.category-link { +.wm-category { display: inline; font-size: 0.8em; } -section>.category-link::before { +.wm-category::before { content: "["; } -section>.category-link::after { +.wm-category::after { content: "]"; } diff --git a/src/wikimore/templates/article.html b/src/wikimore/templates/article.html index 03c26a2..37fca76 100644 --- a/src/wikimore/templates/article.html +++ b/src/wikimore/templates/article.html @@ -40,6 +40,13 @@ {% endfor %} {% endif %} + {% if categories %} +