July 2008
3 posts
2 tags
New Java and JavaDoc TextMate bundles
Finally, I got the new Java and JavaDoc TM bundles up to scratch and got them promoted from review. If you are using TM for Java, you’ll want to update your bundle.
Jul 4th
Moving/Replacing entries with Gldapo 0.7
Following on from the previous post, Gldapo 0.7 makes dealing with the location of LDAP objects much easier. This impacts the move() and replace() methods. I’ll focus on replace() here, but pretty much everything applies to move(). 0.7 introduces a new signature of replace(String namingValue, Object parent). Let’s look at some usage then I’ll explain. What we want to do here...
Jul 3rd
@GldapoNamingAttribute
I’ve been working on making the way you define the location of an entry object better. In Gldapo 0.6, this is a bit cumbersome. Let’s look at some examples. Here is our schema class in 0.6… class Person { String cn String sn } So let’s create one of these people in an ou called people… def p = new Person( cn: "Luke" sn: "Daley" rdn:...
Jul 1st