1. 20 Jul, 2010 1 commit
  2. 19 Jul, 2010 2 commits
  3. 14 Jul, 2010 1 commit
  4. 04 Jul, 2010 1 commit
  5. 03 Jul, 2010 2 commits
  6. 23 Jun, 2010 1 commit
  7. 22 Jun, 2010 1 commit
  8. 21 Jun, 2010 1 commit
  9. 20 Jun, 2010 1 commit
  10. 19 Jun, 2010 2 commits
  11. 18 Jun, 2010 2 commits
  12. 15 Jun, 2010 3 commits
  13. 11 Jun, 2010 1 commit
  14. 10 Jun, 2010 1 commit
    • Joe Orton's avatar
      Run filter "init" functions exactly once per request. No longer run · e1690458
      Joe Orton authored
      init functions for connection filters (doing an "init" once per
      handler invocation makes no sense for a connection filter).  No longer 
      run init functions multiple times per request if a subrequest is used.
      
      * include/util_filter.h (ap_filter_rec_t): Clarify use of the init
        function pointer.
      
      * server/config.c (invoke_filter_init): Drop ap_ prefix for private
        function; take a request_rec pointer and only invoke filters with
        matching request.
        (ap_invoke_handler): Adjust accordingly.
      
      PR: 49328
      Reviewed by: rpluem
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@953311 13f79535-47bb-0310-9956-ffa450edef68
      e1690458
  15. 08 Jun, 2010 2 commits
  16. 07 Jun, 2010 2 commits
  17. 06 Jun, 2010 2 commits
  18. 04 Jun, 2010 3 commits
  19. 02 Jun, 2010 1 commit
  20. 01 Jun, 2010 3 commits
  21. 29 May, 2010 2 commits
  22. 14 May, 2010 1 commit
  23. 12 May, 2010 2 commits
  24. 10 May, 2010 1 commit
  25. 07 May, 2010 1 commit
    • Philip M. Gollucci's avatar
      Fix the following: · caa07236
      Philip M. Gollucci authored
      $> grep -e autoindex_ -e cgi_ httpd.conf
      LoadModule autoindex_module libexec/apache22/mod_autoindex.so
      LoadModule cgi_module libexec/apache22/mod_cgi.so
      
      
      fire up the following commands
      
      $> apxs -e -a -n autoindex mod_autoindex.so
      [activating module `autoindex' in /usr/local/etc/apache22/httpd.conf]
      $> apxs -e -a -n cgi mod_cgi.so
      [activating module `cgi' in /usr/local/etc/apache22/httpd.conf]
      
      This will result into the following httpd.conf
      
      $> grep -e autoindex_ -e cgi_ httpd.conf
      LoadModule autoindex_module libexec/apache22/mod_autoindex.so
      LoadModule cgi_module libexec/apache22/mod_cgi.so
      LoadModule autoindex_module libexec/apache22/mod_autoindex.so
      LoadModule cgi_module libexec/apache22/mod_cgi.so
      
      
      As you notice the modules are now loaded twice
      
      Now try to deactivate for the loaded ssl module
      
      $> grep ssl_ httpd.conf
      LoadModule ssl_module libexec/apache22/mod_ssl.so
      
      $> apxs -e -A -n ssl mod_ssl.so
      [preparing module `ssl' in /usr/local/etc/apache22/httpd.conf]
      
      $> grep ssl_ httpd.conf
      LoadModule ssl_module libexec/apache22/mod_ssl.so
      #LoadModule ssl_module libexec/apache22/mod_ssl.so
      
      As reported in FreeBSD ports PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/133704
      Previously discussed with: wrowe@
      
      This b/c '$lmd' expects the amount of space to be a fixed amount.  Use \s+ to make
      any valid httpd.conf syntax work (i.e. at least 1 space)
      
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@942209 13f79535-47bb-0310-9956-ffa450edef68
      caa07236