<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>dev@directory.apache.org Archives</title>
<link rel="self" href="http://mail-archives.apache.org/mod_mbox/directory-dev/?format=atom"/>
<link href="http://mail-archives.apache.org/mod_mbox/directory-dev/"/>
<id>http://mail-archives.apache.org/mod_mbox/directory-dev/</id>
<updated>2009-12-05T18:26:05Z</updated>
<entry>
<title>[jira] Commented: (DIRSERVER-1433) Add tests for every methods in SchemaManager</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c815105810.1259949621873.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c815105810-1259949621873-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T18:00:21Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/DIRSERVER-1433?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12786036#action_12786036
] 

Emmanuel Lecharny commented on DIRSERVER-1433:
----------------------------------------------

Tests added for :
boolean add( SchemaObject schemaObject ) throws Exception  (AttributeType only)
boolean load( String... schemas ) throws Exception 

Should be removed :
    boolean loadWithDeps( Schema... schemas ) throws Exception
    boolean loadWithDeps( String... schemas ) throws Exception


&gt; Add tests for every methods in SchemaManager
&gt; --------------------------------------------
&gt;
&gt;                 Key: DIRSERVER-1433
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1433
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Test
&gt;    Affects Versions: 2.0.0-RC1
&gt;            Reporter: Emmanuel Lecharny
&gt;            Priority: Critical
&gt;             Fix For: 2.0.0-RC1
&gt;
&gt;
&gt; We have to write tests for each of the SchemaManager method. The following list are all
the methods we want to have some test for, assuming that the add() method has already some
existing tests. The 'T' in from of a method denotates tat this method has some tests.
&gt; Server API :
&gt;     boolean load( Schema... schemas ) throws Exception
&gt;     boolean load( String... schemas ) throws Exception
&gt;     boolean loadWithDeps( Schema... schemas ) throws Exception
&gt;     boolean loadWithDeps( String... schemas ) throws Exception
&gt;     boolean loadDisabled( Schema... schemas ) throws Exception
&gt;     boolean loadDisabled( String... schemas ) throws Exception
&gt;     boolean loadAllEnabled() throws Exception
&gt;     boolean unload( Schema... schemas )
&gt;     boolean unload( String... schemas )
&gt;     boolean enable( Schema... schemas ) throws Exception
&gt;     boolean enable( String... schemas ) throws Exception
&gt;     boolean disable( Schema... schemas )
&gt;     boolean disable( String... schemas )
&gt; Studio API :
&gt;     boolean loadRelaxed( Schema... schemas ) throws Exception
&gt;     boolean loadRelaxed( String... schemas ) throws Exception
&gt;     boolean loadWithDepsRelaxed( Schema... schemas ) throws Exception
&gt;     boolean loadWithDepsRelaxed( String... schemas ) throws Exception
&gt;     boolean loadAllEnabledRelaxed() throws Exception
&gt;     boolean enableRelaxed( Schema... schemas )
&gt;     boolean enableRelaxed( String... schemas )
&gt;     boolean disabledRelaxed( Schema... schemas )
&gt;     boolean disabledRelaxed( String... schemas )
&gt;     boolean verify( Schema... schemas ) throws Exception
&gt;     boolean verify( String... schemas ) throws Exception
&gt; Utility methods :
&gt; T   boolean add( SchemaObject schemaObject ) throws Exception
&gt;     AttributeType lookupAttributeTypeRegistry( String oid ) throws NamingException
&gt;     LdapComparator&lt;?&gt; lookupComparatorRegistry( String oid ) throws NamingException
&gt;     void initialize() throws Exception
&gt;     boolean isSchemaLoaded( String schemaName )
&gt; getters/setters :
&gt;     Registries getRegistries()
&gt;     AttributeTypeRegistry getAttributeTypeRegistry()
&gt;     ComparatorRegistry getComparatorRegistry()
&gt;     DITContentRuleRegistry getDITContentRuleRegistry()
&gt;     DITStructureRuleRegistry getDITStructureRuleRegistry()
&gt;     MatchingRuleRegistry getMatchingRuleRegistry()
&gt;     MatchingRuleUseRegistry getMatchingRuleUseRegistry()
&gt;     NormalizerRegistry getNormalizerRegistry()
&gt;     NameFormRegistry getNameFormRegistry()
&gt;     ObjectClassRegistry getObjectClassRegistry()
&gt;     LdapSyntaxRegistry getLdapSyntaxRegistry()
&gt;     SyntaxCheckerRegistry getSyntaxCheckerRegistry()
&gt;     Map&lt;String, OidNormalizer&gt; getNormalizerMapping()
&gt;     void setRegistries( Registries registries )
&gt;     List&lt;Throwable&gt; getErrors()
&gt;     void setSchemaLoader( SchemaLoader schemaLoader )
&gt;     LdapDN getNamingContext()
&gt;     SchemaLoader getLoader()
&gt;     OidRegistry getOidRegistry()
&gt;     Schema getLoadedSchema( String schemaName )
&gt; Should disappear :
&gt;     public boolean swapRegistries( Registries targetRegistries ) throws NamingException
&gt;     SchemaObject unregister( SchemaObject schemaObject ) throws NamingException
&gt;     SchemaObject unregisterAttributeType( String attributeTypeOid ) throws NamingException
&gt;     SchemaObject unregisterComparator( String comparatorOid ) throws NamingException
&gt;     SchemaObject unregisterDitControlRule( String ditControlRuleOid ) throws NamingException
&gt;     SchemaObject unregisterDitStructureRule( String ditStructureRuleOid ) throws NamingException
&gt;     SchemaObject unregisterMatchingRule( String matchingRuleOid ) throws NamingException
&gt;     SchemaObject unregisterMatchingRuleUse( String matchingRuleUseOid ) throws NamingException
&gt;     SchemaObject unregisterNameForm( String nameFormOid ) throws NamingException
&gt;     SchemaObject unregisterNormalizer( String normalizerOid ) throws NamingException
&gt;     SchemaObject unregisterObjectClass( String objectClassOid ) throws NamingException
&gt;     SchemaObject unregisterLdapSyntax( String ldapSyntaxOid ) throws NamingException
&gt;     SchemaObject unregisterSyntaxChecker( String syntaxCheckerOid ) throws NamingException

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (DIRSERVER-1433) Add tests for every methods in SchemaManager</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1134417678.1259940980809.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1134417678-1259940980809-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T15:36:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Add tests for every methods in SchemaManager
--------------------------------------------

                 Key: DIRSERVER-1433
                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1433
             Project: Directory ApacheDS
          Issue Type: Test
    Affects Versions: 2.0.0-RC1
            Reporter: Emmanuel Lecharny
            Priority: Critical
             Fix For: 2.0.0-RC1


We have to write tests for each of the SchemaManager method. The following list are all the
methods we want to have some test for, assuming that the add() method has already some existing
tests. The 'T' in from of a method denotates tat this method has some tests.

Server API :
    boolean load( Schema... schemas ) throws Exception
    boolean load( String... schemas ) throws Exception
    boolean loadWithDeps( Schema... schemas ) throws Exception
    boolean loadWithDeps( String... schemas ) throws Exception
    boolean loadDisabled( Schema... schemas ) throws Exception
    boolean loadDisabled( String... schemas ) throws Exception
    boolean loadAllEnabled() throws Exception
    boolean unload( Schema... schemas )
    boolean unload( String... schemas )
    boolean enable( Schema... schemas ) throws Exception
    boolean enable( String... schemas ) throws Exception
    boolean disable( Schema... schemas )
    boolean disable( String... schemas )

Studio API :
    boolean loadRelaxed( Schema... schemas ) throws Exception
    boolean loadRelaxed( String... schemas ) throws Exception
    boolean loadWithDepsRelaxed( Schema... schemas ) throws Exception
    boolean loadWithDepsRelaxed( String... schemas ) throws Exception
    boolean loadAllEnabledRelaxed() throws Exception
    boolean enableRelaxed( Schema... schemas )
    boolean enableRelaxed( String... schemas )
    boolean disabledRelaxed( Schema... schemas )
    boolean disabledRelaxed( String... schemas )

    boolean verify( Schema... schemas ) throws Exception
    boolean verify( String... schemas ) throws Exception

Utility methods :
T   boolean add( SchemaObject schemaObject ) throws Exception
    AttributeType lookupAttributeTypeRegistry( String oid ) throws NamingException
    LdapComparator&lt;?&gt; lookupComparatorRegistry( String oid ) throws NamingException
    void initialize() throws Exception
    boolean isSchemaLoaded( String schemaName )

getters/setters :
    Registries getRegistries()
    AttributeTypeRegistry getAttributeTypeRegistry()
    ComparatorRegistry getComparatorRegistry()
    DITContentRuleRegistry getDITContentRuleRegistry()
    DITStructureRuleRegistry getDITStructureRuleRegistry()
    MatchingRuleRegistry getMatchingRuleRegistry()
    MatchingRuleUseRegistry getMatchingRuleUseRegistry()
    NormalizerRegistry getNormalizerRegistry()
    NameFormRegistry getNameFormRegistry()
    ObjectClassRegistry getObjectClassRegistry()
    LdapSyntaxRegistry getLdapSyntaxRegistry()
    SyntaxCheckerRegistry getSyntaxCheckerRegistry()
    Map&lt;String, OidNormalizer&gt; getNormalizerMapping()
    void setRegistries( Registries registries )
    List&lt;Throwable&gt; getErrors()
    void setSchemaLoader( SchemaLoader schemaLoader )
    LdapDN getNamingContext()
    SchemaLoader getLoader()
    OidRegistry getOidRegistry()
    Schema getLoadedSchema( String schemaName )

Should disappear :
    public boolean swapRegistries( Registries targetRegistries ) throws NamingException
    SchemaObject unregister( SchemaObject schemaObject ) throws NamingException
    SchemaObject unregisterAttributeType( String attributeTypeOid ) throws NamingException
    SchemaObject unregisterComparator( String comparatorOid ) throws NamingException
    SchemaObject unregisterDitControlRule( String ditControlRuleOid ) throws NamingException
    SchemaObject unregisterDitStructureRule( String ditStructureRuleOid ) throws NamingException
    SchemaObject unregisterMatchingRule( String matchingRuleOid ) throws NamingException
    SchemaObject unregisterMatchingRuleUse( String matchingRuleUseOid ) throws NamingException
    SchemaObject unregisterNameForm( String nameFormOid ) throws NamingException
    SchemaObject unregisterNormalizer( String normalizerOid ) throws NamingException
    SchemaObject unregisterObjectClass( String objectClassOid ) throws NamingException
    SchemaObject unregisterLdapSyntax( String ldapSyntaxOid ) throws NamingException
    SchemaObject unregisterSyntaxChecker( String syntaxCheckerOid ) throws NamingException


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[schema refactoring] Update</title>
<author><name>Emmanuel Lecharny &lt;elecharny@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c4B1929A0.6090503@gmail.com%3e"/>
<id>urn:uuid:%3c4B1929A0-6090503@gmail-com%3e</id>
<updated>2009-12-04T15:24:16Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi,

so I have made some progress lately. I have written unit tests on the 
schemaManager for the AttributeType schema object, and it helped me to 
fix numerous errors. I also fixed some other errors in some other tests, 
and I'm back to where I was stuck : core-integ.

That's not a bad situation though, as many cleanup has been done since 
the last time I was able to run all the tests, but I'm confident this 
time that I'm move forward to the end of this huge refactoring ... 
(uhhh, seems that I alreay said that many times ;)


</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Updated: (DIRSTUDIO-603) Error browsing/entering rfc2307 compliant host entry</title>
<author><name>&quot;Pierre-Arnaud Marcelot (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c747492552.1259939660652.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c747492552-1259939660652-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T15:14:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/DIRSTUDIO-603?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Pierre-Arnaud Marcelot updated DIRSTUDIO-603:
---------------------------------------------

    Fix Version/s: 1.5.2

&gt; Error browsing/entering rfc2307 compliant host entry
&gt; ----------------------------------------------------
&gt;
&gt;                 Key: DIRSTUDIO-603
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSTUDIO-603
&gt;             Project: Directory Studio
&gt;          Issue Type: Bug
&gt;          Components: studio-ldifeditor
&gt;    Affects Versions: 1.5.1
&gt;         Environment: Ubuntu 9.04
&gt; java version 1.6.0_0
&gt;            Reporter: Jonathan Craig
&gt;             Fix For: 1.5.2
&gt;
&gt;
&gt; A rfc2307 entry is as follows:
&gt; dn: cn=loopback+ipHostNumber=127.0.0.1,ou=Hosts,dc=mygfs,dc=com
&gt;         objectClass: ipHost
&gt;         objectClass: device
&gt;         objectClass: top
&gt;         cn: loopback
&gt;         ipHostNumber: 127.0.0.1
&gt; When I browse this group I receive the following error:
&gt; 'Read Children' has encountered a problem.
&gt; Error while reading entry
&gt;  - unexpected token: 127.0.0.1
&gt;   javax.naming.InvalidNameException: unexpected token: 127.0.0.1 [Root exception is line
1:26: unexpected token: 127.0.0.1]
&gt; 	at org.apache.directory.shared.ldap.name.ComplexLdapDnParser.parseDn(ComplexLdapDnParser.java:55)
&gt; 	at org.apache.directory.shared.ldap.name.LdapDnParser.parseInternal(LdapDnParser.java:97)
&gt; 	at org.apache.directory.shared.ldap.name.LdapDN.&lt;init&gt;(LdapDN.java:205)
&gt; 	at org.apache.directory.studio.ldapbrowser.core.utils.JNDIUtils.getDn(JNDIUtils.java:48)
&gt; 	at org.apache.directory.studio.ldapbrowser.core.jobs.SearchRunnable.searchAndUpdateModel(SearchRunnable.java:331)
&gt; 	at org.apache.directory.studio.ldapbrowser.core.jobs.InitializeChildrenRunnable.executeSearch(InitializeChildrenRunnable.java:361)
&gt; 	at org.apache.directory.studio.ldapbrowser.core.jobs.InitializeChildrenRunnable.initializeChildren(InitializeChildrenRunnable.java:212)
&gt; 	at org.apache.directory.studio.ldapbrowser.core.jobs.InitializeChildrenRunnable.run(InitializeChildrenRunnable.java:171)
&gt; 	at org.apache.directory.studio.connection.core.jobs.StudioConnectionJob.run(StudioConnectionJob.java:114)
&gt; 	at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
&gt; Caused by: line 1:26: unexpected token: 127.0.0.1
&gt; 	at org.apache.directory.shared.ldap.name.AntlrDnParser.attributeValue(AntlrDnParser.java:550)
&gt; 	at org.apache.directory.shared.ldap.name.AntlrDnParser.attributeTypeAndValue(AntlrDnParser.java:405)
&gt; 	at org.apache.directory.shared.ldap.name.AntlrDnParser.relativeDistinguishedName(AntlrDnParser.java:252)
&gt; 	at org.apache.directory.shared.ldap.name.AntlrDnParser.relativeDistinguishedNames(AntlrDnParser.java:307)
&gt; 	at org.apache.directory.shared.ldap.name.ComplexLdapDnParser.parseDn(ComplexLdapDnParser.java:51)
&gt; 	... 9 more
&gt;   unexpected token: 127.0.0.1
&gt; When I use the "new entry from scratch" wizard I receive an "invalid RDN" during data
entry.  First I select the three object classes from above.  I then add the cn= entry.  I
then start entering the ipHostNumber and if the host number ends in ".[0-9]*" the preview
says "RDN is invalid".  If I end the ipHostNumber with a "." or ".[a-zA-Z]*" the RDN is accepted
and the entry created.  The entries that are created in this manner are viewable in the browser.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Closed: (DIRSTUDIO-601) The 'Perform Search/Search Again' button in the Search Result Editor does not work correctly</title>
<author><name>&quot;Pierre-Arnaud Marcelot (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c101968096.1259939540646.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c101968096-1259939540646-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T15:12:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/DIRSTUDIO-601?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Pierre-Arnaud Marcelot closed DIRSTUDIO-601.
--------------------------------------------

    Resolution: Fixed
      Assignee: Pierre-Arnaud Marcelot

Fixed at revision 887222.

http://svn.apache.org/viewvc?rev=887222&amp;view=rev



&gt; The 'Perform Search/Search Again' button in the Search Result Editor does not work correctly
&gt; --------------------------------------------------------------------------------------------
&gt;
&gt;                 Key: DIRSTUDIO-601
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSTUDIO-601
&gt;             Project: Directory Studio
&gt;          Issue Type: Bug
&gt;          Components: studio-ldapbrowser
&gt;    Affects Versions: 1.5.1
&gt;            Reporter: Pierre-Arnaud Marcelot
&gt;            Assignee: Pierre-Arnaud Marcelot
&gt;            Priority: Critical
&gt;             Fix For: 1.5.2
&gt;
&gt;
&gt; The 'Perform Search/Search Again' button in the Search Result Editor does not work correctly.
&gt; If I click on the 'Perform Search/Search Again' button, the search is not updated.
&gt; If the search was not yet performed, it isn't either at the end of the command.
&gt; if the search was already performed, the search results are not updated (even if entries
have changed and does not match the search anymore).

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Closed: (DIRSTUDIO-602) Unable to start an Apache DS version 1.5.5 server</title>
<author><name>&quot;Pierre-Arnaud Marcelot (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c288916245.1259939540833.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c288916245-1259939540833-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T15:12:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/DIRSTUDIO-602?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Pierre-Arnaud Marcelot closed DIRSTUDIO-602.
--------------------------------------------

    Resolution: Fixed

It should be fixed now.

&gt; Unable to start an Apache DS version 1.5.5 server
&gt; -------------------------------------------------
&gt;
&gt;                 Key: DIRSTUDIO-602
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSTUDIO-602
&gt;             Project: Directory Studio
&gt;          Issue Type: Bug
&gt;          Components: studio-apacheds
&gt;    Affects Versions: 1.5.1
&gt;            Reporter: Pierre-Arnaud Marcelot
&gt;            Assignee: Pierre-Arnaud Marcelot
&gt;            Priority: Blocker
&gt;             Fix For: 1.5.2
&gt;
&gt;
&gt; Unable to start an Apache DS version 1.5.5 server.
&gt; NPE when copying that damn apacheds-launcher library...
&gt; !ENTRY org.eclipse.ui 4 0 2009-12-03 16:32:33.271
&gt; !MESSAGE Unhandled event loop exception
&gt; !STACK 0
&gt; java.lang.NullPointerException
&gt; 	at org.apache.directory.studio.apacheds.ApacheDsPluginUtils.copyLibrary(ApacheDsPluginUtils.java:224)
&gt; 	at org.apache.directory.studio.apacheds.ApacheDsPluginUtils.verifyLibrariesFolder(ApacheDsPluginUtils.java:99)
&gt; 	at org.apache.directory.studio.apacheds.actions.RunAction.run(RunAction.java:173)
&gt; 	at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
&gt; 	at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584)
&gt; 	at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501)
&gt; 	at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:452)
&gt; 	at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
&gt; 	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1598)
&gt; 	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1622)
&gt; 	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1607)
&gt; 	at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1396)
&gt; 	at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3484)
&gt; 	at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3068)
&gt; 	at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405)
&gt; 	at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369)
&gt; 	at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221)
&gt; 	at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500)
&gt; 	at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
&gt; 	at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493)
&gt; 	at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
&gt; 	at org.apache.directory.studio.Application.start(Application.java:58)
&gt; 	at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194)
&gt; 	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
&gt; 	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
&gt; 	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368)
&gt; 	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
&gt; 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&gt; 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&gt; 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&gt; 	at java.lang.reflect.Method.invoke(Method.java:597)
&gt; 	at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559)
&gt; 	at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514)
&gt; 	at org.eclipse.equinox.launcher.Main.run(Main.java:1311)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (DIRSTUDIO-603) Error browsing/entering rfc2307 compliant host entry</title>
<author><name>&quot;Jonathan Craig (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1650683102.1259934380671.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1650683102-1259934380671-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T13:46:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Error browsing/entering rfc2307 compliant host entry
----------------------------------------------------

                 Key: DIRSTUDIO-603
                 URL: https://issues.apache.org/jira/browse/DIRSTUDIO-603
             Project: Directory Studio
          Issue Type: Bug
          Components: studio-ldifeditor
    Affects Versions: 1.5.1
         Environment: Ubuntu 9.04
java version 1.6.0_0
            Reporter: Jonathan Craig


A rfc2307 entry is as follows:

dn: cn=loopback+ipHostNumber=127.0.0.1,ou=Hosts,dc=mygfs,dc=com
        objectClass: ipHost
        objectClass: device
        objectClass: top
        cn: loopback
        ipHostNumber: 127.0.0.1

When I browse this group I receive the following error:

'Read Children' has encountered a problem.

Error while reading entry
 - unexpected token: 127.0.0.1
  javax.naming.InvalidNameException: unexpected token: 127.0.0.1 [Root exception is line 1:26:
unexpected token: 127.0.0.1]
	at org.apache.directory.shared.ldap.name.ComplexLdapDnParser.parseDn(ComplexLdapDnParser.java:55)
	at org.apache.directory.shared.ldap.name.LdapDnParser.parseInternal(LdapDnParser.java:97)
	at org.apache.directory.shared.ldap.name.LdapDN.&lt;init&gt;(LdapDN.java:205)
	at org.apache.directory.studio.ldapbrowser.core.utils.JNDIUtils.getDn(JNDIUtils.java:48)
	at org.apache.directory.studio.ldapbrowser.core.jobs.SearchRunnable.searchAndUpdateModel(SearchRunnable.java:331)
	at org.apache.directory.studio.ldapbrowser.core.jobs.InitializeChildrenRunnable.executeSearch(InitializeChildrenRunnable.java:361)
	at org.apache.directory.studio.ldapbrowser.core.jobs.InitializeChildrenRunnable.initializeChildren(InitializeChildrenRunnable.java:212)
	at org.apache.directory.studio.ldapbrowser.core.jobs.InitializeChildrenRunnable.run(InitializeChildrenRunnable.java:171)
	at org.apache.directory.studio.connection.core.jobs.StudioConnectionJob.run(StudioConnectionJob.java:114)
	at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
Caused by: line 1:26: unexpected token: 127.0.0.1
	at org.apache.directory.shared.ldap.name.AntlrDnParser.attributeValue(AntlrDnParser.java:550)
	at org.apache.directory.shared.ldap.name.AntlrDnParser.attributeTypeAndValue(AntlrDnParser.java:405)
	at org.apache.directory.shared.ldap.name.AntlrDnParser.relativeDistinguishedName(AntlrDnParser.java:252)
	at org.apache.directory.shared.ldap.name.AntlrDnParser.relativeDistinguishedNames(AntlrDnParser.java:307)
	at org.apache.directory.shared.ldap.name.ComplexLdapDnParser.parseDn(ComplexLdapDnParser.java:51)
	... 9 more

  unexpected token: 127.0.0.1

When I use the "new entry from scratch" wizard I receive an "invalid RDN" during data entry.
 First I select the three object classes from above.  I then add the cn= entry.  I then start
entering the ipHostNumber and if the host number ends in ".[0-9]*" the preview says "RDN is
invalid".  If I end the ipHostNumber with a "." or ".[a-zA-Z]*" the RDN is accepted and the
entry created.  The entries that are created in this manner are viewable in the browser.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Replacing specific per-plugin version properties by version inherited from the parent pom ?</title>
<author><name>Pierre-Arnaud Marcelot &lt;pa@marcelot.net&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c965C8800-05C8-4073-A8E5-054CA8853584@marcelot.net%3e"/>
<id>urn:uuid:%3c965C8800-05C8-4073-A8E5-054CA8853584@marcelot-net%3e</id>
<updated>2009-12-04T12:14:49Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Committed at revision 887167.

http://svn.apache.org/viewvc?rev=887167&amp;view=rev

Regards,
P-A

On 4 déc. 2009, at 08:53, Pierre-Arnaud Marcelot wrote:

&gt; Hi Felix,
&gt; 
&gt; On 3 déc. 2009, at 22:01, Felix Knecht wrote:
&gt; 
&gt;&gt; -----BEGIN PGP SIGNED MESSAGE-----
&gt;&gt; Hash: SHA1
&gt;&gt; 
&gt;&gt; Pierre-Arnaud Marcelot schrieb:
&gt;&gt;&gt; Hi all,
&gt;&gt;&gt; 
&gt;&gt;&gt; I'd like to propose the removal of our specific per-plugin version to use the
inherited parent pom version instead.
&gt;&gt; 
&gt;&gt; That was a requirement at the time I created the maven build - but I've
&gt;&gt; never really understood, why they might have a different version ...
&gt; 
&gt; That's exactly what I remembered when writing the first mail actually.
&gt; 
&gt; The idea was to recreate the build we had with Ant+Ivy and in case of a small update
only distribute the plugins that got modified since the last version.
&gt; 
&gt; But with our multi-modules maven project and the use of the release plugin, this is clearly
something we can't really do.
&gt; 
&gt; I think at the time I didn't know Maven that well, especially the automated releases
part.
&gt; 
&gt; My bad... :(
&gt; 
&gt; 
&gt;&gt; Remove them :-)
&gt; 
&gt; Sure.
&gt; I'm almost done and ready to commit.
&gt; 
&gt; Thanks,
&gt; Pierre-Arnaud



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (DIRSERVER-1432) WARN: Null LdapSession given to cleanUpSession.</title>
<author><name>&quot;A. M. (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c255935399.1259928620698.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c255935399-1259928620698-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T12:10:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
WARN: Null LdapSession given to cleanUpSession.
-----------------------------------------------

                 Key: DIRSERVER-1432
                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1432
             Project: Directory ApacheDS
          Issue Type: Bug
    Affects Versions: 1.5.5
         Environment: Ubuntu 9.10 and Debian Lenny
            Reporter: A. M.
            Priority: Minor


When searching using ldapsearch the following message appears in the log:

[15:09:06] WARN [org.apache.directory.server.ldap.LdapProtocolHandler] - Null LdapSession
given to cleanUpSession.

Sometimes also this:

[15:09:14] WARN [org.apache.directory.server.ldap.LdapProtocolHandler] - Unexpected exception
forcing session to close: sending disconnect notice to client.
java.lang.NullPointerException
	at org.apache.directory.server.ldap.handlers.LdapRequestHandler.handleMessage(LdapRequestHandler.java:129)
	at org.apache.directory.server.ldap.handlers.LdapRequestHandler.handleMessage(LdapRequestHandler.java:56)
	at org.apache.mina.handler.demux.DemuxingIoHandler.messageReceived(DemuxingIoHandler.java:232)
	at org.apache.directory.server.ldap.LdapProtocolHandler.messageReceived(LdapProtocolHandler.java:194)
	at org.apache.mina.core.filterchain.DefaultIoFilterChain$TailFilter.messageReceived(DefaultIoFilterChain.java:721)
	at org.apache.mina.core.filterchain.DefaultIoFilterChain.callNextMessageReceived(DefaultIoFilterChain.java:433)
	at org.apache.mina.core.filterchain.DefaultIoFilterChain.access$1200(DefaultIoFilterChain.java:47)
	at org.apache.mina.core.filterchain.DefaultIoFilterChain$EntryImpl$1.messageReceived(DefaultIoFilterChain.java:801)
	at org.apache.mina.core.filterchain.IoFilterEvent.fire(IoFilterEvent.java:71)
	at org.apache.mina.core.session.IoEvent.run(IoEvent.java:63)
	at org.apache.mina.filter.executor.UnorderedThreadPoolExecutor$Worker.runTask(UnorderedThreadPoolExecutor.java:480)
	at org.apache.mina.filter.executor.UnorderedThreadPoolExecutor$Worker.run(UnorderedThreadPoolExecutor.java:434)
	at java.lang.Thread.run(Thread.java:619)
[15:09:14] WARN [org.apache.directory.server.ldap.LdapProtocolHandler] - Null LdapSession
given to cleanUpSession.




-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Closed: (DIRSERVER-1430) The GlobalOid registry is not updated (or rebuilt) when loading a ful schema</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1546529190.1259922140816.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1546529190-1259922140816-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T10:22:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/DIRSERVER-1430?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Emmanuel Lecharny closed DIRSERVER-1430.
----------------------------------------


fixed

&gt; The GlobalOid registry is not updated (or rebuilt) when loading a ful schema
&gt; ----------------------------------------------------------------------------
&gt;
&gt;                 Key: DIRSERVER-1430
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1430
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Bug
&gt;            Reporter: Emmanuel Lecharny
&gt;            Assignee: Emmanuel Lecharny
&gt;            Priority: Blocker
&gt;             Fix For: 2.0.0-RC1
&gt;
&gt;
&gt; The globalOidRegistry is not updated when loading a full schema

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (DIRSERVER-1430) The GlobalOid registry is not updated (or rebuilt) when loading a ful schema</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1725791777.1259921360615.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1725791777-1259921360615-JavaMail-jira@brutus%3e</id>
<updated>2009-12-04T10:09:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/DIRSERVER-1430?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Emmanuel Lecharny resolved DIRSERVER-1430.
------------------------------------------

    Resolution: Fixed

The Registries was not cloned correctly.

Fixed with http://svn.apache.org/viewvc?rev=887004&amp;view=rev

&gt; The GlobalOid registry is not updated (or rebuilt) when loading a ful schema
&gt; ----------------------------------------------------------------------------
&gt;
&gt;                 Key: DIRSERVER-1430
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1430
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Bug
&gt;            Reporter: Emmanuel Lecharny
&gt;            Assignee: Emmanuel Lecharny
&gt;            Priority: Blocker
&gt;             Fix For: 2.0.0-RC1
&gt;
&gt;
&gt; The globalOidRegistry is not updated when loading a full schema

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Replacing specific per-plugin version properties by version inherited from the parent pom ?</title>
<author><name>Pierre-Arnaud Marcelot &lt;pa@marcelot.net&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3cD898021E-B304-48A5-89E8-3A9968F87341@marcelot.net%3e"/>
<id>urn:uuid:%3cD898021E-B304-48A5-89E8-3A9968F87341@marcelot-net%3e</id>
<updated>2009-12-04T07:53:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi Felix,

On 3 déc. 2009, at 22:01, Felix Knecht wrote:

&gt; -----BEGIN PGP SIGNED MESSAGE-----
&gt; Hash: SHA1
&gt; 
&gt; Pierre-Arnaud Marcelot schrieb:
&gt;&gt; Hi all,
&gt;&gt; 
&gt;&gt; I'd like to propose the removal of our specific per-plugin version to use the inherited
parent pom version instead.
&gt; 
&gt; That was a requirement at the time I created the maven build - but I've
&gt; never really understood, why they might have a different version ...

That's exactly what I remembered when writing the first mail actually.

The idea was to recreate the build we had with Ant+Ivy and in case of a small update only
distribute the plugins that got modified since the last version.

But with our multi-modules maven project and the use of the release plugin, this is clearly
something we can't really do.

I think at the time I didn't know Maven that well, especially the automated releases part.

My bad... :(


&gt; Remove them :-)

Sure.
I'm almost done and ready to commit.

Thanks,
Pierre-Arnaud

</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (DIRSERVER-1431) Install ApachdDS on AIX 5.3</title>
<author><name>&quot;Adam J (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c285670526.1259880620856.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c285670526-1259880620856-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T22:50:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/DIRSERVER-1431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785596#action_12785596
] 

Adam J commented on DIRSERVER-1431:
-----------------------------------

What is the correct way to install ApacheDS?



&gt; Install ApachdDS on AIX 5.3
&gt; ---------------------------
&gt;
&gt;                 Key: DIRSERVER-1431
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1431
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Bug
&gt;    Affects Versions: 1.5.5
&gt;         Environment: AIX 5.3 system model 9133-55A
&gt;            Reporter: Adam J
&gt;   Original Estimate: 24h
&gt;  Remaining Estimate: 24h
&gt;
&gt; I am trying to install ApacheDS. I download the tar file and here is the output of my
steps I have taken:
&gt; # pwd
&gt; /tmp/apachedirectory
&gt; # ls
&gt; apacheds-1.5.5.tar
&gt; # tar -xf apacheds-1.5.5.tar
&gt; # ls
&gt; apacheds-1.5.5.tar  apacheds_1.5.5
&gt; # cd apacheds_1.5.5
&gt; # ls
&gt; LICENSE       apacheds.bat  bin           cpappend.bat  lib
&gt; NOTICE        apacheds.sh   conf          feather.ico   var 
&gt; # ./apacheds.sh
&gt;            _                     _          ____  ____   
&gt;           / \   _ __    ___  ___| |__   ___|  _ \/ ___|  
&gt;          / _ \ | '_ \ / _` |/ __| '_ \ / _ \ | | \___ \  
&gt;         / ___ \| |_) | (_| | (__| | | |  __/ |_| |___) | 
&gt;        /_/   \_\ .__/ \__,_|\___|_| |_|\___|____/|____/  
&gt;                |_|                                       
&gt; [14:50:47] WARN [org.apache.directory.server.schema.registries.DefaultOidRegistry] -
OID for name 'krb5PrincipalName' was not found within the OID registry
&gt; [14:50:49] ERROR [org.apache.directory.server.schema.registries.DefaultAttributeTypeRegistry]
- attributeType w/ OID 2.5.4.16 not registered!
&gt; *** It just hangs here after this error, and does not proceed to execute the install.
&gt; Any suggestions on what I can do to resolve this issue?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (DIRSERVER-1431) Install ApachdDS on AIX 5.3</title>
<author><name>&quot;Adam J (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c937464980.1259880620872.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c937464980-1259880620872-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T22:50:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/DIRSERVER-1431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785597#action_12785597
] 

Adam J commented on DIRSERVER-1431:
-----------------------------------

So there is no installation process? Is it similar to tomcat install? Is there 
a way to have it up at all times, without having on hanging through terminal?



&gt; Install ApachdDS on AIX 5.3
&gt; ---------------------------
&gt;
&gt;                 Key: DIRSERVER-1431
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1431
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Bug
&gt;    Affects Versions: 1.5.5
&gt;         Environment: AIX 5.3 system model 9133-55A
&gt;            Reporter: Adam J
&gt;   Original Estimate: 24h
&gt;  Remaining Estimate: 24h
&gt;
&gt; I am trying to install ApacheDS. I download the tar file and here is the output of my
steps I have taken:
&gt; # pwd
&gt; /tmp/apachedirectory
&gt; # ls
&gt; apacheds-1.5.5.tar
&gt; # tar -xf apacheds-1.5.5.tar
&gt; # ls
&gt; apacheds-1.5.5.tar  apacheds_1.5.5
&gt; # cd apacheds_1.5.5
&gt; # ls
&gt; LICENSE       apacheds.bat  bin           cpappend.bat  lib
&gt; NOTICE        apacheds.sh   conf          feather.ico   var 
&gt; # ./apacheds.sh
&gt;            _                     _          ____  ____   
&gt;           / \   _ __    ___  ___| |__   ___|  _ \/ ___|  
&gt;          / _ \ | '_ \ / _` |/ __| '_ \ / _ \ | | \___ \  
&gt;         / ___ \| |_) | (_| | (__| | | |  __/ |_| |___) | 
&gt;        /_/   \_\ .__/ \__,_|\___|_| |_|\___|____/|____/  
&gt;                |_|                                       
&gt; [14:50:47] WARN [org.apache.directory.server.schema.registries.DefaultOidRegistry] -
OID for name 'krb5PrincipalName' was not found within the OID registry
&gt; [14:50:49] ERROR [org.apache.directory.server.schema.registries.DefaultAttributeTypeRegistry]
- attributeType w/ OID 2.5.4.16 not registered!
&gt; *** It just hangs here after this error, and does not proceed to execute the install.
&gt; Any suggestions on what I can do to resolve this issue?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (DIRSERVER-1431) Install ApachdDS on AIX 5.3</title>
<author><name>&quot;Pierre-Arnaud Marcelot (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c283447880.1259880140667.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c283447880-1259880140667-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T22:42:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/DIRSERVER-1431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785591#action_12785591
] 

Pierre-Arnaud Marcelot commented on DIRSERVER-1431:
---------------------------------------------------

Actually the tar.gz and zip files are not installers but simple archive packages.

What you've done by launching the 'apacheds.sh' script is launching the server...
That's it.
It should be running on port 10389.

&gt; Install ApachdDS on AIX 5.3
&gt; ---------------------------
&gt;
&gt;                 Key: DIRSERVER-1431
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1431
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Bug
&gt;    Affects Versions: 1.5.5
&gt;         Environment: AIX 5.3 system model 9133-55A
&gt;            Reporter: Adam J
&gt;   Original Estimate: 24h
&gt;  Remaining Estimate: 24h
&gt;
&gt; I am trying to install ApacheDS. I download the tar file and here is the output of my
steps I have taken:
&gt; # pwd
&gt; /tmp/apachedirectory
&gt; # ls
&gt; apacheds-1.5.5.tar
&gt; # tar -xf apacheds-1.5.5.tar
&gt; # ls
&gt; apacheds-1.5.5.tar  apacheds_1.5.5
&gt; # cd apacheds_1.5.5
&gt; # ls
&gt; LICENSE       apacheds.bat  bin           cpappend.bat  lib
&gt; NOTICE        apacheds.sh   conf          feather.ico   var 
&gt; # ./apacheds.sh
&gt;            _                     _          ____  ____   
&gt;           / \   _ __    ___  ___| |__   ___|  _ \/ ___|  
&gt;          / _ \ | '_ \ / _` |/ __| '_ \ / _ \ | | \___ \  
&gt;         / ___ \| |_) | (_| | (__| | | |  __/ |_| |___) | 
&gt;        /_/   \_\ .__/ \__,_|\___|_| |_|\___|____/|____/  
&gt;                |_|                                       
&gt; [14:50:47] WARN [org.apache.directory.server.schema.registries.DefaultOidRegistry] -
OID for name 'krb5PrincipalName' was not found within the OID registry
&gt; [14:50:49] ERROR [org.apache.directory.server.schema.registries.DefaultAttributeTypeRegistry]
- attributeType w/ OID 2.5.4.16 not registered!
&gt; *** It just hangs here after this error, and does not proceed to execute the install.
&gt; Any suggestions on what I can do to resolve this issue?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (DIRSERVER-1431) Install ApachdDS on AIX 5.3</title>
<author><name>&quot;Stefan Seelmann (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1518268426.1259879901021.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1518268426-1259879901021-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T22:38:21Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/DIRSERVER-1431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785587#action_12785587
] 

Stefan Seelmann commented on DIRSERVER-1431:
--------------------------------------------

Hi Adam,

this "error" message is printed by ApacheDS 1.5.5, but it is not really an error, we just
used the wrong log level. Please ignore those two lines.

Regarding hang: in your case - as you use the tar archive - there is no installer. The script
"./apacheds" just starts up ApacheDS. So ApacheDS should be up an running and listening on
port 10389 :-)

&gt; Install ApachdDS on AIX 5.3
&gt; ---------------------------
&gt;
&gt;                 Key: DIRSERVER-1431
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1431
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Bug
&gt;    Affects Versions: 1.5.5
&gt;         Environment: AIX 5.3 system model 9133-55A
&gt;            Reporter: Adam J
&gt;   Original Estimate: 24h
&gt;  Remaining Estimate: 24h
&gt;
&gt; I am trying to install ApacheDS. I download the tar file and here is the output of my
steps I have taken:
&gt; # pwd
&gt; /tmp/apachedirectory
&gt; # ls
&gt; apacheds-1.5.5.tar
&gt; # tar -xf apacheds-1.5.5.tar
&gt; # ls
&gt; apacheds-1.5.5.tar  apacheds_1.5.5
&gt; # cd apacheds_1.5.5
&gt; # ls
&gt; LICENSE       apacheds.bat  bin           cpappend.bat  lib
&gt; NOTICE        apacheds.sh   conf          feather.ico   var 
&gt; # ./apacheds.sh
&gt;            _                     _          ____  ____   
&gt;           / \   _ __    ___  ___| |__   ___|  _ \/ ___|  
&gt;          / _ \ | '_ \ / _` |/ __| '_ \ / _ \ | | \___ \  
&gt;         / ___ \| |_) | (_| | (__| | | |  __/ |_| |___) | 
&gt;        /_/   \_\ .__/ \__,_|\___|_| |_|\___|____/|____/  
&gt;                |_|                                       
&gt; [14:50:47] WARN [org.apache.directory.server.schema.registries.DefaultOidRegistry] -
OID for name 'krb5PrincipalName' was not found within the OID registry
&gt; [14:50:49] ERROR [org.apache.directory.server.schema.registries.DefaultAttributeTypeRegistry]
- attributeType w/ OID 2.5.4.16 not registered!
&gt; *** It just hangs here after this error, and does not proceed to execute the install.
&gt; Any suggestions on what I can do to resolve this issue?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (DIRSERVER-1431) Install ApachdDS on AIX 5.3</title>
<author><name>&quot;Adam J (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c504350692.1259879660887.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c504350692-1259879660887-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T22:34:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/DIRSERVER-1431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785583#action_12785583
] 

Adam J commented on DIRSERVER-1431:
-----------------------------------

Hi Emmanuel,

Ok, thought that error would help, first time I install ApacheDS.

# java -version
java version "1.6.0"
Java(TM) SE Runtime Environment (build pap3260sr5-20090529_04(SR5))
IBM J9 VM (build 2.4, J2RE 1.6.0 IBM J9 2.4 AIX ppc-32 
jvmap3260sr5-20090519_35743 (JIT enabled, AOT enabled)
J9VM - 20090519_035743_bHdSMr
JIT  - r9_20090518_2017
GC   - 20090417_AA)
JCL  - 20090529_01
#



&gt; Install ApachdDS on AIX 5.3
&gt; ---------------------------
&gt;
&gt;                 Key: DIRSERVER-1431
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1431
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Bug
&gt;    Affects Versions: 1.5.5
&gt;         Environment: AIX 5.3 system model 9133-55A
&gt;            Reporter: Adam J
&gt;   Original Estimate: 24h
&gt;  Remaining Estimate: 24h
&gt;
&gt; I am trying to install ApacheDS. I download the tar file and here is the output of my
steps I have taken:
&gt; # pwd
&gt; /tmp/apachedirectory
&gt; # ls
&gt; apacheds-1.5.5.tar
&gt; # tar -xf apacheds-1.5.5.tar
&gt; # ls
&gt; apacheds-1.5.5.tar  apacheds_1.5.5
&gt; # cd apacheds_1.5.5
&gt; # ls
&gt; LICENSE       apacheds.bat  bin           cpappend.bat  lib
&gt; NOTICE        apacheds.sh   conf          feather.ico   var 
&gt; # ./apacheds.sh
&gt;            _                     _          ____  ____   
&gt;           / \   _ __    ___  ___| |__   ___|  _ \/ ___|  
&gt;          / _ \ | '_ \ / _` |/ __| '_ \ / _ \ | | \___ \  
&gt;         / ___ \| |_) | (_| | (__| | | |  __/ |_| |___) | 
&gt;        /_/   \_\ .__/ \__,_|\___|_| |_|\___|____/|____/  
&gt;                |_|                                       
&gt; [14:50:47] WARN [org.apache.directory.server.schema.registries.DefaultOidRegistry] -
OID for name 'krb5PrincipalName' was not found within the OID registry
&gt; [14:50:49] ERROR [org.apache.directory.server.schema.registries.DefaultAttributeTypeRegistry]
- attributeType w/ OID 2.5.4.16 not registered!
&gt; *** It just hangs here after this error, and does not proceed to execute the install.
&gt; Any suggestions on what I can do to resolve this issue?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: [JDBM] Page size</title>
<author><name>Emmanuel Lecharny &lt;elecharny@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c4B183C90.3000906@gmail.com%3e"/>
<id>urn:uuid:%3c4B183C90-3000906@gmail-com%3e</id>
<updated>2009-12-03T22:32:48Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Ersin ER a Ã©crit :
&gt; Hi,
&gt;
&gt; As far as I understand size of a page in our JDBM implementation is
&gt; specified in terms of number of entries, not in bytes. So we're not using
&gt; fixed length pages. In such a case how can we control the amount of memory
&gt; that JDBM uses? And from both theoretical and practical perspective, how
&gt; does variable length pages affect performance? (Or am I mistaken about
&gt; this?)
&gt;   

I have no idea. This is definitively something we have to dig if we want 
to be serious about tunning, in any case. Right now, we focused on 
getting the server woring and be compliant...
&gt; Greetings,
&gt;
&gt;   



</pre>
</div>
</content>
</entry>
<entry>
<title>[JDBM] Page size</title>
<author><name>Ersin ER &lt;ersin.er@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3ca1b4a6610912031428m55367155kd32963556c7d8e75@mail.gmail.com%3e"/>
<id>urn:uuid:%3ca1b4a6610912031428m55367155kd32963556c7d8e75@mail-gmail-com%3e</id>
<updated>2009-12-03T22:28:41Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi,

As far as I understand size of a page in our JDBM implementation is
specified in terms of number of entries, not in bytes. So we're not using
fixed length pages. In such a case how can we control the amount of memory
that JDBM uses? And from both theoretical and practical perspective, how
does variable length pages affect performance? (Or am I mistaken about
this?)

Greetings,

-- 
Ersin ER
http://www.ersiner.net


</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (DIRSERVER-1431) Install ApachdDS on AIX 5.3</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1792563328.1259878221001.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1792563328-1259878221001-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T22:10:21Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/DIRSERVER-1431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785568#action_12785568
] 

Emmanuel Lecharny commented on DIRSERVER-1431:
----------------------------------------------

Those errors are irrelevant at this point.


Which JVM are you using on your machine ?

&gt; Install ApachdDS on AIX 5.3
&gt; ---------------------------
&gt;
&gt;                 Key: DIRSERVER-1431
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1431
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Bug
&gt;    Affects Versions: 1.5.5
&gt;         Environment: AIX 5.3 system model 9133-55A
&gt;            Reporter: Adam J
&gt;   Original Estimate: 24h
&gt;  Remaining Estimate: 24h
&gt;
&gt; I am trying to install ApacheDS. I download the tar file and here is the output of my
steps I have taken:
&gt; # pwd
&gt; /tmp/apachedirectory
&gt; # ls
&gt; apacheds-1.5.5.tar
&gt; # tar -xf apacheds-1.5.5.tar
&gt; # ls
&gt; apacheds-1.5.5.tar  apacheds_1.5.5
&gt; # cd apacheds_1.5.5
&gt; # ls
&gt; LICENSE       apacheds.bat  bin           cpappend.bat  lib
&gt; NOTICE        apacheds.sh   conf          feather.ico   var 
&gt; # ./apacheds.sh
&gt;            _                     _          ____  ____   
&gt;           / \   _ __    ___  ___| |__   ___|  _ \/ ___|  
&gt;          / _ \ | '_ \ / _` |/ __| '_ \ / _ \ | | \___ \  
&gt;         / ___ \| |_) | (_| | (__| | | |  __/ |_| |___) | 
&gt;        /_/   \_\ .__/ \__,_|\___|_| |_|\___|____/|____/  
&gt;                |_|                                       
&gt; [14:50:47] WARN [org.apache.directory.server.schema.registries.DefaultOidRegistry] -
OID for name 'krb5PrincipalName' was not found within the OID registry
&gt; [14:50:49] ERROR [org.apache.directory.server.schema.registries.DefaultAttributeTypeRegistry]
- attributeType w/ OID 2.5.4.16 not registered!
&gt; *** It just hangs here after this error, and does not proceed to execute the install.
&gt; Any suggestions on what I can do to resolve this issue?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (DIRSERVER-1431) Install ApachdDS on AIX 5.3</title>
<author><name>&quot;Adam J (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c892443619.1259877260759.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c892443619-1259877260759-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T21:54:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Install ApachdDS on AIX 5.3
---------------------------

                 Key: DIRSERVER-1431
                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1431
             Project: Directory ApacheDS
          Issue Type: Bug
    Affects Versions: 1.5.5
         Environment: AIX 5.3 system model 9133-55A
            Reporter: Adam J


I am trying to install ApacheDS. I download the tar file and here is the output of my steps
I have taken:
# pwd
/tmp/apachedirectory
# ls
apacheds-1.5.5.tar
# tar -xf apacheds-1.5.5.tar
# ls
apacheds-1.5.5.tar  apacheds_1.5.5
# cd apacheds_1.5.5
# ls
LICENSE       apacheds.bat  bin           cpappend.bat  lib
NOTICE        apacheds.sh   conf          feather.ico   var 
# ./apacheds.sh
           _                     _          ____  ____   
          / \   _ __    ___  ___| |__   ___|  _ \/ ___|  
         / _ \ | '_ \ / _` |/ __| '_ \ / _ \ | | \___ \  
        / ___ \| |_) | (_| | (__| | | |  __/ |_| |___) | 
       /_/   \_\ .__/ \__,_|\___|_| |_|\___|____/|____/  
               |_|                                       

[14:50:47] WARN [org.apache.directory.server.schema.registries.DefaultOidRegistry] - OID for
name 'krb5PrincipalName' was not found within the OID registry
[14:50:49] ERROR [org.apache.directory.server.schema.registries.DefaultAttributeTypeRegistry]
- attributeType w/ OID 2.5.4.16 not registered!


*** It just hangs here after this error, and does not proceed to execute the install.

Any suggestions on what I can do to resolve this issue?


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Replacing specific per-plugin version properties by version inherited from the parent pom ?</title>
<author><name>Felix Knecht &lt;felix@otego.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c4B182745.2000404@otego.com%3e"/>
<id>urn:uuid:%3c4B182745-2000404@otego-com%3e</id>
<updated>2009-12-03T21:01:57Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Pierre-Arnaud Marcelot schrieb:
&gt; Hi all,
&gt; 
&gt; I'd like to propose the removal of our specific per-plugin version to use the inherited
parent pom version instead.

That was a requirement at the time I created the maven build - but I've
never really understood, why they might have a different version ...

Remove them :-)
Felix
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.13 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAksYJ0QACgkQ2lZVCB08qHHL7ACdHvLF+RGnb0uEtBrddZtU3S8q
JvsAoMvq80LtAGztSZrQz50/wjMY5DMq
=iX2m
-----END PGP SIGNATURE-----


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: [Schema refactoring] Heads up</title>
<author><name>Alex Karasulu &lt;akarasulu@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3ca32f6b020912031202r48f885ecib83d4a7454d530bc@mail.gmail.com%3e"/>
<id>urn:uuid:%3ca32f6b020912031202r48f885ecib83d4a7454d530bc@mail-gmail-com%3e</id>
<updated>2009-12-03T20:02:33Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Excellent thanks for the heads up Emmanuel.

Alex

On Thu, Dec 3, 2009 at 1:38 PM, Emmanuel Lecharny &lt;elecharny@gmail.com&gt;wrote:

&gt; Hi,
&gt;
&gt; after a few days without computer (my laptop died), and a couple of days
&gt; instling my brand new MBP, I was able to work again on the schema.
&gt;
&gt; The code is much cleaner, with many refactoring done, improvement, cleaning
&gt; and factorisation. AT addition has been fully tested (unit tests added), at
&gt; least directly in the SchemaManager. The same work still has to be done for
&gt; the direct injection into the server.
&gt;
&gt; I will work on the schema enabling and disabling soon, the code is ready
&gt; but some tests are needed.
&gt;
&gt; Some JIRA will be created for each set of tests needed, for each
&gt; SchemaObjects.
&gt;
&gt; So far, looking better and better !
&gt;



-- 
Alex Karasulu
My Blog :: http://www.jroller.com/akarasulu/
Apache Directory Server :: http://directory.apache.org
Apache MINA :: http://mina.apache.org


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Replacing specific per-plugin version properties by version inherited from the parent pom ?</title>
<author><name>Stefan Seelmann &lt;seelmann@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c4B18163E.6090800@apache.org%3e"/>
<id>urn:uuid:%3c4B18163E-6090800@apache-org%3e</id>
<updated>2009-12-03T19:49:18Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Pierre-Arnaud Marcelot wrote:
&gt; Hi all,
&gt; 
&gt; I'd like to propose the removal of our specific per-plugin version to use the inherited
parent pom version instead.
&gt; 
...
&gt; These properties have always been a source of annoyance because they're not very well
handled by the release plugin (and sometimes, some of them are not replaced correctly) and
I think they're not really necessary.
&gt; 
&gt; Since we're releasing the project as a whole, I think each project needs to inherit the
version defined in the parent pom.
&gt; 
&gt; WDYT?
&gt; Any objection?

Just go for it. Everything that could make releasing easier and less 
error-prone is OK.

Kind Regards,
Stefan



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (DIRSERVER-1430) The GlobalOid registry is not updated (or rebuilt) when loading a ful schema</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c192711928.1259866760750.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c192711928-1259866760750-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T18:59:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
The GlobalOid registry is not updated (or rebuilt) when loading a ful schema
----------------------------------------------------------------------------

                 Key: DIRSERVER-1430
                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1430
             Project: Directory ApacheDS
          Issue Type: Bug
            Reporter: Emmanuel Lecharny
            Assignee: Emmanuel Lecharny
            Priority: Blocker
             Fix For: 2.0.0-RC1


The globalOidRegistry is not updated when loading a full schema

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (DIRSERVER-1429) Implement tests for Syntax additions in SchemaManager</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c162396004.1259865920692.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c162396004-1259865920692-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T18:45:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Implement tests for Syntax additions in SchemaManager
-----------------------------------------------------

                 Key: DIRSERVER-1429
                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1429
             Project: Directory ApacheDS
          Issue Type: Test
    Affects Versions: 1.5.5
            Reporter: Emmanuel Lecharny
             Fix For: 2.0.0-RC1


We need tests for the SchemaManager, in shared-ldap-schema-loader project :

- The syntax must not already exist
- The associated SyntxChecker must exist

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[Schema refactoring] Heads up</title>
<author><name>Emmanuel Lecharny &lt;elecharny@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c4B1805C2.6070301@gmail.com%3e"/>
<id>urn:uuid:%3c4B1805C2-6070301@gmail-com%3e</id>
<updated>2009-12-03T18:38:58Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi,

after a few days without computer (my laptop died), and a couple of days 
instling my brand new MBP, I was able to work again on the schema.

The code is much cleaner, with many refactoring done, improvement, 
cleaning and factorisation. AT addition has been fully tested (unit 
tests added), at least directly in the SchemaManager. The same work 
still has to be done for the direct injection into the server.

I will work on the schema enabling and disabling soon, the code is ready 
but some tests are needed.

Some JIRA will be created for each set of tests needed, for each 
SchemaObjects.

So far, looking better and better !


</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (DIRSERVER-1428) Implement tests for ObjectClass additions in SchemaManager</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1684072809.1259864480697.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1684072809-1259864480697-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T18:21:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/DIRSERVER-1428?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785430#action_12785430
] 

Emmanuel Lecharny commented on DIRSERVER-1428:
----------------------------------------------

Also we should test that :

- a valid OC is accepted (obviously !)
- an OC is accepted even if some AT in the MAY or MUST are duplicated (ie, we have twice the
same AT in MAY)
- an OC is accepted even if some AT is duplicated in MAY or MUST, but defined with different
names (as 'cn' and CommonName' in MAY)
- an OC is accepted even if an AT is present in the MAY and MUST at the same time (even if
different names are used)

&gt; Implement tests for ObjectClass additions in SchemaManager
&gt; ----------------------------------------------------------
&gt;
&gt;                 Key: DIRSERVER-1428
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1428
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Test
&gt;    Affects Versions: 1.5.5
&gt;            Reporter: Emmanuel Lecharny
&gt;            Assignee: Kiran Ayyagari
&gt;             Fix For: 2.0.0-RC1
&gt;
&gt;
&gt; We need tests for the SchemaManager, in shared-ldap-schema-loader project :
&gt; o OC with no superiors
&gt;  - All the MAY must exist
&gt;  - All the MUST must exist
&gt; o OC with superiors
&gt;  - no cycle allowed (cannot be it's own superior)
&gt;  - if STRUCTURAL, cannot have an AUXILIARY in its superiors
&gt;  - if AUXILIARY, cannot have a STRUCTURAL in its superiors
&gt;  - if ABSTRACT, cannot have a STRUCTURAL or an AUXILIARY in its superiors

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (DIRSERVER-1428) Implement tests for ObjectClass additions in SchemaManager</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1855594478.1259864360750.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1855594478-1259864360750-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T18:19:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Implement tests for ObjectClass additions in SchemaManager
----------------------------------------------------------

                 Key: DIRSERVER-1428
                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1428
             Project: Directory ApacheDS
          Issue Type: Test
    Affects Versions: 1.5.5
            Reporter: Emmanuel Lecharny
            Assignee: Kiran Ayyagari
             Fix For: 2.0.0-RC1


We need tests for the SchemaManager, in shared-ldap-schema-loader project :

o OC with no superiors
 - All the MAY must exist
 - All the MUST must exist

o OC with superiors
 - no cycle allowed (cannot be it's own superior)
 - if STRUCTURAL, cannot have an AUXILIARY in its superiors
 - if AUXILIARY, cannot have a STRUCTURAL in its superiors
 - if ABSTRACT, cannot have a STRUCTURAL or an AUXILIARY in its superiors

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (DIRSERVER-1427) Errors should contain the associated SchemaObject when modifying the schema</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c395924307.1259863186574.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c395924307-1259863186574-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T17:59:46Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Errors should contain the associated SchemaObject when modifying the schema
---------------------------------------------------------------------------

                 Key: DIRSERVER-1427
                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1427
             Project: Directory ApacheDS
          Issue Type: New Feature
            Reporter: Emmanuel Lecharny
             Fix For: 2.0.0-RC1


Currently, when modifying the Schema, we just gather all the exceptions. Each one of them
should be associated with the SchemaObject which generated this exception, in order to be
used by Studio.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Assigned: (DIRSERVER-1427) Errors should contain the associated SchemaObject when modifying the schema</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1368484461.1259863186587.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1368484461-1259863186587-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T17:59:46Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/DIRSERVER-1427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Emmanuel Lecharny reassigned DIRSERVER-1427:
--------------------------------------------

    Assignee: Emmanuel Lecharny

&gt; Errors should contain the associated SchemaObject when modifying the schema
&gt; ---------------------------------------------------------------------------
&gt;
&gt;                 Key: DIRSERVER-1427
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1427
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: New Feature
&gt;            Reporter: Emmanuel Lecharny
&gt;            Assignee: Emmanuel Lecharny
&gt;             Fix For: 2.0.0-RC1
&gt;
&gt;
&gt; Currently, when modifying the Schema, we just gather all the exceptions. Each one of
them should be associated with the SchemaObject which generated this exception, in order to
be used by Studio.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Resolved: (DIRSERVER-1426) Implement tests for AttributeType additions in SchemaManager</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c566683453.1259863040663.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c566683453-1259863040663-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T17:57:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/DIRSERVER-1426?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Emmanuel Lecharny resolved DIRSERVER-1426.
------------------------------------------

    Resolution: Fixed
      Assignee: Emmanuel Lecharny  (was: Kiran Ayyagari)

All tests have been implemented. 

&gt; Implement tests for AttributeType additions in SchemaManager
&gt; ------------------------------------------------------------
&gt;
&gt;                 Key: DIRSERVER-1426
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1426
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Test
&gt;          Components: schema
&gt;            Reporter: Emmanuel Lecharny
&gt;            Assignee: Emmanuel Lecharny
&gt;             Fix For: 2.0.0-RC1
&gt;
&gt;
&gt; We need tests for the SchemaManager, in shared-ldap-schema-loader project :
&gt; o AT with no superior
&gt;  - no syntax =&gt; error
&gt;  - Collective AT =&gt; USAGE = userApplications
&gt;  - NO-USER-MODIFICATION =&gt; operational AT
&gt;  - equalityOid must be valid
&gt;  - orderingOid must exist
&gt;  - substringOid must exist
&gt; o AT with superior
&gt;  - no Syntax =&gt; take its superior syntax
&gt;  - Usage must be equals to its superior
&gt;  - if equality, ordering or substring are null, they must take its superior's value for
those MR
&gt;  - no cycle allowed (cannot be it's own superior)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Closed: (DIRSERVER-1426) Implement tests for AttributeType additions in SchemaManager</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1024963394.1259863040726.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1024963394-1259863040726-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T17:57:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/DIRSERVER-1426?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Emmanuel Lecharny closed DIRSERVER-1426.
----------------------------------------


Done

&gt; Implement tests for AttributeType additions in SchemaManager
&gt; ------------------------------------------------------------
&gt;
&gt;                 Key: DIRSERVER-1426
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1426
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Test
&gt;          Components: schema
&gt;            Reporter: Emmanuel Lecharny
&gt;            Assignee: Emmanuel Lecharny
&gt;             Fix For: 2.0.0-RC1
&gt;
&gt;
&gt; We need tests for the SchemaManager, in shared-ldap-schema-loader project :
&gt; o AT with no superior
&gt;  - no syntax =&gt; error
&gt;  - Collective AT =&gt; USAGE = userApplications
&gt;  - NO-USER-MODIFICATION =&gt; operational AT
&gt;  - equalityOid must be valid
&gt;  - orderingOid must exist
&gt;  - substringOid must exist
&gt; o AT with superior
&gt;  - no Syntax =&gt; take its superior syntax
&gt;  - Usage must be equals to its superior
&gt;  - if equality, ordering or substring are null, they must take its superior's value for
those MR
&gt;  - no cycle allowed (cannot be it's own superior)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (DIRSERVER-1426) Implement tests for AttributeType additions in SchemaManager</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1992619843.1259861960601.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1992619843-1259861960601-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T17:39:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/DIRSERVER-1426?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785409#action_12785409
] 

Emmanuel Lecharny commented on DIRSERVER-1426:
----------------------------------------------

o AT with superior
 - no Syntax =&gt; take its superior syntax : DONE
 - Usage must be equals to its superior : DONE
 - if equality, ordering or substring are null, they must take its superior's value for those
MR : DONE


&gt; Implement tests for AttributeType additions in SchemaManager
&gt; ------------------------------------------------------------
&gt;
&gt;                 Key: DIRSERVER-1426
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1426
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Test
&gt;          Components: schema
&gt;            Reporter: Emmanuel Lecharny
&gt;            Assignee: Kiran Ayyagari
&gt;             Fix For: 2.0.0-RC1
&gt;
&gt;
&gt; We need tests for the SchemaManager, in shared-ldap-schema-loader project :
&gt; o AT with no superior
&gt;  - no syntax =&gt; error
&gt;  - Collective AT =&gt; USAGE = userApplications
&gt;  - NO-USER-MODIFICATION =&gt; operational AT
&gt;  - equalityOid must be valid
&gt;  - orderingOid must exist
&gt;  - substringOid must exist
&gt; o AT with superior
&gt;  - no Syntax =&gt; take its superior syntax
&gt;  - Usage must be equals to its superior
&gt;  - if equality, ordering or substring are null, they must take its superior's value for
those MR
&gt;  - no cycle allowed (cannot be it's own superior)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (DIRSERVER-1426) Implement tests for AttributeType additions in SchemaManager</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1125998327.1259859845200.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1125998327-1259859845200-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T17:04:05Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/DIRSERVER-1426?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785398#action_12785398
] 

Emmanuel Lecharny commented on DIRSERVER-1426:
----------------------------------------------

o AT with no superior : All DONE
 - no syntax =&gt; error : DONE
 - Collective AT =&gt; USAGE = userApplications : DONE (2 tests, one positive, one negative)
 - NO-USER-MODIFICATION =&gt; operational AT : DONE (2 tests, one positive, one negative)
 - equalityOid must be valid : DONE
 - orderingOid must exist : DONE
 - substringOid must exist : DONE
- equality, ordering and substring, all valid : DONE


&gt; Implement tests for AttributeType additions in SchemaManager
&gt; ------------------------------------------------------------
&gt;
&gt;                 Key: DIRSERVER-1426
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1426
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Test
&gt;          Components: schema
&gt;            Reporter: Emmanuel Lecharny
&gt;            Assignee: Kiran Ayyagari
&gt;             Fix For: 2.0.0-RC1
&gt;
&gt;
&gt; We need tests for the SchemaManager, in shared-ldap-schema-loader project :
&gt; o AT with no superior
&gt;  - no syntax =&gt; error
&gt;  - Collective AT =&gt; USAGE = userApplications
&gt;  - NO-USER-MODIFICATION =&gt; operational AT
&gt;  - equalityOid must be valid
&gt;  - orderingOid must exist
&gt;  - substringOid must exist
&gt; o AT with superior
&gt;  - no Syntax =&gt; take its superior syntax
&gt;  - Usage must be equals to its superior
&gt;  - if equality, ordering or substring are null, they must take its superior's value for
those MR
&gt;  - no cycle allowed (cannot be it's own superior)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Replacing specific per-plugin version properties by version	inherited from the parent pom ?</title>
<author><name>Alex Karasulu &lt;akarasulu@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3ca32f6b020912030829x6b647dd8mf4087e9b592ea61a@mail.gmail.com%3e"/>
<id>urn:uuid:%3ca32f6b020912030829x6b647dd8mf4087e9b592ea61a@mail-gmail-com%3e</id>
<updated>2009-12-03T16:29:32Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Np go 4 it!

On Dec 3, 2009 11:08 AM, "Emmanuel LÅ½charny" &lt;elecharny@gmail.com&gt; wrote:

Pierre-Arnaud Marcelot a Ã©crit :

&gt; &gt; Hi all, &gt; &gt; I'd like to propose the removal of our specific per-plugin
version to use the inher...
no objection.


</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Replacing specific per-plugin version properties by version inherited from the parent pom ?</title>
<author><name>=?UTF-8?B?RW1tYW51ZWwgTMKOY2hhcm55?= &lt;elecharny@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c4B17E25D.9070207@gmail.com%3e"/>
<id>urn:uuid:%3c4B17E25D-9070207@gmail-com%3e</id>
<updated>2009-12-03T16:07:57Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Pierre-Arnaud Marcelot a Ã©crit :
&gt; Hi all,
&gt;
&gt; I'd like to propose the removal of our specific per-plugin version to use the inherited
parent pom version instead.
&gt;
&gt; I'm talking about these properties defined in the parent pom of Studio:
&gt; ======================================================================
&gt;     &lt;aciitemeditor.version&gt;1.5.2-SNAPSHOT&lt;/aciitemeditor.version&gt;
&gt;     &lt;apacheds.launcher.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.launcher.version&gt;
&gt;     &lt;apacheds.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.version&gt;
&gt;     &lt;apacheds.feature.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.feature.version&gt;
&gt;     &lt;apacheds.help.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.help.version&gt;
&gt;     &lt;apacheds.configuration.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.configuration.version&gt;
&gt;     &lt;apacheds.configuration.feature.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.configuration.feature.version&gt;
&gt;     &lt;apacheds.configuration.help.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.configuration.help.version&gt;
&gt;     &lt;common.ui.version&gt;1.5.2-SNAPSHOT&lt;/common.ui.version&gt;
&gt;     &lt;connection.core.version&gt;1.5.2-SNAPSHOT&lt;/connection.core.version&gt;
&gt;     &lt;connection.ui.version&gt;1.5.2-SNAPSHOT&lt;/connection.ui.version&gt;
&gt;     &lt;jars.version&gt;1.5.2-SNAPSHOT&lt;/jars.version&gt;
&gt;     &lt;ldapbrowser.common.version&gt;1.5.2-SNAPSHOT&lt;/ldapbrowser.common.version&gt;
&gt;     &lt;ldapbrowser.core.version&gt;1.5.2-SNAPSHOT&lt;/ldapbrowser.core.version&gt;
&gt;     &lt;ldapbrowser.feature.version&gt;1.5.2-SNAPSHOT&lt;/ldapbrowser.feature.version&gt;
&gt;     &lt;ldapbrowser.help.version&gt;1.5.2-SNAPSHOT&lt;/ldapbrowser.help.version&gt;
&gt;     &lt;ldapbrowser.ui.version&gt;1.5.2-SNAPSHOT&lt;/ldapbrowser.ui.version&gt;
&gt;     &lt;ldifeditor.version&gt;1.5.2-SNAPSHOT&lt;/ldifeditor.version&gt;
&gt;     &lt;ldifeditor.feature.version&gt;1.5.2-SNAPSHOT&lt;/ldifeditor.feature.version&gt;
&gt;     &lt;ldifeditor.help.version&gt;1.5.2-SNAPSHOT&lt;/ldifeditor.help.version&gt;
&gt;     &lt;ldifparser.version&gt;1.5.2-SNAPSHOT&lt;/ldifparser.version&gt;
&gt;     &lt;rcp.version&gt;1.5.2-SNAPSHOT&lt;/rcp.version&gt;
&gt;     &lt;rcp.feature.version&gt;1.5.2-SNAPSHOT&lt;/rcp.feature.version&gt;
&gt;     &lt;rcp.help.version&gt;1.5.2-SNAPSHOT&lt;/rcp.help.version&gt;
&gt;     &lt;repository.version&gt;1.5.2-SNAPSHOT&lt;/repository.version&gt;
&gt;     &lt;schemaeditor.version&gt;1.5.2-SNAPSHOT&lt;/schemaeditor.version&gt;
&gt;     &lt;schemaeditor.feature.version&gt;1.5.2-SNAPSHOT&lt;/schemaeditor.feature.version&gt;
&gt;     &lt;schemaeditor.help.version&gt;1.5.2-SNAPSHOT&lt;/schemaeditor.help.version&gt;
&gt;     &lt;test.integration.core.version&gt;1.5.2-SNAPSHOT&lt;/test.integration.core.version&gt;
&gt;     &lt;test.integration.ui.version&gt;1.5.2-SNAPSHOT&lt;/test.integration.ui.version&gt;
&gt;     &lt;updatesite.version&gt;1.5.2-SNAPSHOT&lt;/updatesite.version&gt;
&gt;     &lt;valueeditors.version&gt;1.5.2-SNAPSHOT&lt;/valueeditors.version&gt;
&gt; ======================================================================
&gt;
&gt; These properties have always been a source of annoyance because they're not very well
handled by the release plugin (and sometimes, some of them are not replaced correctly) and
I think they're not really necessary.
&gt;
&gt; Since we're releasing the project as a whole, I think each project needs to inherit the
version defined in the parent pom.
&gt;
&gt; WDYT?
&gt; Any objection?
&gt;   
no objection.



</pre>
</div>
</content>
</entry>
<entry>
<title>Replacing specific per-plugin version properties by version inherited from the parent pom ?</title>
<author><name>Pierre-Arnaud Marcelot &lt;pa@marcelot.net&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3cA4C72391-4D46-4223-8F11-DD17681AD8F4@marcelot.net%3e"/>
<id>urn:uuid:%3cA4C72391-4D46-4223-8F11-DD17681AD8F4@marcelot-net%3e</id>
<updated>2009-12-03T15:58:15Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi all,

I'd like to propose the removal of our specific per-plugin version to use the inherited parent
pom version instead.

I'm talking about these properties defined in the parent pom of Studio:
======================================================================
    &lt;aciitemeditor.version&gt;1.5.2-SNAPSHOT&lt;/aciitemeditor.version&gt;
    &lt;apacheds.launcher.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.launcher.version&gt;
    &lt;apacheds.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.version&gt;
    &lt;apacheds.feature.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.feature.version&gt;
    &lt;apacheds.help.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.help.version&gt;
    &lt;apacheds.configuration.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.configuration.version&gt;
    &lt;apacheds.configuration.feature.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.configuration.feature.version&gt;
    &lt;apacheds.configuration.help.version&gt;1.5.2-SNAPSHOT&lt;/apacheds.configuration.help.version&gt;
    &lt;common.ui.version&gt;1.5.2-SNAPSHOT&lt;/common.ui.version&gt;
    &lt;connection.core.version&gt;1.5.2-SNAPSHOT&lt;/connection.core.version&gt;
    &lt;connection.ui.version&gt;1.5.2-SNAPSHOT&lt;/connection.ui.version&gt;
    &lt;jars.version&gt;1.5.2-SNAPSHOT&lt;/jars.version&gt;
    &lt;ldapbrowser.common.version&gt;1.5.2-SNAPSHOT&lt;/ldapbrowser.common.version&gt;
    &lt;ldapbrowser.core.version&gt;1.5.2-SNAPSHOT&lt;/ldapbrowser.core.version&gt;
    &lt;ldapbrowser.feature.version&gt;1.5.2-SNAPSHOT&lt;/ldapbrowser.feature.version&gt;
    &lt;ldapbrowser.help.version&gt;1.5.2-SNAPSHOT&lt;/ldapbrowser.help.version&gt;
    &lt;ldapbrowser.ui.version&gt;1.5.2-SNAPSHOT&lt;/ldapbrowser.ui.version&gt;
    &lt;ldifeditor.version&gt;1.5.2-SNAPSHOT&lt;/ldifeditor.version&gt;
    &lt;ldifeditor.feature.version&gt;1.5.2-SNAPSHOT&lt;/ldifeditor.feature.version&gt;
    &lt;ldifeditor.help.version&gt;1.5.2-SNAPSHOT&lt;/ldifeditor.help.version&gt;
    &lt;ldifparser.version&gt;1.5.2-SNAPSHOT&lt;/ldifparser.version&gt;
    &lt;rcp.version&gt;1.5.2-SNAPSHOT&lt;/rcp.version&gt;
    &lt;rcp.feature.version&gt;1.5.2-SNAPSHOT&lt;/rcp.feature.version&gt;
    &lt;rcp.help.version&gt;1.5.2-SNAPSHOT&lt;/rcp.help.version&gt;
    &lt;repository.version&gt;1.5.2-SNAPSHOT&lt;/repository.version&gt;
    &lt;schemaeditor.version&gt;1.5.2-SNAPSHOT&lt;/schemaeditor.version&gt;
    &lt;schemaeditor.feature.version&gt;1.5.2-SNAPSHOT&lt;/schemaeditor.feature.version&gt;
    &lt;schemaeditor.help.version&gt;1.5.2-SNAPSHOT&lt;/schemaeditor.help.version&gt;
    &lt;test.integration.core.version&gt;1.5.2-SNAPSHOT&lt;/test.integration.core.version&gt;
    &lt;test.integration.ui.version&gt;1.5.2-SNAPSHOT&lt;/test.integration.ui.version&gt;
    &lt;updatesite.version&gt;1.5.2-SNAPSHOT&lt;/updatesite.version&gt;
    &lt;valueeditors.version&gt;1.5.2-SNAPSHOT&lt;/valueeditors.version&gt;
======================================================================

These properties have always been a source of annoyance because they're not very well handled
by the release plugin (and sometimes, some of them are not replaced correctly) and I think
they're not really necessary.

Since we're releasing the project as a whole, I think each project needs to inherit the version
defined in the parent pom.

WDYT?
Any objection?

Thanks,
Pierre-Arnaud






</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (DIRSTUDIO-602) Unable to start an Apache DS version 1.5.5 server</title>
<author><name>&quot;Pierre-Arnaud Marcelot (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c2054548660.1259854640803.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c2054548660-1259854640803-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T15:37:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Unable to start an Apache DS version 1.5.5 server
-------------------------------------------------

                 Key: DIRSTUDIO-602
                 URL: https://issues.apache.org/jira/browse/DIRSTUDIO-602
             Project: Directory Studio
          Issue Type: Bug
          Components: studio-apacheds
    Affects Versions: 1.5.1
            Reporter: Pierre-Arnaud Marcelot
            Assignee: Pierre-Arnaud Marcelot
            Priority: Blocker
             Fix For: 1.5.2


Unable to start an Apache DS version 1.5.5 server.

NPE when copying that damn apacheds-launcher library...

!ENTRY org.eclipse.ui 4 0 2009-12-03 16:32:33.271
!MESSAGE Unhandled event loop exception
!STACK 0
java.lang.NullPointerException
	at org.apache.directory.studio.apacheds.ApacheDsPluginUtils.copyLibrary(ApacheDsPluginUtils.java:224)
	at org.apache.directory.studio.apacheds.ApacheDsPluginUtils.verifyLibrariesFolder(ApacheDsPluginUtils.java:99)
	at org.apache.directory.studio.apacheds.actions.RunAction.run(RunAction.java:173)
	at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
	at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584)
	at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501)
	at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:452)
	at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1598)
	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1622)
	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1607)
	at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1396)
	at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3484)
	at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3068)
	at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405)
	at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369)
	at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221)
	at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500)
	at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
	at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493)
	at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
	at org.apache.directory.studio.Application.start(Application.java:58)
	at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194)
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368)
	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559)
	at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514)
	at org.eclipse.equinox.launcher.Main.run(Main.java:1311)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Commented: (DIRSERVER-1426) Implement tests for AttributeType additions in SchemaManager</title>
<author><name>&quot;Emmanuel Lecharny (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/directory-dev/200912.mbox/%3c1435111861.1259850440970.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1435111861-1259850440970-JavaMail-jira@brutus%3e</id>
<updated>2009-12-03T14:27:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

    [ https://issues.apache.org/jira/browse/DIRSERVER-1426?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12785334#action_12785334
] 

Emmanuel Lecharny commented on DIRSERVER-1426:
----------------------------------------------

We need some other tests :
- addition of an AT without associated schema
- addition of an AT with an already existing OID

&gt; Implement tests for AttributeType additions in SchemaManager
&gt; ------------------------------------------------------------
&gt;
&gt;                 Key: DIRSERVER-1426
&gt;                 URL: https://issues.apache.org/jira/browse/DIRSERVER-1426
&gt;             Project: Directory ApacheDS
&gt;          Issue Type: Test
&gt;          Components: schema
&gt;            Reporter: Emmanuel Lecharny
&gt;            Assignee: Kiran Ayyagari
&gt;             Fix For: 2.0.0-RC1
&gt;
&gt;
&gt; We need tests for the SchemaManager, in shared-ldap-schema-loader project :
&gt; o AT with no superior
&gt;  - no syntax =&gt; error
&gt;  - Collective AT =&gt; USAGE = userApplications
&gt;  - NO-USER-MODIFICATION =&gt; operational AT
&gt;  - equalityOid must be valid
&gt;  - orderingOid must exist
&gt;  - substringOid must exist
&gt; o AT with superior
&gt;  - no Syntax =&gt; take its superior syntax
&gt;  - Usage must be equals to its superior
&gt;  - if equality, ordering or substring are null, they must take its superior's value for
those MR
&gt;  - no cycle allowed (cannot be it's own superior)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
</feed>
