http://qa.mandrakesoft.com/show_bug.cgi?id=3196
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From [EMAIL PROTECTED] 2003-03-15 14:23 -------
It might also be an idea to extend the options for ps2pdf to have a few
variations, passing the -dPDFSETTTINGS options, such as =/prepress, =/ebook.
For more info on these options, see:
http://www.ghostscript.com/doc/cvs/Ps2pdf.htm
It seems -dPDFSETTINGS=/default is the same as just using ps2pdf without
options, and the -dPDFSETTINGS=/ebook seems not to work.
Here are some examples of the difference in file sizes created:
[EMAIL PROTECTED] bgmilne]$ du final_printed*
4.8M final_printed-default.ps.pdf
5.8M final_printed-prepress.ps.pdf
5.2M final_printed-printer.ps.pdf
4.3M final_printed-screen.ps.pdf
37M final_printed.ps
4.8M final_printed.ps.pdf
final_printed is a 100+ page document with a lot of graphics.
final_printed.ps.pdf was created by the default "ps2pdf" command,
final_printed-default.ps.pdf used "ps2pdf -dPDFSETTINGS=/default", and similarly
for the rest.
See the attached .desktop for implementing these and fixing at least the ps2pdf
desktop entry.
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
------- Reminder: -------
assigned_to: [EMAIL PROTECTED]
status: NEW
creation_date:
description:
Right clicking on a postscript file gives the message:
The desktop entry file
/usr/share/apps/konqueror/servicemenus/convertpstopdf.desktop
has an invalid menu entry convertpstopdf
The problem is that Actions=convertpstopdf doesn't match
[Desktop Action convertpdftops].
Also,
Exec=ps2pdf %f.ps %f.pdf
should read
Exec=ps2pdf %f %f.pdf.
Otherwise, it's looking for a file that probably doesn't exist (e.g.,
myfile.ps.ps instead of myfile.ps).
I'm also having trouble with
/usr/share/apps/konqueror/servicemenus/compress-zip.desktop.
The problem is that zip expects an archive name as the first
argument, to which it then appends .zip. Giving it a url (e.g.,
'./Documents' as opposed to Documents) causes it to fail with:
zip error: Zip file structure invalid (./.Documents)
Changing
Exec=zip -r %u %u
to
Exec=zip -r %u.zip %u
solves the problem.
Note: I'm using cooker SRPMs rebuilt for 9.0, but that shouldn't
affect the validity of the report.