home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / TeamSpeak / TeamSpeak3-Client-win32-3.0.0.exe / styles / default / channelinfo.tpl < prev    next >
Text File  |  2011-03-25  |  3KB  |  88 lines

  1. <!--
  2. TeamSpeak 3 Channel Infoframe Template (EN) 
  3. Copyright 2009-2011 (c) TeamSpeak Systems GmbH
  4.  
  5. The replaceable variables are embedded in "%%" like %%CHANNEL_NAME%%. At this time you can also use 
  6. %%?CHANNEL_NAME%% (note the questionmark), which is a tiny "if"- query. Use it, to remove the whole 
  7. line, if a variable is empty or just "0".
  8.  
  9. Templates can be placed in "styles/" for default theme or in a sub folder named like an available 
  10. theme (e.g. "styles/bluesky/"). Be aware that this template will not automaticly be translated when 
  11. displayed.
  12.  
  13. Predefined values have to be inside the html comment-tag to make sure that they will be parsed
  14. before the replacing begins! Remove the "#" to enable.
  15.  
  16. #%%IMAGES_MAX_WIDTH%%256
  17. #%%IMAGES_MAX_HEIGHT%%256
  18. -->
  19.  
  20. <style type="text/css">
  21.   table#info {
  22.     border-collapse: collapse;
  23.     border-spacing: 0px;
  24.   }
  25.   table#list {
  26.     border-collapse: collapse;
  27.     border-spacing: 0px;
  28.     margin-bottom: 10px;
  29.   }
  30.   td {
  31.     padding: 0px 4px 0px 1px;
  32.   }
  33.   td.label {
  34.     font-weight: bold;
  35.     white-space: nowrap;
  36.   }
  37.   td.space {
  38.     padding-top: 6px;
  39.   }
  40.   td.list {
  41.     padding: 0px 1px 0px 8px;
  42.   }
  43.   .blue {
  44.     color: blue;
  45.   }
  46.   .green {
  47.     color: green;
  48.   }
  49.   .red {
  50.     color: red;
  51.   }
  52.   .small {
  53.     font-size: 9px;
  54.   }
  55. </style>
  56.  
  57. <table id="info">
  58.   <tr title="Channel Order: %%CHANNEL_ORDER%%">
  59.     <td class="label">Name:</td>
  60.     <td dir="LTR">
  61.       %%CHANNEL_NAME%% 
  62.       <span class="small" title="Channel ID">(%%CHANNEL_ID%%)</span>
  63.     </td>
  64.   </tr>
  65.   <tr><td class="label">Topic:</td><td>%%?CHANNEL_TOPIC%%</td></tr>
  66.   <tr>
  67.     <td class="label">Codec:</td>
  68.     <td>%%CHANNEL_CODEC%%</td>
  69.   </tr>
  70.   <tr>
  71.     <td class="label">Codec Quality:</td>
  72.     <td>%%CHANNEL_CODEC_QUALITY%% (estimated bitrate: %%CHANNEL_CODEC_BITRATE%%/s)</td>
  73.   </tr>
  74.   <tr><td class="label">Type:</td><td class="blue">%%?CHANNEL_FLAGS%%</td></tr>
  75.   <tr><td class="label">Current Clients:</td><td>%%?CHANNEL_CLIENTS_COUNT%% / %%CHANNEL_FLAG_MAXCLIENTS%%</td></tr>
  76.   <tr><td class="label">Needed Talk Power:</td><td class="red"><img src="iconpath:16x16_moderated.png" height="12" width="12" alt="" title="Request Talk Power to be able to talk in this Channel." />  %%?CHANNEL_NEEDED_TALK_POWER%%</td></tr>
  77.   <tr>
  78.     <td class="label">Subscription Status:</td>
  79.     <td>%%CHANNEL_SUBSCRIPTION%%</td>
  80.   </tr>
  81.   <tr><td class="label">Voice Data Encryption:</td><td>%%CHANNEL_VOICE_DATA_ENCRYPTED%%</td></tr>
  82.   %%?PLUGIN_INFO_DATA%%
  83. </table>
  84.  
  85. <table id="list" width=100%>
  86.   <tr><td class="space label"><img src="iconpath:16x16_change_nickname.png" height="12" width="12" alt=""> Description:</td></tr><tr><td class="list"><br />%%?CHANNEL_DESCRIPTION%%</td></tr>
  87. </table>
  88.