phpDocumentor OpenDocumentPHP
util
[ class tree: OpenDocumentPHP ] [ index: OpenDocumentPHP ] [ all elements ]

Source for file Namespaces.php

Documentation is available at Namespaces.php

  1. <?php
  2.  
  3. /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
  4.  
  5. /*
  6.  * Created on 11. Jul. 2007 by Norman Markgraf (nmarkgraf(at)user.sourceforge.net)
  7.  */
  8.  
  9. /**
  10.  * Interface Namespaces file.
  11.  * 
  12.  * This interface just gives some constants to the classes which implements it.
  13.  * 
  14.  * PHP versions 5
  15.  *   
  16.  * LICENSE:
  17.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  20.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  21.  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  23.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  27.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  *
  29.  * This software consists of voluntary contributions made by many individuals
  30.  * and is licensed under the GPL. For more information please see
  31.  * <http://opendocumentphp.org>.
  32.  * 
  33.  * $Id: Namespaces.php 202 2007-07-11 14:16:45Z nmarkgraf $
  34.  * 
  35.  * @category    File Formats
  36.  * @package        OpenDocumentPHP
  37.  * @subpackage    util
  38.  * @author         Norman Markgraf (nmarkgraf(at)user.sourceforge.net)
  39.  * @copyright     Copyright in 2006, 2007 by The OpenDocumentPHP Team
  40.  * @license     http://www.gnu.org/licenses/gpl.html GNU General Public License 2.0.
  41.  * @version        SVN: $Id: Namespaces.php 202 2007-07-11 14:16:45Z nmarkgraf $
  42.  * @link           http://opendocumentphp.org
  43.  * @since         0.5.3 - 11. Jul. 2007
  44.  */
  45.  
  46. /**
  47.  * Interface Namespaces
  48.  * 
  49.  * This interface just gives some constants to the classes which implements it.
  50.  * 
  51.  * @category    File Formats
  52.  * @package        OpenDocumentPHP
  53.  * @subpackage    util
  54.  * @author         Norman Markgraf (nmarkgraf(at)user.sourceforge.net)
  55.  * @copyright     Copyright in 2006, 2007 by The OpenDocumentPHP Team
  56.  * @license     http://www.gnu.org/licenses/gpl.html GNU General Public License 2.0.
  57.  * @version     Release: @package_version@
  58.  * @link           http://opendocumentphp.org
  59.  * @since         0.5.3 - 11. Jul. 2007
  60.  */
  61. interface Namespaces {
  62.     /**
  63.      * namespace OpenDocument meta
  64.      */
  65.     const META 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0';
  66.     /**
  67.      * namespace OpenDocument office
  68.      */
  69.     const OFFICE 'urn:oasis:names:tc:opendocument:xmlns:office:1.0';
  70.     /**
  71.      * namespace OpenDocument manifest
  72.      */
  73.     const MANIFEST 'urn:oasis:names:tc:opendocument:xmlns:manifest:1.0';
  74.     /**
  75.      * namespace OpenDocument style
  76.      */
  77.     const STYLE 'urn:oasis:names:tc:opendocument:xmlns:style:1.0';
  78.     /**
  79.      * namespace OpenDocument text
  80.      */
  81.     const TEXT 'urn:oasis:names:tc:opendocument:xmlns:text:1.0';
  82.     /**
  83.      * namespace OpenDocument draw
  84.      */
  85.     const DRAW 'urn:oasis:names:tc:opendocument:xmlns:drawing:1.0';
  86.     /**
  87.      * namespace OpenDocument table
  88.      */
  89.     const TABLE 'urn:oasis:names:tc:opendocument:xmlns:table:1.0';
  90.     /**
  91.      * namespace OpenDocument number
  92.      */
  93.     const NUMBER 'urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0';
  94.     /**
  95.      * namespace OpenDocument chart
  96.      */
  97.     const CHART 'urn:oasis:names:tc:opendocument:xmlns:chart:1.0';
  98.     /**
  99.      * namespace OpenDocument form
  100.      */
  101.     const FORM 'urn:oasis:names:tc:opendocument:xmlns:form:1.0';
  102.     /**
  103.      * namespace OpenDocument config
  104.      */
  105.     const CONFIG 'urn:oasis:names:tc:opendocument:xmlns:config:1.0';
  106.     /**
  107.      * namespace OpenDocument presentation
  108.      */
  109.     const PRESENTATION 'urn:oasis:names:tc:opendocument:xmlns:presentation:1.0';
  110.     /**
  111.      * namespace OpenDocument dr3d
  112.      */
  113.     const DR3D 'urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0';
  114.     /**
  115.      * namespace OpenDocument animation
  116.      */
  117.     const ANIM 'urn:oasis:names:tc:opendocument:xmlns:animation:1.0';
  118.     /**
  119.      * namespace OpenDocument script
  120.      */
  121.     const SCRIPT 'urn:oasis:names:tc:opendocument:xmlns:script:1.0';
  122.     /**
  123.      * namespace OpenDocument svg
  124.      */
  125.     const SVG 'urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0';
  126.     /**
  127.      * namespace OpenDocument fo (formation objects)
  128.      */
  129.     const FO 'urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0';
  130.     /**
  131.      * namespace OpenDocument smil
  132.      */
  133.     const SMIL 'urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0';
  134.     /**
  135.      * namespace Dublin Core
  136.      */
  137.     const DC 'http://purl.org/dc/elements/1.1/';
  138.     /**
  139.      * namespace XLink
  140.      */
  141.     const XLINK 'http://www.w3.org/1999/xlink';
  142.     /**
  143.      * namespace XForms
  144.      */
  145.     const XFORMS 'http://www.w3.org/2002/xforms';
  146.     /**
  147.      * namespace MathML
  148.      */
  149.     const MATHML 'http://www.w3.org/1998/Math/MathML';
  150. }
  151. ?>

Documentation generated on Wed, 18 Jun 2008 06:30:05 +0200 by phpDocumentor 1.3.2