Change type signature of objectForKey: ?

2006-03-29 Thread Richard Frith-Macdonald
The -objectForKey: and -setobject:forKey: methods exist in NSUserDefaults and NSDictionary with two different type signatures. For NSDictionary the key is of type 'id' but for NSUserDefaults it is of type 'NSString*' This can cause a lot of irritating compiler warnings when using these

Re: Change type signature of objectForKey: ?

2006-03-29 Thread David Ayers
Richard Frith-Macdonald schrieb: The -objectForKey: and -setobject:forKey: methods exist in NSUserDefaults and NSDictionary with two different type signatures. For NSDictionary the key is of type 'id' but for NSUserDefaults it is of type 'NSString*' This can cause a lot of irritating

Re: Italian and lojban Localizable.strings

2006-03-29 Thread Maurizio Boriani
On 2006-03-27 15:46:19 +0200 Maurizio Boriani [EMAIL PROTECTED] wrote: Hi, While working on gui theme integration fix and write a bit about Localizable strings. noman want's to put then in svn ? :) no comments ? are so orrible :) bye -- Maurizio Boriani GPG key: 0xCC0FBF8F = E429 A37C

Re: gui images

2006-03-29 Thread Ingolf Jandt
On 2006-03-19 19:34:51 +0100 Nicolas Roard [EMAIL PROTECTED] wrote: I tried the images, the switch is ok, but the slider knobs aren't -- nothing is drawn behind apparently, thus it display the slider background -- and the It looks so much better with my colour scheme that I apparently did

Re: Italian and lojban Localizable.strings

2006-03-29 Thread Fred Kiefer
Hi Maurizio, don't get us wrong, we all started to learn lojban right after getting your mail with the GNUstep translations. This is what is keeping us from submitting your patch. As soon as the whole GNUstep mailing list has been converted to lojban we will resume working and your patch will be

Re: Italian and lojban Localizable.strings

2006-03-29 Thread Maurizio Boriani
On 2006-03-29 19:29:48 +0200 Fred Kiefer [EMAIL PROTECTED] wrote: Hi Maurizio, don't get us wrong, we all started to learn lojban right after getting your mail with the GNUstep translations. This is what is keeping us from submitting your patch. As soon as the whole GNUstep mailing list has

Re: Italian and lojban Localizable.strings

2006-03-29 Thread Adam Fedor
Yes, Maurizio has a valid copyright assignment for GNUstep. On 2006-03-29 10:29:48 -0700 Fred Kiefer [EMAIL PROTECTED] wrote: Hi Maurizio, don't get us wrong, we all started to learn lojban right after getting your mail with the GNUstep translations. This is what is keeping us from

Re: Italian and lojban Localizable.strings

2006-03-29 Thread Fred Kiefer
OK, I submitted both files, now back to learning lojban. :-) Cheers Fred Maurizio Boriani wrote: On 2006-03-29 19:29:48 +0200 Fred Kiefer [EMAIL PROTECTED] wrote: Hi Maurizio, don't get us wrong, we all started to learn lojban right after getting your mail with the GNUstep translations.

Re: RSS feed for GNUstep SVN repository?

2006-03-29 Thread Andrew Ruder
On Wed, Mar 29, 2006 at 11:05:44AM -0800, Derek Zhou wrote: svn's revision number is incremented for every commit to the whole repository. So how does one find out the next real commit to a specific project, (like base, make)? I guess I can make a script to increment my local revision one by

Re: RSS feed for GNUstep SVN repository?

2006-03-29 Thread Derek Zhou
Andrew Ruder [EMAIL PROTECTED] writes: On Wed, Mar 29, 2006 at 11:05:44AM -0800, Derek Zhou wrote: svn's revision number is incremented for every commit to the whole repository. So how does one find out the next real commit to a specific project, (like base, make)? I guess I can make a

Re: Change type signature of objectForKey: ?

2006-03-29 Thread Helge Hess
On 29. Mrz 2006, at 10:35 Uhr, Richard Frith-Macdonald wrote: The -objectForKey: and -setobject:forKey: methods exist in NSUserDefaults and NSDictionary with two different type signatures. For NSDictionary the key is of type 'id' but for NSUserDefaults it is of type 'NSString*' This can

Re: RSS feed for GNUstep SVN repository?

2006-03-29 Thread Andrew Ruder
On Wed, Mar 29, 2006 at 12:42:29PM -0800, Derek Zhou wrote: Thanks. But the problem is, I don't want last (wrt. the HEAD) commit or last n commits, I want _next_ (wrt. my current tree revision) commit. svn log also takes an argument where you can specify revisions. Since more than likely

Re: RSS feed for GNUstep SVN repository?

2006-03-29 Thread Andrew Ruder
On Wed, Mar 29, 2006 at 04:43:48PM -0600, Andrew Ruder wrote: sgs=http://svn.gna.org/svn/gnustep/libs/base/trunk currentrev=22702 svn log -r HEAD:$currentrev $sgs/libs/base/trunk | grep -A 1 '^---' | grep '^r' | sed -e 's/.\([0-9]*\).*/\1/' | head -n -1 | tac Whoops, that should be:

Re: RSS feed for GNUstep SVN repository?

2006-03-29 Thread Derek Zhou
Thanks! This is much better than my old way. I'll try it out. Derek Andrew Ruder [EMAIL PROTECTED] writes: On Wed, Mar 29, 2006 at 04:43:48PM -0600, Andrew Ruder wrote: sgs=http://svn.gna.org/svn/gnustep/libs/base/trunk currentrev=22702 svn log -r HEAD:$currentrev $sgs/libs/base/trunk |