Changeset 4d2469c7e4af30574a75287c0c43f50b184c1d98
- Timestamp:
- 03/14/08 13:41:17
(10 months ago)
- Author:
- KRKeegan <-NOSPAM-kevin@krkeegan.com>
- git-committer:
- KRKeegan <-NOSPAM-kevin@krkeegan.com> 1205520077 -0700
- git-parent:
[067058368fae72e00ca897022ced1a24ebcf26f2]
- git-author:
- KRKeegan <-NOSPAM-kevin@krkeegan.com> 1205520077 -0700
- Message:
Add html comments to template
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r0670583 |
r4d2469c |
|
| 28 | 28 | <div style="visibility: visible; width: 920px; overflow: scroll; height: 410px; position: relative;"> |
|---|
| 29 | 29 | #if $tivoIP != '' |
|---|
| | 30 | <!-- If TiVoIP is present then we should display a NPL --> |
|---|
| 30 | 31 | <table> |
|---|
| 31 | 32 | #if $folder != '' |
|---|
| | 33 | <!-- We are in a subfolder, offer the option to return to NPL --> |
|---|
| 32 | 34 | <tr><td colspan=5><a href="/TiVoConnect?Command=NPL&Container=$container&TiVo=$tivoIP">Back to Now Playing List</a></td></tr> |
|---|
| 33 | 35 | #end if |
|---|
| 34 | 36 | #set $i = 0 |
|---|
| | 37 | <!-- i variable is used to alternate colors of row --> |
|---|
| | 38 | <!-- loop through passed data printing row for each show or folder --> |
|---|
| 35 | 39 | #for $row in $data |
|---|
| 36 | 40 | #set $i += 1 |
|---|
| … | … | |
| 41 | 45 | #end if |
|---|
| 42 | 46 | #if $row['ContentType'] == 'x-tivo-container/folder' |
|---|
| | 47 | <!-- This is a folder --> |
|---|
| 43 | 48 | <td></td> |
|---|
| 44 | 49 | <td><a href='/TiVoConnect?Command=NPL&Container=$(container)&Folder=$(row["UniqueId"])&TiVo=$tivoIP'>$row['Title'] </a></td> |
|---|
| … | … | |
| 47 | 52 | <td></td> |
|---|
| 48 | 53 | #else |
|---|
| | 54 | <!-- This is a show --> |
|---|
| 49 | 55 | #if 'Icon' in $row |
|---|
| | 56 | <!-- Display small table with color similar to TiVo colored circles --> |
|---|
| 50 | 57 | #if $row['Icon'] == 'urn:tivo:image:expires-soon-recording' |
|---|
| 51 | 58 | <td><table><tr><td height=18 width=8 bgcolor='yellow'> </td></tr></table></td> |
|---|
| … | … | |
| 58 | 65 | #end if |
|---|
| 59 | 66 | #else |
|---|
| | 67 | <!-- No Icon listed in XML sheet --> |
|---|
| 60 | 68 | <td width=4></td> |
|---|
| 61 | 69 | #end if |
|---|
| … | … | |
| 93 | 101 | </td> |
|---|
| 94 | 102 | #else |
|---|
| | 103 | <!-- No URL was in links url in XML --> |
|---|
| 95 | 104 | <td></td> |
|---|
| 96 | 105 | #end if |
|---|