From cb3de17be94e3a11dd0ae0191d46673245c2be3e Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Wed, 14 May 2014 09:35:55 +0200 Subject: [PATCH] renamed HTTP_HEADER_BUILDER as HTTP_HEADER_MODIFIER --- library/network/protocol/http/src/http_header.e | 2 +- .../src/{http_header_builder.e => http_header_modifier.e} | 4 ++-- library/server/wsf/src/wsf_response.e | 2 +- library/server/wsf/src/wsf_response_header.e | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename library/network/protocol/http/src/{http_header_builder.e => http_header_modifier.e} (99%) diff --git a/library/network/protocol/http/src/http_header.e b/library/network/protocol/http/src/http_header.e index a162f9d4..db797f9a 100644 --- a/library/network/protocol/http/src/http_header.e +++ b/library/network/protocol/http/src/http_header.e @@ -25,7 +25,7 @@ class inherit ITERABLE [READABLE_STRING_8] - HTTP_HEADER_BUILDER + HTTP_HEADER_MODIFIER create make, diff --git a/library/network/protocol/http/src/http_header_builder.e b/library/network/protocol/http/src/http_header_modifier.e similarity index 99% rename from library/network/protocol/http/src/http_header_builder.e rename to library/network/protocol/http/src/http_header_modifier.e index 68970220..3af4e45b 100644 --- a/library/network/protocol/http/src/http_header_builder.e +++ b/library/network/protocol/http/src/http_header_modifier.e @@ -1,6 +1,6 @@ note description: "[ - The class provides an easy way to build HTTP header text + The class provides an easy way to build and modify HTTP header text thanks to add_header (..) and put_header (..) You will also find some helper features to help coding most common usages @@ -20,7 +20,7 @@ note revision: "$Revision$" deferred class - HTTP_HEADER_BUILDER + HTTP_HEADER_MODIFIER inherit ITERABLE [READABLE_STRING_8] diff --git a/library/server/wsf/src/wsf_response.e b/library/server/wsf/src/wsf_response.e index 2a81f7e3..977acd4a 100644 --- a/library/server/wsf/src/wsf_response.e +++ b/library/server/wsf/src/wsf_response.e @@ -172,7 +172,7 @@ feature {WSF_RESPONSE_EXPORTER} -- Header output operation feature -- Header access - header: HTTP_HEADER_BUILDER + header: HTTP_HEADER_MODIFIER -- Associated header builder interface. local res: like internal_response_header diff --git a/library/server/wsf/src/wsf_response_header.e b/library/server/wsf/src/wsf_response_header.e index 07e0a1f4..bb87b3f0 100644 --- a/library/server/wsf/src/wsf_response_header.e +++ b/library/server/wsf/src/wsf_response_header.e @@ -9,7 +9,7 @@ class WSF_RESPONSE_HEADER inherit - HTTP_HEADER_BUILDER + HTTP_HEADER_MODIFIER WSF_RESPONSE_EXPORTER -- to access WSF_RESPONSE.internal_header