Changeset 1048

Show
Ignore:
Timestamp:
11/23/07 17:28:19 (9 months ago)
Author:
kris
Message:

toString changes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/example/net/servlets.d

    r1025 r1048  
    135135                // log everything to the output 
    136136                output ("------------------------") (Newline) 
    137                        ("Uri: ") (uri.toUtf8) (Newline) 
     137                       ("Uri: ") (uri.toString) (Newline) 
    138138                       ("------------------------") (Newline) 
    139139                       ("Headers:") (Newline); 
     
    152152                // display the Servlet environment 
    153153                output ("encoding: ") (request.characterEncoding) (Newline) 
    154                        ("content length: ") (Integer.toUtf8(request.contentLength)) (Newline) 
     154                       ("content length: ") (Integer.toString(request.contentLength)) (Newline) 
    155155                       ("content type: ") (request.contentType) (Newline) 
    156156                       ("protocol: ") (request.protocol) (Newline) 
     
    158158                       ("method: ") (request.method) (Newline) 
    159159                       ("host name: ") (request.serverName) (Newline) 
    160                        ("host port: ") (Integer.toUtf8(request.serverPort)) (Newline) 
     160                       ("host port: ") (Integer.toString(request.serverPort)) (Newline) 
    161161                       ("remote address: ") (request.remoteAddress) (Newline) 
    162162                       ("remote host: ") (request.remoteHost) (Newline)