Home | History | Annotate | only in /system/media/camera/docs
Up to higher level directory
NameDateSize
__init__.py09-Oct-2013664
camera_metadata_tag_info.mako09-Oct-20133.2K
camera_metadata_tags.mako09-Oct-20133K
docs.html09-Oct-2013332.3K
html.mako09-Oct-20139.5K
metadata-check-dependencies09-Oct-20132.3K
metadata-generate09-Oct-20131.6K
metadata-parser-sanity-check09-Oct-20131.4K
metadata-validate09-Oct-2013962
metadata_helpers.py09-Oct-20136.1K
metadata_model.py09-Oct-201333.2K
metadata_parser_xml.py09-Oct-20137.3K
metadata_properties.xml09-Oct-201393.1K
metadata_properties.xsd09-Oct-20137.5K
metadata_template.mako09-Oct-20134.5K
metadata_validate.py09-Oct-20138.8K
README.md09-Oct-2013876

README.md

      1 # Camera Metadata XML
      2 ## Introduction
      3 This is a set of scripts to manipulate the camera metadata in an XML form.
      4 
      5 ## Generated Files
      6 Many files can be generated from XML, such as the documentation (html/pdf),
      7 C code, Java code, and even XML itself (as a sanity check).
      8 
      9 ## Dependencies
     10 * Python 2.7.x+
     11 * Beautiful Soup 4+ - HTML/XML parser, used to parse `metadata_properties.xml`
     12 * Mako 0.7+         - Template engine, needed to do file generation
     13 * Tidy              - Cleans up the XML/HTML files.
     14 * XML Lint          - Validates XML against XSD schema
     15 
     16 ## Quick Setup (Ubuntu Precise):
     17 sudo apt-get install python-mako
     18 sudo apt-get install python-bs4
     19 sudo apt-get install tidy
     20 sudo apt-get install libxml2-utils #xmllint
     21 
     22 ## Quick Setup (MacPorts)
     23 sudo port install py27-beautifulsoup4
     24 sudo port install py27-mako
     25 sudo port install tidy
     26 sudo port install libxml2 #xmllint
     27