[Gimp-developer] Re: [Gimp-print-devel] Gimp-Print 4.2 hit list

2001-09-08 Thread Robert L Krawitz

   Date: Sat, 8 Sep 2001 17:28:34 +0100
   From: Roger Leigh <[EMAIL PROTECTED]>

   Another thing I found while testing is that there is an error in
   src/cups/Makefile.am.  genppd is run both when building, and *twice*
   during make install.  I can't see why.
   all-local: $(INSTALL_DATA_LOCAL_DEPS)  [build dependency]
   install-data-local: $(INSTALL_DATA_LOCAL_DEPS)  [install dependency]
   A file ppd-stamp is created so that the ppd-stamp rule is only run
   once, so I can't see why this occurs because ppd-stamp is not
   deleted AFAICS.

Mike and I discussed this last night; he will fix it today.  This is
the problem:

ppd-stamp: genppd catalog
...
rm -rf catalog
touch ppd-stamp

ppd-stamp depends upon catalog, but catalog is removed by the actions
for the rule.  This guarantees that the rule will fire every time.

-- 
Robert Krawitz <[EMAIL PROTECTED]>  http://www.tiac.net/users/rlk/

Tall Clubs International  --  http://www.tall.org/ or 1-888-IM-TALL-2
Member of the League for Programming Freedom -- mail [EMAIL PROTECTED]
Project lead for Gimp Print/stp --  http://gimp-print.sourceforge.net

"Linux doesn't dictate how I work, I dictate how Linux works."
--Eric Crampton
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer



[Gimp-developer] Re: [Gimp-print-devel] Gimp-Print 4.2 hit list

2001-09-08 Thread Roger Leigh

On Thu, Sep 06, 2001 at 02:20:14PM -0400, Michael Sweet wrote:
> Robert L Krawitz wrote:
> > ...
> >4) Complete the I18n on the CUPS (Mike, Roger?).
> 
> I'm working this right now; the only changes I've made to Roger's
> stuff so far is to translate the words "English" and "ISOLatin1"
> instead of "LanguageLevel" and "LanguageVersion", since that will
> work best when gettext is disabled.

You could just do this:

if (strncmp ("LanguageEncoding", _("LanguageEncoding"), \
strlen("LanguageEncoding")) == 0)
 {
   LanguageEncoding = "ISOLatin1";
 }
else
 {
   LanguageEncoding = _("LanguageEncoding");
 }

This has the benefit of being a distinctive string.  After all, translating
"English", or "ISOLatin1" is not very intuitive.  I think that if you were
alse to put some comment like
/* Specify translation encoding e.g. ISOLatin1 */ or
/* Specify language of translation */
it should be seen by xgettext and merged into the po file, to give a hint
to translators as to what is expected by way of translation.  I have
added similar omments to genppd.c.

The `key' for translation should be unambiguous, and I would like to make
the above change, if you agree with it.

Another thing I found while testing is that there is an error in
src/cups/Makefile.am.  genppd is run both when building, and *twice*
during make install.  I can't see why.
all-local: $(INSTALL_DATA_LOCAL_DEPS)  [build dependency]
install-data-local: $(INSTALL_DATA_LOCAL_DEPS)  [install dependency]
A file ppd-stamp is created so that the ppd-stamp rule is only run
once, so I can't see why this occurs because ppd-stamp is not
deleted AFAICS.

Regards,
Roger

-- 
Roger Leigh ** Registration Number: 151826, http://counter.li.org **
Need Epson Stylus Utilities? http://gimp-print.sourceforge.net/
For GPG Public Key: finger [EMAIL PROTECTED] or see public keyservers.
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer



[Gimp-developer] Re: [Gimp-print-devel] Gimp-Print 4.2 hit list

2001-09-06 Thread Michael Sweet

Robert L Krawitz wrote:
> ...
> Hmm.  I thought the 1 was 3-level and the 5500 was 1-level???
> Maybe not.

Nope, I have the 5500 and it is definitely only 2-level (although
some of the early docs indicated 3 levels, testing proved it was
still only 2 levels (the third level produces no dot, which makes
for "interesting" output...)

I'm pretty sure the 1 is also 2-level, but I'll know for sure
in another month or so.

-- 
__
Michael Sweet, Easy Software Products  [EMAIL PROTECTED]
Printing Software for UNIX   http://www.easysw.com
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer



[Gimp-developer] Re: [Gimp-print-devel] Gimp-Print 4.2 hit list

2001-09-06 Thread Robert L Krawitz

   From: Michael Sweet <[EMAIL PROTECTED]>
   Date: Thu, 06 Sep 2001 14:20:14 -0400

   Robert L Krawitz wrote:
   > ...
   >4) Complete the I18n on the CUPS (Mike, Roger?).

   I'm working this right now; the only changes I've made to Roger's
   stuff so far is to translate the words "English" and "ISOLatin1"
   instead of "LanguageLevel" and "LanguageVersion", since that will
   work best when gettext is disabled.

Great.

   >6) Test and tune some of the large format (Stylus Pro series) Epson
   >   printers.  This one's a bit borderline, since there probably

   Right now I can test the 5500 and 7500 driver.  My 9000 is busted,
   and we haven't ordered out 1 yet (will be soon, tho!)

Thanks!  Much appreciated.

   >7) Determine that the Stylus Color, Stylus Color 1520, and other
   >   very old printers do the right thing with the default resolution
   >   in both color and black & white.  Mike, can you test this?  This
   >   would represent a regression if it's broken.

   I will *try* to do this, however there is a lot of other (paying :)
   stuff I have to work before this...  Testing is a big time vacuum.

It certainly is.  Unfortunately, the alternative is worse.

   >1) Tune the Stylus Photo 2000P.  Nothing at all has happened here
   >   since 4.0.  We haven't received any complaints about it, and I
   >   don't think that this printer sells all that well.  This one's
   >   not a stopper by any stretch of the imagination since it's
   >   simply a matter of tuning the inkset.  If it turns out to be
   >   more involved (which I think is unlikely) we can decide what to
   >   do then.

   I haven't done anything on this since I added support for the
   printer before; what we do here directly applies to the 5500 and
   1, since they share the same (2-level) support and inks.

Hmm.  I thought the 1 was 3-level and the 5500 was 1-level???
Maybe not.

-- 
Robert Krawitz <[EMAIL PROTECTED]>  http://www.tiac.net/users/rlk/

Tall Clubs International  --  http://www.tall.org/ or 1-888-IM-TALL-2
Member of the League for Programming Freedom -- mail [EMAIL PROTECTED]
Project lead for Gimp Print/stp --  http://gimp-print.sourceforge.net

"Linux doesn't dictate how I work, I dictate how Linux works."
--Eric Crampton
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer



[Gimp-developer] Re: [Gimp-print-devel] Gimp-Print 4.2 hit list

2001-09-06 Thread Michael Sweet

Robert L Krawitz wrote:
> ...
>4) Complete the I18n on the CUPS (Mike, Roger?).

I'm working this right now; the only changes I've made to Roger's
stuff so far is to translate the words "English" and "ISOLatin1"
instead of "LanguageLevel" and "LanguageVersion", since that will
work best when gettext is disabled.

> ...
>6) Test and tune some of the large format (Stylus Pro series) Epson
>   printers.  This one's a bit borderline, since there probably

Right now I can test the 5500 and 7500 driver.  My 9000 is busted,
and we haven't ordered out 1 yet (will be soon, tho!)

> ...
>7) Determine that the Stylus Color, Stylus Color 1520, and other
>   very old printers do the right thing with the default resolution
>   in both color and black & white.  Mike, can you test this?  This
>   would represent a regression if it's broken.

I will *try* to do this, however there is a lot of other (paying :)
stuff I have to work before this...  Testing is a big time vacuum.

> ...
>1) Tune the Stylus Photo 2000P.  Nothing at all has happened here
>   since 4.0.  We haven't received any complaints about it, and I
>   don't think that this printer sells all that well.  This one's
>   not a stopper by any stretch of the imagination since it's
>   simply a matter of tuning the inkset.  If it turns out to be
>   more involved (which I think is unlikely) we can decide what to
>   do then.

I haven't done anything on this since I added support for the
printer before; what we do here directly applies to the 5500 and
1, since they share the same (2-level) support and inks.

-- 
__
Michael Sweet, Easy Software Products  [EMAIL PROTECTED]
Printing Software for UNIX   http://www.easysw.com
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer



[Gimp-developer] Re: [Gimp-print-devel] Gimp-Print 4.2 hit list

2001-09-04 Thread Andy Thaller

Robert L Krawitz wrote:
> III) Things that we really should fix if we can, but that won't stop
> the release.
> 
>2) Tune the 2880x720 Epson printers.  It may be possible to get
>   slightly better print quality on those machines; if we can, that
>   would be mildly useful to a lot of people.  If we can get an
>   improvement, it's going to be in the dark midtones, by using
>   smaller dots.  The quality may be high enough already that we
>   don't need to worry.

Most of the Canon models need testing and eventually some fine-tuning. The
BJC6x00 models should be alright, but the others' state I cannot estimate. 

Cheers,
Andy

-- 
Andy Thaller
TU Muenchen, Physikdepartment E11   Tel: ++49 (0)89 289 12860
James Franck Str.   Fax: ++49 (0)89 289 12842
85748 Garching   //  Germanyemail:  [EMAIL PROTECTED]
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer