I have a simple script which finds all the symbolic names in a CVS source tree. I'd like to incorporate its output in a Plone site. Unfortunately, the script requires access to the underlying operating system and I can't figure out how to do that in Plone. In fact, I can scarcely decipher the documentation at all.
One version of the script is:
cvs -Q -d (place) rlog -h (root) | awk '/^symbolic names:/,/^keyword
substitution:/ {if ($0 ~ /^[ \t]/) {sub(/:/,""); print $1}}' |sort -u
The output of that version is a list of CVS symbolic names, one per line. Can
I integrate this script into my server somehow? I switch to a Python script,
but that script would still have to invoke the "cvs" app. How would I use that
output, or would it be better to make it HTML?
Randolph M. Fritz
[email protected]
signature.asc
Description: Message signed with OpenPGP using GPGMail
