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.
Esta página web se puede copiar y renombrar para permitir múltiples configuraciones y / o información de inicio de sesión.
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 = ""; // Login to use when connecting to the remote server (leave "" to use the login typed in this 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"; // Server to connect to (leave "" to use localhost and/or the server chosen in this page)
var port = ""; // Port to connect to (leave "" to use localhost and/or the port of the server chosen in this page)
var lang = "as_browser"; // Language to use
var serverhtml5 = "127.0.0.1"; // Server to connect to, when using HTML5 client
var porthtml5 = "3389"; // Port to connect to, when using HTML5 client
var cmdline = ""; // Texte optionnel qui sera mis dans le presse-papiers du serveur une fois connecté
// --------------- Fin de la configuration d'accès ---------------
Pour exemple, je vais définir démo/Mdp comme identifiant/mot de passe en modifiant :
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. Aviso importante, los diálogos propios no son compatibles con todos los navegadores.
//2. El estándar HTML no distingue entre la acción de actualizar la página y la de cerrar la página, el diálogo también aparecerá al actualizar la página.
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 = "";
// Modo RemoteApp
var remoteapp2_wallp = 'vert'; var remoteapp2_remoteapp = 'activé';
// Écran
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';
// Mapeo de discos (requerido para la impresión)
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';
// Diversos
var remoteapp2_alttab = '0';
var remoteapp2_firewall = '1';
var remoteapp2_localtb = '32';
var remoteapp2_lock = 'off';
var remoteapp2_rdp5 = 'off';
var remoteapp2_reset = 'off';