dougm       02/05/19 13:11:56

  Modified:    xs/maps  apache_functions.map apache_structures.map
                        modperl_functions.map
               xs/tables/current/ModPerl FunctionTable.pm
  Log:
  wrap $r->content_type("foo/bar") so ap_set_content_type is called underneath
  
  Revision  Changes    Path
  1.51      +1 -1      modperl-2.0/xs/maps/apache_functions.map
  
  Index: apache_functions.map
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/maps/apache_functions.map,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- apache_functions.map      19 May 2002 01:05:30 -0000      1.50
  +++ apache_functions.map      19 May 2002 20:11:55 -0000      1.51
  @@ -49,7 +49,7 @@
   >ap_rgetline_core
   ?ap_get_request_note
   ?ap_register_request_note
  - ap_set_content_type
  +~ap_set_content_type
   
   #MODULE=Apache::RequestConfig
    ap_document_root
  
  
  
  1.15      +1 -1      modperl-2.0/xs/maps/apache_structures.map
  
  Index: apache_structures.map
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/maps/apache_structures.map,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- apache_structures.map     19 May 2002 01:05:30 -0000      1.14
  +++ apache_structures.map     19 May 2002 20:11:55 -0000      1.15
  @@ -40,7 +40,7 @@
      err_headers_out
      subprocess_env
      notes
  -   content_type
  +~  content_type
      handler
      content_encoding
      content_languages
  
  
  
  1.37      +3 -0      modperl-2.0/xs/maps/modperl_functions.map
  
  Index: modperl_functions.map
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/maps/modperl_functions.map,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- modperl_functions.map     10 May 2002 17:48:27 -0000      1.36
  +++ modperl_functions.map     19 May 2002 20:11:55 -0000      1.37
  @@ -8,6 +8,9 @@
    mpxs_ModPerl__Global_special_list_call
    mpxs_ModPerl__Global_special_list_clear
   
  +MODULE=Apache::RequestRec   PACKAGE=Apache::RequestRec
  + mpxs_Apache__RequestRec_content_type | | r, type=Nullsv
  +
   MODULE=Apache::RequestUtil   PACKAGE=guess
    mpxs_Apache__RequestRec_push_handlers
    mpxs_Apache__RequestRec_set_handlers
  
  
  
  1.64      +19 -1     modperl-2.0/xs/tables/current/ModPerl/FunctionTable.pm
  
  Index: FunctionTable.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/tables/current/ModPerl/FunctionTable.pm,v
  retrieving revision 1.63
  retrieving revision 1.64
  diff -u -r1.63 -r1.64
  --- FunctionTable.pm  18 May 2002 23:56:54 -0000      1.63
  +++ FunctionTable.pm  19 May 2002 20:11:55 -0000      1.64
  @@ -2,7 +2,7 @@
   
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   # ! WARNING: generated by ModPerl::ParseSource/0.01
  -# !          Sat May 18 16:46:32 2002
  +# !          Sun May 19 12:59:55 2002
   # !          do NOT edit, any changes will be lost !
   # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   
  @@ -4366,6 +4366,24 @@
         {
           'type' => 'request_rec *',
           'name' => 'r'
  +      }
  +    ]
  +  },
  +  {
  +    'return_type' => 'const char *',
  +    'name' => 'mpxs_Apache__RequestRec_content_type',
  +    'args' => [
  +      {
  +        'type' => 'PerlInterpreter *',
  +        'name' => 'my_perl'
  +      },
  +      {
  +        'type' => 'request_rec *',
  +        'name' => 'r'
  +      },
  +      {
  +        'type' => 'SV *',
  +        'name' => 'type'
         }
       ]
     },
  
  
  


Reply via email to