mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 19:59:14 +02:00
Finishes renaming the docs scripts.
git-svn-id: trunk@14964 -
This commit is contained in:
parent
dc17aa5243
commit
a83074c32d
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -1344,6 +1344,7 @@ docs/html/build_html.bat svneol=native#text/plain
|
||||
docs/html/build_html.sh -text svneol=native#application/x-sh
|
||||
docs/html/build_lcl_docs.lpi svneol=native#text/plain
|
||||
docs/html/build_lcl_docs.lpr svneol=native#text/plain
|
||||
docs/html/build_lcl_html.sh -text svneol=native#application/x-sh
|
||||
docs/html/fpdoc.css svneol=native#text/css
|
||||
docs/html/localfclfooter.xml svneol=native#text/plain
|
||||
docs/html/locallclfooter.xml svneol=native#text/plain
|
||||
|
60
docs/html/build_lcl_html.sh
Executable file
60
docs/html/build_lcl_html.sh
Executable file
@ -0,0 +1,60 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# Author: Mattias Gaertner
|
||||
#
|
||||
# Creates the fpdoc HTML output for the LCL
|
||||
|
||||
#set -x
|
||||
set -e
|
||||
|
||||
FPDoc=$1
|
||||
if [ -z $FPDoc ]; then
|
||||
FPDoc=fpdoc
|
||||
fi
|
||||
FPDocFooter=$2
|
||||
FPCDocDir=$3
|
||||
|
||||
PackageName=lcl
|
||||
XMLSrcDir=../xml/lcl/
|
||||
PasSrcDir=../../lcl/
|
||||
InputFileList=inputfile.txt
|
||||
|
||||
# create output directory
|
||||
mkdir -p $PackageName
|
||||
|
||||
# create unit list
|
||||
cd $PasSrcDir
|
||||
UnitList=`echo *.pp *.pas`
|
||||
cd -
|
||||
|
||||
# create description file list
|
||||
DescrFiles=''
|
||||
for unit in $UnitList; do
|
||||
ShortFile=`echo $unit | sed -e 's/\.pp\b//g' -e 's/\.pas\b//g'`
|
||||
DescrFiles="$DescrFiles --descr=../$XMLSrcDir$ShortFile.xml"
|
||||
done
|
||||
|
||||
# create input file list
|
||||
CurInputFileList=$PackageName/$InputFileList
|
||||
rm -f $CurInputFileList
|
||||
for unit in $UnitList; do
|
||||
echo ../${PasSrcDir}$unit -Fi../${PasSrcDir}include >> $CurInputFileList
|
||||
done
|
||||
|
||||
FPDocParams="--content=lcl.xct --package=lcl --descr=../${XMLSrcDir}lcl.xml --format=html"
|
||||
if [ -n "$FPDocFooter" ]; then
|
||||
FPDocParams="$FPDocParams --footer=$FPDocFooter"
|
||||
fi
|
||||
if [ -n "$FPCDocDir" ]; then
|
||||
FPDocParams="$FPDocParams --import=$FPCDocDir/rtl.xct,../rtl/ --import=$FPCDocDir/fcl.xct,../fcl/"
|
||||
fi
|
||||
|
||||
|
||||
cd $PackageName
|
||||
$FPDoc $DescrFiles --input=@$InputFileList $FPDocParams
|
||||
cd -
|
||||
|
||||
# --output=lcl
|
||||
|
||||
# end.
|
||||
|
Loading…
Reference in New Issue
Block a user