cosmetic, license, copyright

This commit is contained in:
Jocelyn Fiat
2011-07-05 12:07:49 +02:00
parent a168cc62e7
commit 20bf9efaa0
13 changed files with 110 additions and 61 deletions

9
library/ewsgi/COPYRIGHT Normal file
View File

@@ -0,0 +1,9 @@
Copyright: 2011-2011, Eiffel Software and others
License: Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)
Source:
Eiffel Software
5949 Hollister Ave., Goleta, CA 93117 USA
Telephone 805-685-1006, Fax 805-685-6869
Website http://www.eiffel.com
Customer support http://support.eiffel.com

View File

@@ -16,7 +16,7 @@ feature -- Execution
end end
note note
copyright: "Copyright (c) 1984-2011, Eiffel Software and others" copyright: "2011-2011, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[ source: "[
Eiffel Software Eiffel Software

View File

@@ -3,6 +3,7 @@ note
Contains all information of a rfc2109 cookie that was read from the request header Contains all information of a rfc2109 cookie that was read from the request header
]" ]"
legal: "See notice at end of class." legal: "See notice at end of class."
status: "See notice at end of class."
date: "$Date$" date: "$Date$"
revision: "$Revision$" revision: "$Revision$"
@@ -63,7 +64,7 @@ invariant
value_attached: value /= Void value_attached: value /= Void
note note
copyright: "Copyright (c) 1984-2011, Eiffel Software and others" copyright: "2011-2011, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[ source: "[
Eiffel Software Eiffel Software

View File

@@ -1,8 +1,37 @@
note note
description : "Objects that ..." description: "[
author : "$Author$"
date : "$Date$" Interface for a request environment
revision : "$Revision$" It includes CGI interface and a few extra values that are usually valuable
-- A `Script URI' can be defined; this describes the resource identified
-- by the environment variables. Often, this URI will be the same as the
-- URI requested by the client (the `Client URI'); however, it need not
-- be. Instead, it could be a URI invented by the server, and so it can
-- only be used in the context of the server and its CGI interface.
--
-- The script URI has the syntax of generic-RL as defined in section 2.1
-- of RFC 1808 [7], with the exception that object parameters and
-- fragment identifiers are not permitted:
--
-- <scheme>://<host>:<port>/<path>?<query>
--
-- The various components of the script URI are defined by some of the
-- environment variables (see below);
--
-- script-uri = protocol "://" SERVER_NAME ":" SERVER_PORT enc-script
-- enc-path-info "?" QUERY_STRING
--
-- where `protocol' is found from SERVER_PROTOCOL, `enc-script' is a
-- URL-encoded version of SCRIPT_NAME and `enc-path-info' is a
-- URL-encoded version of PATH_INFO.
]"
legal: "See notice at end of class."
status: "See notice at end of class."
date: "$Date$"
revision: "$Revision$"
deferred deferred
class class
@@ -59,30 +88,6 @@ feature -- Access: table
create Result.make (table) create Result.make (table)
end end
feature -- Script URI
-- A `Script URI' can be defined; this describes the resource identified
-- by the environment variables. Often, this URI will be the same as the
-- URI requested by the client (the `Client URI'); however, it need not
-- be. Instead, it could be a URI invented by the server, and so it can
-- only be used in the context of the server and its CGI interface.
--
-- The script URI has the syntax of generic-RL as defined in section 2.1
-- of RFC 1808 [7], with the exception that object parameters and
-- fragment identifiers are not permitted:
--
-- <scheme>://<host>:<port>/<path>?<query>
--
-- The various components of the script URI are defined by some of the
-- environment variables (see below);
--
-- script-uri = protocol "://" SERVER_NAME ":" SERVER_PORT enc-script
-- enc-path-info "?" QUERY_STRING
--
-- where `protocol' is found from SERVER_PROTOCOL, `enc-script' is a
-- URL-encoded version of SCRIPT_NAME and `enc-path-info' is a
-- URL-encoded version of PATH_INFO.
feature -- Common Gateway Interface - 1.1 8 January 1996 feature -- Common Gateway Interface - 1.1 8 January 1996
auth_type: detachable STRING auth_type: detachable STRING
@@ -397,7 +402,7 @@ feature -- Extra
end end
;note ;note
copyright: "Copyright (c) 1984-2011, Eiffel Software and others" copyright: "2011-2011, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[ source: "[
Eiffel Software Eiffel Software

View File

@@ -77,7 +77,7 @@ feature -- Extra names
orig_path_info: STRING = "ORIG_PATH_INFO" orig_path_info: STRING = "ORIG_PATH_INFO"
note note
copyright: "Copyright (c) 1984-2011, Eiffel Software and others" copyright: "2011-2011, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[ source: "[
Eiffel Software Eiffel Software

View File

@@ -57,7 +57,7 @@ feature -- Element change
end end
note note
copyright: "Copyright (c) 1984-2011, Eiffel Software and others" copyright: "2011-2011, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[ source: "[
Eiffel Software Eiffel Software

View File

@@ -1,8 +1,11 @@
note note
description : "Objects that ..." description : "[
author : "$Author$" Objects that represents the input stream
date : "$Date$" ]"
revision : "$Revision$" legal: "See notice at end of class."
status: "See notice at end of class."
date: "$Date$"
revision: "$Revision$"
deferred class deferred class
GW_INPUT_STREAM GW_INPUT_STREAM
@@ -23,7 +26,7 @@ feature -- Basic operation
end end
note note
copyright: "Copyright (c) 1984-2011, Eiffel Software and others" copyright: "2011-2011, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[ source: "[
Eiffel Software Eiffel Software

View File

@@ -1,8 +1,11 @@
note note
description : "Objects that ..." description : "[
author : "$Author$" Objects that represents the output stream
date : "$Date$" ]"
revision : "$Revision$" legal: "See notice at end of class."
status: "See notice at end of class."
date: "$Date$"
revision: "$Revision$"
deferred class deferred class
GW_OUTPUT_STREAM GW_OUTPUT_STREAM
@@ -15,4 +18,14 @@ feature -- Basic operation
deferred deferred
end end
note
copyright: "2011-2011, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[
Eiffel Software
5949 Hollister Ave., Goleta, CA 93117 USA
Telephone 805-685-1006, Fax 805-685-6869
Website http://www.eiffel.com
Customer support http://support.eiffel.com
]"
end end

View File

@@ -201,7 +201,7 @@ feature {NONE} -- Temporary File handling
end end
note note
copyright: "Copyright (c) 1984-2011, Eiffel Software and others" copyright: "2011-2011, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[ source: "[
Eiffel Software Eiffel Software

View File

@@ -125,7 +125,7 @@ feature {NONE} -- Implementation
-- end -- end
note note
copyright: "Copyright (c) 1984-2011, Eiffel Software and others" copyright: "2011-2011, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[ source: "[
Eiffel Software Eiffel Software

View File

@@ -1,13 +1,34 @@
note note
description: "Summary description for {GW_VARIABLES}." description : "[
Interface to access the variable stored in a container
]"
legal: "See notice at end of class."
status: "See notice at end of class."
date: "$Date$" date: "$Date$"
revision: "$Revision$" revision: "$Revision$"
deferred class deferred class
GW_VARIABLES [G -> STRING_GENERAL] GW_VARIABLES [G -> STRING_GENERAL]
feature -- Status report
has_variable (a_name: STRING): BOOLEAN
-- Has variable associated with `a_name'
require
a_name_not_empty: a_name /= Void and then not a_name.is_empty
deferred
end
feature -- Access feature -- Access
variable (a_name: STRING): detachable G
-- Value for variable associated with `a_name'
-- If not found, return Void
require
a_name_not_empty: a_name /= Void and then not a_name.is_empty
deferred
end
variable_or_default (a_name: STRING; a_default: G): G variable_or_default (a_name: STRING; a_default: G): G
-- Value for variable `a_name' -- Value for variable `a_name'
-- If not found, return `a_default' -- If not found, return `a_default'
@@ -21,20 +42,8 @@ feature -- Access
end end
end end
variable (a_name: STRING): detachable G
require
a_name_not_empty: a_name /= Void and then not a_name.is_empty
deferred
end
has_variable (a_name: STRING): BOOLEAN
require
a_name_not_empty: a_name /= Void and then not a_name.is_empty
deferred
end
note note
copyright: "Copyright (c) 1984-2011, Eiffel Software and others" copyright: "2011-2011, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[ source: "[
Eiffel Software Eiffel Software

View File

@@ -1 +1,10 @@
reference:forum2 ${NOTE_KEYWORD}
copyright: "2011-${YEAR}, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[
Eiffel Software
5949 Hollister Ave., Goleta, CA 93117 USA
Telephone 805-685-1006, Fax 805-685-6869
Website http://www.eiffel.com
Customer support http://support.eiffel.com
]"