source: admin/WebConsole/comandos/jscripts/Reiniciar.js @ 1a22cd2

918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacionwebconsole3
Last change on this file since 1a22cd2 was b0dc2e4, checked in by alonso <alonso@…>, 16 years ago

git-svn-id: https://opengnsys.es/svn/trunk@489 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[b0dc2e4]1// *************************************************************************************************************************************************
2//      Libreria de scripts de Javascript
3// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
4
5// Fecha Creación:2003-2004
6// Fecha Última modificación: Marzo-2005
7// Nombre del fichero: Reiniciar.js
8// Descripción :
9//              Este fichero implementa las funciones javascript del fichero Reiniciar.php (Comandos)
10// *************************************************************************************************************************************************
11 function confirmar(){
12        if (comprobar_datos()){
13                var wurl="./gestores/gestor_Reiniciar.php?" +compone_urlejecucion();
14                ifr=document.getElementById("iframes_comodin"); // Toma objeto Iframe
15                ifr.src=wurl; // LLama a la página gestora
16        }
17 }
18//__________________________________________________________________________________________________
19  function cancelar(){
20        alert(CTbMsg[0]);
21        location.href="../nada.php"
22}
23//__________________________________________________________________________________________________
24  function comprobar_datos(){
25                        return(comprobar_datosejecucion())
26}
27//__________________________________________________________________________________________________
28//     
29//      Comprobar retorno
30//__________________________________________________________________________________________________
31function resultado_reiniciar(resul){
32        if (!resul){
33                alert(CTbMsg[1]);       
34                return
35        }
36        alert(CTbMsg[2]);       
37}
Note: See TracBrowser for help on using the repository browser.