Source for file RDF.php

Documentation is available at RDF.php

  1. <?php
  2. /**
  3. *   Resource Description Framework (RDF) Vocabulary
  4. *
  5. *   @version $Id: fsource_vocabulary__vocabularyRDF.php.html 443 2007-06-01 16:25:38Z cax $
  6. *   @author Daniel Westphal (dawe@gmx.de)
  7. *   @package vocabulary
  8. *
  9. *    Wrapper, defining resources for all terms of the
  10. *    Resource Description Framework (RDF).
  11. *    For details about RDF see: http://www.w3.org/RDF/.
  12. *    Using the wrapper allows you to define all aspects of
  13. *    the vocabulary in one spot, simplifing implementation and
  14. *    maintainence.
  15. */
  16.  
  17.  
  18. // RDF concepts (constants are defined in constants.php)
  19. $RDF_Alt new Resource(RDF_NAMESPACE_URI RDF_ALT);
  20. $RDF_Bag new Resource(RDF_NAMESPACE_URI RDF_BAG);
  21. $RDF_Property new Resource(RDF_NAMESPACE_URI RDF_PROPERTY);
  22. $RDF_Seq new Resource(RDF_NAMESPACE_URI RDF_SEQ);
  23. $RDF_Statement new Resource(RDF_NAMESPACE_URI RDF_STATEMENT);
  24. $RDF_List new Resource(RDF_NAMESPACE_URI RDF_LIST);
  25. $RDF_nil new Resource(RDF_NAMESPACE_URI RDF_NIL);
  26. $RDF_type new Resource(RDF_NAMESPACE_URI RDF_TYPE);
  27. $RDF_rest new Resource(RDF_NAMESPACE_URI RDF_REST);
  28. $RDF_first new Resource(RDF_NAMESPACE_URI RDF_FIRST);
  29. $RDF_subject new Resource(RDF_NAMESPACE_URI RDF_SUBJECT);
  30. $RDF_predicate new Resource(RDF_NAMESPACE_URI RDF_PREDICATE);
  31. $RDF_object new Resource(RDF_NAMESPACE_URI RDF_OBJECT);
  32. $RDF_Description new Resource(RDF_NAMESPACE_URI RDF_DESCRIPTION);
  33. $RDF_ID new Resource(RDF_NAMESPACE_URI RDF_ID);
  34. $RDF_about new Resource(RDF_NAMESPACE_URI RDF_ABOUT);
  35. $RDF_aboutEach new Resource(RDF_NAMESPACE_URI RDF_ABOUT_EACH);
  36. $RDF_aboutEachPrefix new Resource(RDF_NAMESPACE_URI RDF_ABOUT_EACH_PREFIX);
  37. $RDF_bagID new Resource(RDF_NAMESPACE_URI RDF_BAG_ID);
  38. $RDF_resource new Resource(RDF_NAMESPACE_URI RDF_RESOURCE);
  39. $RDF_parseType new Resource(RDF_NAMESPACE_URI RDF_PARSE_TYPE);
  40. $RDF_li new Resource(RDF_NAMESPACE_URI RDF_LI);
  41. $RDF_nodeID new Resource(RDF_NAMESPACE_URI RDF_NODEID);
  42. $RDF_datatype new Resource(RDF_NAMESPACE_URI RDF_DATATYPE);
  43. $RDF_seeAlso new Resource(RDF_NAMESPACE_URI RDF_SEEALSO);
  44.  
  45.  
  46.  
  47. ?>

Documentation generated on Fri, 1 Jun 2007 16:50:30 +0200 by phpDocumentor 1.3.2