diff options
| -rw-r--r-- | icespider/common/http.ice | 6 | ||||
| -rw-r--r-- | icespider/common/routes.ice | 2 | 
2 files changed, 6 insertions, 2 deletions
diff --git a/icespider/common/http.ice b/icespider/common/http.ice index abf235f..d4f07b0 100644 --- a/icespider/common/http.ice +++ b/icespider/common/http.ice @@ -2,6 +2,7 @@  #define ICESPIDER_HTTP_ICE  module IceSpider { +	["slicer:ignore"]  	exception HttpException {  		int code;  		string message; @@ -15,16 +16,21 @@ module IceSpider {  		URL, Body, QueryString, Header  	}; +	["slicer:ignore"]  	struct MimeType {  		string group;  		string type;  	}; +	["slicer:ignore"]  	class Accept {  		optional(0) string group;  		optional(1) string type;  		float q = 1.0;  	}; + +	["slicer:json:object"] +	dictionary<string, string> StringMap;  };  #endif diff --git a/icespider/common/routes.ice b/icespider/common/routes.ice index e77fed4..3f9eda4 100644 --- a/icespider/common/routes.ice +++ b/icespider/common/routes.ice @@ -5,8 +5,6 @@  module IceSpider {  	sequence<string> StringSeq; -	["slicer:json:object"] -	dictionary<string, string> StringMap;  	class Parameter {  		ParameterSource source = URL;  | 
