Author: rjung
Date: Sun Nov 19 09:39:19 2006
New Revision: 476858
URL: http://svn.apache.org/viewvc?view=rev&rev=476858
Log:
Removing file and method from log message test.
This gets added automatically.
Modified:
tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c
tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c
Modified: tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c
URL:
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c?view=diff&rev=476858&r1=476857&r2=476858
==============================================================================
--- tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c (original)
+++ tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c Sun Nov 19 09:39:19
2006
@@ -2385,7 +2385,7 @@
else if (conf->alias_dir != NULL) {
/* Automatically map uri to a context static file */
jk_log(l, JK_LOG_DEBUG,
- "mod_jk::jk_translate, check alias_dir: %s",
+ "check alias_dir: %s",
conf->alias_dir);
if (strlen(clean_uri) > 1) {
/* Get the context directory name */
@@ -2410,12 +2410,12 @@
/* Deny access to WEB-INF and META-INF directories */
if (child_dir != NULL) {
jk_log(l, JK_LOG_DEBUG,
- "mod_jk::jk_translate, AutoAlias child_dir:
%s",
+ "AutoAlias child_dir: %s",
child_dir);
if (!strcasecmp(child_dir, "WEB-INF") ||
!strcasecmp(child_dir, "META-INF")) {
jk_log(l, JK_LOG_DEBUG,
- "mod_jk::jk_translate, AutoAlias
HTTP_NOT_FOUND for URI: %s",
+ "AutoAlias HTTP_NOT_FOUND for URI: %s",
r->uri);
return HTTP_NOT_FOUND;
}
@@ -2441,7 +2441,7 @@
/* Add code to verify real path
ap_os_canonical_name */
if (ret != NULL) {
jk_log(l, JK_LOG_DEBUG,
- "mod_jk::jk_translate, AutoAlias OK for
file: %s",
+ "AutoAlias OK for file: %s",
ret);
r->filename = ret;
return OK;
@@ -2454,7 +2454,7 @@
&& !strcasecmp(context_dir + (size - 4),
".war")) {
jk_log(l, JK_LOG_DEBUG,
- "mod_jk::jk_translate, AutoAlias
FORBIDDEN for URI: %s",
+ "AutoAlias FORBIDDEN for URI: %s",
r->uri);
return FORBIDDEN;
}
Modified: tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c
URL:
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c?view=diff&rev=476858&r1=476857&r2=476858
==============================================================================
--- tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c (original)
+++ tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c Sun Nov 19 09:39:19
2006
@@ -2681,7 +2681,7 @@
/* Automatically map uri to a context static file */
if (JK_IS_DEBUG_LEVEL(conf->log))
jk_log(conf->log, JK_LOG_DEBUG,
- "mod_jk::jk_translate, check alias_dir: %s",
+ "check alias_dir: %s",
conf->alias_dir);
if (strlen(clean_uri) > 1) {
/* Get the context directory name */
@@ -2707,13 +2707,13 @@
if (child_dir != NULL) {
if (JK_IS_DEBUG_LEVEL(conf->log))
jk_log(conf->log, JK_LOG_DEBUG,
- "mod_jk::jk_translate, AutoAlias
child_dir: %s",
+ "AutoAlias child_dir: %s",
child_dir);
if (!strcasecmp(child_dir, "WEB-INF")
|| !strcasecmp(child_dir, "META-INF")) {
if (JK_IS_DEBUG_LEVEL(conf->log))
jk_log(conf->log, JK_LOG_DEBUG,
- "mod_jk::jk_translate, AutoAlias
HTTP_NOT_FOUND for URI: %s",
+ "AutoAlias HTTP_NOT_FOUND for URI:
%s",
r->uri);
return HTTP_NOT_FOUND;
}
@@ -2742,7 +2742,7 @@
if (ret != NULL) {
if (JK_IS_DEBUG_LEVEL(conf->log))
jk_log(conf->log, JK_LOG_DEBUG,
- "mod_jk::jk_translate, AutoAlias OK
for file: %s",
+ "AutoAlias OK for file: %s",
ret);
r->filename = ret;
return OK;
@@ -2756,7 +2756,7 @@
".war")) {
if (JK_IS_DEBUG_LEVEL(conf->log))
jk_log(conf->log, JK_LOG_DEBUG,
- "mod_jk::jk_translate, AutoAlias
HTTP_FORBIDDEN for URI: %s",
+ "AutoAlias HTTP_FORBIDDEN for URI:
%s",
r->uri);
return HTTP_FORBIDDEN;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]