| 1 | <?PHP
|
|---|
| 2 |
|
|---|
| 3 | /* RDFInt.php - RDF Interfaces for PHP
|
|---|
| 4 | * Copyright 2011 netlabs.org
|
|---|
| 5 | * Author: Christian Langanke, Adrian Gschwend
|
|---|
| 6 | *
|
|---|
| 7 | * Licensed under the Apache License, Version 2.0 (the "License");
|
|---|
| 8 | * you may not use this file except in compliance with the License.
|
|---|
| 9 | * You may obtain a copy of the License at
|
|---|
| 10 | *
|
|---|
| 11 | * http://www.apache.org/licenses/LICENSE-2.0
|
|---|
| 12 | *
|
|---|
| 13 | * Unless required by applicable law or agreed to in writing, software
|
|---|
| 14 | * distributed under the License is distributed on an "AS IS" BASIS,
|
|---|
| 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|---|
| 16 | * See the License for the specific language governing permissions and
|
|---|
| 17 | * limitations under the License.
|
|---|
| 18 | */
|
|---|
| 19 |
|
|---|
| 20 | /**
|
|---|
| 21 | * @page page_option_fdebug Option: Using fDebug to log debug event messages
|
|---|
| 22 | *
|
|---|
| 23 | * \section sec_fdebug_prerequisites Prerequisites
|
|---|
| 24 | *
|
|---|
| 25 | * For debugging purposes, the classes of \libname can provide debug event messages.
|
|---|
| 26 | * To catch these messages, the debug message logger \c fDebug is required. \n
|
|---|
| 27 | * Download from \htmllinkext{http://fdebug.de/en/site/download/}
|
|---|
| 28 | *
|
|---|
| 29 | * See the provided samples of \libname for sample code, if you intend
|
|---|
| 30 | * to use \c fDebug for your code as well.
|
|---|
| 31 | *
|
|---|
| 32 | * \section sec_fdebug_prerequisites Configuration
|
|---|
| 33 | *
|
|---|
| 34 | * To use \c fDebug with RDFint.PHP, the following environment variable must be defined:
|
|---|
| 35 | * \desctable
|
|---|
| 36 | * \desc{<strong>Environment variable</strong>,<strong>Value</strong>}
|
|---|
| 37 | * \desc{\c PHP_LIBROOT_FDEBUG,Root directory of \c fDebug - contains subdirectories \c client and \c server.
|
|---|
| 38 | * As an alternative the directory containing the file \c fdebug.lib.php can be specified.}
|
|---|
| 39 | * \enddesctable
|
|---|
| 40 | *
|
|---|
| 41 | * \note Also under Windows operating systems, pathnames \c MAY \c NOT contain backslashes!
|
|---|
| 42 | * Instead slashes \c MUST be used.
|
|---|
| 43 |
|
|---|
| 44 | *
|
|---|
| 45 | * \section sec_fdebug_using Using fDebug with the RDFint.PHP samples
|
|---|
| 46 | *
|
|---|
| 47 | */
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 | ?>
|
|---|