.. _stack_xml: Stack manifest XML tags reference ================================= NOTE: Stack manifests always have the filename ``stack.xml``. Required Tags ------------- The required set of tags in a ``stack.xml`` file is very minimal and only provides the most basic metadata about your stack, including what it is, who wrote it, and who can use it. * :ref:`\ ` * :ref:`\ ` * :ref:`\ ` * :ref:`\ ` Optional Tags ------------- The most common optional tags are ```` and ````. We strongly recommend the use of the ```` tag to point users to a website where they can find out more information about your stack. The website is most commonly a wiki page on ROS.org so that users can easily edit and update information about your stack. * :ref:`\ ` * :ref:`\ ` * :ref:`\ ` * :ref:`\ ` Example ------- :: Common code for working with images in ROS. Maintained by Patrick Mihelich BSD http://ros.org/wiki/image_common .. _stack_tag: ------- The ```` tag is the top-level tag in a stack manifest. Elements '''''''' * :ref:`\ ` * :ref:`\ ` * :ref:`\ ` * :ref:`\ ` * :ref:`\ ` * :ref:`\ ` .. _stack_description_tag: ------------- Text '''' Description of the stack. It may be multi-line and include XHTML. Example ''''''' :: Python implementation of the ROS master/node APIs and client library. Attributes '''''''''' ``brief="brief text"`` *(optional)* One-line summary of your stack. Useful for UI displays where the stack name isn't sufficiently descriptive. .. _stack_license_tag: --------- Text '''' Name of license for this package, e.g. BSD, GPL, LGPL. In order to assist machine readability, only include the license name in this tag. For any explanatory text about licensing caveats, please use the ```` tag. Most common open-source licenses are described on the `OSI website `_. Commonly used license strings: - Apache 2.0 - BSD - Boost Software License - GPLv2 - GPLv3 - LGPLv2.1 - LGPLv3 - MIT - Mozilla Public License Version 1.1 - ZLib - wxWindows Attributes '''''''''' ``url="license url"`` *(optional)* For lesser-known licenses, it is helpful to add this attribute with a link to the text of the license. Example ''''''' :: BSD .. _stack_author_tag: -------- Text '''' Name and contact information for the person maintaining the stack. Example ''''''' :: Alyssa P. Hacker/aphacker@willowgarage.com .. _stack_depend_tag: -------- Declares a stack that this stack depends on. Example ''''''' :: Attributes '''''''''' ``stack="stack_name"`` Name of ROS stack dependency. .. _stack_url_tag: ----- Text '''' Website for the stack. This is important for guiding users to online documentation. Example ''''''' :: http://ros.org/wiki/navigation .. _stack_review_tag: -------- Status of the stack in the review process (Design, API, and Code review). `QAProcess `_. Stack that have not yet been reviewed should be marked as "experimental". Attributes '''''''''' ``status="status"`` See `list of valid review statuses `_. ``notes="notes on review status"`` *(optional)* Notes on review status, such as date of last review. Example ''''''' :: .. _stack_version_tag: --------- .. versionadded: Electric Text '''' The version number of the stack. *IMPORTANT*: - This should only be used with stacks that follow the `release `_ process - Do *not* combine this with the ``rosbuild_make_distribution()`` CMake macro. Use the ```` tag *or* the CMake macro, but not both. Example ''''''' :: 1.2.7