<div dir="ltr">It looks like the _8h files can be left as-is, I have posted two alternative patches, the first keeps the _8h files and the second extracts some documentation that was left in them.<div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jan 8, 2015 at 3:15 PM, Bill Spitzak <span dir="ltr"><<a href="mailto:spitzak@gmail.com" target="_blank">spitzak@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Yea this was annoying.<br>
<br>
I think it may be possible to make the xslt converter just skip the stuff that is in these files. That would be a cleaner solution than trying to move them out of the way.<div class="HOEnZb"><div class="h5"><br>
<br>
On 01/08/2015 12:18 PM, Bryce Harrington wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Wed, Jan 07, 2015 at 06:44:06PM -0800, Jon A. Cruz wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
---<br>
  doc/publican/Makefile.am | 6 ++++++<br>
  1 file changed, 6 insertions(+)<br>
<br>
diff --git a/doc/publican/Makefile.am b/doc/publican/Makefile.am<br>
index 278da12..1e3cde0 100644<br>
--- a/doc/publican/Makefile.am<br>
+++ b/doc/publican/Makefile.am<br>
@@ -91,13 +91,19 @@ $(builddir)/en-US/<u></u>ProtocolInterfaces.xml: $(top_srcdir)/protocol/<u></u>wayland.xml $(s<br>
<br>
  # * we don't want wayland-{server|client}_8h.xml to avoid duplicating output methods,<br>
  #   move it out of the way first.<br>
+# * create empty placeholders for moved files.<br>
  # * use doxygen's combine.xslt to merge the xml files into one single file<br>
  # * pipe that through the doxygen-to-publican stylesheet<br>
  # * move wayland-<foo>_8h.xml back to its original location<br>
  $(builddir)/en-US/%API.xml: $(doxydir)/xml/%/index.xml $(srcdir)/doxygen-to-publican.<u></u>xsl | $(builddir)/en-US<br>
+       $(AM_V_at)rm -rf $(doxydir)/xml/$*/saved<br>
        $(AM_V_at)$(MKDIR_P) $(doxydir)/xml/$*/saved<br>
        $(AM_V_at)mv $(doxydir)/xml/$*/wayland-*_<u></u>8h.xml \<br>
                $(doxydir)/xml/$*/saved<br>
+       $(AM_V_at)for file in $(doxydir)/xml/$*/saved/*; \<br>
+               do TARG=$(doxydir)/xml/$*/`<u></u>basename $${file}`; \<br>
+               echo "<?xml version='1.0' encoding='UTF-8' standalone='no'?><doxygen/>" > $${TARG}; \<br>
+               done<br>
        $(AM_V_GEN)$(XSLTPROC) $(doxydir)/xml/$*/combine.xslt \<br>
                $(doxydir)/xml/$*/index.xml | \<br>
                $(XSLTPROC) --stringparam which $* \<br>
</blockquote>
<br>
The original warnings are:<br>
<br>
   GEN      en-US/ProtocolInterfaces.xml<br>
   GEN      en-US/ClientAPI.xml<br>
warning: failed to load external entity "../../doc/doxygen/xml/Client/<u></u>wayland-client_8h.xml"<br>
warning: failed to load external entity "../../doc/doxygen/xml/Client/<u></u>wayland-util_8h.xml"<br>
   GEN      en-US/ServerAPI.xml<br>
warning: failed to load external entity "../../doc/doxygen/xml/Server/<u></u>wayland-server_8h.xml"<br>
warning: failed to load external entity "../../doc/doxygen/xml/Server/<u></u>wayland-util_8h.xml"<br>
   GEN      Wayland/en-US/html/css<br>
   GEN      Wayland/en-US/html/css/brand.<u></u>css<br>
<br>
But with this patch applied:<br>
<br>
   GEN      en-US/ProtocolInterfaces.xml<br>
   GEN      en-US/ClientAPI.xml<br>
   GEN      en-US/ServerAPI.xml<br>
   GEN      Wayland/en-US/html/css<br>
   GEN      Wayland/en-US/html/css/brand.<u></u>css<br>
<br>
No other issues seem to crop up during build.  Looks good to me.<br>
<br>
Reviewed-by: Bryce Harrington <<a href="mailto:bryce@osg.samsung.com" target="_blank">bryce@osg.samsung.com</a>><br>
Tested-by: Bryce Harrington <<a href="mailto:bryce@osg.samsung.com" target="_blank">bryce@osg.samsung.com</a>><br>
______________________________<u></u>_________________<br>
wayland-devel mailing list<br>
<a href="mailto:wayland-devel@lists.freedesktop.org" target="_blank">wayland-devel@lists.<u></u>freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/wayland-devel" target="_blank">http://lists.freedesktop.org/<u></u>mailman/listinfo/wayland-devel</a><br>
<br>
</blockquote>
</div></div></blockquote></div><br></div>