File tree 5 files changed +7
-4
lines changed
5 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
### HEAD
2
2
3
- * Serve ` .vcf ` and ` .vcard ` file with the ` text/vcard ` media type.
3
+ * Compress vCard files (` .vcard ` /` .vcf ` ).
4
+ * Serve vCard files (` .vcard ` /` .vcf ` ) with the ` text/vcard ` media type
5
+ [[ 104f232] ( https://github.com/h5bp/server-configs-apache/commit/104f232dad100ddd5c8cf0c354c2bcd163a6b915 )] .
4
6
* Add configs for BlackBerry Maps location documents (` .xloc ` )
5
7
[[ 20000d1] ( https://github.com/h5bp/server-configs-apache/commit/20000d1741701eede2e0903b2b86992d8b70c35a )] .
6
8
* Add configs for BlackBerry App World files (` .bbaw ` )
42
44
43
45
### 2.5.0 (June 14, 2014)
44
46
45
- * Compress cache manifest files (` .appcache ` / ` .manifest ` )
47
+ * Compress cache manifest files (` .appcache ` / ` .manifest ` )
46
48
[[ d819fec] ( https://github.com/h5bp/server-configs-apache/commit/d819fecd81e1d23fb5f153995f573890b037a82c )] .
47
49
* Move all compression related configs under the ` Compression ` section
48
50
[[ 73a107e] ( https://github.com/h5bp/server-configs-apache/commit/73a107ed0cb9ae4b3ec966e8e246b7a6f4bbd059 )] .
Original file line number Diff line number Diff line change @@ -722,6 +722,7 @@ AddDefaultCharset utf-8
722
722
"text/html" \
723
723
"text/javascript" \
724
724
"text/plain" \
725
+ "text/vcard" \
725
726
"text/vnd.rim.location.xloc" \
726
727
"text/vtt" \
727
728
"text/x-component" \
Original file line number Diff line number Diff line change 63
63
"text/html" \
64
64
"text/javascript" \
65
65
"text/plain" \
66
+ "text/vcard" \
66
67
"text/vnd.rim.location.xloc" \
67
68
"text/vtt" \
68
69
"text/x-component" \
Original file line number Diff line number Diff line change @@ -675,6 +675,7 @@ AddDefaultCharset utf-8
675
675
"text/html" \
676
676
"text/javascript" \
677
677
"text/plain" \
678
+ "text/vcard" \
678
679
"text/vnd.rim.location.xloc" \
679
680
"text/vtt" \
680
681
"text/x-component" \
Original file line number Diff line number Diff line change @@ -442,14 +442,12 @@ exports = module.exports = {
442
442
443
443
'test.vcard' : {
444
444
responseHeaders : {
445
- 'content-encoding' : null ,
446
445
'content-type' : 'text/vcard'
447
446
}
448
447
} ,
449
448
450
449
'test.vcf' : {
451
450
responseHeaders : {
452
- 'content-encoding' : null ,
453
451
'content-type' : 'text/vcard'
454
452
}
455
453
} ,
You can’t perform that action at this time.
0 commit comments