added scripts to create html docs

git-svn-id: trunk@4305 -
This commit is contained in:
mattias 2003-06-24 10:52:13 +00:00
parent bc2d5602a2
commit f3f1cc765e
3 changed files with 25 additions and 0 deletions

1
.gitattributes vendored
View File

@ -196,6 +196,7 @@ docs/ExtendingTheIDE.txt svneol=native#text/plain
docs/LazarusIDEInternals.pdf -text svneol=unset#application/pdf
docs/Packages.txt svneol=native#text/plain
docs/html/update_gtkintf_html.sh -text svneol=native#application/x-sh
docs/html/update_html.sh -text svneol=native#application/x-sh
docs/html/update_lcl_html.sh -text svneol=native#application/x-sh
docs/xml/lcl/actnlist.xml svneol=native#text/xml
docs/xml/lcl/allunits.xml svneol=native#text/xml

10
docs/html/README Normal file
View File

@ -0,0 +1,10 @@
HTML documentation of Lazarus
=============================
This directory contains the tools to create the HTML documentation for lazarus.
The documentation is stored in fpdoc format in the docs/xml/ directory.
The script update_html.sh will automatically create the whole HTML
documentation.

14
docs/html/update_html.sh Normal file
View File

@ -0,0 +1,14 @@
#!/bin/bash
#
# Author: Mattias Gaertner
#
# Creates the whole HTML output for Lazarus
set -x
set -e
./update_lcl_html.sh $@
./update_gtkintf_html.sh $@
# end.