cosmetic, license, copyright
This commit is contained in:
9
library/ewsgi/COPYRIGHT
Normal file
9
library/ewsgi/COPYRIGHT
Normal 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
|
||||
|
||||
@@ -16,7 +16,7 @@ feature -- Execution
|
||||
end
|
||||
|
||||
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)"
|
||||
source: "[
|
||||
Eiffel Software
|
||||
|
||||
@@ -3,6 +3,7 @@ note
|
||||
Contains all information of a rfc2109 cookie that was read from the request header
|
||||
]"
|
||||
legal: "See notice at end of class."
|
||||
status: "See notice at end of class."
|
||||
date: "$Date$"
|
||||
revision: "$Revision$"
|
||||
|
||||
@@ -63,7 +64,7 @@ invariant
|
||||
value_attached: value /= Void
|
||||
|
||||
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)"
|
||||
source: "[
|
||||
Eiffel Software
|
||||
|
||||
@@ -1,8 +1,37 @@
|
||||
note
|
||||
description : "Objects that ..."
|
||||
author : "$Author$"
|
||||
date : "$Date$"
|
||||
revision : "$Revision$"
|
||||
description: "[
|
||||
|
||||
Interface for a request environment
|
||||
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
|
||||
class
|
||||
@@ -59,30 +88,6 @@ feature -- Access: table
|
||||
create Result.make (table)
|
||||
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
|
||||
|
||||
auth_type: detachable STRING
|
||||
@@ -397,7 +402,7 @@ feature -- Extra
|
||||
end
|
||||
|
||||
;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)"
|
||||
source: "[
|
||||
Eiffel Software
|
||||
|
||||
@@ -77,7 +77,7 @@ feature -- Extra names
|
||||
orig_path_info: STRING = "ORIG_PATH_INFO"
|
||||
|
||||
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)"
|
||||
source: "[
|
||||
Eiffel Software
|
||||
|
||||
@@ -57,7 +57,7 @@ feature -- Element change
|
||||
end
|
||||
|
||||
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)"
|
||||
source: "[
|
||||
Eiffel Software
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
note
|
||||
description : "Objects that ..."
|
||||
author : "$Author$"
|
||||
date : "$Date$"
|
||||
revision : "$Revision$"
|
||||
description : "[
|
||||
Objects that represents the input stream
|
||||
]"
|
||||
legal: "See notice at end of class."
|
||||
status: "See notice at end of class."
|
||||
date: "$Date$"
|
||||
revision: "$Revision$"
|
||||
|
||||
deferred class
|
||||
GW_INPUT_STREAM
|
||||
@@ -23,7 +26,7 @@ feature -- Basic operation
|
||||
end
|
||||
|
||||
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)"
|
||||
source: "[
|
||||
Eiffel Software
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
note
|
||||
description : "Objects that ..."
|
||||
author : "$Author$"
|
||||
date : "$Date$"
|
||||
revision : "$Revision$"
|
||||
description : "[
|
||||
Objects that represents the output stream
|
||||
]"
|
||||
legal: "See notice at end of class."
|
||||
status: "See notice at end of class."
|
||||
date: "$Date$"
|
||||
revision: "$Revision$"
|
||||
|
||||
deferred class
|
||||
GW_OUTPUT_STREAM
|
||||
@@ -15,4 +18,14 @@ feature -- Basic operation
|
||||
deferred
|
||||
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
|
||||
|
||||
@@ -201,7 +201,7 @@ feature {NONE} -- Temporary File handling
|
||||
end
|
||||
|
||||
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)"
|
||||
source: "[
|
||||
Eiffel Software
|
||||
|
||||
@@ -125,7 +125,7 @@ feature {NONE} -- Implementation
|
||||
-- end
|
||||
|
||||
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)"
|
||||
source: "[
|
||||
Eiffel Software
|
||||
|
||||
@@ -1,13 +1,34 @@
|
||||
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$"
|
||||
revision: "$Revision$"
|
||||
|
||||
|
||||
deferred class
|
||||
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
|
||||
|
||||
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
|
||||
-- Value for variable `a_name'
|
||||
-- If not found, return `a_default'
|
||||
@@ -21,20 +42,8 @@ feature -- Access
|
||||
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
|
||||
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)"
|
||||
source: "[
|
||||
Eiffel Software
|
||||
|
||||
@@ -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
|
||||
]"
|
||||
|
||||
Reference in New Issue
Block a user