# File lib/fastcst/repo.rb, line 293
293:         def find_revision(rev)
294:             list = list_changesets
295:             possibles = []
296:                 
297:             # build a list of possible revisions to use
298:             list.each do |id|
299:                 path, md = find_changeset(id)
300:                 if path
301:                     if md['Revision'] == rev
302:                         # found a match, add it to the list
303:                         possibles << [rev, id]
304:                     end
305:                 else
306:                     UI.failure :error, "BAD! An ID listed could not be found: #{id}"
307:                 end
308:             end
309:                         
310:             return possibles
311:         end