Htmleditorkit parser compresses whitespace whithin a PRE tag

I'm using the parser to read an html document which includes a "PRE" tag and then space/newline formatted text. All the spaces and newlines are compresesed into a single space when the handleText callback is called. Is there any way of stopping this happening? Is it a bug?

Small example follows - as suggested it was a good exercise as I've been able to determine that the issue is actually pre-formatted text following a table.
package smalltestcase;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import javax.swing.text.html.HTMLEditorKit;
import javax.swing.text.html.HTMLEditorKit.ParserCallback;
public class Main {
    public static void main(String[] args) {
        Main m = new Main();
    public Main() {
        try {
            HTMLEditorKit.Parser parser = new ParseHTML().getParser();
            System.out.println("Test 1 - Processes <PRE> tag as expected\n");
            parser.parse(new InputStreamReader(new URL("http://www.screwtape.co.uk/test1.htm").openStream()), new Callback(), true);
            System.out.println("\n\nTest 2 - Whitespace following table is compressed\n");
            parser.parse(new InputStreamReader(new URL("http://www.screwtape.co.uk/test2.htm").openStream()), new Callback(), true);
        } catch (IOException ex) {
            ex.printStackTrace();
    public class ParseHTML extends HTMLEditorKit {
        public HTMLEditorKit.Parser getParser() {
            return super.getParser();
    class Callback extends ParserCallback {
        public Callback() {
            super();
        public void handleText(char[] data, int pos) {
            System.out.println(data);
            for (int i = 0; i < data.length; i++) {
                System.out.print(data);
System.out.print("=" + String.valueOf((int) data[i]) + " ");
System.out.println("END");
}and the output this gives is:Test 1 - Processes <PRE> tag as expected
This is a test web page
T=84 h=104 i=105 s=115 =32 i=105 s=115 =32 a=97 =32 t=116 e=101 s=115 t=116 =32 w=119 e=101 b=98 =32 p=112 a=97 g=103 e=101 END
This is a test
with several lines
and a table made using spaces
column 1 column 2
row 1 col 1 row 1 col 2
row 2 col 1 row 2 col 2
T=84 h=104 i=105 s=115 =32 i=105 s=115 =32 a=97 =32 t=116 e=101 s=115 t=116
=10 w=119 i=105 t=116 h=104 =32 s=115 e=101 v=118 e=101 r=114 a=97 l=108 =32 l=108 i=105 n=110 e=101 s=115
=10 a=97 n=110 d=100 =32 a=97 =32 t=116 a=97 b=98 l=108 e=101 =32 m=109 a=97 d=100 e=101 =32 u=117 s=115 i=105 n=110 g=103 =32 s=115 p=112 a=97 c=99 e=101 s=115
=10 c=99 o=111 l=108 u=117 m=109 n=110 =32 1=49 =32 =32 =32 =32 =32 =32 =32 =32 =32 c=99 o=111 l=108 u=117 m=109 n=110 =32 2=50
=10 r=114 o=111 w=119 =32 1=49 =32 c=99 o=111 l=108 =32 1=49 =32 =32 =32 =32 =32 =32 r=114 o=111 w=119 =32 1=49 =32 c=99 o=111 l=108 =32 2=50
=10 r=114 o=111 w=119 =32 2=50 =32 c=99 o=111 l=108 =32 1=49 =32 =32 =32 =32 =32 =32 r=114 o=111 w=119 =32 2=50 =32 c=99 o=111 l=108 =32 2=50 END
Test 2 - Whitespace following table is compressed
This is a test web page
T=84 h=104 i=105 s=115 =32 i=105 s=115 =32 a=97 =32 t=116 e=101 s=115 t=116 =32 w=119 e=101 b=98 =32 p=112 a=97 g=103 e=101 END
This is a test before
the table
with several lines
T=84 h=104 i=105 s=115 =32 i=105 s=115 =32 a=97 =32 t=116 e=101 s=115 t=116 =32 b=98 e=101 f=102 o=111 r=114 e=101
=10 t=116 h=104 e=101 =32 t=116 a=97 b=98 l=108 e=101
=10 w=119 i=105 t=116 h=104 =32 s=115 e=101 v=118 e=101 r=114 a=97 l=108 =32 l=108 i=105 n=110 e=101 s=115
=10 END
This is a test
T=84 h=104 i=105 s=115 =32 i=105 s=115 =32 a=97 =32 t=116 e=101 s=115 t=116 END
cell in a table
c=99 e=101 l=108 l=108 =32 i=105 n=110 =32 a=97 =32 t=116 a=97 b=98 l=108 e=101 END
Test cell2
T=84 e=101 s=115 t=116 =32 c=99 e=101 l=108 l=108 2=50 END
This is a test with several lines and a table made using spaces column 1 column 2 row 1 col 1 row 1 col 2 row 2 col 1 row 2 col 2
T=84 h=104 i=105 s=115 =32 i=105 s=115 =32 a=97 =32 t=116 e=101 s=115 t=116 =32 w=119 i=105 t=116 h=104 =32 s=115 e=101 v=118 e=101 r=114 a=97 l=108 =32 l=108 i=105 n=110 e=101 s=115 =32 a=97 n=110 d=100 =32 a=97 =32 t=116 a=97 b=98 l=108 e=101 =32 m=109 a=97 d=100 e=101 =32 u=117 s=115 i=105 n=110 g=103 =32 s=115 p=112 a=97 c=99 e=101 s=115 =32 c=99 o=111 l=108 u=117 m=109 n=110 =32 1=49 =32 c=99 o=111 l=108 u=117 m=109 n=110 =32 2=50 =32 r=114 o=111 w=119 =32 1=49 =32 c=99 o=111 l=108 =32 1=49 =32 r=114 o=111 w=119 =32 1=49 =32 c=99 o=111 l=108 =32 2=50 =32 r=114 o=111 w=119 =32 2=50 =32 c=99 o=111 l=108 =32 1=49 =32 r=114 o=111 w=119 =32 2=50 =32 c=99 o=111 l=108 =32 2=50 END
Any further suggestions? I'm trying to read an external website, and have no control over the content, so unfortunately I can't adjust the source page.
TIA
DK.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Using HTMLEditorKit.Parser to parse embed elements

    I've been using the HTMLEditorKit.Parser to do parsing on a html page just fine until I wanted to get an <embed> element inside of an <object>. The parser has no problem finding the <object> tag but then it doesn't seem to find the <embed> tag inside it. Does anyone know how to resolve this? Any help would be greatly appreciated. Thank you.

    I have tested your method and I have not this problem.
    you are right, new StringBuffer() intialize it
    peraphs it's the way you use your method toString() ?

  • Problem to pre tag use in jeditorpane

    hi all,
    i am using JEditroPane with HTMLEditorKit. I am using <pre> tag to set the Tab space. But problem is that, when i write continuously, its can't line break also when i print the editor contents, it will not print the exact contents.
    If i remove <pre> tag it prints the contents but formatting( Tab space) has remove.
    Please help me, how can i get rid of this situation..
    Thank you

    Thanks to your reply. Its nice..
    I am trying to line break explicitly. but can't find any way. Is there any way to get the cursor position (Location) that when the cursor exced the location i expliditly line break that positon .. or any other way...
    Please help me..
    Thank you

  • HTMLEditorKit.Parser.parse() method is not giving a proper HTMLDocument alw

    Hi,
    I am developing util program for HTML filter, for my project. I have find using HTMLDocument we can do that.
    But when I created I found few starnge things.
    HTMLEditorKit.Parser.parse() method is not giving a proper HTMLDocument always. the below application will show the HTML one if you comment the String str ="" ; and uncomment the next line.
    I am wondering why this happens.
    import java.io.StringReader;
    import java.io.StringWriter;
    import javax.swing.text.html.HTMLDocument;
    import javax.swing.text.html.HTMLEditorKit;
    import javax.swing.text.html.HTMLWriter;
    import javax.swing.text.html.parser.ParserDelegator;
    public class HTMLDocExample {
    public static void main(String args[]) throws Exception {
    System.out.println("start the parsing");
    String data = "dsfdssfsdf<A HREF='http://yahoo.com'>HTMLEditorKit.Parser</A><h1>dsfdsf</h1><table border='1' class='test'><tr><td><input type='text'>dfsf</input><select id='id1' name='name1'><option>fff</option><option>aaaaa</option></select><input type='text'/><a href=#></a></td></tr></table>";
    String str ="" ;
    //String str ="<TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE>" ;
    StringReader br = new StringReader(data + str );
    HTMLEditorKit htmlKit = new HTMLEditorKit();
    HTMLDocument htmlDoc = (HTMLDocument) htmlKit.createDefaultDocument();
    HTMLEditorKit.Parser parser = new ParserDelegator();
    HTMLEditorKit.ParserCallback callback = htmlDoc.getReader(0);
    parser.parse(br, callback, true);
    StringWriter writer = new StringWriter();
    HTMLWriter hWriter = new HTMLWriter(writer, htmlDoc);
    hWriter.write();
    String outPut = writer.toString();
    System.out.println(outPut);
    System.exit(0);
    }

    import java.io.StringReader;
    import java.io.StringWriter;
    import javax.swing.text.html.HTMLDocument;
    import javax.swing.text.html.HTMLEditorKit;
    import javax.swing.text.html.HTMLWriter;
    import javax.swing.text.html.parser.ParserDelegator;
    public class HTMLDocExample {
      public static void main(String args[]) throws Exception {
        System.out.println("start the parsing"); 
        String data = "dsfdssfsdf<A HREF='http://yahoo.com'>HTMLEditorKit.Parser</A><h1>dsfdsf</h1><table border='1' class='test'><tr><td><input type='text'>dfsf</input><select id='id1' name='name1'><option>fff</option><option>aaaaa</option></select><input type='text'/><a href=#></a></td></tr></table>";
        //String str ="" ;
        String str ="<TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE>" ;
        StringReader br = new StringReader(data + str );   
        HTMLEditorKit htmlKit = new HTMLEditorKit();
        HTMLDocument htmlDoc = (HTMLDocument) htmlKit.createDefaultDocument();
        HTMLEditorKit.Parser parser = new ParserDelegator();
        HTMLEditorKit.ParserCallback callback = htmlDoc.getReader(0);
        parser.parse(br, callback, true);
        StringWriter writer = new StringWriter();
        HTMLWriter hWriter = new HTMLWriter(writer, htmlDoc);
        hWriter.write();
        String outPut = writer.toString();       
        System.out.println(outPut);
        System.exit(0);
    }

  • Safari 4 won't render all text between pre and /pre tags

    I am unable to read text between <pre> and </pre> tags in Safari 4.0.3 for Snow Leopard. The problem started when I upgraded to Snow Leopard, but I'm afraid I might have corrupted something when I ran a piece of nastiness called Leopard Cache Cleaner that also corrupted some other preferences. I tried deleting .com.safari.plist to no avail. Anyone heard of this problem or have a solution?

    I found the solution - it turns out that Safari's "fixed width" font was supposed to be Courier, but for some reason Courier wasn't loading properly. Setting another Fixed width font fixed the problem.

  • How to use HTML 'pre' tag in ADF pages

    Hi,
    I am using adf 11.1.1.6.0 and trying to print some formatted text from log files. It can contain either xml / log file with new lines / tabs.
    When I use hte UIX / Regular jsp, I am able to use the <pre> tag and retain the output format form end user.
    When I am migrated the same application to ADF, I am not able to get the desired output format.
    Here are my trials:
    <af:outputYext> with escape="true" : Entire output is displayed in a single paragraph. All new line/formatting has gone.
    <af:outputYext> with escape="false" : Page itself is not painting as the logout put has some special characters.
    <af:richTextEditor> readonly = true : Taking out all xml tags with in the output log
    I tried with f:verbatim as shown
    <f:verbatim><pre> </f:verbatim>
    #{dojStep.displayStepOutput}
    <f:verbatim></pre></f:verbatim>
    In this case, I get the following error: "End tag does not match start tag 'pre'."
    Can you please suggest the alternative to use the html pre tag in ADF world to print the el expression data as it is.
    Thanks,
    -Jaya.

    Hi,
    have a outputText.. with escape="false"
    and in #{dojStep.displayStepOutput} have it like this
      public String displayStepOutput(){
    StringBuilder sb = new StringBuilder();
    sb.append("<pre>");
    sb.append("your text");
    sb.append("</pre>");
    return sb.toString();
    }example-
    <af:outputText value="#{dojStep.displayStepOutput}"/>

  • Safari 4 won't accurately render all text between pre and /pre tags

    I am unable to read text between <pre> and </pre> tags in Safari 4.0.3 for Snow Leopard. I will only get some of the text but not all. The problem started when I upgraded to Snow Leopard, but I'm afraid I might have corrupted something when I ran a piece of nastiness called Leopard Cache Cleaner that also corrupted some other preferences. Has anyone heard of this odd problem, or have a fix for it? I tried deleting com.apple.safari,plist to no avail.

    I found the solution - it turns out that Safari's "fixed width" font was supposed to be Courier, but for some reason Courier wasn't loading properly. Setting another Fixed width font fixed the problem.

  • Pre-tagging text files for FrameMaker 11

    In older versions of FrameMaker I used to be able to pre-tag a text/data file using @tag name=[paratext] at the beginning of a paragraph so that when the file was imported to a FrameMaker template, the specified tag would be applied automatically and I didn't have to apply the tags manually. This doesn't seem to work any more, but I can't believe this feature is no longer available. How do I do the same thing for FrameMaker 11 please?

    The include statement at the top of an MML file is optional, but handy if you do a lot of MML work and always use the same styles. For occasional work or document with a "novelty" style-set, it's enough to put a <!DefineTag> slug at the top of the MML source for each style. Just remember to start the file with <MML> – the FM import scrutinises the file rather than relying on the extension – and to save it as ANSII. Oh, and I've noticed/learnt that if you don't leave a blank line between each tagged paragraph in the input, FM adds a space at the end of the paragraph. (showing my age – I've been sternly warned against increasing file-size with this sort of thing)
    I use MML a lot, for cleaning up – erm – enthusiastically formatted or completely unformatted .doc files, and apart from missing support for tables I find it a valuable blade on my FM Swiss Army knife <g> Minimal work with a text editor can convert an MML file into tagged text suitable for InDesign. Haven't had the occasion to experiment with IDD to MML, but who knows … that might work too.
    Just for completeness, a small example:
    <MML>
    <!DefineTag :h2>
    <!DefineTag :p>
    <!DefineTag :ul>
    <!DefineTag :ul_2>
    <:h2>System requirements – disk space
    <:p>A minimum of 1Gb free disk space is recommended.
    <:ul>around 250 MB for Java
    <:ul>around 12 MB for a fresh Tomcat Server installation
    <:ul>around 23 MB for KEY LOADING SERVER files
    <:ul>additional space for
    <:ul_2>Tomcat Server working files
    <:ul_2>KEY LOADING reports
    <:ul_2>log files (space depends on the trace level and clean up policies adopted)

  • Could not parse html cannot be top level tag

    hi
    i have installed the siteminder webagent in sunone server, i am trying to call my first page (index.jsp) it contains the following jsp code
    <jsp:useBean id="helpBroker" class="javax.help.ServletHelpBroker" scope="session" />
    <%@ taglib uri="/WEB-INF/jhlib.tld" prefix="jh" %>
    <jh:validate helpBroker="<%= helpBroker %>" helpSetName="<%= strContext %>" />
    (here strContext is the delphi.hs file)
    then it's giving the "Could not parse html cannot be top level tag"
    error in servers log if i comment <jh:validate helpBroker="<%= helpBroker %>" helpSetName="<%= strContext %>" /> line then everything working fine
    can anybody suggest what is the error ?

    Could be your hs file inside your firewall configuration. Check whether you can able to assess hs with different session of your browser.

  • pre tag and textFlow

    Hi,
    I want to display some code. In a html page I use the <pre> tag. But in a textFlow this does not seem to work.
    I declared
    <fx:XML id="flexang" source="xml/flex-ang.xml" />
    and next:
    <s:RichEditableText id="codeView" editable="false" textFlow="{TextFlowUtil.importFromXML(flexang)}" />
    with in the Script tag:
    import spark.utils.TextFlowUtil;
    My XML file is
    <?xml version="1.0" encoding="utf-8"?>
    <TextFlow xmlns="http://ns.adobe.com/textLayout/2008">
    <pre>
    <span>Test for flex-ang.xml</span>
        <span> Alinéa ??</span>
    </pre>
    </TextFlow>
    If I try without the <pre> tag everything works but my text is not well formated. And with the <pre> tag, my application does not work (whereas I have not any error message).
    Do you have any idea to do what I want?
    Thanks.

    There is a forum for TLF at http://forums.adobe.com/community/opensource/tlf where you should request support for <pre> in TLF.
    Gordon Smith
    Adobe Flex SDK Team

  • Request editor button for "pre" tags

    Could someone please include a button with the reply editor to surround the selected text with pre tags?
    I noticed Justin replied in a previous thread about the subject that this is an outstanding request with Jive. But I assume OTN can make some edits to the Jive theme, template, and stuff.
    Looking at the current HTML there is something like the code below for the current bold, italic, and underline buttons:
    &lt;a href="#" onclick="styleTag('u',document.postform.body);return false;" title="Click for underline">It mustn't be to hard to duplicate this code and replace the 'u' with 'pre'. I've tested it with some DOM manipulation (good thing Firebug exists) and it works. The JavaScript supplied by Jive is generic enough to use for other tags as well.
    Come on guys; this must be do-able. It would make life on the forums so much easier. Currently there's a lot of posters posting code without the tags which makes it very very hard to read.
    Message was edited by:
    wilfred

    Dear all,
    I second that ! I am a newbie in oracle, so glad if the forum can help us in composing posts with codes.
    How about code and /code, what is it for ? There are colors not only equal-width characters unlike pre and /pre tags.
    =Damon

  • Parse out the contents of meta tag using HTML.Tag

    I need help with using the HTML.Tag class. I don't even know where to start...
    I want to make a method that allows me to pass in a very long string and the NAME of the meta tag.. and will return the contents of the meta tag.. any help will be super..
    sorry i do not have much of a code base to start with.. I am just guessing on how to get this to work..
    private String getMetatag(String content,String Metaname)
    String Metacontents;
    Object HTML.Tag.META;
    Object HTML.Attribute.NAME.Metaname;
         Object HTML.Attribute.CONTENT;
    return Metacontents;
    }

    One of the way to get started is to check out how to overide (extend) the class
    HTMLEditorKit.ParserCallback.. Lets say the class is called class A
    Overide the methods for
    HandleSImpleTags( HTML.Tag t, AttributeSet attribute, int pos) { }
    roughly, the implemenation in that method is like this:
    HandleSImpleTags( HTML.Tag t, AttributeSet attribute, int pos) {
    if(t.equals(HTML.Tag.META) {
    /// your procedure, what to do when encounter META tag
    // String str = (String) attribute.getAttribute(HTML.Attribute.NAME);
    // System.out.println(str);
    You would still need to find some detail examples on how to use class A .
    Roughly it is,
    parser.parse(inputstream, an_instance of_class_A, true); // method in a outer class like a main class
    parser is a instatiation of from the method getParser. This method need to be overidden as well.

  • How to parse xml file to read the tags

    Hi All,
    I am having a requirement to read the tags from the xml file(xml parsing).
    The main issue is *xml file is stored in the table with xml type column* (not placed directly in the server) and we have to read the tags from that xml file.
    Please help me to achieve it.
    Regards,
    Akshata
    Edited by: Akshata on Mar 21, 2013 3:44 AM

    Hi,
    Akshata wrote:
    The main issue is xml file is stored in the table clob/blob type column (not placed directly in the server) and we have to read the tags from that xml file.How is that an issue? On the contrary, it's better when the data already resides in the database, though it should be in an XMLType column to leverage the full capacity of the Oracle parser.
    What's the datatype of the column exactly? CLOB or BLOB?
    Either way you'll have to convert in to XMLType datatype using the XMLType constructor.
    Did you go through the countless examples on this forum? Examples with XMLTable should be helpful.
    Post some sample data and database version if you need additional guidance.
    Thanks.

  • Parse an xml file using cm tag

    I have question about Content Management and weblogic portal 9.2
    In VCR directory, I will have xml file with bellow structure
    Test Repository
    --->Test
    ----Test.xml
    Test.xml File will be like
    <main_content>
         <content>
              <Subject>Subject</Subject>
              <grade><p>This is grade Data</p></grade>
              <mark><p>This is mark Data</p><mark>
    <content>
    <main_content>
    I have used below code to retrieve the above
    <cm:getNode path="/Test Repository/Test/Test.xml" id="headernode" />
    <cm:getProperty id="node" name="_content" />
    Above code will show all the content on Jsp. i,e Subject This is grade Data This is mark Data
    But I only want to retrieve the data of <grade> tag then how can I do this? Please help
    How <cm> tag will help me here ?
    Please provide sample code if have. Your help is highly appreciated.
    Edited by: user11311969 on Sep 10, 2009 2:52 AM
    Edited by: user11311969 on Sep 10, 2009 2:53 AM

    Hi
    Thanks a lot for your swipt reply.
    I try this also But error is same.
    <x:parse var="output" xml="${xml_data}" />
    javax.servlet.ServletException: Unrecognized object supplied as 'xml' attribute to <parse>
    at weblogic.servlet.jsp.PageContextImpl.handlePageException(PageContextImpl.java:409)
    at jsp_servlet._portlets._news.__news._jspService(__news.java:
    <%=xml_data%> returning me a output just as name of file and not content --- > test.xml
    After putting isMultiple="false" i am getting output as ----> test.xml
    resultId defination
    The name of the script variable to store the value of the property in. If this is not specified, the value of the property will be printed in the JSP instead. The value of the property is returned as a collection by default, unless the isMultiple attribute is set to false.
    I think this approch is simple if we can solve this. Is there ant other way same as using tag in jsp itself to retrieve required XML tags. Please reply.. Also i am using Jsp/Html Portlet and not Page Flow Portlet
    Edited by: user11311969 on Sep 11, 2009 1:42 AM
    Edited by: user11311969 on Sep 11, 2009 1:44 AM
    Edited by: user11311969 on Sep 11, 2009 1:44 AM
    Edited by: user11311969 on Sep 11, 2009 1:44 AM

  • Parsing & handling of object and param tags

    Hi all,
    I'm working on allowing people to paste certain embedded video code into a wysiwyg / html editor we've built with the help of (amongst others) javax.swing.text.html.HTMLWriter.
    I'm facing the following problem here:
    When i try to parse the <object><param></param></object> piece, it removes the <param> tags, and incorporates these in the <object> tag. For example:
    <object width="300" height="250"><param name="allowscriptaccess" value="always"></param></object>becomes:
    <object width="300" height="250" allowScriptAccess="always"></object>All param tags get converted into the object tag as String attributes. Problem with this is that the allowScriptAccess attribute is not a valid attribute of the object tag.
    Is there any way to prevent this conversion so it will retain the <param> tags?
    Thank you in advance.
    Edited by: Floxxx on Dec 28, 2009 10:16 AM

    This seems to be default behaviour in HTMLWriter, function Write().
    There it retrieves all elements with their attributes. The attributes summed up in the param tags show up as attributes for the object tag.
    Edited by: Floxxx on Dec 28, 2009 10:54 AM

Maybe you are looking for

  • I need to install Oracle 9i

    I need to install Ora 9i but I can't download the disk2.zip, actually I download the disk1 and 3 but the disk 2 is bad, I need that version of Oracle because all my applications are in this version. Where I can find another source for download the di

  • How I can make actions for write the file name in front image

    Hello All How I can make actions for write image(file)  name in front the image automatically in photoshop cs3. Thanks

  • Crystal reports in mySAP ERP ECC 6.0

    Hi all, Our company currently has mySAP ERP implemented. I just wanted to know if it is possible to get crystal report in to our SAP implementation. And what are the steps to do that. SAP componenet version is SAP ECC 6.0 Transaction SM51 Component v

  • MacBook does not start after installing more RAM

    Ok i bought a second hand MacBook from early 2009 and planned to use it to record songs in a small home studio using GarageBand, Live and protools, it came with 2gigs Of RAM and i tought i should take it up to 4 -the max it can handle- so i bought 2

  • Data load from Infocube to Infocube 170 million records.

    Hi All, I want to load the data from 1 infocube to another infocube. Now I have developed in Development. But in production if I start the Full load it will load or any time out error it will show? bcz 17 crores records I have to load from old infocu