Revision: 57356
http://sourceforge.net/p/brlcad/code/57356
Author: starseeker
Date: 2013-08-31 15:31:15 +0000 (Sat, 31 Aug 2013)
Log Message:
-----------
remove bu_htond.xml per Sean's suggestion - leaving the
set_source_files_properties example in place as a comment, in case future xml
man pages are used to generate multiple outputs.
Modified Paths:
--------------
brlcad/trunk/doc/docbook/system/man3/en/CMakeLists.txt
Removed Paths:
-------------
brlcad/trunk/doc/docbook/system/man3/en/bu_htond.xml
Modified: brlcad/trunk/doc/docbook/system/man3/en/CMakeLists.txt
===================================================================
--- brlcad/trunk/doc/docbook/system/man3/en/CMakeLists.txt 2013-08-31
14:09:40 UTC (rev 57355)
+++ brlcad/trunk/doc/docbook/system/man3/en/CMakeLists.txt 2013-08-31
15:31:15 UTC (rev 57356)
@@ -1,5 +1,4 @@
set(docbook_man3_EN
- bu_htond.xml
libcursor.xml
libfb.xml
liborle.xml
@@ -13,7 +12,7 @@
# describe more than one command. Those files need special
# handling, since the CMake logic has no way to know about the
# extra outputs without being told.
-set_source_files_properties(htond.xml PROPERTIES EXTRA_MAN_OUTPUTS
"bu_ntohd.3")
+#set_source_files_properties(bu_htond.xml PROPERTIES EXTRA_MAN_OUTPUTS
"bu_ntohd.3")
DOCBOOK_TO_HTML(man3 docbook_man3_EN html/man3/en "")
DOCBOOK_TO_MAN(man3 docbook_man3_EN 3 3 man3 "")
Deleted: brlcad/trunk/doc/docbook/system/man3/en/bu_htond.xml
===================================================================
--- brlcad/trunk/doc/docbook/system/man3/en/bu_htond.xml 2013-08-31
14:09:40 UTC (rev 57355)
+++ brlcad/trunk/doc/docbook/system/man3/en/bu_htond.xml 2013-08-31
15:31:15 UTC (rev 57356)
@@ -1,103 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!-- lifted from troff+man by doclifter -->
-<refentry xmlns='http://docbook.org/ns/docbook' version='5.0' xml:lang='en'
xml:id='bu_htond3'>
-<refmeta>
- <refentrytitle>BU_HTOND</refentrytitle>
-<manvolnum>3</manvolnum>
-<refmiscinfo class='source'>BRL-CAD</refmiscinfo>
-<refmiscinfo class='manual'>BRL-CAD</refmiscinfo>
-</refmeta>
-
-<refnamediv>
-<refname>bu_htond</refname>
-<refname>bu_ntohd</refname>
-<refpurpose>convert double-precision floating point numbers between host and
network format and byte order</refpurpose>
-</refnamediv>
-<!-- body begins here -->
-<refsynopsisdiv xml:id='synopsis'>
-<funcsynopsis>
-<funcprototype>
-<funcdef><function>bu_htond</function></funcdef>
-<paramdef><parameter>netptr</parameter></paramdef>
-<paramdef><parameter>hostptr</parameter></paramdef>
-<paramdef><parameter>count</parameter></paramdef>
-</funcprototype>
-<funcsynopsisinfo>
-unsigned char *netptr;
-unsigned char *hostptr;
-int count;
-
-</funcsynopsisinfo>
-<funcprototype>
-<funcdef><function>bu_ntohd</function></funcdef>
-<paramdef><parameter>hostptr</parameter></paramdef>
-<paramdef><parameter>netptr</parameter></paramdef>
-<paramdef><parameter>count</parameter></paramdef>
-</funcprototype>
-<funcsynopsisinfo>
-unsigned char *hostptr;
-unsigned char *netptr;
-int count;
-</funcsynopsisinfo>
-</funcsynopsis>
-</refsynopsisdiv>
-
-
-<refsect1 xml:id='description'><title>DESCRIPTION</title>
-<para>These routines are used for
-conversion between the local host
-64-bit ("double precision") representation, and
-64-bit IEEE double precision representation, in "network order",
-i.e., big-endian, the MSB in byte [0], on the left.</para>
-
-<para>As a quick review, the IEEE double precision format is as follows:
-sign bit, 11 bits of exponent (bias 1023), and 52 bits of mantissa,
-with a hidden leading one (0.1 binary).
-When the exponent is 0, IEEE defines a "denormalized number",
-which is not supported here.
-When the exponent is 2047 (all bits set), and:
-all mantissa bits are zero, value is infinity*sign,
-mantissa is non-zero, and:
-msb of mantissa=0: signaling NAN
-msb of mantissa=1: quiet NAN</para>
-
-<para>Note that neither the input or output buffers need be word aligned,
-for greatest flexibility in converting data, even though this
-may impose a speed penalty on some architectures.</para>
-
-<para>These subroutines operate on a sequential block of numbers,
-to save on subroutine linkage execution costs, and to allow
-some hope for vectorization.</para>
-
-<para>On brain-damaged machines like the SGI 3-D, where type "double"
-allocates only 4 bytes of space, these routines *still* return
-8 bytes in the IEEE buffer.</para>
-</refsect1>
-
-<refsect1 xml:id='see_also'><title>SEE ALSO</title>
-<para><citerefentry><refentrytitle>htons</refentrytitle><manvolnum>3N</manvolnum></citerefentry>,
<citerefentry><refentrytitle>ntohs</refentrytitle><manvolnum>3N</manvolnum></citerefentry>,
<citerefentry><refentrytitle>htonl</refentrytitle><manvolnum>3N</manvolnum></citerefentry>,
<citerefentry><refentrytitle>ntohl</refentrytitle><manvolnum>3N</manvolnum></citerefentry></para>
-</refsect1>
-
-<refsect1 xml:id='bugs'><title>BUGS</title>
-<para>The VAX handles bytes backwards from most everyone else in
-the world. This is not expected to be fixed in the near future.</para>
-
-</refsect1>
-
-<refsect1 xml:id='author'><title>AUTHOR</title>
-<para>BRL-CAD Team</para>
-
-</refsect1>
-
-<refsect1 xml:id='copyright'><title>COPYRIGHT</title>
-<para>This software is Copyright (c) 1988-2013 by the United States
-Government as represented by U.S. Army Research Laboratory.</para>
-
-</refsect1>
-
-<refsect1 xml:id='bug_reports'><title>BUG REPORTS</title>
-<para>Reports of bugs or problems should be submitted via electronic
-mail to <[email protected]>.</para>
-</refsect1>
-</refentry>
-
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits