protocol
lgtdocp
ï
Documenting tool protocol.
logtalk_load(lgtdoc(loader))
static
Compiling files for generating XML documentation: All source files must be compiled with the
source_data
flag turned on.
xml_spec(Specification)
option: XML documenting files specification format. Possible option values aredtd
(DTD specification; default) andxsd
(XML Schema specification).
xml_spec_reference(Reference)
option: Reference to the XML specification file in XML documenting files. Possible values arelocal
(default; DTD/XSD file in same folder as XML files),web
(logtalk.org website DTD/XSD file), andstandalone
(no reference to specification files).
entity_xsl_file(File)
option: XSLT file to use with generated XML documenting files. Default islogtalk_entity_to_xml.xsl
, allowing the XML files to be viewed by opening them with a browser supporting XSLT (after running thelgt2xml.sh
script on the output directory).
index_xsl_file(File)
option: XSLT file to use with generated XML documenting files. Default islogtalk_index_to_xml.xsl
, allowing the XML files to be viewed by opening them with a browser supporting XSLT (after running thelgt2xml.sh
script on the output directory).
xml_docs_directory(Directory)
option: Directory where the XML documenting files will be generated. The default value is./xml_docs
, a sub-directory of the source files directory.
bom(Boolean)
option: Defines if a BOM should be added to the generated XML documenting files.
encoding(Encoding)
option: Encoding to be used for the generated XML documenting files.
omit_path_prefixes(Prefixes)
option: List of path prefixes (atoms) to omit when writing directory paths. The default value is to omit the home directory.
exclude_files(List)
option: List of files to exclude when generating the XML documenting files.
exclude_paths(List)
option: List of relative library paths to exclude when generating the XML documenting files (default is[]
). All sub-directories of the excluded directories are also excluded.
exclude_prefixes(List)
option: List of path prefixes to exclude when generating the XML documenting files (default is[]
).
exclude_entities(List)
option: List of entities to exclude when generating the XML documenting files (default is[]
).
sort_predicates(Boolean)
option: Sort entity predicates (default isfalse
).Known issues: Some options may depend on the used XSL processor. Most XSL processors support DTDs but only some of them support XML Schemas. Some processors (e.g.
fop2
) reject reference to a DTD.
Public predicatesï
rlibraries/2
ï
Creates XML documenting files for all entities in all given libraries and their sub-libraries using the specified options.
static
rlibraries(Libraries,Options)
rlibraries(+list(atom),+list)
- one
rlibraries/1
ï
Creates XML documenting files for all entities in all given libraries and their sub-libraries using default options.
static
rlibraries(Libraries)
rlibraries(+list(atom))
- one
rlibrary/2
ï
Creates XML documenting files for all entities in a library and its sub-libraries using the specified options.
static
rlibrary(Library,Options)
rlibrary(+atom,+list)
- one
rlibrary(tools,[xslfile('lgtmd.xsl')])
yes
rlibrary/1
ï
Creates XML documenting files for all entities in a library and its sub-libraries using default options.
static
rlibrary(Library)
rlibrary(+atom)
- one
lgt2xml
script)rlibrary(tools)
yes
libraries/2
ï
Creates XML documenting files for all entities in all given libraries using the specified options.
static
libraries(Libraries,Options)
libraries(+list(atom),+list)
- one
libraries/1
ï
Creates XML documenting files for all entities in all given libraries using default options.
static
libraries(Libraries)
libraries(+list(atom))
- one
library/2
ï
Creates XML documenting files for all entities in a library using the specified options.
static
library(Library,Options)
library(+atom,+list)
- one
library(library,[xslfile('logtalk_entity_to_pdf_a4.xsl')])
yes
library/1
ï
Creates XML documenting files for all entities in a library using default options.
static
library(Library)
library(+atom)
- one
rdirectories/2
ï
Creates XML documenting files for all entities in all given directories and their sub-directories using the specified options.
static
rdirectories(Directories,Options)
rdirectories(+list(atom),+list)
- one
rdirectories/1
ï
Creates XML documenting files for all entities in all given directories and their sub-directories using default options.
static
rdirectories(Directories)
rdirectories(+list(atom))
- one
rdirectory/2
ï
Creates XML documenting files for all entities in a directory and its sub-directories using the specified options.
static
rdirectory(Directory,Options)
rdirectory(+atom,+list)
- one
rdirectory('./tools',[xslfile('lgtmd.xsl')])
yes
rdirectory/1
ï
Creates XML documenting files for all entities in a directory and its sub-directories using default options.
static
rdirectory(Directory)
rdirectory(+atom)
- one
lgt2xml
script)rdirectory('./tools')
yes
directories/2
ï
Creates XML documenting files for all entities in all given directories using the specified options.
static
directories(Directories,Options)
directories(+list(atom),+list)
- one
directories/1
ï
Creates XML documenting files for all entities in all given directories using default options.
static
directories(Directories)
directories(+list(atom))
- one
directory/2
ï
Creates XML documenting files for all entities in a directory using the specified options.
static
directory(Directory,Options)
directory(+atom,+list)
- one
directory('.',[xslfile('logtalk_entity_to_pdf_a4.xsl')])
yes
directory/1
ï
Creates XML documenting files for all entities in a directory using default options.
static
directory(Directory)
directory(+atom)
- one
files/2
ï
Creates XML documenting files for all entities in loaded source files using the specified options. The files can be given by name, basename, full path, or using library notation.
static
files(Files,Options)
files(+list(atom),+list)
- one
files/1
ï
Creates XML documenting files for all entities in loaded source files using default options. The files can be given by name, basename, full path, or using library notation.
static
files(Files)
files(+list(atom))
- one
file/2
ï
Creates XML documenting files for all entities in a loaded source file using the specified options. The file can be given by name, basename, full path, or using library notation.
static
file(File,Options)
file(+atom,+list)
- one
file/1
ï
Creates XML documenting files for all entities in a loaded source file using default options. The file can be given by name, basename, full path, or using library notation.
static
file(File)
file(+atom)
- one
all/1
ï
Creates XML documenting files for all loaded entities using the specified options.
static
all(Options)
all(+list)
- one
all/0
ï
Creates XML documenting files for all loaded entities using default options.
static
all
- one
Protected predicatesï
(none)
Private predicatesï
(none)
Operatorsï
(none)
See also