summaryrefslogtreecommitdiff
path: root/giscanner/doctemplates/Python/signal.tmpl
Commit message (Collapse)AuthorAgeFilesLines
* doctool: Use format_xref to format some links to pagesJasper St. Pierre2013-02-151-1/+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: Remove an extra <p> in the signalsJasper St. Pierre2013-02-151-1/+1
|
* doctool: Remove the ctype from the signal return valueJasper St. Pierre2013-02-141-1/+1
| | | | WTF was this here for?
* doctool: Add an link for signal methodsJasper St. Pierre2013-02-141-1/+1
|
* doctool: Fix use of <dl> tag in templatesJasper St. Pierre2013-02-141-13/+20
| | | | This isn't legal Mallard
* docwriter: Define a new formatter method for getting paramsJasper St. Pierre2013-02-111-2/+2
| | | | | | | | 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-2/+2
| | | | | Instead, remove it entirely (since we don't need the index) or instead use enumerate().
* doctool: Rename templates to exclude mallard/the languageJasper St. Pierre2013-02-011-0/+35
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.