doc: Unpublish wl_display_get_additional_shm_formats
authorYong Bakos <ybakos@humanoriented.com>
Thu, 12 May 2016 20:52:37 +0000 (15:52 -0500)
committerBryce Harrington <bryce@osg.samsung.com>
Thu, 2 Jun 2016 00:34:17 +0000 (17:34 -0700)
The Wayland docbook and the doxygen html docs had been presenting
wl_display_get_additional_shm_formats as part of the public API, but the
prototype for this function is in wayland-private.h.

Add a \private annotation to the doc comment, preventing doxygen from
publishing this function as public.
Add logic to the publican xsl to only transform elements with a "prot"
attribute value of "public".

Signed-off-by: Yong Bakos <ybakos@humanoriented.com>
Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
doc/publican/doxygen-to-publican.xsl
src/wayland-server.c

index 7c3b507..e13dcd7 100644 (file)
 
 <!-- methods -->
 <xsl:template match="memberdef" >
-  <xsl:if test="@kind = 'function' and @static = 'no' or
+  <xsl:if test="@kind = 'function' and @static = 'no' and @prot = 'public' or
                 @kind !='function' and normalize-space(briefdescription) != ''">
     <varlistentry id="{$which}-{@id}">
         <term>
index f745e62..ad82bc2 100644 (file)
@@ -1470,6 +1470,8 @@ wl_display_add_shm_format(struct wl_display *display, uint32_t format)
  *
  * \sa wl_display_add_shm_format()
  *
+ * \private
+ *
  * \memberof wl_display
  */
 struct wl_array *