Changeset 2670 for lmd/trunk/fuentes/admin-center-ltsp.install
- Timestamp:
- Oct 24, 2016, 3:06:45 PM (4 years ago)
- Location:
- lmd/trunk/fuentes/admin-center-ltsp.install/lliurex-ltsp
- Files:
-
- 10 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
lmd/trunk/fuentes/admin-center-ltsp.install/lliurex-ltsp/module.json
r2582 r2670 5 5 "description": "Thin Client Manager", 6 6 "main":"main.html", 7 "help":"lliurex-ltsp.md", 7 8 "components": 8 9 [ … … 10 11 "menuEntry":"Client Images", 11 12 "id":"ltsp_images", 12 "main":"images.html" 13 "main":"images.html", 14 "help":"ltsp-client-images.md" 13 15 }, 14 16 { … … 21 23 "id":"llx-exported", 22 24 "main":"exported.html" 25 }, 26 { 27 "menuEntry":"Client Management", 28 "id":"ltsp-client-management", 29 "main":"ltsp-client-management.html" 23 30 } 24 31 ] -
lmd/trunk/fuentes/admin-center-ltsp.install/lliurex-ltsp/src/exported.html
r2624 r2670 2 2 <div class='col-md-9 well bs-component col-md-offset-2' id="Llx_ltsp_images_exported"> 3 3 <!--iframe src="http://192.168.57.111/exported/" width="100%" height="100%"> </iframe--> 4 <!--script>document.write("<iframe src='http://"+location.host+"/exported/' width='100%' height='100%'> </iframe>");</script-->5 6 4 </div> 7 5 </div> -
lmd/trunk/fuentes/admin-center-ltsp.install/lliurex-ltsp/src/i18n/ca-ES@valencia/messages.json
r2624 r2670 64 64 "ltsp.exporter.download":["Descàrrega"], 65 65 "ltsp.exporter.import":["Importa"], 66 "ltsp.exporter.ask.confirm.import":["Voleu importar la imatge en aquest servidor?"] 66 "ltsp.exporter.ask.confirm.import":["Voleu importar la imatge en aquest servidor?"], 67 "ltsp_client_use_autologin":["Autenticació automàtica"], 68 "ltsp_client_autologin_name":["Usuari per a l'accés automàtic"], 69 "ltsp_client_autologin_pass":["Contrassenya per a l'accés automàtic"], 70 "ltsp_client_force_thin":["Força'l com a client lleuger"], 71 "ltsp_client_extra_opts_per_mac":["Opcions addicionals"], 72 "ltsp_client_default_boot":["Arrancada per defecte"], 73 "ltsp_client_default_boot_option":["Opció d'arrancada per defecte"], 74 "llx.ltspclientmanager.client.saved":["S'ha guardat la configuració del client"] 75 76 67 77 } 68 78 } -
lmd/trunk/fuentes/admin-center-ltsp.install/lliurex-ltsp/src/i18n/en-US/messages.json
r2624 r2670 64 64 "ltsp.exporter.download":["Download"], 65 65 "ltsp.exporter.import":["Import"], 66 "ltsp.exporter.ask.confirm.import":["Do you want to import the image in this server?"] 66 "ltsp.exporter.ask.confirm.import":["Do you want to import the image in this server?"], 67 "ltsp_client_use_autologin":["Use autologin"], 68 "ltsp_client_autologin_name":["Autologin Username"], 69 "ltsp_client_autologin_pass":["Autologin Password"], 70 "ltsp_client_force_thin":["Force thin client"], 71 "ltsp_client_extra_opts_per_mac":["Extra options"], 72 "ltsp_client_default_boot":["Default boot"], 73 "ltsp_client_default_boot_option":["Default boot"], 74 "llx.ltspclientmanager.client.saved":["Client options has been saved"] 75 67 76 } 68 77 } -
lmd/trunk/fuentes/admin-center-ltsp.install/lliurex-ltsp/src/i18n/es-ES/messages.json
r2624 r2670 64 64 "ltsp.exporter.download":["Descarga"], 65 65 "ltsp.exporter.import":["Importa"], 66 "ltsp.exporter.ask.confirm.import":["Desea importar la imagen en este servidor?"] 66 "ltsp.exporter.ask.confirm.import":["Desea importar la imagen en este servidor?"], 67 "ltsp_client_use_autologin":["Autenticación automática"], 68 "ltsp_client_autologin_name":["Usuario para el acceso automático"], 69 "ltsp_client_autologin_pass":["Contraseña para el acceso automático"], 70 "ltsp_client_force_thin":["Fuerza como cliente ligero"], 71 "ltsp_client_extra_opts_per_mac":["Opciones adicionales"], 72 "ltsp_client_default_boot":["Arranque por defecto"], 73 "ltsp_client_default_boot_option":["Opción de arranque por defecto"], 74 "llx.ltspclientmanager.client.saved":["Las configuración del cliente se ha guardado"] 67 75 } 68 76 } -
lmd/trunk/fuentes/admin-center-ltsp.install/lliurex-ltsp/src/js/imageManager.js
r2582 r2670 759 759 ImageManager.prototype.regenerateImage=function regenerateImage(id){ 760 760 var credentials=[sessionStorage.username , sessionStorage.password]; 761 762 763 764 765 761 var n4dclass="LmdServer"; 762 var n4dmethod="refresh_imageWS"; 763 var arglist=[]; 764 arglist.push(id); 765 Utils.n4dWithLog(credentials, n4dclass, n4dmethod, arglist, null); // no callback is needed 766 766 } 767 767 -
lmd/trunk/fuentes/admin-center-ltsp.install/lliurex-ltsp/src/js/lliurex-ltsp.js
r1527 r2670 5 5 this.Llx_ltsconf_LI=null; // LTS.conf options 6 6 7 this.ExportedManager=null; 7 8 8 9 9 10 10 11 } … … 18 19 self.Llx_ltsconf_LI=new Llx_ltsconf(); 19 20 self.Llx_ltsconf_LI.bindEvents(); 21 22 // Exported Manager 23 self.ExportedManager=new LTSPExportedManager(); 24 self.ExportedManager.init(); 25 26 // Clients Manager 27 self.ClientManager=new LTSPClientManager(); 28 self.ClientManager.init(); 20 29 21 30 } … … 30 39 self.init(); 31 40 }); 41 42 $("#bttest").on("click", function(event){ 43 //var text=Utils.showMarkDown.makeHtml("#hello, markdown!"); 44 //alert(text); 45 event.stopPropagation(); 46 var helpname=$(event.currentTarget).attr("help"); 47 var location=window.location.toString(); 48 var helpfile = location.substring(0,location.length-8)+"modules/lliurex-ltsp/src/help/"+helpname; 49 Utils.showHelp(helpfile); 50 51 }); 32 52 33 53 // componentShown: Triggered when a module component is clicked
Note: See TracChangeset
for help on using the changeset viewer.