summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2005-05-02 09:23:21 +0000
committermichelou <michelou@epfl.ch>2005-05-02 09:23:21 +0000
commitd6a1e148ac2ee837464a51009446c603fb3cc48a (patch)
treef87a943de81b5908c4c79a39f3f5e59ff5aca1bc /sources
parent680392e3eab1a721c4c08fd6b579559a3d455700 (diff)
downloadscala-d6a1e148ac2ee837464a51009446c603fb3cc48a.tar.gz
scala-d6a1e148ac2ee837464a51009446c603fb3cc48a.tar.bz2
scala-d6a1e148ac2ee837464a51009446c603fb3cc48a.zip
- changed HTML tags to lower case.
Diffstat (limited to 'sources')
-rwxr-xr-xsources/scala/tools/scaladoc/HTTPServer.java36
1 files changed, 18 insertions, 18 deletions
diff --git a/sources/scala/tools/scaladoc/HTTPServer.java b/sources/scala/tools/scaladoc/HTTPServer.java
index a46bc7acb6..9395fd4898 100755
--- a/sources/scala/tools/scaladoc/HTTPServer.java
+++ b/sources/scala/tools/scaladoc/HTTPServer.java
@@ -1,6 +1,6 @@
/* ____ ____ ____ ____ ______ *\
** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala **
-** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL **
+** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002-2005, LAMP/EPFL **
** /_____/\____/\___/\____/____/ **
\* */
@@ -51,7 +51,7 @@ class EchoServlet extends Servlet {
String value = (String) map.get(key);
try {
out.write(key + " -> " + value + "\n");
- } catch(IOException e) {}
+ } catch (IOException e) {}
}
}
}
@@ -68,7 +68,7 @@ public class HTTPServer extends Thread {
private ServerSocket server;
private int numThreads = 50;
- private Map/*[String,Servlet]*/ servletNamed;
+ private Map/*<String,Servlet>*/ servletNamed;
public HTTPServer(File documentRootDirectory,
int port,
@@ -104,7 +104,7 @@ public class HTTPServer extends Thread {
Servlet[] servlets) throws IOException {
this(documentRootDirectory, port, "index.html");
servletNamed = new HashMap();
- for(int i = 0; i < servlets.length; i++)
+ for (int i = 0; i < servlets.length; i++)
servletNamed.put("/" + servlets[i].name(), servlets[i]);
}
@@ -208,7 +208,7 @@ class RequestProcessor implements Runnable {
* the result map.
*/
public static Map parseQuery(String query) {
- Map map = new HashMap();
+ Map/*<String,String>*/ map = new HashMap();
try {
String[] bindings = query.split("\\&");
String regexp = "([^=]*)=([^=]*)";
@@ -237,15 +237,15 @@ class RequestProcessor implements Runnable {
out.write("Server: HTTPServer 1.0\r\n");
out.write("Content-type: text/html\r\n\r\n");
}
- out.write("<HTML>\r\n");
- out.write("<HEAD><TITLE>File Not Found</TITLE>\r\n");
- out.write("</HEAD>\r\n");
- out.write("<BODY>");
- out.write("<H1>HTTP Error 404: File Not Found</H1>\r\n");
- out.write("</BODY></HTML>\r\n");
+ out.write("<html>\r\n");
+ out.write("<head><title>File Not Found</title>\r\n");
+ out.write("</head>\r\n");
+ out.write("<body>");
+ out.write("<h1>HTTP Error 404: File Not Found</h1>\r\n");
+ out.write("</body></html>\r\n");
out.flush();
}
- catch(IOException e) {
+ catch (IOException e) {
}
}
@@ -360,12 +360,12 @@ class RequestProcessor implements Runnable {
out.write("Server: HTTPServer 1.0\r\n");
out.write("Content-type: text/html\r\n\r\n");
}
- out.write("<HTML>\r\n");
- out.write("<HEAD><TITLE>Not Implemented</TITLE>\r\n");
- out.write("</HEAD>\r\n");
- out.write("<BODY>");
- out.write("<H1>HTTP Error 501: Not Implemented</H1>\r\n");
- out.write("</BODY></HTML>\r\n");
+ out.write("<html>\r\n");
+ out.write("<head><title>Not Implemented</title>\r\n");
+ out.write("</head>\r\n");
+ out.write("<body>");
+ out.write("<h1>HTTP Error 501: Not Implemented</h1>\r\n");
+ out.write("</body></html>\r\n");
out.flush();
}
}