Hi...

Originally Posted by
Big Fat Bob
So what this boils down to is some form of search, though proberly more refined search criteria I think ?
I am hoping we won't end up building a complete document management solution
. Hopefully the number of documents will be small, perhaps just one. I am guessing at something like...
PHP Code:
class Repository {
function findRequirementsByTitle($title) { }
function updateRequirements($document) { }
function findRequirementsByTest($test_name) { }
function findRequirementsByGlossaryTerm($term) { }
}
...for a first version. With a possible...
PHP Code:
class Repository {
...
function findRequirements($criteria) { }
}
...later.
Is this what you mean?
yours, Marcus
Bookmarks