How to make your own repository of addons

The menu addons option get and parse a xml from a URL.
1.-This URL is the default address (http://www.leobueno.net/leorc_addons.php)
2.-A file named /sdcard/leorc/repository.txt would indicate the URL.
The simplest solution is to send me a message with information on the new repository and I create a link on the default XML.
The xml file has the following format:
The main node is addons.
There are three types of nodes:

folder:


A link to another xml the same format. Used to go to other repositories (O added another category). You can use to organize in folders added.

addon:

Discharge point of an additive (Sea aircraft or scenario). When the user selects this option will download the file and placed in the right place.

site:

Link to a website. When the user selects this option opens a browser to the requested page android.

Nodes must have the following mandatory attributes:

name:

it is large text that is displayed in the list item.

description:

This is the small and descriptive text.

icon:

Url of the image that is displayed to the left of the item. Leave empty if no image but do not delete the attribute.

url:

URL of the content in question. If an addon has to be the address of the zip. In case of a folder, the xml and in case of a website address of the page.

Example

<addons>

  <site type="site"

                        name="Developer's Web Site"

                        url="http://www.leobueno.net"

                        icon=""/>

  <addon type="aircraft"

         name="Microjet"

         description="A little, fast foamy"

         url="http://www.leobueno.net/addons/microjet.zip"

         icon="http://www.leobueno.net/addons/preview-microjet.jpg"/>

  <addon type="aircraft"

         name="Easyglider"

         description="Electric motor glider"

         url="http://www.leobueno.net/addons/easyglider.zip"

         icon="http://www.leobueno.net/addons/preview-easyglider.jpg"/>

  <addon type="aircraft"

         name="Habicht"

         description="Habicht glider"

         url="http://www.leobueno.net/addons/dfs-habicht.zip"

         icon="http://www.leobueno.net/addons/preview-easyglider.jpg"/>

  <addon type="helicopter"

         name="AS350"

         description="AS350 helicopter  "

         url="http://www.leobueno.net/addons/as350.zip"

         icon="http://www.leobueno.net/addons/preview-easyglider.jpg"/>

  <addon type="aircraft"

                         name="MB339 PAN"

                         description="MB339 'Frecce Tricolori'"

                         url="http://www.leobueno.net/addons/mb339pan.zip"

                         icon="http://www.leobueno.net/addons/preview-mb339pan.jpg"/>

  <folder type="folder"

                        name="Other repository"

                        description="Some other aircrafts"

                        url = "http://www.leobueno.net/addons/other_repository.php"

                        icon=""/>

</addons>