Return-Path: Delivered-To: apmail-jackrabbit-commits-archive@www.apache.org Received: (qmail 21634 invoked from network); 11 Mar 2011 15:00:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 11 Mar 2011 15:00:26 -0000 Received: (qmail 24863 invoked by uid 500); 11 Mar 2011 15:00:26 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 24804 invoked by uid 500); 11 Mar 2011 15:00:26 -0000 Mailing-List: contact commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list commits@jackrabbit.apache.org Received: (qmail 24797 invoked by uid 99); 11 Mar 2011 15:00:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Mar 2011 15:00:26 +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; Fri, 11 Mar 2011 15:00:24 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A0D662388A66; Fri, 11 Mar 2011 15:00:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1080591 - /jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java Date: Fri, 11 Mar 2011 15:00:00 -0000 To: commits@jackrabbit.apache.org From: jukka@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110311150000.A0D662388A66@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jukka Date: Fri Mar 11 15:00:00 2011 New Revision: 1080591 URL: http://svn.apache.org/viewvc?rev=1080591&view=rev Log: Use ASCII characters in javadocs Modified: jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java Modified: jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java?rev=1080591&r1=1080590&r2=1080591&view=diff ============================================================================== --- jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java (original) +++ jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java Fri Mar 11 15:00:00 2011 @@ -120,9 +120,9 @@ public interface QueryBuilder { /** * Create a condition which holds iff the name of the {@link Authorizable} * matches a pattern. - * The percent character Ô%Õ represents any string of zero or more characters and the - * underscore character Ô_Õ represents any single character. Any literal use of these characters - * and the backslash character Ô\Õ must be escaped with a backslash character. + * The percent character "%" represents any string of zero or more characters and the + * underscore character "_" represents any single character. Any literal use of these characters + * and the backslash character "\" must be escaped with a backslash character. * The pattern is matched against the {@link Authorizable#getID() id} and the * {@link Authorizable#getPrincipal() principal}. * @@ -224,9 +224,9 @@ public interface QueryBuilder { /** * Create a condition which holds iff the node of an {@link Authorizable} has a * property at relPath which matches the pattern in pattern. - * The percent character Ô%Õ represents any string of zero or more characters and the - * underscore character Ô_Õ represents any single character. Any literal use of these characters - * and the backslash character Ô\Õ must be escaped with a backslash character. + * The percent character "%" represents any string of zero or more characters and the + * underscore character "_" represents any single character. Any literal use of these characters + * and the backslash character "\" must be escaped with a backslash character. * The format of the relPath argument is the same as in XPath: * @attributeName for an attribute on this node and * relative/path/@attributeName for an attribute of a descendant node.