In my firefox addon, I have a few !ENTITIYs that I want to put in a "global.dtd" file. Then, in all of my .xul files, I want to access both that global.dtd as well as that .xul file's particular .dtd file.
Thus, for code1.xul, I would load code1.dtd and global.dtd. Then, for code2.xul, I would load code2.dtd and global.dtd.
Thus, I could assure the same strings to be used in the global.dtd.
Can I do this? How do I write the definition? You can't put two doctypes.
<!DOCTYPE overlay SYSTEM "chrome://myaddon/locale/global.dtd">
<!DOCTYPE overlay SYSTEM "chrome://myaddon/locale/code1.dtd">