forked from Anri/cal8tor
fix regex #7
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Pour le M2, les noms des cases est différent que le M1, c'est + le farwest
Il faut trouver un moyen de récuperer une donnée propre
=> https://silice.informatique.univ-paris-diderot.fr/ufr/U2024-2025/EDT/visualiserEmploiDuTemps.php?quoi=M2,1
let matches =
Regex::new(r"(?P<type>COURS|TD|TP|COURS_TD) (?P<name>.*) : (?P<day>(lundi|mardi|mercredi|jeudi|vendredi)) (?P<startime>.*) \(durée : (?P<duration>.*)\)")
.unwrap()
.captures(i.value().attr("title").unwrap())
.unwrap();
Le problème va aussi apparaître ici :
"COURS" => [models::Category::Cours].into(),
"TP" => [models::Category::TP].into(),
"TD" => [models::Category::TD].into(),
"COURS_TD" => [models::Category::Cours, models::Category::TD].into(),
temporary fix:
c81b07c277