Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
"Internal Server Error" on Programs page after update
#9
// Set up a live clock based on device time

function dateString(d) {
var dateString = dayList [d.getDay()]; // Moved translatable text to base.html, dk
dateString += " " + d.getDate() + " ";
dateString += monthList [d.getMonth()]; // Moved translatable text to base.html, dk
return dateString;
}

function updateClock() { // Controls time and date clock.
// Do our best to match this clock with the device clock (instead of the client device clock)
var now = new Date(Date.now() + cliTzOffset - devTzOffset);

/*
Uncomment to test styling - sets a random time
now.setHours(Math.floor(Math.random()*24));
now.setMinutes(Math.floor(Math.random()*60));
*/

if (timeFormat) {
jQuery("#deviceTime span.time").html((now.getHours() < 10 ? "0" : "") + now.getHours() + "<span class='sep'>:</span>" + (now.getMinutes() < 10 ? "0" : "") + now.getMinutes());
jQuery("#deviceTime span.ampm").html("");
} else {
jQuery("#deviceTime span.time").html((now.getHours()%12 == 0 ? "12" : now.getHours() % 12) + "<span class='sep'>:</span>" + (now.getMinutes() < 10 ? "0" : "") + now.getMinutes());
jQuery("#deviceTime span.ampm").html((now.getHours() >= 12 ? "pm" : "am"));
}
jQuery("#deviceTime span.second").text(":" + (now.getSeconds() < 10 ? "0" : "") + now.getSeconds());

jQuery("#deviceDate").text(dateString(now));
}

// Initialize standard behaviors
jQuery(document).ready(function(){



jQuery("button#bHome").click(function(){
window.location = "/";
});
jQuery("button#bOptions").click(function(){
window.location = "/vo";
});
jQuery("button#bStations").click(function(){
window.location = "/vs";
});
jQuery("button#bPrograms").click(function(){
window.location = "/vp";
});
jQuery("button#bRunOnce").click(function(){
window.location = "/vr";
});
jQuery("button#bLog").click(function(){
window.location = "/vl";
});
jQuery("button#bLogout").click(function(){
window.location = "/logout";
});

jQuery("button#bHelp").click(function(){
window.open("https://github.com/Dan-in-CA/SIP/wiki", "_blank");
});

// start the clock now, and update every second
updateClock();
setInterval(updateClock, 1000);

});

vp:1 GET http://192.168.254.145:8081/vp 500 (Internal Server Error)

So far, the "python sip.py" has shown no errors.
Reply


Messages In This Thread
RE: "Internal Server Error" on Programs page after update - by tvwebguy - 2020 Dec 05, 05:24 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)