mirror of
https://github.com/monero-project/monero-site.git
synced 2025-01-09 20:40:05 +00:00
Revert "Workflows: userguide index alphabetic test"
This reverts commit 51ff4aa146
.
This commit is contained in:
parent
f093c0da22
commit
09ba8f4091
2 changed files with 0 additions and 64 deletions
42
.github/alphabetic-userguide.py
vendored
42
.github/alphabetic-userguide.py
vendored
|
@ -1,42 +0,0 @@
|
||||||
from bs4 import BeautifulSoup
|
|
||||||
import yaml
|
|
||||||
import sys
|
|
||||||
|
|
||||||
en_yaml = "_i18n/en.yml"
|
|
||||||
index = "resources/user-guides/index.md"
|
|
||||||
|
|
||||||
with open(en_yaml, 'r') as stream:
|
|
||||||
data_loaded = yaml.safe_load(stream)
|
|
||||||
with open(index, "r") as f:
|
|
||||||
soup = BeautifulSoup(f, "html.parser")
|
|
||||||
|
|
||||||
divs = soup.find_all("div", {"class": "col"})
|
|
||||||
data = {}
|
|
||||||
for div in divs:
|
|
||||||
category = str(div.find("h2"))
|
|
||||||
category = category.split(".")[1].split(" ")[0]
|
|
||||||
data[category] = []
|
|
||||||
items = div.find_all("p")
|
|
||||||
for raw_html in items:
|
|
||||||
title_key = raw_html.text.split(".")[1].split(" ")[0]
|
|
||||||
title_yaml = data_loaded["user-guides"][title_key]
|
|
||||||
info = {
|
|
||||||
"title_key": title_key,
|
|
||||||
"title_yaml": title_yaml,
|
|
||||||
"raw_data": raw_html
|
|
||||||
}
|
|
||||||
data[category].append(info)
|
|
||||||
|
|
||||||
success = 1
|
|
||||||
for category in data:
|
|
||||||
original = data[category]
|
|
||||||
alphabetic = sorted(data[category], key=lambda d: d['title_yaml'])
|
|
||||||
data[category] = alphabetic
|
|
||||||
if original == alphabetic:
|
|
||||||
print(f"--> Category: {category} [ OK ]")
|
|
||||||
else:
|
|
||||||
print(f"--> Category: {category} [ FAIL ]")
|
|
||||||
success = 0
|
|
||||||
|
|
||||||
if success == 0:
|
|
||||||
sys.exit(1)
|
|
22
.github/workflows/alphabetic-userguide.yaml
vendored
22
.github/workflows/alphabetic-userguide.yaml
vendored
|
@ -1,22 +0,0 @@
|
||||||
---
|
|
||||||
name: User-guides alphabetic ordering
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
paths:
|
|
||||||
- 'resources/user-guides/index.md'
|
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- 'resources/user-guides/index.md'
|
|
||||||
jobs:
|
|
||||||
alphabetic-order:
|
|
||||||
name: User-guides alphabetic ordering
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt-get install -y --no-install-recommends python3-pip
|
|
||||||
sudo pip install beautifulsoup4 PyYAML
|
|
||||||
- name: Alphabetic-order script
|
|
||||||
run: |
|
|
||||||
python3 .github/alphabetic-userguide.py
|
|
Loading…
Reference in a new issue