Generating HTML from Structured FrameMaker 9

Hi,
My source files are in Structured FrameMaker 9. I need to generate the output in HTML format. Is there a method to do this? Can someone guide me through the process of generating an HTML output?
Regards,
Manish

Hi Manish,
You have a number of options. I'll briefly summarize a few, but all of them involve some measure of complexity so I wouldn't be able to "guide you through" any of them.
- Use a third-party product specifically designed for this, such as Omni Systems' Mif2Go, Quadralay ePublisher, or Adobe Robohelp. If you buy the Adobe TechComm Suite, Robohelp is included. All of these products can convert any FrameMaker document to HTML, with varying levels of additional functionality related to the subsequent generation of common online help formats with that HTML.
- Save your structured files to XML and then use XSLT as a post-process on that XML. This is the more complex option, but if you have the skills, it may be more attractive since you may not have to buy anything and you'll be able to easily customize the process however you want it.
- Use the DITA structure definitions within FrameMaker, then use the DITA Open Toolkit as a post-process to generate HTML from the DITA XML. There is lots of complexity with this as well, but it has some attractiveness as the DITA structured applications and open toolkit are effectively off-the-shelf software. Additionally, everything is free, unless you want to enhance your DITA experience with a third-party addon like DITA FMx from Leximation (recommended).
- Use XHTML as your structure definition within FrameMaker, then save as XML. You'll automatically have HTML when you save your files. FrameMaker includes a structure application for XHTML but I've never used it, so I don't know how well it works. With this option, you would have a more WYSIWYG conveniences while authoring but less control over variations in the HTML output.
There may be more and there certainly are any myriad of combinations of these techiniques. Hopefully this will help get you started. If you did buy the TechComm Suite, consider RoboHelp as a starting point since you already paid for it. The third-party product route is the most expensive in terms of software purchasing, but it is usually the least complex.
One additional note - You will see "Save As HTML" or similar somewhere in the FM menus. It is a very rudimentary feature that is not likely to serve your needs. Might be worth a try since it is already there, but don't get your hopes up on that one.
Good luck,
Russ

Similar Messages

  • Broken links when PDF'ing from Structured Framemaker 8.0 in Windows XP

    We have a large number of links in our documents that are created using structured Framemaker 8.0 in a Windows XP environment. The xrefs work fine in FM, but once they have been PDF'd all of the links are broken. Since these are large documents, it can take over a day to relink everything.  All links are created using the fm-xref tag and link to other topics/items within the FM book.
    Any suggestions for what may be the problem?
    I am also posting this in the Framemaker forum.

    The Set Destination option isn't working for us either.
    This is what we are seeing:
    In our source doc, a cross-reference is created using the fm-xref structured tag. At that point the cross-reference works. We create a series of topics using cross-references the same way.
    These topics are assembled into ditamaps.  The cross-references are still working.
    A book is then created and all ditamaps are created as chapters within the book.
    At this point, the fm-xrefs stop working. In some cases, they were converted to xrefs instead of retaining the fm-xref tag. At this point, some of the formatting is ignored.  For example, an example tag that looks lovely in the left column, suddenly becomes a Heading 1 which is a chapter heading.
    Needless to say, the frustration level is very high.  I would attach, but it appears that .fm or book files are not an acceptable file type.
    Please help us. It may be something terribly simple, that we just can't see anymore because we're cross-eyed from troubleshooting.
    We love FM and would like to continue to use it, but not if it causes this type of frustration. In fact, we're considering becoming nurses.

  • How do I generate HTML from XML & XSL using XSL Processor ?

    I want to generate a HTML from XML & XSL using XDK for C on
    linux-8i.
    I run the XSLSample well.
    But it only generate a XML from a XML & a XSL.
    Can any one give me some advise or sample code?

    Just use HTML tags instead of xml tags in your stylesheet, and
    you'll generate HTML instead.
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:template match="/">
        <html>
          <body>
            <xsl:for-each select="ROWSET">
              <table border="1" cellspacing="0">
                <xsl:for-each select="ROW">
                  <tr>
                    <td><xsl:value-of select="EMPNO"/></td>
                    <td><xsl:value-of select="ENAME"/></td>
                  </tr>
                </xsl:for-each>
              </table>
            </xsl:for-each>
          </body>
        </html>
      </xsl:template>
    </xsl:stylesheet>

  • Generate HTML from XML and XSLT

    Hi,
    I have asked in different forum but did not get my answer so asking here again
    i want to generate a HTML file from XML and XSLT in a temp folder and then read it into a java.lang.String, so can email it or write to a database file.
    how can i do it, is there any engine which will merger XML and XSLT and give a HTML file or a String as output
    Ashish

    Hi,
    Follow the simple steps.
    1) Create XML Document (I hope u have it)
    2) Create XSL Stylesheet for your XML document
    3) Put both files in one directory some where in your local system or web server upto u
    4) Invoke the XML document from webbrowser and you are done.
    http://localhost/test/Catalog.xml OR C:\XXXXDIR\test\Catalog.xml
    For Ex: XML File Content, Catalog.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <?xml-stylesheet type="text/xsl" href="Catalog.xsl"?>
    <catalog>
    <cd>
    <title>Empire Burlesque</title>
    <artist>Bob Dylan</artist>
    <country>USA</country>
    <company>Columbia</company>
    <price>10.90</price>
    <year>1985</year>
    </cd>
    </catalog>
    XSL File Content: Catalog.xsl
    <?xml version="1.0" encoding="ISO-8859-1"?><xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="/">
    <html>
    <body>
    <h2>My CD Collection</h2>
    <table border="1">
    <tr bgcolor="#9acd32">
    <th align="left">Title</th>
    <th align="left">Artist</th>
    </tr>
    <xsl:for-each select="catalog/cd">
    <tr>
    <td><xsl:value-of select="title"/></td>
    <td><xsl:value-of select="artist"/></td>
    </tr>
    </xsl:for-each>
    </table>
    </body>
    </html>
    </xsl:template></xsl:stylesheet>

  • Generate HTML from Report 6i

    Hi everyone,
    I am using Report 6i and in some of my reports while I want to generate in Html. It shows error like "Ora -0999 Implementation Error". Plz let me know how cani solve this problem. Surprizingly some reports perfectly works and can generate to HTML without any problem.
    Also Plz let me know if it is possible to export all report contents into Excel worksheet without writing any code from PL/ SQL and directly from report runtime.
    Plz send me reply in my email address [email protected]
    Thanks/ Bijesh

    Hi Bijesh,
    This may be relevant for you too:
    REP-0999 Unimplemented Error
    Navneet.

  • Generate html from database before runtime (infrequent sql query)

    Hi,
    I have a SQL query which I want to use to update one section of my web page but the data only changes once a month.  I don't need a dynamic page where the results are executed against the database every time the page is opened (results display on the main index.htm of my web site).
    Is there some way to configure DW (preferably DW CS3) so that it will query the database and insert the results into my static html page being edited on my machine?
    Is there a general technique for including SQL data in static web pages in DW?
    Thanks,
    G

    tx for the tip.
    reason: gobaddy's mysql servers are slow pokes.  i have a larger application where the list would be a dozen or more pages long and only the last entry changes with my update each month.  figured I'd generate all the pages and then just update the first one but your method is the same thing minus all the fuss of screwing around with the first page all the time.

  • How to generate HTML from XML and XSL?

    Hi all,
    I am new to XML.
    Can I somehow see the HTML-Output of the XML-File, when I have the XSL-File too, but don't use any XML-Editor (XMLSpy) and FOP? I do not want use any additional tools - only the database tools.
    What I need for this?
    Do I need the XSLT-File too?
    I am waiting for your answers, when possible with examples please.
    Regards
    Leonid Pavlov

    Please post on the General XML forum.

  • Generating html from word processing document

    I've got a fairly short two-column newsletter with six graphics that I want to publish in html using AW v6.2. I select save as html but the resulting document includes none of my text or graphics, hmmm. So I look at the web templates starting points and export these templates as html and get the same result - headers but no content. TIA!

    If you are expecting to get a page of HTML that will look exactly like your word processing page, that is not going to happen. ThisUser Tip tells you probably more than you want to know about creating HTML in Appleworks, but I would strongly suggest not doing this in Appleworks. If you don't have a regular web program, download the free NVU (nvu.org) and use that instead.
    BTW, the "web templates" in Appleworks are not templates for web pages, but rather regular appleworks document templates that are hosted on a web server for download.

  • Is there any danger in opening an unstructured document in structured Framemaker?

    I know that it's not a good idea to open a structured FrameMaker file in the unstructured FrameMaker interface, and that there's a warning about this when you try.
    What's come up for us however is whether there's any problem with people using the Structured FrameMaker interface to edit unstructured files.
    We have a machine set up for people who are not expert or highly skilled with FrameMaker, and since we have both structured and unstructured documents, the question is whether to leave it set as the structured interface, or the unstructured interface. They're just making small content edits in most cases, for anything more involved they ask me.
    So:
    If it's set to unstructured:
    If they open an unstructured document, all is well.
    If they try to open a structured document, they will see the warning. I can tell them what to do if they see it. (This might mean telling them to change to structured, or just to give me that file to edit instead.)
    If it's set to structured:
    If they open a structured document, no problem.
    If they open an unstructured document however -- is there any danger if they edit it that way? Will saving from structured FrameMaker change anything about the file?
    In the latter case, opening unstructured in structured Frame, there's no warning, it just opens with a blank structure view window, if they even open that window.
    I have to imagine that Adobe separated the two interfaces for a reason, but possibly it has more to do with just not needing all of the resources like XML and DITA menus when you're in unstructured.
    I realize that the real answer is not to let people unskilled with FrameMaker use it to edit documents, but this is the way things are for the moment. If it's set to unstructured, they'll have to switch over in order to edit structured files, and then be sure to remember to switch back. Leaving it set as structured in some ways seems the best choice, but only if it won't damage unstructured files that way.
    Thanks

    timezoned wrote:
    I know that it's not a good idea to open a structured FrameMaker file in the unstructured FrameMaker interface, and that there's a warning about this when you try.
    What's come up for us however is whether there's any problem with people using the Structured FrameMaker interface to edit unstructured files.
    We have a machine set up for people who are not expert or highly skilled with FrameMaker, and since we have both structured and unstructured documents, the question is whether to leave it set as the structured interface, or the unstructured interface. They're just making small content edits in most cases, for anything more involved they ask me.
    So:
    If it's set to unstructured:
    If they open an unstructured document, all is well.
    If they try to open a structured document, they will see the warning. I can tell them what to do if they see it. (This might mean telling them to change to structured, or just to give me that file to edit instead.)
    If it's set to structured:
    If they open a structured document, no problem.
    If they open an unstructured document however -- is there any danger if they edit it that way? Will saving from structured FrameMaker change anything about the file?
    In the latter case, opening unstructured in structured Frame, there's no warning, it just opens with a blank structure view window, if they even open that window.
    I have to imagine that Adobe separated the two interfaces for a reason, but possibly it has more to do with just not needing all of the resources like XML and DITA menus when you're in unstructured.
    I realize that the real answer is not to let people unskilled with FrameMaker use it to edit documents, but this is the way things are for the moment. If it's set to unstructured, they'll have to switch over in order to edit structured files, and then be sure to remember to switch back. Leaving it set as structured in some ways seems the best choice, but only if it won't damage unstructured files that way.
    Thanks
    As Matt notes, the extra structured stuff in the interface may be confusing to users familiar with unstructured FM. However, it will also be confusing when unstructured FM users try to find and use the paragraph and character catalogs, and some other unstructured features that are perfectly usable in structured FM, but are not immediately visible in the structured interface.
    One way to improve and simplify the FM environment for users who are able to edit text, but shouldn't be manipulating other tools, is to customize the interface. Search Google for terms like "customizing framemaker" without quotes. Recent FM releases feature the ExtendScript ToolKit, which offers new ways to customize FM, in addition to those in the older methods of modifying the maker.ini and configui files. One option if you follow this path would be to create custom Windows icons that call startup scripts which then call FM. Before the script launches FM, it can copy specified configuration and ini files into the user's environment, so that when FM starts up, it's got just what you design it to have. A simple approach here would be customize unstructured FM's interface to have only the minimum set of menu items and other things you specify, and launch unstructured FM. An icon could be named for the user, like SallyJonesFM, or for the task, like FMUnStrEditing.
    I'm sure some folks on the forum have taken an approach like this for their users, and can offer some advice from their vast experience.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How to generate xhtml from xml

    Hi All
    I've an application that will generate an xml file in this way:
    FileWriter salidaxml = new FileWriter(new File("reporteHP.xml"));
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder = dbf.newDocumentBuilder();
    Document doc = docBuilder.newDocument();
    // Some nodes and elements added here
    TransformerFactory transFact = TransformerFactory.newInstance();
    Transformer trans = transFact.newTransformer();
    trans.setOutputProperty(OutputKeys.INDENT, "yes");
    trans.setOutputProperty(OutputKeys.METHOD, "xml");
    trans.setOutputProperty(OutputKeys.ENCODING, "ISO-8859-1");
    trans.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
    Result result = new StreamResult(salidaxml);     
    try {               
        trans.transform(new DOMSource(doc), result);               
        transformer.transform(source, rslt);           
    } catch (TransformerException te) {               
        System.out.println(te.getMessageAndLocation());               
    throw te;           
    salidaxml.flush();           
    salidaxml.close();Code run ok but I want to know how could I add code to generate a xhtml file using a dtd and a xsl I've or at least how to add the following at the begin of the xml generated file:
    <?xml-stylesheet type="text/xsl" href="reporte.xsl"?>Thanks in advance
    <xl>

    Hi
    Thanks for your help but I really didn;t found what I'm lookin for in this page.
    This page explains how xslt transform xml in xhtml. I know this point, I want to know HOW could I make it from my application. I guess there are a transform class that could generate html from a xsl template, but I couldn't find the way to do it and couldn't find examples too.
    <xl>

  • HTML from JSP

    Hi all,
    I got a problom,
    How can i get the output of a JSP page into a java class?.That is,The original JSP page sends the generated HTML to the browser.What i need is that generated HTML into a java class.
    Suppose i got an Email class ,
    String myContent = -------
    Email.setContent(mycontent);
    The string myContent should be the dynamically generated HTML from a JSP page.
    that is,
    String myContent = output from CustInfo.jsp.
    How to achieve this?.

    >
    String myContent = output from CustInfo.jsp.
    How to achieve this?.Open a URLConnection (or HttpURLConnection) to CustInfo.jsp,
    use the getInputStream() method to get a reference to the input stream for the jsp,
    read this stream (which will be the HTML for CustInfo.jsp) into the String.

  • HTML from XSL

    Is there a direct benefit of generating html from an xml document via XSL instead of writing regular html?Will the html generated from the XML document conform to XHTML standards?
    urgent!
    thank you

    Is there a direct benefit of generating html from an
    xml document via XSL instead of writing regular
    html?Yes. In the first case the computer is doing the work and in the second case you are doing the work. In a situation where something needs to be done repeatedly, but differently every time, it's preferable to have the computer do that.
    Will the html generated from the XML document
    conform to XHTML standards?If the XSL is written that way, yes. It's possible to write an XSL that produces HTML that doesn't conform to the XHTML standard.
    urgent!What was so urgent about those questions?

  • Generating HTML in RoboHelp 10 from FrameMaker 11

    Hi,
    In FrameMaker 11, i have a .fm source file that uses a custom template. In RoboHelp 10 (trial), how do I create a HTML help file from the source .fm file? Please note that I have a separate .fm template that contains the mappings for the generated HTML (which is different from the source file).
    Thanks for your help!
    Kathy

    You can use the FM template file to control the formatting from FM, but that's a bit like driving the car from the backseat
    Jeff is right, though, that sometimes the template is required and the blog post he referenced will help you to do that.
    Instead, consider watching me do a one-hour run-through of the process at http://adobe.ly/16hU5db.
    Beyond that, please contact me offline to help with specifics.
    -Matt
    Matt R. Sullivan
    co-author Publishing Fundamentals: Unstructured FrameMaker 11

  • I am able to generate PDF from Framemaker file but not able to generate pdf from book in robohelp

    Hi,
    Using robo help i am able to generate pdf  from a single framemaker file.
    but when i am importing whole book then i am not able to make it.
    And also it is not showing any error on console
    It goes to hang like situation and i have to close it from task maneger.

    Ok, silly question - why are you bothering to try and create PDFs from RH when you've got FM? FM to PDF produces great results; RH to PDF involves having to go through Word - i.e. RH - Word - PDF = too much work IMHO.

  • I wish to generate reports from the database an out put it but i need to enter a date from and to ina  html input box

    i wish to generate reports from the database an out put it
    but i need to enter a date from and to ina html input box
    in the input box a data of range will be input from a start
    to latest
    latest being the default as today's date.
    any help tips snipplets, concepts , turot=rails.
    thanks

    easycfm.com has tutorials for people who are brand new.
    If you don't know much about sql, I have heard good things
    about the book, Teach Yourself SQL in 10 Minutes by Ben
    Forta.

Maybe you are looking for

  • Migration from 10.2.8 to SL

    I have been using my imac running 10.2.8 for 8 years!! A very nice friend knew I needed a new computer and surprised me with a brand new imac 22" running SL. Imagine my surprise! But, now this is my issue, I have all this "stuff" on my old comp (itun

  • Change of transitions

    Hi again all! I would like to change of transition type. There is just one type of transition for appearence of a component, is it possible to do like on Microsoft PowerPoint (for example) with a chekckerboard transition, for example. Thank you for y

  • Segment Reporting.... What happens to Inter Company Transactions

    I have 2 simple questions, please help me if you know the answers: 1. Inter Company: When we report at Segment Level (ECC 6.0) how do we eliminate Intercompany sales for company codes belonging to same segment. Is there a standard program to do this.

  • Can I restrict the access of the payable Invoices

    Dear Friends, can please anyone help me in the following Issue which i am facing ASAP? Payable Invoices( R12.1.1) created by the head office should not be accessed by other branches, but head office can see all the payable invoices created by anyone.

  • Error in discoverer 3i, need help!

    My problem is the folowing: "When I try to access via browser, I always get the following error: Unable to connect to the Oracle Discoverer Application Server. Communication error or ORB internal error. I think it's a ORB error, because it is not a c