Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 66622 invoked from network); 23 Jul 2007 14:09:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Jul 2007 14:09:40 -0000 Received: (qmail 57624 invoked by uid 500); 23 Jul 2007 14:09:41 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 57588 invoked by uid 500); 23 Jul 2007 14:09:41 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 57577 invoked by uid 99); 23 Jul 2007 14:09:41 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Jul 2007 07:09:41 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Jul 2007 07:09:38 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 620F01A981A; Mon, 23 Jul 2007 07:09:18 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r558734 - /directory/studio/trunk/studio-apacheds-schemaeditor/src/main/java/org/apache/directory/studio/apacheds/schemaeditor/view/editors/schema/SchemaEditorOverviewPage.java Date: Mon, 23 Jul 2007 14:09:18 -0000 To: commits@directory.apache.org From: pamarcelot@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070723140918.620F01A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pamarcelot Date: Mon Jul 23 07:09:17 2007 New Revision: 558734 URL: http://svn.apache.org/viewvc?view=rev&rev=558734 Log: Fixed typo problems. Modified: directory/studio/trunk/studio-apacheds-schemaeditor/src/main/java/org/apache/directory/studio/apacheds/schemaeditor/view/editors/schema/SchemaEditorOverviewPage.java Modified: directory/studio/trunk/studio-apacheds-schemaeditor/src/main/java/org/apache/directory/studio/apacheds/schemaeditor/view/editors/schema/SchemaEditorOverviewPage.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/studio-apacheds-schemaeditor/src/main/java/org/apache/directory/studio/apacheds/schemaeditor/view/editors/schema/SchemaEditorOverviewPage.java?view=diff&rev=558734&r1=558733&r2=558734 ============================================================================== --- directory/studio/trunk/studio-apacheds-schemaeditor/src/main/java/org/apache/directory/studio/apacheds/schemaeditor/view/editors/schema/SchemaEditorOverviewPage.java (original) +++ directory/studio/trunk/studio-apacheds-schemaeditor/src/main/java/org/apache/directory/studio/apacheds/schemaeditor/view/editors/schema/SchemaEditorOverviewPage.java Mon Jul 23 07:09:17 2007 @@ -285,8 +285,8 @@ // Attribute Types Section Section attributeTypesSection = toolkit.createSection( parent, Section.DESCRIPTION | Section.EXPANDED | Section.TITLE_BAR ); - attributeTypesSection.setDescription( "The schema" + schema.getName() - + "contains the following attribute types." ); + attributeTypesSection.setDescription( "The schema '" + schema.getName() + + "' contains the following attribute types." ); attributeTypesSection.setText( "Attribute Types" ); // Creating the layout of the section @@ -316,8 +316,8 @@ // Attribute Types Section Section objectClassesSection = toolkit.createSection( parent, Section.DESCRIPTION | Section.EXPANDED | Section.TITLE_BAR ); - objectClassesSection - .setDescription( "The_schema" + schema.getName() + "contains the following object classes." ); + objectClassesSection.setDescription( "The schema '" + schema.getName() + + "' contains the following object classes." ); objectClassesSection.setText( "Object Classes" ); // Creating the layout of the section