-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39b9610
commit c8e1d1c
Showing
10 changed files
with
73,793 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |