http-headers
54.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:http="http://www.w3.org/2006/http#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xml:base="http://www.w3.org/2008/http-headers" >
<rdf:Description rdf:about="http://www.w3.org/2008/http-headers#">
<rdfs:comment>This has been obsoleted by http://www.w3.org/2011/http-headers.rdfs</rdfs:comment>
<rdfs:seeAlso rdf:resource="http://www.w3.org/2011/http-headers.rdfs" />
</rdf:Description>
<rdf:Description rdf:about="#proxy-authenticate">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Proxy-Authenticate header</dc:description>
<dc:title xml:lang="en">Proxy-Authenticate</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2227.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2227.txt</dc:identifier>
<dc:title xml:lang="en">Simple Hit-Metering and Usage-Limiting for HTTP</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#pragma">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Pragma header</dc:description>
<dc:title xml:lang="en">Pragma</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.watersprings.org/pub/id/draft-mutz-http-attributes-00.txt">
<dc:identifier>http://www.watersprings.org/pub/id/draft-mutz-http-attributes-00.txt</dc:identifier>
<dc:title xml:lang="en">User-Agent Display Attributes Headers</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#ua-pixels">
<rdfs:isDefinedBy rdf:resource="http://www.watersprings.org/pub/id/draft-mutz-http-attributes-00.txt"/>
<dc:description xml:lang="en">The UA-Pixels header</dc:description>
<dc:title xml:lang="en">UA-Pixels</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/TR/WD-proxy-960221">
<dc:identifier>http://www.w3.org/TR/WD-proxy-960221</dc:identifier>
<dc:title xml:lang="en">Notification for Proxy Caches</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#protocol-request">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/REC-PICS-labels-961031"/>
<dc:description xml:lang="en">The Protocol-Request header</dc:description>
<dc:title xml:lang="en">Protocol-Request</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#content-encoding">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Content-Encoding header</dc:description>
<dc:title xml:lang="en">Content-Encoding</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc3253.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc3253.txt</dc:identifier>
<dc:title xml:lang="en">Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#proxy-instruction">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/WD-proxy-960221"/>
<dc:description xml:lang="en">The Proxy-Instruction header</dc:description>
<dc:title xml:lang="en">Proxy-Instruction</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#accept-encoding">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Accept-Encoding header</dc:description>
<dc:title xml:lang="en">Accept-Encoding</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#cost">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/Protocols/HTTP/Object_Headers.html"/>
<dc:description xml:lang="en">The Cost header</dc:description>
<dc:title xml:lang="en">Cost</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2774.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2774.txt</dc:identifier>
<dc:title xml:lang="en">An HTTP Extension Framework</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#referer">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Referer header</dc:description>
<dc:title xml:lang="en">Referer</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#lock-token">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2518.txt"/>
<dc:description xml:lang="en">The Lock-Token header</dc:description>
<dc:title xml:lang="en">Lock-Token</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#ua-media">
<rdfs:isDefinedBy rdf:resource="http://www.watersprings.org/pub/id/draft-mutz-http-attributes-00.txt"/>
<dc:description xml:lang="en">The UA-Media header</dc:description>
<dc:title xml:lang="en">UA-Media</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc3648.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc3648.txt</dc:identifier>
<dc:title xml:lang="en">Web Distributed Authoring and Versioning (WebDAV) Ordered Collections Protocol</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#cache-control">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Cache-Control header</dc:description>
<dc:title xml:lang="en">Cache-Control</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#authentication-info">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2617.txt"/>
<dc:description xml:lang="en">The Authentication-Info header</dc:description>
<dc:title xml:lang="en">Authentication-Info</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#link">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2068.txt"/>
<dc:description xml:lang="en">The Link header</dc:description>
<dc:title xml:lang="en">Link</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#label">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc3253.txt"/>
<dc:description xml:lang="en">The Label header</dc:description>
<dc:title xml:lang="en">Label</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/TR/REC-PICS-labels-961031">
<dc:identifier>http://www.w3.org/TR/REC-PICS-labels-961031</dc:identifier>
<dc:title xml:lang="en">PICS 1.1 Label Distribution -- Label Syntax and Communication Protocols</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#retry-after">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Retry-After header</dc:description>
<dc:title xml:lang="en">Retry-After</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/TR/NOTE-drp-19970825">
<dc:identifier>http://www.w3.org/TR/NOTE-drp-19970825</dc:identifier>
<dc:title xml:lang="en">The HTTP Distribution and Replication Protocol</dc:title>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/TR/NOTE-OPS-OverHTTP">
<dc:identifier>http://www.w3.org/TR/NOTE-OPS-OverHTTP</dc:identifier>
<dc:title xml:lang="en">Implementation of OPS Over HTTP</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#content-version">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2068.txt"/>
<dc:description xml:lang="en">The Content-Version header</dc:description>
<dc:title xml:lang="en">Content-Version</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#ordering-type">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc3648.txt"/>
<dc:description xml:lang="en">The Ordering-Type header</dc:description>
<dc:title xml:lang="en">Ordering-Type</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#ext">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2774.txt"/>
<dc:description xml:lang="en">The Ext header</dc:description>
<dc:title xml:lang="en">Ext</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#pep">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/WD-http-pep"/>
<dc:description xml:lang="en">The PEP header</dc:description>
<dc:title xml:lang="en">PEP</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2617.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2617.txt</dc:identifier>
<dc:title xml:lang="en">HTTP Authentication: Basic and Digest Access Authentication</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#protocol-query">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/NOTE-jepi-970519"/>
<dc:description xml:lang="en">The Protocol-Query header</dc:description>
<dc:title xml:lang="en">Protocol-Query</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#resolution-hint">
<rdfs:isDefinedBy rdf:resource="http://www3.ietf.org/proceedings/98dec/I-D/draft-girod-w3-id-res-ext-00.txt"/>
<dc:description xml:lang="en">The Resolution-Hint header</dc:description>
<dc:title xml:lang="en">Resolution-Hint</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#accept-ranges">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Accept-Ranges header</dc:description>
<dc:title xml:lang="en">Accept-Ranges</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#protocol-info">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/NOTE-jepi-970519"/>
<dc:description xml:lang="en">The Protocol-Info header</dc:description>
<dc:title xml:lang="en">Protocol-Info</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#if-modified-since">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The If-Modified-Since header</dc:description>
<dc:title xml:lang="en">If-Modified-Since</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#want-digest">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc3230.txt"/>
<dc:description xml:lang="en">The Want-Digest header</dc:description>
<dc:title xml:lang="en">Want-Digest</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#set-cookie2">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2965.txt"/>
<dc:description xml:lang="en">The Set-Cookie2 header</dc:description>
<dc:title xml:lang="en">Set-Cookie2</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#date">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Date header</dc:description>
<dc:title xml:lang="en">Date</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www3.ietf.org/proceedings/98dec/I-D/draft-mogul-http-dupsup-00.txt">
<dc:identifier>http://www3.ietf.org/proceedings/98dec/I-D/draft-mogul-http-dupsup-00.txt</dc:identifier>
<dc:title xml:lang="en">Duplicate Suppression in HTTP</dc:title>
</rdf:Description>
<rdf:Description rdf:about="">
<owl:imports rdf:resource="http://purl.org/dc/dcam/"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
<owl:imports rdf:resource="http://www.w3.org/2006/http"/>
<owl:imports rdf:resource="http://purl.org/dc/elements/1.1/"/>
</rdf:Description>
<rdf:Description rdf:about="#derived-from">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2068.txt"/>
<dc:description xml:lang="en">The Derived-From header</dc:description>
<dc:title xml:lang="en">Derived-From</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#upgrade">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Upgrade header</dc:description>
<dc:title xml:lang="en">Upgrade</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#via">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Via header</dc:description>
<dc:title xml:lang="en">Via</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#ua-color">
<rdfs:isDefinedBy rdf:resource="http://www.watersprings.org/pub/id/draft-mutz-http-attributes-00.txt"/>
<dc:description xml:lang="en">The UA-Color header</dc:description>
<dc:title xml:lang="en">UA-Color</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#delta-base">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc3229.txt"/>
<dc:description xml:lang="en">The Delta-Base header</dc:description>
<dc:title xml:lang="en">Delta-Base</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#max-forwards">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Max-Forwards header</dc:description>
<dc:title xml:lang="en">Max-Forwards</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#timeout">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2518.txt"/>
<dc:description xml:lang="en">The Timeout header</dc:description>
<dc:title xml:lang="en">Timeout</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#location">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Location header</dc:description>
<dc:title xml:lang="en">Location</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#digest">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc3230.txt"/>
<dc:description xml:lang="en">The Digest header</dc:description>
<dc:title xml:lang="en">Digest</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#set-cookie">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2109.txt"/>
<dc:description xml:lang="en">The Set-Cookie header</dc:description>
<dc:title xml:lang="en">Set-Cookie</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#c-ext">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2774.txt"/>
<dc:description xml:lang="en">The C-Ext header</dc:description>
<dc:title xml:lang="en">C-Ext</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#version">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/Protocols/HTTP/Object_Headers.html"/>
<dc:description xml:lang="en">The Version header</dc:description>
<dc:title xml:lang="en">Version</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#expires">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Expires header</dc:description>
<dc:title xml:lang="en">Expires</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#message-id">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/Protocols/HTTP/Object_Headers.html"/>
<dc:description xml:lang="en">The Message-ID header</dc:description>
<dc:title xml:lang="en">Message-ID</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#depth">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2518.txt"/>
<dc:description xml:lang="en">The Depth header</dc:description>
<dc:title xml:lang="en">Depth</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#content-md5">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Content-MD5 header</dc:description>
<dc:title xml:lang="en">Content-MD5</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#redirect-ref">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc4437.txt"/>
<dc:description xml:lang="en">The Redirect-Ref header</dc:description>
<dc:title xml:lang="en">Redirect-Ref</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#if-match">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The If-Match header</dc:description>
<dc:title xml:lang="en">If-Match</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#ua-resolution">
<rdfs:isDefinedBy rdf:resource="http://www.watersprings.org/pub/id/draft-mutz-http-attributes-00.txt"/>
<dc:description xml:lang="en">The UA-Resolution header</dc:description>
<dc:title xml:lang="en">UA-Resolution</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#accept-charset">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Accept-Charset header</dc:description>
<dc:title xml:lang="en">Accept-Charset</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#c-pep">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/WD-http-pep"/>
<dc:description xml:lang="en">The C-PEP header</dc:description>
<dc:title xml:lang="en">C-PEP</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#c-pep-info">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/WD-http-pep"/>
<dc:description xml:lang="en">The C-PEP-Info header</dc:description>
<dc:title xml:lang="en">C-PEP-Info</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#c-opt">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2774.txt"/>
<dc:description xml:lang="en">The C-Opt header</dc:description>
<dc:title xml:lang="en">C-Opt</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#ua-windowpixels">
<rdfs:isDefinedBy rdf:resource="http://www.watersprings.org/pub/id/draft-mutz-http-attributes-00.txt"/>
<dc:description xml:lang="en">The header</dc:description>
<dc:title xml:lang="en"></dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#content-range">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Content-Range header</dc:description>
<dc:title xml:lang="en">Content-Range</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#p3p">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/2002/REC-P3P-20020416/"/>
<dc:description xml:lang="en">The P3P header</dc:description>
<dc:title xml:lang="en">P3P</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#negotiate">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2295.txt"/>
<dc:description xml:lang="en">The Negotiate header</dc:description>
<dc:title xml:lang="en">Negotiate</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#optional">
<rdfs:isDefinedBy rdf:resource="http://www3.ietf.org/proceedings/98dec/I-D/draft-girod-w3-id-res-ext-00.txt"/>
<dc:description xml:lang="en">The Optional header</dc:description>
<dc:title xml:lang="en">Optional</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#dav">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2518.txt"/>
<dc:description xml:lang="en">The DAV header</dc:description>
<dc:title xml:lang="en">DAV</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2616.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2616.txt</dc:identifier>
<dc:title xml:lang="en">Hypertext Transfer Protocol -- HTTP/1.1</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#subst">
<rdfs:isDefinedBy rdf:resource="http://www3.ietf.org/proceedings/98dec/I-D/draft-mogul-http-dupsup-00.txt"/>
<dc:description xml:lang="en">The Subst header</dc:description>
<dc:title xml:lang="en">Subst</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/TR/2000/NOTE-SOAP-20000508/">
<dc:identifier>http://www.w3.org/TR/2000/NOTE-SOAP-20000508/</dc:identifier>
<dc:title xml:lang="en">Simple Object Access Protocol (SOAP) 1.1</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#opt">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2774.txt"/>
<dc:description xml:lang="en">The Opt header</dc:description>
<dc:title xml:lang="en">Opt</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#a-im">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc3229.txt"/>
<dc:description xml:lang="en">The A-IM header</dc:description>
<dc:title xml:lang="en">A-IM</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#transfer-encoding">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Transfer-Encoding header</dc:description>
<dc:title xml:lang="en">Transfer-Encoding</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#man">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2774.txt"/>
<dc:description xml:lang="en">The Man header</dc:description>
<dc:title xml:lang="en">Man</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#accept-features">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2295.txt"/>
<dc:description xml:lang="en">The Accept-Features header</dc:description>
<dc:title xml:lang="en">Accept-Features</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#warning">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Warning header</dc:description>
<dc:title xml:lang="en">Warning</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#non-compliance">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/Protocols/HTTP/Object_Headers.html"/>
<dc:description xml:lang="en">The Non-Compliance header</dc:description>
<dc:title xml:lang="en">Non-Compliance</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#content-style-type">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/1999/REC-html401-19991224/"/>
<dc:description xml:lang="en">The Content-Style-Type header</dc:description>
<dc:title xml:lang="en">Content-Style-Type</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#content-length">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Content-Length header</dc:description>
<dc:title xml:lang="en">Content-Length</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#proxy-authorization">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Proxy-Authorization header</dc:description>
<dc:title xml:lang="en">Proxy-Authorization</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/Protocols/HTTP/Object_Headers.html">
<dc:identifier>http://www.w3.org/Protocols/HTTP/Object_Headers.html</dc:identifier>
<dc:title xml:lang="en">Object Header lines in HTTP</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#differential-id">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/NOTE-drp-19970825"/>
<dc:description xml:lang="en">The Differential-ID header</dc:description>
<dc:title xml:lang="en">Differential-ID</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#user-agent">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The User-Agent header</dc:description>
<dc:title xml:lang="en">User-Agent</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc3229.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc3229.txt</dc:identifier>
<dc:title xml:lang="en">Delta encoding in HTTP</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#if-range">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The If-Range header</dc:description>
<dc:title xml:lang="en">If-Range</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#subok">
<rdfs:isDefinedBy rdf:resource="http://www3.ietf.org/proceedings/98dec/I-D/draft-mogul-http-dupsup-00.txt"/>
<dc:description xml:lang="en">The SubOK header</dc:description>
<dc:title xml:lang="en">SubOK</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/TR/NOTE-jepi-970519">
<dc:identifier>http://www.w3.org/TR/NOTE-jepi-970519</dc:identifier>
<dc:title xml:lang="en">White Paper: Joint Electronic Payment Initiative</dc:title>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2324.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2324.txt</dc:identifier>
<dc:title xml:lang="en">Hyper Text Coffee Pot Control Protocol (HTCPCP/1.0)</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#range">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Range header</dc:description>
<dc:title xml:lang="en">Range</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/TR/2001/NOTE-edge-arch-20010804">
<dc:identifier>http://www.w3.org/TR/2001/NOTE-edge-arch-20010804</dc:identifier>
<dc:title xml:lang="en">Edge Architecture Specification</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#setprofile">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/NOTE-OPS-OverHTTP"/>
<dc:description xml:lang="en">The SetProfile header</dc:description>
<dc:title xml:lang="en">SetProfile</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#vary">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Vary header</dc:description>
<dc:title xml:lang="en">Vary</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#accept-language">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Accept-Language header</dc:description>
<dc:title xml:lang="en">Accept-Language</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#overwrite">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2518.txt"/>
<dc:description xml:lang="en">The overwrite header</dc:description>
<dc:title xml:lang="en">Overwrite</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/TR/WD-http-pep">
<dc:identifier>http://www.w3.org/TR/WD-http-pep</dc:identifier>
<dc:title xml:lang="en">PEP Specification: an Extension Mechanism for HTTP</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#status-uri">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2518.txt"/>
<dc:description xml:lang="en">The Status-URI header</dc:description>
<dc:title xml:lang="en">Status-URI</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://tools.ietf.org/html/draft-ietf-atompub-protocol-17">
<dc:identifier>http://tools.ietf.org/html/draft-ietf-atompub-protocol-17</dc:identifier>
<dc:title xml:lang="en">The Atom Publishing Protocol</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#from">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The From header</dc:description>
<dc:title xml:lang="en">From</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#keep-alive">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2068.txt"/>
<dc:description xml:lang="en">The Keep-Alive header</dc:description>
<dc:title xml:lang="en">Keep-Alive</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#trailer">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Trailer header</dc:description>
<dc:title xml:lang="en">Trailer</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#authorization">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Authorization header</dc:description>
<dc:title xml:lang="en">Authorization</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#getprofile">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/NOTE-OPS-OverHTTP"/>
<dc:description xml:lang="en">The GetProfile header</dc:description>
<dc:title xml:lang="en">GetProfile</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#pep-info">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/WD-http-pep"/>
<dc:description xml:lang="en">The Pep-Info header</dc:description>
<dc:title xml:lang="en">Pep-Info</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#c-man">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2774.txt"/>
<dc:description xml:lang="en">The C-Man header</dc:description>
<dc:title xml:lang="en">C-Man</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#uri">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2068.txt"/>
<dc:description xml:lang="en">The URI header</dc:description>
<dc:title xml:lang="en">URI</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/TR/2002/REC-P3P-20020416/">
<dc:identifier>http://www.w3.org/TR/2002/REC-P3P-20020416/</dc:identifier>
<dc:title xml:lang="en">The Platform for Privacy Preferences 1.0 (P3P1.0) Specification</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#surrogate-control">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/2001/NOTE-edge-arch-20010804"/>
<dc:description xml:lang="en">The Surrogate-Control header</dc:description>
<dc:title xml:lang="en">Surrogate-Control</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www3.ietf.org/proceedings/98dec/I-D/draft-girod-w3-id-res-ext-00.txt">
<dc:identifier>http://www3.ietf.org/proceedings/98dec/I-D/draft-girod-w3-id-res-ext-00.txt</dc:identifier>
<dc:title xml:lang="en">WIRE - W3 Identifier Resolution Extensions</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#tcn">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2295.txt"/>
<dc:description xml:lang="en">The TCN header</dc:description>
<dc:title xml:lang="en">TCN</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#cookie2">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2965.txt"/>
<dc:description xml:lang="en">The Cookie2 header</dc:description>
<dc:title xml:lang="en">Cookie2</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#allow">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Allow header</dc:description>
<dc:title xml:lang="en">Allow</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#security-scheme">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2660.txt"/>
<dc:description xml:lang="en">The Security-Scheme header</dc:description>
<dc:title xml:lang="en">Security-Scheme</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#www-authenticate">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The WWW-Authenticate header</dc:description>
<dc:title xml:lang="en">WWW-Authenticate</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#profileobject">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/NOTE-OPS-OverHTTP"/>
<dc:description xml:lang="en">The ProfileObject header</dc:description>
<dc:title xml:lang="en">ProfileObject</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#destination">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2518.txt"/>
<dc:description xml:lang="en">The Destination header</dc:description>
<dc:title xml:lang="en">Destination</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#expect">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Expect header</dc:description>
<dc:title xml:lang="en">Expect</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2109.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2109.txt</dc:identifier>
<dc:title xml:lang="en">HTTP State Management Mechanism</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#cookie">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2965.txt"/>
<dc:description xml:lang="en">The Cookie header</dc:description>
<dc:title xml:lang="en">Cookie</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#accept-additions">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2324.txt"/>
<dc:description xml:lang="en">The Accept-Additions header</dc:description>
<dc:title xml:lang="en">Accept-Additions</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2518.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2518.txt</dc:identifier>
<dc:title xml:lang="en">HTTP Extensions for Distributed Authoring -- WEBDAV</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#content-language">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Content-Language header</dc:description>
<dc:title xml:lang="en">Content-Language</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2660.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2660.txt</dc:identifier>
<dc:title xml:lang="en">The Secure HyperText Transfer Protocol</dc:title>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/TR/1999/REC-html401-19991224/">
<dc:identifier>http://www.w3.org/TR/1999/REC-html401-19991224/</dc:identifier>
<dc:title xml:lang="en">HTML 4.01 Specification</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#content-script-type">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/1999/REC-html401-19991224/"/>
<dc:description xml:lang="en">The Content-Script-Type header</dc:description>
<dc:title xml:lang="en">Content-Script-Type</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc3230.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc3230.txt</dc:identifier>
<dc:title xml:lang="en">Instance Digests in HTTP</dc:title>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc4437.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc3648.txt</dc:identifier>
<dc:title xml:lang="en">Web Distributed Authoring and Versioning (WebDAV) Redirect Reference Resources</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#last-modified">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Last-Modified header</dc:description>
<dc:title xml:lang="en">Last-Modified</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#variant-vary">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2295.txt"/>
<dc:description xml:lang="en">The Variant-Vary header</dc:description>
<dc:title xml:lang="en">Variant-Vary</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2310.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2310.txt</dc:identifier>
<dc:title xml:lang="en">The Safe Response Header Field</dc:title>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2295.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2295.txt</dc:identifier>
<dc:title xml:lang="en">Transparent Content Negotiation in HTTP</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#te">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The TE header</dc:description>
<dc:title xml:lang="en">TE</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#connection">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Connection header</dc:description>
<dc:title xml:lang="en">Connection</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#server">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Server header</dc:description>
<dc:title xml:lang="en">Server</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#content-id">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/NOTE-drp-19970825"/>
<dc:description xml:lang="en">The Content-ID header</dc:description>
<dc:title xml:lang="en">Content-ID</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#proxy-features">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/WD-proxy-960221"/>
<dc:description xml:lang="en">The Proxy-Features header</dc:description>
<dc:title xml:lang="en">Proxy-Features</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#host">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Host header</dc:description>
<dc:title xml:lang="en">Host</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#content-disposition">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Content-Disposition header</dc:description>
<dc:title xml:lang="en">Content-Disposition</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#position">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc3648.txt"/>
<dc:description xml:lang="en">The Position header</dc:description>
<dc:title xml:lang="en">Position</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#content-location">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Content-Location header</dc:description>
<dc:title xml:lang="en">Content-Location</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2068.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2068.txt</dc:identifier>
<dc:title xml:lang="en">Hypertext Transfer Protocol -- HTTP/1.1</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#surrogate-capability">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/2001/NOTE-edge-arch-20010804"/>
<dc:description xml:lang="en">The Surrogate-Capability header</dc:description>
<dc:title xml:lang="en">Surrogate-Capability</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#age">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Age header</dc:description>
<dc:title xml:lang="en">Age</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#accept">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Accept header</dc:description>
<dc:title xml:lang="en">Accept</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#proxy-authentication-info">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2617.txt"/>
<dc:description xml:lang="en">The Proxy-Authentication-Info header</dc:description>
<dc:title xml:lang="en">Proxy-Authentication-Info</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#safe">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2310.txt"/>
<dc:description xml:lang="en">The Safe header</dc:description>
<dc:title xml:lang="en">Safe</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#content-transfer-encoding">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/Protocols/HTTP/Object_Headers.html"/>
<dc:description xml:lang="en">The Content-Transfer-Encoding header</dc:description>
<dc:title xml:lang="en">Content-Transfer-Encoding</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#title">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/Protocols/HTTP/Object_Headers.html"/>
<dc:description xml:lang="en">The Title header</dc:description>
<dc:title xml:lang="en">Title</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#resolver-location">
<rdfs:isDefinedBy rdf:resource="http://www3.ietf.org/proceedings/98dec/I-D/draft-girod-w3-id-res-ext-00.txt"/>
<dc:description xml:lang="en">The Resolver-Location header</dc:description>
<dc:title xml:lang="en">Resolver-Location</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#protocol">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/REC-PICS-labels-961031"/>
<dc:description xml:lang="en">The Protocol header</dc:description>
<dc:title xml:lang="en">Protocol</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#default-style">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/1999/REC-html401-19991224/"/>
<dc:description xml:lang="en">The Default-Style header</dc:description>
<dc:title xml:lang="en">Default-Style</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#if-none-match">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The If-None-Match header</dc:description>
<dc:title xml:lang="en">If-None-Match</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#soapaction">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/2000/NOTE-SOAP-20000508/"/>
<dc:description xml:lang="en">The SoapAction header</dc:description>
<dc:title xml:lang="en">SoapAction</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#meter">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2227.txt"/>
<dc:description xml:lang="en">The Meter header</dc:description>
<dc:title xml:lang="en">Meter</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#compliance">
<rdfs:isDefinedBy rdf:resource="http://www.watersprings.org/pub/id/draft-ietf-http-options-02.txt"/>
<dc:description xml:lang="en">The Compliance header</dc:description>
<dc:title xml:lang="en">Compliance</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#im">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc3229.txt"/>
<dc:description xml:lang="en">The IM header</dc:description>
<dc:title xml:lang="en">IM</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.watersprings.org/pub/id/draft-ietf-http-options-02.txt">
<dc:identifier>http://www.watersprings.org/pub/id/draft-ietf-http-options-02.txt</dc:identifier>
<dc:title xml:lang="en">Specification of HTTP/1.1 OPTIONS messages</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#if-unmodified-since">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The If-Unmodified-Since header</dc:description>
<dc:title xml:lang="en">If-Unmodified-Since</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#public">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2068.txt"/>
<dc:description xml:lang="en">The Public header</dc:description>
<dc:title xml:lang="en">Public</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#if">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2518.txt"/>
<dc:description xml:lang="en">The If header</dc:description>
<dc:title xml:lang="en">If</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#content-type">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The Content-Type header</dc:description>
<dc:title xml:lang="en">Content-Type</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#etag">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The ETag header</dc:description>
<dc:title xml:lang="en">ETag</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#apply-to-redirect-ref">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc4437.txt"/>
<dc:description xml:lang="en">The Apply-To-Redirect-Ref header</dc:description>
<dc:title xml:lang="en">Apply-To-Redirect-Ref</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.rfc-editor.org/rfc/rfc2965.txt">
<dc:identifier>http://www.rfc-editor.org/rfc/rfc2965.txt</dc:identifier>
<dc:title xml:lang="en">HTTP State Management Mechanism</dc:title>
</rdf:Description>
<rdf:Description rdf:about="#alternates">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2295.txt"/>
<dc:description xml:lang="en">The alternates header</dc:description>
<dc:title xml:lang="en">Alternates</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#slug">
<rdfs:isDefinedBy rdf:resource="http://tools.ietf.org/html/draft-ietf-atompub-protocol-17"/>
<dc:description xml:lang="en">The SLUG header</dc:description>
<dc:title xml:lang="en">SLUG</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#mime-version">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2616.txt"/>
<dc:description xml:lang="en">The MIME-Version header</dc:description>
<dc:title xml:lang="en">MIME-Version</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#pics-label">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/TR/REC-PICS-labels-961031"/>
<dc:description xml:lang="en">The PICS-Label header</dc:description>
<dc:title xml:lang="en">PICS-Label</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
<rdf:Description rdf:about="#content-base">
<rdfs:isDefinedBy rdf:resource="http://www.rfc-editor.org/rfc/rfc2068.txt"/>
<dc:description xml:lang="en">The Content-Base header</dc:description>
<dc:title xml:lang="en">Content-Base</dc:title>
<rdf:type rdf:resource="http://www.w3.org/2006/http#HeaderName"/>
</rdf:Description>
</rdf:RDF>
<!-- Created with TopBraid Composer -->