LEFT | RIGHT |
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 Loading... |
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 Loading... |
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 } |
LEFT | RIGHT |