01 May, 2007
4 commits
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1760 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
…on is used in an ACI target, it stands for one or more rdn components, not zero or more. git-svn-id: https://svn.forgerock.org/opendj/trunk@1759 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1756 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1755 41b1ffd8-f28e-4786-ab96-9950f0a78031
30 Apr, 2007
2 commits
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1754 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
draft-ietf-ldapext-ldapv3-vlv. This can be used to retrieve a specified page of a search result set. Any result set that can be used with server-side sorting can also be used with VLV. The ldapsearch tool has also been updated to support this control. OpenDS Issue Number: 80 git-svn-id: https://svn.forgerock.org/opendj/trunk@1748 41b1ffd8-f28e-4786-ab96-9950f0a78031
28 Apr, 2007
1 commit
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1738 41b1ffd8-f28e-4786-ab96-9950f0a78031
27 Apr, 2007
6 commits
-
… email depending on if the test could or could not be run 3. Removed the superfluous attachment in the email. git-svn-id: https://svn.forgerock.org/opendj/trunk@1737 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1733 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
will only work for indexed searches, and it operates by sorting the ID list before iterating through the entries to return them to the client. The ldapsearch tool has also been updated to support the "-S" option to specify that the entries should be sorted with a given sort order. A more complete sorting solution, which will offer the ability to sort results that are not otherwise indexed, will require a sort/VLV index mechanism like that described in issue #38. OpenDS Issue Number: 79 git-svn-id: https://svn.forgerock.org/opendj/trunk@1732 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
2.added get-dtd target 3.ability to see in the email report subject pass/fail status git-svn-id: https://svn.forgerock.org/opendj/trunk@1730 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1726 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
and is the renaming of the configuration. The change in the configurations are quite simples, basically the changelog string has been replaced by the replication-server and the synchronization string has been replaced by replication except when it is used as synchronization provider. The schema is a bit more complex because I've decided to keep the old objectclass names and the old attribute names as alias of the new names. This would allow the previous configuration to work, however my testing has shown that the admin framework does not seem to deal well with objectclass aliases and therefore this is not entirely true. git-svn-id: https://svn.forgerock.org/opendj/trunk@1725 41b1ffd8-f28e-4786-ab96-9950f0a78031
26 Apr, 2007
5 commits
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1720 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1719 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1713 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Replace most of the changelog occurences with replication server. (issue 1090) git-svn-id: https://svn.forgerock.org/opendj/trunk@1711 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1710 41b1ffd8-f28e-4786-ab96-9950f0a78031
25 Apr, 2007
3 commits
-
Rename org.opends.server.replication.changelog into org.opends.server.synchronization.changelog Use replication instead of synchronization in many places in the code/comment/file names git-svn-id: https://svn.forgerock.org/opendj/trunk@1703 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Move from synchronization package name to replication. git-svn-id: https://svn.forgerock.org/opendj/trunk@1702 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
attempts to change the structural object class for an entry. OpenDS Issue Number: 1544 git-svn-id: https://svn.forgerock.org/opendj/trunk@1700 41b1ffd8-f28e-4786-ab96-9950f0a78031
24 Apr, 2007
3 commits
-
- Narrow down the set of packages that external developers will need to access in order to write a plugin or other type of extension. Hopefully, for most things developers will only need to interact with the following packages (and their sub-packages): * org.opends.server.admin * org.opends.server.api * org.opends.server.config * org.opends.server.protocols.internal * org.opends.server.types * org.opends.server.util - As part of the attempted narrowing of packages that external developers need to access, I have moved the org.opends.server.core.Operation and org.opends.server.protocols.ldap.LDAPException classes to the org.opends.server.types package. I have also created org.opends.server.types.RawAttribute to wrap the org.opends.server.protocols.ldap.LDAPAttribute class, and org.opends.server.types.RawModification to wrap the org.opends.server.protocols.ldap.LDAPModification class. - I have updated the internal operations API to add a few new convenience methods when performing internal operations. - I have updated all of our message strings so that none of them end in periods (except those that end with an ellipsis). This will help us avoid the problem in which we see multiple periods due to embedding one message in another. - I have moved a message file from a synchronizaiton package to the messages package and resolved conflicts with existing message IDs. - I have updated a number of cases in which StaticUtils.stackTraceToSingleLineString() was used in client-facing code to replace those calls with StaticUtils.getExceptionMessage() instead. This should provide a more user-friendly message that will hopefully not reduce our ability to debug problems that may arise. - I have cleaned up some of the code in the org.opends.server.api package so that all of the classes use consistent formatting, and to fix a couple of potential Javadoc problems. - I have moved the build-tools/src directory to src/build-tools to be more consistent with other components of the server. - I have updated the build script so that the xslt task will no longer dump lots of output to the terminal when generating code. I have also gotten rid of warnings about run.classpath not being set properly. git-svn-id: https://svn.forgerock.org/opendj/trunk@1695 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1690 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
…discovered when specifying some duration based properties: * duration and size units had to be specified in default behaviors * upper/lower limit had to be specified without a unit and with values in the property's base unit (bytes for size properties) This change enables us to specify duration and size property constraints and defaults with or without units (when no unit is specified we default to the property's base unit). The Duration{Unit|PropertyDefinition} APIs have also been re-aligned with the Size{Unit|PropertyDefinition} APIs where possible and the unit tests updated (incl. replacing many bad uses of the assert keyword with the assertEquals TestNG method). git-svn-id: https://svn.forgerock.org/opendj/trunk@1689 41b1ffd8-f28e-4786-ab96-9950f0a78031
23 Apr, 2007
5 commits
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1683 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
org.opends.server.synchronization.plugin.PersistentServerStateTest.java git-svn-id: https://svn.forgerock.org/opendj/trunk@1682 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1681 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
and makes possible to dynamically add or remove changelog server and synchronization domains in a running server (issue 639). It was necessary to slightly modify the configuration : - The objectclass ds-cfg-multimaster-synchronization-provider must be added to the entry : cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config - the domains must be configured under cn=domains, cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config instead of being directly under this entry. The synchronization.ldif file has been updated to reflect these changes. I will update the configuration doc in the wiki git-svn-id: https://svn.forgerock.org/opendj/trunk@1680 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
It is now possible to constrain the set of valid values for a string property using regular expressions. git-svn-id: https://svn.forgerock.org/opendj/trunk@1678 41b1ffd8-f28e-4786-ab96-9950f0a78031
20 Apr, 2007
3 commits
-
user-friendly error messages from exceptions. For exceptions generated within the project, we'll just use the user-provided message and also display the unique message ID. For null pointer exceptions, we'll display the fact that it was a null pointer exception and the source file and line number on which it occurred. For invocation target exceptions, we'll handle the wrapped exception. For all other types of exceptions, we'll display the name of the exception class and the message, or if there is no message the source file and line number. git-svn-id: https://svn.forgerock.org/opendj/trunk@1674 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1673 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1672 41b1ffd8-f28e-4786-ab96-9950f0a78031
19 Apr, 2007
1 commit
-
This change introduces a new style-sheet which generates en_US property files containing all the description elements from the XML configuration definitions. In order to expose these properties the admin framework APIs have been modified as follows: * managed object definitions o user friendly name o user friendly plural name o synopsis o description * property definitions o synopsis o description o unit description (for integer properties) o value descriptions (for enumeration properties) o pattern descriptions (for string properties). This is pretty much useless at the moment since the string property definition class does not support patterns (even though the XML schema does): issue 1523 o alias default behavior description * relation definitions o synopsis o description o user friendly name (usually the user friendly name of the referenced managed object) o user friendly plural name for one-to-many relations (usually the user friendly plural name of the referenced managed object) Since there is currently only weak API support for required admin actions (issue 1426), the admin action descriptions cannot be exposed through any API at this stage. For I18N, translators are expected to take the generated property files and translate them into localized versions. git-svn-id: https://svn.forgerock.org/opendj/trunk@1658 41b1ffd8-f28e-4786-ab96-9950f0a78031
18 Apr, 2007
4 commits
-
make it more standards compliant and fix problems reported with its behavior. OpenDS Issue Numbers: 675, 1520, 1521, 1522 git-svn-id: https://svn.forgerock.org/opendj/trunk@1657 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
…t over from the previous test cause the following test to fail. For the affected tests, the solution was to wait for all previous operations to complete before starting the next test. git-svn-id: https://svn.forgerock.org/opendj/trunk@1655 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
…cations to the LDAPProfile class so that test implementations could be mocked up. The DNBuilder class was also modified so that the LDAPProfile instance could be configured at run-time. git-svn-id: https://svn.forgerock.org/opendj/trunk@1649 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
…hen run in isolation. Now we make sure that the server is always started. git-svn-id: https://svn.forgerock.org/opendj/trunk@1647 41b1ffd8-f28e-4786-ab96-9950f0a78031
17 Apr, 2007
3 commits
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1645 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@1643 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
…ilters possible outcomes with the ACI support for the modify operation, Issue 444. git-svn-id: https://svn.forgerock.org/opendj/trunk@1642 41b1ffd8-f28e-4786-ab96-9950f0a78031