File modules/cms/ui/themes/default/html/views/pageelement/diff.tpl.src.xml

Last commit: Sun Dec 5 22:09:08 2021 +0100	dankert	Fix: The Diff function was broken.
1 <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 xsi:schemaLocation="http://www.openrat.de/template ../../../../../../../template_engine/components/template.xsd"> 3 <table> 4 <row header="true"> 5 <!-- <column header="true" class="table-column-action"/> --> 6 <column header="true" class="table-column-auto"> 7 <text type="emphatic" value="${message:COMPARE}"/> 8 <text value=" "/> 9 <date date="${date_left}"/> 10 </column> 11 <!-- <column header="true" class="table-column-action"/>--> 12 <column header="true" class="table-column-auto"> 13 <text type="emphatic" value="${message:WITH} "/> 14 <text value=" "/> 15 <date date="${date_right}"/> 16 </column> 17 </row> 18 <row> 19 <column colspan="2"/> 20 </row> 21 <list list="${diff}" extract="true"> 22 <row class="diff"> 23 <if present="left"> 24 <!-- <column class="diff-line">--> 25 <!-- <text value="${left.line}" type="tt"/>--> 26 <!-- </column>--> 27 <column class="diff-text--${left.type}" title="${left.text}"> 28 <text value="${left.text}"/> 29 </column> 30 </if> 31 <else> 32 <column> 33 <text value=" "/> 34 </column> 35 </else> 36 <if present="right"> 37 <!--<column class="diff-line"> 38 <text value="${right.line}" type="tt"/> 39 </column>--> 40 <column class="diff-text--${right.type}" title="${right.text}"> 41 <text value="${right.text}"/> 42 </column> 43 </if> 44 <else> 45 <column > 46 <text value=" "/> 47 </column> 48 </else> 49 </row> 50 </list> 51 </table> 52 </output>
Download modules/cms/ui/themes/default/html/views/pageelement/diff.tpl.src.xml
History Sun, 5 Dec 2021 22:09:08 +0100 dankert Fix: The Diff function was broken. Mon, 8 Mar 2021 01:24:06 +0100 Jan Dankert New: Action menu on many lists; tables have now a fixed layout Fri, 13 Nov 2020 00:12:44 +0100 Jan Dankert Fixing Pagelement-History and Diff. Wed, 21 Oct 2020 00:26:06 +0200 Jan Dankert Using fieldsets in all templates (replacing the old '') Mon, 17 Aug 2020 22:52:37 +0200 Jan Dankert Cleanup: Killing the old odd 'GLOBAL_' message prefixes. Mon, 17 Aug 2020 22:22:54 +0200 Jan Dankert Cleanup: Templates with text component should only use 'value'. Sat, 16 May 2020 01:08:40 +0200 Jan Dankert Refactoring: Switching the ValueExpressions in the templates to the new VariableResolver for supporting nested variables like ${message:prefix_${key}}. Sun, 23 Feb 2020 23:21:22 +0100 Jan Dankert Fix: Path to template.xsd has changed on the last refactoring. Sun, 23 Feb 2020 04:01:30 +0100 Jan Dankert Refactoring with Namespaces for the cms modules, part 1: moving.