Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
G
geany
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ç
Batuhan Osman TASKAYA
geany
Commits
5a391c79
Kaydet (Commit)
5a391c79
authored
Şub 07, 2016
tarafından
Matthew Brush
Kaydeden (comit)
Thomas Martitz
Şub 16, 2016
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace comments and asserts with doc-comments and doc-tests
üst
4f3e32e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
11 deletions
+21
-11
gen-api-gtkdoc.py
scripts/gen-api-gtkdoc.py
+21
-11
No files found.
scripts/gen-api-gtkdoc.py
Dosyayı görüntüle @
5a391c79
...
...
@@ -6,23 +6,33 @@ import re
from
lxml
import
etree
from
optparse
import
OptionParser
# " asd\nxxx " => "asd xxx"
def
normalize_text
(
s
):
return
s
.
replace
(
"
\n
"
,
" "
)
.
lstrip
()
.
rstrip
()
r"""
Normalizes whitespace in text.
assert
(
normalize_text
(
"asd xxx"
)
==
"asd xxx"
)
assert
(
normalize_text
(
" asd
\n
xxx "
)
==
"asd xxx"
)
>>> normalize_text("asd xxx")
'asd xxx'
>>> normalize_text(" asd\nxxx ")
'asd xxx'
"""
return
s
.
replace
(
"
\n
"
,
" "
)
.
strip
()
# doxygen records some definitions in C++ style, fix those
# "bool FooBar::flag" => "bool flag"
# void(* _GeanyObjectClass::project_open) (GKeyFile *keyfile) => void(* project_open) (GKeyFile *keyfile)
CXX_NAMESPACE_RE
=
re
.
compile
(
r'[_a-zA-Z][_0-9a-zA-Z]*::'
)
def
fix_definition
(
s
):
return
CXX_NAMESPACE_RE
.
sub
(
r""
,
s
);
"""
Removes C++ name qualifications from some definitions.
For example:
assert
(
fix_definition
(
"bool flag"
)
==
"bool flag"
)
assert
(
fix_definition
(
"bool FooBar::flag"
)
==
"bool flag"
)
assert
(
fix_definition
(
"void(* _GeanyObjectClass::project_open) (GKeyFile *keyfile)"
)
==
"void(* project_open) (GKeyFile *keyfile)"
)
>>> fix_definition("bool flag")
'bool flag'
>>> fix_definition("bool FooBar::flag")
'bool flag'
>>> fix_definition("void(* _GeanyObjectClass::project_open) (GKeyFile *keyfile)")
'void(* project_open) (GKeyFile *keyfile)'
"""
return
CXX_NAMESPACE_RE
.
sub
(
r""
,
s
);
class
AtAt
(
object
):
...
...
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