Re: [ANN] HighlighterKit 0.1.2 and Gemas 0.3

2012-02-19 Thread Sašo Kiselkov
On 02/19/2012 12:11 PM, Csanyi Pal wrote: Csanyi Pal csanyi...@gmail.com writes: gcc-4.6 HKSyntaxDefinition.m -c \ -MMD -MP -DGNU_RUNTIME=1 -DGNUSTEP_BASE_LIBRARY=1 -fno-strict-aliasing -fexceptions -fobjc-exceptions -D_NATIVE_OBJC_EXCEPTIONS -fPIC

Re: [ANN] HighlighterKit 0.1.2 and Gemas 0.3

2012-02-19 Thread Sašo Kiselkov
On 02/19/2012 01:40 PM, Csanyi Pal wrote: Csanyi Pal csanyi...@gmail.com writes: sudo -E checkinstall make install Can you first try a vanilla make install without checkinstall? My guess is that something goes wrong in the chroot magic which checkinstall uses. Don't worry about files being

Re: [ANN] HighlighterKit 0.1.2 and Gemas 0.3 - Gemas

2012-02-19 Thread Sašo Kiselkov
On 02/19/2012 02:08 PM, Csanyi Pal wrote: Csanyi Pal csanyi...@gmail.com writes: make messages=yes output This is gnustep-make 2.6.1. Type 'make print-gnustep-make-help' for help. Making all for app Gemas... gcc-4.6 -rdynamic -shared-libgcc -fexceptions -fgnu-runtime -o

Re: [ANN] HighlighterKit 0.1.2 and Gemas 0.3 - Gemas

2012-02-19 Thread Sašo Kiselkov
On 02/19/2012 04:55 PM, Csanyi Pal wrote: Sašo Kiselkov skiselkov...@gmail.com writes: It seems like you have some serious issues with linking on your system. It is possible. Are you using a custom gnustep, or the one shipped in Debian? It is a short story: first I has installed

Re: [ANN] HighlighterKit 0.1.2 and Gemas 0.3

2012-02-18 Thread Sašo Kiselkov
On 02/18/2012 11:08 PM, Csanyi Pal wrote: Hi Germán, Sat, 18 Feb 2012 11:47:44 -0600 -n Germán Arias ger...@xelalug.org írta: The source code are hosted in: http://svn.gna.org/viewcvs/gnustep-nonfsf/ I don't have luck with highlighterkit SVN source: It seems to be caused by a change

Re: [ANN] HighlighterKit 0.1.2 and Gemas 0.3

2012-02-18 Thread Sašo Kiselkov
On 02/19/2012 02:40 AM, German Arias wrote: 2012/2/18 Sašo Kiselkov skiselkov...@gmail.com: It seems to be caused by a change in include dependencies - in the implementation files I included (for speed of compilation) only a subset of the Foundation headers needed for compilation. Seems like

Re: NSOperation

2010-11-23 Thread Sašo Kiselkov
Concurrent operations run in separate threads, which don't automatically create autorelease pools (which are thread-local). You should enclose code which runs in a separate thread always in a new autorelease pool. -- Saso On 11/23/2010 12:44 AM, Scott Christley wrote: Hello, I'm trying to use

Re: SSL bundle

2008-02-10 Thread Sašo Kiselkov
David Ayers wrote: Nicola Pero schrieb: It would be nice instead for the author of the bundle to be able to control if gnustep-gui should be used when linking or not; ie, if it's a GUI bundle or a non-GUI bundle. :-) Maybe a gnustep-make variable to switch from GUI bundles to non-GUI

Re: European GNUstep Developer's Meeting

2007-05-08 Thread Sašo Kiselkov
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Hi I'd definitely like to be there, as I missed FOSDEM this year - stupid flights... - -- Saso Riccardo wrote: Hi, On 2007-05-07 11:07:14 +0200 [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi all, I think that I remember that during

Re: Searching NSString

2007-05-01 Thread Sašo Kiselkov
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Daniel J Farrell wrote: Hello, What is the easiest way to search the contents of an NSString for the occurrence of a word? For example, if I have @GNUStep is really cool, how can I find out if this contains the string @cool? I just need

Re: Searching NSString

2007-05-01 Thread Sašo Kiselkov
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Adam Fedor wrote: On May 1, 2007, at 11:38 AM, Sašo Kiselkov wrote: BOOL ContainsString (NSString *string, NSString *keyword) { return [string rangeOfString: keyword].location != NSNotFound; } Slightly better: BOOL ContainsString

Re: FOSDEM

2007-02-26 Thread Sašo Kiselkov
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Oliver Langer wrote: Hi GSsteppers, i've been at FOSDEM and i really enjoyed those days (and evenings) and it was very valuable for me! I liked our discussions and especially getting in touch with some of your guys! Thanks to all who

Re: FOSDEM: We Need Hardware

2007-01-25 Thread Sašo Kiselkov
Nicolas Roard wrote: Hi everybody, We need to know who can bring hardware for the fosdem's booth... here's what we *need*: - public computers for the booth -- ideally one running windows, one running linux/bsd, one running OS X -- could be laptops or not. Those mac mini do not take space

Re: Cocotron

2006-12-24 Thread Sašo Kiselkov
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Helge Hess wrote: Even if this is the case (nobody seems to use it!) producing packages which install it properly also takes some more days(/weeks). I certainly can't write gnustep-make packages which install my software into /usr/local out

Re: Cocotron

2006-12-24 Thread Sašo Kiselkov
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Helge Hess wrote: On Dec 24, 2006, at 13:18, Sašo Kiselkov wrote: Interresting that I was able to build a self-contained installable binary application package of an app which uses additional libraries and massively depends on run-time

Re: Call for Presentations: GNUstep @ FOSDEM 2007

2006-11-30 Thread Sašo Kiselkov
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 [EMAIL PROTECTED] wrote: Hi all, I would like to know if you did read/recognize this announcement, and if you are considering to propose something. Please also forward the Call for Presentations to whomever it could concern. Kind

Re: memory leak

2006-11-29 Thread Sašo Kiselkov
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Marc Brünink wrote: Hi all, today I discovered a memory leak in one of our frameworks. I searched till I went mad, but didn't find anything. Has anyone a suggestion how to track this one down? Thanks Marc

Re: Installing back (Local - System)

2006-11-24 Thread Sašo Kiselkov
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Chris Vetter wrote: On 2006-11-24 18:26:52 +0100 Nicola Pero [EMAIL PROTECTED] wrote: It wasn't changed. ;-) [...] Out of curiosity , why IS there a difference between GNUstep/Local and GNUstep/System. Yes, I know, legacy support and all

Re: scrollbars [was: Re: really attracting developers]

2006-09-04 Thread Sašo Kiselkov
Pete French wrote: to scroll down without a scrollwheel and without the keyboard I've to cross half of the screen to reach the scrollbar on the left side of the hmmm - whats your mouse doing on the right hand side for you to need to move it that far ? all the menus of a *step are on the

Re: These NeXTbuntu guys

2006-08-29 Thread Sašo Kiselkov
Andreas Höschler wrote: Hello Chris, • If an app hangs Window Maker is dead. No chance to start Terminal.app to kill the application. This is not acceptable. Agreed, however, if any window manager hangs you're in deep shit anyway. I assume the corresponding system on a Mac is multi

Re: Camino (mozilla based Cocoa Browser) now builds with Cario

2006-03-14 Thread Sašo Kiselkov
Quoting Lars Sonchocky-Helldorf [EMAIL PROTECTED]: http://forums.mozillazine.org/ viewtopic.php?t=391177postdays=0postorder=ascpostsperpage=15start=15 time to start the porting to GNUstep (a decent web browser is something GNUstep urgently needs)? regards, Lars I'm 100% for it, but

Re: GSNews a Gnustep newsreader.. but gorm wont work..

2006-03-14 Thread Sašo Kiselkov
Quoting Anurodh Pokharel [EMAIL PROTECTED]: Hi, I posted earlier that I've been trying to port a cocoa application I wrote called OSXnews ( http://osxnews.sf.net ), the good news is that to my delight, gnustep is compatible enough with Cocoa that I was able to remove the Webcore

Re: Project GNUstep in a Nutshell ready for FOSDEM 2007

2006-03-11 Thread Sašo Kiselkov
Quoting [EMAIL PROTECTED]: Hi all, as inidcated, I would like to edit such a book and I really appreciate all the hints and offers for help which already appeared here on this list. So, what I am looking for is a book(let) like the O'Reilly Pocket Reference series, e.g. GIMP, MySQL, PHP

Re: FOSDEM 2006

2006-03-10 Thread Sašo Kiselkov
Quoting Nicolas Roard [EMAIL PROTECTED]: On 3/2/06, Sa#65533;o Kiselkov [EMAIL PROTECTED] wrote: Quoting Stefan Urbanek [EMAIL PROTECTED]: Hi, How was the FOSDEM 2006? Any success/achievements for GNUstep? What was the feedback of others? For my part, I can say that I

Re: HNUstep and Garbage Collection

2006-03-08 Thread Sašo Kiselkov
Quoting Adrian Robert [EMAIL PROTECTED]: Note, however, a quick look at the source shows that the macros mentioned here are unneeded -- if GNUstep is compiled with GC, - retain and -release impls are #ifdef'd out. Quoting: Objective-C GNUstep Base Programming Manual, Section 3.2.3, Paragraph

Re: FOSDEM 2006

2006-03-07 Thread Sašo Kiselkov
Quoting [EMAIL PROTECTED]: attended - no way - but I think we could have done so much more about the GNUstep booth, material, promotion and activity. Next year I'd like to participate more in this part of the process - getting more attention to GNUstep. We really need to show to

Re: WinXP and NoteBook.app, Success!

2006-02-07 Thread Sašo Kiselkov
Quoting Jeremy Cowgar [EMAIL PROTECTED]: Hello! With all the talk of Windows recently, I decided to setup a Windows box and see if my NoteBook app would compile/run on it. Success! I just installed the -gui development environment, untar'd my sources from my FreeBSD box and then make

Re: NSPredicate and related classes ?

2006-01-12 Thread Sašo Kiselkov
Quoting [EMAIL PROTECTED]: Neither... NSPredicate and NSExpression are defined in Foundation - they simply describe a query. They evaluate on NSObjects (NSString, NSArray, NSNumber, NSDictionary etc.). A reference is http://cocoadevcentral.com/articles/86.php (page 14). Storage (Core

Re: FYI: notes for a GNUstep VoIP app

2006-01-06 Thread Sašo Kiselkov
Quoting Dennis Leeuw [EMAIL PROTECTED]: First of all a Happy New Year to everybody. I just came across a little tool for VoIP application development: http://johnny.wit.edu.pl/ It's a development environment for VoIP apps that makes it realy easy to create such an app. Just had to share

Re: ANN: ProjectManager 0.1.2

2005-12-27 Thread Sašo Kiselkov
Quoting Serg Stoyan [EMAIL PROTECTED]: Agree with you. Excelent work, Sašo. Sašo if you don't mind I want to integrate ProjectManager's editor into ProjectCenter. Sure, go ahead. The relevant classes (and files) are: - SourceEditorDocument: the editor's NSDocument subclass. -

ANN: ProjectManager 0.1.2

2005-12-22 Thread Sašo Kiselkov
ABOUT ProjectManager ProjectManager is a project to provide a simple, but very usable IDE for GNUstep. NOTEWORTHY CHANGES IN 0.1.2 *** - Tons of small and big bugs fixed - Added ability to reference external files in project (though symbolic

Re: Unicode characters in window title

2005-12-09 Thread Sašo Kiselkov
Quoting Andreas Höschler [EMAIL PROTECTED]: Dear all, I am doing setTitle: on a window with a string containing unicode characters (ä,ö,ü). I only see the title up to the non-ascii character, the rest is truncated. Should this work or does GNUstep not support unicode strings in window

Re: Appkit documentation

2005-12-05 Thread Sašo Kiselkov
First of all: great work! It would be absolutely fantastic to have some library of documents (electronic or printed, doesn't matter) of pure GNUstep knowledge. This is one of the important points where a hobby project changes into a serious development environment. A remarks on the document (I

Re: NSBrowser question

2005-11-26 Thread Sašo Kiselkov
Quoting Andreas Höschler [EMAIL PROTECTED]: Hello all, I have done the following [browser setMatrixClass:[FinderBrowserMatrix class]]; in order to implement dragging in a browser so I get a call to - (void)mouseDown:(NSEvent *)event on an instance of FinderBrowserMatrix. Any

Re: Clash of the Titans, GNUstep alongside GNOME

2005-11-26 Thread Sašo Kiselkov
First of all, a little criticism at the beginning: you are comparing two different things: GNUstep is a framework for developing applications, Gnome is a desktop environment. So next time compare either Gnome to, say, the Etoile project (www.etoile-project.org) or GNUstep to GTK 2.0. Quoting Thom

Re: reincarnating nextstep

2005-11-17 Thread Sašo Kiselkov
Quoting Rogelio M. Serrano Jr. [EMAIL PROTECTED]: Whats needed to build a true nextstep clone using linux? I never owned or used a next computer before. Grab Debian, and modify it to include the following: - graphical bootup (simple) - graphical login - NeXTStep-like filesystem layout

Re: FOSDEM 2006

2005-11-16 Thread Sašo Kiselkov
Quoting Nicolas Roard [EMAIL PROTECTED]: I'd love a GDL2 + EOModel presentation personally, or CoreData (saso ?..) -- Nicolas Roard Any sufficiently advanced technology is indistinguishable from magic. -Arthur C. Clarke Hmm, gscoredata is still quite defunct and I'll be busy with

Re: NSPredicate

2005-10-24 Thread Sašo Kiselkov
Quoting Quentin Mathé [EMAIL PROTECTED]: Le 23 oct. 05 à 19:31, Alex Perez a écrit : Enrico Sersale wrote: So, the question is: is somebody working at NSPredicate (and at the other NSMetadata* classes)? Quentin has, AFAIR. That's true for NSPredicate, but they are still

Re: GNUSTEP and Cocoa

2005-10-08 Thread Sašo Kiselkov
Massimo Esposito wrote: I have a MacOsX application written using GNUSTEP and Cocoa. I would like to port this application to a Linux machine. Is it possible translating Cocoa code into GNUSTEP code? And if I'd not like to port the GUI but only the controller and model parts, does it exist in

Re: Objective-C equivalent of a destructor?

2005-10-06 Thread Sašo Kiselkov
Quoting Stefan Urbanek [EMAIL PROTECTED]: On 5.10.2005, at 22:33, Andrew Pinski wrote: On Oct 5, 2005, at 4:31 PM, percy tiglao wrote: Basically, I know init does the initialization code (and new is basically alloc and then init) But is there any cleanup code? Specifically, I'd

Re: Time to communicate

2005-10-06 Thread Sašo Kiselkov
Quoting MJ Ray [EMAIL PROTECTED]: Adrian Robert [EMAIL PROTECTED] wrote: Anyway, this is just to say that, groupware apps being core to a large part of daily interaction in today's companies, feature sets are large, and standards tend to be high. [...] Part of the problem is that these

Re: GNUstep Makefiles (resource specific)

2005-10-06 Thread Sašo Kiselkov
Quoting Nicola Pero [EMAIL PROTECTED]: image = [NSImage imageNamed: @myIcon]; Percy, isn't your program by any chance a tool (I deduct this from you mentioning you're utilising SDL, so I guess you're using only Foundation (gnustep-base))? Because then you won't have an NSImage class in the

Re: GNUstep and session management

2005-10-06 Thread Sašo Kiselkov
Quoting Roman Belenov [EMAIL PROTECTED]: Richard Frith-Macdonald [EMAIL PROTECTED] writes: When the session manage wishes to shut down (either for a logout or for the machine shutting down), it should post an NSWorkspaceWillPowerOffNotification to the workspace notificationCenter. The

Re: Checking the super class of a class

2005-10-06 Thread Sašo Kiselkov
Quoting Richard Frith-Macdonald [EMAIL PROTECTED]: On 2005-10-06 15:49:15 + Andreas Höschler [EMAIL PROTECTED] wrote: Hi all, I need something like [something isKindOfClass:...] with something being not an instance but a class created with NSClassFromString(). A probably working

Re: Checking the super class of a class

2005-10-06 Thread Sašo Kiselkov
Quoting Andreas Höschler [EMAIL PROTECTED]: Hi all, I need something like [something isKindOfClass:...] with something being not an instance but a class created with NSClassFromString(). A probably working but very ugly hack would be to create an instance of this class with [[something

Re: GNUstep base vs libobjc

2005-09-21 Thread Sašo Kiselkov
Quoting percy tiglao [EMAIL PROTECTED]: Hello, I am very new to Objective-C and I'd like to try it out for a while (looks like the language I'm looking for, dynamic, small, compiled, portable, and C-like) Good choice. :-) I do not feel like stepping all the way into the NeXT framework, but

Re: Naming and other conventions

2005-08-30 Thread Sašo Kiselkov
Quoting Stefan Urbanek [EMAIL PROTECTED]: Hi, As mentioned in my previous emails, StepTalk is going through interface additions and changes. Following are several questions from previous mail (RFC: StepTalk semi-persistent shared environment(s)) that received no feedback so far. I would

Re: Documentation in OpenOffice format

2005-08-29 Thread Sašo Kiselkov
Quoting Stefan Urbanek [EMAIL PROTECTED]: Well, I see no difference in functionality in OO and TeX: in OO you have styles for that. It is not about marking heading as '14pt Helvetica-Bold' but about marking heading as 'Heading 1' style. I never set direct fonts in my documents, I use styles -

RE: GNUstep on the rise!

2005-08-05 Thread Sašo Kiselkov
Quoting Vaisburd, Haim [EMAIL PROTECTED]: Cris Vetter wrote: [...] [ GNUstep separate OS ] AFAIK, xMach is dead :-( So does anyone know how far Hurd is with respect to usability? [...] Sorry, I deleted the essential part of Cris' letter that I'm going to reply. I guess when Chris

Re: Problem with Renaissance and InstanceOf

2005-08-05 Thread Sašo Kiselkov
Quoting Chris Meredith [EMAIL PROTECTED]: Greetings. I'm trying to use GNUstep Renaissance as a means of designing user interfaces for Mac OS X applications (because Interface Builder's lack of support for assistive technology for the blind is driving me up a wall 'cause, well, I'm blind,

Re: GNUstep on the rise!

2005-08-04 Thread Sašo Kiselkov
Quoting Chris Vetter [EMAIL PROTECTED]: A few days ago I read an article mentioning, among other things, GNUstep and how 'cool' (my choice of words) it would be if/when/whether 'these guys' (ie. the developers of GNUstep) would decide to put GNUstep on top of their OWN operating system

Re: GNUstep on the rise!

2005-08-04 Thread Sašo Kiselkov
Quoting [EMAIL PROTECTED]: Sašo Kiselkov wrote: Of course, I'm not against a GNUstep-only-system (hell, I already did it as my graduation work at high school, complete with a CD-based installer, integrated workspace, it's own package management, etc.), is it downloadable? Well, sorry

Re: 9 out of 10 geniuses prefer GNUstep!

2005-07-18 Thread Sašo Kiselkov
Quoting Patrick McFarland [EMAIL PROTECTED]: So, I didn't feel like coding today, so I wipped out gimp and did this instead: http://shadowconflict.com/blog/gnustepeinstein3.png What do you think? -- Patrick Diablo-D3 McFarland || [EMAIL PROTECTED] Computer games don't affect kids; I mean

Re: GNUstep support for Core Data?

2005-06-15 Thread Sašo Kiselkov
In Mac OS X 10.4, Apple added `Core Data', a framework that allows data manipulation (see developer.apple.com for more information). I think that GNUstep should have support for Core Data. Samuel Lauber I'm currently working on an implementation of CoreData for GNUstep, but this framework