mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-10-08 19:34:20 +03:00
Release of 0.5.0
* configure.in docs/* NEWS: release of 0.5.0 * po/*: updated from the translators and merged * docs/apibuild.py src/libvirt.c: avoid some warnings at doc generation time daniel
This commit is contained in:
@@ -29,6 +29,15 @@ ignored_words = {
|
||||
"VIR_DEPRECATED": (0, "macro keyword"),
|
||||
}
|
||||
|
||||
ignored_functions = {
|
||||
"virDomainMigrateFinish": "private function for migration",
|
||||
"virDomainMigrateFinish2": "private function for migration",
|
||||
"virDomainMigratePerform": "private function for migration",
|
||||
"virDomainMigratePrepare": "private function for migration",
|
||||
"virDomainMigratePrepare2": "private function for migration",
|
||||
"virDrvSupportsFeature": "private function for remote access",
|
||||
}
|
||||
|
||||
def escape(raw):
|
||||
raw = string.replace(raw, '&', '&')
|
||||
raw = string.replace(raw, '<', '<')
|
||||
@@ -758,10 +767,14 @@ class CParser:
|
||||
# as possible
|
||||
#
|
||||
def mergeFunctionComment(self, name, description, quiet = 0):
|
||||
global ignored_functions
|
||||
|
||||
if name == 'main':
|
||||
quiet = 1
|
||||
if name[0:2] == '__':
|
||||
quiet = 1
|
||||
if ignored_functions.has_key(name):
|
||||
quiet = 1
|
||||
|
||||
(ret, args) = description
|
||||
desc = ""
|
||||
|
Reference in New Issue
Block a user