Changes between Version 27 and Version 28 of ModParrotArchitecture

Show
Ignore:
Timestamp:
11/30/08 20:00:11 (13 years ago)
Author:
jhorwitz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ModParrotArchitecture

    v27 v28  
    11= mod_parrot Architecture = 
    2  
    3 NOTE: This is a work in progress. 
    42 
    53[[PageOutline]] 
     
    129127=== Module Configuration === 
    130128 
     129Like any other Apache module, HLL modules get their own server and section (directory) configurations.  These are PMCs and are stored in the {{{cfg}} member of the modparrot_module_config structure: 
     130{{{ 
     131struct modparrot_module_config 
     132{ 
     133    char *name; 
     134    modparrot_module_info *minfo; 
     135    Parrot_PMC cfg; 
     136}; 
     137typedef struct modparrot_module_config modparrot_module_config; 
     138}}} 
     139 
     140This structure is used by Apache as the HLL module's configuration.  When configuration is requested by HLL code however, mod_parrot will return the {{{cfg}}} member. 
     141 
    131142=== Metahandlers === 
    132143