Remove newline and carriage return in TEXT doesn't work

Author Message

Anita H

Tuesday 14 July 2009 5:56:52 am

Hi All,
I just cannot find the solution. I need to pass a xml_text to a javascript and therefore try to strip special characters:

I do:
{def $a = $childsub.data_map.contact.content.output.output_text |strip_tags | xmlwash() |simplify('\n')|nl2br }

Result:

<br />
50 Park Terrace<br />
8001 Christchurch<br />

I also tried:

{def $a = $childsub.data_map.contact.content.output.output_text |strip_tags | xmlwash() |simplify('\n')|nl2br}
{set $a = $a | break}

Result:

<br /><br />
50 Park Terrace<br /><br />
8001 Christchurch<br /><br />

What I need:

50 Park Terrace<br />8001 Christchurch<br />

How can I achieve that?
Desperate for any help.
Many thanks
Anita

Peter Keung

Tuesday 14 July 2009 11:24:56 pm

Since there's no str_replace() in eZ Publish (aside from a custom template operator for which there are extensions), you could run it through explode and then implode to remove those line breaks:

{set $a = $a|explode("\n")|implode()}

For your case you might need some of those extra operators too:

{set $a = $a|trim()|nl2br()|explode("\n")|implode()}

http://www.mugo.ca
Mugo Web, eZ Partner in Vancouver, Canada

Anita H

Wednesday 15 July 2009 1:06:11 am

Hi Peter,
many thanks. I will try it asap. I installed the extension swark and - in my desperation -
did the following:

ezPublish:

{def $a = $childsub.data_map.contact.content.output.output_text |strip_tags | xmlwash() |simplify('\n')|simplify('\r')|nl2br}

call to javascript:
map.addOverlay(createMarker(...., '{$a | str_replace("\r","") | str_replace("\n","")}' ));

And now it works.
However, I prefer your version as then I would not have to install the extension swark and rebuild the ezgenerateautoload which is giving me other headaches, e.g. how to run php command on remote web-hosting server when only having ftp access?

However, many thanks :-)
Anita

Anita H

Wednesday 15 July 2009 1:35:15 am

Hi Peter,
perfect! Your solution works very nicely...
brgrds
Anita

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 31 2025 01:17:27
Script start
Timing: Jan 31 2025 01:17:27
Module start 'layout'
Timing: Jan 31 2025 01:17:27
Module start 'content'
Timing: Jan 31 2025 01:17:27
Module end 'content'
Timing: Jan 31 2025 01:17:27
Script end

Main resources:

Total runtime0.0284 sec
Peak memory usage8,192.0000 KB
Database Queries3

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0064 588.3516151.2266
Module start 'layout' 0.00640.0043 739.5781220.7188
Module start 'content' 0.01060.0160 960.29691,001.9297
Module end 'content' 0.02670.0017 1,962.226633.9922
Script end 0.0284  1,996.2188 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.003110.9753140.0002
Check MTime0.00134.4584140.0001
Mysql Total
Database connection0.00082.921110.0008
Mysqli_queries0.00248.404930.0008
Looping result0.00000.049510.0000
Template Total0.00134.610.0013
Template load0.00103.632710.0010
Template processing0.00030.989410.0003
Override
Cache load0.00062.234710.0006
General
dbfile0.00196.743480.0002
String conversion0.00000.030240.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 1
 Number of unique templates used: 1

Time used to render debug report: 0.0001 secs