Pages HTML et personnalisation
You can edit the provided HTML pages with Notepad or Notepad++ to customize its user interface.
index.html page
El archivo index.html se encuentra en la ruta de la carpeta raíz del servidor web.
C:\Program Files (x86)\TSplus\Clients\www
Index.html page is the default web page. It’s like a front-end Portal page with links to the connection pages which are located in \www\ folder. This web page can be copied and renamed to allow multiple configuration and / or logon information. For example let’s copy and rename index.html into index2.html, this page will be available using this url http://localhost/index2.html
Beware that if you change the “index.html” file name to “index2.html” and that you are using the Web Applications Portal, then you must change the following variable on this file: “page_configuration[“applications_portal”] = “index_applications.html” to “index2_applications.html” then rename the “index_applications.html” file into “index_2applications.html”.
El archivo index.html predeterminado incluye todas las opciones posibles:
- Accès RemoteApp aux applications, connexion en dehors du navigateur Web
- Connection utilisant HTML5 depuis n'importe quel appareil
- Préférences d'impression locale
You will be able to change header and footer in the Web portal design feature on the web portal preferences tile of the Web tab.
Al editar la página web index.html, tendrás acceso a varias configuraciones.
// --------------- Configuration d'accès --------------- var user = ""; // Identifiant à utiliser lors de la connexion au serveur distant (laisser "" pour utiliser l'identifiant saisi sur cette page) var pass = ""; // Mot de passe à utiliser lors de la connexion au serveur distant (laisser "" pour utiliser le mot de passe saisi sur cette page) var domain = ""; // Domaine à utiliser lors de la connexion au serveur distant (laisser "" pour utiliser le domaine saisi sur cette page) var server = "127.0.0.1"; // Serveur auquel se connecter (laisser "" pour utiliser localhost et/ou le serveur choisi sur cette page) var port = ""; // Port auquel se connecter (laisser "" pour utiliser localhost et/ou le port du serveur choisi sur cette page) var lang = "as_browser"; // Langue à utiliser var serverhtml5 = "127.0.0.1"; // Serveur auquel se connecter, lors de l'utilisation du client HTML5 var porthtml5 = "3389"; // Port auquel se connecter, lors de l'utilisation du client HTML5 var cmdline = ""; // Texte optionnel qui sera mis dans le presse-papiers du serveur une fois connecté // --------------- Fin de la configuration d'accès ---------------
For example, I will set demo/Psw as login/password by editing: var user = “Demo”; var pass = “Psw”;
Al hacerlo, las credenciales predefinidas son visibles en cada visita al portal.
Eine weitere sehr wichtige Konfigurationsdatei ist settings.js , situé dans C:\Program Files (x86)\TSplus\Clients\www\software\html5:
Este archivo contiene varias configuraciones para el cliente web HTML5, como desactivar el sonido, el portapapeles o permitir la reconexión de la sesión si se cierra la pestaña del navegador.
- Deshabilitar el portapapeles:
W.clipboard = "yes"; //or "no"
- Desactivar el sonido se realiza con esta configuración:
W.playsound = false;
- Changing default resolution for Mobile devices:
W.viewportwidth = "1024" - La altura se calcula mediante el navegador.
- Forcer HTTPS pour la connexion à distance
W.forcealways_ssl = true;
- Permitir la reconexión de la sesión cuando se cierra la pestaña del navegador:
W.send_logoff = false;
- Adding a warning pop up to prevent closing the browser tab:
search the “W.pageUnloadMessage = "" ” parameter.
He establecido un ejemplo de mensaje que se utilizará a continuación:
W.pageUnloadMessage = “Closing this tab will disconnect your remote session, are you sure ?”; //Dialog to return when page unloads. //1. Important notice, own dialogs are not supported in all browsers. //2. HTML standard does not distinguish between page refresh and page close action, the dialog will popup on page refresh too.
Die allgemeinen Einstellungen für die RemoteApp-Webseite werden im Software-Ordner in zwei verschiedenen Dateien gespeichert: remoteapp.html y remoteapp2.js .
Example des paramètres disponibles présents dans remoteapp2.js :
// Serveur de bureau à distance var remoteapp2_server = ”; var remoteapp2_port = ‘443’;
// Windows Authentication var remoteapp2_user = ”; var remoteapp2_psw = ”; var remoteapp2_domain = ”;
// Paramètres de ligne de commande optionnels var remoteapp2_apppath = ”;
// Seamless/RemoteApp mode var remoteapp2_wallp = 'green'; var remoteapp2_seamless = 'off'; var remoteapp2_remoteapp = 'on';
// Screen var remoteapp2_color = '32'; var remoteapp2_full = '2'; var remoteapp2_width = ''; var remoteapp2_height = ''; var remoteapp2_scale = '100'; var remoteapp2_smartsizing = '1'; var remoteapp2_dualscreen = 'off'; var remoteapp2_span = 'off';
// Disks mapping (required for printing) var remoteapp2_disk = '1';
// Impression var remoteapp2_printer = 'off'; var remoteapp2_preview = 'off'; var remoteapp2_default = 'on'; var remoteapp2_select = 'off';
// Hardware var remoteapp2_com = '0'; var remoteapp2_smartcard = '0'; var remoteapp2_serial = 'off'; var remoteapp2_usb = 'off'; var remoteapp2_sound = 'on'; var remoteapp2_directx = 'off';
// Miscellaneous var remoteapp2_alttab = '0'; var remoteapp2_firewall = '1'; var remoteapp2_localtb = '32'; var remoteapp2_lock = 'off'; var remoteapp2_rdp5 = 'off'; var remoteapp2_reset = 'off';