Hi N!ck great hack !!!!
What I was missing is the auto refresh in the box when you are not integrate it in your desktop
Here a small addition.
Open template latest
Find </HEAD>
Add directly under that:
Code:
<script>
//refresh time is in "minutes:seconds"
var timer="0:30"
if (document.images){
var TimeParse=timer.split(":")
TimeParse=TimeParse[0]*60+TimeParse[1]*1
}
function refreshtime(){
if (!document.images)
return
if (TimeParse==1)
window.location.reload()
else{
TimeParse-=1
CurMinutes=Math.floor(TimeParse/60)
CurSecs=TimeParse%60
if (CurMinutes!=0)
currenttime=CurMinutes+" minutes and "+CurSecs+" seconds until page refresh!"
else
currenttime=CurSecs+" seconds left until page refresh!"
window.status=currenttime
setTimeout("refreshtime()",1000)
}
}
window.onload=refreshtime
</script>
Safe template and you will have an autorefresh of 30 secs.
For test reason there is a time display on the browser statusline. If you don't want that, remove it from the script
Have fun !
Greetzz