Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
2ce4895f
Kaydet (Commit)
2ce4895f
authored
Ock 19, 2011
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
find-undocumented-classes: move from build repo
üst
3b1a3328
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
find-undocumented-classes
bin/find-undocumented-classes
+31
-0
No files found.
bin/find-undocumented-classes
0 → 100755
Dosyayı görüntüle @
2ce4895f
#!/bin/bash
# finds undocumented classes in the current directory (recursive)
filter
=
quiet
=
n
if
[
"
$1
"
=
"-q"
]
;
then
filter
=
">/dev/null"
quiet
=
y
shift
fi
doxygen
=
$(
mktemp
-d
)
eval
doxygen
-g
$doxygen
/doxygen.cfg
$filter
sed
-i
"/HTML_OUTPUT/s|html|
$doxygen
/html|"
$doxygen
/doxygen.cfg
sed
-i
'/GENERATE_LATEX/s/= YES/= NO/'
$doxygen
/doxygen.cfg
sed
-i
'/RECURSIVE/s/= NO/= YES/'
$doxygen
/doxygen.cfg
# do we have any arguments?
if
[
-n
"
$*
"
]
;
then
sed
-i
"/^INPUT[^_]/s|=.*|=
$*
|"
$doxygen
/doxygen.cfg
fi
eval
doxygen
$doxygen
/doxygen.cfg
$filter
2>
$doxygen
/errors.txt
if
[
"
$quiet
"
==
"n"
]
;
then
echo
echo
"The following classes are undocumented:"
echo
fi
cat
$doxygen
/errors.txt|grep
-i
'Warning: Compound.*is not documented'
rm
-rf
$doxygen
# vim:set shiftwidth=4 softtabstop=4 expandtab:
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment