Changeset 3538
- Timestamp:
- 27/02/08 16:15:17 (13 years ago)
- Location:
- TI05-delivery/ows_framework/trunk/ows_server/ows_server
- Files:
-
- 10 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TI05-delivery/ows_framework/trunk/ows_server/ows_server/public/js/ndgJavascript.js
r3420 r3538 85 85 { 86 86 var n = cboxes[i]; 87 var tst = typeof n;88 87 if ('checkbox' == n.type && n != abox) 89 88 { -
TI05-delivery/ows_framework/trunk/ows_server/ows_server/templates/meta.kid
r3457 r3538 37 37 <?python 38 38 t=s.contentType 39 if t=='': t='R' 40 if 'GET DATA' in t: t='GET DATA' 39 isWMC = False 40 if 'WEB MAP CONTEXT' in t: 41 isWMC = True 42 if t=='': 43 t='R' 44 if 'GET DATA' in t: 45 t='GET DATA' 41 46 try: 42 47 icon={'GET DATA':g.icons_A, … … 47 52 icon=g.icons_R 48 53 ?> 49 <td width="20%"><span py:replace="linkimage(s.url,icon,s.description)"/></td><td>${s.description}</td></tr> 54 <td width="20%" py:if="isWMC"> 55 <span py:replace="linkimage(g.server + '/viewItems?ENDPOINT=' + s.description,icon,s.description)" py:strip="True"/> 56 </td> 57 <td width="20%" py:if="not isWMC"> 58 <span py:replace="linkimage(s.url,icon,s.description)" py:strip="True"/> 59 </td> 60 <td>${s.description}</td> 61 </tr> 50 62 <tr py:if="c.doc.ndgObject is not None"> 51 63 <td width="20%"><span py:replace="linkimage(c.doc.ndgObject.xmlURL,g.icons_xml,'[XML]')"/></td> -
TI05-delivery/ows_framework/trunk/ows_server/ows_server/templates/results.kid
r3421 r3538 9 9 <div py:replace="PageTabs('Results')"/> 10 10 <div py:replace="searchOneLine()"/> 11 <?python12 id="contents"13 if "ndgSec" in session: id="contentsRight"14 ?>15 11 <div id="results"> 16 12 <div id="context">
Note: See TracChangeset
for help on using the changeset viewer.