2015-03-30 18:31:31 +02:00
|
|
|
<head>
|
|
|
|
<title>C'est nul !</title>
|
|
|
|
</head>
|
|
|
|
<script src="punycode.min.js">
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
window.onload = clear;
|
|
|
|
|
|
|
|
function clear() {
|
2015-03-30 18:43:46 +02:00
|
|
|
str_hostname = punycode.toUnicode(location.host)
|
|
|
|
str_hostname = str_hostname.replace(".saynul.eu", ", c'est nul !");
|
|
|
|
str_hostname = str_hostname.replace(/\./g, " ");
|
|
|
|
document.body.innerHTML = str_hostname;
|
2015-03-30 18:31:31 +02:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
C'est nul !
|
|
|
|
</body>
|