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

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

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