You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs-cvs@perl.apache.org by pg...@apache.org on 2007/04/26 20:19:31 UTC

svn commit: r532831 - /perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/ServerUtil.pod

Author: pgollucci
Date: Thu Apr 26 11:19:31 2007
New Revision: 532831

URL: http://svn.apache.org/viewvc?view=rev&rev=532831
Log:
Update the documentation to go along with the new httpd API
changes for 
    Apache2::ServerUtil::get_server_description()
    Apache2::ServerUtil::get_server_version() 

Submitted By: Gozer
Reviewed By: pgollucci


Modified:
    perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/ServerUtil.pod

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/ServerUtil.pod
URL: http://svn.apache.org/viewvc/perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/ServerUtil.pod?view=diff&rev=532831&r1=532830&r2=532831
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/ServerUtil.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/ServerUtil.pod Thu Apr 26 11:19:31 2007
@@ -27,8 +27,10 @@
   @handlers = @{ $s->get_handlers('PerlChildExitHandler') || []};
   
   # server build and version info:
-  $when_built = Apache2::ServerUtil::get_server_built();
+  $when_built = Apache2::ServerUtil::get_server_built(); 
+  $description = Apache2::ServerUtil::get_server_description(); 
   $version = Apache2::ServerUtil::get_server_version();
+  $banner = Apache2::ServerUtil::get_server_banner(); 
   
   # ServerRoot value
   $server_root = Apache2::ServerUtil::server_root();
@@ -379,7 +381,57 @@
 
 
 
+=head2 C<get_server_banner>
+
+Get the server banner
+
+ $banner = Apache2::ServerUtil::get_server_banner();
+
+=over 4
+
+=item ret: C<$banner> ( string )
+
+The server banner
+
+=item since: 2.0.4
+
+=back
+
+
+
+
+
+
+
+
+
+=head2 C<get_server_description>
+
+Get the server description
+
+ $description = Apache2::ServerUtil::get_server_description();
+
+=over 4
+
+=item ret: C<$description> ( string )
+
+The server description
+
+=item since: 2.0.4
+
+=back
+
+
+
+
+
+
+
+
+
+
 
+=head2 C<group_id> 
 
 
 



---------------------------------------------------------------------
To unsubscribe, e-mail: docs-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-cvs-help@perl.apache.org