How can I process an xml/xsl file pair that require the Internet Explorer dom?

My personal navigation device (GPS) generates xml files that contain a record of where I have been, together with when I was there, how fast I was driving at the time, etc. taken at approx. 5 second intervals. This xml file has an xml-stylesheet with type="text/xsl" but that stylesheet is written to the Internet Explorer dom standard. The stylesheet interfaces with google maps to display a map that shows my path and it also displays tables of data including distances that are computed from latitude/longitude pairs. I can supply a small sample xml file and the xsl file as well if they are needed to diagnose my problem. I cannot find any browser other than Internet Explorer that handles these files satisfactorily. I prefer to process them from a Linux environment but with the Internet Explorer requirement I cannot do so. The browsers that I have tried and that have failed are Firefox, Opera, Konqueror, Chrome, Epiphany, Midori, Arora, and Links.
One line in the xls file in particular gives grief in the browsers like Firefox that at least attempt to do more than display the raw xml file:
xmlns:cymath="urn:smiletime-cybarber-net:math"
A comment in the xls file says this about the problem:
"Tested and currently only compatible with Internet Explorer version 6 or version 7 (as this script includes JScript functions called by XSL, msxsl:script extension is required; also, the produced XHTML document embeds javascript functions exploiting the IE DOM).
"In order to provide compatibility with Firefox, other than checking the compatibility of the IE DOM, the cymath:distCosineLaw function still needs to be ported."

You may get an answer, but it is not really the sort of subject covered by this forum, I suggest you try [http://forums.mozillazine.org/viewforum.php?f=49 Mozilazine] and if you solve the problem post back again.

Similar Messages

  • How can i print a 8 page file so that after page 2 follows 7  and then 6-3-4-5?

    How can i print a 8 page file so that after page 2 follows 7  and then 6-3-4-5?

    Download make booklet script from this link. You will see download for CS3 along the left side. You don't mention which version of CS you have but this should work. You can do a search for make booklet script CS4 in google if you need that one.
    Place the script in your Applications>InDesign>scripts folder. Start ID, open you file, go to window>scripts>make booklet. Double click and the script will automatically create book spreads. No crops, reg or page info though. There are several cheap apps you can buy that will make books with crops, reg marks and page into for you. You'll need to search forum or google.

  • Hello good morning ....how can I have all my PDF files  in Ibooks at the same time in my iPad and my iPhone, Thanks.

    hello good morning ....how can I have all my PDF files  in Ibooks at the same time in my iPad and my iPhone, Thanks.

    That's exactly how it's going to work. Unless you've set up separate iTunes playlists for your devices, the books will be deposited the books section on iTunes, and will appear as PDFs.
    As Gus2259 said, you can use iCloud or Dropbox, or transport it through iTunes via an attached computer, or even use a cable.

  • How can i make my scrollpane in a way that at the opening of a frame it doe

    How can i make my scrollpane in a way that at the opening of a frame it does not scroll down automatically?
    code is below
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.net.*;
    import javax.swing.JOptionPane.*;
    import java.io.*;
    import javax.swing.colorchooser.*;
    import javax.swing.filechooser.*;
    import javax.accessibility.*;
    import javax.swing.border.*;
    import java.sql.*;
    public class Signup extends JFrame
         JLabel p1,p2,p3,p4,p5,p6,uid,upass,cpass,fname,sname,hint,sl,ed,age,adr,cit,zip;
         JTextField uname,fnamet,snamet,hintt,adrt,adrt1,city,zipcode;
         JPasswordField upassw,cpassw;     
         JComboBox sex,education,agegr;
         Signup()
         Container c=getContentPane();
         c.setLayout(null);
         c.setBackground(Color.white);
         /** JPanel c = new JPanel();
         c.setBackground(Color.white);
         int v = ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS;
         int h = ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
         JScrollPane jsp = new JScrollPane(c, v, h); ***/
    p1=new JLabel("Create Your Icafe!ID",10);
         p2=new JLabel("Personal Information");
         p3=new JLabel("User Address");
         p4=new JLabel("Tell Us About Your Hobbiess (Optional) ");
         p5=new JLabel("Tell us something about what you like. This will help us choose the kind of content to display on           your pages.");
         p6=new JLabel("--------------------------------------------------------------------------------");
    uid=new JLabel("User Id");
         upass=new JLabel("Password");
         cpass=new JLabel("Confirmation Password");
         fname=new JLabel("UserName");
         sname=new JLabel("SurName");
         hint=new JLabel("Hint Question");
    sl=new JLabel("Sex");
         ed=new JLabel("Education");     
         age=new JLabel("Age Group");     
         adr=new JLabel("Address");
    cit=new JLabel("City");
    zip=new JLabel("ZipCode");
         uname=new JTextField(10);
         uname.requestFocus();     
         uname.setToolTipText("UserName");
    upassw=new JPasswordField(10);
         upassw.setToolTipText("Password");
         upassw.setEchoChar('*');
         cpassw=new JPasswordField(10);
         cpassw.setToolTipText("Confirmation Password");
         cpassw.setEchoChar('*');
         fnamet=new JTextField(10);
         fnamet.setToolTipText("FullName");
         snamet=new JTextField(10);
         snamet.setToolTipText("SurName");
         hintt=new JTextField(10);
         hintt.setToolTipText("Hint Question");     
    String[] gender={"[Select one]","Male","Female"};
         sex = new JComboBox(gender);          
    String[] edu={"[Select one]","S.S.C","Inter","Graduate","Post Graduate"};
         education= new JComboBox(edu);     
    String[] ageg={"[Select one]","0 - 15","16 - 35","36 - 70","70 - 100"};
         agegr= new JComboBox(ageg);     
    adrt=new JTextField(15);
         adrt.setToolTipText("Address");
         adrt1=new JTextField(15);
         adrt1.setToolTipText("Address");
         city=new JTextField(15);
         city.setToolTipText("City");
    zipcode=new JTextField(15);
         zipcode.setToolTipText("ZipCode");
         p1.setBounds(200,70,160,30);
         uid.setBounds(350,100,160,30);
         uname.setBounds(400,100,160,30);
         upass.setBounds(335,140,160,30);
         upassw.setBounds(400,140,160,30);
         cpass.setBounds(260,180,160,30);
         cpassw.setBounds(400,180,160,30);
         p2.setBounds(200,220,160,30);
         fname.setBounds(330,260,160,30);
         fnamet.setBounds(400,260,160,30);
         sname.setBounds(335,300,160,30);
         snamet.setBounds(400,300,160,30);
    hint.setBounds(315,340,160,30);     
    hintt.setBounds(400,340,160,30);
         sl.setBounds(370,380,160,30);     
         sex.setBounds(400,380,160,30);
         ed.setBounds(335,420,160,30);     
         education.setBounds(400,420,160,30);
    age.setBounds(330,460,160,30);
    agegr.setBounds(400,460,160,30);
    p3.setBounds(200,500,160,30);
         adr.setBounds(340,540,160,30);
         adrt.setBounds(400,540,160,30);
         adrt1.setBounds(400,580,160,30);
         cit.setBounds(370,620,160,30);
         city.setBounds(400,620,160,30);
    zip.setBounds(590,620,160,30);
    zipcode.setBounds(640,620,160,30);
         Font font = new Font("SansSerif",Font.BOLD, 12);
         setFont(font);
         c.add(p1);
    c.add(uid);
         c.add(uname);     
         c.add(upass);
         c.add(upassw);
    c.add(cpass);
         c.add(cpassw);
    c.add(p2);
    c.add(fname);     
         c.add(fnamet);
    c.add(sname);
    c.add(snamet);
         c.add(hint);
    c.add(hintt);     
    c.add(sl);
    c.add(sex);
    c.add(ed);
         c.add(education);
    c.add(age);
         c.add(agegr);
    c.add(p3);
    c.add(adr);
         c.add(adrt);
         c.add(adrt1);
    c.add(cit);
    c.add(city);
    c.add(zip);
    c.add(zipcode);
         setResizable(false);
         //int a=DO_NOTHING_ON_CLOSE;
         //setDefaultCloseOperation(a);
         show();
         setSize(800,500);
    // Border raisedBorder = new BevelBorder(BevelBorder.RAISED);     
         setContentPane(c);     
    public static void main (String arg[])
         try{
         UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
         }catch(Exception s)
         Signup swu=new Signup();

    just try the following:
    jsp.getVerticalScrollbar().setValue(0);after inserting and adding all your components. this will set the vertical scrollbar up to the very first line.
    regards

  • How can i do an advanced search? do not require the sponsored results

    how can i do an advanced search? do not require the sponsored results

    https://addons.mozilla.org/en-US/firefox/addon/99836/ does this
    The bug filed for having this built-in to Firefox is:
    https://bugzilla.mozilla.org/show_bug.cgi?id=298127

  • HT5449 How can my MacBook Pro to read to me articles on the internet? To just speak to me what is on there so I do not have to read the articles.

    How can my computer read to me an article on the internet. Instead of me dictating and it typing, the computer reads to me what is on the screen.
    How can I do this? I am researching.

    Look in the Accessibility System Prefs for Voice Over.
    You can also select a block of text and right-click, choose Start Speaking from the Speech submenu.

  • How can one produce dynamic XSLT (.xsl) file with JSF

    I've googled, I've searched and I've found nata on how to do this. I've tried trial and error but I still cannot get my .xhtml file to include my <xsl:stylesheet ..> declarations and syntax in my final output to the browser. Anybody have any (non-hack) ideas on how to do this? Actually, if hacks is all there is, then I suppose they are welcome too, but a legit way is preferable. Tutorials and documentation fail to tell me how to do this. As illustrated in the following, the xsl specific content removed from the final output to the browser. I don't want it removed. Any ideas?
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE xsl:stylesheet>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
        <xsl:strip-space elements="*"/>
        <xsl:output method="html" indent="no"/>
    <xsl:template match="xxx">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:h="http://java.sun.com/jsf/html"
              xmlns:t="http://myfaces.apache.org/tomahawk">
         <ui:composition template="xxxx">
    </html>
    </xsl:template>
    </xsl:stylesheet>{code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    I realized this after viewing the first several outputs and decided to post this as a problem on this forum right here at this particular location.
    I also discovered that I was able to include outer text by wrapping everything within <ui:decorate template=".."></ui:decorate>{code} tags. I simply wish to know how one manages to include their own namespaced tags in the final output when they are NOT outputing to standard HTML/XHTML, such as XML or XSL.
    Thanks for your input.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How can i retrieve data from a macbook pro that has the flashing folder with an ? mark in it, to a brand new iMac

    I want to do a data recovery of my 15" MBP that has the flashing folder w/ ? mark in it, to an iMac 21.4"; how can i go about that?

    DJSMACC wrote:
    How do I go about removing the internal drive and mount it to an external enclosure @Linc Davis??? Sorry that I'm not too hip with all the technology lingo & etc?
    You'll have to watch the video and buy a few tools to extract the driive.
    http://eshop.macsales.com/installvideos/
    Then use something like this to connect to the other Mac or PC with MacDrive installed.
    http://eshop.macsales.com/item/Newer%20Technology/U3NVSPATA/
    You also can get the same adapter elsewhere online for as low as $12 I've seen.
    Likely it's a USB 2,1 which your Mac's can only accept USB 2,1 anyway, no need to pay more for a USB 3 unless you want too.
    No compensation for site or product mention
    You likely should be having a professional or Apple tech attempt to bypass the firmware password if you forgot it, it's the best way to go about things.
    Just because the Mac has a spinning wheel gray screen at boot doesn't mean it's ruined, you just need to bypass the firmware password and then from there fix the machine's cause for not booting, which is likely a software issue from a third party kernel extension file.
    Step by Step to fix your Mac
    You should know that opening the iMac could likely ruin it and will ruin any warranty or AppleCare, and if it's a Early 2011 model or later you can't replace the hard drive yourself as Apple has proprietary software installed on the drive that needs to "talk" to OS X to control the fans speeds.
    Good Luck.

  • How can I make my email boxes smaller, so that all the stuff does not show after I have opemed it?

    The email that I am reading is very large with a lot of stuff that I do not need to see. How can I make my box smaller?

    ''hhennes [[#question-1047185|said]]''
    <blockquote>
    The email that I am reading is very large with a lot of stuff that I do not need to see. How can I make my box smaller?
    </blockquote>

  • HT1145 How can I get an old mac with 9.1 on the Internet to upgrade it. There is on ethernet port or USB port....only a CD-ROM drive.

    How can I get a Mac laptop on the Internet to upgrade it from OS 9.1 to OS X? it only has a CD-ROM drive..... no USB port or cat 5 port.

    The three notebooks which may have had Mac OS 9.1 have these identifier articles as well, which you can also
    look on the frame of your screen:
    http://support.apple.com/kb/ht2287 - Powerbook G3
    http://support.apple.com/kb/ht3065 - Powerbook G4
    http://support.apple.com/kb/ht1772 - iBook

  • How can I import my 'favorite places' which are now on my Internet Explorer?

    I am used to working on Internet Explorer where I have my favorite places..how can I import them to Mozilla Firefox?

    See [[Importing bookmarks and other data from Internet Explorer]]

  • How can I get photo templates in iWeb to display on Windows Internet Explorer?

    I am creating a web site, using iWeb 3 (latest version), for a friend's band.  I have created a Photos page, using the My Album template.  I have also created various bio pages, using the Photo template.  When I tesy the pages on my virtual Windows maching, with Internet Explorer 9, I can only see the text and no photos.  Anyone have a similar problem and a solution, being to continue to use the iWeb page templates?
    Thanks in advance
    WeetMab

    virtual Windows
    you can not depend virtual machine, it's an emulator and emulator is not the real thing... just like open a web page in safari and use develop --> user agent.
    you have to test it out with a real pc and real ie browser.
    iweb photos/albums page are loaded with javascript widgets, so turn on javascript in you pc/browser.
    optimize photos/albums page will have no effects with javascript widgets.
    fact check people, a lot thing won't when javascript is off... start out with navbar...

  • How can I set a default save file for scans using the Solution Center?

    Using Windows 7 - 64 bit.   HP Photosmart Premuim C-309a All-In-One Printer.
    Because of a Windows crash, I had to install a new drive and reload Windows. I also reloaded other software like the HP Solution Center & Drivers. My problem is that I can't find how to set a default folder for my scans.  This is NOT mentioned in the user manual but it was originally accomplished by HP Tech Support when the printer was new.  Can anyone relate how to set default folders for my scans?
    Thanks.
    Tango
    This question was solved.
    View Solution.

    Here is a document on how to scan through Windows 7. 
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=c03476857
    Click either solution center or the icon of the printer on your desktop. Here select "Scanner Actions" (or the analogous selection). When the window pops up from the HP software it should provide you with options for file type (.tiff, .pdf, .jpg) as well as resolution and media size. Here on this page there is also an option for you to go to the advanced options. Using this you can alter the default safe folder. 
    Let me know if that helps you out! 

  • How can I dynamicall​y read a file and show/plot the data in the GUI?

    Hi, everyone,
    I hope to implement a VI with the following function:
    Usually, when we "read a file" in VI and then show the data in the Waveform Chart or other display GUI, the VI will first read and record all of the data from the file and then show them simultaneously. Now, I want to implement a VI, which could read  the data from a file and display it in a time series. That is, I can define a "sampling rate" or "reading rate", like 100 data points / second,  then the data points could be correspondingly shown in Waveform Chart one by one as the time moves on. The key purpose is to simulate a real-time data collection module using an existing file.
    I don't know how to implement this function. Any suggestion and solution are really appreciated.
    Thanks.
    Zhanpeng

    Heres the same effect, just a different approach :
    The code in the red box was used to create data that you would be getting from a file.
    What you could do is (shown above) :
    - Read all of the data
    - Index only one value at a time, and set the 'sampling rate' using a wait in a while loop.
    - Build an array using this value, which will simulate collecting data in real time.
    - I used an array of the iterations as X-values, because they coincidentally correspond to # seconds in my example
    - I then bundled the time array (xvalues) with the values from your file (yvalues)
    - Send that bundle to an XY graph
    That should work, though you could implement some different logic for different sampling rates.
    Let me know if you need a hand with that.
    Message Edited by Cory K on 02-26-2009 11:36 AM
    Cory K
    Attachments:
    graph from file.PNG ‏10 KB

  • How can I prevent apps from reopening files on startup of the app?

    For most of my working day I stay with OS 10.6.8 because it has what I need and hasn't introduced things that interfere with my work flow. However, sometimes I must use Mavericks and find that the tendency for previously opened files to be reopened by an app when I restart that app is very annoying. I've tried to turn off all instances that I could find that enabled a "re-open previously opened files" but it still happens. Is this a "feature" of OS 10.9.5 or something that is happening within the individual apps themselves? Any idea how I can eliminate this activity?

    System Preferences/General - check 'Close windows when quitting an app'.

Maybe you are looking for

  • MozBackup no longer works. Please help.

    When I try to backup Thunderbird using MozBackup, just before the process finishes I get the error message "Backup''s file isn't valid. Backup has failed". This has never occurred when I have backed up Thunderbird in the past. Can anyone help me plea

  • Change itunes from PC to Mac with external drive

    Been using a Dell with itunes for my music system in mt home. I installed an additional 80G that i've maxed out with tunes. This is in addition to the 30G that came with the system. I have a Mini and just purchased a 500G Western digital external dri

  • How to pass  Goods receipt date in calling  BAPI_INB_DELIVERY_CONFIRM_DEC?

    Hi all experts, In my case ,I want to use FM:BAPI_INB_DELIVERY_CONFIRM_DEC to post the inbound delivery .  I want to pass goods receipt date when calling this fm. according to fm documentation as below,can use HEADER_DEADLINES to do it ,but in coding

  • Expose Preferences Keep Changing Themselves

    I have Active Screen Corners activated for Expose. However the upper left corner keeps unactivating itself. Is there any way for me to track this preference in the system to see what is modifying it?

  • Error 1335 installing java 2 SDK_SE v1.4.2_06

    The cabinet file "data1.cab" required for this installation is corrupt. It�s the massage I m receiving while trying to install in my Windows XP Professional and on Windows 2000 server SP4. I was trying to install it after uninstalled it and then the