[asterisk-commits] mjordan: branch 11 r379228 - in /branches/11: doc/ res/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jan 16 11:45:41 CST 2013
Author: mjordan
Date: Wed Jan 16 11:45:37 2013
New Revision: 379228
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=379228
Log:
Let documentation reference links specify which module they're linking to
Again, since res_jabber/res_xmpp have duplicate APIs, their documentation ref
links have to specify which reference they're referring to. The various
documentation parsers can interpret the module attribute however they want
in order to construct the appropriate links.
Modified:
branches/11/doc/appdocsxml.dtd
branches/11/res/res_jabber.c
branches/11/res/res_xmpp.c
Modified: branches/11/doc/appdocsxml.dtd
URL: http://svnview.digium.com/svn/asterisk/branches/11/doc/appdocsxml.dtd?view=diff&rev=379228&r1=379227&r2=379228
==============================================================================
--- branches/11/doc/appdocsxml.dtd (original)
+++ branches/11/doc/appdocsxml.dtd Wed Jan 16 11:45:37 2013
@@ -48,6 +48,7 @@
<!ELEMENT ref (#PCDATA)>
<!ATTLIST ref type (application|function|astcli|link|manpage|filename|agi|manager|managerEvent) #REQUIRED>
+ <!ATTLIST ref module CDATA #IMPLIED>
<!ELEMENT synopsis (#PCDATA)>
Modified: branches/11/res/res_jabber.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/res/res_jabber.c?view=diff&rev=379228&r1=379227&r2=379228
==============================================================================
--- branches/11/res/res_jabber.c (original)
+++ branches/11/res/res_jabber.c Wed Jan 16 11:45:37 2013
@@ -92,8 +92,8 @@
<replaceable>asterisk</replaceable>, configured in jabber.conf.</para>
</description>
<see-also>
- <ref type="function">JABBER_STATUS</ref>
- <ref type="function">JABBER_RECEIVE</ref>
+ <ref type="function" module="res_jabber">JABBER_STATUS</ref>
+ <ref type="function" module="res_jabber">JABBER_RECEIVE</ref>
</see-also>
</application>
<function name="JABBER_RECEIVE" language="en_US" module="res_jabber">
@@ -121,8 +121,8 @@
the <replaceable>asterisk</replaceable> XMPP account configured in jabber.conf.</para>
</description>
<see-also>
- <ref type="function">JABBER_STATUS</ref>
- <ref type="application">JabberSend</ref>
+ <ref type="function" module="res_jabber">JABBER_STATUS</ref>
+ <ref type="application" module="res_jabber">JabberSend</ref>
</see-also>
</function>
<function name="JABBER_STATUS" language="en_US" module="res_jabber">
@@ -151,8 +151,8 @@
the associated XMPP account configured in jabber.conf.</para>
</description>
<see-also>
- <ref type="function">JABBER_RECEIVE</ref>
- <ref type="application">JabberSend</ref>
+ <ref type="function" module="res_jabber">JABBER_RECEIVE</ref>
+ <ref type="application" module="res_jabber">JabberSend</ref>
</see-also>
</function>
<application name="JabberSendGroup" language="en_US" module="res_jabber">
@@ -260,7 +260,7 @@
</enum>
</enumlist>
</description>
- </application>
+ </application>
<manager name="JabberSend" language="en_US" module="res_jabber">
<synopsis>
Sends a message to a Jabber Client.
Modified: branches/11/res/res_xmpp.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/res/res_xmpp.c?view=diff&rev=379228&r1=379227&r2=379228
==============================================================================
--- branches/11/res/res_xmpp.c (original)
+++ branches/11/res/res_xmpp.c Wed Jan 16 11:45:37 2013
@@ -81,8 +81,8 @@
<replaceable>asterisk</replaceable>, configured in xmpp.conf.</para>
</description>
<see-also>
- <ref type="function">JABBER_STATUS</ref>
- <ref type="function">JABBER_RECEIVE</ref>
+ <ref type="function" module="res_xmpp">JABBER_STATUS</ref>
+ <ref type="function" module="res_xmpp">JABBER_RECEIVE</ref>
</see-also>
</application>
<function name="JABBER_RECEIVE" language="en_US" module="res_xmpp">
@@ -110,8 +110,8 @@
the <replaceable>asterisk</replaceable> XMPP account configured in xmpp.conf.</para>
</description>
<see-also>
- <ref type="function">JABBER_STATUS</ref>
- <ref type="application">JabberSend</ref>
+ <ref type="function" module="res_xmpp">JABBER_STATUS</ref>
+ <ref type="application" module="res_xmpp">JabberSend</ref>
</see-also>
</function>
<function name="JABBER_STATUS" language="en_US" module="res_xmpp">
@@ -140,8 +140,8 @@
the associated XMPP account configured in xmpp.conf.</para>
</description>
<see-also>
- <ref type="function">JABBER_RECEIVE</ref>
- <ref type="application">JabberSend</ref>
+ <ref type="function" module="res_xmpp">JABBER_RECEIVE</ref>
+ <ref type="application" module="res_xmpp">JabberSend</ref>
</see-also>
</function>
<application name="JabberSendGroup" language="en_US" module="res_xmpp">
More information about the asterisk-commits
mailing list