help with ACL function
I have an acl function that counts the xref's and resolves the marker. However, it only goes up as high as 26 (a-z), but we have 30+ fn's. Therefore, after z, it needs to restart with ab, ac, ad etc. I hope that makes sense.
So we have in the function the following line:
$enumerator = chr(96 + positionWithin($destOid, $scopeOid));
for which i assume is what does the counting. I need to pass a count as $intValue and return a label in the form "a, b, c, ..., aa, ab, ac"

