summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2004-02-25 14:22:41 +0000
committermichelou <michelou@epfl.ch>2004-02-25 14:22:41 +0000
commitc56fa9424412d12996ed73590cd7e05089f3e690 (patch)
tree8f35340dc15cea0eb70de6fb78a2d29ec04e5683
parent6c399e82739296bf05777b8f3f8263ea8e98251b (diff)
downloadscala-c56fa9424412d12996ed73590cd7e05089f3e690.tar.gz
scala-c56fa9424412d12996ed73590cd7e05089f3e690.tar.bz2
scala-c56fa9424412d12996ed73590cd7e05089f3e690.zip
- changed encoding scheme from 'utf-8' to 'iso-...
- changed encoding scheme from 'utf-8' to 'iso-8859-1'.
-rwxr-xr-xsources/scala/tools/scaladoc/HTTPServer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/tools/scaladoc/HTTPServer.java b/sources/scala/tools/scaladoc/HTTPServer.java
index dad24df266..951e748913 100755
--- a/sources/scala/tools/scaladoc/HTTPServer.java
+++ b/sources/scala/tools/scaladoc/HTTPServer.java
@@ -163,7 +163,7 @@ public class HTTPServer extends Thread {
class RequestProcessor implements Runnable {
- private final static String ENCODING_SCHEME = "UTF-8";
+ private final static String ENCODING_SCHEME = "iso-8859-1"; // "UTF-8"
private static List pool = new LinkedList();
private File documentRootDirectory;