You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Aleks M (Created) (JIRA)" <ji...@apache.org> on 2012/03/12 16:26:37 UTC

[jira] [Created] (DIRSTUDIO-794) Wish for improved Batch Operation function

Wish for improved Batch Operation function
------------------------------------------

                 Key: DIRSTUDIO-794
                 URL: https://issues.apache.org/jira/browse/DIRSTUDIO-794
             Project: Directory Studio
          Issue Type: Improvement
    Affects Versions: 2.0.0-M2, 1.5.3
         Environment: Windows 7 SP1 64-bit
            Reporter: Aleks M


There is an option called Execute LDIF changetype fragment on each entry where you can write your own LDIF that gets multiplied.
This is great but I would like to add multiple fragments for each DN!
Example, now you can write:

dn: cn=dummy
changetype: modify
delete: validNotAfter
-

and ADS will generate the correct LDIF.
But lets say you need to delete multiple attributes and there is no guarantee that all will exist on all obejcts, if you write this:


dn: cn=dummy
changetype: modify
delete: validNotAfter
-
delete: validNotBefore
-

and one of those attributes is not there, the operation will fail.

I would like the possibility to write something like this in the Batch Operation editor:

dn: cn=dummy
changetype: modify
delete: validNotAfter
-

dn: cn=dummy
changetype: modify
delete: validNotBefore
-

dn: cn=dummy
changetype: modify
delete: serialNumber
-

dn: cn=dummy
changetype: modify
delete: subjectKeyIdentifier
-

etc....

ADS would then generate an LDIF file that contains 4 LDIF modify fragments per object (DN).

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira