How to apply style to partial text within a tag in xml file

I have created a webpage using Dreamweaver CS4 Spry Regions. Everything is functioning as expecting, however now I need to apply a style to part of the text. Every occurance of the company name needs to be in italics - the problem is that the company name appears within different parts of the text within a set of tags.
http://www.certifiedangusbeef.com/private1/sales/facts/index.php
ie - <description> this is my company name which must appear in italics</description>
In this example, only "company name" needs to be italicized. We have created an XSL file that applies the italics properly when the XML file is viewed in the browser. But it does not have any effect on the final web page - as though spry is blocking the XSL or we've missed a step in linking all the files together.
Here's the XSL code:
<?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="facts.xml" --><!DOCTYPE xsl:stylesheet  [
<!ENTITY nbsp   "&#160;">
<!ENTITY copy   "&#169;">
<!ENTITY reg    "&#174;">
<!ENTITY trade  "&#8482;">
<!ENTITY mdash  "&#8212;">
<!ENTITY ldquo  "&#8220;">
<!ENTITY rdquo  "&#8221;">
<!ENTITY pound  "&#163;">
<!ENTITY yen    "&#165;">
<!ENTITY euro   "&#8364;">
]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="node()|@*">
        <xsl:copy>
            <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="text()[ancestor::description]" name="replace">
        <xsl:param name="pString" select="."/>
        <xsl:choose>
            <xsl:when test="contains($pString,'Certified Angus Beef ®')">
                <xsl:value-of select="substring-before($pString,'Certified Angus Beef ®')"/>
                <i>Certified Angus Beef<sup> &reg;</sup> </i>
                <xsl:call-template name="replace">
                    <xsl:with-param name="pString"
                    select="substring-after($pString,'Certified Angus Beef ®')"/>
                </xsl:call-template>
            </xsl:when>
            <xsl:otherwise>
                <xsl:value-of select="$pString"/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
    <xsl:template match="text()[ancestor::item]" name="replace1">
        <xsl:param name="pString" select="."/>
        <xsl:choose>
            <xsl:when test="contains($pString,'Certified Angus Beef ®')">
                <xsl:value-of select="substring-before($pString,'Certified Angus Beef ®')"/>
                <i>Certified Angus Beef<sup> &reg;</sup> </i>
                <xsl:call-template name="replace">
                    <xsl:with-param name="pString"
                    select="substring-after($pString,'Certified Angus Beef ®')"/>
                </xsl:call-template>
            </xsl:when>
            <xsl:otherwise>
                <xsl:value-of select="$pString"/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
</xsl:stylesheet>

An element attribute is set with the method
setAttribute(String name,
                         String value)or the
setAttributeNode(Attr newAttr)method.

Similar Messages

  • How can I detect a certain text within a field within CASE using IF

    Dear all,
    for a transformation / generation of values receiving from R/3 into BW I try to
    manupulate three fields. I have a problem detecting a string in a field.
    I am using a CASE with several WHEN clauses on one field. Depending on the
    value, an IF is integrated. There I look into another field evaluating, if it contains
    a certain string. E.g. IF STRING CP 'xyz' OR 'abc'.
    System gives error for the locigal expression. I also tried CS, but same error.
    How can I detect a certain text within a field and which is the right logical
    expression.
    Many thanks in advance!!!
    Claudia

    Hi,
    Folow the blow example...
    May be it helps....
    DATA: hex1 TYPE string,
          hex2 TYPE string.
    hex1 = 'FFFF'.
    hex2 = '123FF'.
    IF hex1 CP hex2.
    ENDIF.
    Cheers,
    SImha.

  • Enlarging Text Within H1 Tag... Getting Opposite Effect

    This is happening in IE and FF. I have default sized text
    within the H1 tag. But there are a couple keywords I want to put
    emphasis on, so I've sized these words up +1 via the properties
    panel.
    But it looks as if browsers are reading it as -1. The default
    text shows properly. But my keywords, instead of being shown
    larger, are shown smaller than the rest of the heading.
    I don't get it???

    > I want to apply the H1 tag
    Huh? You want to apply a tag?
    > I want the text inside to be styled using H1 (because, I
    understand, it's
    > good
    > for SEO) rather than simply setting the styles within
    #headline.
    CSS cannot do such things.
    > am I looking at applying the H1 tag on each
    > of the pages?
    I think you will have to do this manually.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Mick3496" <[email protected]> wrote in
    message
    news:g3g2cp$kro$[email protected]..
    > Hi,
    > I may be getting out of my depth here but I want to
    apply the H1 tag to
    > all
    > the text that appears with in a headline div (#headline)
    on a large number
    > of
    > pages.
    > I've used #headline to style the headline container
    (margins, border etc)
    > and
    > I want the text inside to be styled using H1 (because, I
    understand, it's
    > good
    > for SEO) rather than simply setting the styles within
    #headline.
    > Is there a way in CSS (perhaps within #headline) to
    automatically apply H1
    > to
    > all text within the div#headline or am I looking at
    applying the H1 tag on
    > each
    > of the pages?
    > Thanks,
    > Mick
    >

  • How can we get  tag of XML file using SAX

    Hi ,
    I'm parsing one SAX parser , I'have almost done this parsing. i have faced problem for one case, i'e how can we get tag from XML file using SAX parser?
    XML file is
    <DFProperties>
    <AccessType>
    <Get/>
    </AccessType> <Description>
    gdhhd
    </Description>
    <DFFormat>
    <chr/>
    </DFFormat>
    <Scope>
    <Permanent/>
    </Scope>
    <DFTitle>gsgd</DFTitle>
    <DFType>
    <MIME>text/plain</MIME>
    </DFType>
    </DFProperties>
    I want out like GET and Permanent... means this one tag which is present inside of another tag.
    Handler class like
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if(_ACCESSTYPE.equals(localName)){
                   accessTypeElement=ACCESSTYPE;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_ACCESSTYPE.equals(_accessTypeElement)) {
                   String strValue = new String(ch, start, length);
                   System.out.println("Accestype-----------------------------> " + strValue);
                   //System.out.println(" " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_ACCESSTYPE.equals(localName)) {
                   _accessTypeElement = "";
    . please any body help me

    Hi ,
    I have one problem,Please help me.
    1. How can I'll identify where exactly my Node is ended,means how how can we find corresponding nodename? in partcular place
    <Node> .............starttag1
    <NodeName>Test</NodeName>
    <Node>................starttag2
    <nodeName>test1</NodeName>
    </Node>..................endtag2
    <Node>.....................starttag3
    <NodeName><NodeName>
    <Node> .........................starttag4
    <NodeName>test4</NodeName>
    </Node>.......enddtag4
    </Node>...........end tag3
    </Node>............endtag1
    my code is below
    private final String _NODENAME = "NodeName";
    private final String _NODE = "Node";
    private String _nodeElement = "";
         private String _NodeNameElement = "";
    public void startElement(String namespaceURI, String localName,
                   String qName, Attributes atts) throws SAXException {
    if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    if(_NODE.equals(localName)){
         System.out.println("start");
         if (_NODENAME.equals(localName)) {
                   NodeNameElement = NODENAME;
    public void characters(char[] ch, int start, int length)
                   throws SAXException {
    if (_NODENAME.equals(_NodeNameElement)) {
                   String strValue = new String(ch, start, length);
                   String sttt=strValue;
                   System.out.println("NODENAME: ************* " + strValue);
    if(_NODE.equals(_nodeElement)){
                   if (_NODENAME.equals(_NodeNameElement)) {
                        String strValue = new String(ch, start, length);
                        String sttt=strValue;
                        System.out.println("nodevalue********** " + strValue);
    public void endElement(String namespaceURI, String localName, String qName)
                   throws SAXException {
    if (_NODENAME.equals(localName)) {
                   _NodeNameElement = "";
    if(_NODE.equals(localName)){
                   System.out.println("NODENAME: %%%%%%%%%");
    please help me. How can I figure node ending for particular nodename

  • How to move the data of a table from sqlplus to XML file

    Hi,
    Could you pls guide me how to move the data of a table from sqlplus to XML file.
    i want to do it from sqlplus rather than toad.pls help
    Thanks

    Oh..I'm in 9i.
    Try this out..and let me know.
    DECLARE
    CTX DBMS_XMLGEN.CTXHANDLE ;
    XML CLOB ;
    F UTL_FILE.FILE_TYPE;
    XMLC VARCHAR2(32767);
    BEGIN
    CTX := DBMS_XMLGEN.NEWCONTEXT('SELECT * FROM department1 ') ;
    XML := DBMS_XMLGEN.GETXML(CTX) ;
    XMLC:=TO_CHAR(XML);
    SHOW_ENVELOPE(XMLC);
    F := UTL_FILE.FOPEN('ATTACH_FILES','DEPT.XML', 'W');
    UTL_FILE.PUT_LINE(F,XML);
    UTL_FILE.FCLOSE(F);
    END ;
    Good luck!!!
    Bhagat
    null                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to handle paragraph styles in imported text with no tagged paragraph styles

    Hi
    Im currently trying to import a file (word file / excel I have both formats) into an indesign book and formatting the text automatically!
    My question is: How is it possible to reflow text into frames and when changing frame it changes paragraph?
    Or how is it possible to change paragraph style when forcing a line break when using text reflow?
    I have already figured out how to reflow the text, and actually also managed to relow text into the frames and change paragraph style. I know how to use the keep option, and by this change the paragraph style when e.g. changing frame break/page break etc.  (but if the content being flowed-in is not tagged with style names then I cannot figure out how to do it) The document and its content I whish to import do not have any tagged paragraphs!
    Then I tried to look into "object styles" and format a text frame on a master page with an object style, and by using a "dilimiter character" forcing the text to start in a new frame when bringing the frame into live on a page. But here I cannot make the "text frame/object style" to apply or to work.
    If any of you have a hint, I would be more than happy to hear from you
    This picture are illustrating the outcome I would to get to....

    If the incoming text does not have styles, or has only one style, there is really not much you can do other than assign styles after the import. If there are recognizable patterns in the formatting, a lot of that can be done with Find/Change, and there are a few scripts floating around that can help automate some of that.
    Also, if your styles have a a good "next style" heirarchy built in, you can select large blocks of text (up to the point where applying next style would be incorrect), then right click the style name in the paragraph styles panel and choose apply style and next style (remove overrides). Warning. Removing overrides will remove any locally applied formatting like bold or italics, so local formatting should be converted to character styles first. Applied character styles are not overrides and will be preserved.

  • How to apply style to multiple links?

    I'm a newbie here, so maybe this is a simplistic question.  I am having trouble applying a color style to multiple links on a webpage at the same time.  I have a page setup with a layout similar to the Drudge Report, which posts href links separated by horizontal rule lines.  I want to apply a color style to these links, but I'm finding I have to select each link individually in design mode to apply the style.  When I select multiple links in design mode, the color doesn't apply to the text.  It's time consuming to select each link individually.  I can do this easily in Microsoft Visual Web.  How can I do it in Dreamweaver?

    The best way is to put all related links into a division. 
    Let's say you want to have red links in your #header and white links in your #footer which has a black background.
    CSS, set up two sets of link styles:
    #header a {text-decoration:none}
    #header a:link {color:red}     /**unvisited**/
    #header a:visited {color:gray} /**visited**/
    #header a:hover,               /**on mouse over**/
    #header a:active,              /**on click**/
    #header a:focus                /**on tab key**/
        {text-decoration:underline}
    #footer {background: #000;}
    #footer a {text-decoration:none}
    #footer a:link {color:white}
    #footer a:visited {color:yellow}
    #footer a:hover,
    #footer a:active,
    #footer a:focus 
        {text-decoration:underline}
    HTML:
    <div id="header">
    <a href="some-link.html">Link in the header</a> |
    <a href="some-link.html">Link in the header</a> |
    <a href="some-link.html">Link in the header</a> |
    </div>
    <div  id="footer">
    <a href="some-link.html">Footer link</a> |
    <a href="some-link.html">Footer link</a> |
    <a href="some-link.html">Footer link</a> |
    </div>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • InDesign CS3 crashes when applying styles to pasted text with formatting.

    Running InDesign CS3, v. 5.0.2 on Windows XP, SP2
    InDesign is crashing whenever I do the following:
    1. Paste or place text from Microsoft Word -- with existing formatting preserved.
    2. Apply any character or paragraph style to that text.
    This happens 100% of the time when I try to recreate the error. It happens on more than one computer. It never used to happen in IDCS2. It's not a missing font issue.
    I've tried recreating the InDesign preference files, but it didn't work. (See help file at http://kb.adobe.com/selfservice/viewContent.do?externalId=kb400616&sliceId=1)
    Any suggestions would be hugely appreciated! This is slowing down my work a ton, and manually adding things like underline is killing me. If it persists, I'll have to roll back to CS2. :(

    We had exactly the same issue - but it only seemed to happen when a "Hyperlink" character style came in with the pasted text. In fact, the crash only happened when we tried to apply a paragraph style to a paragraph that had a hyperlink in it.
    Our solution: before we try to do anything else, we delete the "Hyperlink" character style. I can't guarantee that this will solve your issue, but it has worked for us (so far!) in those rare cases when we cut & paste Word text.
    We have never had this issue when we import ("Place") the Word file - that's generally a better workflow anyway.
    -Bill

  • How to apply style sheet to design page

    hi all,
    i have a discussion,
    how to apply a style sheet to design page in webdynpro.
    thanks
    vikash

    Hi Vikash,
    Check the below links which will you idea on the same.
    Stylesheet for WDA without integrating in SAP Portal
    Apply custom css to WebDynpro application
    Thanks
    KH

  • How to apply style sheets to table layout

    hi i want to apply styles to my table layout region, i gave style sheets which are in OAF myhtml\OA_HTML\cabo\styles but i dint find any changes in my table layout, can any give one give me an idea of how to do it....

    Check the OAF personalization guide for details on custom CSS. It won't be possible for me to summarize the whole thing here.
    --Shiv                                                                                                                                                                                                                                                                               

  • How to auto-style the pasted text at Keynote?

    Hi,
    Currently I'm preparing a presentation via Keynote but there is a problem. I gathered information from my friends as .txt and .docx files. I've chosen the "Leather Book" template. When I paste the text from the .docx file, color and font of the text doesn't change to match the "Leather Book" template. However,.txt files seem to be okay. They just take the style of template. Is there an easy way to automatically convert the style of text to match the template's default style?
    Thanks in advance.
         1. This is what happens when I paste text from the .docx file.
        2. When I paste text from a .txt file,text automatically takes the style of the template.

    Hi,
    Thanks for answering. I've just figured it out And for those who struggle with the same problem,there is another way I found out: Open the document with Pages, File> Export> Plain Text. When you save the file as plain text,you can just copy and paste without using "paste and match style".
    Have a nice day.

  • How to apply style to submit button

    Hi All,
    I am developing an application in struts where I have multiple buttons on a single form. Each button corresponds to different action to be executed, and to achieve this I have used DispatchAction.
    Since I need to submit the data, I am looking for some ways through which I can put some style on submit button, such as putting an image over the submit button,giving it some border, some color and so on. I want to do this through CSS or if not possible through CSS then as inline style.
    I am using struts-html.tld tag library to render all the HTML controls.
    Any idea how to put images over submit buttons, or if putting an image is not possible then how to have style for it so that the look of submit button changes and the user feels as if it is a graphic button.
    Any help is appriciated.
    Thanks.

    You do realise there is an <html:image> tag which
    generates the html graphical submit button (ie <input
    type="image">) ?
    There are two tags in struts:
    <html:img> - generates an image tag: <img src="...">
    <html:image> - generates a graphical submit buttonYea, I do know this. But the problem is I don't have one submit button in my page. There are mroe than one buttons and each button calls a different method of the Action class. I could not get a way to pass the parameter name and parameter value using
    <html:image> tag.
    To be more clear, I need CRUD operations in one page and they all refer to one Action class. If I use html:image tag, I can't call seperate functions as it will then call the execute method. Also I don't want to have any javascript to call the relevant method from the Action class.
    Is there any way out? I am not a pro in struts, just s beginner, so any help is more than appreciated.
    Thanks.

  • How to apply style sheet (.css) in Weblogic directory listing

    Hi,
    We are migrating a directory listing application from Apache to Weblogic.
    Earlier we did this by Apache httpd.conf entry like below :
    <Directory "/opt/apache/httpd-2.1.9/htdocs/Myreportfolder">
    IndexOptions FancyIndexing FoldersFirst NameWidth=* XHTML
    IndexOrderDefault Descending Date
    IndexStyleSheet "/css/style.css"
    </Directory>
    /opt/apache/httpd-2.1.9/htdocs folder has all it's usual resource files.
    We were able to see documents in "Myreportfolder".
    Now we have moved to Weblogic and using virtual directory mapping as below and we are trying to achieve the same thing:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <wls:weblogic-web-app xmlns:wls="http://www.bea.com/ns/weblogic/weblogic-web-app" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd http://www.bea.com/ns/weblogic/weblogic-web-app http://www.bea.com/ns/weblogic/weblogic-web-app/1.0/weblogic-web-app.xsd">
    - <wls:container-descriptor>
    <wls:index-directory-enabled>true</wls:index-directory-enabled>
    <wls:index-directory-sort-by>LAST_MODIFIED</wls:index-directory-sort-by>
    </wls:container-descriptor>
    - <wls:virtual-directory-mapping>
    <wls:local-path>/Myreportfolder</wls:local-path>
    <wls:url-pattern>/*</wls:url-pattern>
    </wls:virtual-directory-mapping>
    <wls:context-root>/getreports</wls:context-root>
    </wls:weblogic-web-app>
    We are able to view the reports but we do not get look-and-feel of Apache like directory listing.
    but we encounter below issues:
    1) File/Folder icons are not visible - we want to use style sheets in http header from the response that is returned from weblogic server
    2) Filename is limited to 29 characters when it is showing
    3) Files are not sortable as Descending order - we sorted using tag <wls:index-directory-sort-by>LAST_MODIFIED</wls:index-directory-sort-by> but the latest file is shown at the last
    We are thinking that Weblogic must be having some configuration like Apache httpd.conf where we can apply style sheets (css ).
    We would appreciate af anyone can provide better insight into the issue.
    or is it possible to extend weblogic.servlet.fileservlet class to serve this purpose.
    Thanks & regards,
    Rabi

    Hi Vikash,
    Check the below links which will you idea on the same.
    Stylesheet for WDA without integrating in SAP Portal
    Apply custom css to WebDynpro application
    Thanks
    KH

  • Applied styles aren't showing up in preview or generated file

    I have added a number of new styles to my stylesheet. They show up fine in my Design view.  However, once I apply them, then click on the preview button or even generate webhelp to see what they look like as generated, the styles are not showing up.  What am I missing?
    btw.. I am using RH10.
    Thanks!
    kb

    Hi... it's happening in the generated output as well as the preview.  I tried generating various outputs... same result... no styles applied - no apparent errors.  Here's what appeared in the Output View for each:
    Willam van Weelden wrote:
    Is the style sheet you use present in the output folder? Does the output view show any errors? Is the problem only in preview/webhelp, or does it also occur in CHM/AIR?
    It's a strange issue and we need a little more information to find out what is going on.
    Kind regards,
    Willam
    HTML/CHM
    Starting compilation...
    HTMLHELP preprocessor 10.0.0.287
    Compiling C:\Users\kbennett\Documents\My RoboHelp Projects\WEBHELP TEST\care console rev eng\!SSL!\Microsoft_HTML_Help\!chm_tmp_folder_0\wcareconsole.chm ...
    Preparing to create HTMLHELP...
    Clearing output folder...
    Preparing files for HTML Help...
    Copying files...
    Updating files...
    Finished preparing in 1 sec(s)
    Initializing compiler...
    Generating HTMLHELP (10.0.0.287)...
    Updating topics...
    Updating wcareconsole.htm...
    Warning: The size of stop file has to be limited in 512 bytes.
    C:\Users\kbennett\Documents\My RoboHelp Projects\WEBHELP TEST\care console rev eng\!SSL!\Microsoft_HTML_Help\!chm_tmp_folder_0\wcareconsole.hhp
    Microsoft HTML Help Compiler 4.74.8702
    Compiling c:\Users\kbennett\Documents\My RoboHelp Projects\WEBHELP TEST\care console rev eng\!SSL!\Microsoft_HTML_Help\wcareconsole.chm
    HHC4006: Warning:
    The file "CommonTips.bmp" is already listed in the [FILES] section of the project file.
    HHC4006: Warning:
    The file "pencil.gif" is already listed in the [FILES] section of the project file.
    HHC4006: Warning:
    The file "downarrow2.jpg" is already listed in the [FILES] section of the project file.
    HHC4006: Warning:
    The file "downarrow1.jpg" is already listed in the [FILES] section of the project file.
    HHC4006: Warning:
    The file "ex_blue_sm.jpg" is already listed in the [FILES] section of the project file.
    HHC4006: Warning:
    The file "consolemain.jpg" is already listed in the [FILES] section of the project file.
    HHC4006: Warning:
    The file "HelpBook.bmp" is already listed in the [FILES] section of the project file.
    HHC4006: Warning:
    The file "Glossary.bmp" is already listed in the [FILES] section of the project file.
    HHC4006: Warning:
    The file "HotKeys.bmp" is already listed in the [FILES] section of the project file.
    HHC4006: Warning:
    The file "CTMtodo.jpg" is already listed in the [FILES] section of the project file.
    HHC4006: Warning:
    The file "todotip.jpg" is already listed in the [FILES] section of the project file.
    HHC4006: Warning:
    The file "setup1.jpg" is already listed in the [FILES] section of the project file.
    wcareconsole.hhc
    wcareconsole.hhk
    wcareconsole.htm
    CommonTips.bmp
    consolemain.jpg
    CTMtodo.jpg
    downarrow1.jpg
    downarrow2.jpg
    ehlpdhtm.js
    ex_blue_sm.jpg
    Glossary.bmp
    HelpBook.bmp
    HotKeys.bmp
    main - disclaimer and copyright.htt
    HHC3004: Warning:
    main - disclaimer and copyright.htt :
    The HTML tag "?xml version="1.0" encoding="utf-8" ?" is not a valid HTML tag (it does not begin with an alphanumeric character).
    HHC3004: Warning:
    main - disclaimer and copyright.htt :
    The HTML tag "?rh-region_start type="body" ?" is not a valid HTML tag (it does not begin with an alphanumeric character).
    HHC3004: Warning:
    main - disclaimer and copyright.htt :
    The HTML tag "?rh-region_end type="body" ?" is not a valid HTML tag (it does not begin with an alphanumeric character).
    pencil.gif
    setup1.jpg
    SSbag03crop.gif
    todotip.jpg
    uparrow-Orange.bmp
    wcareconsole.glo
    wcareconsole.brs
    #BSSC
    default.css
    orange_up.jpg
    ACCESSccConsole.png
    BUTTON_heartstart.png
    HEADING1bar.PNG
    RoboHHRE.lng
    wcareconsole.hhc
    wcareconsole.hhk
    Processing keywords...
    Generating full-text search data...
    Compacting file system...
    Compile time: 0 minutes, 1 second
    4 Topics
    55 Local links
    0 Internet links
    0 Graphics
    Created c:\Users\kbennett\Documents\My RoboHelp Projects\WEBHELP TEST\care console rev eng\!SSL!\Microsoft_HTML_Help\wcareconsole.chm, 771,996 bytes
    Compression decreased file by 320,796 bytes.
    Finished compiling HTMLHELP in 3 sec(s)
    Compilation complete.
    for AIR output - still no improvement and the output view shows no apparent errors:
    Starting compilation...
    Adobe AIR output preprocessor 10.0.0.287
    Compiling C:\Users\kbennett\Documents\My RoboHelp Projects\WEBHELP TEST\care console rev eng\!SSL!\Adobe_AIR\BrowserBasedHelp\index.htm ...
    Preparing Adobe AIR output...
    Warning (CommonTips.bmp) : Adobe AIR cannot render BMP image in HTML.Converting to PNG format.
    Warning (Glossary.bmp) : Adobe AIR cannot render BMP image in HTML.Converting to PNG format.
    Warning (HelpBook.bmp) : Adobe AIR cannot render BMP image in HTML.Converting to PNG format.
    Warning (HotKeys.bmp) : Adobe AIR cannot render BMP image in HTML.Converting to PNG format.
    Warning (uparrow-Orange.bmp) : Adobe AIR cannot render BMP image in HTML.Converting to PNG format.
    Finished preparing in 1 sec(s)
    Initializing compiler...
    Generating Adobe AIR SSL 1.0 (10.0.0.287)...
    Processing TOC data...
    Processing Index data...
    Processing Glossary data...
    Processing Context-sensitive-Help data...
    Updating HTML topics...
    Updating wcareconsole.htm...
    Finished updating HTML topics in 1 sec(s) : total 1 topic(s).
    Processing Full-text-search data...
    Finished processing Full-Text-Search data in 0 sec(s)
    Applying Adobe AIR SSL 1.0 Template...
    Finished applying Template in 1 sec(s)
    Processing Mark of the Web...
    Added result path to RoboHelp.cfg
    Finished compiling content 'Content' in 3 sec(s)
    Finished compiling Adobe AIR output in 3 sec(s)
    here's what comes up for WebHelp:
    Starting compilation...
    WebHelp preprocessor 10.0.0.287
    Clearing output folder...
    Compiling C:\Users\kbennett\Documents\My RoboHelp Projects\WEBHELP TEST\care console rev eng\!SSL!\WebHelp\index.htm ...
    Preparing to create WebHelp...
    Preparing files for WebHelp...
    Copying files...
    Updating files...
    Finished preparing in 0 sec(s)
    Initializing compiler...
    Generating WebHelp 5.50 (10.0.0.287)...
    Processing TOC data...
    Processing Index data...
    Processing Glossary data...
    Processing Context-sensitive-Help data...
    Updating HTML topics...
    Updating wcareconsole.htm...
    Finished updating HTML topics in 0 sec(s) : total 1 topic(s).
    Processing Full-text-search data...
    Finished processing Full-Text-Search data in 0 sec(s)
    Applying WebHelp 5.50 Template...
    Finished applying Template in 2 sec(s)
    Processing Mark of the Web...
    Finished compiling WebHelp in 3 sec(s)
    Compilation complete.
    anything?  It's a puzzlement for me... and I suspect I'm missing something really simple.
    Thanks for your help!
    I'm going to try removing the updated css and replacing it with the old one that did work.  brb.

  • How to make the tags in XML file case insensitive

    Hi,
    I have a ReadXML class which reads an xml file. This class also has a method which receives a string-child from another class and uses this string-chile to match it with the child tag in the xml file, and returns the child tag's value.
    Now, my problem is this, the child tag in xml may be in a case different from the case of the string-child received from another class.
    How do I modify it, so the program does not return a null pointer exception because the strings did not match for want of uppercase or lowercase letters.
    Thanks
    Sangeetha

    I'm not sure what you are getting at. Is a string child the contents of a node treated as text?
    If you are trying to match a child node regardless of case I doubt this is possible as the XML standard says an XML document is case sensitive so if your parser ignored case it would not be XML complient.
    Hope this helps.

Maybe you are looking for