summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* autogen.sh: Implement GNOME Build APIbaserock/morphColin Walters2013-01-151-1/+3
| | | | | | http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Adam Jackson <ajax@redhat.com>
* configure: Remove AM_MAINTAINER_MODEAdam Jackson2013-01-151-1/+0
| | | | Signed-off-by: Adam Jackson <ajax@redhat.com>
* kbproto 1.0.6kbproto-1.0.6Alan Coopersmith2012-03-221-1/+2
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* informaltable cleanupMatt Dew2012-01-1610-1179/+1260
| | | | | | | | | | | | | | | | On certain tables, add top and bottom borders to table header and a bottom border to the table. This matches what those tables in the old pdfs looked like. the <?dbfo keep-together='always'> prevents tables from splitting across pages. Useful for tiny tables. Converting the colwidth to a floating point, IE, 1* -> 1.0* cleans up these build errors: WARNING: table-layout="fixed" and column-width unspecified => falling back to proportional-column-width(1) Signed-off-by: Matt Dew <marcoz@osource.org>
* 1 - fix the capitolization of the ID attriutes to match either theMatt Dew2011-10-0320-267/+267
| | | | | | | | | <title> 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: fix copyright markupGaetan Nadon2011-09-211-13/+7
| | | | Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* docs: use the &fullrelvers; entity to set X11 release informationGaetan Nadon2011-09-121-2/+5
| | | | Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* xkbproto doc: remove empty revision history and set specs versionGaetan Nadon2011-09-111-12/+1
| | | | Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* docbook.am: embed css styles inside the HTML HEAD elementGaetan Nadon2011-09-081-2/+0
| | | | | | | | | | | | Rather than referring to the external xorg.css stylesheet, embed the content of the file in the html output produced. This is accomplished by using version 1.10 of xorg-xhtml.xsl. This makes the whole html docs tree much more relocatable. In addition, it eliminates xorg.css as a runtime file which makes xorg-sgml-doctools a build time only package. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* docbook.am: global maintenance update - entities, images and olinkingGaetan Nadon2011-09-071-53/+62
| | | | | | | | | | | | | Adding support in libX11 for html chunking caused a reorg of docbook.am as well as the xorg-sgml-doctools masterdb for olinking. The parameter img.src.path is added for pdf images. A searchpath to the root builddir is added for local entities, if present. The docbook.am makefile hides all the details and is identical for all 22 modules having DocBook documentation. It is included by a thin Makefile.am which requires no docbook knowledge. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* docbook pdf: add xsl parameter to locate imagesGaetan Nadon2011-08-231-1/+2
| | | | | | | | | | | | | Unlike html, pdf/ps requires a full path name to find images, but only needs it to make an internal copy of it at build time. The image can later be removed and the image still shows up in the pdf doc. This allows us to use the absolute builddir. This parameter must not be used for html which loads the image from disk at user read time. The image is removed from builddir after build is done, and we do not know where the image will be installed by the distro. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Install xml versions of specs even if HAVE_XMLTO is falseGaetan Nadon2011-06-122-2/+2
| | | | | | | 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 <memsize@videotron.ca>
* Install target dbs alongside generated documentsGaetan Nadon2011-06-112-3/+3
| | | | | | | | | | | | This matches a change in xorg-sgml-docs whereby the masterdb will look for the target dbs into the same location as the generated documents. The target dbs are now installed alongside the generated documents. Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which has the potential of installing outside the package prefix and cause distcheck to fail when user does not have write permission in this package. Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11
* Documentation: add Docbook external references supportGaetan Nadon2011-03-304-62/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | 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 <olink>. 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 <marcoz@osource.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Remove duplicate 'See see' text in docs - take 2Matt Dew2011-03-2115-119/+136
|
* Fix bad link anchors.Matt Dew2011-03-0416-235/+200
| | | | | | | | | | | | | | | | Fix broken links in kxproto. The old links hardcoded the output filename 'XKBproto.htm' and used anchors that didn't convert correctly. The new anchors are strings that use the same convention as other anchors in other docs. Fix links like: <ulink url="XKBproto.htm#50332257_45660">Compute State Field</ulink> to be: <link linkend='computing_a_state_field_from_an_xkb_state'>Compute State Field</link> Signed-off-by: Matt Dew <marcoz@osource.org> Reviewed-by: Gaetan Nadon <memsize@videotron.ca> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* specs: Fix formatting of last item in KEYPAD key type listAlan Coopersmith2011-02-191-5/+5
| | | | | Reported-by: Jens Elkner Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* specs: convert images from gif to svg format.Gaetan Nadon2010-12-2827-22/+7315
| | | | Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Add spec images to dist_spec_DATA for distribution & installationAlan Coopersmith2010-12-211-1/+12
| | | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
* specs: convert xkbproto from Framemaker to DocBook/XMLMatt Dew2010-11-3037-3/+20755
| | | | Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Purge cvs tags.Jesse Adkins2010-10-065-9/+0
| | | | | Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* kbproto 1.0.5kbproto-1.0.5Adam Jackson2010-08-101-1/+1
| | | | Signed-off-by: Adam Jackson <ajax@redhat.com>
* Use the correct value for XkbAllAccessXEventsMaskDirk Wallenstein2010-04-081-1/+1
| | | | | Signed-off-by: Dirk Wallenstein <halsmit@t-online.de> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* config: update AC_PREREQ statement to 2.60Gaetan Nadon2010-03-281-1/+1
| | | | | | | | | | Unrelated to the previous patches, the new value simply reflects the reality that the minimum level for autoconf to configure all x.org modules is 2.60 dated June 2006. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* config: remove the pkgconfig pc.in file from EXTRA_DISTGaetan Nadon2010-03-281-1/+0
| | | | | | Automake always includes it in the tarball. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILESGaetan Nadon2009-11-221-0/+2
| | | | | Now that the INSTALL file is generated. Allows running make maintainer-clean.
* README: file created or updated #24206Gaetan Nadon2009-11-161-0/+30
| | | | Contains a set of URLs to freedesktop.org.
* Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432Gaetan Nadon2009-11-151-3/+0
| | | | | ChangeLog filename is known to Automake and requires no further coding in the makefile.
* Makefile.am: INSTALL file is missing or incorrect #24206Gaetan Nadon2009-11-151-2/+5
| | | | | | The standard GNU file on building/installing tarball is copied using the XORG_INSTALL macro contained in XORG_DEFAULT_OPTIONS Add INSTALL target
* configure.ac: deploy the new XORG_DEFAULT_OPTIONS #24242Gaetan Nadon2009-11-151-2/+2
| | | | | | This macro aggregate a number of existing macros that sets commmon X.Org components configuration options. It shields the configuration file from future changes.
* configure.ac: AM_MAINTAINER_MODE missing #24238Gaetan Nadon2009-11-151-0/+1
| | | | | This turns off maintainer mode build rules in tarballs. Works in conjunction with autogen.sh --enable-maintainer-mode
* .gitignore: use common defaults with custom section # 24239Gaetan Nadon2009-11-151-7/+71
| | | | | | Using common defaults will reduce errors and maintenance. Only the very small or inexistent custom section need periodic maintenance when the structure of the component changes. Do not edit defaults.
* kbproto 1.0.4kbproto-1.0.4Alan Coopersmith2009-10-121-1/+1
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
* Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONSAlan Coopersmith2009-10-121-5/+5
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
* Made some defines typedefs for better compatabilityJeremy Huddleston2009-04-061-3/+3
|
* Janitor: Correct make distcheck and dont distribute autogen.shPaulo Cesar Pereira de Andrade2009-01-273-2/+9
|
* Replace static ChangeLog with dist-hook to generate from git logJames Cloos2007-12-062-4/+10
|
* Add *~ to .gitignore to skip patch/emacs droppingsJames Cloos2007-09-031-0/+1
|
* Bump to 1.0.3.kbproto-1.0.3Daniel Stone2006-07-181-1/+1
|
* unconditionally declare XFree86PrivateDaniel Stone2006-07-181-2/+0
| | | | This could probably be moved to generic DDX private.
* renamed: .cvsignore -> .gitignoreAlan Coopersmith2006-07-141-0/+0
|
* Update package version number for final X11R7 release candidate.XORG-7_1XORG-7_0_99_901XORG-7_0XORG-6_99_99_904Kevin E Martin2005-12-152-1/+5
|
* Update package version number for RC1 release.XORG-6_99_99_903XORG-6_99_99_902XORG-6_99_99_901MODULAR_COPYKevin E Martin2005-10-191-1/+1
|
* Teach xkb how to optionally run xkbcomp from $bindir instead ofXORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901Kristian Høgsberg2005-09-011-0/+1
| | | | $datadir/xkb.
* Add basic .cvsignore files for proto modules.Eric Anholt2005-08-021-0/+10
|
* Various changes preparing packages for RC0:XORG-6_99_99_900Kevin E Martin2005-07-291-2/+4
| | | | | | | | | | | - Verify and update package version numbers as needed - Implement versioning scheme - Change bug address to point to bugzilla bug entry form - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it) - Fix makedepend to use pkgconfig and pass distcheck - Update build script to build macros first - Update modular Xorg version
* More compiler warning fixes for missing prototypes:XORG-6_8_99_900XORG-6_8_99_16XORG-6_8_99_15Alan Coopersmith2005-07-071-0/+2
| | | | | | | Add prototype for XkbSetExtension() Add #include <ctype.h> for isspace() & isdigit() Add #include <grp.h> (for initgroups()) and remove extra * Add prototype for xorgGetVersion()
* Bugzilla #2800 <https://bugs.freedesktop.org/show_bug.cgi?id=2800> XevieXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_14XORG-6_8_99_13XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10Alan Coopersmith2005-05-221-3/+38
| | | | | | | | extension crash with signal 11 on keyboard Bugzilla #1205 <https://bugs.freedesktop.org/show_bug.cgi?id=1205> Xevie client receives two KeyPress events on consumed keys when XKB is enabled Patch #2223 <https://bugs.freedesktop.org/attachment.cgi?id=2223> Fixes for both of these and some other Xevie bugs (Derek Wang - Sun Microsystems)
* Set version to 1.0.Daniel Stone2005-05-211-1/+1
|
* revert last change, didn't do right thing at all, sorry for the noiseAdam Jackson2005-05-191-1/+1
|