Index: runtime/bin/http.dart |
diff --git a/runtime/bin/http.dart b/runtime/bin/http.dart |
index b0d01d3d03dfc806e0627a2bfe3b9c0b455fa6bd..8679c01edf840a84b1e2cb3582592dc67c86dbd6 100644 |
--- a/runtime/bin/http.dart |
+++ b/runtime/bin/http.dart |
@@ -299,6 +299,80 @@ interface HttpHeaders default _HttpHeaders { |
* connection. |
*/ |
int port; |
+ |
+ /** |
+ * Gets and sets the content type. |
+ */ |
+ ContentType contentType; |
Anders Johnsen
2012/05/21 07:37:30
IMO, this is a good way of exposing this.
Søren Gjesse
2012/05/21 11:11:06
Thanks!
|
+} |
+ |
+ |
+/** |
+ * Representation of a header value in the form: |
+ * |
+ * [:value; parameter1=value1; parameter2=value2:] |
+ */ |
+interface HeaderValue default _HeaderValue { |
Anders Johnsen
2012/05/21 07:37:30
The name HeaderValue confuses me. It sounds as it
Mads Ager (google)
2012/05/21 07:40:39
Should we expose this interface? At this point onl
Søren Gjesse
2012/05/21 11:11:06
ContentType extend HeaderValue. It should be possi
Søren Gjesse
2012/05/21 11:11:06
Currently this interface is extended by ContentTyp
|
+ /** |
+ * Creates a new header value object setting the value. |
+ */ |
+ HeaderValue([String value]); |
+ |
+ /** |
+ * Creates a new header value object from parsing a header value. |
Mads Ager (google)
2012/05/21 07:40:39
What is the format of the input string? Does it co
Søren Gjesse
2012/05/21 11:11:06
Added example to interface description.
|
+ */ |
+ HeaderValue.fromString(String value); |
+ |
+ /** |
+ * Gets and sets the header value. |
+ */ |
+ String value; |
Anders Johnsen
2012/05/21 07:37:30
Have a toString that maps to the full content?
Søren Gjesse
2012/05/21 11:11:06
toString was already there. Documentation added.
|
+ |
+ /** |
+ * Gets the map of parameters. |
+ */ |
+ Map<String, String> get parameters(); |
+} |
+ |
+ |
+/** |
+ * Representation of a content type. |
+ */ |
+interface ContentType extends HeaderValue default _ContentType { |
Anders Johnsen
2012/05/21 07:37:30
Here, I think we should have a toString as well.
Søren Gjesse
2012/05/21 11:11:06
toString is now documented in the HeaderValue inte
|
+ /** |
+ * Creates a new content type object setting the primary type and |
+ * sub type. If either is not passed their values will be the empty |
+ * string. |
+ */ |
+ ContentType([String primaryType, String subType]); |
+ |
+ /** |
+ * Creates a new content type object from parsing a Content-Type |
+ * header value. As primary type, sub type and parameter names and |
Mads Ager (google)
2012/05/21 07:40:39
Maybe give a concrete example of a Content-Type he
Søren Gjesse
2012/05/21 11:11:06
Done.
|
+ * values are not case sensitive all these values will be converted |
+ * to lower case. |
+ */ |
+ ContentType.fromString(String value); |
+ |
+ /** |
+ * Gets and sets the content type in the form "primaryType/subType". |
+ */ |
+ String value; |
+ |
+ /** |
+ * Gets and sets the primary type. |
+ */ |
+ String primaryType; |
+ |
+ /** |
+ * Gets and sets the sub type. |
+ */ |
+ String subType; |
+ |
+ /** |
+ * Gets and sets the character set. |
Mads Ager (google)
2012/05/21 07:40:39
Can we specify the valid values in the interface?
Søren Gjesse
2012/05/21 11:11:06
This is not really possible.
|
+ */ |
+ String charset; |
} |