- Timestamp:
- 24/05/06 07:42:40 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI07-MOLES/trunk/StubB/XSLT/browse/portal/cgi/renderDiscoveryResponses.py
r963 r994 2 2 from DIF import DIF 3 3 4 5 def render(difSet,summary=0,services=0,spatial=0,temporal=0, 4 def renderDiscoverySet(difSet,summary=0,services=0,spatial=0,temporal=0, 6 5 linkto='NDG_B_SERVICE'): 7 6 '''Takes a set of xml DIFS from a discovery search and renders a list of responses as a table, … … 84 83 for result in results: 85 84 difs.append(xmlCleanup(result)) 86 html=render (difs,summary=1,spatial=1,temporal=1)85 html=renderDiscoverySet(difs,summary=1,spatial=1,temporal=1) 87 86 f=file('output.html','wb') 88 87 f.write(html)
Note: See TracChangeset
for help on using the changeset viewer.