From 9be9c82d734036f15089a4f6338c8a6e127a8523 Mon Sep 17 00:00:00 2001 From: Wilmer Ricciotti Date: Wed, 8 Jun 2011 15:55:47 +0000 Subject: [PATCH] Fix for internet explorer (but still works badly). --- matitaB/matita/matitaweb.js | 3 ++- matitaB/matita/netplex.conf | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/matitaB/matita/matitaweb.js b/matitaB/matita/matitaweb.js index d4dbe63e8..8f77fe4f8 100644 --- a/matitaB/matita/matitaweb.js +++ b/matitaB/matita/matitaweb.js @@ -35,7 +35,8 @@ function initialize() function debug(txt) { - logarea.innerHTML = txt + "\n" + logarea.innerHTML; + // internet explorer (v.9) doesn't work with innerHTML + logarea.innerText = txt + "\n" + logarea.innerText; } function listhd(l) diff --git a/matitaB/matita/netplex.conf b/matitaB/matita/netplex.conf index 08b7481e6..d7d403be9 100644 --- a/matitaB/matita/netplex.conf +++ b/matitaB/matita/netplex.conf @@ -27,7 +27,7 @@ netplex { path = "/"; service { type = "file"; - docroot = "/home/barolo/matitaB/matita"; + docroot = "/home/ricciott/matitaB/matita"; media_types_file = "/etc/mime.types"; enable_listings = true; } -- 2.39.2