- Add more <see-also> based on TFOT.

- Add the 'filename' type to the see-also ref. To be able to reference a filename.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@154578 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Eliel C. Sardanons
2008-11-05 13:07:29 +00:00
parent d23dff9ca8
commit f18699be24
9 changed files with 53 additions and 0 deletions

View File

@@ -4223,6 +4223,8 @@ static char *xmldoc_build_seealso(const char *type, const char *name)
ast_str_append(&outputstr, 0, "%s\n", content);
} else if (!strcasecmp(typename, "manpage")) {
ast_str_append(&outputstr, 0, "ManPage: %s\n", content);
} else if (!strcasecmp(typename, "filename")) {
ast_str_append(&outputstr, 0, "File: %s\n", content);
}
ast_xml_free_text(content);
}