Icons in JList (Applet)

is it possible to display icons next to text data in a JList? (For use from with in an un-signed Applet)
do I have to jar it? or can I have it grab the images from the webserver it loaded from?
thanx.

Yep, you can customise your lists (and other components) to use icons alongside the text.
Take a look at:
http://java.sun.com/developer/technicalArticles/InnerWorkings/customjlist/
and
http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JList.html
for a few examples.
Basically, you create a ListCellRenderer and attach it to your JList. This is used as a kind of "rubber stamp", that's reconfigured for every line of the list and then stamped down to draw it.
You can build up quite complex renderers, but here's an example of a very simple one, just to get you going:
     class IconListCellRenderer extends DefaultListCellRenderer {
          private ImageIcon defaultImageIcon;
           * A constructor - gives us a chance to load and cache the images.
          public IconListCellRenderer() {
               super();
               // We load our default image.  here we load it as if it's in a JAR with the code,
               // in a directory in the root of the JAR called "images".                    
               defaultImageIcon = new ImageIcon(getClass().getResource("/images/myIcon.gif"));
               // An alternative is to directly pass the URL of the image on your website,
               // for example:
               //defaultImageIcon = new ImageIcon(new URL("http://yourUrl.com/AppletImages/myIcon.gif"));
           * @see javax.swing.ListCellRenderer#getListCellRendererComponent(javax.swing.JList, java.lang.Object, int, boolean, boolean)
          public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
               Component defaultRenderer = super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
               ((JLabel)defaultRenderer).setIcon( defaultImageIcon );
               return defaultRenderer;
     }You'd attach this to your list like this:
myList.setCellRenderer( new IconListCellRenderer() );If you're not already JARing up your Applet and you don't want to, then you can have your ImageIcons load from your site. If your Applet is deployed in a JAR, then you can just create an images directory, put your icons in that and add it to your JAR file (using Winzip or summat).
Hope this helps,

Similar Messages

  • How to add icon to JList(urgent)

    Hi guys,
    wanted to make a jlist which will have icon & string in it. How can I add the icon to it. also does icon file extension must be .gif ?
    Thanks & Kind Regards

    You are in luck. The API documentation for JList contains an example of precisely that. Take a deep breath, relax, and read it. (Icons must be GIF or JPEG.)

  • GIF icon wont display in JList

    Hello.
    During development of a single application I've encountered a strange bug:
    I am unable to display a gif icon in JList using JLabel as the cell renderer. Png icons work.
    Could someone please point me to the obvious flaw in my example? :)
    Example as netbeans project:
    http://www.megaupload.com/?d=GVCDVO1F
    Example code:
    * GifIconInList.java
    * Created on 28. srpen 2008, 11:03
    package gificoninlist;
    import java.awt.Color;
    import java.awt.Component;
    import java.net.URL;
    import javax.swing.DefaultListModel;
    import javax.swing.Icon;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JList;
    import javax.swing.ListCellRenderer;
    * @author  Bedla
    public class GifIconInList extends javax.swing.JFrame {
        DefaultListModel listModel = new DefaultListModel();
        /** Creates new form GifIconInList */
        public GifIconInList() {
            initComponents();
        class labelCellRenderer extends JLabel implements ListCellRenderer {
            public labelCellRenderer() {
                setOpaque(true);
            public Component getListCellRendererComponent(JList list,
                    Object value,
                    int index,
                    boolean isSelected,
                    boolean cellHasFocus) {
                if (value instanceof JLabel) {
                    JLabel label = (JLabel) value;
                    if (isSelected) {
                        label.setBackground(list.getSelectionBackground());
                        label.setForeground(list.getSelectionForeground());
                    } else {
                        label.setBackground(Color.white);
                        label.setForeground(Color.black);
                    return label;
                return this;
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            jScrollPane1 = new javax.swing.JScrollPane();
            jList = new javax.swing.JList();
            addPngButton = new javax.swing.JButton();
            addGifButton = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jList.setModel(listModel);
            jList.setCellRenderer(new labelCellRenderer());
            jScrollPane1.setViewportView(jList);
            addPngButton.setText("Add PNG");
            addPngButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    addPngButtonActionPerformed(evt);
            addGifButton.setText("Add GIF");
            addGifButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    addGifButtonActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                    .addContainerGap()
                    .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 287, Short.MAX_VALUE)
                    .addGap(18, 18, 18)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                        .addComponent(addPngButton)
                        .addComponent(addGifButton))
                    .addContainerGap())
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addGap(31, 31, 31)
                            .addComponent(addPngButton)
                            .addGap(37, 37, 37)
                            .addComponent(addGifButton))
                        .addGroup(layout.createSequentialGroup()
                            .addContainerGap()
                            .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 278, Short.MAX_VALUE)))
                    .addContainerGap())
            pack();
        }// </editor-fold>
    private void addPngButtonActionPerformed(java.awt.event.ActionEvent evt) {
        URL iconURL = GifIconInList.class.getResource("otevren.PNG");
        Icon icon = new ImageIcon(iconURL);
        JLabel label = new JLabel("PNG icon: " + icon, icon, JLabel.CENTER);
        listModel.addElement(label);
    private void addGifButtonActionPerformed(java.awt.event.ActionEvent evt) {
        URL iconURL = GifIconInList.class.getResource("otevrenblik.gif");
        Icon icon = new ImageIcon(iconURL);
        JLabel label = new JLabel("GIF icon: " + icon, icon, JLabel.CENTER);
        listModel.addElement(label);
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new GifIconInList().setVisible(true);
        // Variables declaration - do not modify
        private javax.swing.JButton addGifButton;
        private javax.swing.JButton addPngButton;
        private javax.swing.JList jList;
        private javax.swing.JScrollPane jScrollPane1;
        // End of variables declaration
    }

    I had write a program to display gif images inside a JList.
    Here is the code
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import java.net.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class ImageList
        BufferedImage[] images;
        JList list;
        public ImageList()
            loadImages();
            list = new JList(images);
            list.setCellRenderer(new ImageRenderer());
        private void loadImages()
            String[] fileNames = {
                "1", "2", "3", "4"
            images = new BufferedImage[fileNames.length];
            for(int i = 0; i < images.length; i++)
                try
                    String path = "images/" + fileNames + ".gif";
    URL url = getClass().getResource(path);
    images[i] = ImageIO.read(url);
    catch(MalformedURLException mue)
    System.out.println("url: " + mue.getMessage());
    catch(IOException ioe)
    System.out.println("read: " + ioe.getMessage());
    public static void main(String[] args)
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(new JScrollPane(new ImageList().list));
    f.setSize(400,400);
    f.setLocation(200,200);
    f.setVisible(true);
    class ImageRenderer extends DefaultListCellRenderer
    public Component getListCellRendererComponent(JList list,
    Object value,
    int index,
    boolean isSelected,
    boolean cellHasFocus)
    // for default cell renderer behavior
    Component c = super.getListCellRendererComponent(list, value,
    index, isSelected, cellHasFocus);
    // set icon for cell image
    ((JLabel)c).setIcon(new ImageIcon((BufferedImage)value));
    ((JLabel)c).setText("");
    return c;
    Here is netbeans project:
    [http://www.mediafire.com/?nl29dl4tteu]
    Note: If you check image 2.gif inside the src/images dir you will found that it is an animated gif but JList is displaying it as static image.
    Bedla if you want both image and text then create a class like thisclass ListItem {
    private BufferedImage image;
    private String value;
    public ListItem(
    BufferedImage c, String s) {..}
    public Color getImage() {..}
    public String getValue() {..}

  • Jtree Icons in Applet

    I've used Jtree in a frame with diffrent icons for each level. Now I want to use that Jtree in applet but all the icons disappear! I've used UIManager to chane default icons. How can I use icons in a applet for Jtree?
    Thanks for your help

    Try this url http://www.cscc.de/books/swingbook/files/uts2/Chapter17.pdf
    to change the TreeCellRenderer.

  • Nm-applet icons

    Hi,
    I'm using awesomewm and nm-applet. I remember some time ago, nm-applet was using some icons in the tray which were adapted to my theme's color, so I guess it must've been from the gnome icon theme's symbolic icons in /usr/share/icons/hicolor/scalable/status/network-*.png. Now it doesn't anymore, instead it uses its own icons that are being installed in /usr/share/icons/hicolor/22x22/apps/nm-*.png. I don't believe it's hardcoded into nm-applet because I see so many screenshots on the net where nm-applet uses these "gnome" icons. Does anyone know why that is and if I can rever to the old behavior?
    gsettings get org.gnome.desktop.interface icon-theme
    also returns gnome.

    That's doesn't define all the status icons though.
    But thanks to your pointer, I could see that gnome-icon-theme does install a few softlinks:
    > ll /usr/share/icons/gnome/16x16/status/nm-*
    lrwxrwxrwx 1 root root 16 Jun 3 2014 nm-adhoc.png -> network-idle.png
    lrwxrwxrwx 1 root root 16 Jun 3 2014 nm-device-wired.png -> network-idle.png
    lrwxrwxrwx 1 root root 16 Jun 3 2014 nm-device-wireless.png -> network-idle.png
    lrwxrwxrwx 1 root root 19 Jun 3 2014 nm-no-connection.png -> network-offline.png
    though that's missing quite a few:
    > pacman -Ql network-manager-applet | grep icons
    network-manager-applet /usr/share/icons/hicolor/22x22/
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-adhoc.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-device-wired.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-device-wwan.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-mb-roam.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-no-connection.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-secure-lock.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-signal-00.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-signal-100.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-signal-25.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-signal-50.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-signal-75.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage01-connecting01.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage01-connecting02.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage01-connecting03.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage01-connecting04.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage01-connecting05.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage01-connecting06.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage01-connecting07.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage01-connecting08.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage01-connecting09.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage01-connecting10.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage01-connecting11.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage02-connecting01.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage02-connecting02.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage02-connecting03.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage02-connecting04.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage02-connecting05.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage02-connecting06.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage02-connecting07.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage02-connecting08.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage02-connecting09.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage02-connecting10.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage02-connecting11.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage03-connecting01.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage03-connecting02.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage03-connecting03.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage03-connecting04.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage03-connecting05.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage03-connecting06.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage03-connecting07.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage03-connecting08.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage03-connecting09.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage03-connecting10.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-stage03-connecting11.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-tech-3g.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-tech-cdma-1x.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-tech-edge.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-tech-evdo.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-tech-gprs.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-tech-hspa.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-tech-lte.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-tech-umts.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-active-lock.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting01.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting02.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting03.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting04.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting05.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting06.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting07.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting08.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting09.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting10.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting11.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting12.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting13.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-vpn-connecting14.png
    network-manager-applet /usr/share/icons/hicolor/22x22/apps/nm-wwan-tower.png
    So now I'm wondering how to make it use the symbolic icons in /usr/share/icons/gnome/scalable/status/network-*-symbolic.svg like it used to some time ago? Just creating links like this doesn't they don't get picked up:
    > ls -l /usr/share/icons/gnome/scalable/status/nm-*
    lrwxrwxrwx 1 root root 46 Jan 14 21:22 nm-signal-100.svg -> network-wireless-signal-excellent-symbolic.svg
    lrwxrwxrwx 1 root root 41 Jan 14 21:23 nm-signal-75.svg -> network-wireless-signal-good-symbolic.svg

  • How can I open a saved report in WEBI applet

    Hello -
    We have successfully integrated the BO WEBI applet into our web application, and have created reports using the "Save As" option.  However, we don't seem to have access to these reports.  There does not seem to be an "Open File" or "Open Report" icon in the applet toolbar that we can use to access the reports that we have created and saved.  Is this capability not available in the WEBI?  There also doesn't seem to be an easy-to-find explanation of what we are doing wrong.
    Thank you for any help.

    Ted -
    Thanks for your response.  We tried what you suggested, and it does indeed work for the first document you load.
    However, now I see the effects of not having an Open icon in the applet's toolbar.  So we have a "list widget" in our app from which the user can select a report to load into the applet for viewing or editing.  The way it works, as you suggested, is to provide the doc id and name thru the applet parameters.   So after selecting a document, we rerender (via ajax) the panel that contains the applet, which, of course, causes the applet to completely reload - which is very ugly, clunky, and something that seems unnecessary. (We actually get an error when we try to select another report, telling us that we need to close down the applet and log in again, but this error is beside the point for now.)
    The first sentence of your initial reply was to say that there is no Open method.  By this, were you also implying that there is no java method call in the applet I can make via javascript on the page?  I would really like to be able to load a new document into the applet without having to suffer thru a reload.  Is there any java api exposed for the applet that I can possibly use to load a new document "on the fly"?  I haven't been able to
    Thanks again for any help.

  • Images and fonts in JList

    How to add icon to JList? But I need to add icon in spacial way (so common metho of changing of cellRenderer don`t help) I need to add icons at two places, at the beginging of word and at the end of word (aligned to right border).
    Also how to change font of one of elements, for example I need to add red bold text.

    here is an example hope that it helps you...
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    *This is a class that can genernate the font dialog and returns the font
    *@author David Rubin
    *@version 1.2  15 july 2005
    public class FontDialog extends JDialog
        private static final String FONT_NAMES [] = GraphicsEnvironment.getLocalGraphicsEnvironment ().getAvailableFontFamilyNames ();
        private Font returnFont = null;
        private DefaultListModel fontModel = new DefaultListModel ();
        private JList fontNames;
        private SpinnerNumberModel spinModel = new SpinnerNumberModel (12, 1, 150, 1);
        private JSpinner fontSizes = new JSpinner (spinModel);
        private JCheckBox bold = new JCheckBox ("Bold");
        private JCheckBox italic = new JCheckBox ("Italic");
        private JTextField canvas = new JTextField ("aB cb gG xX yY zZ the old man");
        private int prop = 0;
        public FontDialog (JFrame parent)
       super (parent, "Font Dialog", true);
       ((JSpinner.DefaultEditor) fontSizes.getEditor ()).getTextField ()
              .addKeyListener (new KeyAdapter ()
           public void keyTyped (KeyEvent e)
          if (!Character.isDigit (e.getKeyChar ()))
              e.consume ();
       fontSizes.addChangeListener (new ChangeListener ()
           public void stateChanged (ChangeEvent e)
          canvas.setFont (new Font ((String) fontNames.getSelectedValue (), prop, ((Integer) fontSizes.getValue ()).intValue ()));
       fontNames = new JList (fontModel);
       fontNames.addListSelectionListener (new ListSelectionListener ()
           public void valueChanged (ListSelectionEvent e)
          canvas.setFont (new Font ((String) fontNames.getSelectedValue (), prop, ((Integer) fontSizes.getValue ()).intValue ()));
       for (int i = 0 ; i < FONT_NAMES.length ; i++)
           fontModel.addElement (FONT_NAMES );
    fontNames.setCellRenderer (new MyCellRenderer ());
    JScrollPane scrolPane = new JScrollPane (fontNames);
    this.getContentPane ().add (scrolPane, BorderLayout.WEST);
    ActionListener act = new ActionListener ()
    public void actionPerformed (ActionEvent e)
    if (e.getSource () == bold)
    prop ^= Font.BOLD;
    else if (e.getSource () == italic)
    prop ^= Font.ITALIC;
    canvas.setFont (new Font ((String) fontNames.getSelectedValue (), prop, ((Integer) fontSizes.getValue ()).intValue ()));
    ActionListener actList = new ActionListener ()
    public void actionPerformed (ActionEvent e)
    Font t = canvas.getFont ();
    String s;
    if (t.isBold () && t.isItalic ())
    s = "Font.BOLD|Font.ITALIC";
    else if (t.isBold ())
    s = "Font.BOLD";
    else if (t.isItalic ())
    s = "Font.ITALIC";
    else
    s = "Font.PLAIN";
    System.out.println ("Font f=new Font(\"" + t.getFontName () + "\"," + s + "," + t.getSize () + ");");
    JPanel pan = new JPanel ();
    bold.addActionListener (act);
    italic.addActionListener (act);
    pan.add (bold);
    pan.add (italic);
    pan.add (fontSizes);
    pan.setBorder (BorderFactory.createTitledBorder ("Options"));
    JPanel pan1 = new JPanel ();
    pan1.add (pan);
    JButton but = new JButton ("Print Font ");
    but.addActionListener (actList);
    pan1.add (but);
    canvas.setMinimumSize (new Dimension (50, 60));
    canvas.setPreferredSize (new Dimension (50, 60));
    this.getContentPane ().add (pan1, BorderLayout.EAST);
    this.getContentPane ().add (canvas, BorderLayout.SOUTH);
    pack ();
    this.setVisible (true);
    class MyCellRenderer extends JLabel implements ListCellRenderer
    public Component getListCellRendererComponent (JList list, Object value,
    int index, boolean isSelected, boolean cellHasFocus)
    String s = value.toString ();
    setText (s);
    if (isSelected)
    this.setBackground (list.getSelectionBackground ());
    this.setForeground (list.getSelectionForeground ());
    else
    this.setBackground (list.getBackground ());
    this.setForeground (list.getForeground ());
    this.setEnabled (list.isEnabled ());
    this.setFont (new Font (s, Font.PLAIN, 13));
    setOpaque (true);
    return this;
    public Font getFont ()
    return canvas.getFont ();
    public static void main (String [] args)
    FontDialog fontdialog = new FontDialog (null);

  • Applet inside of cfdocument

    I'm trying to allow users to create PDF versions of web pages
    for printing tables and figures to be inserted into reports sent to
    our clients. These PDF's need to be in a specific format. The one
    thing I haven't been able to figure out so far is how to get our
    applets to render inside of a cfdocument. We use an applet for
    doing advanced charting of data that is not possible with cfchart.
    Anyone have any ideas how to get an applet to show in its loaded
    form inside of a cfdocument?
    When I run the code, I get an icon inside the applet
    container showing a document with a question mark and an error
    message of "No pilot configured for 'application/java'".
    Thanks for your help,
    Rob

    I do not know if that is possible. Could you generate an
    image (jpg, png, ...) and use it in the cfdocument?

  • Problem with an Applet

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.applet.*;
    public class TabbedPaneApplet extends Applet{
         public TabbedPaneApplet(){
            setLayout(new FlowLayout());
                 // create JTabbedPane
              JTabbedPane tabbedPane = new JTabbedPane();
              JPanel panelOne = new JPanel();
              panelOne.setLayout( new GridLayout(3, 3, 3, 3) ); 
              panelOne.add( new JButton("1"));
              panelOne.add( new JButton("2"));
              panelOne.add( new JButton("3"));
              panelOne.add( new JButton("4"));
              panelOne.add( new JButton("5"));
              panelOne.add( new JButton("6"));
              panelOne.add( new JButton("7"));
              panelOne.add( new JButton("8"));
              panelOne.add( new JButton("9"));
              tabbedPane.addTab( "Tab One", null, panelOne, "First Panel" );
              // set up panel2 and add it to JTabbedPane
              JPanel panelTwo = new JPanel( new BorderLayout());
              JLabel dukeLabel = new JLabel();
              Icon duke = new ImageIcon( "duke.gif" );                       
              dukeLabel.setIcon( duke );                                   
              dukeLabel.setToolTipText( "Duke Sucks!" );               
              panelTwo.add( dukeLabel, BorderLayout.CENTER );
              tabbedPane.addTab( "Tab Two", null, panelTwo, "Second Panel" );
              // set up panel3 and add it to JTabbedPane
              JPanel panelThree = new JPanel( new BorderLayout());
              JLabel midtermLabel = new JLabel( "Don't forget the midterm in week 5.", SwingConstants.CENTER);
              panelThree.add( midtermLabel, BorderLayout.CENTER );
              tabbedPane.addTab( "Tab Three", null, panelThree, "Third Panel" );      
            add( tabbedPane );
            setSize(600,600);
              setVisible(true);     
         // Setup the GUI.
         public void init(){
              TabbedPaneApplet myApplet = new TabbedPaneApplet();
    }The problem is that it will only work if i remove the icon. If i attempt to put in the icon, then the applet will fail to load. This does compile and run in full as a normal program, and it compiles as an applet. It just won't display as an applet if the icon code is in there. Any suggestions on why this might occur?
    Thanks.

    I was wrong the code is as i show you, please forgive me the problem is when you use the URL as a parameter
    I fix it as you see in this little example.
    import java.awt.*;
    import java.applet.*;
    import javax.swing.*;
    import java.net.*;
    public class Foo extends Applet {
         private JLabel label;
         private JPanel panel;
         private Image image;
         private Icon icon;
         public void init() {
              setSize(400, 400);
              setLayout(new GridLayout(1, 1));
              //copy you name of the image in the second parameter
              image = getImage(getDocumentBase(), "funnywindow.gif");
              icon = new ImageIcon(image);
              label = new JLabel(icon);
              label.setSize(300, 300);
              panel = new JPanel();
              panel.setSize(400, 400);
              panel.add(label);
              panel.setBorder(BorderFactory.createLineBorder(Color.black, 2));
              add(panel);
              setVisible(true);
    }

  • Retaining Custom made Icons For Automator Apps

    Hello, I've noticed that when I give a custom made icon to an Automator app, it will display it on my Mac but when I send it to someone, it's original icon is displayed. Is there any way to have it display the custom made icon even when I send it to someone else?

    Jerry,
    I suspect you are using the old trick from the Classic OS of just transferring the icons between the Info windows.
    I think there is a way to retain that icon but it is quite involved. I haven't tried this so just guessing at this point.
    The normal icon for the Automator app is stored in the package that is created when you save the completed workflow. You can get access to the package by using the Show Package Contents contextual menu item in the Finder.
    Inside the package you will find a number of files and folders. Within the Resources folder you will find two files related to the icons for the package, one for the Applet and one for documents.
    The Applet icon file is the one that you need to work on and change to retain your modified icon. There is a little utility called Icon Composer that is an Apple product available on my machine in the Open with dropdown contextual menu. This might have been installed with the Developer tools though.
    Within Icon Composer you can replace the icons within the Applet file and they should stick upon transfer to another machine. Here is the description within the help files of Icon Composer.
    "You need to give IconComposer at least one image to generate an icon (.icns) file. However, you should provide four different versions of the icon. IconComposer optimizes each version for rendering at the resolutions of 128x128 pixels, 48x48 pixels, 32x32 pixels, and 16x16 pixels.
    If you give IconComposer only one image, it should be optimized to look best at 128x128 pixels. This ensures it looks goods when displayed at the maximum resolution of 128x128 pixels, and looks acceptable when scaled down to the smaller resolutions.
    If you supply different sizes of the icon to IconComposer, you should also provide 1-bit image masks for the three smaller resolutions. An image mask defines what parts of the icon are clickable. Assuming the color black is used to compose the image mask, any areas that are colored black in the mask define which parts of the icon can receive mouse clicks.
    IconComposer can create icons from the following image formats: GIF, JPEG, PDF, PICT, PNG, TIFF, and any of the QuickTime-supported image formats. To create the actual icon file, drag the icon images to the corresponding image wells in IconComposer. Then choose Save from the File menu, which prompts you to name the icon file and choose a location for it."
    So as you can see it could be quite involved.
    It might be easier to develop a method to automate what you are currently doing and provide the people with a blank file that has the other icon to transfer.

  • T410 + Ubuntu Lucid: Two Weeks of Use (the Good, the Bad, the Ugly)

    System 
    Lenovo ThinkPad T410 laptop, Integrated Intel Graphics, Intel Centrino Advanced-N 6200 wireless.
    Fixed
    Resume did not work after second suspend. Fixed by updating BIOS. https://bugs.launchpad.net/ubuntu/+source/linux/+bug/532374
    Font antialiasing misconfiguration that made small fonts look bad; had to edit ~/.fonts.conf manually to defeat the system preventing antialiasing at small font sizes. Screen is small (14") but has very high resolution (1440x900), so this seems to work ok here.
    Evolution doesn't autocomplete the email addresses of people you communicate with regularly. Fixed: turn on automatic contacts and autocomplete.
    Printer config didn't work til I changed system-config-printer to not use the Python on the user path: https://bugs.launchpad.net/ubuntu/+source/system-config-printer/+bug/328657
    Emacs copy/cut (meta-W, ctrl-W) doesn't put the text being operated on into the X clipboard. Likewise, putting something into the X clipboard doesn't make it possible to paste it into Emacs via ctrl-Y. Fixed via:
    (global-set-key "\C-w" 'clipboard-kill-region)
    (global-set-key "\M-w" 'clipboard-kill-ring-save)
    (global-set-key "\C-y" 'clipboard-yank)
    See also http://www.emacswiki.org/emacs/CopyAndPaste#toc2
    Toggle state of hardware mute button and software mute button not synchronized. If you hit the hardware mute button, it lights. If you subsequently unmute via software, the sound is umuted, but the hardware mute button remains lit. Pressing the lit hardware mute button in that state will result in the hardware mute button becoming unlit but the sound muted. Seems to have gotten fixed in upgrade to 2.6.34-999-generic kernel while trying to fix USB resume issue.
    USB broken after resume: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/566149 . (Installed http://kernel.ubuntu.com/~kernel-ppa/mainline/daily/2010-05-06-lucid/ aka kernel version 2.6.34-999-generic as per the instructions in https://wiki.ubuntu.com/KernelTeam/MainlineBuilds while waiting for "official" kernel update from Ubuntu).
    Outstanding
    Sometimes Bluetooth icon in indicator applet shows a red X next to it, sometimes it doesn't. I haven't bothered with Bluetooth yet, so I don't know why it's changing state.
    Sometimes audio mute button stops working. What's in syslog: keyboard.c: can't emulate rawmode for keycode 240 for each button press. Not sure why it works sometimes and not others.
    HDMI audio probably busted with installation of http://kernel.ubuntu.com/~kernel-ppa/mainline/daily/2010-05-06-lucid/ to fix https://bugs.launchpad.net/ubuntu/+source/linux/+bug/5661492. KDE came up and warned me the device had disappeared when I rebooted with the new kernel.
    Complete system lockups at various points (maybe once every couple days) requiring a hard power reset. I haven't been able to distinguish a pattern yet. Might be related to the wireless errors below; someone else claimed that a similar wireless card got hot enough under Linux to cause disconnects and weird system behavior. I haven't seen crazy temperatures yet though.
    Wireless network card (Intel Centrino Advanced-N 6200, using the iwlagn driver) freaks out every 20 minutes or so and "restarts" (whatever that means). Seems to be a firmware problem. Symptom: Microcode SW error detected.  Restarting 0x2000000. in syslog. sudo iwconfig wlan0 power off doesn't fix it, upgrade to 2.6.34.99 kernel didn't fix it, can't seem to find any newer firmware to try than what's in http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-6000-ucode-9.193.4.1.tgz. Reported bug at http://bugzilla.intellinuxwireless.org/show_bug.cgi?id=2205 as per http://www.intellinuxwireless.org/?n=fw_error_report
    Some potentially related Ubuntu info: http://ubuntuforums.org/archive/index.php/t-1142917.html
    WTF in syslog, every so often: wpa_supplicant[1196]: CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys plus about 10 other lines of gibberish. Probably related to the microcode problem above, no use trying to figure it out until that gets fixed. See also https://bugs.launchpad.net/ubuntu/+source/linux/+bug/548992
    At boot time, xdpyinfo | grep resolution still reports wrong DPI (reported: 96x96; actual: 120x120) and screen size (reported: 381x238mm; actual: 300x190mm) even after generating an xorg.conf and adding a DisplaySize 300 190 to the single Section "Monitor" in the config. This doesn't seem to be harming anything, but I don't know really what uses this info. Using xrandr -dpi 120 fixes the resolution and screen size reported by xdpyinfo.
    Firefox is a problem child for display at 120DPI (native screen DPI); some fonts are huge or tiny when they shouldn't be. Setting the layout.css.dpi in about:config to 120 seems to have no effect. This makes Firefox unusable for me on this system. Thankfully, Google Chrome doesn't have the same problem.
    Fingerprint reader unsupported.
    When bringing up a backgrounded Emacs window, sometimes Emacs refuses to give me control of the point in that window until I sacrifice the chicken of selecting any item from that window's menu bar.
    Emacs acts upon first click of any frame; clicking in a background emacs window reposititions the point in that window. I tried to fix this by adding (setq x-mouse-click-focus-ignore-position t) to my .emacs file as per http://www.gnu.org/software/emacs/manual/html_node/emacs/Mouse-Commands.html. This actually solved the problem: the first click of a window no longer repositioned the point. Unfortunately, contrary to the docs and contrary to the experience of somebody else in #emacs on freenode IRC, this setting also makes the mouse useless for selecting text, moving the point, or scrolling the window text in emacs. It just won't do any of those things for me anymore when this option is set. I can't even shift click on a window to set the font size. This symptom is worse than the problem I was trying to solve by doing it, so I left it off.
    Audio CD burning doesn't work from Rhythmbox: https://bugs.launchpad.net/ubuntu/lucid/+source/brasero/+bug/543892
    Pulse Audio advertises airport express send capability; it doesn't actually work (very choppy playback, unlistenable). http://pulseaudio.org/ticket/495#comment:23
    Opening Rhythmbox from the applications menu doesn't actually open the main window, it just creates a toolbar icon. You then need to know enough to go click on "Show Rhythmbox" in the toolbar icon dropdown.
    Konversation: sometimes the mouse pointer "disappears" while hovering over the nick list and the channel list. Only fixed by a restart of Konversation (closing the window and restoring it from the system tray doesn't help).
    Cut and paste is, as always, horrific. You need to use Shift-Ctrl-C in the Gnome terminal vs. Ctrl-C in other Gnome apps; Emacs meta-W doesn't put things onto the X clipboard by default, etc. I really don't understand why you can't remap cut copy and paste under Gnome. If you could remap the Gnome keybindings for cut, paste, copy, etc, I'd bind copy to Windowskey-C, paste to Windowskey-V, cut to Windowskey-X, and Undo to Windowskey-Z. Then at least for all Gnome apps that followed the system keybindings, most of the pain would disappear, because the cutnpaste shortcuts wouldn't step on alternate meanings.
    Still doesn't look quite as nice as the Mac does, dispite newer and better video and display hardware, no matter how many hours I spend messing around with display settings, font settings, etc.

    Not sure how you figure it's an "advanced router" problem.  I'd be happy to buy a different router, but I'd need to be told which one to buy. The router I'm connecting to is a barebones Linksys WRT54G (the blue and black one with the two antennas that you see everywhere).  These routers are maybe the most common router on the planet, AFAICT.
    I have also seen Compiz lockups, but I didn't mention those in the above; the lockups I'm seeing are true system lockups.  The system stops responding to any input on network, so it cannot even be restarted remotely.

  • (SOLVED) avant-window-navigator errors

    When i try to load avant or try to start the dock preferences i get this error:
    [unilx@online ~]$ avant-window-navigator
    Screen is composited
    ** (avant-window-navigator:2496): DEBUG: Updating gtk theme colours
    ** (avant-window-navigator:2496): DEBUG: Updating dialog colours
    ** (avant-window-navigator:2496): DEBUG: Spawned awn-applet[2500] for "quick-prefs.desktop", UID: 1, XID: 27263014
    ** (avant-window-navigator:2496): DEBUG: Spawned awn-applet[2502] for "taskmanager.desktop", UID: 3, XID: 27263015
    ** (awn-applet:2502): CRITICAL **: File not found: '/usr/share/applications/firefox.desktop'
    ** (awn-applet:2502): DEBUG: task_manager_refresh_launcher_paths: Bad desktop file '/usr/share/applications/firefox.desktop'
    ** (awn-applet:2502): WARNING **: The launcher '/usr/share//applications//kde4/konsole.desktop' could not load the icon 'utilities-terminal': Icon 'utilities-terminal' not present in theme
    (awn-applet:2502): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_height: assertion `GDK_IS_PIXBUF (pixbuf)' failed
    (awn-applet:2502): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_width: assertion `GDK_IS_PIXBUF (pixbuf)' failed
    (awn-applet:2502): GdkPixbuf-CRITICAL **: gdk_pixbuf_scale_simple: assertion `GDK_IS_PIXBUF (src)' failed
    (awn-applet:2502): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    ** (awn-applet:2502): CRITICAL **: task_item_icon_changed: assertion `icon' failed
    (awn-applet:2502): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    ** (awn-applet:2502): CRITICAL **: File not found: '/usr/share/applications/firefox.desktop'
    ** (awn-applet:2502): DEBUG: task_manager_refresh_launcher_paths: Bad desktop file '/usr/share/applications/firefox.desktop'
    Applet [1] flags: 1024: DockletHandlesPositionChange
    ** Message: pygobject_register_sinkfunc is deprecated (AwnOverlay)
    Traceback (most recent call last):
    File "/usr/bin/awn-settings", line 1223, in <module>
    awnmanager = awnManagerMini()
    File "/usr/bin/awn-settings", line 1072, in __init__
    self.createMainMenu()
    File "/usr/bin/awn-settings", line 1137, in createMainMenu
    self.safe_load_icon('gtk-execute', size, gtk.ICON_LOOKUP_USE_BUILTIN),
    File "/usr/share/avant-window-navigator/awn-settings/awnClass.py", line 1044, in safe_load_icon
    icon = self.theme.load_icon('gtk-missing-image', size, flags)
    glib.GError: Icon 'gtk-missing-image' not present in theme
    thx
    Last edited by unilx (2011-05-18 23:02:31)

    I get the impression that the file "/usr/share/applications/firefox.desktop" is missing I would copy another random file to that name, run avant-window-navigator, remove the launcher and then delete the surrogate file.

  • Gnome 3 starting in fallbackmode

    Hi all.
    I've a Inspiron 9400 with a Radeon Mobility X1400 card. Gnome 3 starts in fallback it says that card have no accelerated support, but when I try a Fedora Live with Gnome 3 it starts correctly in standard mode.
    I'm not using t xorg.conf file and I'm using the open source drivers xf86-video-ati (the same as Live Fedora).
    Some logs:
    $HOME/.xsession-errors
    gnome-session-is-accelerated: No hardware 3D support.
    gnome-session-check-accelerated: Helper exited with code 256
    gnome-session[14033]: WARNING: Session 'gnome' runnable check failed: Salió con el código 1
    gnome-session[14033]: EggSMClient-WARNING: Desktop file '/home/dani/.config/autostart/dropbox.desktop' has malformed Icon key 'dropbox.png'(should not include extension)
    GNOME_KEYRING_CONTROL=/tmp/keyring-qcEhuG
    GNOME_KEYRING_PID=14061
    GNOME_KEYRING_CONTROL=/tmp/keyring-qcEhuG
    GPG_AGENT_INFO=/tmp/keyring-qcEhuG/gpg:0:1
    SSH_AUTH_SOCK=/tmp/keyring-qcEhuG/ssh
    GNOME_KEYRING_CONTROL=/tmp/keyring-qcEhuG
    GPG_AGENT_INFO=/tmp/keyring-qcEhuG/gpg:0:1
    GNOME_KEYRING_CONTROL=/tmp/keyring-qcEhuG
    GPG_AGENT_INFO=/tmp/keyring-qcEhuG/gpg:0:1
    SSH_AUTH_SOCK=/tmp/keyring-qcEhuG/ssh
    (gnome-settings-daemon:14062): keybindings-plugin-WARNING **: La combinación de teclas (screenreader) está incompleta
    (gnome-settings-daemon:14062): keybindings-plugin-WARNING **: La combinación de teclas (magnifier) está incompleta
    (gnome-settings-daemon:14062): keybindings-plugin-WARNING **: La combinación de teclas (onscreenkeyboard) está incompleta
    WARNING: gnome-keyring:: no socket to connect to
    ** (gsynaptics-init:14149): WARNING **: Using synclient
    [2011-12-11 19:22] [WARNING] System is not able to show notifications.
    ** (gnome-fallback-mount-helper:14135): DEBUG: Starting automounting manager
    ** (gnome-fallback-mount-helper:14135): DEBUG: Found ConsoleKit session at path /org/freedesktop/ConsoleKit/Session8
    ** (gnome-fallback-mount-helper:14135): DEBUG: ScreenSaver name vanished
    ** (gnome-fallback-mount-helper:14135): DEBUG: ConsoleKit session is active 1
    Failed to play sound: File or data not found
    ** Message: applet now removed from the notification area
    ** (gnome-fallback-mount-helper:14135): DEBUG: ScreenSaver name appeared
    ** (gnome-fallback-mount-helper:14135): DEBUG: ScreenSaver proxy ready
    ** (gnome-fallback-mount-helper:14135): DEBUG: Screensaver GetActive() returned 0
    ** (nm-applet:14137): WARNING **: get_all_cb: couldn't retrieve system settings properties: (25) Launch helper exited with unknown return code 1.
    ** (nm-applet:14137): WARNING **: fetch_connections_done: error fetching connections: (25) Launch helper exited with unknown return code 1.
    ** (nm-applet:14137): WARNING **: Failed to register as an agent: (25) Launch helper exited with unknown return code 1
    QSystemTrayIcon::setVisible: No Icon set
    ** Message: applet now embedded in the notification area
    ** Message: applet now removed from the notification area
    ** (gnome-fallback-mount-helper:14135): DEBUG: ConsoleKit session is active 0
    ** (gnome-fallback-mount-helper:14135): DEBUG: ConsoleKit session is active 1
    (gnome-settings-daemon:14062): color-plugin-WARNING **: Done switch to new account, reload devices
    (exe:15399): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    /var/log/Xorg.0.log
    [ 3488.635]
    X.Org X Server 1.11.3
    Release Date: 2011-12-16
    [ 3488.635] X Protocol Version 11, Revision 0
    [ 3488.635] Build Operating System: Linux 3.1.5-1-ARCH i686
    [ 3488.635] Current Operating System: Linux leize 3.1.5-1-ARCH #1 SMP PREEMPT Sun Dec 11 06:26:14 UTC 2011 i686
    [ 3488.635] Kernel command line: root=/dev/sda2 ro vga=791
    [ 3488.635] Build Date: 17 December 2011 09:38:27AM
    [ 3488.635]
    [ 3488.635] Current version of pixman: 0.24.0
    [ 3488.635] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 3488.636] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 3488.636] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Dec 21 19:22:21 2011
    [ 3488.636] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 3488.636] (==) No Layout section. Using the first Screen section.
    [ 3488.636] (==) No screen section available. Using defaults.
    [ 3488.636] (**) |-->Screen "Default Screen Section" (0)
    [ 3488.636] (**) | |-->Monitor "<default monitor>"
    [ 3488.636] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 3488.636] (==) Automatically adding devices
    [ 3488.636] (==) Automatically enabling devices
    [ 3488.636] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 3488.636] Entry deleted from font path.
    [ 3488.637] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 3488.637] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 3488.637] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 3488.637] (II) Loader magic: 0x8228580
    [ 3488.637] (II) Module ABI versions:
    [ 3488.637] X.Org ANSI C Emulation: 0.4
    [ 3488.637] X.Org Video Driver: 11.0
    [ 3488.637] X.Org XInput driver : 13.0
    [ 3488.637] X.Org Server Extension : 6.0
    [ 3488.638] (--) PCI:*(0:1:0:0) 1002:7145:1028:2002 rev 0, Mem @ 0xd0000000/268435456, 0xefdf0000/65536, I/O @ 0x0000ee00/256, BIOS @ 0x????????/131072
    [ 3488.638] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 3488.638] (II) LoadModule: "extmod"
    [ 3488.638] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 3488.638] (II) Module extmod: vendor="X.Org Foundation"
    [ 3488.638] compiled for 1.11.3, module version = 1.0.0
    [ 3488.638] Module class: X.Org Server Extension
    [ 3488.638] ABI class: X.Org Server Extension, version 6.0
    [ 3488.638] (II) Loading extension MIT-SCREEN-SAVER
    [ 3488.638] (II) Loading extension XFree86-VidModeExtension
    [ 3488.638] (II) Loading extension XFree86-DGA
    [ 3488.638] (II) Loading extension DPMS
    [ 3488.638] (II) Loading extension XVideo
    [ 3488.638] (II) Loading extension XVideo-MotionCompensation
    [ 3488.638] (II) Loading extension X-Resource
    [ 3488.638] (II) LoadModule: "dbe"
    [ 3488.639] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 3488.639] (II) Module dbe: vendor="X.Org Foundation"
    [ 3488.639] compiled for 1.11.3, module version = 1.0.0
    [ 3488.639] Module class: X.Org Server Extension
    [ 3488.639] ABI class: X.Org Server Extension, version 6.0
    [ 3488.639] (II) Loading extension DOUBLE-BUFFER
    [ 3488.639] (II) LoadModule: "glx"
    [ 3488.639] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 3488.639] (II) Module glx: vendor="X.Org Foundation"
    [ 3488.639] compiled for 1.11.3, module version = 1.0.0
    [ 3488.639] ABI class: X.Org Server Extension, version 6.0
    [ 3488.639] (==) AIGLX enabled
    [ 3488.639] (II) Loading extension GLX
    [ 3488.639] (II) LoadModule: "record"
    [ 3488.639] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 3488.639] (II) Module record: vendor="X.Org Foundation"
    [ 3488.639] compiled for 1.11.3, module version = 1.13.0
    [ 3488.639] Module class: X.Org Server Extension
    [ 3488.639] ABI class: X.Org Server Extension, version 6.0
    [ 3488.639] (II) Loading extension RECORD
    [ 3488.640] (II) LoadModule: "dri"
    [ 3488.640] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 3488.640] (II) Module dri: vendor="X.Org Foundation"
    [ 3488.640] compiled for 1.11.3, module version = 1.0.0
    [ 3488.640] ABI class: X.Org Server Extension, version 6.0
    [ 3488.640] (II) Loading extension XFree86-DRI
    [ 3488.640] (II) LoadModule: "dri2"
    [ 3488.640] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 3488.640] (II) Module dri2: vendor="X.Org Foundation"
    [ 3488.640] compiled for 1.11.3, module version = 1.2.0
    [ 3488.640] ABI class: X.Org Server Extension, version 6.0
    [ 3488.640] (II) Loading extension DRI2
    [ 3488.640] (==) Matched ati as autoconfigured driver 0
    [ 3488.640] (==) Matched vesa as autoconfigured driver 1
    [ 3488.640] (==) Matched fbdev as autoconfigured driver 2
    [ 3488.640] (==) Assigned the driver to the xf86ConfigLayout
    [ 3488.640] (II) LoadModule: "ati"
    [ 3488.641] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 3488.641] (II) Module ati: vendor="X.Org Foundation"
    [ 3488.641] compiled for 1.11.1.902, module version = 6.14.3
    [ 3488.641] Module class: X.Org Video Driver
    [ 3488.641] ABI class: X.Org Video Driver, version 11.0
    [ 3488.641] (II) LoadModule: "radeon"
    [ 3488.641] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 3488.641] (II) Module radeon: vendor="X.Org Foundation"
    [ 3488.641] compiled for 1.11.1.902, module version = 6.14.3
    [ 3488.641] Module class: X.Org Video Driver
    [ 3488.641] ABI class: X.Org Video Driver, version 11.0
    [ 3488.641] (II) LoadModule: "vesa"
    [ 3488.642] (WW) Warning, couldn't open module vesa
    [ 3488.642] (II) UnloadModule: "vesa"
    [ 3488.642] (II) Unloading vesa
    [ 3488.642] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 3488.642] (II) LoadModule: "fbdev"
    [ 3488.642] (WW) Warning, couldn't open module fbdev
    [ 3488.642] (II) UnloadModule: "fbdev"
    [ 3488.642] (II) Unloading fbdev
    [ 3488.642] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 3488.642] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200, ATI Radeon 4100,
    ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100,
    ATI Radeon HD 4290, ATI Radeon HD 4250, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, AMD Radeon HD 6900 Series,
    AMD Radeon HD 6900 Series, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
    BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS
    [ 3488.647] (++) using VT number 7
    [ 3488.672] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 3488.672] (II) [KMS] drm report modesetting isn't supported.
    [ 3488.672] (II) RADEON(0): TOTO SAYS 00000000efdf0000
    [ 3488.672] (II) RADEON(0): MMIO registers at 0x00000000efdf0000: size 64KB
    [ 3488.672] (II) RADEON(0): PCI bus 1 card 0 func 0
    [ 3488.672] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 3488.672] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 3488.672] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 3488.672] (==) RADEON(0): Default visual is TrueColor
    [ 3488.672] (II) Loading sub module "vgahw"
    [ 3488.672] (II) LoadModule: "vgahw"
    [ 3488.672] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 3488.673] (II) Module vgahw: vendor="X.Org Foundation"
    [ 3488.673] compiled for 1.11.3, module version = 0.1.0
    [ 3488.673] ABI class: X.Org Video Driver, version 11.0
    [ 3488.673] (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    [ 3488.673] (==) RADEON(0): RGB weight 888
    [ 3488.673] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 3488.673] (--) RADEON(0): Chipset: "ATI Mobility Radeon X1400" (ChipID = 0x7145)
    [ 3488.673] (--) RADEON(0): Linear framebuffer at 0x00000000d0000000
    [ 3488.673] (II) RADEON(0): PCIE card detected
    [ 3488.673] (II) Loading sub module "int10"
    [ 3488.673] (II) LoadModule: "int10"
    [ 3488.673] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 3488.673] (II) Module int10: vendor="X.Org Foundation"
    [ 3488.673] compiled for 1.11.3, module version = 1.0.0
    [ 3488.673] ABI class: X.Org Video Driver, version 11.0
    [ 3488.673] (II) RADEON(0): initializing int10
    [ 3488.674] (II) RADEON(0): Primary V_BIOS segment is: 0xc000
    [ 3488.674] (II) RADEON(0): ATOM BIOS detected
    [ 3488.674] (II) RADEON(0): ATOM BIOS Rom:
    [ 3488.674] SubsystemVendorID: 0x1028 SubsystemID: 0x2002
    [ 3488.674] IOBaseAddress: 0xee00
    [ 3488.674] Filename: BR19350.bin
    [ 3488.674] BIOS Bootup Message:
    ATI Mobility Radeon X1400
    [ 3488.674] (II) RADEON(0): Framebuffer space used by Firmware (kb): 20
    [ 3488.674] (II) RADEON(0): Start of VRAM area used by Firmware: 0x7ffb000
    [ 3488.674] (II) RADEON(0): AtomBIOS requests 20kB of VRAM scratch space
    [ 3488.674] (II) RADEON(0): AtomBIOS VRAM scratch base: 0x7ffb000
    [ 3488.674] (II) RADEON(0): Cannot get VRAM scratch space. Allocating in main memory instead
    [ 3488.674] (II) RADEON(0): Default Engine Clock: 432000
    [ 3488.674] (II) RADEON(0): Default Memory Clock: 396000
    [ 3488.674] (II) RADEON(0): Maximum Pixel ClockPLL Frequency Output: 1100000
    [ 3488.674] (II) RADEON(0): Minimum Pixel ClockPLL Frequency Output: 0
    [ 3488.674] (II) RADEON(0): Maximum Pixel ClockPLL Frequency Input: 13500
    [ 3488.674] (II) RADEON(0): Minimum Pixel ClockPLL Frequency Input: 1000
    [ 3488.674] (II) RADEON(0): Maximum Pixel Clock: 400000
    [ 3488.674] (II) RADEON(0): Reference Clock: 27000
    [ 3488.674] drmOpenDevice: node name is /dev/dri/card0
    [ 3488.675] drmOpenDevice: open result is 10, (OK)
    [ 3488.676] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 3488.676] drmOpenDevice: node name is /dev/dri/card0
    [ 3488.676] drmOpenDevice: open result is 10, (OK)
    [ 3488.676] drmOpenByBusid: drmOpenMinor returns 10
    [ 3488.676] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 3488.677] (II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.33.0
    [ 3488.677] (==) RADEON(0): Page Flipping disabled on r5xx and newer chips.
    [ 3488.677] (II) RADEON(0): Will try to use DMA for Xv image transfers
    [ 3488.677] (II) RADEON(0): Generation 2 PCI interface, using max accessible memory
    [ 3488.677] (II) RADEON(0): Detected total video RAM=131072K, accessible=262144K (PCI BAR=262144K)
    [ 3488.677] (--) RADEON(0): Mapped VideoRAM: 131072 kByte (64 bit DDR SDRAM)
    [ 3488.677] (II) RADEON(0): Color tiling enabled by default
    [ 3488.677] (II) Loading sub module "ddc"
    [ 3488.677] (II) LoadModule: "ddc"
    [ 3488.677] (II) Module "ddc" already built-in
    [ 3488.677] (II) Loading sub module "i2c"
    [ 3488.677] (II) LoadModule: "i2c"
    [ 3488.677] (II) Module "i2c" already built-in
    [ 3488.677] (II) RADEON(0): PLL parameters: rf=2700 rd=12 min=90000 max=110000; xclk=40000
    [ 3488.677] (WW) RADEON(0): LVDS Info:
    XRes: 1440, YRes: 900, DotClock: 96210
    HBlank: 320, HOverPlus: 64, HSyncWidth: 32
    VBlank: 12, VOverPlus: 1, VSyncWidth: 3
    [ 3488.677] (II) RADEON(0): Skipping TV-Out
    [ 3488.677] (II) RADEON(0): Skipping Component Video
    [ 3488.677] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 3488.678] (II) RADEON(0): I2C bus "VGA-0" initialized.
    [ 3488.678] (II) RADEON(0): Output LVDS has no monitor section
    [ 3488.678] (II) RADEON(0): I2C bus "LVDS" initialized.
    [ 3488.678] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 3488.678] (II) RADEON(0): I2C bus "DVI-0" initialized.
    [ 3488.678] (II) RADEON(0): Port0:
    [ 3488.678] XRANDR name: VGA-0
    [ 3488.678] Connector: VGA
    [ 3488.678] CRT1: INTERNAL_KLDSCP_DAC1
    [ 3488.678] DDC reg: 0x7e40
    [ 3488.678] (II) RADEON(0): Port1:
    [ 3488.678] XRANDR name: LVDS
    [ 3488.678] Connector: LVDS
    [ 3488.678] LCD1: INTERNAL_LVTM1
    [ 3488.678] DDC reg: 0x7e30
    [ 3488.678] (II) RADEON(0): Port2:
    [ 3488.678] XRANDR name: DVI-0
    [ 3488.678] Connector: DVI-I
    [ 3488.678] CRT2: INTERNAL_KLDSCP_DAC2
    [ 3488.678] DFP1: INTERNAL_KLDSCP_TMDS1
    [ 3488.678] DDC reg: 0x7e50
    [ 3488.678] (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    [ 3488.716] Dac detection success
    [ 3488.716] (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    [ 3488.716] finished output detect: 0
    [ 3488.716] (II) RADEON(0): I2C device "LVDS:ddc2" registered at address 0xA0.
    [ 3488.789] (II) RADEON(0): EDID for output LVDS
    [ 3488.789] (II) RADEON(0): Manufacturer: LPL Model: 0 Serial#: 0
    [ 3488.789] (II) RADEON(0): Year: 2005 Week: 0
    [ 3488.789] (II) RADEON(0): EDID Version: 1.3
    [ 3488.789] (II) RADEON(0): Digital Display Input
    [ 3488.789] (II) RADEON(0): Max Image Size [cm]: horiz.: 37 vert.: 23
    [ 3488.789] (II) RADEON(0): Gamma: 2.20
    [ 3488.789] (II) RADEON(0): No DPMS capabilities specified
    [ 3488.789] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 3488.789] (II) RADEON(0): First detailed timing is preferred mode
    [ 3488.789] (II) RADEON(0): redX: 0.592 redY: 0.344 greenX: 0.319 greenY: 0.553
    [ 3488.789] (II) RADEON(0): blueX: 0.159 blueY: 0.144 whiteX: 0.312 whiteY: 0.328
    [ 3488.789] (II) RADEON(0): Manufacturer's mask: 0
    [ 3488.789] (II) RADEON(0): Supported detailed timing:
    [ 3488.789] (II) RADEON(0): clock: 96.2 MHz Image Size: 367 x 23000 mm
    [ 3488.789] (II) RADEON(0): h_active: 1440 h_sync: 1504 h_sync_end 1536 h_blank_end 1760 h_border: 0
    [ 3488.789] (II) RADEON(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 912 v_border: 0
    [ 3488.789] (II) RADEON(0): WR539171WX2
    [ 3488.789] (II) RADEON(0): &5@Im
    [ 3488.789] (II) RADEON(0): EDID (in hex):
    [ 3488.789] (II) RADEON(0): 00ffffffffffff00320c000000000000
    [ 3488.789] (II) RADEON(0): 000f0103802517780a8ef09758518d28
    [ 3488.789] (II) RADEON(0): 24505400000001010101010101010101
    [ 3488.789] (II) RADEON(0): 0101010101019525a04051840c304020
    [ 3488.789] (II) RADEON(0): 13006fe6100000190000000000000000
    [ 3488.789] (II) RADEON(0): 00000000000000000000000000fe0057
    [ 3488.789] (II) RADEON(0): 52353339013137315758320a000000fe
    [ 3488.789] (II) RADEON(0): 00263540496d9dc8ff02010a202000c3
    [ 3488.789] (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    [ 3488.789] (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    [ 3488.789] (II) RADEON(0): Manufacturer: LPL Model: 0 Serial#: 0
    [ 3488.789] (II) RADEON(0): Year: 2005 Week: 0
    [ 3488.789] (II) RADEON(0): EDID Version: 1.3
    [ 3488.789] (II) RADEON(0): Digital Display Input
    [ 3488.789] (II) RADEON(0): Max Image Size [cm]: horiz.: 37 vert.: 23
    [ 3488.789] (II) RADEON(0): Gamma: 2.20
    [ 3488.789] (II) RADEON(0): No DPMS capabilities specified
    [ 3488.789] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 3488.789] (II) RADEON(0): First detailed timing is preferred mode
    [ 3488.789] (II) RADEON(0): redX: 0.592 redY: 0.344 greenX: 0.319 greenY: 0.553
    [ 3488.789] (II) RADEON(0): blueX: 0.159 blueY: 0.144 whiteX: 0.312 whiteY: 0.328
    [ 3488.789] (II) RADEON(0): Manufacturer's mask: 0
    [ 3488.789] (II) RADEON(0): Supported detailed timing:
    [ 3488.789] (II) RADEON(0): clock: 96.2 MHz Image Size: 367 x 2300000 mm
    [ 3488.789] (II) RADEON(0): h_active: 1440 h_sync: 1504 h_sync_end 1536 h_blank_end 1760 h_border: 0
    [ 3488.789] (II) RADEON(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 912 v_border: 0
    [ 3488.789] (II) RADEON(0): WR539171WX2
    [ 3488.789] (II) RADEON(0): &5@Im
    [ 3488.789] (II) RADEON(0): EDID (in hex):
    [ 3488.789] (II) RADEON(0): 00ffffffffffff00320c000000000000
    [ 3488.789] (II) RADEON(0): 000f0103802517780a8ef09758518d28
    [ 3488.789] (II) RADEON(0): 24505400000001010101010101010101
    [ 3488.789] (II) RADEON(0): 0101010101019525a04051840c304020
    [ 3488.789] (II) RADEON(0): 13006fe6100000190000000000000000
    [ 3488.789] (II) RADEON(0): 00000000000000000000000000fe0057
    [ 3488.789] (II) RADEON(0): 52353339013137315758320a000000fe
    [ 3488.789] (II) RADEON(0): 00263540496d9dc8ff02010a202000c3
    [ 3488.789] finished output detect: 1
    [ 3488.790] (II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0.
    [ 3488.827] Dac detection success
    [ 3488.827] (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    [ 3488.827] Unhandled monitor type 0
    [ 3488.827] finished output detect: 2
    [ 3488.827] finished all detect
    [ 3488.866] Dac detection success
    [ 3488.866] (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    [ 3488.866] (II) RADEON(0): EDID for output VGA-0
    [ 3488.938] (II) RADEON(0): EDID for output LVDS
    [ 3488.939] (II) RADEON(0): Manufacturer: LPL Model: 0 Serial#: 0
    [ 3488.939] (II) RADEON(0): Year: 2005 Week: 0
    [ 3488.939] (II) RADEON(0): EDID Version: 1.3
    [ 3488.939] (II) RADEON(0): Digital Display Input
    [ 3488.939] (II) RADEON(0): Max Image Size [cm]: horiz.: 37 vert.: 23
    [ 3488.939] (II) RADEON(0): Gamma: 2.20
    [ 3488.939] (II) RADEON(0): No DPMS capabilities specified
    [ 3488.939] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 3488.939] (II) RADEON(0): First detailed timing is preferred mode
    [ 3488.939] (II) RADEON(0): redX: 0.592 redY: 0.344 greenX: 0.319 greenY: 0.553
    [ 3488.939] (II) RADEON(0): blueX: 0.159 blueY: 0.144 whiteX: 0.312 whiteY: 0.328
    [ 3488.939] (II) RADEON(0): Manufacturer's mask: 0
    [ 3488.939] (II) RADEON(0): Supported detailed timing:
    [ 3488.939] (II) RADEON(0): clock: 96.2 MHz Image Size: 367 x 23000 mm
    [ 3488.939] (II) RADEON(0): h_active: 1440 h_sync: 1504 h_sync_end 1536 h_blank_end 1760 h_border: 0
    [ 3488.939] (II) RADEON(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 912 v_border: 0
    [ 3488.939] (II) RADEON(0): WR539171WX2
    [ 3488.939] (II) RADEON(0): &5@Im
    [ 3488.939] (II) RADEON(0): EDID (in hex):
    [ 3488.939] (II) RADEON(0): 00ffffffffffff00320c000000000000
    [ 3488.939] (II) RADEON(0): 000f0103802517780a8ef09758518d28
    [ 3488.939] (II) RADEON(0): 24505400000001010101010101010101
    [ 3488.939] (II) RADEON(0): 0101010101019525a04051840c304020
    [ 3488.939] (II) RADEON(0): 13006fe6100000190000000000000000
    [ 3488.939] (II) RADEON(0): 00000000000000000000000000fe0057
    [ 3488.939] (II) RADEON(0): 52353339013137315758320a000000fe
    [ 3488.939] (II) RADEON(0): 00263540496d9dc8ff02010a202000c3
    [ 3488.939] (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    [ 3488.939] (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    [ 3488.939] (II) RADEON(0): Manufacturer: LPL Model: 0 Serial#: 0
    [ 3488.939] (II) RADEON(0): Year: 2005 Week: 0
    [ 3488.939] (II) RADEON(0): EDID Version: 1.3
    [ 3488.939] (II) RADEON(0): Digital Display Input
    [ 3488.939] (II) RADEON(0): Max Image Size [cm]: horiz.: 37 vert.: 23
    [ 3488.939] (II) RADEON(0): Gamma: 2.20
    [ 3488.939] (II) RADEON(0): No DPMS capabilities specified
    [ 3488.939] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 3488.939] (II) RADEON(0): First detailed timing is preferred mode
    [ 3488.939] (II) RADEON(0): redX: 0.592 redY: 0.344 greenX: 0.319 greenY: 0.553
    [ 3488.939] (II) RADEON(0): blueX: 0.159 blueY: 0.144 whiteX: 0.312 whiteY: 0.328
    [ 3488.939] (II) RADEON(0): Manufacturer's mask: 0
    [ 3488.939] (II) RADEON(0): Supported detailed timing:
    [ 3488.939] (II) RADEON(0): clock: 96.2 MHz Image Size: 367 x 2300000 mm
    [ 3488.939] (II) RADEON(0): h_active: 1440 h_sync: 1504 h_sync_end 1536 h_blank_end 1760 h_border: 0
    [ 3488.939] (II) RADEON(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 912 v_border: 0
    [ 3488.939] (II) RADEON(0): WR539171WX2
    [ 3488.939] (II) RADEON(0): &5@Im
    [ 3488.939] (II) RADEON(0): EDID (in hex):
    [ 3488.939] (II) RADEON(0): 00ffffffffffff00320c000000000000
    [ 3488.939] (II) RADEON(0): 000f0103802517780a8ef09758518d28
    [ 3488.939] (II) RADEON(0): 24505400000001010101010101010101
    [ 3488.939] (II) RADEON(0): 0101010101019525a04051840c304020
    [ 3488.939] (II) RADEON(0): 13006fe6100000190000000000000000
    [ 3488.939] (II) RADEON(0): 00000000000000000000000000fe0057
    [ 3488.939] (II) RADEON(0): 52353339013137315758320a000000fe
    [ 3488.939] (II) RADEON(0): 00263540496d9dc8ff02010a202000c3
    [ 3488.939] (II) RADEON(0): EDID vendor "LPL", prod id 0
    [ 3488.939] (II) RADEON(0): EDID quirk: Detailed timings give vertical size in cm.
    [ 3488.939] (II) RADEON(0): Printing probed modes for output LVDS
    [ 3488.939] (II) RADEON(0): Modeline "1440x900"x59.9 96.21 1440 1504 1536 1760 900 901 904 912 -hsync -vsync (54.7 kHz)
    [ 3488.940] (II) RADEON(0): Modeline "1280x854"x59.9 89.25 1280 1352 1480 1680 854 857 867 887 -hsync +vsync (53.1 kHz)
    [ 3488.940] (II) RADEON(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 3488.940] (II) RADEON(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 3488.940] (II) RADEON(0): Modeline "1152x768"x59.8 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync (47.7 kHz)
    [ 3488.940] (II) RADEON(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz)
    [ 3488.940] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 3488.940] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 3488.977] Dac detection success
    [ 3488.977] (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    [ 3488.977] Unhandled monitor type 0
    [ 3488.977] (II) RADEON(0): EDID for output DVI-0
    [ 3488.977] (II) RADEON(0): Output VGA-0 disconnected
    [ 3488.977] (II) RADEON(0): Output LVDS connected
    [ 3488.977] (II) RADEON(0): Output DVI-0 disconnected
    [ 3488.977] (II) RADEON(0): Using exact sizes for initial modes
    [ 3488.977] (II) RADEON(0): Output LVDS using initial mode 1440x900
    [ 3488.977] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 3488.977] (==) RADEON(0): DPI set to (96, 96)
    [ 3488.977] (II) Loading sub module "fb"
    [ 3488.977] (II) LoadModule: "fb"
    [ 3488.978] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 3488.978] (II) Module fb: vendor="X.Org Foundation"
    [ 3488.978] compiled for 1.11.3, module version = 1.0.0
    [ 3488.978] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 3488.978] (II) Loading sub module "ramdac"
    [ 3488.978] (II) LoadModule: "ramdac"
    [ 3488.978] (II) Module "ramdac" already built-in
    [ 3488.978] (==) RADEON(0): Using EXA acceleration architecture
    [ 3488.978] (II) Loading sub module "exa"
    [ 3488.978] (II) LoadModule: "exa"
    [ 3488.978] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 3488.978] (II) Module exa: vendor="X.Org Foundation"
    [ 3488.978] compiled for 1.11.3, module version = 2.5.0
    [ 3488.978] ABI class: X.Org Video Driver, version 11.0
    [ 3488.978] (!!) RADEON(0): MergedFB support has been removed and replaced with xrandr 1.2 support
    [ 3488.978] (--) Depth 24 pixmap format is 32 bpp
    [ 3488.978] (II) RADEON(0): RADEONScreenInit d0000000 0 0
    [ 3489.284] Output LCD1 disable success
    [ 3489.295] Blank CRTC 0 success
    [ 3489.295] Disable CRTC 0 success
    [ 3489.295] Blank CRTC 1 success
    [ 3489.295] Disable CRTC 1 success
    [ 3489.295] (II) RADEON(0): Dynamic Power Management Disabled
    [ 3489.295] (==) RADEON(0): Using 24 bit depth buffer
    [ 3489.295] (II) RADEON(0): RADEONInitMemoryMap() :
    [ 3489.295] (II) RADEON(0): mem_size : 0x08000000
    [ 3489.295] (II) RADEON(0): MC_FB_LOCATION : 0xd7ffd000
    [ 3489.295] (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000
    [ 3489.295] (II) RADEON(0): Depth moves disabled by default
    [ 3489.295] (II) RADEON(0): Allocating from a screen of 131040 kb
    [ 3489.295] (II) RADEON(0): Will use 32 kb for hardware cursor 0 at offset 0x00816000
    [ 3489.295] (II) RADEON(0): Will use 32 kb for hardware cursor 1 at offset 0x0081a000
    [ 3489.295] (II) RADEON(0): Will use 8280 kb for front buffer at offset 0x00000000
    [ 3489.295] (II) RADEON(0): Will use 32 kb for PCI GART at offset 0x07ff8000
    [ 3489.295] (II) RADEON(0): Will use 8280 kb for back buffer at offset 0x0081e000
    [ 3489.295] (II) RADEON(0): Will use 8280 kb for depth buffer at offset 0x01034000
    [ 3489.295] (II) RADEON(0): Will use 52736 kb for textures at offset 0x0184a000
    [ 3489.295] (II) RADEON(0): Will use 53432 kb for X Server offscreen at offset 0x04bca000
    [ 3489.296] drmOpenDevice: node name is /dev/dri/card0
    [ 3489.296] drmOpenDevice: open result is 10, (OK)
    [ 3489.297] drmOpenDevice: node name is /dev/dri/card0
    [ 3489.298] drmOpenDevice: open result is 10, (OK)
    [ 3489.298] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 3489.298] drmOpenDevice: node name is /dev/dri/card0
    [ 3489.299] drmOpenDevice: open result is 10, (OK)
    [ 3489.299] drmOpenByBusid: drmOpenMinor returns 10
    [ 3489.299] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 3489.299] (II) [drm] DRM interface version 1.4
    [ 3489.299] (II) [drm] DRM open master succeeded.
    [ 3489.299] (II) RADEON(0): [drm] Using the DRM lock SAREA also for drawables.
    [ 3489.299] (II) RADEON(0): [drm] framebuffer handle = 0xd0000000
    [ 3489.299] (II) RADEON(0): [drm] added 1 reserved context for kernel
    [ 3489.299] (II) RADEON(0): X context handle = 0x1
    [ 3489.299] (II) RADEON(0): [drm] installed DRM signal handler
    [ 3489.316] (II) RADEON(0): [pci] 32768 kB allocated with handle 0xf9ed9000
    [ 3489.317] (II) RADEON(0): [pci] ring handle = 0xf9ed9000
    [ 3489.317] (II) RADEON(0): [pci] Ring mapped at 0xb6fcf000
    [ 3489.317] (II) RADEON(0): [pci] Ring contents 0x00000000
    [ 3489.317] (II) RADEON(0): [pci] ring read ptr handle = 0xf9fda000
    [ 3489.317] (II) RADEON(0): [pci] Ring read ptr mapped at 0xb76f7000
    [ 3489.317] (II) RADEON(0): [pci] Ring read ptr contents 0x00000000
    [ 3489.317] (II) RADEON(0): [pci] vertex/indirect buffers handle = 0xf9fdb000
    [ 3489.317] (II) RADEON(0): [pci] Vertex/indirect buffers mapped at 0xaed21000
    [ 3489.317] (II) RADEON(0): [pci] Vertex/indirect buffers contents 0x00000000
    [ 3489.317] (II) RADEON(0): [pci] GART texture map handle = 0xfa1db000
    [ 3489.317] (II) RADEON(0): [pci] GART Texture map mapped at 0xad0a1000
    [ 3489.317] (II) RADEON(0): [drm] register handle = 0x2dfbe000
    [ 3489.317] (II) RADEON(0): [dri] Visual configs initialized
    [ 3489.317] (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    [ 3489.317] (II) RADEON(0): MC_FB_LOCATION : 0xd7ffd000 0xd7ffd000
    [ 3489.317] (II) RADEON(0): MC_AGP_LOCATION : 0x003f0000
    [ 3489.317] (==) RADEON(0): Backing store disabled
    [ 3489.317] (II) RADEON(0): [DRI] installation complete
    [ 3489.320] (II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
    [ 3489.320] (II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
    [ 3489.320] (II) RADEON(0): [drm] dma control initialized, using IRQ 16
    [ 3489.320] (II) RADEON(0): [drm] Initialized kernel GART heap manager, 29884416
    [ 3489.320] (WW) RADEON(0): DRI init changed memory map, adjusting ...
    [ 3489.320] (WW) RADEON(0): MC_FB_LOCATION was: 0xd7ffd000 is: 0xd7ffd000
    [ 3489.320] (WW) RADEON(0): MC_AGP_LOCATION was: 0x003f0000 is: 0xffffffc0
    [ 3489.320] (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    [ 3489.320] (II) RADEON(0): MC_FB_LOCATION : 0xd7ffd000 0xd7ffd000
    [ 3489.320] (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    [ 3489.320] (II) RADEON(0): Direct rendering enabled
    [ 3489.320] (II) RADEON(0): Render acceleration enabled for R300/R400/R500 type cards.
    [ 3489.320] (II) RADEON(0): Setting EXA maxPitchBytes
    [ 3489.320] (II) RADEON(0): num quad-pipes is 1
    [ 3489.320] (II) EXA(0): Offscreen pixmap area of 54714368 bytes
    [ 3489.320] (II) EXA(0): Driver registered support for the following operations:
    [ 3489.320] (II) Solid
    [ 3489.320] (II) Copy
    [ 3489.320] (II) Composite (RENDER acceleration)
    [ 3489.320] (II) UploadToScreen
    [ 3489.320] (II) DownloadFromScreen
    [ 3489.320] (II) RADEON(0): Acceleration enabled
    [ 3489.320] (==) RADEON(0): DPMS enabled
    [ 3489.320] (==) RADEON(0): Silken mouse enabled
    [ 3489.320] (II) RADEON(0): Set up textured video
    [ 3489.320] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 3489.320] (II) RADEON(0): [XvMC] Extension initialized.
    [ 3489.325] Output CRT1 disable success
    [ 3489.325] Output LCD1 disable success
    [ 3489.325] Blank CRTC 0 success
    [ 3489.325] Disable CRTC 0 success
    [ 3489.325] Blank CRTC 1 success
    [ 3489.325] Disable CRTC 1 success
    [ 3489.325] Output LCD1 disable success
    [ 3489.325] Blank CRTC 0 success
    [ 3489.325] Disable CRTC 0 success
    [ 3489.325] Set CRTC 0 Source success
    [ 3489.325] Mode 1440x900 - 1760 912 10
    [ 3489.325] (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    [ 3489.325] (II) RADEON(0): MC_FB_LOCATION : 0xd7ffd000 0xd7ffd000
    [ 3489.325] (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    [ 3489.325] Picked PLL 0
    [ 3489.325] best_freq: 96340
    [ 3489.325] best_feedback_div: 157
    [ 3489.325] best_frac_feedback_div: 0
    [ 3489.325] best_ref_div: 4
    [ 3489.325] best_post_div: 11
    [ 3489.325] (II) RADEON(0): crtc(0) Clock: mode 96210, PLL 963400
    [ 3489.325] (II) RADEON(0): crtc(0) PLL : refdiv 4, fbdiv 0x9D(157), fracfbdiv 0, pdiv 11
    [ 3489.328] Set CRTC 0 PLL success
    [ 3489.328] Set CRTC Timing success
    [ 3489.328] Set CRTC 0 Overscan success
    [ 3489.328] Not using RMX
    [ 3489.328] scaler 0 setup success
    [ 3489.328] Set CRTC 0 Source success
    [ 3489.328] crtc 0 YUV disable setup success
    [ 3489.329] Output digital setup success
    [ 3489.788] Output LCD1 enable success
    [ 3489.788] Enable CRTC 0 success
    [ 3489.804] Unblank CRTC 0 success
    [ 3489.804] Output CRT1 disable success
    [ 3489.804] Blank CRTC 1 success
    [ 3489.804] Disable CRTC 1 success
    [ 3489.805] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 3489.805] (--) RandR disabled
    [ 3489.805] (II) Initializing built-in extension Generic Event Extension
    [ 3489.805] (II) Initializing built-in extension SHAPE
    [ 3489.805] (II) Initializing built-in extension MIT-SHM
    [ 3489.805] (II) Initializing built-in extension XInputExtension
    [ 3489.805] (II) Initializing built-in extension XTEST
    [ 3489.805] (II) Initializing built-in extension BIG-REQUESTS
    [ 3489.805] (II) Initializing built-in extension SYNC
    [ 3489.805] (II) Initializing built-in extension XKEYBOARD
    [ 3489.805] (II) Initializing built-in extension XC-MISC
    [ 3489.805] (II) Initializing built-in extension SECURITY
    [ 3489.805] (II) Initializing built-in extension XINERAMA
    [ 3489.805] (II) Initializing built-in extension XFIXES
    [ 3489.805] (II) Initializing built-in extension RENDER
    [ 3489.805] (II) Initializing built-in extension RANDR
    [ 3489.805] (II) Initializing built-in extension COMPOSITE
    [ 3489.805] (II) Initializing built-in extension DAMAGE
    [ 3489.818] (II) AIGLX: Screen 0 is not DRI2 capable
    [ 3489.818] drmOpenDevice: node name is /dev/dri/card0
    [ 3489.818] drmOpenDevice: open result is 11, (OK)
    [ 3489.818] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 3489.818] drmOpenDevice: node name is /dev/dri/card0
    [ 3489.818] drmOpenDevice: open result is 11, (OK)
    [ 3489.818] drmOpenByBusid: drmOpenMinor returns 11
    [ 3489.818] drmOpenByBusid: Interface 1.4 failed, trying 1.1
    [ 3489.818] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 3489.836] (EE) AIGLX error: Calling driver entry point failed
    [ 3489.853] (EE) AIGLX: reverting to software rendering
    [ 3489.856] (II) AIGLX: Loaded and initialized swrast
    [ 3489.856] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 3489.857] (II) RADEON(0): Setting screen physical size to 380 x 238
    [ 3490.017] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
    [ 3490.017] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 3490.017] (II) LoadModule: "evdev"
    [ 3490.018] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3490.018] (II) Module evdev: vendor="X.Org Foundation"
    [ 3490.018] compiled for 1.10.99.902, module version = 2.6.0
    [ 3490.018] Module class: X.Org XInput Driver
    [ 3490.018] ABI class: X.Org XInput driver, version 13.0
    [ 3490.018] (II) Using input driver 'evdev' for 'Video Bus'
    [ 3490.018] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3490.018] (**) Video Bus: always reports core events
    [ 3490.018] (**) Video Bus: Device: "/dev/input/event4"
    [ 3490.018] (--) Video Bus: Found keys
    [ 3490.018] (II) Video Bus: Configuring as keyboard
    [ 3490.018] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A03:00/device:2b/LNXVIDEO:00/input/input4/event4"
    [ 3490.018] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
    [ 3490.018] (**) Option "xkb_rules" "evdev"
    [ 3490.018] (**) Option "xkb_model" "evdev"
    [ 3490.018] (**) Option "xkb_layout" "us"
    [ 3490.078] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 3490.078] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3490.078] (II) Using input driver 'evdev' for 'Power Button'
    [ 3490.078] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3490.078] (**) Power Button: always reports core events
    [ 3490.078] (**) Power Button: Device: "/dev/input/event2"
    [ 3490.078] (--) Power Button: Found keys
    [ 3490.078] (II) Power Button: Configuring as keyboard
    [ 3490.078] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 3490.078] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 3490.078] (**) Option "xkb_rules" "evdev"
    [ 3490.079] (**) Option "xkb_model" "evdev"
    [ 3490.079] (**) Option "xkb_layout" "us"
    [ 3490.079] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 3490.079] (II) No input driver/identifier specified (ignoring)
    [ 3490.080] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 3490.080] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 3490.080] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 3490.080] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3490.080] (**) Sleep Button: always reports core events
    [ 3490.080] (**) Sleep Button: Device: "/dev/input/event3"
    [ 3490.080] (--) Sleep Button: Found keys
    [ 3490.080] (II) Sleep Button: Configuring as keyboard
    [ 3490.080] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3/event3"
    [ 3490.080] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 3490.080] (**) Option "xkb_rules" "evdev"
    [ 3490.080] (**) Option "xkb_model" "evdev"
    [ 3490.080] (**) Option "xkb_layout" "us"
    [ 3490.080] (II) config/udev: Adding input device HDA Intel Mic at Ext Right Jack (/dev/input/event7)
    [ 3490.080] (II) No input driver/identifier specified (ignoring)
    [ 3490.081] (II) config/udev: Adding input device HDA Intel HP Out at Ext Right Jack (/dev/input/event8)
    [ 3490.081] (II) No input driver/identifier specified (ignoring)
    [ 3490.081] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event9)
    [ 3490.081] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
    [ 3490.081] (II) Using input driver 'evdev' for 'Logitech USB-PS/2 Optical Mouse'
    [ 3490.081] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3490.081] (**) Logitech USB-PS/2 Optical Mouse: always reports core events
    [ 3490.081] (**) Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event9"
    [ 3490.081] (--) Logitech USB-PS/2 Optical Mouse: Found 3 mouse buttons
    [ 3490.081] (--) Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
    [ 3490.081] (--) Logitech USB-PS/2 Optical Mouse: Found relative axes
    [ 3490.081] (--) Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
    [ 3490.082] (II) Logitech USB-PS/2 Optical Mouse: Configuring as mouse
    [ 3490.082] (II) Logitech USB-PS/2 Optical Mouse: Adding scrollwheel support
    [ 3490.082] (**) Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
    [ 3490.082] (**) Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 3490.082] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.0/input/input9/event9"
    [ 3490.082] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE, id 9)
    [ 3490.082] (II) Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
    [ 3490.082] (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
    [ 3490.082] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration profile 0
    [ 3490.082] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration factor: 2.000
    [ 3490.082] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration threshold: 4
    [ 3490.082] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse1)
    [ 3490.082] (II) No input driver/identifier specified (ignoring)
    [ 3490.083] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 3490.083] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 3490.083] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 3490.083] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3490.083] (**) AT Translated Set 2 keyboard: always reports core events
    [ 3490.083] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 3490.083] (--) AT Translated Set 2 keyboard: Found keys
    [ 3490.083] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 3490.083] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 3490.083] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
    [ 3490.083] (**) Option "xkb_rules" "evdev"
    [ 3490.083] (**) Option "xkb_model" "evdev"
    [ 3490.083] (**) Option "xkb_layout" "us"
    [ 3490.084] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
    [ 3490.084] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 3490.084] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 3490.084] (II) LoadModule: "synaptics"
    [ 3490.084] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 3490.084] (II) Module synaptics: vendor="X.Org Foundation"
    [ 3490.084] compiled for 1.11.0, module version = 1.5.0
    [ 3490.084] Module class: X.Org XInput Driver
    [ 3490.084] ABI class: X.Org XInput driver, version 13.0
    [ 3490.084] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 3490.084] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 3490.084] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 3490.084] (**) Option "Device" "/dev/input/event6"
    [ 3490.296] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    [ 3490.296] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    [ 3490.296] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 3490.296] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 0
    [ 3490.296] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 3490.296] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 3490.296] (**) Option "TapButton1" "1"
    [ 3490.296] (**) Option "TapButton2" "2"
    [ 3490.296] (**) Option "TapButton3" "3"
    [ 3490.403] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 3490.403] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 3490.509] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event6"
    [ 3490.509] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 11)
    [ 3490.509] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 3490.509] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    [ 3490.509] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.040
    [ 3490.510] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 3490.510] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 3490.510] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 3490.510] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 3490.510] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 3490.510] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 3490.510] (II) No input driver/identifier specified (ignoring)
    [ 3490.511] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event5)
    [ 3490.511] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 3490.511] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
    [ 3490.511] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3490.511] (**) Dell WMI hotkeys: always reports core events
    [ 3490.511] (**) Dell WMI hotkeys: Device: "/dev/input/event5"
    [ 3490.511] (--) Dell WMI hotkeys: Found keys
    [ 3490.511] (II) Dell WMI hotkeys: Configuring as keyboard
    [ 3490.511] (**) Option "config_info" "udev:/sys/devices/virtual/input/input5/event5"
    [ 3490.511] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 12)
    [ 3490.511] (**) Option "xkb_rules" "evdev"
    [ 3490.511] (**) Option "xkb_model" "evdev"
    [ 3490.511] (**) Option "xkb_layout" "us"
    [ 3497.781] Dac detection success
    [ 3497.781] (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    [ 3497.842] (II) RADEON(0): EDID vendor "LPL", prod id 0
    [ 3497.842] (II) RADEON(0): EDID quirk: Detailed timings give vertical size in cm.
    [ 3497.842] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 3497.842] (II) RADEON(0): Modeline "1440x900"x0.0 96.21 1440 1504 1536 1760 900 901 904 912 -hsync -vsync (54.7 kHz)
    [ 3497.842] (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    [ 3497.842] (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    [ 3497.842] (II) RADEON(0): Manufacturer: LPL Model: 0 Serial#: 0
    [ 3497.842] (II) RADEON(0): Year: 2005 Week: 0
    [ 3497.842] (II) RADEON(0): EDID Version: 1.3
    [ 3497.842] (II) RADEON(0): Digital Display Input
    [ 3497.842] (II) RADEON(0): Max Image Size [cm]: horiz.: 37 vert.: 23
    [ 3497.842] (II) RADEON(0): Gamma: 2.20
    [ 3497.842] (II) RADEON(0): No DPMS capabilities specified
    [ 3497.842] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 3497.842] (II) RADEON(0): First detailed timing is preferred mode
    [ 3497.842] (II) RADEON(0): redX: 0.592 redY: 0.344 greenX: 0.319 greenY: 0.553
    [ 3497.842] (II) RADEON(0): blueX: 0.159 blueY: 0.144 whiteX: 0.312 whiteY: 0.328
    [ 3497.842] (II) RADEON(0): Manufacturer's mask: 0
    [ 3497.842] (II) RADEON(0): Supported detailed timing:
    [ 3497.842] (II) RADEON(0): clock: 96.2 MHz Image Size: 367 x 2300000 mm
    [ 3497.842] (II) RADEON(0): h_active: 1440 h_sync: 1504 h_sync_end 1536 h_blank_end 1760 h_border: 0
    [ 3497.842] (II) RADEON(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 912 v_border: 0
    [ 3497.842] (II) RADEON(0): WR539171WX2
    [ 3497.842] (II) RADEON(0): &5@Im
    [ 3497.842] (II) RADEON(0): EDID (in hex):
    [ 3497.842] (II) RADEON(0): 00ffffffffffff00320c000000000000
    [ 3497.842] (II) RADEON(0): 000f0103802517780a8ef09758518d28
    [ 3497.842] (II) RADEON(0): 24505400000001010101010101010101
    [ 3497.842] (II) RADEON(0): 0101010101019525a04051840c304020
    [ 3497.842] (II) RADEON(0): 13006fe6100000190000000000000000
    [ 3497.843] (II) RADEON(0): 00000000000000000000000000fe0057
    [ 3497.843] (II) RADEON(0): 52353339013137315758320a000000fe
    [ 3497.843] (II) RADEON(0): 00263540496d9dc8ff02010a202000c3
    [ 3497.843] (II) RADEON(0): EDID vendor "LPL", prod id 0
    [ 3497.843] (II) RADEON(0): EDID quirk: Detailed timings give vertical size in cm.
    [ 3497.876] Dac detection success
    [ 3497.876] (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    [ 3497.876] Unhandled monitor type 0
    [ 3497.920] Dac detection success
    [ 3497.920] (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    [ 3497.980] (II) RADEON(0): EDID vendor "LPL", prod id 0
    [ 3497.980] (II) RADEON(0): EDID quirk: Detailed timings give vertical size in cm.
    [ 3497.980] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 3497.980] (II) RADEON(0): Modeline "1440x900"x0.0 96.21 1440 1504 1536 1760 900 901 904 912 -hsync -vsync (54.7 kHz)
    [ 3497.980] (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    [ 3497.980] (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    [ 3497.980] (II) RADEON(0): Manufacturer: LPL Model: 0 Serial#: 0
    [ 3497.980] (II) RADEON(0): Year: 2005 Week: 0
    [ 3497.980] (II) RADEON(0): EDID Version: 1.3
    [ 3497.980] (II) RADEON(0): Digital Display Input
    [ 3497.980] (II) RADEON(0): Max Image Size [cm]: horiz.: 37 vert.: 23
    [ 3497.980] (II) RADEON(0): Gamma: 2.20
    [ 3497.980] (II) RADEON(0): No DPMS capabilities specified
    [ 3497.980] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 3497.980] (II) RADEON(0): First detailed timing is preferred mode
    [ 3497.980] (II) RADEON(0): redX: 0.592 redY: 0.344 greenX: 0.319 greenY: 0.553
    [ 3497.980] (II) RADEON(0): blueX: 0.159 blueY: 0.144 whiteX: 0.312 whiteY: 0.328
    [ 3497.980] (II) RADEON(0): Manufacturer's mask: 0
    [ 3497.980] (II) RADEON(0): Supported detailed timing:
    [ 3497.980] (II) RADEON(0): clock: 96.2 MHz Image Size: 367 x 2300000 mm
    [ 3497.981] (II) RADEON(0): h_active: 1440 h_sync: 1504 h_sync_end 1536 h_blank_end 1760 h_border: 0
    [ 3497.981] (II) RADEON(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 912 v_border: 0
    [ 3497.981] (II) RADEON(0): WR539171WX2
    [ 3497.981] (II) RADEON(0): &5@Im
    [ 3497.981] (II) RADEON(0): EDID (in hex):
    [ 3497.981] (II) RADEON(0): 00ffffffffffff00320c000000000000
    [ 3497.981] (II) RADEON(0): 000f0103802517780a8ef09758518d28
    [ 3497.981] (II) RADEON(0): 24505400000001010101010101010101
    [ 3497.981] (II) RADEON(0): 0101010101019525a04051840c304020
    [ 3497.981] (II) RADEON(0): 13006fe6100000190000000000000000
    [ 3497.981] (II) RADEON(0): 00000000000000000000000000fe0057
    [ 3497.981] (II) RADEON(0): 52353339013137315758320a000000fe
    [ 3497.981] (II) RADEON(0): 00263540496d9dc8ff02010a202000c3
    [ 3497.981] (II) RADEON(0): EDID vendor "LPL", prod id 0
    [ 3497.981] (II) RADEON(0): EDID quirk: Detailed timings give vertical size in cm.
    [ 3498.015] Dac detection success
    [ 3498.015] (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    [ 3498.015] Unhandled monitor type 0
    [ 3498.063] Dac detection success
    [ 3498.063] (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    [ 3498.124] (II) RADEON(0): EDID vendor "LPL", prod id 0
    [ 3498.124] (II) RADEON(0): EDID quirk: Detailed timings give vertical size in cm.
    [ 3498.124] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 3498.124] (II) RADEON(0): Modeline "1440x900"x0.0 96.21 1440 1504 1536 1760 900 901 904 912 -hsync -vsync (54.7 kHz)
    [ 3498.124] (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    [ 3498.124] (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    [ 3498.124] (II) RADEON(0): Manufacturer: LPL Model: 0 Serial#: 0
    [ 3498.124] (II) RADEON(0): Year: 2005 Week: 0
    [ 3498.124] (II) RADEON(0): EDID Version: 1.3
    [ 3498.124] (II) RADEON(0): Digital Display Input
    [ 3498.124] (II) RADEON(0): Max Image Size [cm]: horiz.: 37 vert.: 23
    [ 3498.124] (II) RADEON(0): Gamma: 2.20
    [ 3498.124] (II) RADEON(0): No DPMS capabilities specified
    [ 3498.124] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 3498.124] (II) RADEON(0): First detailed timing is preferred mode
    [ 3498.124] (II) RADEON(0): redX: 0.592 redY: 0.344 greenX: 0.319 greenY: 0.553
    [ 3498.124] (II) RADEON(0): blueX: 0.159 blueY: 0.144 whiteX: 0.312 whiteY: 0.328
    [ 3498.124] (II) RADEON(0): Manufacturer's mask: 0
    [ 3498.124] (II) RADEON(0): Supported detailed timing:
    [ 3498.124] (II) RADEON(0): clock: 96.2 MHz Image Size: 367 x 2300000 mm
    [ 3498.124] (II) RADEON(0): h_active: 1440 h_sync: 1504 h_sync_end 1536 h_blank_end 1760 h_border: 0
    [ 3498.124] (II) RADEON(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 912 v_border: 0
    [ 3498.124] (II) RADEON(0): WR539171WX2
    [ 3498.124] (II) RADEON(0): &5@Im
    [ 3498.124] (II) RADEON(0): EDID (in hex):
    [ 3498.124] (II) RADEON(0): 00ffffffffffff00320c000000000000
    [ 3498.124] (II) RADEON(0): 000f0103802517780a8ef09758518d28
    [ 3498.124] (II) RADEON(0): 24505400000001010101010101010101
    [ 3498.124] (II) RADEON(0): 0101010101019525a04051840c304020
    [ 3498.124] (II) RADEON(0): 13006fe6100000190000000000000000
    [ 3498.124] (II) RADEON(0): 00000000000000000000000000fe0057
    [ 3498.124] (II) RADEON(0): 52353339013137315758320a000000fe
    [ 3498.124] (II) RADEON(0): 00263540496d9dc8ff02010a202000c3
    [ 3498.124] (II) RADEON(0): EDID vendor "LPL", prod id 0
    [ 3498.124] (II) RADEON(0): EDID quirk: Detailed timings give vertical size in cm.
    [ 3498.158] Dac detection success
    [ 3498.158] (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    [ 3498.158] Unhandled monitor type 0
    [ 3498.192] Dac detection success
    [ 3498.192] (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    [ 3498.253] (II) RADEON(0): EDID vendor "LPL", prod id 0
    [ 3498.253] (II) RADEON(0): EDID quirk: Detailed timings give vertical size in cm.
    [ 3498.253] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 3498.253] (II) RADEON(0): Modeline "1440x900"x0.0 96.21 1440 1504 1536 1760 900 901 904 912 -hsync -vsync (54.7 kHz)
    [ 3498.253] (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    [ 3498.253] (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    [ 3498.253] (II) RADEON(0): Manufacturer: LPL Model: 0 Serial#: 0
    [ 3498.253] (II) RADEON(0): Year: 2005 Week: 0
    [ 3498.253] (II) RADEON(0): EDID Version: 1.3
    [ 3498.253] (II) RADEON(0)

    Ok, compilation successful with the above patch applied. I also rebooted to make sure everything will get loaded for scratch and applied export CLUTTER_VBLANK=none in /etc/environment. So far:
    1) Fonts are looking just fine, no artifacts whatsoever in the panel or elsewhere I got so far.
    2) Applications menu still crash.
    3) GTK2 applications also crash. I opened up leafpad, it run, but failed to open a file and crashed the entired desktop. I have no oxygen-gtk installed on my system.
    Generally speaking I like GNOME 3 quite much, not as much as GNOME 2, but crashing the whole desktop by just one application or just something less importand like the menu, its just a show stopper. I hope they will somehow fix these issues in the next releases.
    Last edited by twilight0 (2011-12-05 23:16:04)

  • JNLP: Signed jars but still not trusted

    I have an applet that has signed jars that were signed by the same key, the applet shows the correct warnings on startup and works fine (allows access to the local file system, etc), however there still exists the 'yellow triangle warning' on one of two popups frames that the applet produces (but not the other one).
    The applet does use native code (packaged in a signed jar and referenced in the JNLP). The jars are all signed by the same certificate from a CA. I originally didn't have the JNLP signed (by placing it in the main jar in JNLP-INF/APPLICATION.JNLP) but this didn't help. Also I didn't have the JNLP codebase set to a real URL (and really cant in production because its a solution we deploy to customers servers - its packaged software not hosted) but even after I tested with a codebase to a test server, it still didnt remove the famed yellow triangle. I have all-permissions set in the JNLP.
    So two related questions:
    1) Other than having not having signed jars (or not signed correctly), what other reasons cause the 'yellow triangle'?
    2) The warning only appears on one of the popup Frames. What could be the possible reasons for that? Are there some privileges that show the icon whether the applet is signed or not?
    Note: While changing the client policy setting (showWindowWithoutWarningBanner) works, this cant be a solution.
    From the Java Console:
    ...It goes through all the jars (I only included one for brevity - there are 23 of them). Note it says 'have 1 common certificates'.. which I think indicates everything is signed by the same cert.
    Is there any indication in the console logs I can use to determine why it is not trusted? It looks (to me) that everything is OK, until it says 'istrusted=false'.
    security: Validating cached jar url=http://10.192.252.26/QMDesktop/native.jar ffile=C:\Documents and Settings\bunkowm\Application Data\Sun\Java\Deployment\cache\6.0\34\1df0b62-2c3ce377 com.sun.deploy.cache.CachedJarFile@d964af
    cache: Reading Signers from 995 http://10.192.252.26/QMDesktop/native.jar | C:\Documents and Settings\bunkowm\Application Data\Sun\Java\Deployment\cache\6.0\34\1df0b62-2c3ce377.idx
    security: Have 1 common certificates after processing http://10.192.252.26/QMDesktop/native.jar
    security: Istrusted: null false
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    security: Mark trusted: null

    Andrew - of course you were correct about the signed cert - I misspoke when the CA signed applet didn't show a warning. (You were also right that I must have checked 'always accept' the certificate on the server I had the CA signed cert on).
    I think you guys are on to something about the privileged actions. It would explain where one popup has the icon and the other doesn't. We have Javascript making calls into the applet and we do use JNI (although I don't think there are any calls back). We do wrap these calls in privileged actions but maybe we missed something. What I've seen before is a security exception is thrown if we don't wrap them - but maybe there are areas where we don't and it doesn't throw an exception or it does and we eat it somehow (and for whatever reason doesn't cause anything noticeable).
    Now that I know it could likely be the applet code and not necessarily a build issue with signing the jars, I have another place to look...
    I'll check it out and let you know what I find.

  • Display image in Forms 10.1.2

    Forms 10gr2 using Webutil.
    I have an multi row block, each record has an image item. I want to populate this image at runtime depending on the values of the rest of the record.
    Problem I have is that the images (GIF files) are not in the database, they're in a jar file (image.jar) which is uploaded to the client browser at runtime. How do I access these images and then populate my image item with it?
    Read_Image_File looks on the AS which I want to avoid. I can use Webutils version but how do I access it in the JAR file?

    Hi,
    Steps:
    1、Create table in DB for image files 's path.
    2、Pack the images into a JAR file(For example:Icons.jar).
    3、Copy the JAR file into your path: Disk:\DevSuiteHome_1\forms\java
    4、Config formsweb.cfg file in Disk:\DevSuiteHome_1\forms\server\formsweb.cfg:
    # Forms applet archive setting for JInitiator
    archive_jini=frmall_jinit.jar,Icons.jar
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=frmall.jar,Icons.jar
    Maybe It is helpful for you!

Maybe you are looking for

  • BT Home Move - a night mare (extremely disappointe...

    I am moving flat on 2nd July in the same building and moving to next door. I thought it will be a quick process for BT to move my home telephone line but it was not the case. Since I am trying to resolve the issues which triggered after my first call

  • How to program two layers picture?

    Hi, I want to program a picture in a panel which has a map in the background and position coordinates from a GPS as a figure are updated into the map. Map file format can be e.x. bmp. NI example alphablend with x% transparency is something which I co

  • How can I change the country of my iPad.

    How can I change the country of my iPad. It wants to upload updates but keeps saying I can't be in the us store. How do i change to the Canadian store?

  • IGS and Chart Type

    Dear All, I already try to install IGS 6.2 under Windows 2000 and in the IBM server after I create the RFC connection in my BW system (3.1) and successful. I create simple template in WAD using web item Chart and choose the chart type is PIE. But whe

  • Iphone spotlight search

    I don't know when this started, but on my iPhone 4S running iOS5, the spotlight search has stopped working.  You can "swipe" to the left and see the keyboard come up, and you can type normally, but nothing happens.  The only thing that makes it work