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

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

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