Newer
Older
web-services / www-home / index.html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
    <meta charset="UTF-8">
    <title>Web Service Swagger</title>
    <link rel="stylesheet" type="text/css" href="https://unpkg.com/swagger-ui-dist@3.36.2/swagger-ui.css">
</head>

<body>

    <div id="swagger-ui"></div>

    <script src="https://unpkg.com/swagger-ui-dist@3.36.2/swagger-ui-standalone-preset.js"></script>
    <script src="https://unpkg.com/swagger-ui-dist@3.36.2/swagger-ui-bundle.js"></script>

    <script>
        window.onload = function () {
            // Build a system
            const ui = SwaggerUIBundle({
                urls: [
                    { url: "https://loterre-resolvers.services.inist.fr", name: "Résolveurs pour des terminologies Loterre"},
                    { url: "https://affiliations-tools.services.inist.fr", name: "Structuration & enrichissements d'affiliations"},
                    { url: "https://affiliations-libpostal.services.inist.fr", name: "Traitements d'affiliation avec libpostal"},
                    { url: "https://ark-tools.services.inist.fr/", name: "Services autour des identifiants ARK"},
                    { url: "https://biblio-tools.services.inist.fr/", name: "Outils pour références bibliographiques"},
                    { url: "https://nlp-tools.services.inist.fr/", name: "Traitements automatiques du Langage Naturel"},
                    { url: "https://domains-classifier.services.inist.fr/", name: "Classification en domaines scientifiques"},
                    { url: "https://mapping-tools.services.inist.fr/", name: "Utilisation de tables de correspondance"},
                    { url: "https://nlp-tools2-1.services.inist.fr/", name: "Outils de NLP"},
                    { url: "https://co-autodeduplicates-2.services.inist.fr/", name: "Dédoublonnage de notices bibliographiques Conditor"},
                    { url: "https://authors-tools-1.services.inist.fr/", name: "Outils de traitements basés sur les auteurs"}
                ],
                dom_id: '#swagger-ui',
                deepLinking: true,
                presets: [
                    SwaggerUIBundle.presets.apis,
                    SwaggerUIStandalonePreset
                ],
                plugins: [
                    SwaggerUIBundle.plugins.DownloadUrl
                ],
                layout: "StandaloneLayout",
            })
            window.ui = ui
        }
    </script>
</body>

</html>