Re: Migrate to git?

2019-10-24 Thread Jose Kahan
On Sat, Oct 05, 2019 at 04:09:34PM -0400, Jim Jagielski wrote: > Various PMCs have made their default/de-facto SCM git and have seen an > increase in contributions and contributors... > > Is this something the httpd project should consider? Especially w/ the > foundation officially supporting

Re: PHP test cases

2017-11-22 Thread Jose Kahan
On Tue, Nov 21, 2017 at 04:31:57PM -0600, Daniel Ruggeri wrote: > > Also, t/php/getlastmod.t fails because of a warning[2] unless php.ini > has been set to explicitly declare a timezone (unsure of which version > PHP made this a warning). Should we modify our php script or modify the > comparison

Re: modules.apache.org is down

2017-03-15 Thread Jose Kahan
On Wed, Mar 15, 2017 at 05:36:47PM +0100, Jose Kahan wrote: > > It's been a couple of months (if not more) that the 3rd party > module repo is unavailable. the last discussion I saw about > this site dates from Nov 2016, where people were talking about > moderation, spambots, a

modules.apache.org is down

2017-03-15 Thread Jose Kahan
Hi, It's been a couple of months (if not more) that the 3rd party module repo is unavailable. the last discussion I saw about this site dates from Nov 2016, where people were talking about moderation, spambots, and making a new system. Are you planning to bring it back online? Otherwise, it

mod_index : missing Content-Location header

2016-01-08 Thread Jose Kahan
Hi, Best wishes for 2016! Does anyone know why mod_dir doesn't generate a Content-Location header when a URI ending in "/" is requested? This is a behavior that is common in 2.2 and 2.4. For some publishing tools, it's useful to know what's the actual URI that's mapped to "/" thru

Re: Weird interaction between mod_dir and [P] rewrites

2015-11-24 Thread Jose Kahan
Eric, On Tue, Nov 24, 2015 at 01:37:09PM -0500, Eric Covener wrote: > Tried DirectoryCheckHandler? It's a 2.2-vs-2.4 difference discovered a > little too late to change by default. Thank you very much. That fixed my issue. I wonder if it would be interesting to add a note about this change in

Weird interaction between mod_dir and [P] rewrites

2015-11-24 Thread Jose Kahan
Hi, This is something that has changed in 2.4 compared to 2.2. When I follow the simple scenario (attached file) in a fresh install of apache, mod_dir is affecting the first value of DirectoryIndex to my request before it is being proxied. In 2.2, I was used to browse

Re: patch to mod_authz_dbd to handle query parameters

2015-11-18 Thread Jose Kahan
Hi, Not having heard back since submitting this enhancement, I decided to put it on github to share it with other people who may be interested by it [1]. I integrated the changes from [2] and used 2.4.17 as the "base version". My original submission is [3]. Feel free to contact me if you are

Re: patch to mod_authz_dbd to handle query parameters

2015-05-30 Thread Jose Kahan
Hi! A gentle reminder that I had submitted this patch and would like to know if someone has had time to review it and/or would like further modifications. Should I add a bugzilla entry so that it doesn't fall under the radar? Thanks! Kudos. -jk

Re: Re: patch to mod_authz_dbd to handle query parameters

2015-05-30 Thread Jose Kahan
Argh, I forgot to include the link to the message! Sorry about that. http://mail-archives.apache.org/mod_mbox/httpd-dev/201504.mbox/%3c20150428165148.ga17...@kiribati.inrialpes.fr%3E -jk

patch to mod_authz_dbd to handle query parameters

2015-04-28 Thread Jose Kahan
Hi, I realized that my last message was missing a part of the info I had prepared. I'm resending it with a new subject to make it clearer what it is. I slightly revised the patch in that it had a unused variable. I don't know why -Wc-Wunused didn't work with apxs2. To compile and install the

Re: Extending mod_authz_dbd

2015-04-23 Thread Jose Kahan
Hi Graham, Here's a first patch that adds the functionality that you suggested. Require dbd-login %{REQUEST_URI} %{REQUEST_METHOD} %{REMOTE_USER} AuthzDBDQuery UPDATE authn SET uri = %s, method = %s WHERE user = %s” Require dbd-logout %{TIME} %{REMOTE_USER} AuthzDBDQuery UPDATE

Re: Extending mod_authz_dbd

2015-04-17 Thread Jose Kahan
Hello Graham, Thanks for your feedback. It all makes sense to me. Following your reasoning, the only directive that will have i to stay as is for backwards compatibility will be require dbd-group, as it expects either no parameter or the value the query will return. I had initially thought of

Extending mod_authz_dbd

2015-04-14 Thread Jose Kahan
Hi, We're preparing the migration to apache 2.4 and we're happy to see that many features now available allow us to put to rest most of our custom developed modules. Looking at mod_authz_dbd, we would like to make a request against a dbase passing different parameters (REQUEST_URI,

Re: Misleading example in Apache 2 doc (fix)

2009-03-13 Thread Jose Kahan
Hi André, language\s*=\s*([^;,\s]+) Your expression works well and is simpler than mine. +1 to update the doc with it instead of my proposal. Thanks :) -jose

Misleading example in Apache 2 doc

2009-03-12 Thread Jose Kahan
! I'm not sure if I should mail this here or open a new bugzilla report. Please advice. The Content Negotiation doc is using a misleading example in this section: http://httpd.apache.org/docs/2.2/content-negotiation.html#better [[ Example SetEnvIf Cookie language=(.+) prefer-language=$1

Misleading example in Apache 2 doc (fix)

2009-03-12 Thread Jose Kahan
I didn't do my homework completely. According to RFC 2910, Cookie tokens may be separated by white space. The correct regular expression is: [[ SetEnvIf Cookie language\s*=\s*([a-z|A-Z][a-z|A-Z|-]+) prefer-language=$1 ]] Thanks! -jose

Gentle reminder of outstanding contributed patches

2008-01-31 Thread Jose Kahan
Hi folks, Per the patch submission suggestion # 1: [[ Be persistent but polite. Post to the developers list pointing out your patch and why you feel it is important. Feel free to do this about once a week and continue until you get a response. Just be sure to be polite about it, since

Gentle reminder of outstanding contributed patches

2007-10-24 Thread Jose Kahan
Hi folks, Per the patch submission suggestion # 1: [[ Be persistent but polite. Post to the developers list pointing out your patch and why you feel it is important. Feel free to do this about once a week and continue until you get a response. Just be sure to be polite about it, since

Re: As we contemplate what to fix, and how to roll out 2.4 and 3.0

2007-10-04 Thread Jose Kahan
If it could help your PR effort, maybe you could have some kind of online testimonial or survey page of companies or big sites that have moved to Apache 2.2, stating how much time it took them to migrate to it from the previous server version, how much effort it took to migrate their propietary

Re: Jose's recent location test/failures

2007-10-01 Thread Jose Kahan
Hello, Here's my second take at submitting these tests. Following Bill's comments, I did some changes to remove the ambiguity. These tests check that the directives inside LocationMatch, Directory sections as well as .htaccess are taken into account when processing internal subrequests. The

Re: Jose's recent location test/failures

2007-09-26 Thread Jose Kahan
Hello Bill, Thanks for your reply. On Wed, Sep 26, 2007 at 02:05:26PM -0500, William A. Rowe, Jr. wrote: I believe the mistaken assumption is that charset can be used in this way. AddCharset should be used in this case. If no AddCharset is applied, AddDefaultCharset takes over.

Re: svn commit: r579664 - in /httpd/httpd/trunk: CHANGES server/request.c

2007-09-26 Thread Jose Kahan
Hi nd, On Wed, Sep 26, 2007 at 08:40:08PM +0200, Andr?? Malo wrote: URL: http://svn.apache.org/viewvc?rev=579664view=rev Log: Reinstate location walk for subrequests PR 41960 (Jose Kahan) I don't see how the comment matches the patch. We always had location walks for subrequests

[bug + naive patch] mod_negotiation + query parameters

2007-09-25 Thread Jose Kahan
Hi, This is a bug similar to PR 33112 which was fixed in 2.2.6. Query strings are not being passed along when mod_negotiation combines multiviews with typemap processing. The guilty party is the call to ap_internal_fast_redirect(sub_req, r) in mod_negotiation.c:handle_multi() which

[mod_spelling] misuse of AcceptPathInfo?

2007-09-25 Thread Jose Kahan
Hi, Since Apache 2.2, one has to turn on AcceptPathInfo in order to correct directory mispelings: IfModule mod_speling.c CheckSpelling On AcceptPathInfo On /IfModule This is because mod_speling has the following code: [[ /* we default to reject path info (same as core handler) */

Re: Patch (against trunk) for bug #41960

2007-09-10 Thread Jose Kahan
Hello, Congratulations on the new release 2.2.6. Would there be any possiblity of applying (or reviewing) my outstanding patch? request.c hasn't evolved since I did the patch against trunk. I had also submitted a new test procedure for the test suite. It hasn't yet been commited, although it

Patch (against trunk) for bug #41960

2007-08-10 Thread Jose Kahan
Hi folks, Just a short messsage to tell you that I just uploaded the patch against svn trunk that fixes this bug. Yes, the patch is still needed as the bug is unfortunately still around :-/. Is there any hope of seeing this patch committed? Our internal production server has been working with

New test: subrequests and content negotiation

2007-08-10 Thread Jose Kahan
Hi! Here's my first submission. This test is written against your perl-framework test environment. It tests that subrequests are correctly parsing and taking into account directives that are declared in Directory, Location sections and .htaccess files. I'm using the same test scenario I gave in