/* cDroppably standalone, version 1.0 * (c) 2007 Lionel Tardy / etoy.com * * http://www.droppably.com/ * * Droppably is free software published under a creative commons * license. * * You are free to: * - to share, to copy, distribute and transmit the work * * Under the following conditions: * - Attribution. You must attribute the work in the manner * specified by the author or licensor (but not in any way * that suggests that they endorse you or your use of the work). * - Noncommercial. You may not use this work for commercial * purposes. * - No Derivative Works. You may not alter, transform, or build * upon this work. * * For more informations, please visit. * http://creativecommons.org/licenses/by-nc-nd/2.5/ch/ * * this version of droppavly is adapted for Mission Eternity Project by etoy /*--------------------------------------------------------------------------*/ var general_serverUrl = "http://www.missioneternity.org/droppably/"; var general_serverUrlUser = "http://www.missioneternity.org/droppably/users//"; var root_LoginLogged = ''; var root_LoginUsername = ''; var root_site_closeonopen = ''; var root_site_gird = ''; var root_site_sdc = ''; var root_prefix = '7C97B27B'; /* Function: desktopizer_writeScriptTag écrit les tags script dans le fichier Parameters: libraryName - fichier de script */ function desktopizer_writeScriptTag(libraryName) { document.write('\t\t\n'); } /* Function: desktopizer_addScripts ajoute les scriptes */ function desktopizer_addScripts() { desktopizer_writeScriptTag("/droppably/includes/js/prototype.js"); desktopizer_writeScriptTag("/droppably/includes/js/desktopizer/general.js"); desktopizer_writeScriptTag("/droppably/includes/js/desktopizer/elements.js"); desktopizer_writeScriptTag("/droppably/includes/js/desktopizer/windows.js"); desktopizer_writeScriptTag("/droppably/includes/js/desktopizer/system.js"); desktopizer_writeScriptTag("/droppably/includes/js/desktopizer/requests.js"); desktopizer_writeScriptTag("/droppably/includes/js/desktopizer/files.js"); desktopizer_writeScriptTag("/droppably/includes/js/desktopizer/events.js"); desktopizer_writeScriptTag("/droppably/includes/js/desktopizer/tooltips.js"); desktopizer_writeScriptTag("/droppably/includes/js/scriptaculous/effects.js"); desktopizer_writeScriptTag("/droppably/includes/js/scriptaculous/dragdrop.js"); desktopizer_writeScriptTag("/droppably/includes/js/scriptaculous/controls.js"); desktopizer_writeScriptTag("/droppably/includes/js/windowsManager/window.js"); desktopizer_writeScriptTag("/droppably/includes/js/windowsManager/debug.js"); // desktopizer_writeScriptTag("/droppably/includes/js/colorpicker/jquery.js"); // desktopizer_writeScriptTag("/droppably/includes/js/colorpicker/farbtastic.js"); desktopizer_writeScriptTag("/droppably/includes/js/niceforms/niceforms.js"); } /* Function: desktopizer_addLogin remplit les deux
de login */ function desktopizer_addLogin() { document.getElementById("login_f").innerHTML = "
Bitte gebe Dein Passwort ein.
Please enter your password.

password
remember me
"; if (root_LoginLogged == 0) { document.getElementById("login").innerHTML = ''; } else { document.getElementById("login").innerHTML = ''; } } /* Function: buildPage construit la page web */ function desktopizer_buildPage() { //////UU document.onkeypress = function(event) { return events_keyPress(event); }; //////UU document.onkeydown = function(event) { return events_keyDown(event); }; //////UU document.onkeyup = function(event) { return events_keyUp(event); }; //////UU document.onclick = function(event) { events_click(event, 0, 'desktop'); }; //////UU if (root_LoginLogged == 1) document.oncontextmenu = function(event) { contextMenu_Show(event,'contextMenu_TypeDesktop', 'desktop', 'desktop', false); return false; }; } desktopizer_addScripts();