Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1313)

Delta Between Two Patch Sets: src/pkg/net/textproto/reader.go

Issue 4185053: code review 4185053: http: introduce Header type, implement with net/textproto (Closed)
Left Patch Set: diff -r 4892f94182a5 https://go.googlecode.com/hg/ Created 14 years, 1 month ago
Right Patch Set: diff -r 2058371f94f0 https://go.googlecode.com/hg/ Created 14 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/net/textproto/header.go ('k') | src/pkg/net/textproto/reader_test.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // Copyright 2010 The Go Authors. All rights reserved. 1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package textproto 5 package textproto
6 6
7 import ( 7 import (
8 "bufio" 8 "bufio"
9 "bytes" 9 "bytes"
10 "container/vector" 10 "container/vector"
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 // For example, consider this input: 408 // For example, consider this input:
409 // 409 //
410 // My-Key: Value 1 410 // My-Key: Value 1
411 // Long-Key: Even 411 // Long-Key: Even
412 // Longer Value 412 // Longer Value
413 // My-Key: Value 2 413 // My-Key: Value 2
414 // 414 //
415 // Given that input, ReadMIMEHeader returns the map: 415 // Given that input, ReadMIMEHeader returns the map:
416 // 416 //
417 // map[string][]string{ 417 // map[string][]string{
418 //» » "My-Key": []string{"Value 1", "Value 2"}, 418 //» » "My-Key": {"Value 1", "Value 2"},
419 //» » "Long-Key": []string{"Even Longer Value"}, 419 //» » "Long-Key": {"Even Longer Value"},
420 // } 420 // }
421 // 421 //
422 func (r *Reader) ReadMIMEHeader() (MIMEHeader, os.Error) { 422 func (r *Reader) ReadMIMEHeader() (MIMEHeader, os.Error) {
423 m := make(MIMEHeader) 423 m := make(MIMEHeader)
424 for { 424 for {
425 kv, err := r.ReadContinuedLineBytes() 425 kv, err := r.ReadContinuedLineBytes()
426 if len(kv) == 0 { 426 if len(kv) == 0 {
427 return m, err 427 return m, err
428 } 428 }
429 429
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 if upper && 'a' <= v && v <= 'z' { 483 if upper && 'a' <= v && v <= 'z' {
484 a[i] = v + 'A' - 'a' 484 a[i] = v + 'A' - 'a'
485 } 485 }
486 if !upper && 'A' <= v && v <= 'Z' { 486 if !upper && 'A' <= v && v <= 'Z' {
487 a[i] = v + 'a' - 'A' 487 a[i] = v + 'a' - 'A'
488 } 488 }
489 upper = v == '-' 489 upper = v == '-'
490 } 490 }
491 return string(a) 491 return string(a)
492 } 492 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b