Return-Path: X-Original-To: apmail-struts-commits-archive@minotaur.apache.org Delivered-To: apmail-struts-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 017847C59 for ; Tue, 20 Sep 2011 16:30:37 +0000 (UTC) Received: (qmail 81210 invoked by uid 500); 20 Sep 2011 16:30:36 -0000 Delivered-To: apmail-struts-commits-archive@struts.apache.org Received: (qmail 81168 invoked by uid 500); 20 Sep 2011 16:30:36 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 81161 invoked by uid 99); 20 Sep 2011 16:30:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Sep 2011 16:30:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Sep 2011 16:30:34 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 8C18E2388A6C for ; Tue, 20 Sep 2011 16:30:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1173228 - /struts/struts2/trunk/plugins/sitegraph/src/main/java/org/apache/struts2/sitegraph/entities/FileBasedView.java Date: Tue, 20 Sep 2011 16:30:13 -0000 To: commits@struts.apache.org From: mcucchiara@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20110920163013.8C18E2388A6C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mcucchiara Date: Tue Sep 20 16:30:13 2011 New Revision: 1173228 URL: http://svn.apache.org/viewvc?rev=1173228&view=rev Log: Removed redundant escape sequence Modified: struts/struts2/trunk/plugins/sitegraph/src/main/java/org/apache/struts2/sitegraph/entities/FileBasedView.java Modified: struts/struts2/trunk/plugins/sitegraph/src/main/java/org/apache/struts2/sitegraph/entities/FileBasedView.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/sitegraph/src/main/java/org/apache/struts2/sitegraph/entities/FileBasedView.java?rev=1173228&r1=1173227&r2=1173228&view=diff ============================================================================== --- struts/struts2/trunk/plugins/sitegraph/src/main/java/org/apache/struts2/sitegraph/entities/FileBasedView.java (original) +++ struts/struts2/trunk/plugins/sitegraph/src/main/java/org/apache/struts2/sitegraph/entities/FileBasedView.java Tue Sep 20 16:30:13 2011 @@ -68,7 +68,7 @@ public abstract class FileBasedView impl // FIXME: work with new configuration style //Object ext = Settings.get(StrutsConstants.STRUTS_ACTION_EXTENSION); String ext = "action"; - String actionRegex = "([A-Za-z0-9\\._\\-\\!]+\\." + ext + ")"; + String actionRegex = "([A-Za-z0-9\\._\\-!]+\\." + ext + ")"; return Pattern.compile(actionRegex); }