Skip to content

Commit

Permalink
update: adding new analyse, update regex
Browse files Browse the repository at this point in the history
  • Loading branch information
wilmouths committed Dec 2, 2019
1 parent 40717b7 commit b942efc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ti/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,12 @@ module.exports = new Parser(function analyseEC(parsedUrl, ec) {
result.mime = 'HTML';
result.title_id = match[1];
result.unitid = match[1];
} else if ((match = /^\/base-documentaire\/([a-z0-9-]+)\/([a-z0-9-]+)\/([a-z0-9-]+)\/([a-z0-9-]+).html$/i.exec(path)) !== null) {

} else if ((match = /^\/(base-documentaire|fiche-pratique)\/([a-z0-9-]+)\/([a-z0-9-]+)\/([a-z0-9-]+)\/([a-z0-9-]+).(html|pdf)$/i.exec(path)) !== null) {
result.rtype = 'ARTICLE';
result.mime = 'HTML';
result.unitid = `${match[1]}/${match[2]}/${match[3]}/${match[4]}`;
result.mime = match[6].toUpperCase();
result.unitid = `${match[2]}/${match[3]}/${match[4]}/${match[5]}`;

}

return result;
Expand Down
1 change: 1 addition & 0 deletions ti/test/ti.2015-10-29.csv
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ lexique/materiel-24227;materiel-24227;ENCYCLOPAEDIA_ENTRY;HTML;http://www.techni
classification-periodique-des-elements-25;classification-periodique-des-elements-25;PREVIEW;HTML;http://www.techniques-ingenieur.fr/base-documentaire/archives-th12/archives-mathematiques-pour-l-ingenieur-tiafm/archive-1/classification-periodique-des-elements-25/
tiafm-a1370-version1;;ARTICLE;PDF;https://www.techniques-ingenieur.fr:443/res/pdf/encyclopedia/tiafm-a1370-version1.pdf
construction-et-travaux-publics-th3/le-chauffage-la-climatisation-et-l-eau-chaude-sanitaire-42582210/la-methode-de-calcul-de-la-reglementation-thermique-2012-c8111/emissions-c8111niv10007;;ARTICLE;HTML;https://www.techniques-ingenieur.fr/base-documentaire/construction-et-travaux-publics-th3/le-chauffage-la-climatisation-et-l-eau-chaude-sanitaire-42582210/la-methode-de-calcul-de-la-reglementation-thermique-2012-c8111/emissions-c8111niv10007.html
environnement-securite-th5/gerer-une-installation-classee-dt98/introduction-au-bilan-carbone-choisir-de-realiser-un-bilan-carbone-0855/0855;;ARTICLE;PDF;https://www.techniques-ingenieur.fr/fiche-pratique/environnement-securite-th5/gerer-une-installation-classee-dt98/introduction-au-bilan-carbone-choisir-de-realiser-un-bilan-carbone-0855/0855.pdf

0 comments on commit b942efc

Please sign in to comment.