Using clear case reporting wizard how could i retreive the list of unlabelled files in a branch from a specific date?
Asked
Active
Viewed 82 times
1 Answers
0
You would need first a view configured to select element on that specific date: use a time-based selection rule config spec:
element /myPath/... /main/{!created_since(16-Sep-2009)}
element /myPath/... /main/LATEST
I would recommend a dynamic view for that, as you can easily tweak said config spec until you see the versions you want, and quickly refresh the view after each config spec modification.
Once the view is properly set, you can use:
- a simple find query to list all version not labelled with a specific label
- or try the ClearCase reporting wizard, after having to select first the appropriate script (which are in
C:\Program Files\Rational\ClearCase\reports\scripts
, like mentioned in this thread).
I suspect it is easy to configure those scripts to report all labelled versions, I don't know if you can report the "negative" form (all non-labelled version for a given label).