Protocol handler installation updated.

This commit is contained in:
Daniel A. Nagy 2016-02-04 16:47:12 +01:00
parent befdf849ef
commit 04c0fa7d2b

View file

@ -6,10 +6,21 @@
navigator.registerProtocolHandler("bzz", navigator.registerProtocolHandler("bzz",
"http://localhost:8500/%s", "http://localhost:8500/%s",
"Swarm handler"); "Swarm handler");
navigator.registerProtocolHandler("bzzi",
"http://localhost:8500/%s",
"Swarm immutable handler");
navigator.registerProtocolHandler("bzzr",
"http://localhost:8500/%s",
"Swarm raw handler");
</script> </script>
</head> </head>
<body> <body>
<h1>Register Swarm protocol handler</h1> <h1>Register Swarm protocol handler</h1>
<p>This web page will install a web protocol handler for the <code>bzz:</code> protocol.</p> <p>This web page will install a web protocol handler for
<code>bzz:</code>,
<code>bzzi:</code> and
<code>bzzr:</code>
protocols.
</p>
</body> </body>
</html> </html>