You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2008/08/27 18:56:27 UTC

svn commit: r689523 - in /directory/studio/trunk/valueeditors: plugin.properties plugin.xml pom.xml

Author: pamarcelot
Date: Wed Aug 27 09:56:26 2008
New Revision: 689523

URL: http://svn.apache.org/viewvc?rev=689523&view=rev
Log:
Part of a fix for DIRSTUDIO-375 (Move each plugin IDs in a plugin.properties file).

Added:
    directory/studio/trunk/valueeditors/plugin.properties
Modified:
    directory/studio/trunk/valueeditors/plugin.xml
    directory/studio/trunk/valueeditors/pom.xml

Added: directory/studio/trunk/valueeditors/plugin.properties
URL: http://svn.apache.org/viewvc/directory/studio/trunk/valueeditors/plugin.properties?rev=689523&view=auto
==============================================================================
--- directory/studio/trunk/valueeditors/plugin.properties (added)
+++ directory/studio/trunk/valueeditors/plugin.properties Wed Aug 27 09:56:26 2008
@@ -0,0 +1,34 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+ValueEditor_PasswordValueEditor_name=Password Editor
+
+ValueEditor_ImageValueEditor_name=Image Editor
+
+ValueEditor_InPlaceGeneralizedTimeValueEditor_name=In-Place Generalized Time Editor
+
+ValueEditor_ObjectClassValueEditor_name=Object Class Editor
+
+ValueEditor_DnValueEditor_name=DN Editor
+
+ValueEditor_AddressValueEditor_name=Address Editor
+
+ValueEditor_IntegerValueEditor_name=Integer Editor
+
+ValueEditor_AdministrativeRoleValueEditor_name=Administrative Role Editor
+
+ValueEditor_InPlaceOidValueEditor_name=OID Editor
\ No newline at end of file

Modified: directory/studio/trunk/valueeditors/plugin.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/valueeditors/plugin.xml?rev=689523&r1=689522&r2=689523&view=diff
==============================================================================
--- directory/studio/trunk/valueeditors/plugin.xml (original)
+++ directory/studio/trunk/valueeditors/plugin.xml Wed Aug 27 09:56:26 2008
@@ -6,55 +6,55 @@
     <valueEditor
           class="org.apache.directory.studio.valueeditors.password.PasswordValueEditor"
           icon="resources/icons/passwordeditor.gif"
-          name="Password Editor">
+          name="%ValueEditor_PasswordValueEditor_name">
        <attribute attributeType="userPassword"/>
     </valueEditor>
     <valueEditor
           class="org.apache.directory.studio.valueeditors.image.ImageValueEditor"
           icon="resources/icons/imageeditor.gif"
-          name="Image Editor">
+          name="%ValueEditor_ImageValueEditor_name">
        <syntax syntaxOID="1.3.6.1.4.1.1466.115.121.1.28"/>
     </valueEditor>
     <valueEditor
           class="org.apache.directory.studio.valueeditors.time.InPlaceGeneralizedTimeValueEditor"
           icon="resources/icons/generalizedtimeeditor.gif"
-          name="In-Place Generalized Time Editor">
+          name="%ValueEditor_InPlaceGeneralizedTimeValueEditor_name">
        <syntax syntaxOID="1.3.6.1.4.1.1466.115.121.1.24"/>
     </valueEditor>
     <valueEditor
           class="org.apache.directory.studio.valueeditors.objectclass.ObjectClassValueEditor"
           icon="resources/icons/objectclasseditor.png"
-          name="Object Class Editor">
+          name="%ValueEditor_ObjectClassValueEditor_name">
        <attribute attributeType="objectClass"/>
     </valueEditor>
     <valueEditor
           class="org.apache.directory.studio.valueeditors.dn.DnValueEditor"
           icon="resources/icons/dneditor.gif"
-          name="DN Editor">
+          name="%ValueEditor_DnValueEditor_name">
        <syntax syntaxOID="1.3.6.1.4.1.1466.115.121.1.12"/>
     </valueEditor>
     <valueEditor
           class="org.apache.directory.studio.valueeditors.address.AddressValueEditor"
           icon="resources/icons/addresseditor.gif"
-          name="Address Editor">
+          name="%ValueEditor_AddressValueEditor_name">
        <syntax syntaxOID="1.3.6.1.4.1.1466.115.121.1.41"/>
     </valueEditor>
     <valueEditor
           class="org.apache.directory.studio.valueeditors.integer.IntegerValueEditor"
           icon="resources/icons/integereditor.gif"
-          name="Integer Editor">
+          name="%ValueEditor_IntegerValueEditor_name">
        <syntax syntaxOID="1.3.6.1.4.1.1466.115.121.1.27"/>
     </valueEditor>
     <valueEditor
           class="org.apache.directory.studio.valueeditors.administrativerole.AdministrativeRoleValueEditor"
           icon="resources/icons/administrativeroleeditor.gif"
-          name="Administrative Role Editor">
+          name="%ValueEditor_AdministrativeRoleValueEditor_name">
        <attribute attributeType="administrativeRole"/>
     </valueEditor>
     <valueEditor
           class="org.apache.directory.studio.valueeditors.oid.InPlaceOidValueEditor"
           icon="resources/icons/oideditor.gif"
-          name="OID Editor">
+          name="%ValueEditor_InPlaceOidValueEditor_name">
        <syntax
              syntaxOID="1.3.6.1.4.1.1466.115.121.1.38">
        </syntax>

Modified: directory/studio/trunk/valueeditors/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/valueeditors/pom.xml?rev=689523&r1=689522&r2=689523&view=diff
==============================================================================
--- directory/studio/trunk/valueeditors/pom.xml (original)
+++ directory/studio/trunk/valueeditors/pom.xml Wed Aug 27 09:56:26 2008
@@ -39,6 +39,7 @@
       <resource>
         <directory>.</directory>
         <includes>
+          <include>plugin.properties</include>
           <include>plugin.xml</include>
         </includes>
       </resource>