less than 80 characters per line

This commit is contained in:
Daniel Steglich 2015-03-05 22:03:55 +01:00
parent 94991b9bb6
commit 45960542bb
2 changed files with 12 additions and 8 deletions

View File

@ -27,9 +27,10 @@
The solution is to assign a DNS name to your IP address and update the DNS
name every time your IP is changed by your Internet provider. Dynamic DNS
allows you to push your current public IP address to an
<a href='http://gnudip2.sourceforge.net/' target='_blank'> gnudip </a> server.
Afterwards the Server will assign your DNS name with the new IP and if someone
from the internet asks for your DNS name he will get your current IP answered.
<a href='http://gnudip2.sourceforge.net/' target='_blank'> gnudip </a>
server. Afterwards the Server will assign your DNS name with the new IP
and if someone from the internet asks for your DNS name he will get your
current IP answered.
</br> </br>
If you are looking for a free dynamic DNS account, you may find one
<a href='http://gnudip.datasystems24.net' target='_blank'> here</a></>

View File

@ -26,7 +26,8 @@
{% csrf_token %}
<div id='dynamicdns-no-js'>
You have disabled Javascript. Dynamic form mode is disabled and
some helper functions may not work <br> (but the main functionality should work)
some helper functions may not work <br>
(but the main functionality should work)
<br><hr>
</div>
@ -63,8 +64,8 @@
});
$('#id_dynamicdns-showpw').change(function() {
//changing type attribute from password to text is prevented by most browsers
//make a new form field works for me
//changing type attribute from password to text is prevented by
//most browsers make a new form field works for me
if ($('#id_dynamicdns-showpw').prop('checked')) {
$('#id_dynamicdns-dynamicdns_secret').replaceWith(
$('#id_dynamicdns-dynamicdns_secret').clone().attr(
@ -78,8 +79,10 @@
function configure_dropdown()
{
var SELFHOST = 'https://carol.selfhost.de/update?username=<User>&password=<Pass>&myip=<Ip>'
var NOIP = 'http://dynupdate.no-ip.com/nic/update?hostname=<Domain>&myip=<Ip>'
var SELFHOST = 'https://carol.selfhost.de/update?username=<User>&' +
'password=<Pass>&myip=<Ip>'
var NOIP = 'http://dynupdate.no-ip.com/nic/update?hostname=<' +
'Domain>&myip=<Ip>'
if ($("#id_dynamicdns-service_type option:selected").text() == "GnuDIP") {
document.getElementById('id_dynamicdns-dynamicdns_update_url').value = '';