Code Cut Off

Author Message

Rick -

Tuesday 18 July 2006 5:01:32 am

Hey,

I'm trying to implement google maps into our site, but ezPublish is cutting off the code that I'm pulling from an include.

It gets this far:

    <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=zxa"
      type="text/javascript"></script>
    <script type="text/javascript">
    //<![CDATA[
    function load()

But gets cut off here, and should continue with:

 {
      if (GBrowserIsCompatible()) {

      function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }
	  
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(-28.134414, 153.490248), 16);
		map.addControl(new GSmallZoomControl());
		map.addControl(new GMapTypeControl());
		
		var point = new GLatLng(-28.134414, 153.490248);
      var marker = createMarker(point,'Waves')
      map.addOverlay(marker);
      }
    }
    //]]>
    </script>

Any idea why its getting cut off?

Cheers,

Rick.

Kristof Coomans

Tuesday 18 July 2006 5:07:07 am

Hello Rick

You have to replace { and } with {ldelim} ( http://ez.no/doc/ez_publish/technical_manual/3_8/reference/template_functions/miscellaneous/ldelim ) and {rdelim} ( http://ez.no/doc/ez_publish/technical_manual/3_8/reference/template_functions/miscellaneous/rdelim ) in embedded JavaScript code in an eZ publish template, or put the JavaScript code in a literal block ( http://ez.no/doc/ez_publish/technical_manual/3_8/reference/template_functions/miscellaneous/literal ).

independent eZ Publish developer and service provider | http://blog.coomanskristof.be | http://ezpedia.org

Łukasz Serwatka

Tuesday 18 July 2006 5:07:48 am

This is common issue with curly brackets. Warp your whole JavaScript code between {literal} tags.

{literal}
<script type="text/javascript"> 
   //<![CDATA[ 
   function load() 
 { 
     if (GBrowserIsCompatible()) { 
 
     function createMarker(point,html) { 
       var marker = new GMarker(point); 
       GEvent.addListener(marker, "click", function() { 
         marker.openInfoWindowHtml(html); 
       }); 
       return marker; 
     } 
          
       var map = new GMap2(document.getElementById("map")); 
       map.setCenter(new GLatLng(-28.134414, 153.490248), 16); 
                map.addControl(new GSmallZoomControl()); 
                map.addControl(new GMapTypeControl()); 
                 
                var point = new GLatLng(-28.134414, 153.490248); 
     var marker = createMarker(point,'Waves') 
     map.addOverlay(marker); 
     } 
   } 
   //]]> 
   </script>
{/literal}

Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog

Łukasz Serwatka

Tuesday 18 July 2006 5:08:54 am

ah, 41 seconds to late ;)

Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog

Rick -

Tuesday 18 July 2006 6:10:56 am

Great guys, that did the trick - thanks!

Rick -

Tuesday 18 July 2006 6:15:51 am

Actually, one other quick question.

Do you know why why I call a value from a node, using this:

{attribute_view_gui attribute=$node.object.data_map.sometxtfield}

When it outputs the code, it drops it down on the next line, even though I didn't place it on one. This behavior is site wide - can't seem to find out why it does this.

Thanks!

Rick.

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 19 2025 03:19:14
Script start
Timing: Jan 19 2025 03:19:14
Module start 'layout'
Timing: Jan 19 2025 03:19:14
Module start 'content'
Timing: Jan 19 2025 03:19:15
Module end 'content'
Timing: Jan 19 2025 03:19:15
Script end

Main resources:

Total runtime1.2478 sec
Peak memory usage4,096.0000 KB
Database Queries68

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0054 589.0313152.6094
Module start 'layout' 0.00540.0029 741.640639.4141
Module start 'content' 0.00821.2380 781.0547619.2422
Module end 'content' 1.24630.0015 1,400.296916.1953
Script end 1.2478  1,416.4922 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00310.2510160.0002
Check MTime0.00130.1076160.0001
Mysql Total
Database connection0.00100.081910.0010
Mysqli_queries1.191695.4932680.0175
Looping result0.00060.0479660.0000
Template Total1.212797.220.6063
Template load0.00200.162520.0010
Template processing1.210697.020820.6053
Template load and register function0.00020.017810.0002
states
state_id_array0.00130.103410.0013
state_identifier_array0.00150.123720.0008
Override
Cache load0.00170.1348320.0001
Sytem overhead
Fetch class attribute can translate value0.00050.042330.0002
Fetch class attribute name0.00080.067880.0001
XML
Image XML parsing0.00110.089230.0004
class_abstraction
Instantiating content class attribute0.00000.001290.0000
General
dbfile0.00100.0826240.0000
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/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
9content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
4content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
3content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 24
 Number of unique templates used: 6

Time used to render debug report: 0.0001 secs