Formatted Application Comments?

Hi,
is there a way to format the Application Comments? HTML Tags are not rendered in the Application Comment Report.
Is there a public table / view to retrieve these comments?
Regards Juergen

Juergen - Nothing that can be entered into an application definition (metadata) can be rendered as HTML in the Builder's reports for purposes of protecting against cross-site scripting attacks.
The comments are in the wwv_flow_banner table, but it is not publicly accessible.
Scott

Similar Messages

  • Error message when I try to print: unsupported document-format"application/vnd.cups-command. I recently had my hard drive replaced in my early 2010 21" iMac. Can anyone help?

    Error message when I try to print: unsupported document-format"application/vnd.cups-command". I recently had my hard drive replaced in  my early 2010 21" iMac. Anyone know anything about this? Thanks in advance.

    What system are you running?  Have you tried going to the Canon website to download and install the latest drivers for that model?
    Are you running Time Machine?

  • Finding Application Comments for a report

    Hello,
    Can anyone tell me what table or view I can access "Application Comments". I did a search on that an didn't find anything in this forum.
    I'm creating an application where other applications can be launched from while maintaining authentication (all in same workspace).
    I have the list of apex_applications.application_name as links in the report, but would like to add a description of the application in an adjacent column to the link. I thought the application comments would be a good feild to use if I can find it and join to the apex_applications view.
    I'm using APEX 4.1.0.00.32
    Thanks,
    Wayne

    Found by looking through C:\apex41\builder\f4000.sql for the create/view comments pages (p1236).
    select * from APEX_040100.WWV_FLOW_APP_COMMENTS;I've included a consolidated view of all application comments to the 4.2 wishlist
    Apex 4.2 wish list
    I didn't realise this information wasn't in the apex_dictionary already.

  • Formatting application missing?

    Hola,
    One of the associates here is trying to burn a cd, and it almost immediately says 'The burn could not be completed, because the formatting application could not be found.' How do I fix this? Is it one of those things I can copy from a Mac that is fuctioning correctly? If so, Where do I find it?
    Thank you!
    Heidi
    PS: Why is the only Mac I've ever had problems with the one this associate uses?? Aaarg!!

    honey24,
    Can you tell us what Macs you've tried to burn stuff on? I've noticed that you don't list a specific model. Doing so will help in a big way with troubleshooting.
    A "native" burning application was incorporated into later builds of OS 9.x. You or the powers that be within your company should consider updating to OS 9.2.2 if possible. Three steps will be needed.
    1. 9.0.x-->9.1
    2. 9.1-->9.2.1
    3. 9.2.1-->9.2.2
    Apple KB article 75288 covers Mac OS 9 service releases.
    Note that if your Macs have PowerPC 600 series processors (i.e. they are Performas or Power Macs older than '97), you can't upgrade past 9.1 without a kludge.
    Sonic/Roxio no longer sells Toast for OS 9.x. If your Macs are of 1999 or later vintage, you could get OS X and Toast 6 or 7. Try your luck on eBay if you must do so in order to get Toast 5.
    Nate

  • Application comments in in page

    Hi,
    Is there a way to reference the application comments (under 'edit application properties'>'edit application comment') at page level?
    I am putting version history of the app in there and wish to have this displayable to users of the app.
    Thanks!

    You can use this query:
    SELECT page_comment
      FROM apex_application_pages
    WHERE application_id = :app_id AND page_id = :app_page_id
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    https://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494

  • Technique to undo a character format application?

    Hi,
    Seems that answers to complicated questions are a bit sparse in these parts, but I'll try again anyway
    I'm wondering if there is any technique to reliably undo a character format application change; that is, an application of properties to a range of text with SetTextProps(). It is fairly simple to remember a list of original properties (PropVals) and the original text range (TextRange), then reapply those original properties to the whole range. However, within a text range, each character can have its own unique set of properties. So, remembering one set of original properties is not enough... seems I have to remember the properties of every single character in the range, the reapply character-by-character, in order to ensure that the new property application is completely undone.
    When you apply a character format in the GUI, FM reliably allows an undo, restoring each affected character to its original state. Surely it isn't remembering a PropVals array for every single character (?)  I'm just wondering if there is another trick here. It's entirely possible if FM is internally using another trick, it isn't one that I can feasibly replicate.
    Thanks,
    Russ

    Hi Jang (you might need to look at this on the forum websie),
    Effectively, I want to be able to restore a range of text to its original format, after the original format is completely overwritten. For example:
    Here is someTEXT
    Imagine that someone applies a character format that wipes all that out:
    Here is some text
    I want to restore the text to its original format. In the GUI, the FrameMaker Undo command successfully does that. I have a script that applies formatting and I'd like to replicate the undo, if its feasible. Naturally, the FM undo will not undo a script action.
    I am talking about text ranges only. By the way, how do you store a "safety paragraph?" Using the clipboard is not an option in this case.
    Thanks,
    Russ

  • Image trouble in application + comments on code ?

    I have tried to insert an image in this slowly-becoming application but it won't work.
    I have commented the parts that don't work (the paint method).
    The error only occurs when I un-comment the Paint-method.
    It would also be great if you would like to give some comments on my code, this is my first 'project' and I'm going to be grateful for any feedback.
    thanks,
    David
    Here's my code:
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.Toolkit;
    public class MainWindow {
    public JFrame frame;
    public Image img;
         public MainWindow() {
              frame = new JFrame("App. Title here");
              frame.setResizable(false);
              frame.setSize(620,420);
              frame.setBackground(Color.white);
              frame.setDefaultCloseOperation(frame.EXIT_ON_CLOSE);
              JPanel panel = new JPanel();
              Font font = new Font("Verdana", Font.BOLD, 12);
              JLabel heading = new JLabel("Application Heading");
              heading.setFont(font);
              heading.setBackground(Color.white);
              heading.setOpaque(true);
              img = Toolkit.getDefaultToolkit().getImage("image.jpg");
              buildMenu();
              panel.add(heading);
              frame.setContentPane(panel);
              frame.setVisible(true);
         public void buildMenu() {
              JMenuBar mb = new JMenuBar();
              JMenu menu = new JMenu("File");
              JMenuItem item = new JMenuItem("Exit");
              //Closes the application from the Exit menu item.
              item.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        System.exit(0);
              menu.add(item);
              mb.add(menu);
              frame.setJMenuBar(mb);
         public static void main(String[] args) {
              try {
                   UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
              catch (Exception err) {
                   System.out.println("Error loading Look & Feel: "+ err);
              MainWindow SplashScreen = new MainWindow();
         public void paint(Graphics g) {
              g.drawImage(img, 4, 20, this);
    }

    Thanks for your reply, but another problem has occured.
    The image shows up now, which is great, but the menu doesn't ? I have tried to find the problem with no luck.
    Here's my code:
    many thanks,
    David
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.Toolkit;
    public class MainWindow_new extends JFrame { // JWindow for splashScreen
    public JFrame frame;
    public Image img;
         public MainWindow_new() {
              super("App. Title here");
              setResizable(false);
              setSize(620,420);
              setBackground(Color.white);
              setDefaultCloseOperation(frame.EXIT_ON_CLOSE);
              JPanel panel = new JPanel();
              Font font = new Font("Verdana", Font.BOLD, 12);
              MediaTracker tracker = new MediaTracker(this);
              img = Toolkit.getDefaultToolkit().getImage("images\\jpgs\\arena.jpg");
              try {
                   tracker.addImage(img, 0);
                   tracker.waitForID(0);
              catch (InterruptedException err) {
                   System.out.println("MediaTracker Interrupted");
                   err.printStackTrace();
              buildMenu();
              setContentPane(panel);
              setVisible(true);
         public void buildMenu() { // Opens buildMenu method definition
              JMenuBar mb = new JMenuBar();
              JMenu menu = new JMenu("File");
              JMenuItem NewItem = new JMenuItem("New Game");
              JMenuItem LoadItem = new JMenuItem("Load Game");
              JMenuItem ExitItem = new JMenuItem("Exit");
              //Closes the application from the Exit menu item.
              ExitItem.addActionListener(new ActionListener() { // Opens addActionListener method
                   public void actionPerformed(ActionEvent e) { // Opens actionPerformed method
                        System.exit(0);
              menu.add(NewItem);
              menu.add(LoadItem);
              menu.addSeparator();
              menu.add(ExitItem);
              mb.add(menu);
              setJMenuBar(mb);
         public static void main(String[] args) {
              try {
                   UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
              catch (Exception err) {
                   System.out.println("Error loading Look & Feel: "+ err);
              MainWindow_new mainWindow = new MainWindow_new();
         public void paint(Graphics g) {
              g.drawImage(img,10,10,this);
    }

  • Je n'arrive pas a télécharger la nouvelle mise a jour sur mon iphone 3g ce qui fais que je ne peux pas télécharger d'applications comment faire ? J'ai déjà tester avec Itunes, ça ne marche pas !

    Je viens d'acheter un iphone 3g et j'ai voulu télécharger des applications (Facebook...) et au moment de télécharger mon iphone me dis qu'il faut que je mette a jour mon iphone sur la version 6.01, sauf que je trouve pas la mise a jour dans mon iphone, même sur app store, ou même avec itune, comment faire ?

    Anny1247 wrote:
    Naufzinger wrote:
    Bonjour, je susi désolè de répondre vous si tard. Je suis sûr que vous avez résolu de votre question. Sur ici, je veux seulement vous dire que si vous rencontrez cette question encore, vous pouvez essayer de utiliser logiciel de Récupération données de iPhone. Facile et efficace à utiliser. Par example:
    récupérer photos iphone
    recuperer video supprimer iphone
    Souhaitez mon réponse peut aider vous à résoudre votre question. Bonne journées.
    j'ai acheté un nouvel iphone et veux savoir comment transférer les données iphone vers d'autre iphone, merci !
    Bonjour
    si vous voulez transférer les données facilement et rapidement, je pense que vous devez utiliser un logiciel, chercher sur google
    bonne chance

  • Auto-formatting application

    Does anyone know of a (preferably free) program for windows which auto-formats java code? Adding skeleton javadoc comments would be nice too but not necessary.
    I've tried beautyJ but can't get it to work. Thanks.

    jcreator doesnt (as far as i can tell), bluej... well I could hardly get that doing anything, and jgrasp seems to indent only methods. i'm probably just fussy and or dumb :P
    any others?

  • Using application 'Comments'

    Anyone know how can i use (Set, Get) the 'Comments' property of a form module.
    Thank you for your help.

    Dear Friend,
    You want to set it during runtime or at design time? You cannot set it at run time, as far as my knowledge.
    Regards,
    Senthil .A. Perumal.

  • Formatting application component in design studio 1.2

    Hi !
    I am struggling with the formatting components in design studio.
    Requirement is :
    and I m stuck at:
    Changing font size/alignment/position does not work. Please help
    Regards,
    Tanisha

    Hi Tanisha ,
    You can achieve it through CSS .
    Under Display->CSS Style add this code
    fontSize:12;
    fontColor:#00CC00;

  • Report of all Comments in an Application?

    Hi,
    Is there an easy way to get an report of all Comments in an Application. Both Application, Developer, Page, Item etc?
    I can find Application Reports for Application Comments, Developer Comments and Page Comments, but nothing about object comments like for Items. What I really are after is a full report of all comments in an application. This would be very help full for documenting an application.
    I have had a quick look at the APEX views, but I could not find the information. Do I need to look directly at the FLOWS tables?
    Regards Peter

    Peter,
    I'm quite sure you'll need to UNION several queries from several tables or views of the FLOWS_nnnnn schema to get what you're after. There are quite a few tables that have comments built into them, like wwv_flow_step_buttons, for instance.
    Earl

  • Scan textfield for keyword and apply formatting

    I was interested in searching through text in a textfield, and applying text formatting to keywords. For example, every time the word 'the' appears, apply a text format that changes it to green and 14pt. Here is an example of a format and text applied to a textfield. How would I go about searching through the textfield and applying this format only to specific words?
    my_txt.text = 'The cat jumped over the house.'
    /// my format I want to apply
    with (_lt_fmt) {
                    align = 'left';
                    blockIndent = 0;
                    bold = false;
                    bullet = false;
                    color = _green;
                    font = FontNames.ARIAL;
                    indent = 0;
                    italic = false;
                    kerning = false;
                    leading = 0;
                    leftMargin = 0;
                    letterSpacing = 0;
                    rightMargin = 0;
                    size = 14;
                    tabStops = [];
                    target = "";
                    underline = false;
                    url = "";

    " I replaced some var names b/c they were reserved words"
    There were no reserved words for the current or application scope.
    "How can I keep all the words highlighted in the different formats?"
    Comment out this line:
    main_txt.setTextFormat(main_txt.defaultTextFormat);
    Also, the code you showed is too verbose. You can combine declarations and and instantiation in one place and have 5 lines instead of 10:
    var highLightFormat0:TextFormat = new TextFormat("Arial",14,0xff00ff,"bold");
    var highLightFormat1:TextFormat = new TextFormat("Arial",7,0xff0000,"bold");
    var highLightFormat2:TextFormat = new TextFormat("Arial",9,0xCCCCCC,"bold");
    var highLightFormat3:TextFormat = new TextFormat("Arial", 8, 0xffEE00, "bold");
    var main_txt:TextField = new TextField();
    In addition, function  getTxtFmt and the way you deal with getting TExtFormats is an ovekill - conditionals are worse than direct references. So, I suggest your code is:
    import flash.text.TextFormat;
    // keywords to highlight
    var wordsToSearch:Vector.<String> = new <String>['the','interested','text', 'applying'];
    // TxtFormats
    var highLightFormats:Vector.<TextFormat> = new <TextFormat>[new TextFormat("Arial", 14, 0xff00ff, "bold"), new TextFormat("Arial", 7, 0xff0000, "bold"), new TextFormat("Arial", 9, 0xCCCCCC, "bold"), new TextFormat("Arial", 8, 0xffEE00, "bold")];
    // Create TextField and add to display list
    var main_txt:TextField = new TextField();
    with (main_txt) {
         multiline = main_txt.wordWrap = true;
         autoSize = "left";
         width = 400;
         defaultTextFormat = new TextFormat("Arial",12);
         x = main_txt.y = 20;
         text = "I was interested in searching through text in a textfield, and applying text formatting to keywords. For example, every time the word 'the' appears, apply a text format that changes it to green and 14pt. Here is an example of a format and text applied to a textfield. How would I go about searching through the textfield and applying this format only to specific words?";
    addChild(main_txt);
    // Iterate through Vector of keywords
    for (var i:int; i < wordsToSearch.length; i++){
         search(wordsToSearch[i], i);
    // find whole words
    function search(keyword:String, fmtChoice:int):void {
         //main_txt.setTextFormat(main_txt.defaultTextFormat);
         var txt:String = main_txt.text;
         var pattern:RegExp = new RegExp("\(\?\<\=\\s)" + keyword + "\\s","ig");
         var theResult:Object = pattern.exec(txt);
         while (theResult) {
              main_txt.setTextFormat( highLightFormats[fmtChoice], theResult.index, theResult.index + keyword.length);
              theResult = pattern.exec(txt);

  • Epson SX218 doesn't print (client-error-document-format-not-supported)

    Hi there,
    I'm currently trying to figure out how to get my Epson Stylus SX 218 to work. Unfortunately, cups (or the printer or whatever causes my problems...) obviously just doesn't want me to get this to work.
    Here's what I've done so far:
    I installed everything as described in the CUPS wiki article (so ghostscript and all the foomatic-stuff is installed, usblp is NOT blacklisted, see why below)
    I installed epson-inkjet-printer-workforce-sx218 from AUR
    I started cups...
    Nothing worked (Printer not recognized, either with or without blacklisted usblp module...)
    I searched the forums for a solution
    I installed cups-usblp and reinstalled all the cups stuff
    Printer got recognized! Yay!
    So, now the printer is set up in cups using the avasys driver. But...
    It doesn't print!
    When I try to print a test page via the cups webinterface it keeps telling me
    Unsupported format "application/vnd.cups-banner".
    The following packages are installed now:
    $ pacman -Qs cups
    local/cups-usblp 1.5.0-1
    local/libcups 1.5.0-1
    $ pacman -Qs foomatic
    local/foomatic-db 1:4.0.7_20110707-1
    local/foomatic-db-engine 1:4.0.7_20110707-1
    local/foomatic-db-nonfree 1:4.0.7_20110707-1
    local/foomatic-filters 1:4.0.7_20110707-1
    $ pacman -Qs epson
    local/epson-inkjet-printer-workforce-320-sx218 1.0.0-6
    $ pacman -Qs ghostscript
    local/ghostscript 9.04-5
    Here's my cups error log:
    I [01/Jan/2012:18:59:01 +0100] Listening to [v1.::1]:631 (IPv6)
    I [01/Jan/2012:18:59:01 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [01/Jan/2012:18:59:01 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [01/Jan/2012:18:59:01 +0100] Remote access is disabled.
    D [01/Jan/2012:18:59:01 +0100] Added auto ServerAlias mamapc
    I [01/Jan/2012:18:59:01 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    I [01/Jan/2012:18:59:01 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [01/Jan/2012:18:59:01 +0100] Configured for up to 100 clients.
    I [01/Jan/2012:18:59:01 +0100] Allowing up to 100 client connections per host.
    I [01/Jan/2012:18:59:01 +0100] Using policy "default" as the default.
    D [01/Jan/2012:18:59:01 +0100] cupsdMarkDirty(---p--)
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Not busy"
    I [01/Jan/2012:18:59:01 +0100] Partial reload complete.
    I [01/Jan/2012:18:59:01 +0100] Listening to [v1.::1]:631 on fd 6...
    I [01/Jan/2012:18:59:01 +0100] Listening to 127.0.0.1:631 on fd 8...
    I [01/Jan/2012:18:59:01 +0100] Listening to /var/run/cups/cups.sock:631 on fd 9...
    I [01/Jan/2012:18:59:01 +0100] Resuming new connection processing...
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:01 +0100] Discarding unused server-restarted event...
    D [01/Jan/2012:18:59:01 +0100] cupsdAcceptClient: 13 from localhost:631 (IPv4)
    D [01/Jan/2012:18:59:01 +0100] Report: clients=1
    D [01/Jan/2012:18:59:01 +0100] Report: jobs=0
    D [01/Jan/2012:18:59:01 +0100] Report: jobs-active=0
    D [01/Jan/2012:18:59:01 +0100] Report: printers=0
    D [01/Jan/2012:18:59:01 +0100] Report: printers-implicit=0
    D [01/Jan/2012:18:59:01 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:18:59:01 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:18:59:01 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:18:59:01 +0100] PID 928 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [01/Jan/2012:18:59:01 +0100] cupsdReadClient: 13 GET /images/wait.gif HTTP/1.1
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:01 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 13 GET /admin/?OP=redirect HTTP/1.1
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:06 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/admin.cgi"
    D [01/Jan/2012:18:59:06 +0100] [CGI] argv[1] = "OP=redirect"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/var/run/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@mamapc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.5.0"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[13] = "USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[14] = "CUPS_SERVER=/var/run/cups/cups.sock"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[15] = "CUPS_ENCRYPTION=IfRequested"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[16] = "IPP_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[17] = "AUTH_TYPE=Basic"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[23] = "REMOTE_ADDR=127.0.0.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[25] = "SCRIPT_NAME=/admin/"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/admin/"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[27] = "REMOTE_USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[28] = "SERVER_PROTOCOL=HTTP/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[29] = "HTTP_COOKIE=org.cups.sid=960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[30] = "HTTP_USER_AGENT=Opera/9.80 (X11; Linux i686; U; de) Presto/2.10.229 Version/11.60"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[31] = "HTTP_REFERER=http://localhost:631/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[32] = "REQUEST_METHOD=GET"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[33] = "QUERY_STRING=OP=redirect"
    D [01/Jan/2012:18:59:06 +0100] [CGI] Started /usr/lib/cups/cgi-bin/admin.cgi (PID 929)
    I [01/Jan/2012:18:59:06 +0100] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=929)
    D [01/Jan/2012:18:59:06 +0100] cupsdSendCommand: 13 file=14
    D [01/Jan/2012:18:59:06 +0100] [CGI] admin.cgi started...
    D [01/Jan/2012:18:59:06 +0100] cupsdAcceptClient: 16 from localhost (Domain)
    D [01/Jan/2012:18:59:06 +0100] [CGI] http=0xb9359360
    D [01/Jan/2012:18:59:06 +0100] [CGI] org.cups.sid cookie is "960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] redirecting with prefix http://localhost:631!
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 16 WAITING Closing on EOF
    D [01/Jan/2012:18:59:06 +0100] cupsdCloseClient: 16
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] Script header: Location: http://localhost:631/admin
    D [01/Jan/2012:18:59:06 +0100] Script header:
    D [01/Jan/2012:18:59:06 +0100] cupsdAcceptClient: 16 from localhost:631 (IPv4)
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 16 GET /admin HTTP/1.1
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:06 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/admin.cgi"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/var/run/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@mamapc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.5.0"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[13] = "USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[14] = "CUPS_SERVER=/var/run/cups/cups.sock"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[15] = "CUPS_ENCRYPTION=IfRequested"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[16] = "IPP_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[17] = "AUTH_TYPE=Basic"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[23] = "REMOTE_ADDR=127.0.0.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[25] = "SCRIPT_NAME=/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[27] = "REMOTE_USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[28] = "SERVER_PROTOCOL=HTTP/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[29] = "HTTP_COOKIE=org.cups.sid=960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[30] = "HTTP_USER_AGENT=Opera/9.80 (X11; Linux i686; U; de) Presto/2.10.229 Version/11.60"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[31] = "HTTP_REFERER=http://localhost:631/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[32] = "REQUEST_METHOD=GET"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[33] = "QUERY_STRING="
    D [01/Jan/2012:18:59:06 +0100] [CGI] Started /usr/lib/cups/cgi-bin/admin.cgi (PID 930)
    I [01/Jan/2012:18:59:06 +0100] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=930)
    D [01/Jan/2012:18:59:06 +0100] cupsdSendCommand: 16 file=17
    D [01/Jan/2012:18:59:06 +0100] PID 929 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] [CGI] admin.cgi started...
    D [01/Jan/2012:18:59:06 +0100] cupsdAcceptClient: 14 from localhost (Domain)
    D [01/Jan/2012:18:59:06 +0100] [CGI] http=0xb866c360
    D [01/Jan/2012:18:59:06 +0100] [CGI] org.cups.sid cookie is "960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] No form data, showing main menu...
    D [01/Jan/2012:18:59:06 +0100] [CGI] /usr/share/cups/drivers/pscript5.dll: Datei oder Verzeichnis nicht gefunden
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 14 POST / HTTP/1.1
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdAuthorize: No authentication data provided.
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 14 1.1 Get-Subscriptions 1
    D [01/Jan/2012:18:59:06 +0100] Get-Subscriptions ipp://localhost/
    D [01/Jan/2012:18:59:06 +0100] Get-Subscriptions client-error-not-found: No subscriptions found.
    D [01/Jan/2012:18:59:06 +0100] Returning IPP client-error-not-found for Get-Subscriptions (ipp://localhost/) from localhost
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] Script header: Content-Type: text/html;charset=utf-8
    D [01/Jan/2012:18:59:06 +0100] Script header:
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 14 WAITING Closing on EOF
    D [01/Jan/2012:18:59:06 +0100] cupsdCloseClient: 14
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] PID 930 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:11 +0100] cupsdReadClient: 13 GET / HTTP/1.1
    D [01/Jan/2012:18:59:11 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:11 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:11 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:11 +0100] cupsdReadClient: 13 WAITING Closing on EOF
    D [01/Jan/2012:18:59:11 +0100] cupsdCloseClient: 13
    D [01/Jan/2012:18:59:11 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:12 +0100] cupsdReadClient: 16 WAITING Closing on EOF
    D [01/Jan/2012:18:59:12 +0100] cupsdCloseClient: 16
    D [01/Jan/2012:18:59:12 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:12 +0100] cupsdAcceptClient: 13 from localhost:631 (IPv4)
    D [01/Jan/2012:18:59:12 +0100] cupsdReadClient: 13 GET /admin/log/access_log? HTTP/1.1
    D [01/Jan/2012:18:59:12 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:12 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:12 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    I [01/Jan/2012:18:59:32 +0100] Generating printcap /etc/printcap...
    D [01/Jan/2012:18:59:32 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Dirty files"
    D [01/Jan/2012:18:59:35 +0100] cupsdAcceptClient: 14 from localhost (Domain)
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 POST / HTTP/1.1
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [01/Jan/2012:18:59:35 +0100] cupsdAuthorize: No authentication data provided.
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Devices 1
    D [01/Jan/2012:18:59:35 +0100] CUPS-Get-Devices
    D [01/Jan/2012:18:59:35 +0100] cupsdIsAuthorized: username=""
    D [01/Jan/2012:18:59:35 +0100] Returning HTTP Unauthorized for CUPS-Get-Devices (no URI) from localhost
    D [01/Jan/2012:18:59:35 +0100] cupsdSendHeader: 14 WWW-Authenticate: Basic realm="CUPS", trc="y"
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 WAITING Closing on EOF
    D [01/Jan/2012:18:59:35 +0100] cupsdCloseClient: 14
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [01/Jan/2012:18:59:35 +0100] cupsdAcceptClient: 14 from localhost (Domain)
    D [01/Jan/2012:18:59:35 +0100] cupsdAcceptClient: 16 from localhost (Domain)
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 WAITING Closing on EOF
    D [01/Jan/2012:18:59:35 +0100] cupsdCloseClient: 14
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 16 POST / HTTP/1.1
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [01/Jan/2012:18:59:35 +0100] cupsdAuthorize: Authorized as root using PeerCred
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 16 1.1 CUPS-Get-Devices 1
    D [01/Jan/2012:18:59:35 +0100] CUPS-Get-Devices
    D [01/Jan/2012:18:59:35 +0100] cupsdIsAuthorized: username="root"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[0] = "/usr/lib/cups/daemon/cups-deviced"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[1] = "1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[2] = "0"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[3] = "2"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[4] = "2"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[5] = "requested-attributes=all exclude-schemes='beh','cups-pdf','bluetooth','dnssd','http','https','ipp','lpd','ncp','parallel','scsi','smb','snmp','socket'"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/var/run/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@mamapc"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.5.0"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[13] = "USER=root"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[14] = "CUPS_SERVER=/var/run/cups/cups.sock"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[15] = "CUPS_ENCRYPTION=IfRequested"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[16] = "IPP_PORT=631"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[17] = "AUTH_TYPE=PeerCred"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[18] = "LANG=en_US.UTF8"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[23] = "REMOTE_ADDR="
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[25] = "SCRIPT_NAME=/"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[27] = "REMOTE_USER=root"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[28] = "SERVER_PROTOCOL=HTTP/1.1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[29] = "HTTP_USER_AGENT=CUPS/1.5.0"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[30] = "REQUEST_METHOD=POST"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[31] = "CONTENT_LENGTH=244"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[32] = "CONTENT_TYPE=application/ipp"
    D [01/Jan/2012:18:59:35 +0100] [CGI] Started /usr/lib/cups/daemon/cups-deviced (PID 948)
    I [01/Jan/2012:18:59:35 +0100] Started "/usr/lib/cups/daemon/cups-deviced" (pid=948)
    D [01/Jan/2012:18:59:35 +0100] cupsdSendCommand: 16 file=14
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/mdns (PID 949)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/usb (PID 950)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/ipps (PID 951)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/serial (PID 952)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 949 (mdns) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] [CGI] list_devices
    D [01/Jan/2012:18:59:35 +0100] [CGI] usb_find_busses=2
    D [01/Jan/2012:18:59:35 +0100] [CGI] usb_find_devices=7
    D [01/Jan/2012:18:59:35 +0100] [CGI] libusb couldn't open USB device /dev/bus/usb/002/002: Permission denied.
    D [01/Jan/2012:18:59:35 +0100] [CGI] libusb requires write access to USB device nodes.
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 950 (usb) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] [CGI] Flushed attributes...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Found device "ipps"...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 951 (ipps) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] Script header: Content-Type: application/ipp
    D [01/Jan/2012:18:59:35 +0100] Script header:
    D [01/Jan/2012:18:59:35 +0100] [CGI] Flushed attributes...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Found device "serial:/dev/ttyS0?baud=115200"...
    D [01/Jan/2012:18:59:35 +0100] [CGI] Flushed attributes...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Found device "serial:/dev/ttyS1?baud=115200"...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 952 (serial) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] PID 948 (/usr/lib/cups/daemon/cups-deviced) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 16 WAITING Closing on EOF
    D [01/Jan/2012:18:59:35 +0100] cupsdCloseClient: 16
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:19:00:23 +0100] Report: clients=1
    D [01/Jan/2012:19:00:23 +0100] Report: jobs=0
    D [01/Jan/2012:19:00:23 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:00:23 +0100] Report: printers=0
    D [01/Jan/2012:19:00:23 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:00:23 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:00:23 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:00:23 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:01:15 +0100] cupsdReadClient: 13 WAITING Closing on EOF
    D [01/Jan/2012:19:01:15 +0100] cupsdCloseClient: 13
    D [01/Jan/2012:19:01:15 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:19:19:03 +0100] Report: clients=0
    D [01/Jan/2012:19:19:03 +0100] Report: jobs=0
    D [01/Jan/2012:19:19:03 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:19:03 +0100] Report: printers=0
    D [01/Jan/2012:19:19:03 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:19:03 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:19:03 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:19:03 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:22:10 +0100] Report: clients=0
    D [01/Jan/2012:19:22:11 +0100] Report: jobs=0
    D [01/Jan/2012:19:22:11 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:22:11 +0100] Report: printers=0
    D [01/Jan/2012:19:22:11 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:22:11 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:22:11 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:22:11 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:24:21 +0100] Report: clients=0
    D [01/Jan/2012:19:24:21 +0100] Report: jobs=0
    D [01/Jan/2012:19:24:21 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:24:21 +0100] Report: printers=0
    D [01/Jan/2012:19:24:21 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:24:21 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:24:21 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:24:21 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:27:26 +0100] Report: clients=0
    D [01/Jan/2012:19:27:26 +0100] Report: jobs=0
    D [01/Jan/2012:19:27:26 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:27:26 +0100] Report: printers=0
    D [01/Jan/2012:19:27:26 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:27:26 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:27:26 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:27:26 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:37:11 +0100] Report: clients=0
    D [01/Jan/2012:19:37:11 +0100] Report: jobs=0
    D [01/Jan/2012:19:37:11 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:37:11 +0100] Report: printers=0
    D [01/Jan/2012:19:37:11 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:37:11 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:37:11 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:37:11 +0100] Report: stringpool-total-bytes=5736
    I [01/Jan/2012:19:37:41 +0100] Scheduler shutting down normally.
    D [01/Jan/2012:19:37:41 +0100] Discarding unused server-stopped event...
    I [01/Jan/2012:19:37:41 +0100] Saving job.cache...
    I [01/Jan/2012:19:38:18 +0100] Listening to [v1.::1]:631 (IPv6)
    I [01/Jan/2012:19:38:18 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [01/Jan/2012:19:38:18 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [01/Jan/2012:19:38:18 +0100] Remote access is disabled.
    D [01/Jan/2012:19:38:18 +0100] Added auto ServerAlias mamapc
    I [01/Jan/2012:19:38:18 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [01/Jan/2012:19:38:18 +0100] Creating missing directory "/var/run/cups"
    D [01/Jan/2012:19:38:18 +0100] Repairing ownership of "/var/run/cups"
    D [01/Jan/2012:19:38:18 +0100] Repairing access permissions of "/var/run/cups"
    D [01/Jan/2012:19:38:18 +0100] Creating missing directory "/var/run/cups/certs"
    D [01/Jan/2012:19:38:18 +0100] Repairing ownership of "/var/run/cups/certs"
    D [01/Jan/2012:19:38:18 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [01/Jan/2012:19:38:18 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [01/Jan/2012:19:38:18 +0100] Configured for up to 100 clients.
    I [01/Jan/2012:19:38:18 +0100] Allowing up to 100 client connections per host.
    I [01/Jan/2012:19:38:18 +0100] Using policy "default" as the default.
    I [01/Jan/2012:19:38:18 +0100] Full reload is required.
    I [01/Jan/2012:19:38:19 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [01/Jan/2012:19:38:19 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [01/Jan/2012:19:38:19 +0100] Full reload complete.
    D [01/Jan/2012:19:38:19 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [01/Jan/2012:19:38:19 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [01/Jan/2012:19:38:19 +0100] Removed "/var/spool/cups/tmp/0039f4f0366a5"...
    D [01/Jan/2012:19:38:19 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [01/Jan/2012:19:38:19 +0100] Cleaning out old files in "/var/cache/cups"...
    I [01/Jan/2012:19:38:19 +0100] Listening to [v1.::1]:631 on fd 8...
    I [01/Jan/2012:19:38:19 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [01/Jan/2012:19:38:19 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [01/Jan/2012:19:38:19 +0100] Resuming new connection processing...
    D [01/Jan/2012:19:38:19 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:19:38:19 +0100] Discarding unused server-started event...
    D [01/Jan/2012:19:38:20 +0100] Report: clients=0
    D [01/Jan/2012:19:38:20 +0100] Report: jobs=0
    D [01/Jan/2012:19:38:20 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:38:20 +0100] Report: printers=0
    D [01/Jan/2012:19:38:20 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:38:20 +0100] Report: stringpool-string-count=289
    D [01/Jan/2012:19:38:20 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:38:20 +0100] Report: stringpool-total-bytes=4792
    I [01/Jan/2012:20:53:48 +0100] Scheduler shutting down normally.
    D [01/Jan/2012:20:53:48 +0100] Discarding unused server-stopped event...
    I [01/Jan/2012:20:53:48 +0100] Saving job.cache...
    I [01/Jan/2012:20:54:26 +0100] Listening to [v1.::1]:631 (IPv6)
    I [01/Jan/2012:20:54:26 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [01/Jan/2012:20:54:26 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [01/Jan/2012:20:54:26 +0100] Remote access is disabled.
    D [01/Jan/2012:20:54:26 +0100] Added auto ServerAlias mamapc
    I [01/Jan/2012:20:54:26 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [01/Jan/2012:20:54:26 +0100] Creating missing directory "/var/run/cups"
    D [01/Jan/2012:20:54:26 +0100] Repairing ownership of "/var/run/cups"
    D [01/Jan/2012:20:54:26 +0100] Repairing access permissions of "/var/run/cups"
    D [01/Jan/2012:20:54:26 +0100] Creating missing directory "/var/run/cups/certs"
    D [01/Jan/2012:20:54:26 +0100] Repairing ownership of "/var/run/cups/certs"
    D [01/Jan/2012:20:54:26 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [01/Jan/2012:20:54:26 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [01/Jan/2012:20:54:26 +0100] Configured for up to 100 clients.
    I [01/Jan/2012:20:54:26 +0100] Allowing up to 100 client connections per host.
    I [01/Jan/2012:20:54:26 +0100] Using policy "default" as the default.
    I [01/Jan/2012:20:54:26 +0100] Full reload is required.
    I [01/Jan/2012:20:54:27 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [01/Jan/2012:20:54:27 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [01/Jan/2012:20:54:27 +0100] Full reload complete.
    D [01/Jan/2012:20:54:27 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [01/Jan/2012:20:54:27 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [01/Jan/2012:20:54:27 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [01/Jan/2012:20:54:27 +0100] Cleaning out old files in "/var/cache/cups"...
    I [01/Jan/2012:20:54:27 +0100] Listening to [v1.::1]:631 on fd 8...
    I [01/Jan/2012:20:54:27 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [01/Jan/2012:20:54:27 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [01/Jan/2012:20:54:27 +0100] Resuming new connection processing...
    D [01/Jan/2012:20:54:27 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:20:54:27 +0100] Discarding unused server-started event...
    D [01/Jan/2012:20:54:28 +0100] Report: clients=0
    D [01/Jan/2012:20:54:28 +0100] Report: jobs=0
    D [01/Jan/2012:20:54:28 +0100] Report: jobs-active=0
    D [01/Jan/2012:20:54:28 +0100] Report: printers=0
    D [01/Jan/2012:20:54:28 +0100] Report: printers-implicit=0
    D [01/Jan/2012:20:54:28 +0100] Report: stringpool-string-count=289
    D [01/Jan/2012:20:54:28 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:20:54:28 +0100] Report: stringpool-total-bytes=4792
    I [02/Jan/2012:05:34:23 +0100] Scheduler shutting down normally.
    D [02/Jan/2012:05:34:24 +0100] Discarding unused server-stopped event...
    I [02/Jan/2012:05:34:24 +0100] Saving job.cache...
    I [02/Jan/2012:05:35:05 +0100] Listening to [v1.::1]:631 (IPv6)
    I [02/Jan/2012:05:35:05 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [02/Jan/2012:05:35:05 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [02/Jan/2012:05:35:05 +0100] Remote access is disabled.
    D [02/Jan/2012:05:35:05 +0100] Added auto ServerAlias mamapc
    I [02/Jan/2012:05:35:05 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [02/Jan/2012:05:35:05 +0100] Creating missing directory "/var/run/cups"
    D [02/Jan/2012:05:35:05 +0100] Repairing ownership of "/var/run/cups"
    D [02/Jan/2012:05:35:05 +0100] Repairing access permissions of "/var/run/cups"
    D [02/Jan/2012:05:35:05 +0100] Creating missing directory "/var/run/cups/certs"
    D [02/Jan/2012:05:35:05 +0100] Repairing ownership of "/var/run/cups/certs"
    D [02/Jan/2012:05:35:05 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [02/Jan/2012:05:35:05 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [02/Jan/2012:05:35:05 +0100] Configured for up to 100 clients.
    I [02/Jan/2012:05:35:05 +0100] Allowing up to 100 client connections per host.
    I [02/Jan/2012:05:35:05 +0100] Using policy "default" as the default.
    I [02/Jan/2012:05:35:05 +0100] Full reload is required.
    I [02/Jan/2012:05:35:06 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [02/Jan/2012:05:35:06 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [02/Jan/2012:05:35:06 +0100] Full reload complete.
    D [02/Jan/2012:05:35:06 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [02/Jan/2012:05:35:06 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [02/Jan/2012:05:35:06 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [02/Jan/2012:05:35:06 +0100] Cleaning out old files in "/var/cache/cups"...
    I [02/Jan/2012:05:35:06 +0100] Listening to [v1.::1]:631 on fd 8...
    I [02/Jan/2012:05:35:06 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [02/Jan/2012:05:35:06 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [02/Jan/2012:05:35:06 +0100] Resuming new connection processing...
    D [02/Jan/2012:05:35:06 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [02/Jan/2012:05:35:06 +0100] Discarding unused server-started event...
    D [02/Jan/2012:05:35:07 +0100] Report: clients=0
    D [02/Jan/2012:05:35:07 +0100] Report: jobs=0
    D [02/Jan/2012:05:35:07 +0100] Report: jobs-active=0
    D [02/Jan/2012:05:35:07 +0100] Report: printers=0
    D [02/Jan/2012:05:35:07 +0100] Report: printers-implicit=0
    D [02/Jan/2012:05:35:07 +0100] Report: stringpool-string-count=289
    D [02/Jan/2012:05:35:07 +0100] Report: stringpool-alloc-bytes=4648
    D [02/Jan/2012:05:35:07 +0100] Report: stringpool-total-bytes=4792
    I [02/Jan/2012:05:56:24 +0100] Scheduler shutting down normally.
    D [02/Jan/2012:05:56:24 +0100] Discarding unused server-stopped event...
    I [02/Jan/2012:05:56:24 +0100] Saving job.cache...
    I [02/Jan/2012:17:22:51 +0100] Listening to [v1.::1]:631 (IPv6)
    I [02/Jan/2012:17:22:51 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [02/Jan/2012:17:22:51 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [02/Jan/2012:17:22:51 +0100] Remote access is disabled.
    D [02/Jan/2012:17:22:51 +0100] Added auto ServerAlias mamapc
    I [02/Jan/2012:17:22:51 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [02/Jan/2012:17:22:51 +0100] Creating missing directory "/var/run/cups"
    D [02/Jan/2012:17:22:51 +0100] Repairing ownership of "/var/run/cups"
    D [02/Jan/2012:17:22:51 +0100] Repairing access permissions of "/var/run/cups"
    D [02/Jan/2012:17:22:51 +0100] Creating missing directory "/var/run/cups/certs"
    D [02/Jan/2012:17:22:51 +0100] Repairing ownership of "/var/run/cups/certs"
    D [02/Jan/2012:17:22:51 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [02/Jan/2012:17:22:51 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [02/Jan/2012:17:22:51 +0100] Configured for up to 100 clients.
    I [02/Jan/2012:17:22:51 +0100] Allowing up to 100 client connections per host.
    I [02/Jan/2012:17:22:51 +0100] Using policy "default" as the default.
    I [02/Jan/2012:17:22:51 +0100] Full reload is required.
    I [02/Jan/2012:17:22:52 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [02/Jan/2012:17:22:52 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [02/Jan/2012:17:22:52 +0100] Full reload complete.
    D [02/Jan/2012:17:22:52 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [02/Jan/2012:17:22:52 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [02/Jan/2012:17:22:52 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [02/Jan/2012:17:22:52 +0100] Cleaning out old files in "/var/cache/cups"...
    I [02/Jan/2012:17:22:52 +0100] Listening to [v1.::1]:631 on fd 8...
    I [02/Jan/2012:17:22:52 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [02/Jan/2012:17:22:52 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [02/Jan/2012:17:22:52 +0100] Resuming new connection processing...
    D [02/Jan/2012:17:22:52 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [02/Jan/2012:17:22:52 +0100] Discarding unused server-started event...
    D [02/Jan/2012:17:22:53 +0100] Report: clients=0
    D [02/Jan/2012:17:22:53 +0100] Report: jobs=0
    D [02/Jan/2012:17:22:53 +0100] Report: jobs-active=0
    D [02/Jan/2012:17:22:53 +0100] Report: printers=0
    D [02/Jan/2012:17:22:53 +0100] Report: printers-implicit=0
    D [02/Jan/2012:17:22:53 +0100] Report: stringpool-string-count=289
    D [02/Jan/2012:17:22:53 +0100] Report: stringpool-alloc-bytes=4648
    D [02/Jan/2012:17:22:53 +0100] Report: stringpool-total-bytes=4792
    I [02/Jan/2012:18:15:27 +0100] Scheduler shutting down normally.
    D [02/Jan/2012:18:15:27 +0100] Discarding unused server-stopped event...
    I [02/Jan/2012:18:15:27 +0100] Saving job.cache...
    E [02/Jan/2012:18:40:40 +0100] cupsdAuthorize: pam_authenticate() returned 7 (Authentication failure)!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:04 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:44:36 +0100] Returning HTTP Forbidden for CUPS-Delete-Printer (ipp://localhost/printers/Epson-Stylus-SX218) from localhost
    E [02/Jan/2012:18:46:25 +0100] Returning IPP client-error-document-format-not-supported for Print-Job (ipp://localhost:631/printers/Epson_Stylus_SX218) from localhost
    E [02/Jan/2012:18:54:25 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:54:25 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:54:25 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:54:26 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:56:58 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:58:04 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:58:04 +0100] Bad request line "%16%03%01" from localhost!
    W [02/Jan/2012:19:01:48 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:01:49 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:01:53 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:01:53 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:02:06 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:02:11 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:02:11 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:02:11 +0100] Bad request line "%16%03%01" from localhost!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:02:57 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    W [02/Jan/2012:19:03:42 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:03:42 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:03:42 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:04:46 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:05:17 +0100] Bad request line "%16%03%01" from localhost!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:06:12 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:06:57 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:06:58 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:15:57 +0100] Avahi client failed, closing client to allow a clean restart
    W [02/Jan/2012:19:18:48 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:18:48 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:19:55 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:20:30 +0100] Returning IPP client-error-document-format-not-supported for Print-Job (ipp://localhost:631/printers/Epson_Stylus_SX218) from localhost
    E [02/Jan/2012:19:24:03 +0100] Returning IPP client-error-document-format-not-supported for Send-Document (ipp://localhost:631/printers/Epson_Stylus_SX218) from localhost
    Please let me know if you should need other outputs, logfiles, etc. I appreciate any idea that could help me to get this damn thing to finally print something.
    Thank you very much!

    Hi Radhakrishnan,
    ORARRP doesn't actually do any printing itself. Via COM/Active-X, it calls the appropriate program that corresponds to the type of output, and then this program does the actual printing. For PDF, it calls Acrobat Reader to print the document. Acrobat Reader displays the printer dialog to let you choose which printer to use, and then when you click OK, Acrobat Reader prints the document and sends it to the printer.
    I expect that you'll find that when you use Acrobat Reader yourself on this machine it has exactly the same problems with this particular printer configuration. If so, you'll need to contact Adobe for further assistance.
    regards,
    Stewart

  • How to comment in smartform for text value in abap

    how to comment in smartform for text value in abap.
    i want to comment text value which is coming in output
    From drag and drop option i had dropped an item text in text window and now i dont want to delete it i just want to comment it so can any one help me in commenting the text value.
    Advance Thanks for your help

    hi
    open the text element in the smartform.
    on the left corner, we have text editor button.
    open that and change the editor (goto-->change editor)
    on the new line, give the format as comment line /*. and you can write the comments as required.
    such lines doesnt reflect in the output layout.
    thanks
    pavan

Maybe you are looking for