CQ5 Response Encoding

Hi Folks,
Does any one know whats default character encoding used by CQ5? (UTF-8, ISO-8859-1 etc)
Does it depend on whats the encoding used when the file was stored, if so whats the default encoding CRXDE uses to store file?
/etc/crxde/profiles/default/classpath.xml.xslt has following setting.. does it means anything in this case?
<xsl:output method="xml" encoding="UTF-8" indent="yes"/>
Thanks an in advance!
- Adnan

Hi Sham,
Do you have a reference for any further information on how to set the default response encoding in the CQ / Day Servlet Engine?  I've been searching for a way to get CQ5 to return UTF-8 encoded responses (for all responses, not just POST), but not having any luck so far.
In the jsp file I have:
<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
And in the head of the html is:
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
But still get ISO-8859-1 in the response header (for a GET request):
Content-Type:
text/html;charset=ISO-8859-1
It seems that CQ5 is still using the default encoding somehow.  Is it possible to change the default encoding to UTF-8, or do I need to implement a servlet filter to force the response encoding?  I'm using CQ5.5 SP2, if that makes any difference.
Thanks,
Ray

Similar Messages

  • Webservice server response encoding in unreadable format!

    Hi,
    I am sending a SOAP based payload to a webservice, the action that needs to be performed is happening properly (verified from browser/DB) but in the details page of the playback i am seeing unreadable characters. I tried setting the response encoding type to all 3 possible values - ASCII, UTF-8, ORACLE Binary but i am not getting the xml output that is returned by the server. Can you please help me in resolving this issue. I am using OATS 9.2.1 version. Also the sample server response is:
    ------=_Part_69_365884190.1296744348826
    Content-Type: application/xop+xml;charset=UTF-8;type="text/xml"
    Content-Transfer-Encoding: 8bit
    Content-ID: <4832838f30b84c9c9b829e8506279346>
    <?xml version="1.0" encoding="UTF-8" ?>
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Header/><env:Body><ns0:processResponse xmlns:ns0="http://xmlns.oracle.com/apps/outlookEdition/connector/requestHandlerService/types/"><ns2:result xmlns:ns2="http://xmlns.oracle.com/apps/outlookEdition/connector/requestHandlerService/types/" xmlns:ns1="http://xmlns.oracle.com/adf/svc/types/" xmlns:ns0="http://xmlns.oracle.com/apps/outlookEdition/connector/requestHandlerService/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns0:OutlookRequestHandlerSDO"><ns0:BaseObjectXml xsi:nil="true"/><ns0:ObjectKey xsi:nil="true"/><ns0:ObjectType>opportunity</ns0:ObjectType><ns0:NativePimId xsi:nil="true"/><ns0:DeletionFlag>true</ns0:DeletionFlag><ns0:ErrorCode xsi:nil="true"/><ns0:ErrorDetails xsi:nil="true"/><ns0:ErrorMessage xsi:nil="true"/></ns2:result></ns0:processResponse></env:Body></env:Envelope>
    ------=_Part_69_365884190.1296744348826--
    Regards,
    Muthu

    Excerpt from Raja.vengala's mail:
    Muthu,
    What you see in the response is the compressed content. WebService is encoding the response in gzip format. Disable encoding support before sending the request as follows
    Preferences -> playback-> http -> unselect gzip
    Raj

  • How to change default response encoding for not jsp files

    Hi
    Question about Weblogic Portal&Serwer 10.
    For standard web applications from war archiwes, html etc. files are send with default server response
    "Content-Type: text/html; charset=ISO-8859-1".
    The question is how to disable this default header
    or how to change this header to correct encoding.
    PS.
    I found solution only for ear' applications ...
    with file META-INF/weblogic-application.xml and webapp.encoding.default parameter. This works well for ear's.

    Thanks. I feel a bit like a dummy for not seeing that but so it goes. What I was looking for, in a perfect world, was to set a preference to permanently sert a default folder on an external drive to store the .dvdproj files once they are made.......but your suggestion is close enough to my original intention.
    Thanks again.

  • REST call response encoding

    Hi All,
    I have a json message received from http call. If I set <par id="htta.returnpltypeforce" value="json"> in call payload then my response is fine, for example:
    <bfa:io>
        <bfa:object>
            <bfa:object name="response">
                <bfa:string name="error">1</bfa:string>
                <bfa:string name="errorMessage">Błąd autoaryzacji</bfa:string>
            </bfa:object>
        </bfa:object>
    </bfa:io>
    If I don't make B1if to automatically convert response from JSON to XML and set <par id="htta.returnpltypeforce" value=""> then my response is: {"response": { "error" : "1", "errorMessage" : "Błąd autoryzacji"}}.
    The thing is that when the response is not converted then Błąd looks like Błąd. How to solve this?
    Kind Regards,
    Szymon

    Hi Bastian,
    I know it's been long time since your last reply, but I would like to show that the response has Content-Type set to UTF-8 but there still is wrong encoding.
    Kind Regards
    Szymon Lipnicki

  • Why JSTL change the encoding of response?

    Dear all,
    I use JSTL to display multiple language, and it can work fine. I also have a servlet to let the user to select the display language. All the request and response encoding is set to UTF-8, but I found that when user choose language to Chinese, and the servlet set the Locale to ZH, and then, all the jsp file which use JSTL to display message, the response is set to "GB2312"!
    Why this happen? because the response encoding is gb2312, so I cannot get the user inputted Chinese character! I want still reserve the UTF-8, how can I do that? I just found that webapp 2.4 can set locale-encoding-mapping, but I am using tomcat4.1.4, which does not support 2.4.
    Any advice will be appreciate.
    Lichunlin

    Hi, everyone,
    I find that the setLocale method of Reponse will change the response encoding automatically according to the locale, for example, the page encoding is UTF-8, but after I set locale to "CN"(china), the encoding is changed to "GB2312", but I still want it is "UTF-8".
    So I have to change the message tag source code, to change the encoding back after the setLocale method invoke, it is not so good, but it can work now.
    Could you have any other advice? Thank you very much.
    Lichunlin
    Dear all,
    I use JSTL to display multiple language, and it can
    work fine. I also have a servlet to let the user to
    select the display language. All the request and
    response encoding is set to UTF-8, but I found that
    when user choose language to Chinese, and the servlet
    set the Locale to ZH, and then, all the jsp file which
    use JSTL to display message, the response is set to
    "GB2312"!
    Why this happen? because the response encoding is
    gb2312, so I cannot get the user inputted Chinese
    character! I want still reserve the UTF-8, how can I
    do that? I just found that webapp 2.4 can set
    locale-encoding-mapping, but I am using tomcat4.1.4,
    which does not support 2.4.
    Any advice will be appreciate.
    Lichunlin

  • Response character encoding

    when i submit a form to a servlet, the response encoding defaults to ISO-8858-1 even though my jsp page's charset is all cp1256 and the -Dfile.encoding is set to cp1256. i know i can set the response encoding using respose.setCharacterEncoding("cp1256") etc but how do i change the default. Please help

    yep....
    It doesn't matter what the file.encoding is.. cuz it's not files, it's servlets.
    I'm not sure there's a way to set the default. I don't recall seeing any API method for doing that. One way I know is to use filters on all the pages. It's really somewhat sad that it's never been added to browsers to pass back the encoding of the page as a header to be processed automatically from the servlet container.

  • Over-riding Character encoding in JSP

    I have JSP which was precompiled under weblogic with no encoding.I want to change the encoding during run time using response or request Object.I am using filters before JSP's so the response encoding is not getting to JSP even though i try to set in the response by
              response.setContentType("text/html;SJIS") it is getting lost.So i tried to set in the request as an attribute and retreived in the JSP page directive.It did not work.
              The browser is not detecting my character encoding why?.Is there anything called static encoding from weblogic that is causing problem?.If it is, how would I turn off the static encoding from the weblogic programmatically in JSP so that browser detects correct encoding in the page directive dynamically.I even tried
              request.setCharacterEncoding("SJIS") which is japenese but it did not work.Any help would be appreciated.The encoding it shows in the browser by default is "UTF-8" even i though i send "SJIS" encoding in the request

    on the form processing page, you probably need to call request.setCharacterEncoding("UTF-8") (or whatever encoding you're using) before reading any values.
    Reply #14 of this post has some test page with Chinese which should work as is...
    http://forum.java.sun.com/thread.jspa?forumID=513&threadID=546863

  • IDE developing JSP And Hebrew  Encoding

    Hi.
    I�m using Sun One Studio 4 CE.
    I�m new Java Programmer.
    I create JSP that use Taglib and read XML file written in Hebrew (Encoding iso-8859-1);
    When I run the file on a Tomcat I have no problems.
    But when I run the file within the ide of Sun One Studio I get gibberish.
    So. Do you know where I cane change the character settings so It work the same?
    Thanks
    Shimon

    The default encodings specified by the JSP and Servlet spec are unfortunately no good for most of the world!
    There are two issues you need to understand: page encoding, vs response encoding.
    Page encoding defines what encoding was used to create a particular page (JSP, XML, HTML). Unless the page encoding is set correctly, the entity that reads the page (e.g. the JSP parser, the web container, or the web server) cannot understand the characters before they do anything with them.
    Response encoding defines what encoding is used when the server sends the HTTP response to the browser. This is actually a separate issue from page encoding. For example, a JSP could have the page encoding set correctly (so that the JSP parser can read it), but if the response encoding is not set correctly, then what goes to the browser is still gibberish.
    To set the page encoding of a JSP, use a page directive:
    <%@page pageEncoding="UTF-8"%>
    (UTF-8 will work in Studio, there is no need to pick another more specialized charset).
    In a HTML file or XML file, use an XML directive to set the page encoding. The XML directive will not work in JSP though.
    So now the parser can translate the JSP into a servlet. But that's not good enough, because we also have to produce a response that the browser can understand.
    To set the response encoding from a servlet, you can use
    response.setContentType("text/html;UTF-8")
    In J2EE 1.4, you can also use response.setCharacterEncoding("UTF-8");
    To set it from a JSP, use
    <%@page contentType="text/html;UTF-8"%>
    All modern web browsers understand UTF-8, so that is a safe encoding to pick for the response. (It is a good encoding at the page level too if you use Studio. If you use another tool for your JSPs and it prefers a different encoding, use that at the page level but stick to UTF-8 for the response unless you have wireless clients and know that you need something else).
    Note that this can only be set before any of the response is written. So if this JSP is included into another one, and the response buffer size has been exceeded, it won't work. So the response encoding must be set as early as possible.
    What if you have a servlet that forwards to a JSP? Well, if you consider how the response object works, you should only have to set it once and earlier is better, so the servlet controller would be the obvious place. However, in J2EE 1.3, the encoding model wasn't well spec'd out, so on some servers, even if you set the response in the servlet, the JSP will overwrite it with the default if you didn't specify the content type. So experiment and set it in both the servlet and the JSP if you have to.
    From J2EE 1.4, it's OK to set the response encoding once, it the servlet - the JSP container doesn't overwrite it anymore.
    Check out the following link for more on i18n in web apps:
    http://java.sun.com/developer/technicalArticles/Intl/MultilingualJSP/

  • Japanese Charecter Encoding

    Hi,
    My application is currently using the following configuration
    1..Weblogic Server 7.0 (running on Windows Machine with Japanese OS)
    2..JDK 1.3
    I am retriving some data from the database in my JSP(say JSP1).Some of this data
    is in Japanese.Now I form a URL using some of the Japanese Data and forward it to the
    next jsp(say JSP2).
    The Japanese data retrived in JSP1 appears fine on the Browse screen.However when in JSP2
    I try to get these paranmeters(in Japanese) from the request (i.e. request.getParameter(..)), they come up
    in mangled form.
    All the JSPs of my applications include the following page directive:-
    <%@page contentType="text/html; charset=Shift_JIS"%>
    Please help

    Hey,
    Thanks a lot for the help,it worked ( and sorry for the delay in the response).
    In the second jsp (JSP B), I have the following code
    request.setCharacterEncoding("Shift_JIS");
    strFile = request.getParameter("FileType");
    Although the code seem to be working I am not very clear about this logic please could you explain me the following points :-
    1..Why was there a specific need to setCharacterEncoding(), I had already set <%@page contentType="text/html; charset=Shift_JIS"%>
    in both the jsps, doesn't that imply that the response encoding and the request decoding be done using 'Shift_JIS'
    2..The same initial code (without addition of the line - request.setCharacterEncoding("Shift_JIS")) worked on my colleagues PC(he was NOT accessing my server though).How was that possible, are there any specific browser/server level setting which be set to default?
    3..In Internet Explorer,if you GO to 'Tools' -> 'Internet Options' -> 'Advanced' Tab ,there is an option ' Always send URLs as UTF-8' .
    What is the significance of this setting ?
    4..How would the browser encoding setting(under 'View' -> 'Encoding') , effect jsps, which are using a specific encoding?
    Thanking you in Anticipation

  • Character Encoding Problem RequestDispatcher

    Hi Friends;
    I have a servlet and I use
    RequestDispatcher dispatcher = request.getRequestDispatcher(page);
                   response.setContentType("text/html;charset=UTF-8");
                   request.setCharacterEncoding("UTF-8");
                   PrintWriter out = response.getWriter();
                   //request.setCharacterEncoding("utf-8");
                   try {
                        dispatcher.forward(request, response);
                   } catch (ServletException e) {
                        e.printStackTrace();
                   } catch (IOException e) {
                        e.printStackTrace();
    for forward page. But if i forward a page, this pages' encoding isnot working. But if i refresh page it works.
    How can i handle this encoding.
    Thanks replies

    Hi Eray,
    It really doesn't make any sense (exept in very specific, well, exceptional cases) to call setContentType and/or getWriter on the response object before doing a forward (neither does calling setCharacterEncoding on the request object usually makes sense);
    request.getRequestDispatcher(page).forward(request, response);
    should be sufficient. I assume you forward to a jsp page? In case you want to enforce the response encoding of the content of the jsp page to be UTF-8, you can use this page directive at the top of your jsp page:
    <%@ page contentType="text/html; charset=UTF-8" %>
    I don't know why it does work when you refresh the page, maybe your browser configuration is not correct (in IE: Page/View > Encoding > Auto-Select)?
    Kind regards,
    Sigiswald

  • Help needed with JSTL fmt:message encoding

    I'm using a greek resource bundle like
    <fmt:setLocale value="el"/>
    <fmt:setBundle basename="i18n.messages"/>
    I used UTF-8 for both the bundle file and JSP response encoding, but the values never prints out in the JSP response properly. If any non-english user can share some insight here, i'd really appreciate it...
    Thanks,
    Manos

    Have you considered using unicode for presentation. It might not be the prettiest way to do things, however, when I needed to present non-english characters. I would send them to JSP as a collection of unicode characters and than translate each one into character based on the desired locale.
    Hope it helps.

  • Intel GPU - OpenGL not working

    Hi guys,
    I've tried like everything I could find/think of I was able to get everything to work fine with the Nvidia (when I game I use this) but for some reason when I am using the Intel OpenGL just doesn't work...
    GPU's
    00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
    01:00.0 VGA compatible controller: NVIDIA Corporation GK107M [GeForce GT 650M] (rev ff)
    Xorg.0.log
    [ 27.497]
    X.Org X Server 1.15.2
    Release Date: 2014-06-27
    [ 27.497] X Protocol Version 11, Revision 0
    [ 27.497] Build Operating System: Linux 3.15.1-1-ARCH x86_64
    [ 27.497] Current Operating System: Linux bananas 3.15.5-2-ARCH #1 SMP PREEMPT Fri Jul 11 07:56:02 CEST 2014 x86_64
    [ 27.497] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=991fc256-24bc-4a42-87f9-5f032bc0da05 rw quiet rcutree.rcu_idle_gp_delay=1
    [ 27.497] Build Date: 27 June 2014 07:32:26PM
    [ 27.497]
    [ 27.497] Current version of pixman: 0.32.6
    [ 27.497] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 27.497] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 27.498] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Jul 27 22:08:43 2014
    [ 27.530] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 27.530] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 27.548] (==) No Layout section. Using the first Screen section.
    [ 27.549] (==) No screen section available. Using defaults.
    [ 27.549] (**) |-->Screen "Default Screen Section" (0)
    [ 27.549] (**) | |-->Monitor "<default monitor>"
    [ 27.549] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 27.549] (**) | |-->Device "Intel Graphics"
    [ 27.549] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 27.549] (==) Automatically adding devices
    [ 27.549] (==) Automatically enabling devices
    [ 27.549] (==) Automatically adding GPU devices
    [ 27.638] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 27.639] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 27.639] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 27.639] (II) Loader magic: 0x811cc0
    [ 27.639] (II) Module ABI versions:
    [ 27.639] X.Org ANSI C Emulation: 0.4
    [ 27.639] X.Org Video Driver: 15.0
    [ 27.639] X.Org XInput driver : 20.0
    [ 27.639] X.Org Server Extension : 8.0
    [ 27.639] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 27.641] (--) PCI:*(0:0:2:0) 8086:0166:1558:1550 rev 9, Mem @ 0xf7400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
    [ 27.641] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 27.641] Initializing built-in extension Generic Event Extension
    [ 27.641] Initializing built-in extension SHAPE
    [ 27.641] Initializing built-in extension MIT-SHM
    [ 27.641] Initializing built-in extension XInputExtension
    [ 27.641] Initializing built-in extension XTEST
    [ 27.641] Initializing built-in extension BIG-REQUESTS
    [ 27.641] Initializing built-in extension SYNC
    [ 27.641] Initializing built-in extension XKEYBOARD
    [ 27.641] Initializing built-in extension XC-MISC
    [ 27.642] Initializing built-in extension SECURITY
    [ 27.642] Initializing built-in extension XINERAMA
    [ 27.642] Initializing built-in extension XFIXES
    [ 27.642] Initializing built-in extension RENDER
    [ 27.642] Initializing built-in extension RANDR
    [ 27.642] Initializing built-in extension COMPOSITE
    [ 27.642] Initializing built-in extension DAMAGE
    [ 27.642] Initializing built-in extension MIT-SCREEN-SAVER
    [ 27.642] Initializing built-in extension DOUBLE-BUFFER
    [ 27.642] Initializing built-in extension RECORD
    [ 27.642] Initializing built-in extension DPMS
    [ 27.642] Initializing built-in extension Present
    [ 27.642] Initializing built-in extension DRI3
    [ 27.642] Initializing built-in extension X-Resource
    [ 27.642] Initializing built-in extension XVideo
    [ 27.642] Initializing built-in extension XVideo-MotionCompensation
    [ 27.642] Initializing built-in extension XFree86-VidModeExtension
    [ 27.642] Initializing built-in extension XFree86-DGA
    [ 27.642] Initializing built-in extension XFree86-DRI
    [ 27.642] Initializing built-in extension DRI2
    [ 27.642] (II) "glx" will be loaded by default.
    [ 27.642] (II) LoadModule: "dri2"
    [ 27.643] (II) Module "dri2" already built-in
    [ 27.643] (II) LoadModule: "glamoregl"
    [ 27.665] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 27.799] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 27.799] compiled for 1.15.0, module version = 0.6.0
    [ 27.799] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 27.799] (II) LoadModule: "glx"
    [ 27.799] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 27.809] (II) Module glx: vendor="X.Org Foundation"
    [ 27.809] compiled for 1.15.2, module version = 1.0.0
    [ 27.809] ABI class: X.Org Server Extension, version 8.0
    [ 27.809] (==) AIGLX enabled
    [ 27.809] Loading extension GLX
    [ 27.809] (II) LoadModule: "intel"
    [ 27.822] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 27.852] (II) Module intel: vendor="X.Org Foundation"
    [ 27.852] compiled for 1.15.2, module version = 2.99.912
    [ 27.852] Module class: X.Org Video Driver
    [ 27.852] ABI class: X.Org Video Driver, version 15.0
    [ 27.853] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 27.853] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    [ 27.853] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    [ 27.853] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    [ 27.853] (++) using VT number 1
    [ 27.854] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 27.854] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 27.854] (==) intel(0): RGB weight 888
    [ 27.854] (==) intel(0): Default visual is TrueColor
    [ 27.854] (**) intel(0): Option "AccelMethod" "glamor"
    [ 27.854] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
    [ 27.854] (**) intel(0): Relaxed fencing enabled
    [ 27.854] (**) intel(0): Wait on SwapBuffers? enabled
    [ 27.854] (**) intel(0): Triple buffering? enabled
    [ 27.854] (**) intel(0): Framebuffer tiled
    [ 27.854] (**) intel(0): Pixmaps tiled
    [ 27.854] (**) intel(0): 3D buffers tiled
    [ 27.854] (**) intel(0): SwapBuffers wait enabled
    [ 27.854] (==) intel(0): video overlay key set to 0x101fe
    [ 27.855] (II) intel(0): Output LVDS1 has no monitor section
    [ 27.855] (--) intel(0): found backlight control interface acpi_video0
    [ 27.856] (II) intel(0): Output VGA1 has no monitor section
    [ 27.856] (II) intel(0): Output HDMI1 has no monitor section
    [ 27.857] (II) intel(0): Output DP1 has no monitor section
    [ 27.857] (II) intel(0): EDID for output LVDS1
    [ 27.857] (II) intel(0): Manufacturer: CMO Model: 1720 Serial#: 0
    [ 27.857] (II) intel(0): Year: 2011 Week: 2
    [ 27.857] (II) intel(0): EDID Version: 1.3
    [ 27.857] (II) intel(0): Digital Display Input
    [ 27.857] (II) intel(0): Max Image Size [cm]: horiz.: 38 vert.: 21
    [ 27.857] (II) intel(0): Gamma: 2.20
    [ 27.857] (II) intel(0): No DPMS capabilities specified
    [ 27.857] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 27.857] (II) intel(0): First detailed timing is preferred mode
    [ 27.857] (II) intel(0): redX: 0.640 redY: 0.333 greenX: 0.303 greenY: 0.613
    [ 27.857] (II) intel(0): blueX: 0.154 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 27.857] (II) intel(0): Manufacturer's mask: 0
    [ 27.857] (II) intel(0): Supported detailed timing:
    [ 27.857] (II) intel(0): clock: 138.7 MHz Image Size: 382 x 215 mm
    [ 27.857] (II) intel(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 27.857] (II) intel(0): v_active: 1080 v_sync: 1083 v_sync_end 1088 v_blanking: 1111 v_border: 0
    [ 27.857] (II) intel(0): N173HGE-L11
    [ 27.857] (II) intel(0): CMO
    [ 27.857] (II) intel(0): N173HGE-L11
    [ 27.857] (II) intel(0): EDID (in hex):
    [ 27.857] (II) intel(0): 00ffffffffffff000daf201700000000
    [ 27.857] (II) intel(0): 02150103802615780ad895a3554d9d27
    [ 27.857] (II) intel(0): 0f505400000001010101010101010101
    [ 27.857] (II) intel(0): 0101010101012e3680a070381f403020
    [ 27.857] (II) intel(0): 35007ed710000018000000fe004e3137
    [ 27.857] (II) intel(0): 334847452d4c31310a20000000fe0043
    [ 27.857] (II) intel(0): 4d4f0a202020202020202020000000fe
    [ 27.857] (II) intel(0): 004e3137334847452d4c31310a20006e
    [ 27.857] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 27.857] (II) intel(0): Printing probed modes for output LVDS1
    [ 27.857] (II) intel(0): Modeline "1920x1080"x60.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 27.857] (II) intel(0): Modeline "1400x1050"x60.0 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
    [ 27.857] (II) intel(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
    [ 27.857] (II) intel(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz d)
    [ 27.857] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
    [ 27.857] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
    [ 27.857] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
    [ 27.857] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
    [ 27.859] (II) intel(0): EDID for output VGA1
    [ 27.859] (II) intel(0): EDID for output HDMI1
    [ 27.859] (II) intel(0): EDID for output DP1
    [ 27.859] (II) intel(0): Output LVDS1 connected
    [ 27.859] (II) intel(0): Output VGA1 disconnected
    [ 27.859] (II) intel(0): Output HDMI1 disconnected
    [ 27.859] (II) intel(0): Output DP1 disconnected
    [ 27.859] (II) intel(0): Using exact sizes for initial modes
    [ 27.859] (II) intel(0): Output LVDS1 using initial mode 1920x1080
    [ 27.859] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 27.859] (II) intel(0): Kernel page flipping support detected, enabling
    [ 27.859] (==) intel(0): DPI set to (96, 96)
    [ 27.859] (II) Loading sub module "fb"
    [ 27.859] (II) LoadModule: "fb"
    [ 27.859] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 27.878] (II) Module fb: vendor="X.Org Foundation"
    [ 27.878] compiled for 1.15.2, module version = 1.0.0
    [ 27.878] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 27.878] (II) Loading sub module "glamoregl"
    [ 27.878] (II) LoadModule: "glamoregl"
    [ 27.878] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 27.878] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 27.878] compiled for 1.15.0, module version = 0.6.0
    [ 27.878] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 27.878] (II) glamor: OpenGL accelerated X.org driver based.
    [ 28.008] (II) glamor: EGL version 1.4 (DRI2):
    [ 28.077] (II) intel(0): glamor detected, initialising egl layer.
    [ 28.077] (II) Loading sub module "dri2"
    [ 28.077] (II) LoadModule: "dri2"
    [ 28.077] (II) Module "dri2" already built-in
    [ 28.077] (II) Loading sub module "dri3"
    [ 28.077] (II) LoadModule: "dri3"
    [ 28.078] (WW) Warning, couldn't open module dri3
    [ 28.078] (II) UnloadModule: "dri3"
    [ 28.078] (II) Unloading dri3
    [ 28.078] (EE) intel: Failed to load module "dri3" (module does not exist, 0)
    [ 28.078] (==) Depth 24 pixmap format is 32 bpp
    [ 28.078] (II) intel(0): Allocated new frame buffer 1920x1080 stride 7680, tiled
    [ 28.093] (II) UXA(0): Driver registered support for the following operations:
    [ 28.093] (II) solid
    [ 28.093] (II) copy
    [ 28.093] (II) composite (RENDER acceleration)
    [ 28.093] (II) put_image
    [ 28.093] (II) get_image
    [ 28.093] (II) intel(0): [DRI2] Setup complete
    [ 28.093] (II) intel(0): [DRI2] DRI driver: i965
    [ 28.093] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 28.093] (==) intel(0): Backing store enabled
    [ 28.093] (==) intel(0): Silken mouse enabled
    [ 28.093] (II) intel(0): Initializing HW Cursor
    [ 28.252] (II) intel(0): Use GLAMOR acceleration.
    [ 28.252] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 28.267] (==) intel(0): DPMS enabled
    [ 28.267] (==) intel(0): Intel XvMC decoder enabled
    [ 28.267] (II) intel(0): Set up textured video
    [ 28.267] (II) intel(0): Set up textured video using glamor
    [ 28.267] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 28.267] (II) intel(0): DRI2: Enabled
    [ 28.267] (II) intel(0): DRI3: Disabled
    [ 28.267] (==) intel(0): hotplug detection: "enabled"
    [ 28.276] (--) RandR disabled
    [ 28.292] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 28.292] (II) AIGLX: enabled GLX_ARB_create_context
    [ 28.292] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 28.292] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 28.292] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 28.292] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 28.292] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 28.292] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 28.292] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 28.292] (II) AIGLX: enabled GLX_ARB_create_context_robustness
    [ 28.292] (II) AIGLX: Loaded and initialized i965
    [ 28.292] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 28.294] (II) intel(0): Setting screen physical size to 508 x 285
    [ 28.778] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 28.778] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 28.778] (II) LoadModule: "evdev"
    [ 28.778] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 28.797] (II) Module evdev: vendor="X.Org Foundation"
    [ 28.797] compiled for 1.15.1, module version = 2.9.0
    [ 28.797] Module class: X.Org XInput Driver
    [ 28.797] ABI class: X.Org XInput driver, version 20.0
    [ 28.797] (II) Using input driver 'evdev' for 'Power Button'
    [ 28.797] (**) Power Button: always reports core events
    [ 28.797] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 28.797] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 28.797] (--) evdev: Power Button: Found keys
    [ 28.797] (II) evdev: Power Button: Configuring as keyboard
    [ 28.797] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 28.797] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 28.797] (**) Option "xkb_rules" "evdev"
    [ 28.797] (**) Option "xkb_model" "pc104"
    [ 28.797] (**) Option "xkb_layout" "us"
    [ 28.834] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
    [ 28.834] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 28.834] (II) Using input driver 'evdev' for 'Video Bus'
    [ 28.834] (**) Video Bus: always reports core events
    [ 28.834] (**) evdev: Video Bus: Device: "/dev/input/event5"
    [ 28.834] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 28.834] (--) evdev: Video Bus: Found keys
    [ 28.834] (II) evdev: Video Bus: Configuring as keyboard
    [ 28.834] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input5/event5"
    [ 28.834] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 28.834] (**) Option "xkb_rules" "evdev"
    [ 28.834] (**) Option "xkb_model" "pc104"
    [ 28.834] (**) Option "xkb_layout" "us"
    [ 28.835] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
    [ 28.835] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 28.835] (II) Using input driver 'evdev' for 'Video Bus'
    [ 28.835] (**) Video Bus: always reports core events
    [ 28.835] (**) evdev: Video Bus: Device: "/dev/input/event4"
    [ 28.835] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 28.835] (--) evdev: Video Bus: Found keys
    [ 28.835] (II) evdev: Video Bus: Configuring as keyboard
    [ 28.835] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1a/LNXVIDEO:00/input/input4/event4"
    [ 28.835] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 28.835] (**) Option "xkb_rules" "evdev"
    [ 28.835] (**) Option "xkb_model" "pc104"
    [ 28.835] (**) Option "xkb_layout" "us"
    [ 28.836] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 28.836] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 28.836] (II) Using input driver 'evdev' for 'Power Button'
    [ 28.836] (**) Power Button: always reports core events
    [ 28.836] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 28.836] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 28.836] (--) evdev: Power Button: Found keys
    [ 28.836] (II) evdev: Power Button: Configuring as keyboard
    [ 28.836] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
    [ 28.836] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
    [ 28.836] (**) Option "xkb_rules" "evdev"
    [ 28.836] (**) Option "xkb_model" "pc104"
    [ 28.836] (**) Option "xkb_layout" "us"
    [ 28.837] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
    [ 28.837] (II) No input driver specified, ignoring this device.
    [ 28.837] (II) This device may have been added with another device file.
    [ 28.837] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
    [ 28.837] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 28.837] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 28.837] (**) Sleep Button: always reports core events
    [ 28.837] (**) evdev: Sleep Button: Device: "/dev/input/event1"
    [ 28.837] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 28.837] (--) evdev: Sleep Button: Found keys
    [ 28.837] (II) evdev: Sleep Button: Configuring as keyboard
    [ 28.837] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
    [ 28.837] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 10)
    [ 28.837] (**) Option "xkb_rules" "evdev"
    [ 28.837] (**) Option "xkb_model" "pc104"
    [ 28.837] (**) Option "xkb_layout" "us"
    [ 28.838] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 28.838] (II) config/udev: Adding input device 2.4GHz 2way RF Receiver (/dev/input/event7)
    [ 28.838] (**) 2.4GHz 2way RF Receiver: Applying InputClass "evdev pointer catchall"
    [ 28.838] (**) 2.4GHz 2way RF Receiver: Applying InputClass "evdev keyboard catchall"
    [ 28.838] (II) Using input driver 'evdev' for '2.4GHz 2way RF Receiver'
    [ 28.838] (**) 2.4GHz 2way RF Receiver: always reports core events
    [ 28.838] (**) evdev: 2.4GHz 2way RF Receiver: Device: "/dev/input/event7"
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Vendor 0x1bcf Product 0x53e
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found 12 mouse buttons
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found scroll wheel(s)
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found relative axes
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found x and y relative axes
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found absolute axes
    [ 28.838] (II) evdev: 2.4GHz 2way RF Receiver: Forcing absolute x/y axes to exist.
    [ 28.838] (--) evdev: 2.4GHz 2way RF Receiver: Found keys
    [ 28.839] (II) evdev: 2.4GHz 2way RF Receiver: Configuring as mouse
    [ 28.839] (II) evdev: 2.4GHz 2way RF Receiver: Configuring as keyboard
    [ 28.839] (II) evdev: 2.4GHz 2way RF Receiver: Adding scrollwheel support
    [ 28.839] (**) evdev: 2.4GHz 2way RF Receiver: YAxisMapping: buttons 4 and 5
    [ 28.839] (**) evdev: 2.4GHz 2way RF Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 28.839] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:1BCF:053E.0001/input/input11/event7"
    [ 28.839] (II) XINPUT: Adding extended input device "2.4GHz 2way RF Receiver" (type: KEYBOARD, id 11)
    [ 28.839] (**) Option "xkb_rules" "evdev"
    [ 28.839] (**) Option "xkb_model" "pc104"
    [ 28.839] (**) Option "xkb_layout" "us"
    [ 28.839] (II) evdev: 2.4GHz 2way RF Receiver: initialized for relative axes.
    [ 28.839] (WW) evdev: 2.4GHz 2way RF Receiver: ignoring absolute axes.
    [ 28.839] (**) 2.4GHz 2way RF Receiver: (accel) keeping acceleration scheme 1
    [ 28.839] (**) 2.4GHz 2way RF Receiver: (accel) acceleration profile 0
    [ 28.839] (**) 2.4GHz 2way RF Receiver: (accel) acceleration factor: 2.000
    [ 28.839] (**) 2.4GHz 2way RF Receiver: (accel) acceleration threshold: 4
    [ 28.840] (II) config/udev: Adding input device 2.4GHz 2way RF Receiver (/dev/input/mouse0)
    [ 28.840] (II) No input driver specified, ignoring this device.
    [ 28.840] (II) This device may have been added with another device file.
    [ 28.840] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event9)
    [ 28.840] (II) No input driver specified, ignoring this device.
    [ 28.840] (II) This device may have been added with another device file.
    [ 28.840] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event10)
    [ 28.840] (II) No input driver specified, ignoring this device.
    [ 28.840] (II) This device may have been added with another device file.
    [ 28.841] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event11)
    [ 28.841] (II) No input driver specified, ignoring this device.
    [ 28.841] (II) This device may have been added with another device file.
    [ 28.841] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event12)
    [ 28.841] (II) No input driver specified, ignoring this device.
    [ 28.841] (II) This device may have been added with another device file.
    [ 28.841] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event13)
    [ 28.841] (II) No input driver specified, ignoring this device.
    [ 28.841] (II) This device may have been added with another device file.
    [ 28.842] (II) config/udev: Adding input device BisonCam, NB Pro (/dev/input/event15)
    [ 28.842] (**) BisonCam, NB Pro: Applying InputClass "evdev keyboard catchall"
    [ 28.842] (II) Using input driver 'evdev' for 'BisonCam, NB Pro'
    [ 28.842] (**) BisonCam, NB Pro: always reports core events
    [ 28.842] (**) evdev: BisonCam, NB Pro: Device: "/dev/input/event15"
    [ 28.842] (--) evdev: BisonCam, NB Pro: Vendor 0x5986 Product 0x401
    [ 28.842] (--) evdev: BisonCam, NB Pro: Found keys
    [ 28.842] (II) evdev: BisonCam, NB Pro: Configuring as keyboard
    [ 28.842] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.6/4-1.6:1.0/input/input22/event15"
    [ 28.842] (II) XINPUT: Adding extended input device "BisonCam, NB Pro" (type: KEYBOARD, id 12)
    [ 28.842] (**) Option "xkb_rules" "evdev"
    [ 28.842] (**) Option "xkb_model" "pc104"
    [ 28.842] (**) Option "xkb_layout" "us"
    [ 28.843] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event6)
    [ 28.843] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 28.843] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 28.843] (**) AT Translated Set 2 keyboard: always reports core events
    [ 28.843] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event6"
    [ 28.843] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 28.843] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 28.843] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 28.843] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input6/event6"
    [ 28.843] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 13)
    [ 28.843] (**) Option "xkb_rules" "evdev"
    [ 28.843] (**) Option "xkb_model" "pc104"
    [ 28.843] (**) Option "xkb_layout" "us"
    [ 28.844] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event14)
    [ 28.844] (**) ETPS/2 Elantech Touchpad: Applying InputClass "evdev touchpad catchall"
    [ 28.844] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
    [ 28.844] (**) ETPS/2 Elantech Touchpad: Applying InputClass "Default clickpad buttons"
    [ 28.844] (II) LoadModule: "synaptics"
    [ 28.844] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 28.853] (II) Module synaptics: vendor="X.Org Foundation"
    [ 28.853] compiled for 1.15.1, module version = 1.8.0
    [ 28.853] Module class: X.Org XInput Driver
    [ 28.853] ABI class: X.Org XInput driver, version 20.0
    [ 28.853] (II) Using input driver 'synaptics' for 'ETPS/2 Elantech Touchpad'
    [ 28.853] (**) ETPS/2 Elantech Touchpad: always reports core events
    [ 28.853] (**) Option "Device" "/dev/input/event14"
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: x-axis range 0 - 2436 (res 0)
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: y-axis range 0 - 1044 (res 0)
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: pressure range 0 - 255
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: finger width range 0 - 15
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: buttons: left right double triple
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: Vendor 0x2 Product 0xe
    [ 28.910] (**) Option "TapButton1" "1"
    [ 28.910] (**) Option "TapButton2" "2"
    [ 28.910] (**) Option "TapButton3" "3"
    [ 28.910] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [ 28.910] (**) ETPS/2 Elantech Touchpad: always reports core events
    [ 28.936] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input14/event14"
    [ 28.936] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD, id 14)
    [ 28.936] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MinSpeed is now constant deceleration 2.5
    [ 28.936] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MaxSpeed is now 1.75
    [ 28.937] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) AccelFactor is now 0.075
    [ 28.937] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
    [ 28.937] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 1
    [ 28.937] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
    [ 28.937] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
    [ 28.937] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
    [ 28.937] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse1)
    [ 28.938] (**) ETPS/2 Elantech Touchpad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 28.938] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
    [ 28.938] (II) No input driver specified, ignoring this device.
    [ 28.938] (II) This device may have been added with another device file.
    [ 41.685] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 42.486] (II) intel(0): Printing DDC gathered Modelines:
    [ 42.486] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 62.731] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 62.731] (II) intel(0): Printing DDC gathered Modelines:
    [ 62.731] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 62.734] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 62.734] (II) intel(0): Printing DDC gathered Modelines:
    [ 62.734] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 63.746] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 63.746] (II) intel(0): Printing DDC gathered Modelines:
    [ 63.746] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 63.748] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 63.748] (II) intel(0): Printing DDC gathered Modelines:
    [ 63.748] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 64.053] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 64.053] (II) intel(0): Printing DDC gathered Modelines:
    [ 64.053] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 64.055] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 64.055] (II) intel(0): Printing DDC gathered Modelines:
    [ 64.055] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    [ 64.654] (II) intel(0): EDID vendor "CMO", prod id 5920
    [ 64.654] (II) intel(0): Printing DDC gathered Modelines:
    [ 64.654] (II) intel(0): Modeline "1920x1080"x0.0 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync (66.7 kHz eP)
    pacman -Q
    a52dec 0.7.4-8
    aalib 1.4rc5-10
    abs 2.4.4-2
    acetoneiso2 2.3-6
    acl 2.2.52-2
    advancecomp 1.19-3
    akonadi 1.12.1-2
    al-anvar 0.6.0-2
    alsa-lib 1.0.28-1
    alsa-plugins 1.0.28-1
    alsa-utils 1.0.28-1
    apache 2.4.10-1
    apr 1.5.1-1
    apr-util 1.5.3-4
    archlinux-keyring 20140220-1
    arista 0.9.7-8
    art-sharp 2.24.2-4
    aspell 0.60.6.1-2
    aspell-en 7.1-3
    at-spi2-atk 2.12.1-1
    at-spi2-core 2.12.0-1
    atk 2.12.0-1
    atkmm 2.22.7-1
    attica 0.4.2-1
    attica-qt5 5.0.0-1
    attr 2.4.47-1
    aura-bin 1.2.3.4-1
    autoconf 2.69-2
    automake 1.14.1-1
    automake-1.11 1.11.6-2
    automoc4 0.9.88-5
    avahi 0.6.31-12
    babl 0.1.10-2
    bash 4.3.018-3
    bash-completion 2.1-5
    bbswitch 0.8-12
    bc 1.06.95-1
    binutils 2.24-6
    bison 3.0.2-1
    boost 1.55.0-6
    boost-libs 1.55.0-6
    brasero 3.11.3-1
    bumblebee 3.2.1-3
    burpsuite 1.6-2
    bzip2 1.0.6-5
    bzr 2.6.0-1
    ca-certificates 20140325-1
    ca-certificates-java 20140324-3
    cabextract 1.4-2
    cairo 1.12.16-2
    cairo-perl 1.104-2
    cairomm 1.10.0-3
    cantarell-fonts 0.0.15-1
    cdparanoia 10.2-5
    cdrdao 1.2.3-7
    cdrkit 1.1.11-3
    celt 0.11.3-2
    chromaprint 1.1-1
    chromium 36.0.1985.125-1
    chromo-erectus-icon-themes 1.2-1
    cifs-utils 6.3-2
    clementine 1.2.3-1
    clipit-git 20120506-1
    cln 1.3.3-2
    cloog 0.18.1-3
    clucene 2.3.3.4-8
    cmake 3.0.0-3
    colord 1.2.1-1
    compiz-core-bzr 3874-9
    compositeproto 0.4.2-3
    coreutils 8.23-1
    cracklib 2.9.0-2
    cratos-lion-icons 2.0-3
    cryptsetup 1.6.5-1
    cups 1.7.4-1
    cups-filters 1.0.54-1
    curl 7.37.1-1
    damageproto 1.2.1-3
    db 5.3.28-1
    dbus 1.8.6-1
    dbus-glib 0.102-1
    dbus-sharp 0.7.0-5
    dbus-sharp-glib 0.5.0-5
    dconf 0.20.0-1
    debootstrap 1.0.60~bpo70+1-1
    desktop-file-utils 0.22-1
    device-mapper 2.02.106-2
    dhcpcd 6.4.2-1
    dialog 1:1.2_20140219-1
    diffutils 3.3-2
    dirmngr 1.1.1-2
    djvulibre 3.5.25.3-2
    dkms 2.2.0.3-14
    dmg2img 1.6.5-3
    dmxproto 2.3.1-3
    dnssec-anchors 20140629-1
    dnsutils 9.9.2.P2-2
    docbook-xml 4.5-6
    docbook-xsl 1.78.1-1
    docky 2.2.0-1
    dosbox 0.74-6
    dosfstools 3.0.26-1
    dotconf 1.3-4
    doxygen 1.8.7-1
    dri2proto 2.8-2
    dri3proto 1.0-1
    dvd+rw-tools 7.1-5
    e2fsprogs 1.42.10-1
    eigen 3.2.1-1
    elementary-icon-theme 3.1-4
    elfutils 0.159-1
    emerald-themes 0.6.0-4
    emerald0.9 0.9.5-9
    enca 1.15-1
    enchant 1.6.0-5
    evince 3.12.1-1
    evolution 3.12.4-1
    evolution-data-server 3.12.4-1
    evolution-ews 3.12.4-1
    evolution-tray-arch 20130317-1
    exempi 2.2.1-2
    exiv2 0.24-1
    exo 0.10.2-2
    expac 3-1
    expat 2.1.0-3
    ext3grep 0.10.2-3
    extundelete 0.2.4-2
    faac 1.28-5
    faad2 2.7-4
    faenza-icon-theme 1.3.1-3
    faience-icon-theme 0.5.1-3
    fakeroot 1.20-1
    farstream-0.1 0.1.2-4
    ffmpeg 1:2.3-1
    ffmpeg-compat 1:0.10.13-1
    fftw 3.3.4-1
    file 5.19-1
    file-roller 3.12.2-1
    filesystem 2014.07-1
    filezilla 3.8.1-1
    finch 2.10.9-2
    findmyhash 1.1.2-3
    findutils 4.4.2-6
    firefox 31.0-1
    fixesproto 5.0-3
    flac 1.3.0-3
    flashplugin 11.2.202.394-1
    flex 2.5.39-1
    fluidsynth 1.1.6-3
    fondu 060102-4
    font-misc-ethiopic 1.0.3-1
    fontconfig 2.11.1-1
    fontconfig-infinality-git 101.91eb8e6-1
    fontforge 20140101-3
    fontsproto 2.1.3-1
    freeglut 2.8.1-1
    freerdp-git 1.2.0.beta1.android7.r108.g9e1793c-1
    freetype2-infinality 2.4.12-2
    frei0r-plugins 1.4-2
    fribidi 0.19.6-1
    fuse 2.9.3-2
    fuse-exfat 1.1.0-1
    fuseiso 20070708-5
    gamin 0.1.10-8
    garcon 0.2.1-1
    gavl 1.4.0-2
    gawk 4.1.1-1
    gc 7.4.2-1
    gcc-libs-multilib 4.9.1-1
    gcc-multilib 4.9.1-1
    gconf 3.2.6-3
    gconf-editor 3.0.1-3
    gconf-perl 1.044-9
    gconf-sharp 2.24.2-4
    gconf-sharp-peditors 2.24.2-4
    gcr 3.12.2-1
    gd 2.1.0-2
    gdb 7.7.1-1
    gdbm 1.11-1
    gdk-pixbuf2 2.30.8-1
    gegl 0.2.0-11
    gendesk 0.6.2-1
    geoclue2 2.1.8-2
    gettext 0.19.1-1
    gggooglescan 0.4-1
    ghostscript 9.14-1
    giflib 5.1.0-1
    gimp 2.8.10-1
    gio-sharp 0.3-2
    git 2.0.3-1
    gkeyfile-sharp 0.1-3
    gksu 2.0.2-5
    glamor-egl 0.6.0-1
    glew 1.10.0-2
    glib-networking 2.40.1-1
    glib-perl 1.305-1
    glib2 2.40.0-1
    glibc 2.19-5
    glibmm 2.40.0-1
    glproto 1.4.17-1
    glu 9.0.0-3
    gmime 2.6.20-2
    gmp 6.0.0-1
    gnome-calculator 3.12.3-1
    gnome-common 3.12.0-1
    gnome-desktop 1:3.12.2-1
    gnome-desktop2 2.32.1-3
    gnome-doc-utils 0.20.10-2
    gnome-icon-theme 3.12.0-2
    gnome-icon-theme-symbolic 3.12.0-2
    gnome-keyring 3.12.2-1
    gnome-keyring-sharp 1.0.2-5
    gnome-mime-data 2.18.0-7
    gnome-online-accounts 3.12.3-1
    gnome-perl 1.045-2
    gnome-screensaver 3.6.1-8
    gnome-sharp 2.24.2-4
    gnome-themes-standard 3.12.0-1
    gnome-vfs 2.24.4-8
    gnome-vfs-perl 1.082-2
    gnome-vfs-sharp 2.24.2-4
    gnomecanvas-perl 1.002-12
    gnu-netcat 0.7.1-5
    gnupg 2.0.25-1
    gnutls 3.3.6-1
    gobject-introspection 1.40.0-1
    goocanvas1 1.0.0-3
    gparted-git 0.19.0.4.g0fcfd18-1
    gpgme 1.5.0-1
    gpm 1.20.7-4
    grantlee 0.4.0-1
    graphite 1:1.2.4-1
    graphviz 2.36.0-3
    grep 2.20-1
    groff 1.22.2-6
    grub 1:2.02.beta2-4
    gsettings-desktop-schemas 3.12.2-1
    gsfonts 1.0.7pre44-4
    gsm 1.0.13-7
    gst-plugins-bad 1.4.0-1
    gst-plugins-base 1.4.0-1
    gst-plugins-base-libs 1.4.0-1
    gst-plugins-good 1.4.0-1
    gst-plugins-ugly 1.4.0-1
    gstreamer 1.4.0-1
    gstreamer0.10 0.10.36-4
    gstreamer0.10-bad 0.10.23-8
    gstreamer0.10-bad-plugins 0.10.23-8
    gstreamer0.10-base 0.10.36-3
    gstreamer0.10-base-plugins 0.10.36-3
    gstreamer0.10-ffmpeg 0.10.13-2
    gstreamer0.10-good 0.10.31-6
    gstreamer0.10-good-plugins 0.10.31-6
    gstreamer0.10-python 0.10.22-2
    gstreamer0.10-ugly 0.10.19-11
    gstreamer0.10-ugly-plugins 0.10.19-11
    gtest 1.7.0-1
    gtk-doc 1.20-1
    gtk-engines 2.21.0-2
    gtk-recordmydesktop 0.3.8-7
    gtk-sharp-2 2.12.22-1
    gtk-update-icon-cache 2.24.24-1
    gtk2 2.24.24-1
    gtk2-perl 1.2492-1
    gtk2-xfce-engine 3.0.1-2
    gtk3 3.12.2-1
    gtk3-xfce-engine 3.0.1-2
    gtkglext 1.2.0-10
    gtkhtml4 4.8.3-1
    gtkimageview 1.6.4-4
    gtkmm 2.24.4-1
    gtkmm3 3.12.0-1
    gtksourceview3 3.12.2-1
    gtkspell 2.0.16-3
    gtkspell3 3.0.6-1
    gts 0.7.6-3
    guifications 2.16-3
    guile 2.0.11-1
    gvfs 1.20.2-1
    gzip 1.6-1
    harfbuzz 0.9.32-1
    harfbuzz-icu 0.9.32-1
    hash-identifier 1.1-2
    hashcat 0.47-2
    hicolor-icon-theme 0.13-1
    hspell 1.2-2
    htop-blueweb 1.0.3-1
    hunspell 1.3.3-1
    hunspell-en-base 7.1-2
    hwids 20140602-1
    hyphen 2.8.7-2
    iana-etc 2.30-4
    icu 53.1-1
    id3 0.78-4
    idnkit 1.0-3
    ilmbase 2.1.0-1
    imagemagick 6.8.9.5-1
    imlib2 1.4.6-3
    inetutils 1.9.2-1
    iniparser 3.1-4
    inputproto 2.3.1-1
    intel-dri 10.2.4-1
    intel-tbb 4.2_20140601-1
    intltool 0.50.2-2
    iphoneanalyzer 2.1.0-1
    iproute2 3.14.0-1
    iptables 1.4.21-1
    iputils 20121221-3
    ipw2200-fw 3.1-5
    isl 0.13-1
    iso-codes 3.52-1
    jack 0.124.1-1
    jansson 2.6-1
    jasper 1.900.1-10
    jdk7-openjdk 7.u65_2.5.1-3
    jfsutils 1.1.15-4
    jpegoptim 1.4.1-1
    jre7-openjdk 7.u65_2.5.1-3
    jre7-openjdk-headless 7.u65_2.5.1-3
    js17 17.0.0-1
    jshon 20131105-1
    json-c 0.12-2
    json-glib 1.0.2-1
    jynx2 2.0-1
    kactivities-frameworks 5.0.0-1
    karchive 5.0.0-1
    kauth 5.0.0-1
    kbd 2.0.1-1
    kbookmarks 5.0.0-1
    kbproto 1.0.6-2
    kcodecs 5.0.0-1
    kcompletion 5.0.0-1
    kconfig 5.0.0-1
    kconfigwidgets 5.0.0-1
    kcoreaddons 5.0.0-1
    kcrash 5.0.0-1
    kdbusaddons 5.0.0-1
    kde-base-artwork 4.13.3-1
    kdebase-runtime 4.13.3-1
    kdebase-workspace 4.11.11-1
    kdelibs 4.13.3-1
    kdenlive-git v0.9.8.r28.g190f218-1
    kdepim-runtime 4.13.3-1
    kdepimlibs 4.13.3-1
    keyutils 1.5.9-1
    kglobalaccel 5.0.0-1
    kguiaddons 5.0.0-1
    ki18n 5.0.0-1
    kiconthemes 5.0.0-1
    kio 5.0.0-1
    kitemviews 5.0.0-1
    kjobwidgets 5.0.0-1
    kmod 18-1
    knotifications 5.0.0-1
    krb5 1.12.1-1
    kservice 5.0.0-1
    ktextwidgets 5.0.0-1
    kwallet 5.0.0-1
    kwidgetsaddons 5.0.0-1
    kwindowsystem 5.0.0-1
    kxmlgui 5.0.0-1
    ladspa 1.13-5
    lame 3.99.5-2
    lcms 1.19-5
    lcms2 2.6-1
    ldb 1.1.16-1
    ldns 1.6.17-1
    less 458-1
    lib32-acl 2.2.52-2
    lib32-alsa-lib 1.0.28-1
    lib32-alsa-plugins 1.0.28-1
    lib32-atk 2.12.0-1
    lib32-attr 2.4.47-1
    lib32-bzip2 1.0.6-2
    lib32-cairo 1.12.16-1
    lib32-db 5.3.28-1
    lib32-e2fsprogs 1.42.11-1
    lib32-elfutils 0.159-1
    lib32-expat 2.1.0-2
    lib32-flac 1.3.0-1
    lib32-fontconfig 2.11.1-1
    lib32-freeglut 2.8.1-1
    lib32-freetype2 2.5.3-1
    lib32-gcc-libs 4.9.1-1
    lib32-gdk-pixbuf2 2.30.8-1
    lib32-gettext 0.19.1-1
    lib32-giflib 5.1.0-1
    lib32-glew 1.10.0-1
    lib32-glib2 2.40.0-1
    lib32-glibc 2.19-5
    lib32-glu 9.0.0-2
    lib32-gmp 6.0.0-1
    lib32-gnutls 3.3.6-1
    lib32-gstreamer0.10 0.10.36-3
    lib32-gstreamer0.10-base 0.10.36-5
    lib32-gtk2 2.24.24-1
    lib32-harfbuzz 0.9.32-1
    lib32-icu 53.1-1
    lib32-intel-dri 10.2.4-1
    lib32-jack 0.124.1-1
    lib32-json-c 0.12-1
    lib32-keyutils 1.5.9-1
    lib32-krb5 1.12.1-1
    lib32-lcms2 2.6-1
    lib32-libaio 0.3.109-6
    lib32-libao 1.2.0-1
    lib32-libasyncns 0.8-7
    lib32-libcanberra 0.30-4
    lib32-libcap 2.24-1
    lib32-libcl 1.1-1
    lib32-libcups 1.7.4-1
    lib32-libdbus 1.8.6-1
    lib32-libdrm 2.4.54-1
    lib32-libffi 3.1-1
    lib32-libgcrypt 1.6.1-1
    lib32-libgpg-error 1.13-1
    lib32-libice 1.0.9-1
    lib32-libjpeg-turbo 1.3.1-1
    lib32-libldap 2.4.39-1
    lib32-libltdl 2.4.2-14
    lib32-libmng 2.0.2-1
    lib32-libogg 1.3.1-1
    lib32-libpciaccess 0.13.2-1
    lib32-libpng 1.6.12-1
    lib32-libpulse 5.0-1
    lib32-libsamplerate 0.1.8-2
    lib32-libsm 1.2.2-1
    lib32-libsndfile 1.0.25-3
    lib32-libtasn1 3.6-1
    lib32-libtiff 4.0.3-2
    lib32-libtxc_dxtn 1.0.1-5
    lib32-libvdpau 0.8-1
    lib32-libvorbis 1.3.4-1
    lib32-libx11 1.6.2-1
    lib32-libxau 1.0.8-1
    lib32-libxcb 1.10-3
    lib32-libxcomposite 0.4.4-2
    lib32-libxcursor 1.1.14-1
    lib32-libxdamage 1.1.4-2
    lib32-libxdmcp 1.1.1-2
    lib32-libxext 1.3.3-1
    lib32-libxfixes 5.0.1-1
    lib32-libxft 2.3.2-1
    lib32-libxi 1.7.4-1
    lib32-libxinerama 1.1.3-1
    lib32-libxml2 2.9.1-1
    lib32-libxmu 1.1.2-1
    lib32-libxrandr 1.4.2-1
    lib32-libxrender 0.9.8-1
    lib32-libxshmfence 1.1-1
    lib32-libxslt 1.1.28-2
    lib32-libxss 1.2.2-2
    lib32-libxt 1.1.4-1
    lib32-libxtst 1.2.2-1
    lib32-libxv 1.0.10-1
    lib32-libxxf86vm 1.1.3-1
    lib32-llvm-libs 3.4.2-1
    lib32-mesa 10.2.4-1
    lib32-mesa-libgl 10.2.4-1
    lib32-mpg123 1.20.0-1
    lib32-ncurses 5.9-3
    lib32-nettle 2.7.1-1
    lib32-nouveau-dri 10.2.4-1
    lib32-nvidia-cg-toolkit 3.1-4
    lib32-nvidia-utils 340.24-1
    lib32-openal 1.15.1-2
    lib32-openssl 1.0.1.h-1
    lib32-orc 0.4.19-1
    lib32-p11-kit 0.20.2-1
    lib32-pango 1.36.5-1
    lib32-pcre 8.35-1
    lib32-pixman 0.32.6-1
    lib32-portaudio 19_20140130-1
    lib32-qt4 4.8.6-1
    lib32-readline 6.3.006-1
    lib32-sdl 1.2.15-6
    lib32-soundtouch 1.8.0-1
    lib32-sqlite 3.8.5-1
    lib32-systemd 215-1
    lib32-tdb 1.2.12-1
    lib32-util-linux 2.24.2-1
    lib32-v4l-utils 1.2.1-1
    lib32-wayland 1.5.0-1
    lib32-wxgtk2.8 2.8.12.1-2
    lib32-xz 5.0.5-1
    lib32-zlib 1.2.8-1
    libaio 0.3.109-7
    libao 1.2.0-1
    libappindicator 12.10.0-2
    libarchive 3.1.2-6
    libart-lgpl 2.3.21-3
    libass 0.11.2-1
    libassuan 2.1.1-1
    libasyncns 0.8-5
    libatasmart 0.19-3
    libatomic_ops 7.4.2-1
    libavc1394 0.5.4-2
    libbluray 0.5.0-1
    libbonobo 2.32.1-4
    libbonoboui 2.24.5-2
    libbsd 0.6.0-2
    libburn 1.3.8-1
    libcaca 0.99.beta18-2
    libcanberra 0.30-4
    libcanberra-pulse 0.30-4
    libcap 2.24-1
    libcap-ng 0.7.4-1
    libcdaudio 0.99.12-7
    libcddb 1.3.2-4
    libcdio 0.92-1
    libcdio-paranoia 10.2+0.90+1-2
    libcl 1.1-4
    libcroco 0.6.8-2
    libcups 1.7.4-1
    libdaemon 0.14-3
    libdatrie 0.2.6-1
    libdbus 1.8.6-1
    libdbusmenu-glib 12.10.2-3
    libdbusmenu-gtk2 12.10.2-3
    libdbusmenu-qt 0.9.2-3
    libdbusmenu-qt5 0.9.3+14.10.20140619-1
    libdc1394 2.2.1-2
    libdca 0.0.5-4
    libdmtx 0.7.4-5
    libdmx 1.1.3-1
    libdrm 2.4.54-1
    libdv 1.0.0-6
    libdvbpsi 1:1.1.2-1
    libdvdnav 4.2.1-1
    libdvdread 4.9.9-1
    libebml 1.3.0-2
    libedit 20140213_3.1-1
    libepoxy 1.2-3
    libevdev 1.2.2-1
    libevent 2.0.21-3
    libexif 0.6.21-2
    libffi 3.1-2
    libfontenc 1.1.2-1
    libftdi-compat 0.20-1
    libgcrypt 1.6.1-1
    libgcrypt15 1.5.3-1
    libgdata 0.15.1-1
    libgdiplus 2.10.9-5
    libgksu 2.0.12-6
    libglade 2.6.4-5
    libgme 0.6.0-3
    libgnome 2.32.1-5
    libgnome-data 2.32.1-5
    libgnome-desktop-sharp 2.26.0-10
    libgnome-keyring 3.12.0-1
    libgnome-sharp 2.24.2-4
    libgnomecanvas 2.30.3-3
    libgnomekbd 3.6.0-2
    libgnomeui 2.24.5-2
    libgpg-error 1.13-1
    libgpod 0.8.3-2
    libgsf 1.14.30-1
    libgssglue 0.4-2
    libgtop 2.30.0-1
    libgusb 0.1.6-1
    libgweather 3.12.2-1
    libgxps 0.2.2-3
    libical 1.0-3
    libice 1.0.9-1
    libid3tag 0.15.1b-8
    libidl2 0.8.14-3
    libidn 1.28-2
    libiec61883 1.2.0-4
    libimobiledevice 1.1.6-1
    libindicator-gtk2 12.10.1-4
    libindicator-gtk3 12.10.1-4
    libirman 0.4.5-4
    libisofs 1.3.8-1
    libjpeg-turbo 1.3.1-1
    libkactivities4 4.13.3-1
    libkate 0.4.1-4
    libkeybinder2 0.3.0-2
    libkfbapi 1.0-1
    libkgapi 2.1.1-1
    libkolab 0.5.0-1
    libkolabxml 1.0.1-1
    libksba 1.3.0-1
    liblastfm 1.0.8-1
    libldap 2.4.39-1
    liblqr 0.4.2-1
    liblrdf 0.5.0-2
    libltdl 2.4.2-14
    libmad 0.15.1b-7
    libmariadbclient 10.0.12-2
    libmatroska 1.4.1-1
    libmikmod 3.3.6-1
    libmm-glib 1.2.0-4
    libmms 0.6.4-1
    libmng 2.0.2-3
    libmodplug 0.8.8.5-1
    libmp4v2 2.0.0-3
    libmpc 1.0.2-2
    libmpcdec 1.2.6-4
    libmpeg2 0.5.1-5
    libmspack 0.4alpha-1
    libmtp 1.1.6-6
    libmygpo-qt 1.0.7-1
    libnautilus-extension 3.12.2-1
    libnice 0.1.4-1
    libnl 3.2.24-1
    libnm-glib 0.9.8.10-3
    libnotify 0.7.6-1
    liboauth 1.0.3-1
    libofa 0.9.3-5
    libogg 1.3.1-2
    libomxil-bellagio 0.9.3-1
    libotr 4.0.0-5
    libpaper 1.1.24-7
    libpcap 1.5.3-1
    libpciaccess 0.13.2-2
    libpipeline 1.3.0-1
    libplist 1.11-1
    libpng 1.6.12-1
    libproxy 0.4.11-4
    libpst 0.6.63-1
    libpulse 5.0-1
    libpurple 2.10.9-2
    libqalculate 0.9.7-4
    libqzeitgeist 0.8.0-4
    libraw1394 2.1.0-2
    libreoffice-af 4.2.5-1
    libreoffice-base 4.2.5-1
    libreoffice-calc 4.2.5-1
    libreoffice-common 4.2.5-1
    libreoffice-draw 4.2.5-1
    libreoffice-en-US 4.2.5-1
    libreoffice-gnome 4.2.5-1
    libreoffice-impress 4.2.5-1
    libreoffice-kde4 4.2.5-1
    libreoffice-math 4.2.5-1
    libreoffice-postgresql-connector 4.2.5-1
    libreoffice-sdk 4.2.5-1
    libreoffice-sdk-doc 4.2.5-1
    libreoffice-writer 4.2.5-1
    librsvg 1:2.40.2-1
    libsamplerate 0.1.8-3
    libsasl 2.1.26-7
    libseccomp 2.1.1-1
    libsecret 0.18-1
    libshout 1:2.3.1-2
    libsidplay 1.36.59-6
    libsigc++ 2.3.1-2
    libsm 1.2.2-2
    libsndfile 1.0.25-3
    libsodium 0.6.1-1
    libsoup 2.46.0-1
    libspectre 0.2.7-2
    libspiro 1:0.2-1
    libsrtp 15.1c9bd90-3
    libssh 0.6.3-1
    libssh2 1.4.3-2
    libsystemd 215-4
    libtar 1.2.20-1
    libtasn1 4.0-1
    libthai 0.1.19-1
    libtheora 1.1.1-3
    libtiff 4.0.3-4
    libtiger 0.3.4-4
    libtirpc 0.2.4-1
    libtool 2.4.2-14
    libtracker-sparql 1.0.2-1
    libturpial-git 1.7.0.564.c3ec1dc-1
    libtxc_dxtn 1.0.1-5
    libunicodenames 1.1.0_beta1-1
    libunique 1.1.6-6
    libunistring 0.9.3-6
    libupnp 1.6.19-1
    libusb 1.0.19-1
    libusb-compat 0.1.5-1
    libusbmuxd 1.0.9-1
    libutempter 1.1.6-2
    libutil-linux 2.24.2-1
    libva 1.3.1-2
    libvdpau 0.8-1
    libvisual 0.4.0-5
    libvncserver 0.9.9-3
    libvorbis 1.3.4-1
    libvpx 1.3.0-1
    libwbclient 4.1.9-1
    libwebp 0.4.0-2
    libwmf 0.2.8.4-12
    libwnck 2.30.7-2
    libx11 1.6.2-2
    libx264 1:142.20140311-4
    libxau 1.0.8-2
    libxaw 1.0.12-1
    libxcb 1.10-3
    libxcomposite 0.4.4-2
    libxcursor 1.1.14-2
    libxdamage 1.1.4-2
    libxdmcp 1.1.1-2
    libxext 1.3.3-1
    libxfce4ui 4.10.0-2
    libxfce4util 4.10.1-2
    libxfcegui4 4.10.0-2
    libxfixes 5.0.1-1
    libxfont 1.4.7-3
    libxft 2.3.2-1
    libxi 1.7.4-1
    libxinerama 1.1.3-2
    libxkbcommon 0.4.2-1
    libxkbcommon-x11 0.4.2-1
    libxkbfile 1.0.8-2
    libxkbui 1.0.2-5
    libxklavier 5.4-1
    libxml-perl 0.08-6
    libxml2 2.9.1-5
    libxmu 1.1.2-1
    libxpm 3.5.11-1
    libxrandr 1.4.2-2
    libxrender 0.9.8-1
    libxres 1.0.7-1
    libxshmfence 1.1-1
    libxslt 1.1.28-3
    libxss 1.2.2-2
    libxt 1.1.4-1
    libxtst 1.2.2-1
    libxv 1.0.10-1
    libxvmc 1.0.8-1
    libxxf86dga 1.1.4-1
    libxxf86vm 1.1.3-1
    libyaml 0.1.6-1
    libytnef 1.5-4
    licenses 20140629-1
    links 2.8-1
    linux 3.15.5-2
    linux-api-headers 3.14.1-1
    linux-firmware 20140603.a4f3bc0-1
    linux-headers 3.15.5-2
    lirc-utils 1:0.9.0-74
    live-usb-install 2.5.2-2
    llvm-libs 3.4.2-1
    lm_sensors 3.3.5-1
    logrotate 3.8.7-3
    lpsolve 5.5.2.0-3
    lsof 4.87-2
    lua 5.2.3-1
    lvm2 2.02.106-2
    lzo2 2.08-1
    m4 1.4.17-1
    make 4.0-2
    man-db 2.6.7.1-1
    man-pages 3.70-1
    mariadb 10.0.12-2
    mariadb-clients 10.0.12-2
    masterpdfeditor 1.9.25-2
    mcpp 2.7.2-5
    mdadm 3.3.1-2
    media-player-info 19-1
    mesa 10.2.4-1
    mesa-demos 8.2.0-1
    mesa-libgl 10.2.4-1
    metacity 2.34.13-7
    mime-types 9-1
    mjpegtools 2.1.0-1
    mkinitcpio 17-1
    mkinitcpio-busybox 1.21.1-2
    mlt-git v0.9.2.r15.g04ef766-1
    mobile-broadband-provider-info 20120614-2
    moka-icons-git 312.b2d1642-1
    mono 3.4.0-1
    mono-addins 1.1-1
    monodevelop 5.0.1-1
    movit 1.1.1-1
    mozilla-common 1.4-4
    mpfr 3.1.2.p10-1
    mpg123 1.20.0-1
    mplayer 37224-1
    mtdev 1.1.5-1
    mtools 4.0.18-2
    musicbrainz 2.1.5-6
    mutagen 1.23-1
    nano 2.2.6-3
    nasm 2.11.05-1
    nautilus 3.12.2-1
    nautilus-sendto 3.8.1-1
    ncdu 1.10-1
    ncurses 5.9-6
    neon 0.30.0-1
    net-tools 1.60.20130531git-1
    netctl 1.8-1
    nettle 2.7.1-1
    network-manager-applet 0.9.8.10-1
    networkmanager 0.9.8.10-3
    networkmanager-openconnect 0.9.8.6-1
    networkmanager-openvpn 0.9.8.4-1
    networkmanager-pptp 0.9.8.4-2
    networkmanager-vpnc 0.9.8.6-1
    notify-sharp 0.4.1-1
    nouveau-dri 10.2.4-1
    nspr 4.10.6-1
    nss 3.16.3-1
    ntfs-3g 2014.2.15-1
    ntp 4.2.7.p446-1
    nvidia 340.24-1
    nvidia-cg-toolkit 3.1-3
    nvidia-utils 340.24-1
    openal 1.15.1-2
    opencl-nvidia-beta 340.24-1
    openconnect 1:5.03-1
    opencore-amr 0.1.3-2
    opencv 2.4.9-1
    openexr 2.1.0-1
    openjpeg 1.5.2-1
    openresolv 3.5.6-1
    openssh 6.6p1-2
    openssl 1.0.1.h-1
    openvpn 2.3.4-1
    optipng 0.7.5-1
    opus 1.1-1
    orage 4.10.0-1
    orbit2 2.14.19-3
    orc 0.4.19-1
    os-prober 1.58-1
    oxygen-icons 4.13.3-1
    p11-kit 0.20.2-1
    p7zip 9.20.1-9
    package-query 1.4-1
    packer 20140103-1
    packer-color 20130730-1
    pacman 4.1.2-6
    pacman-mirrorlist 20140706-1
    pam 1.1.8-5
    pambase 20130928-1
    pango 1.36.5-1
    pango-perl 1.226-1
    pangomm 2.34.0-1
    pangox-compat 0.0.2-2
    parted 3.1-4
    patch 2.7.1-3
    pavucontrol 2.0-2
    pciutils 3.2.1-1
    pcmciautils 018-7
    pcre 8.35-1
    pcsclite 1.8.11-1
    pcsx2 1.2.2-2
    perl 5.20.0-5
    perl-bit-vector 7.3-2
    perl-capture-tiny 0.24-1
    perl-carp-clan 6.04-3
    perl-class-accessor 0.34-4
    perl-class-data-inheritable 0.08-6
    perl-common-sense 3.73-1
    perl-data-optlist 0.109-2
    perl-data-random 0.11-2
    perl-date-calc 6.3-3
    perl-devel-checkcompiler 0.05-1
    perl-devel-symdump 2.11-1
    perl-digest-hmac 1.03-3
    perl-digest-sha1 2.13-5
    perl-encode-locale 1.03-2
    perl-error 0.17022-1
    perl-extutils-config 0.007-2
    perl-extutils-depends 0.308-1
    perl-extutils-helpers 0.022-2
    perl-extutils-installpaths 0.010-2
    perl-extutils-pkgconfig 1.15-1
    perl-file-basedir 0.03-6
    perl-file-copy-recursive 0.38-1
    perl-file-listing 6.04-2
    perl-file-slurp-tiny 0.003-2
    perl-file-which 1.09-4
    perl-gd 2.53-2
    perl-gnome2-wnck 0.16-9
    perl-goo-canvas 0.06-4
    perl-gtk2-appindicator 0.15-2
    perl-gtk2-imageview 0.05-4
    perl-gtk2-unique 0.05-10
    perl-html-form 6.03-2
    perl-html-parser 3.71-3
    perl-html-tagset 3.20-4
    perl-http-cookies 6.01-2
    perl-http-daemon 6.01-2
    perl-http-date 6.02-2
    perl-http-message 6.06-2
    perl-http-negotiate 6.01-2
    perl-http-response-encoding 0.06-3
    perl-http-server-simple 0.44-2
    perl-image-exiftool 9.60-1
    perl-io-socket-ssl 1.997-1
    perl-io-string 1.08-9
    perl-json 2.90-1
    perl-json-xs 3.01-3
    perl-libwww 6.08-1
    perl-locale-gettext 1.05-11
    perl-lwp-mediatypes 6.02-2
    perl-lwp-protocol-https 6.04-1
    perl-module-build-tiny 0.036-2
    perl-module-build-xsutil 0.10-1
    perl-mouse 2.3.0-1
    perl-mozilla-ca 20130114-2
    perl-net-dbus 1.0.0-4
    perl-net-dropbox-api 1.9-3
    perl-net-http 6.07-1
    perl-net-oauth 0.28-4
    perl-net-ssleay 1.63-2
    perl-params-util 1.07-3
    perl-path-class 0.33-1
    perl-pod-coverage 0.23-1
    perl-proc-processtable 0.50-3
    perl-proc-simple 1.31-3
    perl-sort-naturally 1.03-1
    perl-sub-exporter 0.987-1
    perl-sub-install 0.927-1
    perl-sub-uplevel 0.24-2
    perl-test-deep 0.112-1
    perl-test-exception 0.32-2
    perl-test-fatal 0.013-1
    perl-test-leaktrace 0.14-2
    perl-test-nowarnings 1.04-2
    perl-test-output 1.03-1
    perl-test-pod 1.48-1
    perl-test-pod-coverage 1.10-1
    perl-test-requires 0.07-1
    perl-test-tester 0.109-1
    perl-test-warn 0.30-1
    perl-text-iconv 1.7-9
    perl-tree-dag-node 1.22-2
    perl-try-tiny 0.22-1
    perl-types-serialiser 1.0-1
    perl-uri 1.64-1
    perl-www-mechanize 1.73-1
    perl-www-robotrules 6.02-2
    perl-x11-protocol 0.56-6
    perl-xml-libxml 2.0116-2
    perl-xml-namespacesupport 1.11-3
    perl-xml-parser 2.41-5
    perl-xml-sax 0.99-4
    perl-xml-sax-base 1.08-3
    perl-xml-simple 2.20-2
    perl-xml-twig 3.48-1
    perl-yaml-tiny 1.62-2
    phonon-qt4 4.7.2-1
    phonon-qt4-gstreamer 4.7.2-1
    phonon-qt5 4.7.2-1
    phonon-qt5-gstreamer 4.7.2-1
    photorecover 0.9.0-1
    php 5.5.15-1
    php-apache 5.5.15-1
    pia-tools 0.9.7.1-1
    pidgin 2.10.9-2
    pidgin-otr 4.0.0-2
    pinentry 0.8.3-1
    pixman 0.32.6-1
    pkg-config 0.28-2
    pngcrush 1.7.75-1
    polkit 0.112-2
    polkit-kde 0.99.0-3
    polkit-qt4 0.112-1
    polkit-qt5 0.112-1
    poppler 0.26.3-1
    poppler-glib 0.26.3-1
    popt 1.16-7
    portaudio 19_20140130-1
    portmidi 217-5
    postgresql 9.3.5-1
    postgresql-libs 9.3.5-1
    poweriso 1.3-4
    ppp 2.4.6-2
    pptpclient 1.8.0-2
    presentproto 1.0-1
    primus 20131226-1
    prison 1.1.1-1
    procps-ng 3.3.9-3
    progsreiserfs 0.3.0.5-8
    proot 3.2.2-1
    protobuf 2.5.0-4
    psmisc 22.21-2
    pth 2.0.7-5
    pulseaudio 5.0-1
    pygobject-devel 3.12.2-1
    pygobject2-devel 2.28.6-10
    pygtk 2.24.0-4
    pyqt4-common 4.11.1-1
    pyrex 0.9.9-4
    python 3.4.1-1
    python-cairo 1.10.0-4
    python-dbus 1.2.0-3
    python-dbus-common 1.2.0-3
    python-distutils-extra 2.38-2
    python-gobject 3.12.2-1
    python-xdg 0.25-2
    python2 2.7.8-1
    python2-babel 1.3-4
    python2-beaker 1.6.4-2
    python2-beautifulsoup4 4.3.2-2
    python2-cairo 1.10.0-2
    python2-configobj 5.0.5-1
    python2-dbus 1.2.0-3
    python2-distutils-extra 2.38-2
    python2-exiv2 0.3.2-3
    python2-gconf 2.28.1-9
    python2-gobject 3.12.2-1
    python2-gobject2 2.28.6-10
    python2-gtkspell 2.25.3-13
    python2-gudev 147.2-5
    python2-httplib2 0.9-2
    python2-jinja 2.7.3-1
    python2-keybinder2 0.3.0-2
    python2-lxml 3.3.5-1
    python2-mako 1.0.0-1
    python2-markupsafe 0.23-1
    python2-notify 0.1.1-13
    python2-oauth 1.0.1-3
    python2-pillow 2.5.1-1
    python2-pycurl 7.19.5-1
    python2-pygame 1.9.1-8
    python2-pyqt4 4.11.1-1
    python2-pyside 1.2.1-2
    python2-pytz 2014.4-1
    python2-requests 2.3.0-1
    python2-rsvg 2.32.0-15
    python2-setuptools 1:5.4.1-1
    python2-simplejson 3.4.0-1
    python2-sip 4.16.2-1
    python2-six 1.7.3-1
    pywebkitgtk 1.1.8-3
    qca 2.0.3-5
    qca-ossl 2.0.0-7
    qimageblitz 0.0.6-4
    qjson 0.8.1-3
    qpdf 5.1.2-1
    qrencode 3.4.4-1
    qt4 4.8.6-1
    qt5-base 5.3.1-1
    qt5-declarative 5.3.1-1
    qt5-location 5.3.1-1
    qt5-quick1 5.3.1-1
    qt5-quickcontrols 5.3.1-1
    qt5-script 5.3.1-1
    qt5-sensors 5.3.1-1
    qt5-svg 5.3.1-1
    qt5-tools 5.3.1-1
    qt5-translations 5.3.1-1
    qt5-webkit 5.3.1-1
    qt5-x11extras 5.3.1-1
    qt5-xmlpatterns 5.3.1-1
    qtchooser 41-1
    qtcreator 3.1.2-1
    qtwebkit 2.3.3-1
    randrproto 1.4.0-2
    raptor 2.0.13-2
    rarian 0.8.1-4
    rasqal 1:0.9.32-1
    rdesktop 1.8.2-1
    readline 6.3.006-1
    recode 3.6-8
    recordmydesktop 0.3.8.1-7
    recordproto 1.14.2-2
    redland 1:1.0.17-2
    regetron 1.4-1
    regex 1.0c.rev40-1
    reiserfsprogs 3.6.24-1
    remmina 1.0.0-12
    remmina-plugin-rdesktop 1.0.0.3-1
    renderproto 0.11.1-3
    resourceproto 1.2.0-3
    rest 0.7.91-1
    ristretto 0.6.3-4
    rpmextract 1.0-6
    rsvg2-sharp 2.26.0-10
    rsync 3.1.1-2
    rtkit 0.11-4
    rtmpdump 20131205-1
    ruby 2.1.2-1
    ruby1.9 1.9.3_p547-3
    ruby1.9-bundler 1.6.3-1
    run-parts 4.4-1
    s-nail 14.7.4-1
    samba 4.1.9-1
    sbc 1.2-1
    schroedinger 1.0.11-2
    screenfetch 3.2.2-1
    scrnsaverproto 1.2.2-2
    sdl 1.2.15-6
    sdl2 2.0.3-1
    sdl2_image 2.0.0-2
    sdl_image 1.2.12-3
    sdl_mixer 1.2.12-4
    sdl_net 1.2.8-2
    sdl_sound 1.0.3-5
    sdl_ttf 2.0.11-3
    sed 4.2.2-3
    serf 1.3.6-1
    sg3_utils 1.39-1
    shadow 4.2.1-1
    shared-mime-info 1.3-1
    shiboken 1.2.1-4
    shutter 0.91-2
    sip 4.16.2-1
    skype 4.3.0.37-3
    smaragd-git 20130504-1
    smbclient 4.1.9-1
    smpeg 0.4.5-1
    snappy 1.1.1-1
    solid 5.0.0-1
    sonnet 5.0.0-1
    sound-theme-freedesktop 0.8-2
    soundtouch 1.8.0-1
    source-highlight 3.1.7-9
    sox 14.4.1-4
    spandsp 0.0.6pre21-2
    speech-dispatcher 0.8-3
    speex 1.2rc1-4
    spotify 0.9.10.17-1
    sqlite 3.8.5-1
    startup-notification 0.12-4
    steam 1.0.0.47-2
    strace 4.8-1
    strigi 0.7.8-5
    sublime-text-dev 3.3059-1
    subversion 1.8.9-2
    sudo 1.8.10.p3-1
    sysfsutils 2.1.0-9
    syslinux 6.03pre18-1
    systemd 215-4
    systemd-sysvcompat 215-4
    t1lib 5.1.2-5
    taglib 1.9.1-1
    talloc 2.1.1-1
    tangerine-icon-theme 0.27-2
    tar 1.27.1-1
    tcl 8.6.1-1
    tdb 1.2.12-1
    telepathy-glib 0.24.0-1
    terminator 0.97-2
    terminus-font 4.39-1
    testdisk 6.14-2
    tevent 0.9.21-3
    texinfo 5.2-2
    thunar 1.6.3-1
    thunar-volman 0.8.0-2
    thunderbird 31.0-1
    tk 8.6.1-1
    tor-browser-en 3.6.2-2
    totem-plparser 3.10.2-1
    transmission-cli 2.84-1
    transmission-gtk 2.84-1
    trimage-git 20130126-1
    ttf-dejavu 2.34-1
    ttf-google-fonts-git 20140512-1
    ttf-ms-fonts 2.0-10
    tumbler 0.1.30-1
    turpial-git 3.0.1642.5f269f4-1
    tzdata 2014e-1
    udisks 1.0.5-1
    udisks2 2.1.3-1
    ufw 0.33-3
    unrar 1:5.1.6-1
    unzip 6.0-7
    upower 0.99.0-2
    usb-creator 0.2.59-1
    usbutils 007-1
    util-linux 2.24.2-1
    v4l-utils 1.2.1-1
    vala 0.24.0-1
    variety 0.4.19-1
    vi 1:050325-4
    vid.stab 0.98b-2
    videoproto 2.3.2-1
    vim 7.4.373-1
    vim-runtime 7.4.373-1
    virtualbox 4.3.14-1
    virtualbox-guest-iso 4.3.14-1
    virtualbox-host-dkms 4.3.14-1
    virtualbox-host-modules 4.3.14-1
    virtualgl 2.3.3-1
    vlc 2.1.5-1
    vpnc 0.5.3.svn527-2
    vte 0.28.2-4
    vte-common 0.36.3-1
    vte3 0.36.3-1
    wavpack 4.70.0-2
    wayland 1.5.0-1
    webkitgtk 2.4.4-1
    webkitgtk2 2.4.4-1
    webrtc-audio-processing 0.1-2
    wee-buzzer 20120130:1.1-1
    weechat 0.4.3-2
    weevely 1.1-2
    wget 1.15-1
    which 2.20-7
    whois 5.1.3-1
    wildmidi 0.3.6-1
    wine 1.7.23-1
    winetricks 20140302-1
    wireshark-cli 1.10.8-1
    wireshark-gtk 1.10.8-1
    wnck-sharp 2.26.0-10
    wpa_supplicant 2.1-3
    wxgtk2.8 2.8.12.1-1
    x264 1:142.20140311-4
    x265 1.2-1
    xbitmaps 1.1.1-3
    xcb-proto 1.10-2
    xcb-util 0.3.9-2
    xcb-util-image 0.3.9-2
    xcb-util-keysyms 0.3.9-2
    xcb-util-renderutil 0.3.9-1
    xcb-util-wm 0.4.1-1
    xdg-utils 1.1.0.git20140630-1
    xerces-c 3.1.1-5
    xextproto 7.3.0-1
    xf86-input-evdev 2.9.0-1
    xf86-input-joystick 1.6.2-3
    xf86-input-keyboard 1.8.0-2
    xf86-input-mouse 1.9.0-2
    xf86-input-synaptics 1.8.0-1
    xf86-input-vmmouse 13.0.0-3
    xf86-input-void 1.4.0-6
    xf86-video-ark 0.7.5-4
    xf86-video-ast 0.97.0-4
    xf86-video-cirrus 1.5.2-3
    xf86-video-dummy 0.3.7-2
    xf86-video-fbdev 0.4.4-2
    xf86-video-glint 1.2.8-4
    xf86-video-i128 1.3.6-4
    xf86-video-intel 2.99.912-2
    xf86-video-mach64 6.9.4-3
    xf86-video-mga 1.6.3-2
    xf86-video-modesetting 0.9.0-1
    xf86-video-neomagic 1.2.8-2
    xf86-video-nouveau 1.0.10-2
    xf86-video-nv 2.1.20-4
    xf86-video-openchrome 0.3.3-3
    xf86-video-r128 6.9.2-2
    xf86-video-savage 2.3.7-2
    xf86-video-siliconmotion 1.7.7-4
    xf86-video-sis 0.10.7-5
    xf86-video-tdfx 1.4.5-4
    xf86-video-trident 1.3.6-5
    xf86-video-v4l 0.2.0-13
    xf86-video-vesa 2.3.2-4
    xf86-video-voodoo 1.2.5-4
    xf86dgaproto 2.1-3
    xf86driproto 2.1.1-3
    xf86vidmodeproto 2.3.1-3
    xfce4-appfinder 4.10.1-1
    xfce4-datetime-plugin 0.6.2-2
    xfce4-mixer 4.10.0-2
    xfce4-notes-plugin 1.7.7-5
    xfce4-notifyd 0.2.4-1
    xfce4-panel 4.10.1-1
    xfce4-power-manager 1.2.0.212.g75107db-1
    xfce4-remmina-plugin 0.8.1-2
    xfce4-session 4.10.1-3
    xfce4-settings 4.10.1-1
    xfce4-terminal 0.6.3-1
    xfconf 4.10.0-4
    xfdesktop 4.10.2-2
    xfsprogs 3.2.0-1
    xfwm4 4.10.1-1
    xfwm4-themes 4.10.0-2
    xine-lib 1.2.6-1
    xineramaproto 1.2.1-3
    xkeyboard-config 2.12-1
    xorg-bdftopcf 1.0.4-2
    xorg-docs 1.7-2
    xorg-font-util 1.3.0-2
    xorg-font-utils 7.6-4
    xorg-fonts-100dpi 1.0.1-5
    xorg-fonts-75dpi 1.0.3-1
    xorg-fonts-alias 1.0.3-1
    xorg-fonts-encodings 1.0.4-4
    xorg-fonts-misc 1.0.1-3
    xorg-iceauth 1.0.6-1
    xorg-luit 1.1.1-2
    xorg-mkfontdir 1.0.7-2
    xorg-mkfontscale 1.1.1-1
    xorg-server 1.15.2-1
    xorg-server-common 1.15.2-1
    xorg-server-devel 1.15.2-1
    xorg-server-utils 7.6-4
    xorg-server-xephyr 1.15.2-1
    xorg-sessreg 1.0.8-2
    xorg-setxkbmap 1.3.0-2
    xorg-smproxy 1.0.5-2
    xorg-twm 1.0.8-2
    xorg-util-macros 1.19.0-1
    xorg-utils 7.6-9
    xorg-x11perf 1.5.4-2
    xorg-xauth 1.0.9-1
    xorg-xbacklight 1.2.1-1
    xorg-xclock 1.0.7-1
    xorg-xcmsdb 1.0.4-2
    xorg-xcursorgen 1.0.6-1
    xorg-xdpyinfo 1.3.1-1
    xorg-xdriinfo 1.0.4-4
    xorg-xev 1.2.1-2
    xorg-xgamma 1.0.5-2
    xorg-xhost 1.0.6-1
    xorg-xinit 1.3.3-3
    xorg-xinput 1.6.1-1
    xorg-xkbcomp 1.2.4-2
    xorg-xkbevd 1.1.3-2
    xorg-xkbutils 1.0.4-2
    xorg-xkill 1.0.4-1
    xorg-xlsatoms 1.1.1-2
    xorg-xlsclients 1.1.3-1
    xorg-xmessage 1.0.4-2
    xorg-xmodmap 1.0.8-1
    xorg-xpr 1.0.4-2
    xorg-xprop 1.2.2-1
    xorg-xrandr 1.4.2-1
    xorg-xrdb 1.1.0-1
    xorg-xrefresh 1.0.5-1
    xorg-xset 1.2.3-1
    xorg-xsetroot 1.1.1-2
    xorg-xvinfo 1.1.2-2
    xorg-xwd 1.0.6-1
    xorg-xwininfo 1.1.3-1
    xorg-xwud 1.0.4-2
    xproto 7.0.26-1
    xterm 309-1
    xvidcore 1.3.3-1
    xz 5.0.5-2
    yajl 2.1.0-1
    yaourt 1.5-1
    yelp 3.12.0-1
    yelp-xsl 3.12.0-1
    zekr 1.1.0-2
    zenity 3.12.1-1
    zeromq 4.0.4-3
    zip 3.0-4
    zlib 1.2.8-3
    zsnes 1.51-17
    zvbi 0.2.33-6
    removed arch-assault to recieve help on pure Arch, thank you for showing me in the rules admin
    Appreciate the help.
    Last edited by mrbeard (2014-07-28 04:31:57)

    mrbeard wrote:archassault-keyring 20140202-3
    archassault-mirrorlist 20140527-1
    Closing: https://wiki.archlinux.org/index.php/Fo … pport_ONLY

  • Ftp time out

    when transfering a file to an ftp site, it appears final cut server first touches a new file on a remote ftp site, then encodes the source file, then starts uploading. this causes the connection to the ftp server to time out if the encoding takes a long time.
    unfortunately, i cannot change the timeout setting on the remote ftp server (not my server). anyone know how to prevent this? anyone know what fcs is using to upload via ftp? is there maybe a config file in the os where i can set a "keep alive" value?
    d.

    No, but I can give you a workaround:
    Instead of having a copy response encode to the FTP device, create a local watcher that you can set as the destination for your transcoding copy response. Be sure to wildcard exclude "fcsvr*" so that the watcher does not grab the file before it has been given its final name. On the watcher, apply a copy response with no transcode option followed by a delete response.
    If you are triggering a subscription on an existing asset to get this whole ball rolling, I also recommend adding a script response to the subscription stack after the transcode copy response. Make it do this:
    Command path = mv
    Parameters = "/<path to local watcher>/\[Title].mov" "/<path to local watcher>/\[Asset ID].mov"
    Include the quotes when you set the parameters, they are important. This response will rename your transcoded movie with a unique integer instead of the potentially FTP-unfriendly asset title value that is the default for copy responses. Of course, if your transcode makes something other than a .mov, adjust the parameters above for the file type suffix your transcode produces.

  • IllegalCharsetNameException: UTF-8 Error OSB

    Him,
    When i am testing a OSB PS from SOAP ui i am finding the below mentioned error in the logs of OSB server.
    <BEA-381304> <Exception in HttpInboundMessageContext.close: java.nio.charset.IllegalCharsetNameException: UTF-8"
    java.nio.charset.IllegalCharsetNameException: UTF-8"
    But the same OSB ProxyService when tested from test console of OSB works fine with out any error.I tried giving the request and response encoding values of PS,BS as UTF-8..but still it didn't worked from SOAP UI
    does some body has any idea about why the error is happening.

    the content type header under response meta data is as below
    <http:Content-Type>
    multipart/related; boundary=MIME_Boundary;
    start="&lt;e9e78234904746798a84877ceed04670>";
    type="application/xop+xml"; start-info="application/soap+xml"
    </http:Content-Type>
    And the backend service returns response message along with attachements, the content type of attachments seen in the test console is as below.
    Content-Type : application/octet-stream
    I am not sure,how to verify if it is set as per RFC format,can you kindly elaborate please
    Edited by: 860272 on Jul 6, 2011 12:51 AM

  • Problems displaying in IE

    While I love iWeb's ease of use, it seems to have serious problems displaying on IE. There is really no point blaming IE, since it is the dominant browser and most people who will see our sites will use it. The point of iWeb should be to allow people to communicate broadly and effectively, not just to Mac & Safari users.
    Lists do not work well. The indents do not display properly. Text in boxes shift alignment and location. Bullets show up with different sizes. I have had to hand indent and line space all the lists in the sites I make, which is a mess and not scaleable.
    See fieldsforkidsmamk.org.
    Are there any workarounds or fixes?
    The other obvious issues with iWeb are worth noting:
    * inconsistent display in browsers -- pages look different in Safari and Firefox, even on the Mac (let alone IE)
    * difficulty adding html code
    * page names must be identical to nav names, so pages with multiple words (Get Involved) display urls as /Get%20Involved (can't be corrected unless you have Get_Involved as a header.)
    * need to publish whole site for any change
    * need to publish all sites for each change to any site
    * can't change color, display, location, function etc for Nav
    I assume everyone is aware of these problems. The question is, what to do? Grin and bear it? Any help, tips or ideas would be appreciated.
    Thanks!
    MacBook Mac OS X (10.4.8)
    MacBook Mac OS X (10.4.8)
    MacBook Mac OS X (10.4.8)
    MacBook   Mac OS X (10.4.8)  

    * page names must be identical to nav names, so pages
    with multiple words (Get Involved) display urls as
    /Get%20Involved (can't be corrected unless you have
    Get_Involved as a header.)
    You can fix this the same way you add html code, by post processing.
    * need to publish all sites for each change to any
    site
    You can fix this by separating your sites into different Domain files so you only publish one at a time.
    Contrary to the other response, "encoding" is not connected to the points you made. There is never any need to add a UTF-8 "tag" to an iWeb page. If you see question marks or Â's when your page is displayed on any browser, Mac or PC, then you may need to fix your ftp or server settings.

Maybe you are looking for

  • Move Mobile Apps Folder To External Drive?

    Hi guys, I've got a MacBook Pro running Lion with all the latest software / updates.  This has become my secondary machine (since buying a lovely 27" iMac), and I'm using iTunes Match to keep both the MacBook Pro and iMac's iTunes libraries in sync.

  • Hard Drives that work well with my board

    Hi, My current hard drive situation is shown in my sig below. I'm putting the 40GB Maxtor IDE drive in another computer I have lying around and was thinking about replacing it with a more modern IDE drive. I have several questions though: 1) From per

  • Which is better on Bootcamp: Windows 7 or 8?

    I have some softwares from my previous Dell laptop that will only run on Windos OS. I am considering installing either Windows 7 or 8 on my Mac but I would like to know which version will run better and smoother without glitches and is more reliable.

  • How to build a cluster array dynamically from another cluster array?

    I'm working on a problem where I seem to be getting lost in a sea of possibilities, none of which strikes me as optimum. Here's what I need to do. I've got an input array of clusters (ARR1). Each cluster contains the following components: an integer

  • CP issues during data migration through IDOC

    HI,    We are migrating data from One server to another thru PFAL, but the CP data is not posted as it gives the error Relationship starting from 01P 00093159 impossible - 01CP50002607 does not exist/is not active             is there a way to migrat