Jeff Grimmett <[EMAIL PROTECTED]> writes: > Is there a means of collecting the version data for all of the TG components > into one place that could be viewed, queried, or otherwise made to show the > operator what versions of everything is being used? A file, perhaps, that is > human readable? > And if not, would it even be possible?
If using SVN you can do that with 'svn info'. If not, you'll have to query the version of each component individually somehow. The usual method is checking the value of "<package>.__version__", but it is not guaranteed that it exists (sqlobject, for example, doesn't have it). -- Jorge Godoy <[EMAIL PROTECTED]>

