source: admin/WebConsole/jscripts/hardwares.js @ aabc011

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 aabc011 was 3ec149c, checked in by alonso <alonso@…>, 15 years ago

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

  • Property mode set to 100644
File size: 1.7 KB
Line 
1// *************************************************************************************************************************************************
2// Libreria de scripts de Javascript
3// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
4// Fichero: hardwares.js
5// Este fichero implementa las funciones javascript del fichero hardwares.php
6// *************************************************************************************************************************************************
7//________________________________________________________________________________________________________
8//     
9//      Muestra formulario para gestionar los componentes incluidos en un perfil hardware
10//________________________________________________________________________________________________________
11function insertar_perfilcomponente(){
12        reset_contextual(-1,-1)
13        var identificador=currentNodo.toma_identificador()
14        var descripcionperfil=currentNodo.toma_infonodo();
15        var whref="../varios/perfilcomponente_hard.php?idperfilhard="+identificador+"&descripcionperfil="+descripcionperfil
16        window.open(whref,"frame_contenidos")
17}
18//________________________________________________________________________________________________________
19//     
20//      Muestra información sobre los perfiles hardware
21//________________________________________________________________________________________________________
22function muestra_informacion(){
23        reset_contextual(-1,-1)
24        var identificador=currentNodo.toma_identificador()
25        var descripcionperfil=currentNodo.toma_infonodo();
26        var whref="../varios/informacion_perfileshardware.php?idperfil="+identificador+"&descripcionperfil="+descripcionperfil
27        window.open(whref,"frame_contenidos")
28}
Note: See TracBrowser for help on using the repository browser.