Skip to content

Commit

Permalink
Update generator.html
Browse files Browse the repository at this point in the history
  • Loading branch information
DougMac authored Dec 17, 2018
1 parent 18fd66e commit 4eaa733
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions generator.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ <h1>IPTV Bouquet Install Generator</h1>

<p>This page <strong>does not</strong> send or store any of your details it runs entirley within your browser.</p>

<p>To use enter your providers hostname and port without the starting <em>http://</em> e.g. www.suls.co.uk:8080 then your username and password.</p>
<p>To use enter your providers hostname and port e.g. http://www.suls.co.uk:8080 then your username and password.</p>

<p>Once you press <strong>Generate</strong> the one line install command will be shown. Connect to your box (i.e. using PuTTY) and then paste in the command.</p>

<label for="host">Host</label>
<input id="host" placeholder=" e.g. www.suls.co.uk:80">
<input id="host" placeholder=" e.g. http://www.suls.co.uk:8080">
<label for="username">Username</label>
<input id="username" placeholder="username">
<label for="password">Password</label>
Expand Down Expand Up @@ -82,7 +82,7 @@ <h1>IPTV Bouquet Install Generator</h1>
}
}

var installcmd = "wget -O /tmp/config.xml \"https://raw.githubusercontent.com/su1s/e2m3u2bouquet/master/generator_config.xml\" && sed -i 's/hhhhh/myhost'/g /tmp/config.xml && sed -i 's/uuuuu/myusername'/g /tmp/config.xml && sed -i 's/ppppp/mypassword'/g /tmp/config.xml && opkg install --force-reinstall \"https://github.com/su1s/e2m3u2bouquet/releases/download/v0.8.1/enigma2-plugin-extensions-e2m3u2bouquet_0.8.1_all.ipk\" && reboot";
var installcmd = "wget -O /tmp/config.xml \"https://raw.githubusercontent.com/su1s/e2m3u2bouquet/master/generator_config.xml\" && sed -i 's#hhhhh#myhost#g' /tmp/config.xml && sed -i 's/uuuuu/myusername/g' /tmp/config.xml && sed -i 's/ppppp/mypassword/g' /tmp/config.xml && opkg install --force-reinstall \"https://github.com/su1s/e2m3u2bouquet/releases/download/v0.8.1/enigma2-plugin-extensions-e2m3u2bouquet_0.8.1_all.ipk\" && reboot";
var button = document.getElementById('generate');
button.addEventListener('click', onClick);
</script>
Expand Down

0 comments on commit 4eaa733

Please sign in to comment.