From: Wilmer Ricciotti Date: Wed, 8 Jun 2011 15:55:47 +0000 (+0000) Subject: Fix for internet explorer (but still works badly). X-Git-Tag: make_still_working~2447 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=9be9c82d734036f15089a4f6338c8a6e127a8523;p=helm.git Fix for internet explorer (but still works badly). --- 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; }