My school has recently bought a 100 ASUS eee pc's with linuxfor us to use (students). The problem is is that you cant get to your file area easily. I have a way to overcome this all you need is:
Rm Easylink server
Some basic knowledge of Javascript so that you can change the servers on which you would connect too.
i would upload the files but the form will not allow it so ill post the script and you will just have to put into a html file yourself please leave the credits at the bottom the same as i am trying to see how far i can get this.
// JavaScript Document
window.onload = load; // This initalizes the function load on stratup.
function fnNavigate(url)
{
//This asp file makes the address viewable as a folder
window.open("https://folders.ladymead.somerset.sch.uk/easylink/WebFolder.asp?url="+url,"_blank");
}
function load() {
var tgroup = prompt("What is the name of your tutour group without the your year at the start in capitals e.g NE1 AN?","");
var year = prompt("What year did you start at Ladymead e.g 2007?","");// when they started school
var username = prompt("What is your username?",""); // Asks user for username.
fnNavigate('https://folders.ladymead.somerset.sch.uk/easylink/wf.lcs-svr-003.s/' + year + '/' + tgroup + '/' + username);
return false;
}
//This script was created by Wesley Williams