From 3b999f69545b921738f3d51c55c427a83250ee5f Mon Sep 17 00:00:00 2001 From: Matt Dew Date: Mon, 28 Jun 2010 08:46:21 -0400 Subject: specs: convert xc-misc.ms from xorg-docs module to DocBook XML Signed-off-by: Gaetan Nadon --- specs/.gitignore | 6 ++ specs/Makefile.am | 64 +++++++++++++++++ specs/xc-misc.xml | 205 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 275 insertions(+) create mode 100644 specs/.gitignore create mode 100644 specs/Makefile.am create mode 100644 specs/xc-misc.xml (limited to 'specs') diff --git a/specs/.gitignore b/specs/.gitignore new file mode 100644 index 0000000..12fe512 --- /dev/null +++ b/specs/.gitignore @@ -0,0 +1,6 @@ +# Add & Override for this directory and it's subdirectories +*.html +*.ps +*.pdf +*.txt +*.css diff --git a/specs/Makefile.am b/specs/Makefile.am new file mode 100644 index 0000000..5b3225d --- /dev/null +++ b/specs/Makefile.am @@ -0,0 +1,64 @@ +# +# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice (including the next +# paragraph) shall be included in all copies or substantial portions of the +# Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# + +if ENABLE_SPECS +doc_sources = xc-misc.xml +dist_doc_DATA = $(doc_sources) + +if HAVE_XMLTO +doc_DATA = $(doc_sources:.xml=.html) + +if HAVE_FOP +doc_DATA += $(doc_sources:.xml=.ps) $(doc_sources:.xml=.pdf) +endif + +if HAVE_XMLTO_TEXT +doc_DATA += $(doc_sources:.xml=.txt) +endif + +if HAVE_STYLESHEETS +XMLTO_FLAGS = -m $(XSL_STYLESHEET) + +doc_DATA += xorg.css +xorg.css: $(STYLESHEET_SRCDIR)/xorg.css + $(AM_V_GEN)cp -pf $(STYLESHEET_SRCDIR)/xorg.css $@ +endif + +CLEANFILES = $(doc_DATA) + +SUFFIXES = .xml .ps .pdf .txt .html + +.xml.txt: + $(AM_V_GEN)$(XMLTO) $(XMLTO_FLAGS) txt $< + +.xml.html: + $(AM_V_GEN)$(XMLTO) $(XMLTO_FLAGS) xhtml-nochunks $< + +.xml.pdf: + $(AM_V_GEN)$(XMLTO) $(XMLTO_FLAGS) --with-fop pdf $< + +.xml.ps: + $(AM_V_GEN)$(XMLTO) $(XMLTO_FLAGS) --with-fop ps $< + +endif HAVE_XMLTO +endif ENABLE_SPECS diff --git a/specs/xc-misc.xml b/specs/xc-misc.xml new file mode 100644 index 0000000..65ba0d2 --- /dev/null +++ b/specs/xc-misc.xml @@ -0,0 +1,205 @@ + + + + + + + + XC-MISC Extension + X Consortium Standard + X Version 11, Release 6.9/7.0 + + + BobScheifler + + +DavidWiggins + X Consortium Standard + 1994X Consortium + Version 1.1 + X Consortium + X Version 11, Release 6.9/7.0 + + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. + +X Window System is a trademark of The Open Group. + + + + + +Overview + +When an X client connects to an X server, it receives a fixed range of +resource IDs to use to identify the client's resources inside the X +server. Xlib hands these out sequentially as needed. When it +overruns the end of the range, an IDChoice protocol error results. +Long running clients, or clients that use resource IDs at a rapid +rate, may encounter this circumstance. When it happens, there are +usually many resource IDs available, but Xlib doesn't know about them. + +One approach to solving this problem would be to have Xlib notice when +a resource is freed and recycle its ID for future use. This strategy +runs into difficulties because sometimes freeing one resource causes +others to be freed (for example, when a window is destroyed, so are +its children). To do a complete job, Xlib would have to maintain a +large amount of state that currently resides only in the server (the +entire window tree in the above example). Even if a less +comprehensive strategy was adopted, such as recycling only those IDs +that Xlib can identify without maintaining additional state, the +additional bookkeeping at resource creation and destruction time +would likely introduce unacceptable overhead. + +To avoid the problems listed above, the server's complete knowledge of +all resource IDs in use by a client is leveraged. This extension +provides two ways for Xlib to query the server for available resource +IDs. Xlib can use these extension requests behind the scenes when it has +exhausted its current pool of resource IDs. + + + +Requests + +XCMiscGetVersion + + + client_major_version: CARD16 + client_minor_version: CARD16 + + => + + client_major_version: CARD16 + client_minor_version: CARD16 + + +If supplied, the client_major_version and +client_minor_version indicate what version of +the protocol the client wants the server to implement. The server version +numbers returned indicate the protocol this extension actually supports. This +might not equal the version sent by the client. An implementation can +(but need not) support more than one version simultaneously. The +server_major_version and the server_minor_version are a +mechanism to support future revisions of the XC-MISC protocol +which may be necessary. In general, the major version would increment +for incompatible changes, and the minor version would increment for +small, upward-compatible changes. Servers that support the protocol +defined in this document will return a +server_major_version of one (1), and a +server_minor_version of one (1). + +XCMiscGetXIDRange + + => + + start_id: XID + count: CARD32 + + +This request returns a range of available resource IDs for the client +issuing the request. start_id is the first +ID in the range. count is the number of IDs +in the range. The returned range may or may not be the largest possible +range. + +XCMiscGetXIDList + + + count: CARD32 + + => + + ids: LISTofXID + + +This request returns the a list of individual resource IDs in +ids. +count is the number of resource IDs requested. +The number returned may be smaller than the number requested. + + + +Events and Errors + +No new events or errors are defined by this extension. + + + +Encoding + +Please refer to the X11 Protocol Encoding document as this document uses +conventions established there. + +The name of this extension is “XC-MISC”. + + +XCMiscGetVersion + 1 CARD8 opcode + 1 0 XC-MISC opcode + 2 2 request length + 2 CARD16 client_major_version + 2 CARD16 client_minor_version + + + + => + 1 1 Reply + 1 unused + 2 CARD16 sequence number + 4 0 length + 2 CARD16 server_major_version + 2 CARD16 server_minor_version + 20 unused + + + + +XCMiscGetXIDRange + 1 CARD8 opcode + 1 1 XC-MISC opcode + 2 1 request length + + + + => + 1 1 Reply + 1 unused + 2 CARD16 sequence number + 4 0 length + 4 XID start_id + 4 CARD32 count + 16 unused + + + + +XCMiscGetXIDList + 1 CARD8 opcode + 1 2 XC-MISC opcode + 2 2 request length + 4 CARD32 count + + + + => + 1 1 Reply + 1 unused + 2 CARD16 sequence number + 4 CARD32 length + 4 CARD32 number of XIDs in ids + 20 unused + 4n LISTofXID ids + + + + + -- cgit v1.2.3 From bd15ca56e689a63832cd6aa63b638fcdbe406b04 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sat, 30 Oct 2010 00:03:21 -0700 Subject: xc-misc.xml: Misc. markup cleanups Signed-off-by: Alan Coopersmith --- specs/xc-misc.xml | 74 +++++++++++++++++++++++++------------------------------ 1 file changed, 34 insertions(+), 40 deletions(-) (limited to 'specs') diff --git a/specs/xc-misc.xml b/specs/xc-misc.xml index 65ba0d2..f3f8f62 100644 --- a/specs/xc-misc.xml +++ b/specs/xc-misc.xml @@ -13,16 +13,17 @@ BobScheifler + + DavidWiggins + + X Consortium -DavidWiggins - X Consortium Standard 1994X Consortium Version 1.1 X Consortium X Version 11, Release 6.9/7.0 -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -70,60 +71,61 @@ exhausted its current pool of resource IDs. Requests -XCMiscGetVersion + +XCMiscGetVersion - client_major_version: CARD16 - client_minor_version: CARD16 + client_major_version: CARD16 + client_minor_version: CARD16 => - client_major_version: CARD16 - client_minor_version: CARD16 + client_major_version: CARD16 + client_minor_version: CARD16 -If supplied, the client_major_version and -client_minor_version indicate what version of -the protocol the client wants the server to implement. The server version +If supplied, the client_major_version and +client_minor_version indicate what version of +the protocol the client wants the server to implement. The server version numbers returned indicate the protocol this extension actually supports. This might not equal the version sent by the client. An implementation can (but need not) support more than one version simultaneously. The -server_major_version and the server_minor_version are a +server_major_version and the server_minor_version are a mechanism to support future revisions of the XC-MISC protocol which may be necessary. In general, the major version would increment for incompatible changes, and the minor version would increment for small, upward-compatible changes. Servers that support the protocol -defined in this document will return a -server_major_version of one (1), and a -server_minor_version of one (1). +defined in this document will return a +server_major_version of one (1), and a +server_minor_version of one (1). XCMiscGetXIDRange => - start_id: XID - count: CARD32 + start_id: XID + count: CARD32 This request returns a range of available resource IDs for the client -issuing the request. start_id is the first -ID in the range. count is the number of IDs -in the range. The returned range may or may not be the largest possible +issuing the request. start_id is the first +ID in the range. count is the number of IDs +in the range. The returned range may or may not be the largest possible range. XCMiscGetXIDList - count: CARD32 + count: CARD32 => - ids: LISTofXID + ids: LISTofXID -This request returns the a list of individual resource IDs in -ids. -count is the number of resource IDs requested. +This request returns the a list of individual resource IDs in +ids. +count is the number of resource IDs requested. The number returned may be smaller than the number requested. @@ -141,16 +143,14 @@ conventions established there. The name of this extension is “XC-MISC”. - + XCMiscGetVersion 1 CARD8 opcode 1 0 XC-MISC opcode 2 2 request length 2 CARD16 client_major_version 2 CARD16 client_minor_version - - - + => 1 1 Reply 1 unused @@ -160,16 +160,13 @@ conventions established there. 2 CARD16 server_minor_version 20 unused - - + XCMiscGetXIDRange 1 CARD8 opcode 1 1 XC-MISC opcode 2 1 request length - - - + => 1 1 Reply 1 unused @@ -179,17 +176,15 @@ conventions established there. 4 CARD32 count 16 unused - - + + XCMiscGetXIDList 1 CARD8 opcode 1 2 XC-MISC opcode 2 2 request length 4 CARD32 count - - - + => 1 1 Reply 1 unused @@ -199,7 +194,6 @@ conventions established there. 20 unused 4n LISTofXID ids - -- cgit v1.2.3 From 357c04268c4801fb17e4f1f495ec113d565b5be2 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Tue, 9 Nov 2010 15:19:09 -0500 Subject: config: HTML file generation: use the installed copy of xorg.css Currenlty the xorg.css file is copied in each location where a DocBook/XML file resides. This produces about 70 copies in the $(docdir) install tree. Signed-off-by: Gaetan Nadon --- specs/.gitignore | 2 -- specs/Makefile.am | 7 ++----- 2 files changed, 2 insertions(+), 7 deletions(-) (limited to 'specs') diff --git a/specs/.gitignore b/specs/.gitignore index 12fe512..6fa5c31 100644 --- a/specs/.gitignore +++ b/specs/.gitignore @@ -1,6 +1,4 @@ -# Add & Override for this directory and it's subdirectories *.html *.ps *.pdf *.txt -*.css diff --git a/specs/Makefile.am b/specs/Makefile.am index 5b3225d..00aa954 100644 --- a/specs/Makefile.am +++ b/specs/Makefile.am @@ -37,11 +37,8 @@ doc_DATA += $(doc_sources:.xml=.txt) endif if HAVE_STYLESHEETS -XMLTO_FLAGS = -m $(XSL_STYLESHEET) - -doc_DATA += xorg.css -xorg.css: $(STYLESHEET_SRCDIR)/xorg.css - $(AM_V_GEN)cp -pf $(STYLESHEET_SRCDIR)/xorg.css $@ +XMLTO_FLAGS = -m $(XSL_STYLESHEET) \ + --stringparam html.stylesheet=$(STYLESHEET_SRCDIR)/xorg.css endif CLEANFILES = $(doc_DATA) -- cgit v1.2.3 From 56424da60f0587a0fba8bcbf81536dd043412e87 Mon Sep 17 00:00:00 2001 From: Paulo Zanoni Date: Thu, 16 Dec 2010 13:37:28 -0200 Subject: Use docbookx.dtd version 4.3 for all docs Signed-off-by: Paulo Zanoni Signed-off-by: Alan Coopersmith --- specs/xc-misc.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'specs') diff --git a/specs/xc-misc.xml b/specs/xc-misc.xml index f3f8f62..bbd2cf0 100644 --- a/specs/xc-misc.xml +++ b/specs/xc-misc.xml @@ -1,6 +1,6 @@ - + -- cgit v1.2.3 From 485c361562e986efa1cf05d2c70553e99c1b9382 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Fri, 25 Feb 2011 08:44:47 -0500 Subject: Docbook: change the book id to match the xml file basename This is required for the up-coming external references support. Signed-off-by: Gaetan Nadon --- specs/xc-misc.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'specs') diff --git a/specs/xc-misc.xml b/specs/xc-misc.xml index bbd2cf0..7e5a46e 100644 --- a/specs/xc-misc.xml +++ b/specs/xc-misc.xml @@ -3,7 +3,7 @@ "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"> - + XC-MISC Extension -- cgit v1.2.3 From fd4973cb7986e69bf47264430fbd17c58be9d0cd Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Sun, 27 Feb 2011 15:06:18 -0500 Subject: Documentation: add Docbook external references support When writing technical documentation, it is often necessary to cross reference to other information. When that other information is not in the current document, additional support is needed, namely . A new feature with version 1.7 of xorg-sgml-doctools adds references to other documents within or outside this package. This patch adds technical support for this feature but does not change the content of the documentation as seen by the end user. Each book or article must generate a database containing the href of sections that can be referred to from another document. This database is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that the value of DATAROOTDIR for xorg-sgml-doctools and for the package documentation is the same. This forms a virtual document tree. This database is consulted by other documents while they are being generated in order to fulfill the missing information for linking. Refer to the xorg-sgml-doctools for further technical information. Co-authored-by: Matt Dew Signed-off-by: Gaetan Nadon --- specs/.gitignore | 1 + specs/Makefile.am | 58 ++++++------------------------------------------------- 2 files changed, 7 insertions(+), 52 deletions(-) (limited to 'specs') diff --git a/specs/.gitignore b/specs/.gitignore index 6fa5c31..92946c9 100644 --- a/specs/.gitignore +++ b/specs/.gitignore @@ -2,3 +2,4 @@ *.ps *.pdf *.txt +*.db diff --git a/specs/Makefile.am b/specs/Makefile.am index 00aa954..b31bfdb 100644 --- a/specs/Makefile.am +++ b/specs/Makefile.am @@ -1,61 +1,15 @@ -# -# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice (including the next -# paragraph) shall be included in all copies or substantial portions of the -# Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -# DEALINGS IN THE SOFTWARE. -# if ENABLE_SPECS -doc_sources = xc-misc.xml -dist_doc_DATA = $(doc_sources) - if HAVE_XMLTO -doc_DATA = $(doc_sources:.xml=.html) - -if HAVE_FOP -doc_DATA += $(doc_sources:.xml=.ps) $(doc_sources:.xml=.pdf) -endif - -if HAVE_XMLTO_TEXT -doc_DATA += $(doc_sources:.xml=.txt) -endif - -if HAVE_STYLESHEETS -XMLTO_FLAGS = -m $(XSL_STYLESHEET) \ - --stringparam html.stylesheet=$(STYLESHEET_SRCDIR)/xorg.css -endif - -CLEANFILES = $(doc_DATA) - -SUFFIXES = .xml .ps .pdf .txt .html - -.xml.txt: - $(AM_V_GEN)$(XMLTO) $(XMLTO_FLAGS) txt $< -.xml.html: - $(AM_V_GEN)$(XMLTO) $(XMLTO_FLAGS) xhtml-nochunks $< +# Main DocBook/XML files (DOCTYPE book) +docbook = xc-misc.xml -.xml.pdf: - $(AM_V_GEN)$(XMLTO) $(XMLTO_FLAGS) --with-fop pdf $< +# The location where the DocBook/XML files and their generated formats are installed +shelfdir = $(docdir) -.xml.ps: - $(AM_V_GEN)$(XMLTO) $(XMLTO_FLAGS) --with-fop ps $< +# Generate DocBook/XML output formats with or without stylesheets +include $(top_srcdir)/docbook.am endif HAVE_XMLTO endif ENABLE_SPECS -- cgit v1.2.3 From 905336a989f14dbbcc0c8d1648a2a51724203a09 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Sun, 12 Jun 2011 17:54:50 -0400 Subject: Install xml versions of specs even if HAVE_XMLTO is false DocBook/XML input source is also a usefull output format that can be viewed with an XML viewer or editor and by some O/S help system. Signed-off-by: Gaetan Nadon --- specs/Makefile.am | 2 -- 1 file changed, 2 deletions(-) (limited to 'specs') diff --git a/specs/Makefile.am b/specs/Makefile.am index b31bfdb..69d3f7f 100644 --- a/specs/Makefile.am +++ b/specs/Makefile.am @@ -1,6 +1,5 @@ if ENABLE_SPECS -if HAVE_XMLTO # Main DocBook/XML files (DOCTYPE book) docbook = xc-misc.xml @@ -11,5 +10,4 @@ shelfdir = $(docdir) # Generate DocBook/XML output formats with or without stylesheets include $(top_srcdir)/docbook.am -endif HAVE_XMLTO endif ENABLE_SPECS -- cgit v1.2.3 From 4ecb4f1559d2ce1c74a1ff2763b1ad2746961d53 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Sun, 11 Sep 2011 19:49:54 -0400 Subject: docs: remove which is not used by default This element is not rendered by default on the title. A template customization is required to display it. X Window System does not have a product number. Signed-off-by: Gaetan Nadon --- specs/xc-misc.xml | 1 - 1 file changed, 1 deletion(-) (limited to 'specs') diff --git a/specs/xc-misc.xml b/specs/xc-misc.xml index 7e5a46e..f643da6 100644 --- a/specs/xc-misc.xml +++ b/specs/xc-misc.xml @@ -21,7 +21,6 @@ 1994X Consortium Version 1.1 X Consortium - X Version 11, Release 6.9/7.0 -- cgit v1.2.3 From 2d793cc635ca8a20a9ee0c99bcc0337c4f82bd7b Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Mon, 12 Sep 2011 16:54:45 -0400 Subject: docs: use the &fullrelvers; entity to set X11 release information Signed-off-by: Gaetan Nadon --- specs/xc-misc.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'specs') diff --git a/specs/xc-misc.xml b/specs/xc-misc.xml index f643da6..5f81856 100644 --- a/specs/xc-misc.xml +++ b/specs/xc-misc.xml @@ -1,6 +1,9 @@ + "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" +[ + %defs; +]> @@ -8,7 +11,7 @@ XC-MISC Extension X Consortium Standard - X Version 11, Release 6.9/7.0 + X Version 11, Release &fullrelvers; BobScheifler -- cgit v1.2.3 From 7252c99f0bdfb560efe980f6f87786f4ccedeccd Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Tue, 20 Sep 2011 20:20:46 -0400 Subject: specs: fix author affiliation Signed-off-by: Gaetan Nadon --- specs/xc-misc.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'specs') diff --git a/specs/xc-misc.xml b/specs/xc-misc.xml index 5f81856..94c426f 100644 --- a/specs/xc-misc.xml +++ b/specs/xc-misc.xml @@ -11,19 +11,19 @@ XC-MISC Extension X Consortium Standard - X Version 11, Release &fullrelvers; BobScheifler + X Consortium - DavidWiggins + DavidP.Wiggins + X Consortium - X Consortium - 1994X Consortium + X Version 11, Release &fullrelvers; Version 1.1 - X Consortium + 1994X Consortium -- cgit v1.2.3 From 8bdaa79348896ecbf4f69df9773ec4681eb46410 Mon Sep 17 00:00:00 2001 From: Matt Dew Date: Sun, 2 Oct 2011 20:29:17 -0600 Subject: 1 - fix the capitalization of the ID attriutes to match either the or <funcdef> string it goes with. 2 - fix any <linkend>'s that were affected by 1. 3 - any <function> in the docs that has an actual funcdef, will become an olink. Signed-off-by: Matt Dew <marcoz@osource.org> --- specs/xc-misc.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'specs') diff --git a/specs/xc-misc.xml b/specs/xc-misc.xml index 94c426f..f2dfec2 100644 --- a/specs/xc-misc.xml +++ b/specs/xc-misc.xml @@ -40,7 +40,7 @@ </bookinfo> -<chapter id='overview'> +<chapter id='Overview'> <title>Overview When an X client connects to an X server, it receives a fixed range of @@ -70,7 +70,7 @@ IDs. Xlib can use these extension requests behind the scenes when it has exhausted its current pool of resource IDs. - + Requests @@ -131,13 +131,13 @@ range. The number returned may be smaller than the number requested. - + Events and Errors No new events or errors are defined by this extension. - + Encoding Please refer to the X11 Protocol Encoding document as this document uses -- cgit v1.2.3