delimiter modulo

Author Message

Eirik Alfstad Johansen

Tuesday 13 April 2004 5:53:00 am

Hi,

I've successfully used {delimiter modulo=2}</tr><tr>{/delimiter} to create tables consisting of two cells in each row. However, now I need to put an additional, empty cell between the two cells on each row. How do I go about this?

Thanks in advance !

Sinceerely,

Eirik Johansen

Sincerely,

Eirik Alfstad Johansen
http://www.netmaking.no/

Eirik Alfstad Johansen

Thursday 29 April 2004 3:32:04 am

Hi guys,

Still need an answer to this question, and the client is getting impatient. :)

Sincerely,

Eirik Johansen
http://www.netmaking.no/

Sincerely,

Eirik Alfstad Johansen
http://www.netmaking.no/

Bård Farstad

Thursday 29 April 2004 3:37:14 am

This will depend on which cells. If you want to add an empty cell between any cell you can do:

<table>
<tr>
{section loop=10}
    <td>
      Put content here
    </td>
    {delimiter modulo=2}
        <td>This is the empty cell</td>
        </tr>
        <tr>
    {/delimiter}
{/section}
</tr>
</table>

--bård

Documentation: http://ez.no/doc

Eirik Alfstad Johansen

Thursday 29 April 2004 3:58:42 am

Hi Bård,

This is the output I'm trying to generate:

<tr>
	<td>content</td>
	<td>&nbsp;</td>
	<td>content</td>
</tr>
<tr>
	<td>content</td>
	<td>&nbsp;</td>
	<td>content</td>
</tr>

Sincerely,

Eirik Johansen
http://www.netmaking.no/

Sincerely,

Eirik Alfstad Johansen
http://www.netmaking.no/

Bård Farstad

Thursday 29 April 2004 4:21:49 am

Try this one:

<table border="1">
<tr>
{section var=item loop=10}
    <td>Cell nr {$item}
    </td>
    {delimiter modulo=1}
        {section show=$item.number|mod(2)|eq(0)}
         <td>&nbsp;</td>
        {section-else}
           </tr>
           <tr>
        {/section}
    {/delimiter}
{/section}
</tr>
</table>

--bård

Documentation: http://ez.no/doc

Paul Forsyth

Thursday 29 April 2004 4:36:29 am

You could always use css to pad the first cell in each row out a little,

paul

--
http://www.visionwt.com

Eirik Alfstad Johansen

Friday 30 April 2004 12:23:56 am

Thanks a lot, Bård! Your tip did the trick. I took the liberty of adding your code as a comment to the section function documentation page (http://ez.no/ez_publish/documentation/development/libraries/ez_template/functions/section).

Sincerely,

Eirik Johansen

Sincerely,

Eirik Alfstad Johansen
http://www.netmaking.no/

yang xing

Tuesday 16 November 2010 5:59:38 pm

I needed this, thank you!

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 18 2025 05:22:16
Script start
Timing: Jan 18 2025 05:22:16
Module start 'layout'
Timing: Jan 18 2025 05:22:16
Module start 'content'
Timing: Jan 18 2025 05:22:17
Module end 'content'
Timing: Jan 18 2025 05:22:17
Script end

Main resources:

Total runtime1.4526 sec
Peak memory usage4,096.0000 KB
Database Queries76

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0070 587.7969152.6094
Module start 'layout' 0.00700.0037 740.406339.4141
Module start 'content' 0.01071.4403 779.8203670.0313
Module end 'content' 1.45110.0015 1,449.851620.1875
Script end 1.4526  1,470.0391 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00330.2243160.0002
Check MTime0.00130.0905160.0001
Mysql Total
Database connection0.00070.046910.0007
Mysqli_queries1.375894.7102760.0181
Looping result0.00080.0579740.0000
Template Total1.415097.420.7075
Template load0.00190.133720.0010
Template processing1.413197.276220.7065
Template load and register function0.00010.007110.0001
states
state_id_array0.00210.143710.0021
state_identifier_array0.00210.146120.0011
Override
Cache load0.00170.1183460.0000
Sytem overhead
Fetch class attribute can translate value0.00070.048340.0002
Fetch class attribute name0.00170.1158100.0002
XML
Image XML parsing0.00120.079640.0003
class_abstraction
Instantiating content class attribute0.00000.0021140.0000
General
dbfile0.00200.1363230.0001
String conversion0.00000.000740.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
6content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
8content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
14content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
3content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
3content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 36
 Number of unique templates used: 7

Time used to render debug report: 0.0001 secs