Changeset e611598 for client


Ignore:
Timestamp:
Aug 16, 2010, 12:59:23 PM (15 years ago)
Author:
Kyle Brogle <broglek@…>
Branches:
debian
Children:
722845e
Parents:
a661510 (diff), 9dee329 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Kyle Brogle <broglek@…> (08/16/10 12:59:23)
git-committer:
Kyle Brogle <broglek@…> (08/16/10 12:59:23)
Message:

Merge branch 'master' into debian

File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/bin/gbq

    r7cdd65d r9dee329  
    4343}
    4444print "Queue listing for queue '$queue' on '$host'\n\n";
    45 print "Job ID\t\tOwner\t\tTitle\n";
    46 print "-----------------------------------------------------------------\n";
    47 
     45printf ("%-8s%-15s%s\n","Job","Owner","Title");
     46print "-"x70 . "\n";
    4847my @jobs = $printer->getJobs(0, 0);
    4948my ($job_ref, $jobid);
     
    5655        my $title = $job_ref->{'title'};
    5756
    58         print "$id\t\t$user\t\t$title\n";
     57        printf ("%-8s%-15s%s\n","$id",substr("$user",0,15),substr("$title",0,47));
    5958}
Note: See TracChangeset for help on using the changeset viewer.