summaryrefslogtreecommitdiff
path: root/odk/util
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-05-03 23:01:03 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:10 +0200
commite2fd9fbe6ec35cf8bd5cd3a5785de2a3c5577265 (patch)
treebbb6f92c343313c84f0c3ec35a97af35dc471f04 /odk/util
parentc05b9d3e2c5a4c88b67657c513255c2181658e4c (diff)
odk: stop packaging autodoc generated documentation
Change-Id: I9d1e232f2fea779f111067b588bbb36411039de2
Diffstat (limited to 'odk/util')
-rw-r--r--odk/util/check.pl19
1 files changed, 10 insertions, 9 deletions
diff --git a/odk/util/check.pl b/odk/util/check.pl
index 00f542234426..4be8536eadd4 100644
--- a/odk/util/check.pl
+++ b/odk/util/check.pl
@@ -222,17 +222,17 @@ if (-d "$SdkDir") {
#check idl docu, it is only a first and simple check
# improvement required
print "check idl docu: ";
- if (check_dir("docs/common/ref")) {
- if (!check_file("docs/common/ref/module-ix.html")) {
- print "\nERROR: \"docs/common/ref/module-ix.html\" is missing\n";
+ if (check_dir("docs/idl/ref")) {
+ if (!check_file("docs/idl/ref/index.html")) {
+ print "\nERROR: \"docs/idl/ref/index.html\" is missing\n";
$return++;
}
- if (!check_dir("docs/common/ref/index-files")) {
- print "\nERROR: \"docs/common/ref/index-files\" is missing\n";
+ if (!check_file("docs/idl/ref/classes.html")) {
+ print "\nERROR: \"docs/idl/ref/classes.html\" is missing\n";
$return++;
}
- if (!check_file("docs/common/ref/index-files/index-10.html")) {
- print "\nERROR: \"docs/common/ref/index-files/index-10.html\" is missing\n";
+ if (!check_file("docs/idl/ref/namespaces.html")) {
+ print "\nERROR: \"docs/idl/ref/namespaces.html\" is missing\n";
$return++;
}
@@ -349,9 +349,10 @@ if (-d "$SdkDir") {
if ($OperatingSystem ne "windows") {
foreach $i (@idl_dirlist)
{
- if (!check_dir("docs/common/ref/com/sun/star/$i")) {
+ $i =~ s/\//_1_1/g;
+ if (!check_file("docs/idl/ref/com_1_1sun_1_1star_1_1$i.html")) {
$return++;
- print "\nERROR: \"docs/common/ref/com/sun/star/$i\" is missing\n";
+ print "\nERROR: \"docs/idl/ref/com_1_1sun_1_1star_1_1$i.html\" is missing\n";
} else {
print "+";
}