Re: [PATCH] NSSavePanel.m -beginSheetForDirectory::::::

2004-03-13 Thread Fred Kiefer
Alexander Malmberg wrote: Fred Kiefer wrote: Alexander Malmberg wrote: [snip] I suppose you could see the headers, which do specify the integer values, as implicit documentation, but GNUstep doesn't have a the header is the documentation-tradition. This is a very strange statement, I already

Re: [RFC/make] Extend Framework support II

2004-03-13 Thread Sheldon Gill
On Fri, 12 Mar 2004 10:44, you wrote: OK, so here's my second try :-) What I meant was much more radical than this though. :-) I don't think GNUSTEP_SYSTEM_ROOT, GNUSTEP_NETWORK_ROOT, GNUSTEP_LOCAL_ROOT make any sense on apple-apple-apple. Hmm... sort of. They make sense in terms of places

Re: [RFC/make] Extend Framework support II

2004-03-13 Thread David Ayers
Nicola Pero wrote: Ok - so you want to install all your stuff, including frameworks, into GNUstep directories outside of the Apple ones. I don't think it's a good way of doing things, but I also agree it's a reasonable request for a power user to be able to use gnustep-make in such a way if you

Re: PATCH: NSPathUtilities etc

2004-03-13 Thread Nicola Pero
On Fri, 5 Mar 2004 02:04, Adam Fedor wrote: On Thursday, March 4, 2004, at 04:58 AM, David Ayers wrote: I understand that you are trying to address complicated issues. I must admit that I'm not convinced that this is right approach. OTOH, I don't have the cycles to come up with a

Re: PATCH: NSPathUtilities etc

2004-03-13 Thread Sheldon Gill
On Wed, 25 Feb 2004 01:35, Adam Fedor wrote: On Tuesday, February 24, 2004, at 12:43 AM, Kazunobu Kuriyama wrote: Sheldon Gill wrote: snip Does this mean that we couldn't use the configure options such as --prefix and --sysconfdir and we would have to edit the hypothetical options.h

Re: PATCH: NSPathUtilities etc

2004-03-13 Thread David Ayers
Sheldon Gill wrote: On Fri, 5 Mar 2004 02:04, Adam Fedor wrote: On Thursday, March 4, 2004, at 04:58 AM, David Ayers wrote: I understand that you are trying to address complicated issues. I must admit that I'm not convinced that this is right approach. OTOH, I don't have the cycles to come up

Re: PATCH: NSPathUtilities etc

2004-03-13 Thread stefan
Citt Alexander Malmberg [EMAIL PROTECTED]: Sheldon Gill wrote: Some more comments on NSPathUtilities.m. I think I'd be ready to commit this after addressing these comments. It's late, and I haven't had time to look at the patches in detail yet, but I'm still not really happy about the

[RFC/make] Extend Framework support II

2004-03-13 Thread David Ayers
OK, so here's my second try :-) As a developer, I find the feature of being able to configure different GNUSTEP_ROOT directories very useful. You can easily set up independent GNUstep environments on a (potentially foreign) system for testing. None the less, I'd agree to advocate '/' as the

Re: PATCH: NSPathUtilities etc

2004-03-13 Thread Alexander Malmberg
David Ayers wrote: [snip] So I would be grateful if you could post your patch again, possibly in coherent separate posts so that the issues can be addressed individually. I know its extra work but I really think it is needed here. Yes, that would be nice. [snip change NSTemporaryDirectory()

Re: [RFC/make] Extend Framework support II

2004-03-13 Thread David Ayers
Nicola Pero wrote: OK, so here's my second try :-) As a developer, I find the feature of being able to configure different GNUSTEP_ROOT directories very useful. You can easily set up independent GNUstep environments on a (potentially foreign) system for testing. None the less, I'd agree to

Re: [RFC/make] Extend Framework support II

2004-03-13 Thread Nicola Pero
OK, so here's my second try :-) As a developer, I find the feature of being able to configure different GNUSTEP_ROOT directories very useful. You can easily set up independent GNUstep environments on a (potentially foreign) system for testing. None the less, I'd agree to advocate '/' as

Re: [RFC/make] Extend Framework support II

2004-03-13 Thread David Ayers
Nicola Pero wrote: Note that there may be a bit more to take into consideration. For example .../Library/Headers does not seem to be included in standard search directories. Sure, because Apple doesn't use it. If you install headers in .../Library/Headers you're building stuff which you'll

Re: Fix, NSLayoutManager

2004-03-13 Thread Alexander Malmberg
Fred Kiefer wrote: Georg Fleischmann wrote: Hi, here is a little patch for the NSLayoutManager fixing a problem with layout_char. layout_char is unsigned but may become negative, thus flipping over to huge positive. The huge positive value then is not sattisfying the '' comparison.

Re: [PATCH] NSSavePanel.m -beginSheetForDirectory::::::

2004-03-13 Thread Alexander Malmberg
Fred Kiefer wrote: Alexander Malmberg wrote: This sounds like a misunderstanding. I wasn't talking about apple's [snip] Ok, now I see the other way your sentence could be read and was surely meant to be understood. Sorry for reading this different. Sorry about the confusion. /me makes note

Fix, NSAffineTransform (Text Rotation)

2004-03-13 Thread Georg Fleischmann
Hi, here is the second patch to make text rotation work. It is for NSAffineTransform -rotationAngle. The patch just corrects the sign of the angle and always returns positive angles. Georg 2004-03-14 Georg Fleischmann * gui/Source/NSAffineTransform.m [NSView rotationAngle]:

Fix, NSView (Text Rotation)

2004-03-13 Thread Georg Fleischmann
Hi, here is one of two patches to make text rotation work with Cenon and the Art backend. This is a patch for NSView. The other patch for NSAffineTransform is in a second mail. Now, the first problem in NSView was that the visible rect wasn't rotated/flipped correctly. As a result, the rotated

Re: PATCH: NSPathUtilities etc

2004-03-13 Thread Alexander Malmberg
[EMAIL PROTECTED] wrote: I believe we should try to make sure that the temporary directory *is* secure, and document this behavvior, [snip] Strongly agreed. I think that the documented secureness of GNUstep's NSTemporaryDirectory is a very valuable feature. Sheldon Gill wrote: [snip] Consider

Re: NSNotificationCenter throws exception in removeObserver

2004-03-13 Thread Adam Fedor
On Mar 8, 2004, at 9:02 AM, Wim Oudshoorn wrote: The following code will throw an NSInvalidArgumentException [[NSNotificationCenter defaultCenter] removeObserver: nil] The same code on WO4.5 YellowBox and MacOSX 10.3 will not throw an exception. So I will shortly apply a patch to fix this. Any