[Gimp-developer] Here Be Bounties

2003-12-14 Thread Sven Neumann
Hi,

I'd like to draw your attention to this URL:

  http://www.markshuttleworth.com/bounty.html


Sven
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Here Be Bounties

2003-12-14 Thread David Neary
Hi,

That reminds me of some mail I got from a guy who also proposed
prizes for GIMP functionality. I believe that he mailed to the
list, he also posted on Usenet a few times.

As a point of interest, what should we do when this kind of thing
happens? Debate the features, decide which we'd like to have
anyway, and then publish the bounties on wgo or dgo as is
happenning for the GNOME/Ximian bounties? Open bugzilla bugs for
each feature, and let nature take its course? 

Working on bounties might be an interesting way to fundraise for
the GIMP community to pay for things like travel to GIMPCons and 
costs associated with the Foundation, if people decided to donate 
their prizes.

Cheers,
Dave.

-- 
   David Neary,
   Lyon, France
  E-Mail: [EMAIL PROTECTED]
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Here Be Bounties

2003-12-14 Thread Joao S. O. Bueno

Since it talks specifically about GIMP python,
which me, by chance, was trying for the very first time in gimp 1.3 
(no kidding --- I've been on gimp 1.2 with my python fu stuff so far), 
it is interesting to mention that as of now gimpImage neither 
gimp.pdb.gimp_image_new seens to be working. Therefore it is 
currently impossible to create a new gimp image from python.

I am posting it here instead of bugzilla just to check if  I am 
missing something obvious.

JS
--

On Sunday 14 December 2003 15:41, Sven Neumann wrote:
 Hi,

 I'd like to draw your attention to this URL:

   http://www.markshuttleworth.com/bounty.html


 Sven
 ___
 Gimp-developer mailing list
 [EMAIL PROTECTED]
 http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer

-- 

Este e-mail é, exceto pelas partes citadas
de outros e-mails, copyright(c) de João Sebastião
de Oliveira Bueno. Nenhuma cópia deste e-mail ou 
parte do mesmo pode existir nas dependências 
de, ou em posse de funcionários, de associações
protetoras de direitos autorais Brasileiras,
 dos Estados Unidos da América, ou de outros
países. Em particular essa exceção do direito
de leitura e posse deste e-mail se extende à
ABRA, ABPI, ABES, BSA, RIAA e MPAA. Violadores
estão infringindo as leis internacionais de 
direitos autorais e sujeitos às penalidades cabíveis.
Você pode re-utilizar, emendar,  acrescentar
suas palavras e citar e re-enviar qualquer 
parte do mesmo, desde que essa nota seja 
preservada e se não pertencer a alguma
das entidades supracitadas.



___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Here Be Bounties

2003-12-14 Thread Manish Singh
On Sun, Dec 14, 2003 at 05:41:59PM -0200, Joao S. O. Bueno wrote:
 
 Since it talks specifically about GIMP python,
 which me, by chance, was trying for the very first time in gimp 1.3 
 (no kidding --- I've been on gimp 1.2 with my python fu stuff so far), 
 it is interesting to mention that as of now gimpImage neither 
 gimp.pdb.gimp_image_new seens to be working. Therefore it is 
 currently impossible to create a new gimp image from python.
 
 I am posting it here instead of bugzilla just to check if  I am 
 missing something obvious.

What exactly are you seeing? It works fine here.

-Yosh
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Here Be Bounties

2003-12-14 Thread Manish Singh
On Sun, Dec 14, 2003 at 09:24:54PM -0200, Joao S. O. Bueno wrote:
 On Sunday 14 December 2003 18:36, Manish Singh wrote:
  On Sun, Dec 14, 2003 at 05:41:59PM -0200, Joao S. O. Bueno wrote:
   Since it talks specifically about GIMP python,
   which me, by chance, was trying for the very first time in gimp
   1.3 (no kidding --- I've been on gimp 1.2 with my python fu stuff
   so far), it is interesting to mention that as of now gimpImage
   neither gimp.pdb.gimp_image_new seens to be working. Therefore it
   is currently impossible to create a new gimp image from python.
  
   I am posting it here instead of bugzilla just to check if  I am
   missing something obvious.
 
  What exactly are you seeing? It works fine here.
 
 I just tried to create a new Image from the python console,a nd got 
 this:
  b=gimp.Image (1, 640, 480)
 Traceback (most recent call last):
   File console, line 1, in ?
 error: could not create image

Try b = gimp.Image(640, 480, RGB) 

I'm not sure where you got the 1, idea from, it's not like this in pygimp
1.2 either.

-Yosh
___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Here Be Bounties

2003-12-14 Thread Joao S. O. Bueno
On Sunday 14 December 2003 21:29, Manish Singh wrote:
 On Sun, Dec 14, 2003 at 09:24:54PM -0200, Joao S. O. Bueno wrote:
  On Sunday 14 December 2003 18:36, Manish Singh wrote:
   On Sun, Dec 14, 2003 at 05:41:59PM -0200, Joao S. O. Bueno 
wrote:
Since it talks specifically about GIMP python,
which me, by chance, was trying for the very first time in
gimp 1.3 (no kidding --- I've been on gimp 1.2 with my python
fu stuff so far), it is interesting to mention that as of now
gimpImage neither gimp.pdb.gimp_image_new seens to be
working. Therefore it is currently impossible to create a new
gimp image from python.
   
I am posting it here instead of bugzilla just to check if  I
am missing something obvious.
  
   What exactly are you seeing? It works fine here.
 
  I just tried to create a new Image from the python console,a nd
  got
 
  this:
   b=gimp.Image (1, 640, 480)
 
  Traceback (most recent call last):
File console, line 1, in ?
  error: could not create image

 Try b = gimp.Image(640, 480, RGB)

 I'm not sure where you got the 1, idea from, it's not like this
 in pygimp 1.2 either.

 -Yosh

It was just that. I tried the parameters in the wrong order - the 
documentation is ok on the PDB, but I was looking for documentation  
at the Python Image object, and when I did i not find it, I just 
forgot to look anywere else. Thank you.  

___
Gimp-developer mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer