diff options
Diffstat (limited to 'gcc/ada/g-cgi.ads')
-rw-r--r-- | gcc/ada/g-cgi.ads | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gcc/ada/g-cgi.ads b/gcc/ada/g-cgi.ads index c9d610ed24c..6ad3d5f6b4f 100644 --- a/gcc/ada/g-cgi.ads +++ b/gcc/ada/g-cgi.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 2000-2003 Ada Core Technologies, Inc. -- +-- Copyright (C) 2000-2005, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -115,7 +115,7 @@ package GNAT.CGI is -- and will be raised when calling any services below (except for Ok). Parameter_Not_Found : exception; - -- This exception is raised when a specific parameter is not found. + -- This exception is raised when a specific parameter is not found Default_Header : constant String := "Content-type: text/html"; -- This is the default header returned by Put_Header. If the CGI program @@ -186,12 +186,11 @@ package GNAT.CGI is -- the exception Data_Error. function Method return Method_Type; - -- Returns the method used to call the CGI. + -- Returns the method used to call the CGI function Metavariable (Name : Metavariable_Name; - Required : Boolean := False) - return String; + Required : Boolean := False) return String; -- Returns parameter Name value. Returns the null string if Name -- environment variable is not defined or raises Data_Error if -- Required is set to True. @@ -215,8 +214,7 @@ package GNAT.CGI is function Value (Key : String; - Required : Boolean := False) - return String; + Required : Boolean := False) return String; -- Returns the parameter value associated to the parameter named Key. -- If parameter does not exist, returns an empty string if Required -- is False and raises the exception Parameter_Not_Found otherwise. @@ -227,7 +225,7 @@ package GNAT.CGI is -- (i.e. Position > Argument_Count) function Key_Exists (Key : String) return Boolean; - -- Returns True if the parameter named Key existx and False otherwise. + -- Returns True if the parameter named Key exists and False otherwise function Key (Position : Positive) return String; -- Returns the parameter key associated with the CGI parameter number |