[svn:mod_parrot] r443 - mod_parrot/branches/hll-modules/lib/Apache

[email protected] Sun, 21 Sep 2008 08:37:29 -0700 (PDT)
Newsgroups perl.cvs.mod_parrot
Message-ID <[email protected]>
Author: jhorwitz
Date: Sun Sep 21 08:37:28 2008
New Revision: 443

Modified:
   mod_parrot/branches/hll-modules/lib/Apache/Module.pir

Log:
remove more unused code


Modified: mod_parrot/branches/hll-modules/lib/Apache/Module.pir
==============================================================================
--- mod_parrot/branches/hll-modules/lib/Apache/Module.pir	(original)
+++ mod_parrot/branches/hll-modules/lib/Apache/Module.pir	Sun Sep 21 08:37:28 2008
@@ -165,66 +165,6 @@
 
 =back
 
-=over 4
-
-=item C<modparrot_dircfg_handler(INT hook, STRING hll, STRING id)>
-
-=over 4
-
-Get or set a mod_parrot handler.
-
-=cut
-
-.sub modparrot_dircfg_handler
-    .param int hook
-    .param pmc hll :optional
-    .param pmc id :optional
-    .param int update :opt_flag
-    .local pmc func, res
-
-    func = get_root_global ['_modparrot'; 'NCI' ], "dircfg_handler"
-
-    if update goto do_update
-    hll = new 'String'
-    id = new 'String'
-  do_update:
-    res = func(hook, hll, id, update)
-
-    .return(res)
-.end
-
-=back
-
-=over 4 
-
-=item C<modparrot_srvcfg_handler(INT hook, STRING hll, STRING id)>
-
-=over 4
-
-Get or set a mod_parrot handler.
-
-=cut
-
-.sub modparrot_srvcfg_handler
-    .param int hook
-    .param pmc hll :optional
-    .param pmc id :optional
-    .param int update :opt_flag
-    .local pmc func, res
-
-    func = get_root_global ['_modparrot'; 'NCI' ], "srvcfg_handler"
-
-    if update goto do_update
-    hll = new 'String'
-    id = new 'String'
-  do_update:
-    res = func(hook, hll, id, update)
-   
-    .return(res)
-.end 
-    
-=back
-
 =head1 AUTHOR
 
 Jeff Horwitz