Quote transformed into ' (quote html code)

Hi all,
I try to translate an dbms_xmlapi.DOMDocument with xslt.
My problem is all quote ' are translated to their html code entity : &apos.
The french accent causes problem too.
Could you help me ? I'd like to know if it's possible to disable this translation.
Benoit Pironet

Not currently. You would need to specify output at text, but this is not currently supported by the database XSLT engine

Similar Messages

  • Placing the Wallaby html5 code into my html code?

    I've converted my .fla file into a Wallaby html5 file and added it to one of the html pages I had already created. However, I need help telling it where I want the animation to show up on the page. Right now, it's showing at the top right corner of the page, but I need to have it show in the same spot as the previous Flash file did. Here are the two pages. The first is the page with the original Flash animation and the second with the converted Wallaby .html5 animation.
    Flash
    http://thegalleysink.com/dealer.html
    Wallaby HTML5
    http://thegalleysink.com/dealer2.html
    Can anyone tell me what I need to do inside the code to adjust where the html5 version displays on the page?

    Okay, thank you. That helps me move it around on the page, but now it seems if I change the size of my browser window, the animation shifts out of place and also, when I view the page on my iPod Safari browser, the animation is shifted all the way to the right.

  • How to combine 3 HTML files into 1 HTML file?

    I'm designing a few layouts for my website recently, and have faced several problem. One of those is regarding "HTML coding", I usually upload files from Photoshop to Dreamweaver and it will automatically help me to generate the HTML code. I wanted to upload my own HTML layout design for my personal blogspot. But I realise that blogspot only allow 1 HTML code for the entire website design and when I did my web design in Dreamweaver (my website consists of HOME, ABOUT, CONTACT pages), it has a total of 3 HTML code for different pages and I couldn't upload it to my blogspot. So I would like to ask how can I actually do to combine all 3 HTML codes into 1 HTML code. Thank you.

    Hi Nancy, I would like to ask you if I'm using Illustrator CS6 instead of Photoshop? After I slice the vector file, I save as web devices > PNG file. But I realise that Ai and Psd do not work as the same, in Ai, it could not save as HTML. So what should I do after slicing images in Ai? :-D
    Another issue I'm facing is that do I have to create <div class> and <div box> to combine all the HTML files together into 1 and upload to blogspot? (1 long HTML that consists of HOME, ABOUT, CONTACT pages). Thank you

  • Stop 'transparent' form "getting" in to the HTML code

    why does 'transparent' get into the HTML code and how can I stop this from occurring

    You have already asked this question in Re: text disappears in browser

  • Inserting an image into Clearbox with html code

    Hi guys,
    I am using Clearbox to make pop up boxes so I can use text and images in it and I am editing them with html code.
    This is the code that I have (default for clearbox html)
    <div class="item"><a href="htmlcontent" rel="clearbox[gallery=Gallery,,width=400,,height=200,,html=&lt;br /&gt;&lt;strong&gt;&lt;font size=&quot;4&quot; color=&quot;#999&quot;&gt;BRC Food!&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;You can use most of html codes. For more information, please check the 'Professional usage' on www.clearbox.hu!&lt;/strong&gt;,,title=HTML content]"><img  src="images/brc_food_1.jpg" alt="html content" /></a></div>
    This code works fine, but I also want to add an image to it.
    <img src="images/brc_food.jpg" alt="BRC Food" width="500" height="334">
    Can anyone tell me how I would add the above together. Just inserting it into the code does not work, and I have also tried replacing the
    &lt; INSTEAD OF < / &gt; INSTEAD OF > / &quot; INSTEAD OF "
    Any help would be appreciated

    Whenever I deploy Fancybox on a page, I usually throw "the whole enchilada", to use a food analogy, in there:
    I link to every possible script from Fancybox just in case I'll need it.
    <script type="text/javascript" src="fancybox/lib/jquery-1.9.0.min.js"></script>
    <script type="text/javascript" src="fancybox/lib/jquery.mousewheel-3.0.6.pack.js"></script>
    <script type="text/javascript" src="fancybox/source/jquery.fancybox.js"></script>
    <link rel="stylesheet" type="text/css" href="fancybox/source/jquery.fancybox.css" media="screen">
    <link rel="stylesheet" type="text/css" href="fancybox/source/helpers/jquery.fancybox-buttons.css">
    <script type="text/javascript" src="fancybox/source/helpers/jquery.fancybox-buttons.js"></script>
    <link rel="stylesheet" type="text/css" href="fancybox/source/helpers/jquery.fancybox-thumbs.css">
    <script type="text/javascript" src="fancybox/source/helpers/jquery.fancybox-thumbs.js"></script>
    <script type="text/javascript" src="fancybox/source/helpers/jquery.fancybox-media.js"></script>
    <script type="text/javascript" src="fancybox/lib/fancybox_definitions.js"></script>
    That last one "fancybox_definitions" is simple a remote file I made from the inline styiling I found in thwe Fancybox demo page:
    It reads as follows:
    // JavaScript Document
    $(document).ready(function() {
    *  Simple image gallery. Uses default settings
    $('.fancybox').fancybox();
    *  Different effects
    // Change title type, overlay closing speed
    $(".fancybox-effects-a").fancybox({
    helpers: {
    title : {
    type : 'outside'
    overlay : {
    speedOut : 0
    // Disable opening and closing animations, change title type
    $(".fancybox-effects-b").fancybox({
    openEffect  : 'none',
    closeEffect     : 'none',
    helpers : {
    title : {
    type : 'over'
    // Set custom style, close if clicked, change title type and overlay color
    $(".fancybox-effects-c").fancybox({
    wrapCSS    : 'fancybox-custom',
    closeClick : true,
    openEffect : 'none',
    helpers : {
    title : {
    type : 'inside'
    overlay : {
    css : {
    'background' : 'rgba(85,164,194,0.85)'
    // Remove padding, set opening and closing animations, close if clicked and disable overlay
    $(".fancybox-effects-d").fancybox({
    padding: 0,
    openEffect : 'elastic',
    openSpeed  : 150,
    closeEffect : 'elastic',
    closeSpeed  : 150,
    closeClick : true,
    helpers : {
    overlay : null
    *  Button helper. Disable animations, hide close button, change title type and content
    $('.fancybox-buttons').fancybox({
    openEffect  : 'none',
    closeEffect : 'none',
    prevEffect : 'none',
    nextEffect : 'none',
    closeBtn  : false,
    helpers : {
    title : {
    type : 'inside'
    buttons     : {}
    afterLoad : function() {
    this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
    *  Thumbnail helper. Disable animations, hide close button, arrows and slide to next gallery item if clicked
    $('.fancybox-thumbs').fancybox({
    prevEffect : 'none',
    nextEffect : 'none',
    closeBtn  : false,
    arrows    : false,
    nextClick : true,
    helpers : {
    thumbs : {
    width  : 50,
    height : 50
    *  Media helper. Group items, disable animations, hide arrows, enable media and button helpers.
    $('.fancybox-media')
    .attr('rel', 'media-gallery')
    .fancybox({
    openEffect : 'none',
    closeEffect : 'none',
    prevEffect : 'none',
    nextEffect : 'none',
    arrows : false,
    helpers : {
    media : {},
    buttons : {}
    *  Open manually
    $("#fancybox-manual-a").click(function() {
    $.fancybox.open('1_b.jpg');
    $("#fancybox-manual-b").click(function() {
    $.fancybox.open({
    href : 'iframe.html',
    type : 'iframe',
    padding : 5
    $("#fancybox-manual-c").click(function() {
    $.fancybox.open([
    href : '1_b.jpg',
    title : 'My title'
    href : '2_b.jpg',
    title : '2nd title'
    href : '3_b.jpg'
    helpers : {
    thumbs : {
    width: 75,
    height: 50
    Copy that block of code and save it into a js file with the name "fancybox_definitions" in the fancybox/lib folder.
    Then add the other "calls" to Fancybox files to your header.  It should work from there.

  • XMLType Transform Single Quotes

    When performing a transform into html on an XMLType column in the database, single quotes are getting converted to &apos;.
    Here is a sample XSL:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
         <xsl:template match="/">
              <html>
                   <head>
                        <title></title>
                   </head>
                   <script type="Javascript">alert('here');</script>
                   <body>HERE</body>
              </html>
         </xsl:template>
    </xsl:stylesheet>
    This is the SQL query I use to perform the transform:
    select X.XMLData.transform((Select xmldata from xmltest where title='HTMLTest')).getstringval()
    from xmltest X where title='HTMLTest'
    This is the result of performing the transform/query:
    <html>
    <head>
    <title/>
    </head>
    <script type="Javascript">alert(&apos;here&apos;);</script>
    <body>HERE</body>
    </html>
    Under XMLspy's xslt processor and even Oracle's parser.v2.oraxsl, the output is not escaped.
    I have tried using CDATA and <xsl:text disable-output-escaping="yes"> as well, but non of them worked.
    I am new to XSL, so am probably missing something, anyone have any ideas on how to get around this?
    Thanks,
    Tom Hubbard

    This is a limitation of the current implementation. The correct solution is 'disable-output-escaping' but we do not support it. THe rules of thumb is that the XML DB transform can (currently) only be used to generate valid XML....

  • Using webmail in Mozilla Firefox 17.0.1 on Windows 8, original messages get turned into html code when I reply to or forward them. How can I fix this?

    I have tried re-setting Firefox and working in Safe Mode, but the problem still recurs. I use Fastmail as my webmail server and never had this problem on Windows XP or Windows 7. When I reply to a message, the original message is turned into html code. The same happens when I forward a message.
    My JavaScript is up to date, in case that's relevant. The Fastmail support team suggested the problem would be Firefox-related.
    The other function of my Fastmail account that isn't working properly in Firefox 17.0.1. is the search function.
    Do I need to get new plugins or something? I don't know where the HTML editor is in Firefox or if that's what's wrong.
    Regards,
    Rachel

    Thanks for your reply, cor-el. Norton 360 came pre-installed on the laptop as part of the package I bought. I haven't changed the pre-set firewall or anti-virus settings. Should I change something?
    I will try rebooting in Windows Safe mode as you say and report if that makes any difference.
    Rachel

  • Paste html code into dreamweaver 8

    I'm creating my 1st website in Dreamweaver 8, and am trying
    to include a photo gallery. I haven't got as far as learning Flash
    yet, but Ive found a piece of html code that will do what I want
    and am now trying to place it on my dreamweaver file. I don't know
    how to do this though, can anyone help please?
    Many thanks
    Nic

    i think maybe you have answered your own question in your
    title.
    simply copy the html code from where ever it is and paste it
    into your DW page. paste it in using the code view though not the
    design view in DW.
    if your not sure where abouts to paste it in the code view
    then just go to design view and with your mouse select with one
    click on the area of page that you want the gallery to go, for
    example in the right cell of your table. then go back to code view
    and you'll see that the curser will be in the right place - then
    paste!
    hope this helps
    zac

  • I embedded some HTML code into adobe Muse but not displaying when the pages are Exporting to HTML

    I embedded some HTML code into adobe Muse and when I published the remote site on business catalyst the (Add This widget) HTML code shows up but when I exported the site to HTML pages and view the index page in the browser (Safari, Chrome, Firefox) the (Add this widget) HTML code wouldn't display on any of the pages. I've used this code before on other Muse sites not sure what could have happened. Thnx!!!

    Hi,
    Please take a look at this post for a similar discussion : Re: When i export my muse website my youtube video links stop working. Why is this?
    Regards,
    Aish

  • Including html code into my iWeb site

    Hi,
    I would like to include googles Analytics tracking code to my website. In order to do this, they say I have to
    "Copy and paste the code segment into the bottom of your content, immediately before the </body> tag of each page you are planning to track. If you use a common include or template, you can enter it there. "
    What does that mean? And can I do that in IWeb?
    Thanks for a reply,
    Anne Wertheim

    I'm not totally sure what you are asking, but I do know this> Go to Insert: HTML Snippet... copy and paste the HTML code there...and it should work.. .just about ANY html did it on mine.
    Even the counters...but now I'm hosting with mobilme... propietarty, but works.... try it.
    Is that what you are asking?

  • Embed HTML Code Into Mail?

    Hi,
    Is it possible to embed HTML code into an Apple Mail message? If it isn't, this would be a really useful feature. Lots of sites now, such as YouTube and Flickr, provide snippets of HTML code that you can copy and paste into your "webpage". But how useful would it be if you could paste this code directly into an e-mail? That way you could do things such as embed a YouTube video into an e-mail, rather than just provide a link to it.

    You can do it, but it will not be the easiest thing, and it's generally frowned on, since HTML email is used by spammers and marketers to track whether or not you open their emails. It's much easier and more accepted to just send a link to something you want someone to see; not everyone has time time, patience, or affordable broadband to download a web page with an embedded video window.
    You'd have to do the coding yourself, test it to be sure it works when sending and receiving, and then send it to everyone you want to see it. That's a lot of work for no real benefit. According to Apple, Mail in 10.5 allows the sending of HTML using the Stationery feature; have you tested that or checked the Help files for that to see how it's done?
    Mulder

  • Copy HTML Code into DW?

    In CS6 I create a simple rectangle and increase the roundness of the rectangle. I then select the shape and choose edit > copy HTML code and I open Dreamweaver CS6 and paste the code into the code window. I thought it was supposed to write code to replicate the shape I created in FW, though instead it is just referencing a graphic of the shape I made in FW that was exported. What did I do wrong?
    Thanks.

    Use the CSS Properties panel, not Edit > Copy HTML Code.
    Create the rectangle
    Make sure it's selected
    Open the CSS propreties panel
    Click the Copy All button
    Go to Dreamweaver
    Create a Div and apply a class to the div
    Create a CSS class and within the rule, press Ctrl or Command + V to paste the CSS properties from Fireworks.
    Refresh the page (and switch to Live View) and you should see the rectangle, with all the supported visual properties, displayed using CSS.
    HTH

  • How do I paste a snippet of HTML code into my website

    I downloaded HTML code that creates a clock with the date & time to paste into my website. How do I paste the code into the site?
    I tried pasting the code onto the page in iWeb and it just shows up as if its just text.

    Yes, though I don't know if it applies to exactly what you want to do:
    http://alyeska.altervista.org/en/iWeb_Forms.html

  • HTML code appears corrupted - anyone run into this problem?

    Using RH8 HTML - All of my topics have unusual spacing in the html code.  This happens with a brand new project - starting right from the menu to select a new project.  As soon as the project is created I go into the first topic and look at the html code and it looks something like this:
    OK, even though it's hard to read, you can get the jist of it.  This happens with old or new projects.
    I am hoping I do not have to have our IT staff perform a uninstall/install.  Any feedback is greatly appreciate.
    Rob

    Just want to add that the usual trick of restoring the default font to Courier at 100% does not work as the dropdown is blank when Robert accesses it.
    Also this applies to any project Robert opens, including the samples.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Insert JAVA3D CODE into a HTML PAGE

    My java 3d code is working perfectly with javac and java command. I can see the result of my game in the appletviewer
    But when I want to insert the code into a html page,it dosen t work
    the java applet remain grey....
    Can someone tell me why and someone can tell me how to solve it
    Could you give me an example of HTML page using java 3D code with mulitple classes

    I don't know Java3D, but I know a little applets. :)
    Are you sure your browser understands the 3D API ?
    applets work with AWT and JDK1.1, (it's your browser than run your applet and not your jdk 1.3 or 1.4), so peraphs you should download a plug-in to run Java3D in your browser ?
    for example, if you want to use swing, you have to download a plug-in in your browser.
    and another problem is that different browsers work differently with a same applet : for example, IE 6.0 don't run than IE 4.0 or Netscape 3.0
    it's the internet's way of life... :)
    Good luck,
    David
    PS : sorry for my english, I'm from Paris ! :)

Maybe you are looking for