- Jul 29, 2003
-
-
Erik Abele authored
PR: 21964 Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100837 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
Use topbuilddir rather than topsrcdir to find config.nice. Submitted by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100835 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
the key contains a newline. PR: 14453 Submitted originally by: Cedric Gavage <cedric.gavage@unixtech.be> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100833 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
- make it compile time configurable, how long a response from a rewrite map prg may be. - avoid unnecessary memory operations git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100832 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 28, 2003
-
-
Andre Malo authored
- procattr_cmd_type_set was called twice. shoot one. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100831 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
function. This is the only place where they are needed. It is not necessary to add extra cycles for function calls here. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100830 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100829 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
- don't compute strlen more than one time - use ap_strchr instead of strchr git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100828 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
- shorten the code - improve efficiency and readability - get a rid of fixed buffers - use %pp format string for pointers git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100827 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
doesn't return that combination of conditions any more git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100826 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
mod_proxy_html. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100822 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
minor version upgrades easier. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100819 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100818 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100814 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
REWRITELOCK_MODE wasn't used anymore for ages. In the meantime it defined the mode of the rewritelog (sic!) file. So fix the misnaming and use constants for mode and open flags. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100813 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
Reviewed by: Mads Toftum, Erik Abele, Michael Schroepl git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100811 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
use sizeof where sizeof should be used. don't compute strlen again and again (use the supplied value from apr_strftime instead). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100810 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
compile time without patching the code git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100809 13f79535-47bb-0310-9956-ffa450edef68
-
Justin Erenkrantz authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100807 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 27, 2003
-
-
Andre Malo authored
The new map-cache consists of a simple two-tiered apr_hash structure. cachep->maps contains entries for each map, which point to a hash with the actual values (map->entries). Each map->entries hash lives in a subpool of cachep->pool. The mtime is stored per map and if the map expires, we just clear map->pool and create a fresh map->entries hash structure. This removes a big chunk of code from mod_rewrite, improves readability and even the memory footprint of the cache. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100801 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
improve efficiency and readabilty. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100800 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100799 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
improve efficiency and readablity. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100798 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
- improve efficiency - make it better readable git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100797 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100796 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
- use switch instead of if-else chain - collapse txt/rnd code, which is essentially the same - make it better readable at all. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100795 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 26, 2003
-
-
Andre Malo authored
an array. This is more naturally, efficient (mostly) and better readable. Leave deep indentations for now (better diff). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100794 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100793 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
reorder the code in mod_rewrite.c in order to get a rid of the forward declaration. Cleaned up the comments as well. No real code change, but a quite big diff ... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100792 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 25, 2003
-
-
Astrid Kessler authored
- some markup improvement git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100790 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
no code change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100789 13f79535-47bb-0310-9956-ffa450edef68
-
Erik Abele authored
in regard to suEXEC's docroot handling and it's preconditions; see PR#21873 and #21874. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100787 13f79535-47bb-0310-9956-ffa450edef68
-
Mads Toftum authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100786 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 24, 2003
-
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100784 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100783 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100782 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100780 13f79535-47bb-0310-9956-ffa450edef68
-
Astrid Kessler authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100779 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100776 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
increase readability. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100775 13f79535-47bb-0310-9956-ffa450edef68
-