The xPage XSP editor does not allow me to type & in the src url

<xp:script src="http://maps.googleapis.com/maps/api/js?key=1234&test=1" />

or

<script src="http://maps.googleapis.com/maps/api/js?key=1234&test=1" />

I can ofcourse change the url to &amp; but then google does not accept the url

any ideas?

src?

link|improve this question

40% accept rate
feedback

3 Answers

up vote 3 down vote accepted

The xPage XSP editor does not allow me to type & in the src url

& means "Start of character reference". If you want to include one as data you must use the character reference for it: &amp;.

I can of course change the url to &amp; but then google does not accept the url

The XML parser must decode it back to & when it converts from XML to a data structure. By the time it gets to Google, it shouldn't be &amp; any more.

link|improve this answer
so, what does this mean? when I look in html source the url still have &amp; – Thomas Adrian Feb 5 at 14:13
& has the same meaning (and implications) in HTML as it does in XML. You are presumably parsing the XML (turning the &amp; into &), generating HTML from the data (turning & into &amp;) — so of course the HTML source will show &amp;) — and then the browser will parse it back to & again and use that when it makes the HTTP request. – Quentin Feb 5 at 14:17
feedback

don't use script, use xp:scriptBlock for output scripts, like this:

<xp:scriptBlock>
    <xp:this.src><![CDATA[
        http://maps.googleapis.com/maps/api/js?key=1234&test=1
    ]]></xp:this.src>
</xp:scriptBlock>

Hope that helps.

link|improve this answer
Yes, actually got it working the script src way also, not sure what I did wrong before :-) – Thomas Adrian Feb 5 at 15:00
2  
Thomas, If you are using an attribute outside the basic XML characters (where & is a special character), you should use CDATA. Normally Designer converts attributes to CDATA when you write a SSJS for instance. Sometimes, you have to do it manually :) – Serdar Basegmez Feb 5 at 15:43
feedback

If the property panels/events view is used to enter a value then Domino Designer should convert the property to a CData if it detects a special XML character in the property value. If you enter the value manually into source designer will not modify the attribute value.

<xp:scriptBlock>
<xp:this.src><![CDATA[http://maps.googleapis.com/maps/api/js?key=1234&test=1]]></xp:this.src></xp:scriptBlock>

is the correct way of entering xml with special characters

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.