diff options
Diffstat (limited to 'pages/pageelems.ecpp')
-rw-r--r-- | pages/pageelems.ecpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pages/pageelems.ecpp b/pages/pageelems.ecpp index 79d5d51..869f362 100644 --- a/pages/pageelems.ecpp +++ b/pages/pageelems.ecpp @@ -6,6 +6,7 @@ using namespace std; </%pre> + <%def doc_type> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> </%def> @@ -59,3 +60,33 @@ component; </%args> <a href="javascript:LiveSimpleAjaxRequest('play_recording.xml', 'recording', '<$ recordingid $>');"><img src="<$ image $>" alt="<$ alt $>" /></a> </%def> + +<%def epg_tt_box> +<%args> + string boxId; + string caption; + string tools_comp; + string time; + string title; + string short_descr; + string long_descr; +</%args> + <div class="epg_description" id="<$ (boxId) $>"> + <div class="station"> + <div class="boxheader"><div><div><$ (caption) $><& tooltip.close domId=(boxId) &></div></div></div> + </div> + <div class="epg_content"> + <div class="epg_tools"> + <& (tools_comp) &> + </div> + <div> + <div class="info"><$ (time) $></div> + <div class="title"><$ (title) $></div> + <div class="short"><$ (short_descr) $></div> + <div class="description"> + <$ (long_descr) $> + </div> + </div> + </div> + </div> +</%def> |