Suppose I have a VOB foo/. In this VOB lies a directory bar/ which contains labeled and non-labeled files. But bar/ is not the only directory in foo/, but all others don't have labeled files. Is there a way to write a config spec with the following behaviour:
- load all elements that are checked out
- for every directory except foo/bar/ load the main/LATEST version
- for the directory foo/bar/ load only the files which have that specific label, if this label does not exist, do not load the main/LATEST version
The normal config spec would be
element * CHECKEDOUT
element * LABEL
element * /main/LATEST
load /foo
But obviously it would then load also the non-labeled versions in /foo/bar. Thanks in advance.