summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-02-27 23:48:59 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-03-03 10:31:30 -0600
commit153993292cc9f11fed8fcba8de45b0c46d5e0ef2 (patch)
tree772310769244edceee186f784b51230598278472
parentcb83b334e489a4ec1cc067145c3f64b129475e7f (diff)
RTF import: fix spurious page breaks at doc end (related: rhbz#1065629)cp-4.2-branch-point
When a document ends with \sect it's possible that a spurious page break is created. In fact the spurious page break is always created by the RTF importer, sometimes it is deleted again by DomainMapper_Impl::RemoveLastParagraph() and sometimes not. It is created because on the final \sect RTFDocumentImpl::sectBreak() still calls startSectionGroup(), and the popState() for the \rtf1 group then calls sectBreak() another time. To prevent this, do not call startSectionGroup() from sectBreak() but instead from setNeedSect(), and ensure that it is called as soon as anything after \sect is read. One unit test fails because the \page is not handled properly: the conversion to \skbpage \sect \skbnone is not correct, because the \skb* keywords are an exception and affect the \sect that precedes them, not the following one; sending the \skbpage later unfortunately requires additional cleanup later. (cherry picked from commit e3f254ab8211fbab7541cde2100a35c875b0c240) RTF import: add unit test for page break in continuous section (cherry picked from commit f03218f43e8c25c2e136d364455f3cdaf95362b6) RTF import: fix paragraphs in header/footer (cherry picked from commit 74b3f4f00766d199df3b017d056cf7a00ae52988) Change-Id: I3c1a3bceb2c8b75bbecdc748170562451ce5f5c3 Reviewed-on: https://gerrit.libreoffice.org/8439 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
-rw-r--r--sw/qa/extras/rtfimport/data/cont-section-pagebreak.rtf16
-rw-r--r--sw/qa/extras/rtfimport/data/footer-para.rtf5
-rw-r--r--sw/qa/extras/rtfimport/rtfimport.cxx42
-rw-r--r--writerfilter/source/rtftok/rtfdocumentimpl.cxx71
-rw-r--r--writerfilter/source/rtftok/rtfdocumentimpl.hxx3
5 files changed, 116 insertions, 21 deletions
diff --git a/sw/qa/extras/rtfimport/data/cont-section-pagebreak.rtf b/sw/qa/extras/rtfimport/data/cont-section-pagebreak.rtf
new file mode 100644
index 000000000000..888dc2d0293e
--- /dev/null
+++ b/sw/qa/extras/rtfimport/data/cont-section-pagebreak.rtf
@@ -0,0 +1,16 @@
+{\rtf1 \ansi
+\fet0 \ftnbj \paperw11905 \paperh16837 \margt2267 \margb1133 \margl1417 \margr1417
+
+\sectd
+\sbknone
+FIRST
+\par
+\sect
+SECOND
+\par
+\page
+\sect
+THIRD
+\par
+\sect
+}
diff --git a/sw/qa/extras/rtfimport/data/footer-para.rtf b/sw/qa/extras/rtfimport/data/footer-para.rtf
new file mode 100644
index 000000000000..28863b202f17
--- /dev/null
+++ b/sw/qa/extras/rtfimport/data/footer-para.rtf
@@ -0,0 +1,5 @@
+{\rtf1\fbidis\ansi\ansicpg0\uc0\deff0\deflang0\deflangfe0\paperw11905\paperh16838\margl1200\margr1200\margt1200\margb1200\headery600\footery600\viewscale100\viewzk0\titlepg
+{\fonttbl{\f0\fnil Arial;}}
+{\footerf
+\pard\s0\fi0\li0\qc\ri0\sb0\sa0\itap0 \plain \f0\fs18 All Rights Reserved.\par}
+\pard\par}
diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx b/sw/qa/extras/rtfimport/rtfimport.cxx
index 950402790cd4..73bf74921801 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -17,6 +17,7 @@
#include <com/sun/star/drawing/LineStyle.hpp>
#include <com/sun/star/graphic/GraphicType.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
+#include <com/sun/star/style/BreakType.hpp>
#include <com/sun/star/style/CaseMap.hpp>
#include <com/sun/star/style/LineSpacing.hpp>
#include <com/sun/star/style/LineSpacingMode.hpp>
@@ -1413,6 +1414,47 @@ DECLARE_RTFIMPORT_TEST(testNestedTable, "rhbz1065629.rtf")
getProperty<table::BorderLine2>(xCell, "RightBorder"));
CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(0xffffffff),
getProperty<sal_Int32>(xCell, "BackColor"));
+
+ // \sect at the end resulted in spurious page break
+ CPPUNIT_ASSERT_EQUAL(1, getPages());
+}
+
+DECLARE_RTFIMPORT_TEST(testContSectionPageBreak, "cont-section-pagebreak.rtf")
+{
+ uno::Reference<text::XTextRange> xParaSecond = getParagraph(2);
+ CPPUNIT_ASSERT_EQUAL(OUString("SECOND"), xParaSecond->getString());
+ CPPUNIT_ASSERT_EQUAL(style::BreakType_NONE,
+ getProperty<style::BreakType>(xParaSecond, "BreakType"));
+ CPPUNIT_ASSERT_EQUAL(OUString(""),
+ getProperty<OUString>(xParaSecond, "PageDescName"));
+ // actually not sure how many paragraph there should be between
+ // SECOND and THIRD - important is that the page break is on there
+ uno::Reference<text::XTextRange> xParaNext = getParagraph(3);
+ CPPUNIT_ASSERT_EQUAL(OUString(""), xParaNext->getString());
+ CPPUNIT_ASSERT_EQUAL(OUString("Converted1"),
+ getProperty<OUString>(xParaNext, "PageDescName"));
+ uno::Reference<text::XTextRange> xParaThird = getParagraph(4);
+ CPPUNIT_ASSERT_EQUAL(OUString("THIRD"), xParaThird->getString());
+ CPPUNIT_ASSERT_EQUAL(style::BreakType_NONE,
+ getProperty<style::BreakType>(xParaThird, "BreakType"));
+ CPPUNIT_ASSERT_EQUAL(OUString(""),
+ getProperty<OUString>(xParaThird, "PageDescName"));
+
+ CPPUNIT_ASSERT_EQUAL(2, getPages());
+}
+
+DECLARE_RTFIMPORT_TEST(testFooterPara, "footer-para.rtf")
+{
+ // check that paragraph properties in footer are imported
+ uno::Reference<text::XText> xFooterText =
+ getProperty< uno::Reference<text::XText> >(
+ getStyles("PageStyles")->getByName("First Page"), "FooterText");
+ uno::Reference<text::XTextContent> xParagraph =
+ getParagraphOrTable(1, xFooterText);
+ CPPUNIT_ASSERT_EQUAL(OUString("All Rights Reserved."),
+ uno::Reference<text::XTextRange>(xParagraph, uno::UNO_QUERY)->getString());
+ CPPUNIT_ASSERT_EQUAL((sal_Int16)style::ParagraphAdjust_CENTER,
+ getProperty</*style::ParagraphAdjust*/sal_Int16>(xParagraph, "ParaAdjust"));
}
DECLARE_RTFIMPORT_TEST(testCp1000016, "hello.rtf")
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index d5e7843592ce..0dc20b0685fd 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -279,7 +279,8 @@ RTFDocumentImpl::RTFDocumentImpl(uno::Reference<uno::XComponentContext> const& x
m_aHexBuffer(),
m_bMathNor(false),
m_bIgnoreNextContSectBreak(false),
- m_bNeedSect(true),
+ m_nResetBreakOnSectBreak(static_cast<RTFKeyword>(-1)),
+ m_bNeedSect(false), // done by checkFirstRun
m_bWasInFrame(false),
m_bHadPicture(false),
m_bHadSect(false),
@@ -392,16 +393,15 @@ void RTFDocumentImpl::checkFirstRun()
writerfilter::Reference<Table>::Pointer_t const pTable(new RTFReferenceTable(aSettingsTableEntries));
Mapper().table(NS_ooxml::LN_settings_settings, pTable);
// start initial paragraph
- if (!m_pSuperstream)
- Mapper().startSectionGroup();
- Mapper().startParagraphGroup();
+ m_bFirstRun = false;
+ assert(!m_bNeedSect);
+ setNeedSect(); // first call that succeeds
// set the requested default font, if there are none
RTFValue::Pointer_t pFont = m_aDefaultState.aCharacterSprms.find(NS_sprm::LN_CRgFtc0);
RTFValue::Pointer_t pCurrentFont = m_aStates.top().aCharacterSprms.find(NS_sprm::LN_CRgFtc0);
if (pFont && !pCurrentFont)
dispatchValue(RTF_F, pFont->getInt());
- m_bFirstRun = false;
}
}
@@ -417,7 +417,22 @@ void RTFDocumentImpl::setNeedPar(bool bNeedPar)
void RTFDocumentImpl::setNeedSect(bool bNeedSect)
{
- m_bNeedSect = bNeedSect;
+ // ignore setting before checkFirstRun - every keyword calls setNeedSect!
+ if (!m_bNeedSect && bNeedSect && !m_bFirstRun)
+ {
+ if (!m_pSuperstream) // no sections in header/footer!
+ {
+ Mapper().startSectionGroup();
+ }
+ // set flag in substream too - otherwise multiple startParagraphGroup
+ m_bNeedSect = bNeedSect;
+ Mapper().startParagraphGroup();
+ setNeedPar(true);
+ }
+ else if (m_bNeedSect && !bNeedSect)
+ {
+ m_bNeedSect = bNeedSect;
+ }
}
writerfilter::Reference<Properties>::Pointer_t RTFDocumentImpl::getProperties(RTFSprms& rAttributes, RTFSprms& rSprms)
@@ -542,6 +557,7 @@ void RTFDocumentImpl::sectBreak(bool bFinal = false)
{
dispatchFlag(RTF_PARD);
dispatchSymbol(RTF_PAR);
+ m_bNeedSect = bNeedSect;
}
while (!m_nHeaderFooterPositions.empty())
{
@@ -572,12 +588,7 @@ void RTFDocumentImpl::sectBreak(bool bFinal = false)
Mapper().endParagraphGroup();
if (!m_pSuperstream)
Mapper().endSectionGroup();
- if (!bFinal)
- {
- Mapper().startSectionGroup();
- Mapper().startParagraphGroup();
- }
- m_bNeedPar = true;
+ m_bNeedPar = false;
m_bNeedSect = false;
}
@@ -1345,8 +1356,8 @@ void RTFDocumentImpl::replayBuffer(RTFBuffer_t& rBuffer,
int RTFDocumentImpl::dispatchDestination(RTFKeyword nKeyword)
{
- checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
setNeedSect();
+ checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
RTFSkipDestination aSkip(*this);
switch (nKeyword)
{
@@ -1867,11 +1878,11 @@ int RTFDocumentImpl::dispatchDestination(RTFKeyword nKeyword)
int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
{
+ setNeedSect();
if (nKeyword != RTF_HEXCHAR)
checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
else
checkUnicode(/*bUnicode =*/ true, /*bHex =*/ false);
- setNeedSect();
RTFSkipDestination aSkip(*this);
if (RTF_LINE == nKeyword)
@@ -1944,7 +1955,15 @@ int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
if (m_bIgnoreNextContSectBreak)
m_bIgnoreNextContSectBreak = false;
else
+ {
sectBreak();
+ if (m_nResetBreakOnSectBreak != -1)
+ { // this should run on _second_ \sect after \page
+ dispatchSymbol(m_nResetBreakOnSectBreak); // lazy reset
+ m_nResetBreakOnSectBreak = static_cast<RTFKeyword>(-1);
+ m_bNeedSect = false; // dispatchSymbol set it
+ }
+ }
}
break;
case RTF_NOBREAK:
@@ -2116,19 +2135,24 @@ int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
RTFValue::Pointer_t pBreak = m_aStates.top().aSectionSprms.find(NS_sprm::LN_SBkc);
// Unless we're on a title page.
RTFValue::Pointer_t pTitlePg = m_aStates.top().aSectionSprms.find(NS_ooxml::LN_EG_SectPrContents_titlePg);
- if ((pBreak.get() && !pBreak->getInt()) && !(pTitlePg.get() && pTitlePg->getInt()))
+ if (((pBreak.get() && !pBreak->getInt())
+ || m_nResetBreakOnSectBreak == RTF_SBKNONE)
+ && !(pTitlePg.get() && pTitlePg->getInt()))
{
if (m_bWasInFrame)
{
dispatchSymbol(RTF_PAR);
m_bWasInFrame = false;
}
- dispatchFlag(RTF_SBKPAGE);
sectBreak();
- dispatchFlag(RTF_SBKNONE);
+ // note: this will not affect the following section break
+ // but the one just pushed
+ dispatchFlag(RTF_SBKPAGE);
if (m_bNeedPar)
dispatchSymbol(RTF_PAR);
m_bIgnoreNextContSectBreak = true;
+ // arrange to clean up the syntetic RTF_SBKPAGE
+ m_nResetBreakOnSectBreak = RTF_SBKNONE;
}
else
{
@@ -2162,8 +2186,8 @@ int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
int RTFDocumentImpl::dispatchFlag(RTFKeyword nKeyword)
{
- checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
setNeedSect();
+ checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
RTFSkipDestination aSkip(*this);
int nParam = -1;
int nSprm = -1;
@@ -2295,6 +2319,10 @@ int RTFDocumentImpl::dispatchFlag(RTFKeyword nKeyword)
}
if (nParam >= 0)
{
+ if (m_nResetBreakOnSectBreak != -1)
+ {
+ m_nResetBreakOnSectBreak = nKeyword;
+ }
RTFValue::Pointer_t pValue(new RTFValue(nParam));
m_aStates.top().aSectionSprms.set(NS_sprm::LN_SBkc, pValue);
return 0;
@@ -2902,8 +2930,8 @@ int RTFDocumentImpl::dispatchFlag(RTFKeyword nKeyword)
int RTFDocumentImpl::dispatchValue(RTFKeyword nKeyword, int nParam)
{
- checkUnicode(/*bUnicode =*/ nKeyword != RTF_U, /*bHex =*/ true);
setNeedSect();
+ checkUnicode(/*bUnicode =*/ nKeyword != RTF_U, /*bHex =*/ true);
RTFSkipDestination aSkip(*this);
int nSprm = 0;
RTFValue::Pointer_t pIntValue(new RTFValue(nParam));
@@ -3869,8 +3897,8 @@ int RTFDocumentImpl::dispatchValue(RTFKeyword nKeyword, int nParam)
int RTFDocumentImpl::dispatchToggle(RTFKeyword nKeyword, bool bParam, int nParam)
{
- checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
setNeedSect();
+ checkUnicode(/*bUnicode =*/ true, /*bHex =*/ true);
RTFSkipDestination aSkip(*this);
int nSprm = -1;
RTFValue::Pointer_t pBoolValue(new RTFValue(!bParam || nParam != 0));
@@ -4721,7 +4749,8 @@ int RTFDocumentImpl::popState()
// not in case of other substreams, like headers.
if (m_bNeedCr && !(m_nStreamType == NS_rtf::LN_footnote || m_nStreamType == NS_rtf::LN_endnote))
dispatchSymbol(RTF_PAR);
- sectBreak(true);
+ if (m_bNeedSect) // may be set by dispatchSymbol above!
+ sectBreak(true);
}
m_aStates.pop();
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.hxx b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
index 932ec4689f7c..fa1f3d672c2e 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.hxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
@@ -524,6 +524,9 @@ namespace writerfilter {
bool m_bMathNor;
/// If the next continous section break should be ignored.
bool m_bIgnoreNextContSectBreak;
+ /// clean up a synthetic page break, see RTF_PAGE
+ /// if inactive value is -1, otherwise the RTF_SKB* to restore
+ RTFKeyword m_nResetBreakOnSectBreak;
/// If a section break is needed before the end of the doc (false right after a section break).
bool m_bNeedSect;
/// If aFrame.inFrame() was true in the previous state.
ton' href='/libreoffice/libs-core/'>summarylogtree libreoffice/libs-externobsolete from 3.5 - External librariesroot13 yearssummarylogtree libreoffice/libs-extern-sysobsolete from 3.5 - Externa libraries (usually available in the system)root13 yearssummarylogtree libreoffice/libs-guiobsolete from 3.5 - GUI-related librariesroot12 yearssummarylogtree libreoffice/libvisiolibrary for parsing the visio file format structureroot6 hourssummarylogtree libreoffice/lightproofLightproof - the awesome python grammar checkermichael5 yearssummarylogtree libreoffice/onlineLibreOffice Online excellence.michael4 yearssummarylogtree libreoffice/original-artworkThe place for beautiful new artwork for libreoffice.michael12 yearssummarylogtree libreoffice/postprocessobsolete from 3.5 - Post-buildroot13 yearssummarylogtree libreoffice/sdkobsolete from 3.5 - Software Development Kitroot13 yearssummarylogtree libreoffice/templatesLibreOffice templates repository for new attractive templates under CC0michael12 yearssummarylogtree libreoffice/testingobsolete from 3.5 - Testing toolsroot13 yearssummarylogtree libreoffice/translationsUnnamed repository; edit this file to name it for gitweb.root4 dayssummarylogtree libreoffice/uglyugly stuffroot13 yearssummarylogtree libreoffice/ureobsolete from 3.5 - UNO Runtime Environmentroot13 yearssummarylogtree libreoffice/votingBits of code for running the TDF voting processroot7 yearssummarylogtree libreoffice/websiteobsolete website config ( now using silverstripe, see https://github.com/tdf )root5 yearssummarylogtree libreoffice/writerobsolete from 3.5 - Text processing application (Writer)root13 yearssummarylogtree libspectrelibspectre is a small library for rendering Postscript documents. (mirrored fro...carlosgc20 monthssummarylogtree libvaLibva project has moved to https://github.com/01org/libvabastian8 yearssummarylogtree libxkbcommonKeyboard handling library using XKB data (mirrored from https://gitlab.freedesk...daniels11 yearssummarylogtree libxklavierX Keyboard Extension high-level API (mirrored from https://gitlab.freedesktop....root11 yearssummarylogtree lightdmCross platform display managerroot8 yearssummarylogtree loudmouthLoudmouth Glib XMPP libraryroot8 yearssummarylogtree media-player-infoMedia Player Information (mirrored from https://gitlab.freedesktop.org/media-pl...root3 weekssummarylogtree mesa/cloverOpenCL implementation on top of Gallium. (mirrored from https://gitlab.freedesk...zack14 yearssummarylogtree mesa/crucibleTest suite for Vulkan drivers (mirrored from https://gitlab.freedesktop.org/mes...UNKNOWN6 weekssummarylogtree mesa/demosA collection of OpenGL / Mesa demos and test programs. (mirrored from https://g...anholt36 hourssummarylogtree mesa/drmDirect Rendering Manager headers and kernel modules (mirrored from https://gitl...brianp13 dayssummarylogtree mesa/gluUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...root14 monthssummarylogtree mesa/glutMesa GLUT (GL Utility Library) (mirrored from https://gitlab.freedesktop.org/me...airlied12 yearssummarylogtree mesa/glwGL widget for Athena and Motif. (mirrored from https://gitlab.freedesktop.org/m...root6 yearssummarylogtree mesa/kmscubeExample KMS/GBM/EGL application (mirrored from https://gitlab.freedesktop.org/m...robclark4 monthssummarylogtree mesa/libwsbmGeneral-purpose user-space buffer manager. (mirrored from https://gitlab.freed...zack15 yearssummarylogtree mesa/linux-agp-compatBackwards-compatible AGP kernel module (mirrored from https://gitlab.freedeskto...brianp17 yearssummarylogtree mesa/mesaThe Mesa 3D Graphics Library (mirrored from https://gitlab.freedesktop.org/mesa...brianp3 hourssummarylogtree mesa/r600_demotesting tool for 3D engine on AMD r6xx/r7xx GPUs. (mirrored from https://gitlab...root15 yearssummarylogtree mesa/rbug-guirbug GUI - remote debugging for galliumairlied10 yearssummarylogtree mesa/shader-dbCollection of shaders for offline analysis. (mirrored from https://gitlab.freed...root2 monthssummarylogtree mesa/tasksTasks to be done for Mesa/piglit development. (mirrored from https://gitlab.fre...root8 yearssummarylogtree mesa/vkpipeline-dbCollection of Vulkan pipelines for offline analysis (mirrored from https://gitl...UNKNOWN4 yearssummarylogtree mesa/vmwgfxVMWARE gfx kernel driver (mirrored from https://gitlab.freedesktop.org/mesa/vmw...airlied6 yearssummarylogtree nouveau/linux-2.6Unnamed repository; edit this file to name it for gitweb.darktama9 yearssummarylogtree nouveau/mesaNouveau Mesa developmentmarcheu16 yearssummarylogtree nouveau/xf86-video-nouveauNouveau Xorg driver for NVIDIA chips (mirrored from https://gitlab.freedesktop....marcheu12 monthssummarylogtree ohmOpen Hardware Managerrobtaylor15 yearssummarylogtree openchrome/drm-openchromeDRM driver for VIA IGPsroot6 monthssummarylogtree openchrome/mesa-openchromeGallium 3D driver for VIA IGPsroot4 yearssummarylogtree openchrome/xf86-video-openchromeX driver for VIA IGPsroot18 monthssummarylogtree p11-glue/p11-glueEffort to promote PKCS#11 as glue between crypto librariesroot8 yearssummarylogtree p11-glue/p11-kitPKCS#11 crypto framework for multiple consumersroot8 yearssummarylogtree p11-glue/pkcs11-trust-assertionsSpecification for sharing PKCS#11 trust assertionsroot8 yearssummarylogtree packagekitSystem package management serviceroot3 monthssummarylogtree packagekit/PackageKitSystem package management servicehughsient3 monthssummarylogtree packagekit/PackageKit-QtUnnamed repository; edit this file to name it for gitweb.hughsient16 yearssummarylogtree papyonMSN client library written in Python (mirrored from https://gitlab.freedesktop....root13 yearssummarylogtree piglitpiglit is an OpenGL test suite (mirrored from https://gitlab.freedesktop.org/me...anholt3 dayssummarylogtree pixmanPixman: The pixel-manipulation library for X and cairo. (mirrored from https://...cworth2 weekssummarylogtree pkg-configManage compile and link flags for libraries (mirrored from https://gitlab.freed...tfheen7 yearssummarylogtree plymouthPlymouth graphical boot system. (mirrored from https://gitlab.freedesktop.org/p...halfline3 weekssummarylogtree pm-utilspower management scripts for suspend and hibernate (mirrored from https://gitla...root14 yearssummarylogtree polkitAuthorization Manager (mirrored from https://gitlab.freedesktop.org/polkit/polk...root8 monthssummarylogtree poppler/popplerThe poppler pdf rendering library (mirrored from https://gitlab.freedesktop.org...krh9 dayssummarylogtree poppler/poppler-dataData files for the poppler pdf rendering library (mirrored from https://gitlab....krh20 monthssummarylogtree poppler/poppler-glibmmGlibMM wrapper for poppler (mirrored from https://gitlab.freedesktop.org/popple...root12 yearssummarylogtree poppler/testpoppler regression test suite (mirrored from https://gitlab.freedesktop.org/pop...anholt5 monthssummarylogtree pulseaudio/paprefsPulseaudio preferences UI (mirrored from https://gitlab.freedesktop.org/pulseau...root7 weekssummarylogtree pulseaudio/pavucontrolPulseAudio Volume Control (mirrored from https://gitlab.freedesktop.org/pulsea...root7 weekssummarylogtree pulseaudio/planetConfiguration data for planet pulseaudio (mirrored from https://gitlab.freedes...root11 yearssummarylogtree pulseaudio/pulseaudioPulseAudio Sound Server (mirrored from https://gitlab.freedesktop.org/pulseaudi...root7 dayssummarylogtree pulseaudio/reserveDevice Reservation Specification (mirrored from https://gitlab.freedesktop.org/...root8 yearssummarylogtree pulseaudio/webrtc-audio-processingAudioProcessing library based on Google's implementation of WebRTC (mirrored fr...root6 monthssummarylogtree py2cairoPython (2.x) bindings for the cairo graphics library.stevech109712 yearssummarylogtree pycairoPython bindings for the cairo graphics library.stevech109712 yearssummarylogtree python-geocluePython geoclue module (mirrored from https://gitlab.freedesktop.org/geoclue/pyt...root12 yearssummarylogtree razorUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...root16 yearssummarylogtree realmd/adcliLibrary of routines for joining a machine to Active Directory (without samba) an...root24 monthssummarylogtree realmd/realmdrealmd is a dbus system service that manages discovery and enrollment in realms/...root35 hourssummarylogtree roadsterA cairo-based GPS mapping application.cworth16 yearssummarylogtree sbox2Scratchbox v2 (mirrored from https://gitlab.freedesktop.org/archived-projects/s...lle15 yearssummarylogtree shared-desktop-ontologiesshared-desktop-ontologies contains the RDF ontologies used in semantic desktop a...root14 yearssummarylogtree shaveA project to 'shave' verbose data out of autotools output (mirrored from https:...damien14 yearssummarylogtree sound-theme-freedesktopDefault theme for the XDG Sound Theme Specification (mirrored from https://gitl...root12 yearssummarylogtree spice/libcacardCommon Access Card library (mirrored from https://gitlab.freedesktop.org/spice/...elmarco15 monthssummarylogtree spice/linux/vd_agentspice agent for linux (mirrored from https://gitlab.freedesktop.org/spice/linux...root2 monthssummarylogtree spice/qemuQemu (mirrored from https://gitlab.freedesktop.org/spice/qemu)root5 yearssummarylogtree spice/slirpUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...root12 yearssummarylogtree spice/spiceUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...root3 monthssummarylogtree spice/spice-commonshared code between the client and server (mirrored from https://gitlab.freedes...root9 monthssummarylogtree spice/spice-gtkclient library using glib and gtk (mirrored from https://gitlab.freedesktop.org...root5 monthssummarylogtree spice/spice-html5a html5 client for the spice protocol (mirrored from https://gitlab.freedesktop...root8 monthssummarylogtree spice/spice-jhbuildJHBuild moduleset to build SPICE modules (mirrored from https://gitlab.freedesk...root4 yearssummarylogtree spice/spice-nsisWindows NSIS installer for VirtIO/QXL guest drivers and SPICE guest agent (mirr...root5 yearssummarylogtree spice/spice-protocolUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...root3 yearssummarylogtree spice/spice-serverserver component (mirrored from https://gitlab.freedesktop.org/spice/spice-serv...root8 yearssummarylogtree spice/spice-xpiMozilla Firefox spice plugin (mirrored from https://gitlab.freedesktop.org/spic...root9 yearssummarylogtree spice/spicecold client using low level GDI/X (mirrored from https://gitlab.freedesktop.org/...root8 yearssummarylogtree spice/usbredirusbredir libraries and utilities (mirrored from https://gitlab.freedesktop.org/...root8 weekssummarylogtree spice/vdesktopUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...root14 yearssummarylogtree spice/win32/qxlUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...root5 yearssummarylogtree spice/win32/qxl-wddm-dodA Windows QXL WDDM DOD driver (Display-Only-Driver). Heavily based on Microsof...root19 monthssummarylogtree spice/win32/usbclerkWindows service for signing and installing usb device drivers (mirrored from ht...root11 yearssummarylogtree spice/win32/usbdkA Windows filter driver that supports redirection of USB traffic to user-space a...root5 yearssummarylogtree spice/win32/vd_agentUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...root3 weekssummarylogtree spice/win32/vdi_portUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...root15 yearssummarylogtree startup-notificationlibrary for program launch feedback (mirrored from https://gitlab.freedesktop.o...root2 monthssummarylogtree swfdec/swfdecA decoding and rendering library for Macromedia Flash animations. (mirrored from...ds15 yearssummarylogtree swfdec/swfdec-directfbdirectfb swfdec player (mirrored from https://gitlab.freedesktop.org/archived-pr...root16 yearssummarylogtree swfdec/swfdec-gnomeCollection of Swfdec applications for the GNOME platform. (mirrored from https:/...root17 yearssummarylogtree swfdec/swfdec-konquerorKDE and Konqueror plugin for Swfdec (mirrored from https://gitlab.freedesktop.o...company17 yearssummarylogtree swfdec/swfdec-mozillaswfdec mozilla plugin (mirrored from https://gitlab.freedesktop.org/archived-pro...anholt15 yearssummarylogtree system-tools-backendsSet of cross-platform configuration modules for Linux, FreeBSD, Solaris and othe...root13 yearssummarylogtree system-tools-backends-oldSet of cross-platform configuration modules for Linux, FreeBSD, Solaris and othe...carlosg15 yearssummarylogtree systemd/systemdSystem and Session ManagerUNKNOWN9 yearssummarylogtree systemd/systemd-stableStable version of SystemdUNKNOWN9 yearssummarylogtree systemd/systemd-uiUI tools for systemdUNKNOWN10 yearssummarylogtree tango/tango-icon-libraryTango Icon library (mirrored from https://gitlab.freedesktop.org/tango/tango-ic...root15 yearssummarylogtree tango/tango-icon-themeA library of icons for tango (mirrored from https://gitlab.freedesktop.org/tang...root16 yearssummarylogtree tartanTools and Clang plugins for GLib development (mirrored from https://gitlab.free...UNKNOWN11 monthssummarylogtree tegra/linuxLinux kernel tree for NVIDIA Tegra DRM driversroot24 monthssummarylogtree telepathy/telepathy-butterflyMSN connection manager (mirrored from https://gitlab.freedesktop.org/telepathy...root13 yearssummarylogtree telepathy/telepathy-docTelepathy Documentation (mirrored from https://gitlab.freedesktop.org/telepath...root13 yearssummarylogtree telepathy/telepathy-farsightTelepathy-Farsight library (mirrored from https://gitlab.freedesktop.org/telep...root13 yearssummarylogtree telepathy/telepathy-farstreamTelepathy client library that uses Farsight2 to handle Call channels (mirrored...root8 yearssummarylogtree telepathy/telepathy-gabbleXMPP connection manager (mirrored from https://gitlab.freedesktop.org/telepath...root8 yearssummarylogtree telepathy/telepathy-glibTelepathy GLib bindings (mirrored from https://gitlab.freedesktop.org/telepath...root7 weekssummarylogtree telepathy/telepathy-hazelibpurple-based connection manager, exposing Pidgin's protocols to Telepathy. ...root4 yearssummarylogtree telepathy/telepathy-idleIRC connection manager for Telepathy (mirrored from https://gitlab.freedesktop...root4 yearssummarylogtree telepathy/telepathy-loggerTPL - the Telepathy Logger (mirrored from https://gitlab.freedesktop.org/telep...root7 weekssummarylogtree telepathy/telepathy-mission-controlGlib implementation of Telepathy Mission Control daemon (mirrored from https:/...root3 yearssummarylogtree telepathy/telepathy-origamiSkeleton repository for Telepathy extensions (mirrored from https://gitlab.free...root8 yearssummarylogtree telepathy/telepathy-phoenixecho bot for the telepathy framework (mirrored from https://gitlab.freedesktop....root11 yearssummarylogtree telepathy/telepathy-pythonTelepathy Python bindings using dbus-python (mirrored from https://gitlab.free...root12 yearssummarylogtree telepathy/telepathy-qtNext-generation bindings of Telepathy and others using the same XML spec format ...root2 yearssummarylogtree telepathy/telepathy-qt-farstreamQt bindings to telepathy-farstream for using Call channels in Qt applications. ...root8 yearssummarylogtree telepathy/telepathy-qt4Next-generation bindings of Telepathy and others using the same XML spec format ...root2 yearssummarylogtree telepathy/telepathy-qt4-yellTemporary TelepathyQt4 submodule to implement draft APIs (mirrored from https:...root13 yearssummarylogtree telepathy/telepathy-rakiaSIP connection manager using Sofia-SIP (mirrored from https://gitlab.freedeskt...root10 yearssummarylogtree telepathy/telepathy-ringCellular call/SMS connection manager using oFono (mirrored from https://gitlab....smcv11 yearssummarylogtree telepathy/telepathy-salutLink-local XMPP connection manager for the Telepathy framework (mirrored from ...root8 yearssummarylogtree telepathy/telepathy-specTelepathy D-Bus API specification (mirrored from https://gitlab.freedesktop.or...root5 yearssummarylogtree telepathy/telepathy-ssh-contactTelepathy SSH contact sharing support via Tubes (mirrored from https://gitlab.f...root12 yearssummarylogtree telepathy/telepathy-sunshineGadu-Gadu connection manager (mirrored from https://gitlab.freedesktop.org/tel...root13 yearssummarylogtree telepathy/telepathy-yellTemporary submodule to implement draft Call APIs (mirrored from https://gitlab...root13 yearssummarylogtree twinTwin: A tiny window system (mirrored from https://gitlab.freedesktop.org/archiv...keithp17 yearssummarylogtree uchardet/uchardetuchardet is an encoding detector library, which takes a sequence of bytes in an ...root10 monthssummarylogtree udisksDisk Managerdavid8 yearssummarylogtree upowerPower management support for DeviceKit (mirrored from https://gitlab.freedeskto...root3 dayssummarylogtree vaapi/intel-driverIntel-driver project has moved to https://github.com/01org/intel-vaapi-driverroot8 yearssummarylogtree vaapi/intel-hybrid-driverintel-hybrid-driver project has moved to https://github.com/01org/intel-hybrid-d...UNKNOWN8 yearssummarylogtree vaapi/libmixVA-API middlewareroot8 yearssummarylogtree vaapi/libvaLibva project has moved to https://github.com/01org/libvaroot8 yearssummarylogtree vaapi/libva-sdkVA-API SDK for hardware encode and decoderoot8 yearssummarylogtree vaapi/libva-utilsLibva-utils project has moved to https://github.com/01org/libva-utilsUNKNOWNsummarylogtree vaapi/pvr-driverHW video decode/encode support for PowerVR platforms.root13 yearssummarylogtree vaapi/vdpau-driverHW video decode support for VDPAU platforms. e.g. NVIDIAroot12 yearssummarylogtree vaapi/xvba-driverHW video decode support for XvBA platforms. e.g. ATIroot13 yearssummarylogtree vdpau/libvdpauVideo Decode and Presentation API for UNIX (mirrored from https://gitlab.freede...aplattner2 yearssummarylogtree vdpau/vdpauinfoVDPAU info tool (mirrored from https://gitlab.freedesktop.org/vdpau/vdpauinfo)aplattner2 yearssummarylogtree virglrendererVirGL virtual OpenGL renderer (mirrored from https://gitlab.freedesktop.org/vir...airlied3 dayssummarylogtree wayland/libinputinput device management and event handling library (mirrored from https://gitla...root15 hourssummarylogtree wayland/waylandWayland Compositor Infrastructure (mirrored from https://gitlab.freedesktop.org...root11 dayssummarylogtree wayland/wayland-build-toolsTools for building Wayland/Westonbryce7 yearssummarylogtree wayland/wayland-javaJava bindings for Wayland clientsroot9 yearssummarylogtree wayland/wayland-protocolsWayland protocol development (mirrored from https://gitlab.freedesktop.org/wayl...UNKNOWN2 weekssummarylogtree wayland/wayland-webWayland Web Pageskrh6 yearssummarylogtree wayland/westonThe Weston Wayland Compositor (mirrored from https://gitlab.freedesktop.org/way...root2 dayssummarylogtree wiki/apocWiki for the apoc projectikiwiki11 yearssummarylogtree wiki/driWiki for the dri projectikiwiki6 monthssummarylogtree wiki/gstreamerWiki for the gstreamer projectikiwiki9 yearssummarylogtree wiki/gypsyWiki for the gypsy projectikiwiki9 yearssummarylogtree wiki/ldtpWiki for the ldtp projectikiwiki9 yearssummarylogtree wiki/libbsdWiki for the libbsd projectikiwiki7 monthssummarylogtree wiki/libdloWiki for the libdlo projectikiwiki11 yearssummarylogtree wiki/liboilWiki for the liboil projectikiwiki11 yearssummarylogtree wiki/libopenrawWiki for the libopenraw projectikiwiki6 yearssummarylogtree wiki/niceWiki for the nice projectikiwiki6 yearssummarylogtree wiki/nouveauWiki for the nouveau projectikiwiki4 yearssummarylogtree wiki/packagekitWiki for the packagekit projectikiwiki9 yearssummarylogtree wiki/pm-utilsWiki for the pm-utils projectikiwiki11 yearssummarylogtree wiki/sitewranglersWiki for Freedesktop.org sitewranglingikiwiki2 dayssummarylogtree wiki/swfdecWiki for the swfdec projectikiwiki11 yearssummarylogtree wiki/telepathyWiki for the telepathy projectikiwiki8 yearssummarylogtree wiki/testrepotestingikiwiki7 yearssummarylogtree wiki/wwwWiki for www.freedesktop.orgikiwiki7 dayssummarylogtree wiki/xcbWiki for the xcb projectikiwiki4 weekssummarylogtree wiki/xorgWiki for the xorg projectikiwiki4 dayssummarylogtree wockyWocky XMPP library (mirrored from https://gitlab.freedesktop.org/telepathy/woc...root4 yearssummarylogtree xcb/demoX C Binding (XCB) demo programs (mirrored from https://gitlab.freedesktop.org/x...jamey2 yearssummarylogtree xcb/historicPre-git history of XCB (mirrored from https://gitlab.freedesktop.org/xorg/lib/h...jamey19 yearssummarylogtree xcb/libXamineX protocol dissection library based on the XCB protocol descriptions (mirrored ...josh18 yearssummarylogtree xcb/libxcbThe X C Binding (XCB) library (mirrored from https://gitlab.freedesktop.org/xor...jamey5 monthssummarylogtree xcb/protoXML-XCB protocol descriptions (mirrored from https://gitlab.freedesktop.org/xor...josh5 monthssummarylogtree xcb/pthread-stubsLibrary that provides pthread stubs that are missing from your platform libc. (...jamey14 monthssummarylogtree xcb/utilCore XCB utility functions (mirrored from https://gitlab.freedesktop.org/xorg/l...jamey2 weekssummarylogtree xcb/util-common-m4M4 macros common to XCB utility libraries (mirrored from https://gitlab.freedes...root2 yearssummarylogtree xcb/util-cursorXCB cursor library (libxcursor port) (mirrored from https://gitlab.freedesktop....alanc13 dayssummarylogtree xcb/util-errorsHelper library for printing information about X11 errors (mirrored from https:/...alanc13 dayssummarylogtree xcb/util-imageXCB port of Xlib's XImage and XShmImage (mirrored from https://gitlab.freedeskt...root2 weekssummarylogtree xcb/util-keysymsStandard X constants and conversion to/from keycodes (mirrored from https://git...root13 dayssummarylogtree xcb/util-oldXCB Utility library repository before being split (Deprecated) (mirrored from h...root14 yearssummarylogtree xcb/util-renderutilConvenience functions for the Render extension (mirrored from https://gitlab.fr...root13 dayssummarylogtree xcb/util-wmClient and window-manager helpers for ICCCM and EWMH (mirrored from https://git...root9 weekssummarylogtree xcb/xhsbX Haskell Binding, based on the X C Binding (XCB) library (mirrored from https:...jamey18 yearssummarylogtree xcb/xpybX Python Binding, based on the X C Binding (XCB) library (mirrored from https:/...root2 yearssummarylogtree xdg-app/freedesktop-sdk-baseYocto layer and build script for xdg-app runtime basealexl8 yearssummarylogtree xdg-app/freedesktop-sdk-imagesPlatform and SDK runtimes for xdg-app based on freedesktop modulesalexl8 yearssummarylogtree xdg-app/xdg-appDeployment and sandboxing framework for desktop applicationsalexl8 yearssummarylogtree xdg/dapiUnnamed repository; edit this file 'description' to name the repository. (mirro...root17 yearssummarylogtree xdg/dapi-dbusUnnamed repository; edit this file 'description' to name the repository. (mirro...root17 yearssummarylogtree xdg/default-icon-themeUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...alexl7 yearssummarylogtree xdg/desktop-file-utilsUtilities for manipulating desktop files (mirrored from https://gitlab.freedesk...root2 monthssummarylogtree xdg/libxdg-vfsUnnamed repository; edit this file 'description' to name the repository. (mirro...root17 yearssummarylogtree xdg/mpris-specMedia Player Remote Interfacing Specification for D-Bus (mirrored from https://...root2 monthssummarylogtree xdg/pyxdgpython bindings for xdg (mirrored from https://gitlab.freedesktop.org/xdg/pyxdg...root2 yearssummarylogtree xdg/shared-mime-infoShared MIME info spec (mirrored from https://gitlab.freedesktop.org/xdg/shared-...alexl3 monthssummarylogtree xdg/xdg-specsCross-Desktop Group specifications and standards (mirrored from https://gitlab....jdanjou5 weekssummarylogtree xdg/xdg-user-dirsUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...alexl7 yearssummarylogtree xdg/xdg-utilsDesktop integration utilities (mirrored from https://gitlab.freedesktop.org/xdg...root3 monthssummarylogtree xdg/xdgmimeUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...alexl5 monthssummarylogtree xesamUnnamed repository; edit this file to name it for gitweb.kamstrup8 yearssummarylogtree xkeyboard-configXKB data. (mirrored from https://gitlab.freedesktop.org/xkeyboard-config/xkeybo...root31 hourssummarylogtree xorg/app/appresList X application resource database (mirrored from https://gitlab.freedesktop....krh3 monthssummarylogtree xorg/app/bdftopcfConvert X font from BDF to PCF (mirrored from https://gitlab.freedesktop.org/xo...krh2 monthssummarylogtree xorg/app/beforelightMIT-SCREEN-SAVER sample (mirrored from https://gitlab.freedesktop.org/xorg/app/...krh20 monthssummarylogtree xorg/app/bitmapXBM format bitmap editor and converter utilities (mirrored from https://gitlab....krh8 monthssummarylogtree xorg/app/compizOpenGL based compositing and windows manager (mirrored from https://gitlab.free...davidr15 yearssummarylogtree xorg/app/constypePrint type of console (mirrored from https://gitlab.freedesktop.org/xorg/app/co...krh19 monthssummarylogtree xorg/app/edid-decodeEDID decoder and conformance tester. (mirrored from https://gitlab.freedesktop....ajax6 yearssummarylogtree xorg/app/editresDynamic resource editor for X Toolkit applications (mirrored from https://gitla...krh7 monthssummarylogtree xorg/app/fdclockFreedesktop logo clock using cairo (mirrored from https://gitlab.freedesktop.or...keithp17 yearssummarylogtree xorg/app/fonttosfntWrap a bitmap font in a sfnt (TrueType) wrapper (mirrored from https://gitlab.f...krh7 weekssummarylogtree xorg/app/fslsfontsList fonts served by X font server (mirrored from https://gitlab.freedesktop.or...krh19 monthssummarylogtree xorg/app/fstobdfGenerate BDF font from X font server (mirrored from https://gitlab.freedesktop....krh11 monthssummarylogtree xorg/app/glxcompmgrX.org glxcompmgr application. (mirrored from https://gitlab.freedesktop.org/xor...krh17 yearssummarylogtree xorg/app/grandrRandR user interface using GTK+ libraries (mirrored from https://gitlab.freedes...keithp16 yearssummarylogtree xorg/app/iceauthICE authority file utility (mirrored from https://gitlab.freedesktop.org/xorg/a...krh6 monthssummarylogtree xorg/app/icoAnimate an icosahedron or other polyhedron (mirrored from https://gitlab.freede...krh19 monthssummarylogtree xorg/app/intel-gen4asmUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...anholt12 yearssummarylogtree xorg/app/intel-gpu-toolsTest suite and tools for DRM/KMS drivers (mirrored from https://gitlab.freedesk...root9 hourssummarylogtree xorg/app/lbxproxyLow BandWidth X proxy (mirrored from https://gitlab.freedesktop.org/xorg/app/lb...krh6 yearssummarylogtree xorg/app/listresList resources in widgets (mirrored from https://gitlab.freedesktop.org/xorg/ap...krh7 monthssummarylogtree xorg/app/luitConvert terminal i/o from legacy encodings to UTF-8 (mirrored from https://gitl...krh6 yearssummarylogtree xorg/app/makepsresX.org makepsres application. (mirrored from https://gitlab.freedesktop.org/xorg...krh20 yearssummarylogtree xorg/app/mdmMultiseat (pseudo-)display manager (mirrored from https://gitlab.freedesktop.or...vignatti16 yearssummarylogtree xorg/app/mkcfmCreate summaries of CID font metric files (mirrored from https://gitlab.freedes...krh15 yearssummarylogtree xorg/app/mkcomposecacheGenerate libX11 compose caches (mirrored from https://gitlab.freedesktop.org/xo...mhopf19 monthssummarylogtree xorg/app/mkfontdirCreate an index of X font files in a directory (mirrored from https://gitlab.fr...krh6 yearssummarylogtree xorg/app/mkfontscaleCreate an index of scalable font files for X (mirrored from https://gitlab.free...krh7 monthssummarylogtree xorg/app/oclockRound X clock (mirrored from https://gitlab.freedesktop.org/xorg/app/oclock)krh19 monthssummarylogtree xorg/app/pclcompCompress PCL printer image output files (mirrored from https://gitlab.freedeskt...krh17 yearssummarylogtree xorg/app/proxymngrProxy manager service (mirrored from https://gitlab.freedesktop.org/xorg/app/pr...krh6 yearssummarylogtree xorg/app/rendercheckSuite of tests for the Render extension. (mirrored from https://gitlab.freedesk...anholt5 monthssummarylogtree xorg/app/rgbX colorname to RGB mapping database (mirrored from https://gitlab.freedesktop.o...krh14 monthssummarylogtree xorg/app/rstartRemote Start client (mirrored from https://gitlab.freedesktop.org/xorg/app/rsta...krh19 monthssummarylogtree xorg/app/scriptsVarious X related scripts (mirrored from https://gitlab.freedesktop.org/xorg/ap...krh19 monthssummarylogtree xorg/app/sessregRegister X sessions in system utmp/utmpx databases (mirrored from https://gitla...krh19 monthssummarylogtree xorg/app/setxkbmapSet the keyboard using the X Keyboard Extension (mirrored from https://gitlab.f...daniels16 monthssummarylogtree xorg/app/showfontShow information about X font from font server (mirrored from https://gitlab.fr...krh11 monthssummarylogtree xorg/app/smproxySession Manager Proxy (mirrored from https://gitlab.freedesktop.org/xorg/app/sm...krh19 monthssummarylogtree xorg/app/transsetSimple utility to set transparency on a window (mirrored from https://gitlab.f...alanc4 weekssummarylogtree xorg/app/twmTimeless Windows Manager (mirrored from https://gitlab.freedesktop.org/xorg/app...krh6 monthssummarylogtree xorg/app/viewresGraphical class/resource browser for Xt (mirrored from https://gitlab.freedeskt...krh19 monthssummarylogtree xorg/app/x11perfSimple X server performance benchmarker (mirrored from https://gitlab.freedeskt...krh7 weekssummarylogtree xorg/app/xauthX authority file utility (mirrored from https://gitlab.freedesktop.org/xorg/app...krh7 monthssummarylogtree xorg/app/xbacklightRandR-based backlight control application (mirrored from https://gitlab.freedes...keithp3 weekssummarylogtree xorg/app/xbiffWatch mailboxes for new message delivery (mirrored from https://gitlab.freedesk...herrb7 monthssummarylogtree xorg/app/xcalcScientific calculator for X (mirrored from https://gitlab.freedesktop.org/xorg/...herrb5 monthssummarylogtree xorg/app/xclipboardX clipboard manager (mirrored from https://gitlab.freedesktop.org/xorg/app/xcli...krh4 weekssummarylogtree xorg/app/xclockX clock (mirrored from https://gitlab.freedesktop.org/xorg/app/xclock)herrb19 monthssummarylogtree xorg/app/xcmsdbDevice Color Characterization utility for X Color Management System (mirrored f...krh4 weekssummarylogtree xorg/app/xcompmgrCompositing manager using RENDER (mirrored from https://gitlab.freedesktop.org/...krh7 weekssummarylogtree xorg/app/xconsoleMonitor system console messages with X (mirrored from https://gitlab.freedeskto...herrb5 monthssummarylogtree xorg/app/xcursorgenCreate an X cursor file from PNG images (mirrored from https://gitlab.freedeskt...krh22 monthssummarylogtree xorg/app/xdbedizzyDBE sample (mirrored from https://gitlab.freedesktop.org/xorg/app/xdbedizzy)krh8 yearssummarylogtree xorg/app/xditviewDisplay ditroff output (mirrored from https://gitlab.freedesktop.org/xorg/app/x...krh8 monthssummarylogtree xorg/app/xdmX Display Manager / XDMCP server (mirrored from https://gitlab.freedesktop.org/...alanc6 monthssummarylogtree xorg/app/xdpyinfoDisplay information utility for X (mirrored from https://gitlab.freedesktop.org...krh5 monthssummarylogtree xorg/app/xdriinfoQuery configuration information of DRI drivers (mirrored from https://gitlab.fr...krh21 monthssummarylogtree xorg/app/xeditSimple text editor for X (mirrored from https://gitlab.freedesktop.org/xorg/app...krh5 monthssummarylogtree xorg/app/xevPrint contents of X events (mirrored from https://gitlab.freedesktop.org/xorg/a...krh7 monthssummarylogtree xorg/app/xeyesFollow the mouse/SHAPE extension X demo (mirrored from https://gitlab.freedeskt...krh3 weekssummarylogtree xorg/app/xf86dgaTest program for the XFree86-DGA extension (mirrored from https://gitlab.freede...krh11 monthssummarylogtree xorg/app/xfdDisplay all the characters in an X font (mirrored from https://gitlab.freedeskt...krh4 weekssummarylogtree xorg/app/xfindproxyLocate proxy services (mirrored from https://gitlab.freedesktop.org/xorg/app/xf...krh19 monthssummarylogtree xorg/app/xfontselPoint and click selection of X11 font names (mirrored from https://gitlab.freed...krh7 monthssummarylogtree xorg/app/xfsX Font Server (mirrored from https://gitlab.freedesktop.org/xorg/app/xfs)krh8 weekssummarylogtree xorg/app/xfsinfoX Font Server information utility (mirrored from https://gitlab.freedesktop.org...krh11 monthssummarylogtree xorg/app/xfwpX Firewall Proxy (mirrored from https://gitlab.freedesktop.org/xorg/app/xfwp)krh19 monthssummarylogtree xorg/app/xgammaAlter a monitor's gamma correction. (mirrored from https://gitlab.freedesktop.o...krh19 monthssummarylogtree xorg/app/xgcX graphics demo (mirrored from https://gitlab.freedesktop.org/xorg/app/xgc)krh7 monthssummarylogtree xorg/app/xhostServer access control program for X (mirrored from https://gitlab.freedesktop.o...krh2 monthssummarylogtree xorg/app/xinitX Window System initializer (includes startx) (mirrored from https://gitlab.fre...krh3 weekssummarylogtree xorg/app/xinputxinput is a small commandline tool to configure devices. (mirrored from https:/...whot8 monthssummarylogtree xorg/app/xkbcompCompile XKB keyboard description (mirrored from https://gitlab.freedesktop.org/...daniels5 monthssummarylogtree xorg/app/xkbevdXKB event daemon demo (mirrored from https://gitlab.freedesktop.org/xorg/app/xk...krh8 weekssummarylogtree xorg/app/xkbprintPrint an XKB keyboard description (mirrored from https://gitlab.freedesktop.org...krh8 weekssummarylogtree xorg/app/xkbutilsXKB utility demos (mirrored from https://gitlab.freedesktop.org/xorg/app/xkbuti...krh4 monthssummarylogtree xorg/app/xkillKill a client by its X resource (mirrored from https://gitlab.freedesktop.org/x...krh22 monthssummarylogtree xorg/app/xloadSystem load average display for X (mirrored from https://gitlab.freedesktop.org...herrb6 monthssummarylogtree xorg/app/xlogoDraw [old] X logo (mirrored from https://gitlab.freedesktop.org/xorg/app/xlogo)krh7 weekssummarylogtree xorg/app/xlsatomsList interned atoms defined on server (mirrored from https://gitlab.freedesktop...krh22 monthssummarylogtree xorg/app/xlsclientsList client applications running on a display (mirrored from https://gitlab.fre...krh22 monthssummarylogtree xorg/app/xlsfontsList X fonts available on X server (mirrored from https://gitlab.freedesktop.or...krh7 monthssummarylogtree xorg/app/xmagMagnify parts of the screen (mirrored from https://gitlab.freedesktop.org/xorg/...krh19 monthssummarylogtree xorg/app/xmanUnix manual page viewer (mirrored from https://gitlab.freedesktop.org/xorg/app/...herrb6 monthssummarylogtree xorg/app/xmessageDisplay a message or query in a window (mirrored from https://gitlab.freedeskto...herrb7 monthssummarylogtree xorg/app/xmhX interface to MH mail tools (mirrored from https://gitlab.freedesktop.org/xorg...krh7 monthssummarylogtree xorg/app/xmodmapUtility for modifying keymaps and button mappings (mirrored from https://gitlab...krh5 monthssummarylogtree xorg/app/xmorePlain text display program for the X Window System (mirrored from https://gitla...krh8 monthssummarylogtree xorg/app/xooXoo is a GTK+ based graphical wrapper around a ‘windowed’ X Server such as X...root12 yearssummarylogtree xorg/app/xphelloworldXprint sample applications (mirrored from https://gitlab.freedesktop.org/xorg/a...krh17 yearssummarylogtree xorg/app/xplsprintersList Xprint printers (mirrored from https://gitlab.freedesktop.org/xorg/app/xpl...krh17 yearssummarylogtree xorg/app/xprPrint an X window dump from xwd (mirrored from https://gitlab.freedesktop.org/x...krh7 monthssummarylogtree xorg/app/xprehashprinterlistRehash list of Xprint printers (mirrored from https://gitlab.freedesktop.org/xo...krh17 yearssummarylogtree xorg/app/xpropProperty displayer for X (mirrored from https://gitlab.freedesktop.org/xorg/app...krh4 monthssummarylogtree xorg/app/xrandrPrimitive command line interface to RandR extension (mirrored from https://gitl...krh3 monthssummarylogtree xorg/app/xrdbX server resource database utility (mirrored from https://gitlab.freedesktop.or...krh16 monthssummarylogtree xorg/app/xrefreshRefresh all or part of an X screen (mirrored from https://gitlab.freedesktop.or...krh5 monthssummarylogtree xorg/app/xresponseXresponse is a simple command line tool for measuring UI response times to a mou...root17 yearssummarylogtree xorg/app/xrestopX.org xrestop application. (mirrored from https://gitlab.freedesktop.org/xorg/a...krh17 monthssummarylogtree xorg/app/xrx"Broadway" (mirrored from https://gitlab.freedesktop.org/xorg/app/xrx)krh10 yearssummarylogtree xorg/app/xscopeXSCOPE -- a program to monitor X11/Client conversations (mirrored from https://...root7 monthssummarylogtree xorg/app/xsetUser preference utility for X (mirrored from https://gitlab.freedesktop.org/xor...krh19 monthssummarylogtree xorg/app/xsetmodeSet the mode for an X Input device (mirrored from https://gitlab.freedesktop.or...krh8 yearssummarylogtree xorg/app/xsetpointerSet an X Input device as the main pointer (mirrored from https://gitlab.freedes...daniels11 yearssummarylogtree xorg/app/xsetrootRoot window parameter setting utility for X (mirrored from https://gitlab.freed...krh23 monthssummarylogtree xorg/app/xshowdamageX.org xshowdamage application. (mirrored from https://gitlab.freedesktop.org/xo...krh19 yearssummarylogtree xorg/app/xsmX Session Manager (mirrored from https://gitlab.freedesktop.org/xorg/app/xsm)krh7 monthssummarylogtree xorg/app/xstdcmapX standard colormap utility (mirrored from https://gitlab.freedesktop.org/xorg/...krh5 monthssummarylogtree xorg/app/xtrapXTrap sample clients (mirrored from https://gitlab.freedesktop.org/xorg/app/xtr...krh6 yearssummarylogtree xorg/app/xtsttopngX Test Suite image conversion tool (mirrored from https://gitlab.freedesktop.or...keithp2 yearssummarylogtree xorg/app/xvidtuneVideo mode tuner for Xorg (mirrored from https://gitlab.freedesktop.org/xorg/ap...krh3 weekssummarylogtree xorg/app/xvinfoPrint out X-Video extension adaptor information (mirrored from https://gitlab.f...krh22 monthssummarylogtree xorg/app/xwdDump current contents of X window or screen to file (mirrored from https://gitl...krh16 monthssummarylogtree xorg/app/xwininfoWindow information utility for X (mirrored from https://gitlab.freedesktop.org/...krh15 monthssummarylogtree xorg/app/xwudDisplay an X window dump from xwd (mirrored from https://gitlab.freedesktop.org...krh2 monthssummarylogtree xorg/data/bitmapsX.org bitmaps data. (mirrored from https://gitlab.freedesktop.org/xorg/data/bit...krh10 monthssummarylogtree xorg/data/cursorsX.org cursors data. (mirrored from https://gitlab.freedesktop.org/xorg/data/cur...krh19 monthssummarylogtree xorg/doc/xorg-docsX.org xorg-docs documentation. (mirrored from https://gitlab.freedesktop.org/xo...krh5 monthssummarylogtree xorg/doc/xorg-sgml-doctoolsX.org xorg-sgml-doctools documentation. (mirrored from https://gitlab.freedeskt...krh5 monthssummarylogtree xorg/driver/glamorArchive of historical glamor development (now included in xserver) (mirrored fr...root10 yearssummarylogtree xorg/driver/xf86-input-acecadX.org xf86-input-acecad driver. (mirrored from https://gitlab.freedesktop.org/x...bilog13 yearssummarylogtree xorg/driver/xf86-input-aiptekX.org xf86-input-aiptek driver. (mirrored from https://gitlab.freedesktop.org/x...krh9 yearssummarylogtree xorg/driver/xf86-input-calcompX.org xf86-input-calcomp driver. (mirrored from https://gitlab.freedesktop.org/...krh16 yearssummarylogtree xorg/driver/xf86-input-citronX.org xf86-input-citron driver. (mirrored from https://gitlab.freedesktop.org/x...krh14 yearssummarylogtree xorg/driver/xf86-input-digitaledgeX.org xf86-input-digitaledge driver. (mirrored from https://gitlab.freedesktop....krh16 yearssummarylogtree xorg/driver/xf86-input-dmcX.org xf86-input-dmc driver. (mirrored from https://gitlab.freedesktop.org/xorg...krh16 yearssummarylogtree xorg/driver/xf86-input-dynaproX.org xf86-input-dynapro driver. (mirrored from https://gitlab.freedesktop.org/...krh16 yearssummarylogtree xorg/driver/xf86-input-elo2300X.org xf86-input-elo2300 driver. (mirrored from https://gitlab.freedesktop.org/...krh16 yearssummarylogtree xorg/driver/xf86-input-elographicsX.org xf86-input-elographics driver. (mirrored from https://gitlab.freedesktop....krh4 monthssummarylogtree xorg/driver/xf86-input-evdevX.org xf86-input-evdev driver. (mirrored from https://gitlab.freedesktop.org/xo...whot2 weekssummarylogtree xorg/driver/xf86-input-fpitX.org xf86-input-fpit driver. (mirrored from https://gitlab.freedesktop.org/xor...krh12 yearssummarylogtree xorg/driver/xf86-input-hyperpenX.org xf86-input-hyperpen driver. (mirrored from https://gitlab.freedesktop.org...krh12 yearssummarylogtree xorg/driver/xf86-input-jamstudioX.org xf86-input-jamstudio driver. (mirrored from https://gitlab.freedesktop.or...krh16 yearssummarylogtree xorg/driver/xf86-input-joystickX.org xf86-input-joystick driver. (mirrored from https://gitlab.freedesktop.org...krh8 weekssummarylogtree xorg/driver/xf86-input-keyboardX.org xf86-input-keyboard driver. (mirrored from https://gitlab.freedesktop.org...krh2 monthssummarylogtree xorg/driver/xf86-input-libinputX.org xf86-input-libinput driver. (mirrored from https://gitlab.freedesktop.org...alanc8 dayssummarylogtree xorg/driver/xf86-input-magellanX.org xf86-input-magellan driver. (mirrored from https://gitlab.freedesktop.org...krh16 yearssummarylogtree xorg/driver/xf86-input-magictouchX.org xf86-input-magictouch driver. (mirrored from https://gitlab.freedesktop.o...krh16 yearssummarylogtree xorg/driver/xf86-input-microtouchX.org xf86-input-microtouch driver. (mirrored from https://gitlab.freedesktop.o...krh16 yearssummarylogtree xorg/driver/xf86-input-mouseX.org xf86-input-mouse driver. (mirrored from https://gitlab.freedesktop.org/xo...krh2 monthssummarylogtree xorg/driver/xf86-input-mutouchX.org xf86-input-mutouch driver. (mirrored from https://gitlab.freedesktop.org/...krh13 yearssummarylogtree xorg/driver/xf86-input-palmaxX.org xf86-input-palmax driver. (mirrored from https://gitlab.freedesktop.org/x...krh16 yearssummarylogtree xorg/driver/xf86-input-penmountX.org xf86-input-penmount driver. (mirrored from https://gitlab.freedesktop.org...krh13 yearssummarylogtree xorg/driver/xf86-input-sampleX.org xf86-input-sample driver. (mirrored from https://gitlab.freedesktop.org/x...krh16 yearssummarylogtree xorg/driver/xf86-input-spaceorbX.org xf86-input-spaceorb driver. (mirrored from https://gitlab.freedesktop.org...krh16 yearssummarylogtree xorg/driver/xf86-input-summaX.org xf86-input-summa driver. (mirrored from https://gitlab.freedesktop.org/xo...krh16 yearssummarylogtree xorg/driver/xf86-input-synapticsxf86-input-synaptics driver (mirrored from https://gitlab.freedesktop.org/xorg/...cbrill3 monthssummarylogtree xorg/driver/xf86-input-tek4957X.org xf86-input-tek4957 driver. (mirrored from https://gitlab.freedesktop.org/...krh16 yearssummarylogtree xorg/driver/xf86-input-ur98X.org xf86-input-ur98 driver. (mirrored from https://gitlab.freedesktop.org/xor...krh16 yearssummarylogtree xorg/driver/xf86-input-vmmouseX.org xf86-input-vmmouse driver. (mirrored from https://gitlab.freedesktop.org/...krh4 monthssummarylogtree xorg/driver/xf86-input-voidX.org xf86-input-void driver. (mirrored from https://gitlab.freedesktop.org/xor...krh9 monthssummarylogtree xorg/driver/xf86-video-amdgpuAMD Xorg video driver (mirrored from https://gitlab.freedesktop.org/xorg/driver...root2 monthssummarylogtree xorg/driver/xf86-video-apmX.org xf86-video-apm driver. (mirrored from https://gitlab.freedesktop.org/xorg...krh4 monthssummarylogtree xorg/driver/xf86-video-arkX.org xf86-video-ark driver. (mirrored from https://gitlab.freedesktop.org/xorg...krh3 monthssummarylogtree xorg/driver/xf86-video-armsocGeneric DDX driver with DRI2 support for ARM SoCs which expose a DRM/KMS interfa...UNKNOWN8 yearssummarylogtree xorg/driver/xf86-video-astX.org xf86-video-ast driver. (mirrored from https://gitlab.freedesktop.org/xorg...krh4 monthssummarylogtree xorg/driver/xf86-video-atiATI video driver (mirrored from https://gitlab.freedesktop.org/xorg/driver/xf86...airlied4 monthssummarylogtree xorg/driver/xf86-video-chipsX.org xf86-video-chips driver. (mirrored from https://gitlab.freedesktop.org/xo...krh4 monthssummarylogtree xorg/driver/xf86-video-cirrusX.org xf86-video-cirrus driver. (mirrored from https://gitlab.freedesktop.org/x...krh4 monthssummarylogtree xorg/driver/xf86-video-cyrixX.org xf86-video-cyrix driver. (mirrored from https://gitlab.freedesktop.org/xo...krh12 yearssummarylogtree xorg/driver/xf86-video-dummyX.org xf86-video-dummy driver. (mirrored from https://gitlab.freedesktop.org/xo...krh3 monthssummarylogtree xorg/driver/xf86-video-fbdevX.org xf86-video-fbdev driver. (mirrored from https://gitlab.freedesktop.org/xo...daenzer4 monthssummarylogtree xorg/driver/xf86-video-freedrenoX.Org driver for Adreno mobile GPUs (mirrored from https://gitlab.freedesktop.o...robclark7 yearssummarylogtree xorg/driver/xf86-video-geodeX.Org AMD Geode GX/LX driver. (mirrored from https://gitlab.freedesktop.org/xor...anholt13 dayssummarylogtree xorg/driver/xf86-video-glideX.org xf86-video-glide driver. (mirrored from https://gitlab.freedesktop.org/xo...guillem11 yearssummarylogtree xorg/driver/xf86-video-glintX.org xf86-video-glint driver. (mirrored from https://gitlab.freedesktop.org/xo...krh3 yearssummarylogtree xorg/driver/xf86-video-i128X.org xf86-video-i128 driver. (mirrored from https://gitlab.freedesktop.org/xor...krh4 monthssummarylogtree xorg/driver/xf86-video-i740X.org xf86-video-i740 driver. (mirrored from https://gitlab.freedesktop.org/xor...krh4 monthssummarylogtree xorg/driver/xf86-video-impactX.org xf86-video-impact driver. (mirrored from https://gitlab.freedesktop.org/x...krh3 yearssummarylogtree xorg/driver/xf86-video-imsttX.org xf86-video-imstt driver. (mirrored from https://gitlab.freedesktop.org/xo...krh14 yearssummarylogtree xorg/driver/xf86-video-intelIntel video driver (mirrored from https://gitlab.freedesktop.org/xorg/driver/xf...anholt5 monthssummarylogtree xorg/driver/xf86-video-mach64ATI Mach64 (Rage) video driver (mirrored from https://gitlab.freedesktop.org/xo...root4 monthssummarylogtree xorg/driver/xf86-video-mgaX.org xf86-video-mga driver. (mirrored from https://gitlab.freedesktop.org/xorg...tilman2 monthssummarylogtree xorg/driver/xf86-video-modesettingBasic modesetting driver. (mirrored from https://gitlab.freedesktop.org/xorg/dr...root10 yearssummarylogtree xorg/driver/xf86-video-neomagicX.org xf86-video-neomagic driver. (mirrored from https://gitlab.freedesktop.org...krh4 monthssummarylogtree xorg/driver/xf86-video-nesteddriver to run Xorg on top of Xorg or something else (mirrored from https://gitl...anholt4 monthssummarylogtree xorg/driver/xf86-video-newportX.org xf86-video-newport driver. (mirrored from https://gitlab.freedesktop.org/...krh3 yearssummarylogtree xorg/driver/xf86-video-nscX.org xf86-video-nsc driver. (mirrored from https://gitlab.freedesktop.org/xorg...krh12 yearssummarylogtree xorg/driver/xf86-video-nvNVIDIA video driver (mirrored from https://gitlab.freedesktop.org/xorg/driver/x...aplattner4 monthssummarylogtree xorg/driver/xf86-video-omapOMAP video driver (mirrored from https://gitlab.freedesktop.org/xorg/driver/xf8...root8 weekssummarylogtree xorg/driver/xf86-video-opentegraOpen-source X.Org video driver for NVIDIA Tegra (mirrored from https://gitlab.f...UNKNOWN6 yearssummarylogtree xorg/driver/xf86-video-p690Matrox P690 driveryheneaul16 yearssummarylogtree xorg/driver/xf86-video-qxlDriver for QEMU QXL paravirt video (mirrored from https://gitlab.freedesktop.or...sandmann7 monthssummarylogtree xorg/driver/xf86-video-r128ATI Rage128 video driver (mirrored from https://gitlab.freedesktop.org/xorg/dri...root2 monthssummarylogtree xorg/driver/xf86-video-radeonhdRadeon HD video driver (mirrored from https://gitlab.freedesktop.org/xorg/drive...eich7 yearssummarylogtree xorg/driver/xf86-video-renditionX.org xf86-video-rendition driver. (mirrored from https://gitlab.freedesktop.or...krh4 monthssummarylogtree xorg/driver/xf86-video-s3X.org xf86-video-s3 driver. (mirrored from https://gitlab.freedesktop.org/xorg/...krh3 yearssummarylogtree xorg/driver/xf86-video-s3virgeX.org xf86-video-s3virge driver. (mirrored from https://gitlab.freedesktop.org/...krh3 monthssummarylogtree xorg/driver/xf86-video-savageX.org xf86-video-savage driver. (mirrored from https://gitlab.freedesktop.org/x...agd5f2 monthssummarylogtree xorg/driver/xf86-video-siliconmotionX.org xf86-video-siliconmotion driver. (mirrored from https://gitlab.freedeskto...agd5f4 monthssummarylogtree xorg/driver/xf86-video-sisX.org xf86-video-sis driver. (mirrored from https://gitlab.freedesktop.org/xorg...krh3 weekssummarylogtree xorg/driver/xf86-video-sisusbX.org xf86-video-sisusb driver. (mirrored from https://gitlab.freedesktop.org/x...krh4 monthssummarylogtree xorg/driver/xf86-video-sunbw2X.org xf86-video-sunbw2 driver. (mirrored from https://gitlab.freedesktop.org/x...krh12 yearssummarylogtree xorg/driver/xf86-video-suncg14X.org xf86-video-suncg14 driver. (mirrored from https://gitlab.freedesktop.org/...krh4 monthssummarylogtree xorg/driver/xf86-video-suncg3X.org xf86-video-suncg3 driver. (mirrored from https://gitlab.freedesktop.org/x...krh4 monthssummarylogtree xorg/driver/xf86-video-suncg6X.org xf86-video-suncg6 driver. (mirrored from https://gitlab.freedesktop.org/x...krh4 monthssummarylogtree xorg/driver/xf86-video-sunffbX.org xf86-video-sunffb driver. (mirrored from https://gitlab.freedesktop.org/x...krh4 monthssummarylogtree xorg/driver/xf86-video-sunleoX.org xf86-video-sunleo driver. (mirrored from https://gitlab.freedesktop.org/x...krh4 monthssummarylogtree xorg/driver/xf86-video-suntcxX.org xf86-video-suntcx driver. (mirrored from https://gitlab.freedesktop.org/x...krh4 monthssummarylogtree xorg/driver/xf86-video-tdfxX.org xf86-video-tdfx driver. (mirrored from https://gitlab.freedesktop.org/xor...krh2 monthssummarylogtree xorg/driver/xf86-video-tgaX.org xf86-video-tga driver. (mirrored from https://gitlab.freedesktop.org/xorg...krh3 yearssummarylogtree xorg/driver/xf86-video-tridentX.org xf86-video-trident driver. (mirrored from https://gitlab.freedesktop.org/...krh3 monthssummarylogtree xorg/driver/xf86-video-tsengX.org xf86-video-tseng driver. (mirrored from https://gitlab.freedesktop.org/xo...krh11 monthssummarylogtree xorg/driver/xf86-video-v4lX.org xf86-video-v4l driver. (mirrored from https://gitlab.freedesktop.org/xorg...krh8 monthssummarylogtree xorg/driver/xf86-video-vboxX.Org UMS driver for VirtualBox (mirrored from https://gitlab.freedesktop.org/x...alanc3 monthssummarylogtree xorg/driver/xf86-video-vermilionX.Org driver for Vermilion (mirrored from https://gitlab.freedesktop.org/xorg/d...alanh15 yearssummarylogtree xorg/driver/xf86-video-vesaX.org xf86-video-vesa driver. (mirrored from https://gitlab.freedesktop.org/xor...ajax2 monthssummarylogtree xorg/driver/xf86-video-vgaX.org xf86-video-vga driver. (mirrored from https://gitlab.freedesktop.org/xorg...krh15 yearssummarylogtree xorg/driver/xf86-video-viaX.org xf86-video-via driver. (mirrored from https://gitlab.freedesktop.org/xorg...thomash7 yearssummarylogtree xorg/driver/xf86-video-vmwareX.org xf86-video-vmware driver. (mirrored from https://gitlab.freedesktop.org/x...philipl11 monthssummarylogtree xorg/driver/xf86-video-voodooX.org xf86-video-voodoo driver. (mirrored from https://gitlab.freedesktop.org/x...krh4 monthssummarylogtree xorg/driver/xf86-video-wayland[OLD] Deprecated generic driver for hosting Xorg inside a Wayland compositor (m...daniels10 yearssummarylogtree xorg/driver/xf86-video-wsfbX.org xf86-video-wsfb driver. (mirrored from https://gitlab.freedesktop.org/xor...krh3 monthssummarylogtree xorg/driver/xf86-video-xgiX.org XGI driver. (mirrored from https://gitlab.freedesktop.org/xorg/driver/xf8...idr8 weekssummarylogtree xorg/driver/xf86-video-xgixpUnnamed repository; edit this file to name it for gitweb. (mirrored from https:...agd5f8 monthssummarylogtree xorg/font/adobe-100dpiX.org adobe-100dpi font. (mirrored from https://gitlab.freedesktop.org/xorg/fon...krh19 monthssummarylogtree xorg/font/adobe-75dpiX.org adobe-75dpi font. (mirrored from https://gitlab.freedesktop.org/xorg/font...krh19 monthssummarylogtree xorg/font/adobe-utopia-100dpiX.org adobe-utopia-100dpi font. (mirrored from https://gitlab.freedesktop.org/x...krh19 monthssummarylogtree xorg/font/adobe-utopia-75dpiX.org adobe-utopia-75dpi font. (mirrored from https://gitlab.freedesktop.org/xo...krh19 monthssummarylogtree xorg/font/adobe-utopia-type1X.org adobe-utopia-type1 font. (mirrored from https://gitlab.freedesktop.org/xo...krh19 monthssummarylogtree xorg/font/aliasX.org alias font. (mirrored from https://gitlab.freedesktop.org/xorg/font/alias...krh10 monthssummarylogtree xorg/font/arabic-miscX.org arabic-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/font...krh19 monthssummarylogtree xorg/font/bh-100dpiX.org bh-100dpi font. (mirrored from https://gitlab.freedesktop.org/xorg/font/b...krh19 monthssummarylogtree xorg/font/bh-75dpiX.org bh-75dpi font. (mirrored from https://gitlab.freedesktop.org/xorg/font/bh...krh19 monthssummarylogtree xorg/font/bh-lucidatypewriter-100dpiX.org bh-lucidatypewriter-100dpi font. (mirrored from https://gitlab.freedeskto...krh19 monthssummarylogtree xorg/font/bh-lucidatypewriter-75dpiX.org bh-lucidatypewriter-75dpi font. (mirrored from https://gitlab.freedesktop...krh19 monthssummarylogtree xorg/font/bh-ttfX.org bh-ttf font. (mirrored from https://gitlab.freedesktop.org/xorg/font/bh-t...krh19 monthssummarylogtree xorg/font/bh-type1X.org bh-type1 font. (mirrored from https://gitlab.freedesktop.org/xorg/font/bh...krh19 monthssummarylogtree xorg/font/bitstream-100dpiX.org bitstream-100dpi font. (mirrored from https://gitlab.freedesktop.org/xorg...krh19 monthssummarylogtree xorg/font/bitstream-75dpiX.org bitstream-75dpi font. (mirrored from https://gitlab.freedesktop.org/xorg/...krh19 monthssummarylogtree xorg/font/bitstream-speedoX.org bitstream-speedo font. (mirrored from https://gitlab.freedesktop.org/xorg...krh8 yearssummarylogtree xorg/font/bitstream-type1X.org bitstream-type1 font. (mirrored from https://gitlab.freedesktop.org/xorg/...krh19 monthssummarylogtree xorg/font/cronyx-cyrillicX.org cronyx-cyrillic font. (mirrored from https://gitlab.freedesktop.org/xorg/...krh19 monthssummarylogtree xorg/font/cursor-miscX.org cursor-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/font...krh19 monthssummarylogtree xorg/font/daewoo-miscX.org daewoo-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/font...krh19 monthssummarylogtree xorg/font/dec-miscX.org dec-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/font/de...krh19 monthssummarylogtree xorg/font/encodingsX.org encodings font. (mirrored from https://gitlab.freedesktop.org/xorg/font/e...krh7 monthssummarylogtree xorg/font/ibm-type1X.org ibm-type1 font. (mirrored from https://gitlab.freedesktop.org/xorg/font/i...krh19 monthssummarylogtree xorg/font/isas-miscX.org isas-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/font/i...krh19 monthssummarylogtree xorg/font/jis-miscX.org jis-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/font/ji...krh19 monthssummarylogtree xorg/font/micro-miscX.org micro-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/font/...krh19 monthssummarylogtree xorg/font/misc-cyrillicX.org misc-cyrillic font. (mirrored from https://gitlab.freedesktop.org/xorg/fo...krh19 monthssummarylogtree xorg/font/misc-ethiopicX.org misc-ethiopic font. (mirrored from https://gitlab.freedesktop.org/xorg/fo...krh19 monthssummarylogtree xorg/font/misc-melthoX.org misc-meltho font. (mirrored from https://gitlab.freedesktop.org/xorg/font...krh19 monthssummarylogtree xorg/font/misc-miscX.org misc-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/font/m...krh19 monthssummarylogtree xorg/font/mutt-miscX.org mutt-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/font/m...krh19 monthssummarylogtree xorg/font/schumacher-miscX.org schumacher-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/...krh19 monthssummarylogtree xorg/font/screen-cyrillicX.org screen-cyrillic font. (mirrored from https://gitlab.freedesktop.org/xorg/...krh19 monthssummarylogtree xorg/font/sony-miscX.org sony-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/font/s...krh19 monthssummarylogtree xorg/font/sun-miscX.org sun-misc font. (mirrored from https://gitlab.freedesktop.org/xorg/font/su...krh19 monthssummarylogtree xorg/font/utilX.org util font. (mirrored from https://gitlab.freedesktop.org/xorg/font/util)krh12 monthssummarylogtree xorg/font/winitzki-cyrillicX.org winitzki-cyrillic font. (mirrored from https://gitlab.freedesktop.org/xor...krh19 monthssummarylogtree xorg/font/xfree86-type1X.org xfree86-type1 font. (mirrored from https://gitlab.freedesktop.org/xorg/fo...krh19 monthssummarylogtree xorg/foundation/bylawsDraft revisions proposed for the Bylaws of the X.Org Foundation (mirrored from ...alanc5 monthssummarylogtree xorg/lib/libAppleWMX.org libAppleWM library. (mirrored from https://gitlab.freedesktop.org/xorg/li...krh19 monthssummarylogtree xorg/lib/libFSX Font Service client library (mirrored from https://gitlab.freedesktop.org/xor...krh7 weekssummarylogtree xorg/lib/libICEInter-Client Exchange library (mirrored from https://gitlab.freedesktop.org/xor...krh4 weekssummarylogtree xorg/lib/libSMSession Management library (mirrored from https://gitlab.freedesktop.org/xorg/l...krh4 weekssummarylogtree xorg/lib/libWindowsWMX.org libWindowsWM library. (mirrored from https://gitlab.freedesktop.org/xorg/...krh6 yearssummarylogtree xorg/lib/libX11libX11 GIT Repository (mirrored from https://gitlab.freedesktop.org/xorg/lib/li...keithp3 weekssummarylogtree xorg/lib/libXCalibrateTouchscreen calibration client library (mirrored from https://gitlab.freedeskto...mallum17 yearssummarylogtree xorg/lib/libXResX Resource extension (mirrored from https://gitlab.freedesktop.org/xorg/lib/lib...krh19 monthssummarylogtree xorg/lib/libXScrnSaverMIT-SCREEN-SAVER extension (mirrored from https://gitlab.freedesktop.org/xorg/l...krh19 monthssummarylogtree xorg/lib/libXTrapX Trap extension (mirrored from https://gitlab.freedesktop.org/xorg/lib/libxtra...krh6 yearssummarylogtree xorg/lib/libXauX Authorization routines (mirrored from https://gitlab.freedesktop.org/xorg/lib...krh4 weekssummarylogtree xorg/lib/libXawAthena Widgets toolkit (mirrored from https://gitlab.freedesktop.org/xorg/lib/l...krh3 monthssummarylogtree xorg/lib/libXaw3dAthena Widgets toolkit library with 3-D styled widgets (mirrored from https://g...alanc2 monthssummarylogtree xorg/lib/libXcompositeComposite extension (mirrored from https://gitlab.freedesktop.org/xorg/lib/libx...keithp19 monthssummarylogtree xorg/lib/libXcursorX.org libXcursor library. (mirrored from https://gitlab.freedesktop.org/xorg/li...keithp8 dayssummarylogtree xorg/lib/libXdamageDamage extension (mirrored from https://gitlab.freedesktop.org/xorg/lib/libxdam...keithp19 monthssummarylogtree xorg/lib/libXdmcpX Display Manager Control Protocol routines (mirrored from https://gitlab.freed...krh7 monthssummarylogtree xorg/lib/libXevieXEvIE extension (mirrored from https://gitlab.freedesktop.org/xorg/lib/libxevie...deronj10 yearssummarylogtree xorg/lib/libXextCommon X Extensions library (mirrored from https://gitlab.freedesktop.org/xorg/...krh7 monthssummarylogtree xorg/lib/libXfixesX-Fixes extension (mirrored from https://gitlab.freedesktop.org/xorg/lib/libxfi...keithp17 monthssummarylogtree xorg/lib/libXfontX font handling library for server & utilities (mirrored from https://gitlab.fr...krh7 weekssummarylogtree xorg/lib/libXfontcacheX-TrueType font cache extension client library (mirrored from https://gitlab.fr...krh10 yearssummarylogtree xorg/lib/libXftClient side font rendering library (mirrored from https://gitlab.freedesktop.or...keithp5 weekssummarylogtree xorg/lib/libXiX.org libXi Client library for XInput. (mirrored from https://gitlab.freedeskto...daniels2 weekssummarylogtree xorg/lib/libXineramaXinerama protocol library (mirrored from https://gitlab.freedesktop.org/xorg/li...krh19 monthssummarylogtree xorg/lib/libXlg3dSun Looking Glass client library (mirrored from https://gitlab.freedesktop.org/...deronj17 yearssummarylogtree xorg/lib/libXmuX.org Xmu library (mirrored from https://gitlab.freedesktop.org/xorg/lib/libxmu...keithp5 monthssummarylogtree xorg/lib/libXpXprint client library (mirrored from https://gitlab.freedesktop.org/xorg/lib/li...dparsons2 yearssummarylogtree xorg/lib/libXpmXPM format pixmap library (mirrored from https://gitlab.freedesktop.org/xorg/li...krh7 monthssummarylogtree xorg/lib/libXpresentX Present Extension C Library (mirrored from https://gitlab.freedesktop.org/xo...keithp4 weekssummarylogtree xorg/lib/libXprintAppUtilXprint application utility routines (mirrored from https://gitlab.freedesktop.o...dparsons16 yearssummarylogtree xorg/lib/libXprintUtilXprint application utility routines (mirrored from https://gitlab.freedesktop.o...dparsons16 yearssummarylogtree xorg/lib/libXrandrX Resize and Rotate Extension C Library (mirrored from https://gitlab.freedeskt...keithp12 monthssummarylogtree xorg/lib/libXrandrUtilslibXrandrUtils provides a higher level convenience wrapper around libXrandr for ...root13 yearssummarylogtree xorg/lib/libXrenderRENDER extension library (mirrored from https://gitlab.freedesktop.org/xorg/lib...keithp12 monthssummarylogtree xorg/lib/libXtX Toolkit Intrinsics library (mirrored from https://gitlab.freedesktop.org/xorg...krh4 monthssummarylogtree xorg/lib/libXtstX.org libXtst library. (mirrored from https://gitlab.freedesktop.org/xorg/lib/l...krh7 weekssummarylogtree xorg/lib/libXvXvideo extension library (mirrored from https://gitlab.freedesktop.org/xorg/lib...krh2 monthssummarylogtree xorg/lib/libXvMCX.org libXvMC library. (mirrored from https://gitlab.freedesktop.org/xorg/lib/l...krh7 monthssummarylogtree xorg/lib/libXxf86dgaX.org libXxf86dga library. (mirrored from https://gitlab.freedesktop.org/xorg/l...krh18 monthssummarylogtree xorg/lib/libXxf86miscX.org libXxf86misc library. (mirrored from https://gitlab.freedesktop.org/xorg/...krh6 yearssummarylogtree xorg/lib/libXxf86rushX.org libXxf86rush library. (mirrored from https://gitlab.freedesktop.org/xorg/...krh19 yearssummarylogtree xorg/lib/libXxf86vmX.org libXxf86vm library. (mirrored from https://gitlab.freedesktop.org/xorg/li...krh8 monthssummarylogtree xorg/lib/libdmxX.org libdmx library. (mirrored from https://gitlab.freedesktop.org/xorg/lib/li...krh16 monthssummarylogtree xorg/lib/libfontencFont encoding library (mirrored from https://gitlab.freedesktop.org/xorg/lib/li...krh7 monthssummarylogtree xorg/lib/liblbxutilLBX utility routines (mirrored from https://gitlab.freedesktop.org/xorg/lib/lib...krh10 yearssummarylogtree xorg/lib/liboldXX version 10 backwards compatibility (mirrored from https://gitlab.freedesktop....krh16 yearssummarylogtree xorg/lib/libpciaccessGeneric PCI access library (mirrored from https://gitlab.freedesktop.org/xorg/l...idr5 monthssummarylogtree xorg/lib/libxcwmThe X11 Compositing Window Manager Library (mirrored from https://gitlab.freede...alanc2 yearssummarylogtree xorg/lib/libxkbcommonKeyboard handling library using XKB data (mirrored from https://gitlab.freedesk...root11 yearssummarylogtree xorg/lib/libxkbfileXKB file handling routines (mirrored from https://gitlab.freedesktop.org/xorg/l...daniels3 weekssummarylogtree xorg/lib/libxkbuiX.org libxkbui library. (mirrored from https://gitlab.freedesktop.org/xorg/lib/...daniels6 yearssummarylogtree xorg/lib/libxshmfenceShared memory fences using futexes (mirrored from https://gitlab.freedesktop.or...keithp6 monthssummarylogtree xorg/lib/libxtransX Network Transport layer shared code (mirrored from https://gitlab.freedesktop...krh4 weekssummarylogtree xorg/proto/applewmprotoX.org AppleWMProto protocol headers. (mirrored from https://gitlab.freedesktop....krh7 yearssummarylogtree xorg/proto/bigreqsprotoX.org BigReqsProto protocol headers. (mirrored from https://gitlab.freedesktop....krh7 yearssummarylogtree xorg/proto/calibrateprotoXCalibrate wire protocol (mirrored from https://gitlab.freedesktop.org/xorg/pro...mallum7 yearssummarylogtree xorg/proto/compositeprotoComposite extension protocol specification and header files (mirrored from http...keithp7 yearssummarylogtree xorg/proto/damageprotoDamage extension protocol specification and header files (mirrored from https:...keithp7 yearssummarylogtree xorg/proto/dmxprotoX.org DMXProto protocol headers. (mirrored from https://gitlab.freedesktop.org/...krh7 yearssummarylogtree xorg/proto/dri2protoDRI2 Protocol Headers. (mirrored from https://gitlab.freedesktop.org/xorg/proto...daniels9 yearssummarylogtree xorg/proto/dri3protoDRI3 protocol specification and Xlib/Xserver headers (mirrored from https://git...keithp7 yearssummarylogtree xorg/proto/evieprotoX.org EvIEProto protocol headers. (mirrored from https://gitlab.freedesktop.org...krh7 yearssummarylogtree xorg/proto/fixesprotoX Fixes extension protocol specification and header files (mirrored from http...keithp7 yearssummarylogtree xorg/proto/fontcacheprotoX.org FontcacheProto protocol headers. (mirrored from https://gitlab.freedeskto...krh7 yearssummarylogtree xorg/proto/fontsprotoX.org FontsProto protocol headers. (mirrored from https://gitlab.freedesktop.or...krh7 yearssummarylogtree xorg/proto/glprotoX.org GLProto protocol headers. (mirrored from https://gitlab.freedesktop.org/x...krh7 yearssummarylogtree xorg/proto/inputprotoX.org InputProto protocol headers. (mirrored from https://gitlab.freedesktop.or...daniels7 yearssummarylogtree xorg/proto/kbprotoX.org KBProto protocol headers. (mirrored from https://gitlab.freedesktop.org/x...daniels7 yearssummarylogtree xorg/proto/lg3dprotoSun Looking Glass protocol module (mirrored from https://gitlab.freedesktop.org...deronj7 yearssummarylogtree xorg/proto/panoramixprotoX.org PanoramixProto protocol headers. (mirrored from https://gitlab.freedeskto...krh17 yearssummarylogtree xorg/proto/pmprotoX.org PMProto protocol headers. (mirrored from https://gitlab.freedesktop.org/x...krh7 yearssummarylogtree xorg/proto/presentprotoPresent protocol specification and Xlib/Xserver headers (mirrored from https://...keithp7 yearssummarylogtree xorg/proto/printprotoX.org PrintProto protocol headers. (mirrored from https://gitlab.freedesktop.or...krh7 yearssummarylogtree xorg/proto/randrprotoX Resize and Rotate protocol headers (mirrored from https://gitlab.freedesktop....keithp7 yearssummarylogtree xorg/proto/recordprotoX.org RecordProto protocol headers. (mirrored from https://gitlab.freedesktop.o...krh7 yearssummarylogtree xorg/proto/renderprotoX.org RenderProto protocol headers. (mirrored from https://gitlab.freedesktop.o...krh7 yearssummarylogtree xorg/proto/resourceprotoX.org ResourceProto protocol headers. (mirrored from https://gitlab.freedesktop...krh7 yearssummarylogtree xorg/proto/scrnsaverprotoX.org ScrnSaverProto protocol headers. (mirrored from https://gitlab.freedeskto...krh7 yearssummarylogtree xorg/proto/trapprotoX.org TrapProto protocol headers. (mirrored from https://gitlab.freedesktop.org...krh7 yearssummarylogtree xorg/proto/videoprotoX.org VideoProto protocol headers. (mirrored from https://gitlab.freedesktop.or...krh7 yearssummarylogtree xorg/proto/windowswmprotoX.org WindowsWMProto protocol headers. (mirrored from https://gitlab.freedeskto...krh7 yearssummarylogtree xorg/proto/x11protoX.org X11Proto protocol headers. (mirrored from https://gitlab.freedesktop.org/...krh7 yearssummarylogtree xorg/proto/xcmiscprotoX.org XCMiscProto protocol headers. (mirrored from https://gitlab.freedesktop.o...krh7 yearssummarylogtree xorg/proto/xextprotoX.org XExtProto protocol headers. (mirrored from https://gitlab.freedesktop.org...krh7 yearssummarylogtree xorg/proto/xf86bigfontprotoX.org XF86BigFontProto protocol headers. (mirrored from https://gitlab.freedesk...krh7 yearssummarylogtree xorg/proto/xf86dgaprotoX.org XF86DGAProto protocol headers. (mirrored from https://gitlab.freedesktop....krh7 yearssummarylogtree xorg/proto/xf86driprotoX.org XF86DRIProto protocol headers. (mirrored from https://gitlab.freedesktop....krh7 yearssummarylogtree xorg/proto/xf86miscprotoX.org XF86MiscProto protocol headers. (mirrored from https://gitlab.freedesktop...krh7 yearssummarylogtree xorg/proto/xf86rushprotoX.org XF86RushProto protocol headers. (mirrored from https://gitlab.freedesktop...krh7 yearssummarylogtree xorg/proto/xf86vidmodeprotoX.org XF86VidModeProto protocol headers. (mirrored from https://gitlab.freedesk...krh7 yearssummarylogtree xorg/proto/xineramaprotoX.org XineramaProto protocol headers. (mirrored from https://gitlab.freedesktop...krh7 yearssummarylogtree xorg/proto/xorgprotoX.Org combined protocol headers (mirrored from https://gitlab.freedesktop.org/x...ajax9 weekssummarylogtree xorg/proto/xprotoX.org X11Proto protocol headers. (mirrored from https://gitlab.freedesktop.org/...root7 yearssummarylogtree xorg/test/xhivXhiv test suite for testing how X client libraries handle data from the X server...alanc15 monthssummarylogtree xorg/test/xorg-gtestX.Org testing framework built on Google Test (mirrored from https://gitlab.free...alanc2 yearssummarylogtree xorg/test/xorg-integration-testsX.Org Integration Tests (mirrored from https://gitlab.freedesktop.org/xorg/test...root2 yearssummarylogtree xorg/test/xtsX Test Suite, tests for core protocol conformance (mirrored from https://gitlab...whot13 dayssummarylogtree xorg/util/cfX.org cf utilities. (mirrored from https://gitlab.freedesktop.org/xorg/util/cf)krh8 weekssummarylogtree xorg/util/gccmakedepX.org gccmakedep utilities. (mirrored from https://gitlab.freedesktop.org/xorg/...krh7 monthssummarylogtree xorg/util/imakeX.org imake utilities. (mirrored from https://gitlab.freedesktop.org/xorg/util/...krh8 monthssummarylogtree xorg/util/install-checkX.org install-check utilities. (mirrored from https://gitlab.freedesktop.org/xo...krh17 yearssummarylogtree xorg/util/lndirX.org lndir utilities. (mirrored from https://gitlab.freedesktop.org/xorg/util/...krh6 monthssummarylogtree xorg/util/macrosX.org macros utilities. (mirrored from https://gitlab.freedesktop.org/xorg/util...krh3 weekssummarylogtree xorg/util/makedependX.org makedepend utilities. (mirrored from https://gitlab.freedesktop.org/xorg/...krh8 monthssummarylogtree xorg/util/modularX.org modular utilities. (mirrored from https://gitlab.freedesktop.org/xorg/uti...krh7 weekssummarylogtree xorg/util/xmkmfX.org xmkmf utilities. (mirrored from https://gitlab.freedesktop.org/xorg/util/...krh19 yearssummarylogtree xorg/xprintThe (deprecated) Xprint server (mirrored from https://gitlab.freedesktop.org/xo...dparsons15 yearssummarylogtree xorg/xserverX server (mirrored from https://gitlab.freedesktop.org/xorg/xserver)keithp7 dayssummarylogtree xorg/xserver-testX serverkeithp11 yearssummarylogtree xpmn/protocolXPMN protocoltf8 yearssummarylogtree xqproxyXDMCP Query Proxy (mirrored from https://gitlab.freedesktop.org/archived-projec...root14 yearssummarylogtree ytstenut/telepathy-ytstenutYtstenut Telepathy wrapper libraryroot12 yearssummarylogtree ytstenut/ytstenut-glibGLib Ytstenut libraryroot12 yearssummarylogtree ytstenut/ytstenut-pluginsYtstenut plugins for Telepathy componentsroot12 yearssummarylogtree ytstenut/ytstenut-protocolYtstenut protocolroot14 yearssummarylogtree zeitgeist/zeitgeistZeitgeist is a service which logs the users’ activities and events, anywhere f...root20 monthssummarylogtree zeitgeist/zeitgeist-datahubDaemon for feeding events into Zeitgeist that is not done via an application dat...root12 yearssummarylogtree zeitgeist/zeitgeist-datasourcesData sources for various applications to feed events into Zeitgeist (mirrored f...root11 yearssummarylogtree zeitgeist/zeitgeist-extensionsZeitgeist engine extensionsroot8 yearssummarylogtree zeitgeist/zeitgeist-sharpC# bindings for Zeitgeistroot11 yearssummarylogtree ~AustinYuan/igdbgUnnamed repository; edit this file 'description' to name the repository.AustinYuan8 yearssummarylogtree ~AustinYuan/libmix-testUnnamed repository; edit this file 'description' to name the repository.AustinYuan8 yearssummarylogtree ~ab/mesaAndreas' mesa workUNKNOWN8 yearssummarylogtree ~abj/intel-gpu-toolsigt testsUNKNOWN8 yearssummarylogtree ~abj/libdrmlibdrm modsUNKNOWN8 yearssummarylogtree ~abj/linuxKernel hacks.UNKNOWN8 yearssummarylogtree ~abj/mesaAbj's mesa experimentsUNKNOWN8 yearssummarylogtree ~abj/xf86-video-intelxf86-video-intel experimentsxf86-video-intel experimentsxf86-video-intel experim...UNKNOWN8 yearssummarylogtree ~adn770/gst-omxGStreamer OpenMAX IL wrapper hacking.adn7708 yearssummarylogtree ~adn770/gst-plugins-badGStreamer plugins bad hackingadn7706 yearssummarylogtree ~adn770/gst-plugins-baseGStreamer plugins base hackingadn7708 yearssummarylogtree ~adn770/gst-plugins-goodGStreamer plugins good hackingadn7708 yearssummarylogtree ~adn770/gst-rtsp-serverRTSP server based on GStreamer.adn7708 yearssummarylogtree ~adn770/gstreamerGStreamer core hacking.adn7707 yearssummarylogtree ~adn770/nethack_maemoNethack port to Maemoadn7708 yearssummarylogtree ~adn770/rpi_test_eglTest omx playback and egl/gl rendering in the Raspberry PIadn7708 yearssummarylogtree ~adn770/xf86-input-fpitX.org xf86-input-fpit driveradn77012 yearssummarylogtree ~adn770/xf86-input-tc1kpenCompaq TC1000 tablet driver for X11adn77012 yearssummarylogtree ~adrinael/igt-gpu-toolsIGT GPU Tools playground for adrinaelUNKNOWN6 yearssummarylogtree ~agd5f/linuxUnnamed repository; edit this file 'description' to name the repository.agd5f4 yearssummarylogtree ~agd5f/radeontoolUnnamed repository; edit this file 'description' to name the repository.agd5f4 yearssummarylogtree ~agd5f/xf86-video-atiUnnamed repository; edit this file to name it for gitweb.agd5f4 yearssummarylogtree ~agilboa/qxl-dodUnnamed repository; edit this file 'description' to name the repository.agilboa8 yearssummarylogtree ~agilboa/qxl-wddmqxl wddm playgroundagilboa8 yearssummarylogtree ~agilboa/usbclerkWindows service for signing and installing usb device driversagilboa8 yearssummarylogtree ~agrodzov/linuxUnnamed repository; edit this file 'description' to name the repository.UNKNOWN14 monthssummarylogtree ~airlied/dl3devUnnamed repository; edit this file 'description' to name the repository.airlied8 yearssummarylogtree ~airlied/dri2protoUnnamed repository; edit this file 'description' to name the repository.airlied8 yearssummarylogtree ~airlied/drmUnnamed repository; edit this file to name it for gitweb.airlied8 yearssummarylogtree ~airlied/eglbufpassUnnamed repository; edit this file 'description' to name the repository.airlied8 yearssummarylogtree ~airlied/glprotoUnnamed repository; edit this file to name it for gitweb.airlied8 yearssummarylogtree ~airlied/intel-gpu-toolsprime branch for intel gpu toolsairlied8 yearssummarylogtree ~airlied/libXrandrUnnamed repository; edit this file 'description' to name the repository.airlied8 yearssummarylogtree ~airlied/linuxOfficial DRM kernel treeairlied3 yearssummarylogtree ~airlied/mesaDave's mesa hackeryairlied6 yearssummarylogtree ~airlied/mutterUnnamed repository; edit this file 'description' to name the repository.airlied8 yearssummarylogtree ~airlied/piglitUnnamed repository; edit this file to name it for gitweb.airlied8 yearssummarylogtree ~airlied/plymouthUnnamed repository; edit this file 'description' to name the repository.airlied8 yearssummarylogtree ~airlied/radeondbUnnamed repository; edit this file to name it for gitweb.airlied8 yearssummarylogtree ~airlied/radeondemoUnnamed repository; edit this file to name it for gitweb.airlied8 yearssummarylogtree ~airlied/radeontoolradeontool repoairlied6 yearssummarylogtree ~airlied/randrprotoUnnamed repository; edit this file 'description' to name the repository.airlied13 yearssummarylogtree ~airlied/spice-commonUnnamed repository; edit this file 'description' to name the repository.airlied8 yearssummarylogtree ~airlied/vbetoolvbetool git repoairlied8 yearssummarylogtree ~airlied/virglrenderervirgil3d renderer standalone repoairlied8 yearssummarylogtree ~airlied/xf86-video-atiUnnamed repository; edit this file to name it for gitweb.airlied8 yearssummarylogtree ~airlied/xf86-video-intelUnnamed repository; edit this file to name it for gitweb.airlied8 yearssummarylogtree ~airlied/xf86-video-modesettingUnnamed repository; edit this file to name it for gitweb.airlied8 yearssummarylogtree ~airlied/xf86-video-nouveauUnnamed repository; edit this file to name it for gitweb.airlied8 yearssummarylogtree ~airlied/xf86-video-qxlUnnamed repository; edit this file 'description' to name the repository.airlied8 yearssummarylogtree ~airlied/xrandrUnnamed repository; edit this file 'description' to name the repository.airlied8 yearssummarylogtree ~airlied/xredesignUnnamed repository; edit this file to name it for gitweb.airlied8 yearssummarylogtree ~airlied/xserverUnnamed repository; edit this file to name it for gitweb.airlied8 yearssummarylogtree ~ajax/drigit import of dri.freedesktop.org cvs historyajax8 yearssummarylogtree ~ajax/glamorajax's glamor workajax8 yearssummarylogtree ~ajax/libminitruEDID parsing libraryajax8 yearssummarylogtree ~ajax/xf86-video-intelIntel driver backports and miscajax8 yearssummarylogtree ~ajax/xf86-video-mgaajax's mga workajax8 yearssummarylogtree ~ajax/xorgprotoMerged X11 protocol headersajax7 yearssummarylogtree ~ajax/xserverajax's xserver treeajax8 yearssummarylogtree ~ajax/xserver-oldajax's xserver treeajax8 yearssummarylogtree ~alanc/transsetautotoolization of transset utility for setting opacity window propertiesalanc8 yearssummarylogtree ~alanc/xc-historicalPartial/incomplete import of X consortium historical RCS up to X11R6.0alanc8 yearssummarylogtree ~alanc/xhivXhiv test suite for handling invalid values in X librariesalanc8 yearssummarylogtree ~alanc/xscopexorg/app/xscope cleanup and optimizationsalanc8 yearssummarylogtree ~alanc/xserverAlan's fixes - build system issues, Solaris fixes, upstreaming from Sun, etc.alanc8 yearssummarylogtree ~alanc/xwininfoConversion of xwininfo to use xcb instead of Xlibalanc8 yearssummarylogtree ~alanh/xserveralanh's xserver treealanh8 yearssummarylogtree ~alexl/broadwayUnnamed repository; edit this file 'description' to name the repository.alexl8 yearssummarylogtree ~alexl/cairoUnnamed repository; edit this file 'description' to name the repository.alexl8 yearssummarylogtree ~alexl/pixmanUnnamed repository; edit this file to name it for gitweb.alexl8 yearssummarylogtree ~alexl/spiceUnnamed repository; edit this file to name it for gitweb.alexl8 yearssummarylogtree ~alexl/spice-protocolUnnamed repository; edit this file to name it for gitweb.alexl8 yearssummarylogtree ~alexl/westonPersonal copy of westonalexl8 yearssummarylogtree ~alon/autotestUnnamed repository; edit this file to name it for gitweb.alon8 yearssummarylogtree ~alon/bandwidthmonUnnamed repository; edit this file to name it for gitweb.alon8 yearssummarylogtree ~alon/buildroot-autotestalon's copy of buildroot-autotestalon8 yearssummarylogtree ~alon/coolkeyUnnamed repository; edit this file 'description' to name the repository.alon8 yearssummarylogtree ~alon/direct3d-testsUnnamed repository; edit this file 'description' to name the repository.alon8 yearssummarylogtree ~alon/drmUnnamed repository; edit this file 'description' to name the repository.alon8 yearssummarylogtree ~alon/libcacardUnnamed repository; edit this file to name it for gitweb.alon8 yearssummarylogtree ~alon/libwebsocketsUnnamed repository; edit this file 'description' to name the repository.alon8 yearssummarylogtree ~alon/linuxUnnamed repository; edit this file 'description' to name the repository.alon8 yearssummarylogtree ~alon/mesaUnnamed repository; edit this file to name it for gitweb.alon8 yearssummarylogtree ~alon/qemuspice qemu with usb-ccid devicealon8 yearssummarylogtree ~alon/qxlUnnamed repository; edit this file to name it for gitweb.alon8 yearssummarylogtree ~alon/scardtcpclient for remote smart cards to use with usb-ccid branc of spice/qemualon8 yearssummarylogtree ~alon/spiceUnnamed repository; edit this file to name it for gitweb.alon8 yearssummarylogtree ~alon/spice-commonUnnamed repository; edit this file 'description' to name the repository.alon8 yearssummarylogtree ~alon/spice-gtkUnnamed repository; edit this file 'description' to name the repository.alon8 yearssummarylogtree ~alon/spice-launcherUnnamed repository; edit this file to name it for gitweb.alon10 yearssummarylogtree ~alon/spice-protocolUnnamed repository; edit this file to name it for gitweb.alon8 yearssummarylogtree ~alon/spice-testsUnnamed repository; edit this file 'description' to name the repository.alon8 yearssummarylogtree ~alon/spicedumpUnnamed repository; edit this file 'description' to name the repository.alon8 yearssummarylogtree ~alon/vd_agent-linuxUnnamed repository; edit this file 'description' to name the repository.alon12 yearssummarylogtree ~alon/xf86-video-qxlUnnamed repository; edit this file to name it for gitweb.alon8 yearssummarylogtree ~alon/xspiceold, been integrated into main xf86-video-qxl repositoryalon8 yearssummarylogtree ~alsuren/telepathy-loggeralsuren's telepathy-logger branchesalsuren8 yearssummarylogtree ~alsuren/telepathy-rakiaDavid Laban's SIP CM branchesalsuren8 yearssummarylogtree ~alsuren/wockyUnnamed repository; edit this file to name it for gitweb.alsuren8 yearssummarylogtree ~amerry/bustlebustle (Alex Merry's patches)UNKNOWN8 yearssummarylogtree ~amerry/mpris-examplesExample MPRIS clients and serversUNKNOWN8 yearssummarylogtree ~amerry/mpris-testerApplication for testing media player MPRIS implementationsUNKNOWN8 yearssummarylogtree ~andi/igt-gpu-toolsUnnamed repository; edit this file 'description' to name the repository.UNKNOWN2 monthssummarylogtree ~andi/linuxAndi's kernel stuffUNKNOWNsummarylogtree ~andrem/mesaUnnamed repository; edit this file to name it for gitweb.andrem8 yearssummarylogtree ~anholt/apitraceUnnamed repository; edit this file 'description' to name the repository.anholt8 yearssummarylogtree ~anholt/cairoUnnamed repository; edit this file to name it for gitweb.anholt8 yearssummarylogtree ~anholt/cairogearsUnnamed repository; edit this file to name it for gitweb.anholt8 yearssummarylogtree ~anholt/drmUnnamed repository; edit this file to name it for gitweb.anholt8 yearssummarylogtree ~anholt/gl-extension-listLists of GL extensions that apps look for, for guiding implementation priority.anholt13 yearssummarylogtree ~anholt/glassUnnamed repository; edit this file to name it for gitweb.anholt8 yearssummarylogtree ~anholt/glsl2Unnamed repository; edit this file to name it for gitweb.anholt8 yearssummarylogtree ~anholt/gst-plugins-glUnnamed repository; edit this file to name it for gitweb.anholt8 yearssummarylogtree ~anholt/gypsyanholt's hacks to gypsy.anholt8 yearssummarylogtree ~anholt/hash_tableOpen-addressing, linear probing hash table code for reuse in various projects.anholt6 yearssummarylogtree ~anholt/intel-gpu-toolsUnnamed repository; edit this file 'description' to name the repository.anholt8 yearssummarylogtree ~anholt/intel-gpu-tools-debianUnnamed repository; edit this file to name it for gitweb.anholt8 yearssummarylogtree ~anholt/linuxUnnamed repository; edit this file 'description' to name the repository.anholt8 yearssummarylogtree ~anholt/mesaUnnamed repository; edit this file to name it for gitweb.anholt8 yearssummarylogtree ~anholt/piglitUnnamed repository; edit this file to name it for gitweb.anholt8 yearssummarylogtree ~anholt/shader-dbCollection of GLSL shaders for offline analysis.anholt8 yearssummarylogtree ~anholt/shader-db-2New shader-db implementation based on apitraceanholt8 yearssummarylogtree ~anholt/tracesapitrace captures of some GL applications for testing.anholt8 yearssummarylogtree ~anholt/waffleUnnamed repository; edit this file 'description' to name the repository.anholt8 yearssummarylogtree ~anholt/xf86-video-intelUnnamed repository; edit this file to name it for gitweb.anholt8 yearssummarylogtree ~anholt/xf86-video-modesettingChanges to the modesetting driver for using glamor.anholt8 yearssummarylogtree ~anholt/xserverUnnamed repository; edit this file to name it for gitweb.anholt8 yearssummarylogtree ~anushas/drm-firmwaredrm-firmware # This repo will be used to send i915 firmware Pull Requests bin cg...UNKNOWNsummarylogtree ~aplattner/libX11libX11aplattner8 yearssummarylogtree ~aplattner/libvdpauVideo Decode and Presentation API for UNIXaplattner2 yearssummarylogtree ~aplattner/modularX.org modular utilities.aplattner8 yearssummarylogtree ~aplattner/nvidia-installerNVIDIA driver installeraplattner3 yearssummarylogtree ~aplattner/nvidia-settingsNVIDIA driver control panelaplattner3 yearssummarylogtree ~aplattner/nvidia-xconfigNVIDIA X configuration file editoraplattner3 yearssummarylogtree ~aplattner/vdpauinfoVDPAU info toolaplattner2 yearssummarylogtree ~aplattner/xorg-manifestTest repo manifest for X.Orgaplattner2 yearssummarylogtree ~aplattner/xrenderbenchmarkSimple RENDER benchmarkaplattner3 yearssummarylogtree ~aplattner/xserverX Serveraplattner8 yearssummarylogtree ~aplattner/xtestThe X Test Suiteaplattner8 yearssummarylogtree ~apodtele/fonduFondu resuscitation.UNKNOWN7 yearssummarylogtree ~arnau/transsettransset utility for setting opacity window propertiesarnau8 yearssummarylogtree ~arnau/utilatom, aux and event XCB util librariesarnau8 yearssummarylogtree ~arnau/util-imageimage XCB util libraryarnau8 yearssummarylogtree ~arnau/util-keysymskeysyms XCB util libraryarnau8 yearssummarylogtree ~arnau/util-renderutilrenderutil XCB libraryarnau8 yearssummarylogtree ~arnau/util-wmicccm and ewmh XCB util librariesarnau8 yearssummarylogtree ~arnau/xcb-utilPatches for the utility libraries for XCBarnau8 yearssummarylogtree ~arnau/xorg-util-macrosM4 macros used by XCB util librariesarnau8 yearssummarylogtree ~arun/alsa-libUnnamed repository; edit this file 'description' to name the repository.arun8 yearssummarylogtree ~arun/alsa-utilsUnnamed repository; edit this file 'description' to name the repository.arun8 yearssummarylogtree ~arun/gst-plugins-goodUnnamed repository; edit this file 'description' to name the repository.arun8 yearssummarylogtree ~arun/json-cUnnamed repository; edit this file 'description' to name the repository.arun8 yearssummarylogtree ~arun/libsndfileUnnamed repository; edit this file 'description' to name the repository.arun8 yearssummarylogtree ~arun/pa-output-switcherUnnamed repository; edit this file 'description' to name the repository.arun8 yearssummarylogtree ~arun/pulseaudioVarious PulseAudio hacks and WIP workarun8 yearssummarylogtree ~arun/pulseaudio-androidRepository for PulseAudio on Android/B2G code and configarun8 yearssummarylogtree ~asoliverez/telepathy-ytstenutClone of telepathy-ytstenutUNKNOWN8 yearssummarylogtree ~asoliverez/ytstenut-pluginsUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~awatry/libclclocal clone of http://llvm.org/git/libclc.gitUNKNOWN8 yearssummarylogtree ~b0le/compositeprotoUnnamed repository; edit this file to name it for gitweb.b0le8 yearssummarylogtree ~b0le/libXcompositeUnnamed repository; edit this file to name it for gitweb.b0le8 yearssummarylogtree ~b0le/miscUnnamed repository; edit this file to name it for gitweb.b0le8 yearssummarylogtree ~b0le/xserverUnnamed repository; edit this file to name it for gitweb.b0le8 yearssummarylogtree ~behdad/slippySimple PyCairo-based presentation toolbehdad8 yearssummarylogtree ~behnam/python-fribidiA Python wrapper for Fribidi (Experimental)behnam8 yearssummarylogtree ~bilboed/cerberoUnnamed repository; edit this file 'description' to name the repository.bilboed8 yearssummarylogtree ~bilboed/clutter-gstWork copy of clutter-gstbilboed8 yearssummarylogtree ~bilboed/commonMy clone of GStreamer commonbilboed8 yearssummarylogtree ~bilboed/glibPersonal repository of GLibbilboed8 yearssummarylogtree ~bilboed/gnonlinUnnamed repository; edit this file to name it for gitweb.bilboed8 yearssummarylogtree ~bilboed/gst-ci-scriptsScripts for GStreamer CIbilboed6 yearssummarylogtree ~bilboed/gst-devtoolsUnnamed repository; edit this file 'description' to name the repository.bilboed6 yearssummarylogtree ~bilboed/gst-ducatiUnnamed repository; edit this file 'description' to name the repository.bilboed8 yearssummarylogtree ~bilboed/gst-ffmpegPersonal repository of gst-ffmpegbilboed4 yearssummarylogtree ~bilboed/gst-integration-testsuitesUnnamed repository; edit this file 'description' to name the repository.bilboedsummarylogtree ~bilboed/gst-manifestTest repo manifest for GStreamerbilboed6 yearssummarylogtree ~bilboed/gst-plugins-badPersonal copy of gst-plugins-badbilboed7 yearssummarylogtree ~bilboed/gst-plugins-baseUnnamed repository; edit this file to name it for gitweb.bilboed7 yearssummarylogtree ~bilboed/gst-plugins-dlnasrcCableLabs DLNA source elementbilboed8 yearssummarylogtree ~bilboed/gst-plugins-goodPersonal repository for gst-plugins-goodbilboed7 yearssummarylogtree ~bilboed/gst-pythonUnnamed repository; edit this file to name it for gitweb.bilboed8 yearssummarylogtree ~bilboed/gstreamerPersonal copy of GStreamer (core)bilboed6 yearssummarylogtree ~bilboed/orcUnnamed repository; edit this file to name it for gitweb.bilboed8 yearssummarylogtree ~bilboed/totemUnnamed repository; edit this file to name it for gitweb.bilboed8 yearssummarylogtree ~bnf/drmUnnamed repository; edit this file to name it for gitweb.bnf8 yearssummarylogtree ~bnf/libvaUnnamed repository; edit this file to name it for gitweb.bnf8 yearssummarylogtree ~bnf/mesabnf's MESA repositorybnf8 yearssummarylogtree ~bnf/mesa-demosbnf's mesa-demos repositorybnf8 yearssummarylogtree ~bnf/owfdrmUnnamed repository; edit this file to name it for gitweb.bnf8 yearssummarylogtree ~bnf/sdl-waylandUnnamed repository; edit this file to name it for gitweb.bnf8 yearssummarylogtree ~bnf/waylandbnf's wayland clonebnf8 yearssummarylogtree ~bnf/wayland-demosUnnamed repository; edit this file to name it for gitweb.bnf8 yearssummarylogtree ~bnf/wayland-drmUnnamed repository; edit this file to name it for gitweb.bnf8 yearssummarylogtree ~bnf/wayland-miscUnnamed repository; edit this file to name it for gitweb.bnf8 yearssummarylogtree ~bnf/wayland-webUnnamed repository; edit this file to name it for gitweb.bnf8 yearssummarylogtree ~bnf/westonUnnamed repository; edit this file to name it for gitweb.bnf8 yearssummarylogtree ~brianp/mesaBrian Paul's Mesa git repobrianp8 yearssummarylogtree ~bryce/cairoBryce's cairo repository for development branchesbryce8 yearssummarylogtree ~bryce/cairo-tracesBryce's cairo-traces repository for development branchesbryce8 yearssummarylogtree ~bryce/libXrandrUtilsHigh level wrapper around libXrandrbryce8 yearssummarylogtree ~bryce/pixmanBryce's pixman repository for development branchesbryce8 yearssummarylogtree ~bryce/waylandBryce's wayland repository for development branchesbryce8 yearssummarylogtree ~bryce/westonBryce's weston repository for development branchesbryce8 yearssummarylogtree ~bwidawsk/drmbwidawsk8 yearssummarylogtree ~bwidawsk/drm-intelbwidawsk's kernels for test and reviewbwidawsk7 yearssummarylogtree ~bwidawsk/intel-gpu-toolsintel-gpu-tools with a bwidawsk twistbwidawsk8 yearssummarylogtree ~bwidawsk/kmscubeKMSCUBEbwidawsksummarylogtree ~bwidawsk/mesaUnnamed repository; edit this file to name it for gitweb.bwidawsk7 yearssummarylogtree ~bwidawsk/piglitUnnamed repository; edit this file 'description' to name the repository.bwidawsk8 yearssummarylogtree ~bwidawsk/vgem-gpu-toolstemporary tools for testing vgembwidawsk8 yearssummarylogtree ~cand/mesacand's mesa treeUNKNOWN8 yearssummarylogtree ~carlosg/xf86-input-evdevEvdev driver with support for Linux MT protocol.carlosg8 yearssummarylogtree ~carlosgc/gnome-appletsUnnamed repository; edit this file to name it for gitweb.carlosgc14 yearssummarylogtree ~carlosgc/gnome-magUnnamed repository; edit this file to name it for gitweb.carlosgc14 yearssummarylogtree ~carlosgc/poppler-xpdf3mergeUnnamed repository; edit this file 'description' to name the repository.carlosgc8 yearssummarylogtree ~carlosgc/swftoolsUnnamed repository; edit this file 'description' to name the repository.carlosgc8 yearssummarylogtree ~cbosdo/gvfs-cbosdoGVFS clone to add CMIS backendcbosdo8 yearssummarylogtree ~cbosdo/uno-skeletonmaker2POC for a new flexible implementation of the uno-skeletonmaker tool of the OpenO...cbosdo8 yearssummarylogtree ~cbrej/tidbitA global database for exchanging signed tidbits of information.cbrej8 yearssummarylogtree ~cbrill/dri-logIRC channel log viewercbrill7 monthssummarylogtree ~cbrill/drmdrm.git with glamo additionscbrill8 yearssummarylogtree ~cbrill/egore911-overlayegore911's gentoo overlaycbrill8 yearssummarylogtree ~cbrill/glamo-dri-testsTest programs for Glamo DRIcbrill8 yearssummarylogtree ~cbrill/xf86-video-glamoX.org driver for Glamocbrill8 yearssummarylogtree ~chr/check_xkbUnnamed repository; edit this file 'description' to name the repository.chr8 yearssummarylogtree ~chr/libxcbUnnamed repository; edit this file 'description' to name the repository.chr8 yearssummarylogtree ~chr/xcb_protoUnnamed repository; edit this file 'description' to name the repository.chr8 yearssummarylogtree ~cloos/dbmailBased on http://www.dbmail.org/cloos4 yearssummarylogtree ~cloos/fontconfigFont customization and configuration librarycloos4 yearssummarylogtree ~cloos/fontforgeClone of git://fontforge.git.sourceforge.net/gitroot/fontforge/fontforgecloos4 yearssummarylogtree ~cloos/freetype2clone of git://git.sv.gnu.org/freetype/freetype2.gitcloos4 yearssummarylogtree ~cloos/ghostpdlClone of git://git.ghostscript.com/ghostpdl.git.cloos4 yearssummarylogtree ~cloos/glabelsUnnamed repository; edit this file 'description' to name the repository.cloos4 yearssummarylogtree ~cloos/gnome-liveBranched off git://git.overlays.gentoo.org/proj/gnome-live.gitcloos4 yearssummarylogtree ~cloos/live-x11A Gentoo Portage Overlay of live builds of Xorg projects.cloos4 yearssummarylogtree ~cloos/man-pagesUnnamed repository; edit this file 'description' to name the repository.cloos4 yearssummarylogtree ~cloos/overlayMy Gentoo Portage OVerlaycloos4 yearssummarylogtree ~cloos/popplerThe poppler pdf rendering librarycloos4 yearssummarylogtree ~cloos/xkeyboard-configUnnamed repository; edit this file 'description' to name the repository.cloos4 yearssummarylogtree ~cloos/xlsclientsList client applications running on a displaycloos4 yearssummarylogtree ~cloos/xpdfxpdf 3.02→3.02 comparison repocloos4 yearssummarylogtree ~cloos/xserverX servercloos4 yearssummarylogtree ~cndougla/inputprotoXI 2.1 developmentcndougla8 yearssummarylogtree ~cndougla/libXiXI 2.1 developmentcndougla8 yearssummarylogtree ~cndougla/mtviewUnnamed repository; edit this file to name it for gitweb.cndougla8 yearssummarylogtree ~cndougla/utouch-frameUnnamed repository; edit this file to name it for gitweb.cndougla8 yearssummarylogtree ~cndougla/xf86-input-evdevXI 2.1 developmentcndougla8 yearssummarylogtree ~cndougla/xf86-input-synapticsUnnamed repository; edit this file 'description' to name the repository.cndougla8 yearssummarylogtree ~cndougla/xinputXI 2.1 developmentcndougla8 yearssummarylogtree ~cndougla/xorg-gtestUnnamed repository; edit this file 'description' to name the repository.cndougla8 yearssummarylogtree ~cndougla/xserverXI 2.1 developmentcndougla8 yearssummarylogtree ~colin/fooPulseAudio Volume Controlcolin12 yearssummarylogtree ~colin/pulseaudio.git-bakupPulseAudio Sound Servercolin11 yearssummarylogtree ~company/cairoUnnamed repository; edit this file to name it for gitweb.company8 yearssummarylogtree ~company/ephy-historyUnnamed repository; edit this file to name it for gitweb.company8 yearssummarylogtree ~company/gst-plugins-cairoUnnamed repository; edit this file to name it for gitweb.company8 yearssummarylogtree ~company/libgamelibgame - A bunch of 2D arcade gamescompany8 yearssummarylogtree ~company/pigUnnamed repository; edit this file to name it for gitweb.company8 yearssummarylogtree ~company/pixmanUnnamed repository; edit this file to name it for gitweb.company8 yearssummarylogtree ~cooperyuan/compat-apicompat-api.h for ddx drivercooperyuan8 yearssummarylogtree ~cooperyuan/libdri2libdri2 interface version 6cooperyuan8 yearssummarylogtree ~cooperyuan/r300g-xvmcgallium part for AMD r5xx video accelerationcooperyuan8 yearssummarylogtree ~cooperyuan/xvmc2d part for AMD r5xx video acceleration based on Galliumcooperyuan8 yearssummarylogtree ~csimpson/mesaIt wasn't a rock; it was a rock lobster!csimpson8 yearssummarylogtree ~csimpson/pylladiumHeavy weather ahead.csimpson8 yearssummarylogtree ~csimpson/rules-ngUnnamed repository; edit this file to name it for gitweb.csimpson8 yearssummarylogtree ~csimpson/xserverAnd I have become comfortably numb.csimpson8 yearssummarylogtree ~currojerez/apitraceUnnamed repository; edit this file 'description' to name the repository.currojerez7 yearssummarylogtree ~currojerez/clinfoclinfocurrojerez8 yearssummarylogtree ~currojerez/mesaUnnamed repository; edit this file to name it for gitweb.currojerez6 yearssummarylogtree ~currojerez/piglitUnnamed repository; edit this file 'description' to name the repository.currojerez8 yearssummarylogtree ~currojerez/tvdumpUnnamed repository; edit this file to name it for gitweb.currojerez8 yearssummarylogtree ~cwabbott0/crucibleConnor's crucible hacks.UNKNOWN7 yearssummarylogtree ~cwabbott0/mesaConnor's silly Mesa stuff.UNKNOWN7 yearssummarylogtree ~cwabbott0/shader-dbConnor's shader-db patches.UNKNOWN8 yearssummarylogtree ~cworth/apitraceCarl's hacks to apitrace (upstream at https://github.com/apitrace/apitrace)cworth13 yearssummarylogtree ~cworth/cairoCarl's hacks for cairocworth8 yearssummarylogtree ~cworth/glcpp"C" pre-processor for GLSLcworth14 yearssummarylogtree ~cworth/glsl2Carl's edits to the glsl2 project.cworth14 yearssummarylogtree ~cworth/mesaCarl's lame hacks to mesa.cworth10 yearssummarylogtree ~cworth/piglit-wwwcworthsummarylogtree ~cworth/svg2pdfsvg2pdf: Simple demo showing how to use librsvg/cairo to render an SVG to PDF.cworth8 yearssummarylogtree ~cworth/svg2pngsvg2png: Simple demo showing how to use librsvg/cairo to render an SVG to PNG.cworth8 yearssummarylogtree ~cymacs/gst-debug-viewerGStreamer Debug Viewercymacs8 yearssummarylogtree ~cymacs/gst-inspectorGStreamer Inspectorcymacs8 yearssummarylogtree ~daenzer/drmMichel Daenzer's personal libdrm repository.daenzer8 yearssummarylogtree ~daenzer/xf86-video-amdgpuMichel Daenzer's personal xf86-video-amdgpu repository.daenzer8 yearssummarylogtree ~daenzer/xf86-video-atiMichel Daenzer's personal xf86-video-ati repositorydaenzer8 yearssummarylogtree ~daenzer/xserverMichel Daenzer's personal xserver repository.daenzer8 yearssummarylogtree ~damien/intel-gpu-toolsDamien's intel-gpu-tools branchesdamien8 yearssummarylogtree ~damien/libdrmDamien's libdrm branchesdamien8 yearssummarylogtree ~damien/linux-2.6Damien's kernel branchesdamien8 yearssummarylogtree ~damien/submit-buildSubmit builds to a try botdamien8 yearssummarylogtree ~daniels/xf86-video-wlshmSoftware-only driver for XWaylanddaniels8 yearssummarylogtree ~darktama/nouveauNouveau driver - core, tools and DRM implementationdarktama8 yearssummarylogtree ~david/dbus-idlUnnamed repository; edit this file to name it for gitweb.david8 yearssummarylogtree ~david/eggdbusUnnamed repository; edit this file to name it for gitweb.david8 yearssummarylogtree ~david/gdbus-binding-toolUnnamed repository; edit this file to name it for gitweb.david8 yearssummarylogtree ~david/gdbus-giUnnamed repository; edit this file to name it for gitweb.david8 yearssummarylogtree ~david/gdbus-standaloneUnnamed repository; edit this file to name it for gitweb.david8 yearssummarylogtree ~david/goaUnnamed repository; edit this file to name it for gitweb.david8 yearssummarylogtree ~david/stcUnnamed repository; edit this file to name it for gitweb.david8 yearssummarylogtree ~david/xdg-hostnameUnnamed repository; edit this file to name it for gitweb.david8 yearssummarylogtree ~dbaker/mesaUnnamed repository; edit this file 'description' to name the repository.UNKNOWN6 yearssummarylogtree ~dbaker/shader-dbUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~dbn/evbpEvince Browser Plugindbn8 yearssummarylogtree ~dbn/initd-toolsLSB init scripts programsdbn8 yearssummarylogtree ~dbn/pkg-configPersonal pkg-config branchesdbn8 yearssummarylogtree ~dbn/xserverVarious xserver patchesdbn8 yearssummarylogtree ~dbn/xtsAutotooled and hacked up X Test Suitedbn8 yearssummarylogtree ~dcbw/linux-firmwaredcbw's linux firmware repodcbw8 yearssummarylogtree ~dcbw/wimaxMirror of Intel WiMAX daemondcbw8 yearssummarylogtree ~dcbw/wimax-toolsMirror of Intel WiMAX tools repodcbw8 yearssummarylogtree ~deathsimple/cecHDMI CEC librarydeathsimple8 yearssummarylogtree ~deathsimple/drmUnnamed repository; edit this file 'description' to name the repository.deathsimple7 yearssummarylogtree ~deathsimple/gst-omxgst-omx patchesdeathsimple8 yearssummarylogtree ~deathsimple/linuxSome patches for drm/radeondeathsimple8 yearssummarylogtree ~deathsimple/mesamesa patchesdeathsimple8 yearssummarylogtree ~deathsimple/xf86-video-atixf86-video-ati with XvMC supportdeathsimple8 yearssummarylogtree ~debarshir/telepathy-loggerDebarshi Ray's personal Telepathy Logger repositorydebarshir8 yearssummarylogtree ~dkukawka/halMy HAL repo for development and maintenance.dkukawka8 yearssummarylogtree ~dkukawka/hal-infoMy hal-info repo for development and maintenance.dkukawka8 yearssummarylogtree ~dolphin/igt-gpu-toolsJoonas's IGT GPU Tools branchesUNKNOWNsummarylogtree ~dolphin/linuxJoonas's Linux kernel branchesUNKNOWN4 yearssummarylogtree ~dottedmag/fontconfigBugfixes for fontconfigdottedmag8 yearssummarylogtree ~dottedmag/libXdmcpFixes for libXdmcpdottedmag8 yearssummarylogtree ~dottedmag/libfontencFont encoding library -- various fixesdottedmag8 yearssummarylogtree ~dottedmag/xinitFixes for xinitdottedmag8 yearssummarylogtree ~dottedmag/xserverfixes for X serverdottedmag8 yearssummarylogtree ~drf/telepathy-qt-farstreamFarstream component of telepathy-qtdrf8 yearssummarylogtree ~ds/gst-rtmpGStreamer RTMP libraryds8 yearssummarylogtree ~ds/pixmanUnnamed repository; edit this file to name it for gitweb.ds8 yearssummarylogtree ~dtardon/liblangtagclone of liblangtag to test oss-fuzzdtardon7 yearssummarylogtree ~dtardon/libsdfSample import librarydtardon8 yearssummarylogtree ~dtardon/libsw602Library for import of Software602 text and spreadsheet formats.dtardon6 yearssummarylogtree ~dtardon/libxaraLibrary for import of Xar document formatdtardon8 yearssummarylogtree ~dvdhrm/kmsconKMS/DRM based system consoleUNKNOWN8 yearssummarylogtree ~dvdhrm/libbus1Bus1 LibraryUNKNOWN8 yearssummarylogtree ~dvdhrm/libevdevPrivate libevdev wip treeUNKNOWN8 yearssummarylogtree ~dvdhrm/libtsmTerminal-Emulator State MachineUNKNOWN8 yearssummarylogtree ~dvdhrm/libuvtUserspace Virtual TerminalsUNKNOWN8 yearssummarylogtree ~dvdhrm/libwfdWifi-Display/Miracast Protocol ImplementationUNKNOWN8 yearssummarylogtree ~dvdhrm/linuxPrivate linux-kernel wip treeUNKNOWN8 yearssummarylogtree ~dvdhrm/man-pagesExtensions to the linux man-pages projectUNKNOWN8 yearssummarylogtree ~dvdhrm/miracleWifi-Display/Miracast ImplementationUNKNOWN8 yearssummarylogtree ~dvdhrm/mmap-unifontMemory-mapped GNU-UnifontUNKNOWN8 yearssummarylogtree ~dvdhrm/openwfdOpen-Source WiFi-Display ImplementationUNKNOWN8 yearssummarylogtree ~dvdhrm/systemdPrivate systemd wip treeUNKNOWN8 yearssummarylogtree ~dvdhrm/wltermUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~eich/xf86-input-wacomEgbert's xf86-input-wacom cloneeich8 yearssummarylogtree ~eich/xf86-video-astEgbert's clone of the X.Org xf86-video-ast driver.eich8 yearssummarylogtree ~elmarco/libcacardlibcacard with some win32 backend wipelmarco8 yearssummarylogtree ~elmarco/vdagentLinux spice vdagentelmarco8 yearssummarylogtree ~elmarco/virglrendererVirgl rendererelmarco8 yearssummarylogtree ~elmarco/xf86-video-qxlQXL driverelmarco8 yearssummarylogtree ~emericg/libvdpau-vp8VDPAU wrapper and trace libraries. With VP8 VDPAU support.UNKNOWN8 yearssummarylogtree ~emericg/mesa-vp8A hardware-accelerated VP8 video decoder available through a Gallium3D VDPAU sta...UNKNOWN8 yearssummarylogtree ~emericg/vdpauinfo-vp8VDPAU info tool. With VP8 VDPAU support.UNKNOWN8 yearssummarylogtree ~emmanuel/cairoEmmanuel's cairo repository - SVG backend workemmanuel8 yearssummarylogtree ~ensonic/gst-mediainfoMedia browser based on gstreamer.ensonic8 yearssummarylogtree ~ensonic/gst-tracelibPerformance tracing library for gstreamer.ensonic8 yearssummarylogtree ~ensonic/gstreamerGStreamer open-source multimedia frameworkensonic8 yearssummarylogtree ~eugeni/apitraceEugeni's apitrace experimental branchesUNKNOWN8 yearssummarylogtree ~eugeni/drmEugeni's drm repoUNKNOWN8 yearssummarylogtree ~eugeni/intel-gpu-toolsEugeni's repo for intel-gpu-toolsUNKNOWN8 yearssummarylogtree ~eugeni/kernelEugeni's experimental kernel branchesUNKNOWN8 yearssummarylogtree ~eugeni/mesaEugeni's mesa testing branchUNKNOWN8 yearssummarylogtree ~eugeni/piglitEugeni's piglit testsUNKNOWN8 yearssummarylogtree ~eugeni/powertopUnnamed repository; edit this file to name it for gitweb.UNKNOWN8 yearssummarylogtree ~eugeni/xf86-video-intelSome hacks on top of xf86-video-intelUNKNOWN8 yearssummarylogtree ~ewalsh/buildskelPersonal X build scripts and utilities.ewalsh8 yearssummarylogtree ~ewalsh/compizcompiz SELinux support.ewalsh8 yearssummarylogtree ~ewalsh/linpickerLightweight display server for Xen.ewalsh8 yearssummarylogtree ~ewalsh/mcstransSELinux context translation daemon with color support.ewalsh8 yearssummarylogtree ~ewalsh/refpolicyExperimental SELinux policy for the X object manager.ewalsh8 yearssummarylogtree ~ewalsh/xserverxserver XACE and SELinux feature branches.ewalsh8 yearssummarylogtree ~ewalsh/xsetoolsSELinux-aware X clipboard and device manager.ewalsh8 yearssummarylogtree ~fargiolas/cheese-stageSome experiment with Cheese and Clutter integrationfargiolas8 yearssummarylogtree ~fcarrijo/xserverX Server with dedicated Input Threadfcarrijo8 yearssummarylogtree ~felipec/msn-pecan-ngPlayground for msn-pecanfelipec8 yearssummarylogtree ~felipec/xfce4-panelFelipeC's Xfce testfelipec8 yearssummarylogtree ~fredinfinite23/waylandUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~fredinfinite23/westonUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~fredinfinite23/xoo-gtk3Xoo port to GTK+3UNKNOWN8 yearssummarylogtree ~fredinfinite23/xorg-serverAdditional glX support for Xephyr serverUNKNOWN8 yearssummarylogtree ~fredrik/libepoxyUnnamed repository; edit this file 'description' to name the repository.fredrik8 yearssummarylogtree ~fredrik/mesaUnnamed repository; edit this file to name it for gitweb.fredrik7 yearssummarylogtree ~fredrik/piglitUnnamed repository; edit this file to name it for gitweb.fredrik8 yearssummarylogtree ~fredrik/xserverUnnamed repository; edit this file 'description' to name the repository.fredrik8 yearssummarylogtree ~fridrich/libabw-testTestsuite for libabw.fridrich8 yearssummarylogtree ~fridrich/libcdr-testRegression test suite for libcdr.fridrich3 yearssummarylogtree ~fridrich/libemfpLibrary to parse EMF+ (and eventually EMF and WMF) files.fridrich8 yearssummarylogtree ~fridrich/libpgplusLibrary for parsing and converting PagePlus documentsfridrich8 yearssummarylogtree ~fridrich/libpictLibrary to parse and convert Macintosh PICT filesfridrich8 yearssummarylogtree ~fridrich/libsdwlibsdw - Library to read and convert binary StarOffice Writer documents.fridrich8 yearssummarylogtree ~fridrich/libvisio-testRegression suite to test libvisio <http://www.freedesktop.org/wiki/Software/libv...fridrich7 yearssummarylogtree ~frohlich/PrecomputedAtmosphericScatteringUnnamed repository; edit this file 'description' to name the repository.UNKNOWN5 yearssummarylogtree ~funfunctor/envytoolsUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~funfunctor/gbm_funUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~funfunctor/libclcUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~funfunctor/linuxUnnamed repository; edit this file 'description' to name the repository.UNKNOWN5 yearssummarylogtree ~funfunctor/mesaMesa3D repository; personal mesa3D branches.UNKNOWN7 yearssummarylogtree ~funfunctor/samba-dcUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~funfunctor/smu-fwUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~funfunctor/umrUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~funfunctor/vk_funUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~fziglio/getdisplay_capturePass EGL display to spice-server without changing Qemu sourceUNKNOWN8 yearssummarylogtree ~fziglio/latencyThis utility forward a connection on localhost trying to emulate a latency and a...UNKNOWN10 monthssummarylogtree ~fziglio/qemuQemu experimental branchUNKNOWN5 yearssummarylogtree ~fziglio/script-utilsVarious utilitiesUNKNOWN3 yearssummarylogtree ~fziglio/spice-commonWorking repository for spice-common patchesUNKNOWN9 monthssummarylogtree ~fziglio/spice-dissectorSource code to compiler a wireshark dissector using spice-protocolUNKNOWN8 yearssummarylogtree ~fziglio/spice-gtkspice-gtk working repositoryUNKNOWN4 yearssummarylogtree ~fziglio/spice-protocolspice-procotol personal repositoryUNKNOWN8 yearssummarylogtree ~fziglio/spice-replayProject to record and play human interaction with desktop. Actually though to be...UNKNOWN8 yearssummarylogtree ~fziglio/spice-serverspice-server working directoryUNKNOWN16 monthssummarylogtree ~fziglio/spice-streaming-agentSPICE streanming agentUNKNOWN5 yearssummarylogtree ~fziglio/stream_sendTest program to write a stream to server using new deviceUNKNOWN8 yearssummarylogtree ~fziglio/vd_agent_linuxLinux SPICE agentUNKNOWNsummarylogtree ~fziglio/vd_agent_winvdagent for Windows - experimental repositoryUNKNOWN5 yearssummarylogtree ~fziglio/virt-viewervirt-viewer, GUI for SPICEUNKNOWN4 yearssummarylogtree ~fziglio/x11spicex11spiceUNKNOWN4 yearssummarylogtree ~gabbayo/linuxThis repository contains AMD's HSA Linux kernel driver, called amdkfdUNKNOWN4 yearssummarylogtree ~gabbayo/llvmUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~gabbayo/mesaUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~gabbayo/piglitUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~gabbayo/pixmanUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~gandalfn/glitzOpenGL image compositing librarygandalfn8 yearssummarylogtree ~gandalfn/xf86-input-evtouch2X.org xf86-input-evtouch2 driver.gandalfn8 yearssummarylogtree ~gary/gwmOh, no! It's another window manager.gary8 yearssummarylogtree ~gary/optdepsGentoo portage overlay making dependencies optional where possible.gary19 monthssummarylogtree ~gb/gst-plugins-badPersonal repository of gst-plugins-badUNKNOWN8 yearssummarylogtree ~gb/libvaPersonal repository of libvaUNKNOWN8 yearssummarylogtree ~gb/libva-intel-driverPersonal repository of VA intel-driverUNKNOWN8 yearssummarylogtree ~gb/mesaPersonal repository of the Mesa 3D libraryUNKNOWN8 yearssummarylogtree ~gb/waylandPersonal repository of the Wayland Compositor infrastructureUNKNOWN8 yearssummarylogtree ~gb/westonPersonal repository of the Weston Wayland CompositorUNKNOWN8 yearssummarylogtree ~gberg/ontologiesGeorge's development branches of shared-desktop-ontologies.gberg8 yearssummarylogtree ~gfxstrand/drmUnnamed repository; edit this file 'description' to name the repository.UNKNOWNsummarylogtree ~gfxstrand/intel-gpu-toolsUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~gfxstrand/westonJason Ekstrand's personal weston repoUNKNOWN8 yearssummarylogtree ~gfxstrand/xserverUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~glisse/SPIRV-LLVMUnnamed repository; edit this file 'description' to name the repository.glisse6 yearssummarylogtree ~glisse/SPIRV-ToolsUnnamed repository; edit this file 'description' to name the repository.glisse6 yearssummarylogtree ~glisse/compoteCompote bac a sableglisse7 yearssummarylogtree ~glisse/gltoolboxcustomized gl test program for reverse engineering or stress testingglisse8 yearssummarylogtree ~glisse/joujouUnnamed repository; edit this file to name it for gitweb.glisse8 yearssummarylogtree ~glisse/linuxLinux kernel with some radeon work.glisse7 yearssummarylogtree ~glisse/mesamesa sandboxglisse6 yearssummarylogtree ~glisse/mocheUnnamed repository; edit this file 'description' to name the repository.glisse7 yearssummarylogtree ~glisse/r600winsysr600/r700 winsys testing.glisse8 yearssummarylogtree ~glisse/radeondbradeondb radeon GPU debug tools.glisse8 yearssummarylogtree ~glisse/rdbAMD register database generated from public informationsglisse8 yearssummarylogtree ~glisse/revengeUnnamed repository; edit this file 'description' to name the repository.glisse8 yearssummarylogtree ~glisse/utestUnnamed repository; edit this file 'description' to name the repository.glisse6 yearssummarylogtree ~glisse/valgrindvalgrind fglrx ioctl catchingglisse8 yearssummarylogtree ~glisse/vbetoolTool to trace video bios extension (vbe) execution.glisse8 yearssummarylogtree ~gnadon/intel-gpu-toolsIntel GPU toolsgnadon8 yearssummarylogtree ~gnadon/libxcbThe X C Binding (XCB) librarygnadon8 yearssummarylogtree ~gnadon/modularX.org modular utilities.gnadon8 yearssummarylogtree ~gnadon/utilCore XCB utility functionsgnadon8 yearssummarylogtree ~gnadon/util-imageXCB port of Xlib's XImage and XShmImagegnadon8 yearssummarylogtree ~gnadon/util-renderutilConvenience functions for the Render extensiongnadon8 yearssummarylogtree ~gnadon/util-wmClient and window-manager helpers for ICCCM and EWMHgnadon8 yearssummarylogtree ~gnadon/xf86-video-geodeUnnamed repository; edit this file 'description' to name the repository.gnadon8 yearssummarylogtree ~gnadon/xkeyboard-configUnnamed repository; edit this file to name it for gitweb.gnadon8 yearssummarylogtree ~gnadon/xserverUnnamed repository; edit this file 'description' to name the repository.gnadon8 yearssummarylogtree ~gongzg/beignetUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~gongzg/glamorUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~gongzg/xf86-video-intelUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~grigorig/llvmMostly R600/SI bugfixesUNKNOWN8 yearssummarylogtree ~grigorig/mesaMesa patchesUNKNOWN8 yearssummarylogtree ~gsap7/mesaUnnamed repository; edit this file to name it for gitweb.gsap78 yearssummarylogtree ~gsap7/xserverUnnamed repository; edit this file to name it for gitweb.gsap78 yearssummarylogtree ~haihao/libvaPersonal libva repositoryhaihao8 yearssummarylogtree ~haihao/libva-intel-driverPersonal libva-intel-driver repositoryhaihao8 yearssummarylogtree ~halfline/kechoKernel module to provide userspace access to dmesghalfline16 yearssummarylogtree ~halfline/libxcbUnnamed repository; edit this file 'description' to name the repository.halfline10 yearssummarylogtree ~halfline/libxtransUnnamed repository; edit this file 'description' to name the repository.halfline10 yearssummarylogtree ~halfline/live-meet-feedVideo feed to icecast serverhalfline13 yearssummarylogtree ~halfline/popPop toy compositing managerhalfline17 yearssummarylogtree ~halfline/test-chromecastUnnamed repository; edit this file 'description' to name the repository.halfline11 yearssummarylogtree ~halfline/test-screensaver-extensionScreensaver Extension Test Programhalfline15 yearssummarylogtree ~halfline/waylandRay's clone of krh's wayland projecthalfline15 yearssummarylogtree ~halfline/xserverUnnamed repository; edit this file 'description' to name the repository.halfline10 yearssummarylogtree ~hasselmm/qt-gstreamerPersonal (and usually outdated) clone of QtGStreamerhasselmm8 yearssummarylogtree ~hasselmm/qtquickstreamerQML bindings for GStreamer; so far this is a feasibility study mostlyhasselmm8 yearssummarylogtree ~hasselmm/telepathy-gruschlerA Telepathy connection manager for social networks.hasselmm8 yearssummarylogtree ~hejunyan/beignetUnnamed repository; edit this file 'description' to name the repository.UNKNOWN8 yearssummarylogtree ~herrb/xserverOpenBSD versions of xserverherrb8 yearssummarylogtree ~hwentland/color-demo-appUnnamed repository; edit this file 'description' to name the repository.UNKNOWN6 yearssummarylogtree ~hwentland/linuxHarry's kernel tree tracking AMD DC workUNKNOWN8 yearssummarylogtree ~ickle/cairo-demosUnnamed repository; edit this file to name it for gitweb.ickle11 yearssummarylogtree ~ickle/ezbenchUnnamed repository; edit this file 'description' to name the repository.ickle8 yearssummarylogtree ~ickle/intel-gpu-toolsUnnamed repository; edit this file 'description' to name the repository.ickle4 yearssummarylogtree ~ickle/linux-2.6Experimental kernel branches, you have been warned.ickle4 yearssummarylogtree ~ickle/ministatUnnamed repository; edit this file 'description' to name the repository.ickle5 yearssummarylogtree ~ickle/odinOdin: a simple memory profiler over time, ala massif but lightweight.ickle8 yearssummarylogtree ~ickle/renderprotoUnnamed repository; edit this file to name it for gitweb.ickle8 yearssummarylogtree ~ickle/sphinxUnnamed repository; edit this file to name it for gitweb.ickle14 yearssummarylogtree ~idr/drmUnnamed repository; edit this file 'description' to name the repository.idr8 yearssummarylogtree ~idr/glsl2Unnamed repository; edit this file to name it for gitweb.idr8 yearssummarylogtree ~idr/glu3Unnamed repository; edit this file to name it for gitweb.idr8 yearssummarylogtree ~idr/mesaUnnamed repository; edit this file 'description' to name the repository.idr5 yearssummarylogtree ~idr/piglitUnnamed repository; edit this file to name it for gitweb.idr5 yearssummarylogtree ~idr/xserverUnnamed repository; edit this file to name it for gitweb.idr8 yearssummarylogtree ~igor.oliveira/cairo-drm-galliumCairo Galliumigor.oliveira8 yearssummarylogtree ~igor.oliveira/gallium-double-opcodesUnnamed repository; edit this file to name it for gitweb.igor.oliveira8 yearssummarylogtree ~igor.oliveira/mesa-advanced-blendingOpenVG advanced blendingigor.oliveira8 yearssummarylogtree ~iksaif/waylandwayland cloneUNKNOWN13 yearssummarylogtree ~iksaif/xf86-video-wlshmxf86 video driver using shared memory for xwaylandUNKNOWN12 yearssummarylogtree ~iksaif/xserverXorg that runs on wayland (xwayland extension)UNKNOWN12 yearssummarylogtree ~imirkin/glxinfohttps://people.freedesktop.org/~imirkin/glxinfo/UNKNOWN7 yearssummarylogtree ~jamey/xserverJamey's X server treejamey8 yearssummarylogtree ~jbarnes/cros-miscMisc. ChromeOS upstream stuffjbarnes4 yearssummarylogtree ~jbarnes/drmJesse's libdrm codejbarnes13 yearssummarylogtree ~jbarnes/glprotoJesse's GL proto changesjbarnes8 yearssummarylogtree ~jbarnes/intel-gpu-toolsMisc. igt changesjbarnes8 yearssummarylogtree ~jbarnes/linuxMisc. kernel treejbarnes8 yearssummarylogtree ~jbarnes/mesaJesse's Mesa development treejbarnes8 yearssummarylogtree ~jbarnes/qt-waylandPatches to support Qt on Waylandjbarnes8 yearssummarylogtree ~jbarnes/waylandUnnamed repository; edit this file 'description' to name the repository.jbarnes8 yearssummarylogtree ~jbarnes/xf86-video-intelJesse's Intel DDX development treejbarnes8 yearssummarylogtree ~jbarnes/xserverJesse's X Server development treejbarnes8 yearssummarylogtree ~jcristau/libxcbUnnamed repository; edit this file 'description' to name the repository.jcristau8 yearssummarylogtree ~jcristau/xcb-protoUnnamed repository; edit this file 'description' to name the repository.jcristau8 yearssummarylogtree ~jcristau/xdmUnnamed repository; edit this file to name it for gitweb.jcristau8 yearssummarylogtree ~jcristau/xserverUnnamed repository; edit this file to name it for gitweb.jcristau8 yearssummarylogtree ~jeremy/rwlremote waylandUNKNOWN8 yearssummarylogtree ~jeremyhu/libxcwmUnnamed repository; edit this file 'description' to name the repository.jeremyhu8 yearssummarylogtree ~jeremyhu/mesalibGL for GLX on XQuartzjeremyhu8 yearssummarylogtree ~jeremyhu/xf86-video-nestedUnnamed repository; edit this file to name it for gitweb.jeremyhu8 yearssummarylogtree ~jeremyhu/xserverXQuartz feature workjeremyhu8 yearssummarylogtree ~jinghua/audiereUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/emacsUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/gst-plugins-pmpa PMP demuxer plugin for gstreamerjinghua8 yearssummarylogtree ~jinghua/gst-plugins-ppsA PPStream plugin for gstreamerjinghua8 yearssummarylogtree ~jinghua/gst-plugins-sopcastA Sopcast plugin for gstreamerjinghua8 yearssummarylogtree ~jinghua/libppswrapperUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/milkwayUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/oisUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/overlayUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/popcapUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/python-patchUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/sdl-freetypeUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/systemd-gentoo-unitsUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/totem-ppsA ppstream browser for totemjinghua8 yearssummarylogtree ~jinghua/totem-sohuUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/totem-sopcastA sopcast browser for totemjinghua8 yearssummarylogtree ~jinghua/uniconvUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jinghua/xine-ppsUnnamed repository; edit this file to name it for gitweb.jinghua8 yearssummarylogtree ~jjones/westonNVIDIA development branches of the Weston Wayland Compositorjjones8 yearssummarylogtree ~jjones/x11-eglstreamEGLStream Sample Codejjones8 yearssummarylogtree ~jjongsma/qemuqemu patches for jjongsmajjongsmasummarylogtree ~jjongsma/spice-gtkJonathon's spice-gtk branchesjjongsma8 yearssummarylogtree ~jjongsma/spice-serverJonathon's spice-server branchesjjongsma8 yearssummarylogtree ~jljusten/intel-gpu-toolsjljusten's i-g-t repoUNKNOWNsummarylogtree ~jljusten/libdrmjljusten's DRM repoUNKNOWN12 yearssummarylogtree ~jljusten/mesajljusten's mesa repoUNKNOWN3 monthssummarylogtree