Annotation of ECHO_content/zpt/ECHO_movie_template_standard.zpt, revision 1.5

1.1       dwinter     1: <table cellpadding="3" width="95%" border=0>
                      2:    <tr>
                      3:        
                      4:        <td>
                      5:            <!-- Label -->
                      6:            <!-- with link if there is one -->
                      7:            <span tal:condition="here/link">
1.2       dwinter     8:                        
1.5     ! dwinter     9:                    <b><tal:block tal:content="structure here/getLabel"/> [<a tal:attributes="href python:here.linkRTSP()">streaming</a>] [<a tal:attributes="href python:here.linkHTTP()" target="_blank">http</a>]</b>
1.1       dwinter    10:            </span>
1.4       dwinter    11:            <span tal:condition="here/lowresHTTP">
                     12:                        
1.5     ! dwinter    13:                    <b>Lowres: [<a tal:attributes="href python:here.lowresRTSP()">streaming</a>] [<a tal:attributes="href python:here.lowresHTTP()" target="_blank">http</a>]</b>
1.4       dwinter    14:            </span>
1.5     ! dwinter    15:                         <b>[<a tal:attributes="href string:${here/id}/RDF">RDF metadata</a>]</b>
1.3       dwinter    16: 
1.1       dwinter    17:            <!-- without link if there isn't one -->
                     18:            <span tal:condition="not:here/link">
                     19:                <u>
                     20:                    <b tal:content="structure here/getLabel">
                     21:                        label</b>
                     22:                </u>
                     23:            </span>
                     24:            <!-- -->
                     25:            
                     26:        </td>
                     27:    </tr>
                     28:    
                     29:    <tr>
                     30:        
                     31:        <td>
                     32:                <!--Thumb-->
                     33:            <img tal:attributes="src python:here.thumbUrl">
                     34:            <!-- Title -->
                     35:            <span tal:content="structure here/getTitle">
                     36:                Title
                     37:            </span>
                     38:            <!-- -->
                     39:        </td>
                     40:    </tr>
                     41:         <tr>
                     42:          <td>
                     43:        The raw file can be found at<br>
                     44:          <a tal:attributes="href here/rawFile" tal:content="here/rawFile"/>
                     45:         </td>
                     46:         </tr>
                     47:    
                     48:    <!-- Description if there ist one -->
                     49:    <tr tal:condition="here/description">
                     50:        
                     51:        <td>
                     52:            <span tal:replace="structure here/description">
                     53:                DESCRIPTION
                     54:            </span>
                     55:        </td>
                     56:    </tr>
                     57:    <!-- -->
                     58:    
                     59:    <!-- Copyrights -->
                     60:    
                     61:    <tr tal:condition="not:python:here.getCopyrightsHTML()=='ERROR'">
                     62:        <td align=right>
                     63:            <span tal:repeat="item python:here.getCopyrightsHTML()">
                     64:                <span tal:condition="not:python:item[0] == 'empty'">
                     65:                    <a tal:attributes="href python:item[0]" target="_blank">
                     66:                    <span tal:content="structure python:item[4]"/>
                     67:                    <span tal:condition="not:python:item[1]=='all'">
                     68:                    (<span tal:content="python:item[1]"/>)</span>
                     69:                    <span tal:content="python:here.getPartnerFromIDParameter(item[2])[0][1].title"/><br>
                     70:                    </a>
                     71:                </span>
                     72:                <span tal:condition="python:item[0] == 'empty'">
                     73:                    <span tal:content="structure python:item[4]"/>
                     74:                    <span tal:condition="not:python:item[1]=='all'">
                     75:                    (<span tal:content="python:item[1]"/>)</span>
                     76:                    <span tal:content="python:here.getPartnerFromIDParameter(item[2])[0][1].title"/><br>
                     77:                </span>
                     78:                
                     79:            </span>
                     80:        </td>
                     81:    </tr>
                     82:    
                     83:    <!-- -->
                     84:    
                     85:    
                     86:    <tr tal:condition="python:here.getSubCols(subColTypes=['ECHO_externalLink'])">
                     87:        
                     88:        <td>
                     89:            <!-- Lists externalLinks if there are some -->
                     90:            <table border="0">
                     91:                <tr>
                     92:                    <td width="10px">
                     93:                    </td>
                     94:                    <td>
                     95:                        <h4>
                     96:                            Futher Information: 
                     97:                        </h4>
                     98:                    </td>
                     99:                </tr>
                    100:                <tr>
                    101:                    <td>
                    102:                    </td>
                    103:                    <td>
                    104:                        <div tal:omit-tag="" tal:repeat="item python:here.getSubCols(subColTypes=['ECHO_externalLink'])">
                    105:                            <div tal:replace="structure item/content_html" />
                    106:                        </div>
                    107:                    </td>
                    108:                </tr>
                    109:            </table>
                    110:            <!-- -->
                    111:        </td>
                    112:    </tr>
                    113:    
                    114: </table>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>