summaryrefslogtreecommitdiff
path: root/giscanner/doctemplates/C/function.tmpl
Commit message (Collapse)AuthorAgeFilesLines
* doctool: Use format_xref to format some links to pagesJasper St. Pierre2013-02-151-5/+1
| | | | | | We don't do a full 100% conversion for all link tags, yet, because I don't want to break too much here. This may come later.
* doctool: Rename page_style to page_kindJasper St. Pierre2013-02-151-2/+2
|
* doctool: Fix use of <dl> tag in templatesJasper St. Pierre2013-02-141-6/+10
| | | | This isn't legal Mallard
* docwriter: Define a new formatter method for getting paramsJasper St. Pierre2013-02-111-6/+6
| | | | | | | | This will let us gracefully skip over parameters that aren't exposed by specific language bindings. It also fixes a bug in the C/Python documentation where we weren't iterating over the right parameters.
* doctool: Don't use zip(range(L))Jasper St. Pierre2013-02-111-3/+3
| | | | | Instead, remove it entirely (since we don't need the index) or instead use enumerate().
* doctool: Move signal/vfunc templates to extend function.tmplJasper St. Pierre2013-02-011-3/+3
|
* doctool: Update templates to include the actual instance parameterJasper St. Pierre2013-02-011-24/+10
| | | | Rather than fabricating one with a fake name.
* doctool: Rename templates to exclude mallard/the languageJasper St. Pierre2013-02-011-0/+75
As templates are in their own directory and segregated into language already, this is sort of repeating the issue. At the same time, always explicitly use relative ("./") or absolute ("/") lookups for templates. We want to eventually have base templates to share between languages, so to do so without namespace clashes makes sense.