I have an XULRunner app. It is mostly working however I have a problem. There are some reports in the app implemented as HTML forms. One of the options for the user is to output into CSV format. In Firefox, the user is asked to save the file or open it (in Excel or whatever). In the XULRunner app I get a popup containing:
XML Parsing Error: undefined entity
Location: chrome://mozapps/content/downloads/unknownContentType.xul
Line Number 30, Column 18: &intro.label;
This seems to be related to branding as discussed here:
I think I have followed the instructions. They are a little vague in places. Here is what I have:
chrome/chrome.manifest
contains:
locale branding en-US chrome/locale/branding/
content branding chrome/branding/
chrome/branding/
contains these files: about.png
, icon48.png
, icon64.png
chrome/locale/branding/brand.dtd
contains:
<!ENTITY brandShortName "ArcaMax EC">
<!ENTITY brandFullName "ArcaMax EC">
<!ENTITY vendorShortName "ArcaMax">
<!ENTITY trademarkInfo.part1 " ">
chrome/locale/branding/brand.properties
contains:
brandShortName=EC4
brandFullName=ArcaMax EC4
vendorShortName=ArcaMax
homePageSingleStartMain=Firefox Start, a fast home page with built-in search
homePageImport=Import your home page from %S
homePageMigrationPageTitle=Home Page Selection
homePageMigrationDescription=Please select the home page you wish to use:
syncBrandShortName=Sync
chrome/locale/branding/unknownContentType.dtd
contains:
<!ENTITY intro.label "You have chosen to open">
<!ENTITY from.label "from:">
<!ENTITY actionQuestion.label "What should &brandShortName; do with this file?">
<!ENTITY openWith.label "Open with">
<!ENTITY openWith.accesskey "o">
<!ENTITY other.label "Other…">
<!ENTITY saveFile.label "Save File">
<!ENTITY saveFile.accesskey "s">
<!ENTITY rememberChoice.label "Do this automatically for files like this from now on.">
<!ENTITY rememberChoice.accesskey "a">
<!ENTITY whichIsA.label "which is a:">
<!ENTITY chooseHandlerMac.label "Choose…">
<!ENTITY chooseHandlerMac.accesskey "C">
<!ENTITY chooseHandler.label "Browse…">
<!ENTITY chooseHandler.accesskey "B">
<!ENTITY unknownPromptText.label "Would you like to save this file?">
Adding chrome/locale/branding/unknownContentType.dtd
was a guess on my part. I found the file in the firefox source tree.
Any ideas?