What is wrong with this Install.rdf file?

Discuss application theming and theme development.
Post Reply
DevynCJohnson
Posts: 17
Joined: May 24th, 2013, 5:43 am

What is wrong with this Install.rdf file?

Post by DevynCJohnson »

I have this install.rdf file for a Firefox theme that I am developing. The jar file will not install on Firefox. I get a message stating that the theme is corrupted. If I replace my install.rdf file with an rdf file from another theme, it works. So, where did I go wrong in my install.rdf file? I am assuming that the error lies in the UUIDs.

Code: Select all

<?xml version="1.0"?>
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     xmlns:em="http://www.mozilla.org/2004/em-rdf#">
  <Description about="urn:mozilla:install-manifest">
    <em:type>4</em:type>
    <em:id>c7446130-c419-11e2-8b8b-0800200c9a66</em:id>
    <em:version>0.1</em:version>
    <!-- Target Application this extension can install into, with minimum and maximum supported versions. -->
    <em:targetApplication>
      <Description>
        <em:id>ec8030f7-c20a-464f-9b0e-13a3a9e97384</em:id>
        <em:minVersion>4.0b7</em:minVersion>
        <em:maxVersion>21.*</em:maxVersion>
      </Description>
    </em:targetApplication>
    <!-- Front End MetaData -->
    <em:name>Psychedelic Fox</em:name>
    <em:description>Odd-looking theme for Firefox</em:description>
    <em:creator>Devyn Collier Johnson</em:creator>
    <em:contributor>Myself</em:contributor>
    <em:internalName>psychedelicfox</em:internalName>
  </Description>
</RDF>
User avatar
LoudNoise
New Member
Posts: 39900
Joined: October 18th, 2007, 1:45 pm
Location: Next door to the west

Re: What is wrong with this Install.rdf file?

Post by LoudNoise »

Moving to Theme Dev
Post wrangler
"Choose between the Food Select Feature or other Functions. If no food or function is chosen, Toast is the default."
DevynCJohnson
Posts: 17
Joined: May 24th, 2013, 5:43 am

Re: What is wrong with this Install.rdf file?

Post by DevynCJohnson »

I figured it out. I am missing the curly brackets around the two UUIDs.
Post Reply