%b.
>
> "common" pattern is defined at org.apache.catalina.valves.Constant
> public static final String COMMON_PATTERN = "%h %l %u %t \"%r\" %s
> %b";
>
> Double quotations are needed because %r would have white spaces.
The \" doesn't work... The server.x
On Thu, 2007-05-10 at 20:56 +0900, Takayuki Kaneko wrote:
> I tried both alternatives. They worked correctly.
Yep... I will use the single quotes.
Cheers
Jean-Frederic
>
> Regards,
>
> -Takayuki
>
> On 5/10/07, Tim Funk <[EMAIL PROTECTED]> wrote:
> > Alt
Hi,
I think that the default value of JK_OPT_FWDURIDEFAULT is bad and should
be JK_OPT_FWDURICOMPATUNPARSED.
Any comments?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail
ill do the decoding part.
>
> So what we do is what is documented. Breaking the default should have
> serious reasons at least. For 1.3/3.0 we could consider changing more
> easily of course.
>
> Why do you think the default is bad?
Because it breaks the spec's an
he code. No idea, if that has an interaction bug with filters.
> >
> > No more, we're is AS400_UTF8 mode so the ws_write in i5/OS and Linux
> > is the same...
> >
>
> Did you heard about problem with sent_body
the
> download README
Yes I think that the correct option. Default values should always follow
the spec's and be as secure as possible.
Cheers
Jean-Frederic
>
> or/and
>
> - Staying compatible in 1.2, changing in 1.3 but putting a big note in
> the docs page about the opti
best way is to branch the actual
code in a 6.0.x branch and develop the new API in trunk. (like in
httpd).
Cheers
Jean-Frederic
>
> The list would be:
> - new Comet capabilities, with non blocking IO
> - revised EE integration APIs (for annotation processing)
> - (proposed) por
t; What's the problem?
> ===
I think we still miss something... The mapping (map_uri_to_worker) uses
r->uri. Should we use s->req_uri or a carefully normalised uri to do the
mapping? Fixing s->req_uri doesn't help to fix the mapping (where the
problem comes from).
Cheers
Jean-Frede
On Sat, 2007-05-19 at 18:57 +0200, Rainer Jung wrote:
> Jean-Frederic wrote:
> > On Sat, 2007-05-19 at 14:27 +0200, Rainer Jung wrote:
> >> Hi,
> >>
> >> now that we changed the default way how to forward URIs from mod_jk to
> >> Tomcat (mod_jk 1.2.
is going to normalise a url we have already
normalised. Shouldn't we check that a second normalisation (like the
Tomcat one) gives a different url and if yes have a flag to return
"forbidden"? (Yes that would be a 4th option).
Cheers
Jean-Frederic
>
> >> Original URI
DURIDEFAULTJK_OPT_FWDURIESCAPEDMINIMAL
+++
Because that is what the SPEC's says.
Cheers
Jean-Frederic
> Or even better: use the encoding done with mod_proxy_ajp?
>
> >> Original URI:
> >>
> >> /myapp/%252e%252e/otherapp/danger
> >>
> >
s is
> mostly copy/paste from the IIS module
>
Note that we should rollback
http://svn.apache.org/viewvc?view=rev&revision=538975 too, shouldn't we?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PR
he ';' so you will prevent valid url to work with this correction.
Cheers
Jean-Frederic
>
> It shows the fix coded as:
>
> for (i = 0; i < strlen(uri); i++) {
> if (i == JK_MAX_URI_LEN) {
> jk_log(l, JK_LOG_WARNING,
>&quo
l mess up
> character encoding, and may not correspond to the original URI.
>
> How does it work in mod_proxy ?
Mod_proxy uses ap_proxy_canonenc to reencode the URL.
For example:
/myapp/%25%25%25toto%25.gif -> /myapp/%%%toto%.txt (by mod_write) ->
myapp/%25%25%25toto%25.txt
t Tomcat could process the
request correctly.
Mod_proxy does that correctly via ap_proxy_canonenc().
Should I port ap_proxy_canonenc() to mod_jk and make it the default
handling?
Cheers
Jean-Frederic
>
> How does it work in mod_proxy ?
>
> Rémy
>
> --
rdURIProxy to the URl handling option.
> > common/jk_url.c is just a porting of the routines
> > from proxy_util.c (Apache httpd).
>
> After quite a few discussions, I think this should be the only mode
> available for URI handling, as the two others are broken.
>
> Co
On Tue, 2007-06-12 at 19:50 +0200, Mladen Turk wrote:
> Jean-Frederic wrote:
> >>> Add ForwardURIProxy to the URl handling option.
> >>> common/jk_url.c is just a porting of the routines
> >>> from proxy_util.c (Apache httpd).
> >> After quite a
eds the extra argument, and will mean same as
> > Thread.sleep(),
> > but
> > not-blocking ?
>
> This sleep is a non blocking call, and instructs the connection to "do
> nothing until I wake you up (or a timeout occurs,
On Thu, 2006-12-07 at 11:48 +0100, Henri Gomez wrote:
> The problem is still here in future jk 1.2.20
I can't reproduce something like that with 5.5.17, could you try with a
TC5.5.x?
Cheers
Jean-Frederic
>
> 2006/12/7, Henri Gomez <[EMAIL PROTECTED]>:
> > More on
piler will
take precedence
checking for sys/socketvar.h... yes
+++
And in common/portable.h:
+++
/* Define to 1 if you have the header file. */
#define HAVE_SYS_SELECT_H 1
/* Define to 1 if you have the header file. */
#define HAVE_SYS_SOCKETVAR_H 1
+++
Cheers
Jean-Frederic
On Fri, 2007-02-02
Something like:
+++
[[#ifdef HAVE_SYS_SOCKETVAR_H
# include
#endif
]])
AC_CHECK_HEADERS([sys/select.h], [], [],
[[#ifdef HAVE_SYS_SELECT_H
# include
#endif
]])
+++
helps for sys/socketvar.h
Should we have macros for that?
Cheers
Jean-Frederic
On Fri, 2007-02-02 at 18:36 +0100, Rainer Jung
defined(NETWARE) || defined(AS400)
#define USE_SPRINTF
#define USE_VSPRINTF
#endif
+++
Could someone check that the snprintf() and snprintf() of jk_util.c are
working on NETWARE and AS400?
Cheers
Jean-Frederic
-
To unsubscribe, e
Hi,
I think time as arrive to release 1.2.21.
Are there pending changes? Or urgent ugly bugs?
What about a date like Friday evening (GMT) for tagging?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For
9 from IIS to Apache
You want to remove sessionid=D5E2FE08F02400159DFD6231
11F98FEE.p-ng-ptom2 from
/shoppingcc/img/btn_nav_main_login.gif;jsessionid=D5E2FE08F02400159DFD6231
11F98FEE.p-ng-ptom2
do it with mod_rewrite:
RewriteRule ^/(.*).gif;jsessionid=.*$ /$1.gif [PT]
Cheers
Jean-Frederic
>
I also have the pending patch... To prevent typos in the properties no
beeing detected what starting httpd.
Should I include it?
Cheers
Jean-Frederic
Index: apache-1.3/mod_jk.c
===
--- apache-1.3/mod_jk.c (revision 510645
@@ -2776,7 +2779,8 @@
> > }
> > }
> > }
> > - init_jk(pconf, conf, s);
> > +if (init_jk(pconf, conf, s))
> > +return !OK;
> > }
> > }
>
> Ap
On Mon, 2007-02-26 at 16:07 +1300, Tim Whittington wrote:
> Never mind the second issue - one should read the docs more carefully.
> Apologies for the noise.
> The missing sizeof makes me nervous still.
sizeof(char) is one and there is a sprintf()...
Cheers
Jean
Solaris, HPUX,
Darwin).
Comments?
Cheers
Jean-Frederic
>
> I'm travelin at the moment, otherwise I would have suggested to tag even
> earlier. Anyone planning to apply important changes to trunk before
> saturday, please sh
Beta - at least one significant issue -- tell us what it is
[ ] Alpha - multiple significant issues -- tell us what they are
Cheers,
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [
On Thu, 2007-03-01 at 11:49 +0100, Remy Maucherat wrote:
> Hi,
>
> I'd like to nominate Fabian Carrion as a committer on the Apache Tomcat
> project. Fabian contributed many useful patches, including helping add
> support for Servlet 2.5 in Apache Tomcat 6.0.
>
>
cache (mod_cache_mem) . I disabled all of these and still was
> experiencing the problem.
Could you please fill a bugzilla report describing the problem and how
to reproduce it?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
On Fri, 2007-03-02 at 17:34 +0100, Mladen Turk wrote:
> Jean-Frederic wrote:
> >
> > Source distribtions can be downloaded from an
> > Apache Software Foundation mirror at:
> >
> > http://tomcat.apache.org/download-connectors.cgi
> >
>
> Can you fix
The Apache Tomcat team is pleased to announce the immediate availability
of version 1.2.21 of the Apache Tomcat Connectors.
It contains connectors, which allow a web server such as Apache HTTPD,
Microsoft IIS and Sun Web Server to act as a front end to the Tomcat web
application server.
This vers
gt; the top of the first page and then start searching the archives and
> other public vulnerability databases.
>
> Any comments before I commit these changes to the live site?
Add a mod_jk Apache Tomcat JK
+1
Cheers
Jean-Frederic
>
> Mark
>
> -
Hi,
Paul Querna suggest to use LimitRequestLine 4000 on Apache httpd to
limit the possible abuse of this vulnerability.
Just add it in httpd.conf and make a graceful restart.
Cheers
Jean-Frederic
-
To unsubscribe, e-mail
mats seem to differ, so I would prefer
> to stabilize on one of them. w3m and elinks seem to be not very active
> (w3m no releases at all, elinks once a year). There is a follow-up
> project on links http://links.twibright.com. It is under GPL, but for
> simply running it, that's OK
ot that significant (OpenSSL 0.9.8 supports it, don't ask
>me if JSSE does.)
>
> 4. Waka. Why reinvent a wheel in motion? With the new focus at the
>httpd Amsterdam code to break apart http from apache, we are adding
>wiggle room for some to come behind and code to
On Mon, 2007-03-19 at 19:55 -0700, Stefan Bodewig wrote:
> To whom it may engage...
Fixed thanks
Cheers
Jean-Frederic
>
> This is an automated request, but not an unsolicited one. For
> more information please visit http://gump.apache.org/nagged.html,
> and/or cont
stemp so that Henri could use the APR call?
Cheers
Jean-Frederic
>
> 2007/3/29, Mladen Turk <[EMAIL PROTECTED]>:
> > Henri Gomez wrote:
> > > While rebuild trunk from mod_jk I got an error on iSeries about
> > > missing mktemp in iSeries.
> > >
> &g
On Thu, 2007-03-29 at 12:57 +0200, Henri Gomez wrote:
> Hi to all,
>
> While using with the 1.2.21-dev on i5 (iSeries) I saw a strange
> problem when doing SOAP works.
What is the exception on TC side?
Cheers
Jean-Frederic
>
> In SOAP, a Fault Exception is sent by Tomcat as
Hi,
Is there an explanation how to build a TC-5.0.x from the svn?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Hi,
Does someone plan to release a TC 5.0.x for the last security fixes?
I have arranged jasper and the build and I still have to patch the code
for the latest security fixes. (I have already ported the CVE-2007-0450
corrections)
Cheers
Jean-Frederic
ta-regexp-1.3 are not solved.
The files in dist/jakarta/regexp/binaries/ have been restored.
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
tead the apr_strnatcasecmp, for example in mod_jk.c
> for apache 2 ?
Better use something like:
#ifdef AS400_UTF8
#define strcasecmp(a,b) apr_strnatcasecmp(a,b)
#endif
Cheers
Jean-Frederic
>
> -
> To unsubscribe, e-mail:
On Tue, 2007-04-24 at 18:56 -0500, William A. Rowe, Jr. wrote:
> http://www.apache.org/dist/tomcat/tomcat-5/
>
> is rather gross - any hope of cleaning up the chaos? 3x 5.5.20 + 2x 5.0.30?
IMHO: The 5.5.20 should be removed.
The v5.0.30-beta is a link to v5.0.30
Cheers
Jean
be *d = NULL ?
I think that you should have:
apr_pool_cleanup_register(p, &main_log, jklog_cleanup, jklog_cleanup);
if you want to use *d = NULL; to set main_log to NULL.
Cheers
Jean-Frederic
>
> Also shouldn't we reset main_log and conf->log ?
>
>
> 2007/4/24,
ut that does prevent anyone to ask and do the release because we vote
the releases.
Cheers
Jean-Frederic
>
> Yoav
>
> -
> To unsubscribe
Fenlason, Josh wrote:
What is the latest stable mod_jk? I know there was a vote for 1.2.15.
What is the status of that?
On the download page it has links to 1.2.14, but these links are broken.
(http://tomcat.apache.org/download-connectors.cgi)
I have repaired the download page.
On the
Jean-frederic Clere wrote:
Fenlason, Josh wrote:
What is the latest stable mod_jk? I know there was a vote for 1.2.15.
What is the status of that? On the download page it has links to
1.2.14, but these links are broken.
(http://tomcat.apache.org/download-connectors.cgi)
I have
else? (like using javasvn: http://tmate.org/svn/).
Comments?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Costin Manolache wrote:
Isn't possible to get a svn tree using http download ? I tought one of
the benefits of svn is that it uses http.
gets only one file not the complete tree ;-(
Jean-frederic
Costin
On 10/18/05, Jean-frederic Clere <[EMAIL PROTECTED]> wrote:
hi,
Mladen Turk wrote:
William A. Rowe, Jr. wrote:
Do you guys find something that would prevent 1.2.15 to
be declared as stable that I'm missing?
I'll try to find cycles to test myself, next week. I know I'm having
alot of trouble with the apache 1.3 build on odd architectures, probably
beca
hasssip satang wrote:
Hi,
I'm trying to setup a tomcat eclipse project. Looking through the list
archive I've seen that some of you have been sharing their .project and
.classpath files.
If you could send me these files as well (or point me to a resource where I
can download them) that
ent to Tomcat's crappy documentation
than to its popularity.
Well Tomcat documentation needs _urgent_ improvements.
Cheers
Jean-Frederic
Yes, yes, I know Tomcat is "not for me". You're damned right. I'm
Fenlason, Josh wrote:
Hey everybody!
I'm trying to build the native apr connector from Tomcat 5.5.12 on HPUX
Itanium and I'm running into a problem during the configure. APR 1.2.2
built fine. I built OpenSSL 0.9.8a as a static library (I couldn't get
it to build as a shared library.) When I t
f, t, protocol, p), a);
}
+++
Isn't APR_UNSPEC defined to zero? - that would explain the problem
decribed in
http://issues.apache.org/bugzilla/attachment.cgi?id=17525 -
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECT
Jim Jagielski wrote:
There's a bug report (37788) regarding allowing AprEndpoint
to use APR IPv6 addresses. Their patch is almost right, but
instead the value should be to use APR_UNSPEC instead
of APR_INET6 (or the current APR_INET) to allow APR
to correctly determine IP version and do a gracef
Jean-frederic Clere wrote:
Jim Jagielski wrote:
There's a bug report (37788) regarding allowing AprEndpoint
to use APR IPv6 addresses. Their patch is almost right, but
instead the value should be to use APR_UNSPEC instead
of APR_INET6 (or the current APR_INET) to allow APR
to corr
Hi,
I have small question: In which class(es) are the warfiles deployed?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Remy Maucherat wrote:
Jean-frederic Clere wrote:
Hi,
I have small question: In which class(es) are the warfiles deployed?
In Tomcat, the "deployer" is a listener class for the Host, called
HostConfig.
Thanks, I am now in ExpandWar.java ;-)
Cheers
Jean-Freder
it's likely the source.
Don't know how it could be fixed - either submit it with the right
description, or maybe ask to become an editor ?
I have applied for it.
Cheers
Jean-Frederic
Costin
( with standard disclaimers, I just did a quick search :-)
On 2/25/06, Yoav Shapi
Hi,
Next question: how do I republish the
http://tomcat.apache.org/tomcat-5.5-doc pages?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Remy Maucherat wrote:
Hi,
Because of the critical AJP bugfix found and fixed earlier today,
would it be possible to plan releasing a new 5.5.16 build soon ?
+1... I have something not working when deploying an application with
the 5.5.15 and using trunk helps ;-)
Cheers
Jean-Frederic
).
Cheers
Jean-Frederic
Thank you,
The Apache Tomcat Team
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED
s for updated
versions...
Ok... If nobody complains I will update the file in svn... For the next
version.
Cheers
Jean-Frederic
Yoav
On 3/6/06, Jean-frederic Clere <[EMAIL PROTECTED]> wrote:
Yoav Shapira wrote:
The Apache Tomcat team is proud to announce the immediate avai
Hi,
Why aren´t we providing a configure in the released sources?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
tomcat5 1156 Mar 5 02:25 build/get-version.sh
+++
Strange permissions in trunk are ok, any hints?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Bill Barker wrote:
-Original Message-
From: Jean-frederic Clere [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 14, 2006 2:34 PM
To: Tomcat Developers List
Subject: bad permissions in the 5.5.16 sources tar file.
Hi,
I am trying to build libtcnative-1.so using the 5.5.16
nc is null we should
used the sourceEnc to read the JSP file, so this patch is also needed
for all the encodings.
Any comments?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e
Mladen Turk wrote:
Jean-frederic Clere wrote:
Hi,
One of the patches I need to get TC working with JSP in EBCDIC is the
following:
Any comments?
Yes. Fix your clock. You live in the future :)
Have to fix the past to be allow to live in the future :)
Cheers,
Mladen
e that will be OSD_EBCDIC_DF04_1.
Cheers
Jean-Frederic
This message is intended only for the use of the person(s) listed above as the
intended recipient(s), and may contain information that is PRIVILEGED and
CONFIDENTIAL. If you are not an intended recipient, you may not read, copy, or
specified and ISO-8859-1 if none are specified.
Cheers
Jean-Frederic
Costin
On 3/17/06, Bill Barker <[EMAIL PROTECTED]> wrote:
-Original Message-
From: Costin Manolache [mailto:[EMAIL PROTECTED]
Sent: Friday, March 17, 2006 11:57 AM
To: Tomcat Developers List
Subject
:).
Costin
On 3/17/06, Bill Barker <[EMAIL PROTECTED]> wrote:
-Original Message-
From: Jean-frederic Clere [mailto:[EMAIL PROTECTED]
Sent: Friday, March 17, 2006 4:13 AM
To: Tomcat Developers List
Subject: Re: svn commit: r386315 -
/tomcat/jasper/tc5.5
on:
+++
freebsd*)
CFLAGS="$CFLAGS -DOS_FREEBSD -DDSO_DLFCN -D_THREAD_SAFE -pthread"
LDFLAGS="-pthread $LDFLAGS"
supported_os="freebsd"
;;
+++
Time to make a new release of daemon?
Cheers
Jean-Frederic
--
www/tomcat.apache.org/tomcat-5.0-doc/printer/status.html
/www/tomcat.apache.org/tomcat-5.0-doc/status.html
/www/tomcat.apache.org/tomcat-5.5-doc-v5.5.15/printer/status.html
/www/tomcat.apache.org/tomcat-5.5-doc-v5.5.15/status.html
+++
Why and why 5.5.15?
Cheers
Jean-Frede
d_attr_t { long __sig; char __opaque
[__PTHREAD_ATTR_SIZE__]; };
But I not clear what is the right cast or we need a spezial darwin
handling?
I don't think we need a special darwin handling: I think we can't cast a
apr_os_thread_t to an unsigned
Remy Maucherat wrote:
Mladen Turk wrote:
Right. I was hoping to have the native release by the end of the week
also. Since installer depends on outside natives, the native should
be out before the 5.5.17.
That's a good idea.
There are some small issues with some compile warnings for MacOS
Oliver Schoenwald wrote:
Dear developers,
I have developed an SSL-based SessionManagement for our university's
e-learning system because I was unsuccessful to find any ability of
Tomcat 5
to create and manage an SSLSession as in the JSSE-Specification.
Several weeks of googling after such a f
#x27;m happy to provide yourkit
memory dumps or access to the server if necessary. We're currently
running 5.5.16.
Reopen the bug, there seem to be something really wrong...
Cheers
Jean-Frederic
Thanks!
Jeff
-
To
#x27;m happy to provide yourkit
memory dumps or access to the server if necessary. We're currently
running 5.5.16.
Have you try to set org.apache.jasper.runtime.JspFactoryImpl.USE_POOL to
false?
(adding -Dorg.apache.jasper.runtime.JspFactoryImpl.USE_POOL=false to
CATALINA_OPTS environme
Hi,
I have noted that nothing has happened in tomcat/connectors/trunk/jk3.
Nearly 2 months without real road map nor clear specifications, what is
wrong?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For
only medium.
APR-izing is something I am willing to do even to lead... (I am APR
committer since 1999!)
Once APR would be there, I would start working on management threads.
But APR is the necessary big first step (at least that's what I think) ...
Me too
Cheers
Jean-Frederi
also
don't think people are interested enough to vote.
A vote proposal should be [VOTE] in the subject. Like [VOTE] Which Comet
implementation/API to use.
You just answer to an old thread so that doesn't cache the attention of
community.
Cheers
Jean-Frede
->buf + msg->len, param, len + 1); /* including \0 */
Why do you remove the (char *)?
Cheers
Jean-Frederic
#if (defined(AS400) && !defined(AS400_UTF8)) || defined(_OSD_POSIX)
/* convert from EBCDIC if neede
Jim Jagielski wrote:
On Jun 27, 2007, at 11:27 AM, jean-frederic clere wrote:
Rainer Jung wrote:
Whenever I had a couple of hours I was doing small tests with scripting.
I think the most valuable first step would be the transformation to APR.
Unfortunately this is something I could hekp
/hardware and that is an OS depend code.
Cheers
Jean-Frederic
For example, if some admins considers we should base the
load-balancing on HTTP requests or SQL access, and they have these
counters on their webapp applications, it will be usefull to be able
to get them from Tomcat to send them
Hi,
The examples (servlet and JSP) have caused a list of security issues.
I think we should remove them from the Tomcat binary packages (6.0 and
5.x at least).
Any comments?
Cheers
Jean-Frederic
-
To unsubscribe, e-mail
Jean-Frederic
regards.
Yoav Shapira-2 wrote:
Hey,
On 7/14/07, Bill Barker <[EMAIL PROTECTED]> wrote:
"Joe Nathan" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
I think if Tomcat also supports PHP scripts, it could be wonderful!.
Google is your friend :)
new Comet stuff).
2 - That also needs a servlet and a careful build of the php engine and
it extensions.
3 - I don't think that the scope of the Tomcat project.
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROT
huge thing to write.
Cheers
Jean-Frederic
Of course it couldn't be a Tomcat project
2007/7/19, jean-frederic clere <[EMAIL PROTECTED]>:
Hi,
I am thinking that this thread goes to nowhere...
To get some php stuff in TC you have 3 solutions:
1- FastCGI.
2- PHP engine embedded in
example to use https between httpd and TC so
that the connection can be encrypted.
Cheers
Jean-Frederic
This message is intended only for the use of the person(s) listed above as the
intended recipient(s), and may contain information that is PRIVILEGED and
CONFIDENTIAL. If you are not a
at/trunk/) will be created there we
put what we agree to put for the actual trunk (by voting).
Everyone that when to try something could try it in a new branche.
Comments?
Cheers
Jean-Frederic
> [ ] +0 What revolution?
&
Remy Maucherat wrote:
> jean-frederic clere wrote:
>> Bill Barker wrote:
>>> I'm so tired of this thread, so let's settle it once and for all.
>>> I'm backing Remy's suggestion to send the current trunk to the sandbox:
>>> [X] +1 Let's
previous vote.
Following this, debate should take place to determine if a new main
trunk is needed, and if commit procedure changes would be good
(personally, I do like Jean-Frédéric's ideas).
[ X] +1
Cheers
Jean-Frederic
[ ] 0
[ ] -1
branch or sandbox)
or a patch (diff -u) against the branch.
A proposal needs 3 +1 votes and no -1 to be accepted. The committer that
makes the proposal is responsible to commit the new code (and move the
proposal from STATUS to CHANGES) in the branch once accepted.
[ ] +1
[ ] 0
[ ] -1
Jean-Frederic
xing bugs.
Cheers
Jean-Frederic
>
> -Tim
>
> jean-frederic clere wrote:
>> Hi,
>>
>> I would also propose that we take an handling of release branches
>> similar to httpd.
>>
>> The votes will get in a file named STATUS file and once accepted in a
.
Where? Well in /tomcat/sandbox/next/TODO or tomcat/sandbox/next/ROADMAP
or 6xFeatures.txt (replace next by something better like atlanta for
example see: /httpd/sandbox/amsterdam/).
Cheers
Jean-Frederic
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
+1
Cheers
Jean-Frederic
Remy Maucherat wrote:
> Hi,
>
> Another more precise draft.
>
> Patches which would go to review would be:
> - API changing patches (any protected or above signature change) on APIs
> which are accessible to the user either from confirguration
ould also mean it is possible to make a change that a number of
>> committers oppose (possibly, would veto) if enough committers are in
>> favor of it.
> I don't really see the need of doing our own version of a semi RTC,
> either we do RTC on release branches and CTR on t
Remy Maucherat wrote:
> jean-frederic clere wrote:
>> Filip Hanik - Dev Lists wrote:
>>> Remy Maucherat wrote:
>>>> Hi,
>>>>
>>>> Another more precise draft.
>>>>
>>>> Patches which would go to review would be:
>
1 - 100 of 813 matches
Mail list logo