Changeset 26 for php/trunk/doxygen/doc_page_main.php
- Timestamp:
- Jul 13, 2011, 1:45:03 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
php/trunk/doxygen/doc_page_main.php
r25 r26 19 19 20 20 /** 21 * \mainpage RDFInt.php - RDF Interfaces for PHP22 * Copyright \libyear 23 * \htmllink {http://www.netlabs.org, netlabs.org}21 * \mainpage \libname_lit - \libdescription 22 * Copyright \libyear 23 * \htmllinkext{http://www.netlabs.org, netlabs.org} 24 24 * 25 25 * \author Christian Langanke … … 27 27 * \version \libversion 28 28 * 29 * \htmlonly <hr> \endhtmlonly29 * <hr> 30 30 * 31 * \section sec_ intro Introduction31 * \section sec_main_intro Introduction 32 32 * 33 * \section sec_install 1. Installation 33 * \libname provides an implementation of the \c RDF \c API and 34 * the \c RDFa \c API as described in the according specifications of the W3C. 35 * Support for the \c RDF \c Interfaces specification will be covered 36 * in a forthcoming version. 34 37 * 35 * \section sec_prereq 2. Prerequisites 38 * For the following reasons certain classes, methods etc. are not or differently 39 * implemented: 40 * - this library is not an implementation for usage in a Browser-based environment, 41 * so certain classes and methods are not required 42 * - differences between the otherwise very similar \c RDF \c API and the 43 * \c RDFa \c API lead to slight incompatibility with either specification 44 * - for convenience, some on-standard classes and methods have been implemented 45 * on top of the \c RDF \c API and \c RDFa \c API specifications, some of them 46 * have been taken from the \c RDF \c Interfaces specification. 47 * All of these additions are marked accordingly within the documentation. 36 48 * 37 * \subsection sec_install_download 2.1 Download 49 * See the section \htmllink{page_w3cspecs.html,W3C Specifications Overview and Library Compatibility} 50 * for more information. 38 51 * 39 * \s ubsection sec_install_config 2.2 Configuration52 * \section sec_main_prereq Prerequisites 40 53 * 41 * \section apx_License Appendix A. License 54 * For parsing and serializing RDF data, this library requires the \c ARC2 library. \n 55 * Download from \htmllinkext{https://github.com/semsol/arc2/downloads} 42 56 * 43 * \section apx_samples Appendix B. Examples 57 * \note For usage under Windows operating systems, 58 * \htmllink{page_arc2_patch.html, a patch is required} to be able to read files from 59 * the local filesystem. 44 60 * 45 * \section apx_refs Appendix C. References 61 * \section sec_main_options Options 62 * 63 * For debugging purposes, the classes of \libname can provide debug event messages. 64 * To catch these messages, the debug message logger \c fDebug is required. \n 65 * Download from \htmllinkext{http://fdebug.de/en/site/download/} 66 * 67 * See the provided samples of \libname for sample code, if you intend 68 * to use \c fDebug for your code as well. 69 * 70 * \section sec_main_config Configuration 71 * 72 * To setup \libname, the following environment variables must be defined: 73 * 74 * \desctable 75 * \desc{<strong>Environment variable</strong>,<strong>Value</strong>} 76 * \desc{\c PHP_LIBROOT_RDFINT,Root directory of \libname - contains \c rdfa.php} 77 * \desc{\c PHP_LIBROOT_ARC2,Root directory of \c ARC2 - contains \c ARC2.php} 78 * \enddesctable 79 * 80 * If \c fDebug is to be used, the following environment variable must be defined: 81 * \desctable 82 * \desc{<strong>Environment variable</strong>,<strong>Value</strong>} 83 * \desc{\c PHP_LIBROOT_FDEBUG,Root directory of \c fDebug - contains subdirectories \c client and \c server. 84 * As an alternative the directory containing the file \c fdebug.lib.php can be specified.} 85 * \enddesctable 86 * 87 * \note Also under Windows operating systems, pathnames \c MAY \c NOT contain backslashes! 88 * Instead slashes \c MUST be used. 89 * 90 * \section sec_main_license License 91 * 92 * \libname is distributed under the \htmllink{page_license.html,Apache License Version 2.0} 93 * 46 94 */ 47 95
Note:
See TracChangeset
for help on using the changeset viewer.