Skip to content

Commit

Permalink
Per Slony-I bug 41
Browse files Browse the repository at this point in the history
http://www.slony.info/bugzilla/show_bug.cgi?id=41

The xreflabel tags being generated by autodoc are concatenating
together the schema name and the function name.

If I put a "." in between, this short-circuits it, which seems to do
roughly the right thing.  I was expecting to get things like
"schemadoc.my_function(a,b)", and instead got "myfunction(a,b)", but
I actually prefer the latter :-).
  • Loading branch information
Christopher Browne committed Aug 18, 2010
1 parent 1cc0ae4 commit 90b0896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
<!-- TMPL_LOOP name="functions" -->
<!-- Function <!-- TMPL_VAR NAME="function" --> -->
<section id="<!-- TMPL_VAR NAME="function_sgmlid" -->"
xreflabel="<!-- TMPL_VAR NAME="schema_dbk" --><!-- TMPL_VAR NAME="function_dbk"-->">
xreflabel="<!-- TMPL_VAR NAME="schema_dbk" -->.<!-- TMPL_VAR NAME="function_dbk"-->">
<title id="<!-- TMPL_VAR NAME="function_sgmlid" -->-title">
<!-- TMPL_VAR name="function_dbk" -->
</title>
Expand Down

0 comments on commit 90b0896

Please sign in to comment.