gnu.gnustep.help
  Home FAQ Contact Sign in
gnu.gnustep.help only
 
Advanced search
March 2008
motuwethfrsasuw
     12 9
3456789 10
10111213141516 11
17181920212223 12
24252627282930 13
31       14
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
gnu.gnustep.help Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Re: Setting up a development environment         


Author: Mehul N. Sanghvi
Date: Mar 19, 2008 17:39

Tim Käck said the following on 03/18/2008 12:05 PM:
> Hi all,
>
> I apologize if this is off topic for help-gnustep.
> I have been trying to figure out a decent development environment for
> doing development in GNUstep.
> Unfortunately is ProjectCenter not mature enough and I would like to
> contribute to that some day, but now I wonder if there is a good setup
> for Emacs?
> I come from a VisualWorks/Smalltalk background and I guess I am quite
> used to being able to see object hierarchies etc.
> I have played around a little with oo-browser but I guess I miss
> something fundamental to be able to be able to browse the Base and Gui
> classes.
>
> What tools of the trade does people on this list use? Note, XCode of
> course - but I do not have the ability do develop on a Mac currently.
>
> Best regards,
> Tim ...
Show full article (1.15Kb)
no comments
  Setting up a development environment         


Author: Tim Käck
Date: Mar 18, 2008 09:05

Hi all,

I apologize if this is off topic for help-gnustep.
I have been trying to figure out a decent development environment for
doing development in GNUstep.
Unfortunately is ProjectCenter not mature enough and I would like to
contribute to that some day, but now I wonder if there is a good
setup for Emacs?
I come from a VisualWorks/Smalltalk background and I guess I am quite
used to being able to see object hierarchies etc.
I have played around a little with oo-browser but I guess I miss
something fundamental to be able to be able to browse the Base and Gui
classes.

What tools of the trade does people on this list use? Note, XCode of
course - but I do not have the ability do develop on a Mac currently.

Best regards,
Tim
no comments
  GDL2 custom class creation         


Author: Blake Nicholson
Date: Mar 2, 2008 22:51

From what class should custom enterprise objects inherit, NSObject or
EOGenericRecord? I've tried both ways and have not been successful
running the following code snippet:

job = [[ESJob alloc] init];
[job setStyle:8];
[ec insertObject:job];
[ec saveChanges];
NSLog(@"%%@", [jobDS fetchObjects]);

where ec is my EOEditingContext and jobDS is an EODatabaseDataSource
for the ESJob entity (I followed the setup in the GDL2 examples).
When I inherit from EOGenericRecord, the code fails when saving
changes and gives the output I copied in below. When ESJob inherits
from NSObject, the code fails when I attempt to fetch the objects.

I am running OS X (Leopard) and am using the sources from svn (the
revision I'm working with is 26179). My library combo is apple-apple-
apple. I've included the interface and implementation files for my
ESJob class below the error output I've received. If you need any
other info, please let me know.
Show full article (2.87Kb)
no comments