~ubuntu-branches/ubuntu/wily/libhttp-body-perl/wily

« back to all changes in this revision

Viewing changes to t/data/multipart/002-content.dat

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Krzyzaniak (eloy)
  • Date: 2005-11-21 10:00:47 UTC
  • Revision ID: james.westby@ubuntu.com-20051121100047-016mx8s2eam1q6pf
Tags: upstream-0.5
ImportĀ upstreamĀ versionĀ 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--LYNX
 
2
Content-Disposition: form-data; name="text1"
 
3
Content-Type: text/plain; charset=utf-8
 
4
 
 
5
Ratione accusamus aspernatur aliquam
 
6
--LYNX
 
7
Content-Disposition: form-data; name="text2"
 
8
Content-Type: text/plain; charset=utf-8
 
9
 
 
10
 
 
11
--LYNX
 
12
Content-Disposition: form-data; name="select"
 
13
Content-Type: text/plain; charset=utf-8
 
14
 
 
15
A
 
16
--LYNX
 
17
Content-Disposition: form-data; name="select"
 
18
Content-Type: text/plain; charset=utf-8
 
19
 
 
20
B
 
21
--LYNX
 
22
Content-Disposition: form-data; name="textarea"
 
23
Content-Type: text/plain; charset=utf-8
 
24
 
 
25
Voluptatem cumque voluptate sit recusandae at. Et quas facere rerum unde esse. Sit est et voluptatem. Vel temporibus velit neque odio non.
 
26
 
 
27
Molestias rerum ut sapiente facere repellendus illo. Eum nulla quis aut. Quidem voluptas vitae ipsam officia voluptatibus eveniet. Aspernatur cupiditate ratione aliquam quidem corrupti. Eos sunt rerum non optio culpa.
 
28
 
 
29
--LYNX
 
30
Content-Disposition: form-data; name="upload"; filename="/Users/chansen/hello.pl"
 
31
Content-Type: text/plain
 
32
 
 
33
#!/usr/bin/perl
 
34
 
 
35
use strict;
 
36
use warnings;
 
37
 
 
38
print "Hello World :)\n";
 
39
 
 
40
 
 
41
--LYNX
 
42
Content-Disposition: form-data; name="upload"; filename="/Users/chansen/hello.pl"
 
43
Content-Type: text/plain
 
44
 
 
45
#!/usr/bin/perl
 
46
 
 
47
use strict;
 
48
use warnings;
 
49
 
 
50
print "Hello World :)\n";
 
51
 
 
52
 
 
53
--LYNX
 
54
Content-Disposition: form-data; name="upload1"; filename=""
 
55
Content-Type: text/plain
 
56
 
 
57
 
 
58
--LYNX
 
59
Content-Disposition: form-data; name="upload2"; filename="/Users/chansen/hello.pl"
 
60
Content-Type: text/plain
 
61
 
 
62
#!/usr/bin/perl
 
63
 
 
64
use strict;
 
65
use warnings;
 
66
 
 
67
print "Hello World :)\n";
 
68
 
 
69
 
 
70
--LYNX--