From f82c36f9aa41bfd224430fbc68766ba0bcdf875c Mon Sep 17 00:00:00 2001 From: Pablo Saratxaga Date: Tue, 30 Aug 2005 15:51:39 +0000 Subject: new html page doesn't have any text anymore --- HTML/script.js | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 HTML/script.js (limited to 'HTML/script.js') diff --git a/HTML/script.js b/HTML/script.js new file mode 100644 index 0000000..9126143 --- /dev/null +++ b/HTML/script.js @@ -0,0 +1,71 @@ +/* $Id$ +*/ + +/* */ +var isRemoteAvail = false; + +/* Remote web site */ +var remoteweb = 'http://start.mandriva.com/'; + +/* Display a warning message on parent document in specific element if available. + @param text string to display + @param color text color + @param background background color + @return boolean +*/ +/* +function parentMessage( text, color, background ) { + var p = parent.window.document.getElementById('status'); + if( p == null ) + return false; + + p.style.display = 'none'; + if( text == '' ) + return true; + + p.innerHTML = text; + p.style.color = color; + p.style.background = background; + p.style.display = 'block'; + return true; +} +*/ + +/* Redirect parent document to available remote web site + with the current language code. + @return boolean +*/ +function actOnline() { + var lang = null; + + try { + lang = parent.window.document.documentElement.attributes.getNamedItem('lang').value; + } catch( e ) { + return false; + } finally { } + + if( lang != null ) + remoteweb += '?l='+lang; + parent.location = remoteweb; + //parentMessage('You are online. Go to '+remoteweb+'','#006000','#aaff99'); + return true; +} + +/* If the remote website is not available. + @return boolean +*/ +function actOffline() { + //parentMessage('You are offline...','#a00000','#ffaa88'); + //TODO write in ? + return true; +} + +function bodyLoad() { if( isRemoteAvail ) { actOnline(); } else { actOffline(); } } +function imgLoad() { isRemoteAvail = true; } +function imgError() { isRemoteAvail = false; } + +window.alert = function() {} +//parentMessage( 'Mandriva...', '#000' ); + +/* +*/ -- cgit v1.2.1