Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
nourredine1981 authored Dec 20, 2024
1 parent 39b9610 commit c8e1d1c
Show file tree
Hide file tree
Showing 10 changed files with 73,793 additions and 0 deletions.
73,449 changes: 73,449 additions & 0 deletions doc_82.xml

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Liens vers les fichiers Nordine</title>
</head>
<body>
<h1>Liens vers les fichiers Nordine</h1>
<ul>
<li><a href="nordine1.html">nordine1.html</a></li>
<li><a href="nordine2.html">nordine2.html</a></li>
<li><a href="nordine3.html">nordine3.html</a></li>
<li><a href="nordine4.html">nordine4.html</a></li>
<li><a href="nordine5.html">nordine5.html</a></li>
<li><a href="nordine6.html">nordine6.html</a></li>
<li><a href="nordine7.html">nordine7.html</a></li>
<li><a href="nordine8.html">nordine8.html</a></li>
</ul>
</body>
</html>
41 changes: 41 additions & 0 deletions nordine.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Exemple de chargement XML</title>
</head>
<body>
<h1>Contenu du document XML</h1>
<div id="content"></div>

<script>
function loadXMLDoc(filename) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
displayContent(this);
}
};
xhttp.open("GET", filename, true);
xhttp.send();
}

function displayContent(xml) {
var xmlDoc = xml.responseXML;
var x = xmlDoc.getElementsByTagName("root")[0].childNodes;
var content = document.getElementById("content");
for (let i = 0; i < x.length; i++) {
if (x[i].nodeType == 1) { // élément
var para = document.createElement("p");
para.textContent = x[i].textContent;
content.appendChild(para);
}
}
}

window.onload = function() {
loadXMLDoc("doc_82.xml");
};
</script>
</body>
</html>
41 changes: 41 additions & 0 deletions nordine2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Exemple de chargement XML</title>
</head>
<body>
<h1>Contenu du document XML</h1>
<div id="content"></div>

<script>
function loadXMLDoc(filename) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
displayContent(this);
}
};
xhttp.open("GET", filename, true);
xhttp.send();
}

function displayContent(xml) {
var xmlDoc = xml.responseXML;
var x = xmlDoc.getElementsByTagName("root")[0].childNodes;
var content = document.getElementById("content");
for (let i = 0; i < x.length; i++) {
if (x[i].nodeType == 1) { // élément
var para = document.createElement("p");
para.textContent = x[i].textContent;
content.appendChild(para);
}
}
}

window.onload = function() {
loadXMLDoc("391c0294-07f1-4856-b592-428bd44055ca.xml");
};
</script>
</body>
</html>
41 changes: 41 additions & 0 deletions nordine3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Exemple de chargement XML</title>
</head>
<body>
<h1>Contenu du document XML</h1>
<div id="content"></div>

<script>
function loadXMLDoc(filename) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
displayContent(this);
}
};
xhttp.open("GET", filename, true);
xhttp.send();
}

function displayContent(xml) {
var xmlDoc = xml.responseXML;
var x = xmlDoc.getElementsByTagName("root")[0].childNodes;
var content = document.getElementById("content");
for (let i = 0; i < x.length; i++) {
if (x[i].nodeType == 1) { // élément
var para = document.createElement("p");
para.textContent = x[i].textContent;
content.appendChild(para);
}
}
}

window.onload = function() {
loadXMLDoc("703873565011.xml");
};
</script>
</body>
</html>
41 changes: 41 additions & 0 deletions nordine4.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Exemple de chargement XML</title>
</head>
<body>
<h1>Contenu du document XML</h1>
<div id="content"></div>

<script>
function loadXMLDoc(filename) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
displayContent(this);
}
};
xhttp.open("GET", filename, true);
xhttp.send();
}

function displayContent(xml) {
var xmlDoc = xml.responseXML;
var x = xmlDoc.getElementsByTagName("root")[0].childNodes;
var content = document.getElementById("content");
for (let i = 0; i < x.length; i++) {
if (x[i].nodeType == 1) { // élément
var para = document.createElement("p");
para.textContent = x[i].textContent;
content.appendChild(para);
}
}
}

window.onload = function() {
loadXMLDoc("datacite-example-full-v4.xml");
};
</script>
</body>
</html>
41 changes: 41 additions & 0 deletions nordine5.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Exemple de chargement XML</title>
</head>
<body>
<h1>Contenu du document XML</h1>
<div id="content"></div>

<script>
function loadXMLDoc(filename) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
displayContent(this);
}
};
xhttp.open("GET", filename, true);
xhttp.send();
}

function displayContent(xml) {
var xmlDoc = xml.responseXML;
var x = xmlDoc.getElementsByTagName("root")[0].childNodes;
var content = document.getElementById("content");
for (let i = 0; i < x.length; i++) {
if (x[i].nodeType == 1) { // élément
var para = document.createElement("p");
para.textContent = x[i].textContent;
content.appendChild(para);
}
}
}

window.onload = function() {
loadXMLDoc("egusphere-2023-2044.xml");
};
</script>
</body>
</html>
41 changes: 41 additions & 0 deletions nordine6.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Exemple de chargement XML</title>
</head>
<body>
<h1>Contenu du document XML</h1>
<div id="content"></div>

<script>
function loadXMLDoc(filename) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
displayContent(this);
}
};
xhttp.open("GET", filename, true);
xhttp.send();
}

function displayContent(xml) {
var xmlDoc = xml.responseXML;
var x = xmlDoc.getElementsByTagName("root")[0].childNodes;
var content = document.getElementById("content");
for (let i = 0; i < x.length; i++) {
if (x[i].nodeType == 1) { // élément
var para = document.createElement("p");
para.textContent = x[i].textContent;
content.appendChild(para);
}
}
}

window.onload = function() {
loadXMLDoc("egusphere-2024-543.xml");
};
</script>
</body>
</html>
41 changes: 41 additions & 0 deletions nordine7.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Exemple de chargement XML</title>
</head>
<body>
<h1>Contenu du document XML</h1>
<div id="content"></div>

<script>
function loadXMLDoc(filename) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
displayContent(this);
}
};
xhttp.open("GET", filename, true);
xhttp.send();
}

function displayContent(xml) {
var xmlDoc = xml.responseXML;
var x = xmlDoc.getElementsByTagName("root")[0].childNodes;
var content = document.getElementById("content");
for (let i = 0; i < x.length; i++) {
if (x[i].nodeType == 1) { // élément
var para = document.createElement("p");
para.textContent = x[i].textContent;
content.appendChild(para);
}
}
}

window.onload = function() {
loadXMLDoc("egusphere-2024-543.xml");
};
</script>
</body>
</html>
37 changes: 37 additions & 0 deletions nordine8.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Exemple de chargement XML</title>
</head>
<body>
<h1>Contenu du document XML</h1>
<div id="content"></div>

<script>
function loadXMLDoc(filename) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
displayContent(this);
}
};
xhttp.open("GET", filename, true);
xhttp.send();
}

function displayContent(xml) {
var xmlDoc = xml.responseXML;
var x = xmlDoc.getElementsByTagName("root")[0].childNodes;
var content = document.getElementById("content");
for (let i = 0; i < x.length; i++) {
if (x[i].nodeType == 1) { // élément
var para = document.createElement("p");
para.textContent = x[i].textContent;
content.appendChild(para);
}
}
}

window.onload = function() {
loadXMLDoc("research

0 comments on commit c8e1d1c

Please sign in to comment.