generic: pack all API docs into separate repository - kde-docs

This commit is contained in:
Ivailo Monev 2015-01-21 18:55:44 +00:00
parent 62d3c8d732
commit 9b896d5f59
5 changed files with 2390 additions and 10 deletions

View file

@ -1,3 +1,24 @@
Read the Wiki for more information!
### Katana - Be Free and Be Efficient!
Katana is fork of KDE Software Distribution with emphasis on efficiency. So far it has
proven to be roughly 50% less system resource hungry and significantly faster.
[Try it via Live CD/DVD](http://www.entropy-linux.com/public/snapshots/)
### Authors and Contributors
Since Katana is a fork of someone else's work, many of the credits go to the KDE
Software Development team. So far there are not much people involved in this
project but we hope that the number will increase.
Software can always be improved, and the Katana team is ready to do so.
However, you - the user - must tell us when something does not work as
expected or could be done better. You do not have to be a software developer
to be a member of the Katana team. You can join the national teams that
translate program interfaces. You can provide graphics, themes, sounds, and
improved documentation. You decide!
### Support and Contact
Check out the [wiki](https://github.com/fluxer/katana/wiki) for frequently asked
questions (FAQ) and other information. Feel free to report issues at [this](https://github.com/fluxer/katana/issues) page.

View file

@ -2,7 +2,7 @@
set -e
date="${1:-2015-01-13}"
date="${1:-2015-01-19}"
packs=("ariya-icons" "kdelibs" "kde-baseapps" "kde-workspace" "kde-extraapps" "kde-l10n")
cwd="$(pwd)"
if [ -z "$date" ];then

11
docs.sh
View file

@ -3,7 +3,7 @@
set -e
version="$1"
packs=("kdelibs" "kde-baseapps" "kde-workspace" "kde-extraapps")
packs=("kdelibs" "kde-baseapps" "kde-workspace" "kde-extraapps" "kde-docs")
cwd="$(pwd)"
if ! type -p doxygen;then
@ -13,9 +13,6 @@ fi
source "$(dirname $0)/fetch.sh"
for p in "${packs[@]}";do
echo "Generating API docs for $p..."
cd "$p"
doxygen doxygen.conf
cd "$cwd"
done
rm -rf kde-docs/
echo "Generating API docs for ${packs[@]}..."
doxygen doxygen.conf

2362
doxygen.conf Normal file

File diff suppressed because it is too large Load diff

View file

@ -3,7 +3,7 @@
set -e
version="$1"
packs=("ariya-icons" "kdelibs" "kde-baseapps" "kde-workspace" "kde-extraapps" "kde-l10n")
packs=("ariya-icons" "kdelibs" "kde-baseapps" "kde-workspace" "kde-extraapps" "kde-l10n" "kde-docs")
cwd="$(pwd)"
if [ -z "$version" ];then
echo "Pass a version to release"