Re: Gorm can edit which types of files ?

2018-01-10 Thread Riccardo Mottola
Hi Daniel, On 2018-01-10 10:06:46 +0100 Riccardo Mottola wrote: I fear however I might have introduced an elusive bug that you cannot reply to certain messages, I hope to find the time to see if it is a regression or not and if I can fix it. Maybe it doesn't

Re: Gorm can edit which types of files ?

2018-01-10 Thread Riccardo Mottola
Hi, Daniel Santos wrote: I ran make install, and I can confirm that the problem is solved. Thanks for the assistance happy to read that!! Now you can play with GNUMail! I fixed quite some stuff lately. I fear however I might have introduced an elusive bug that you cannot reply to certain

Re: Gorm can edit which types of files ?

2018-01-09 Thread Daniel Santos
I ran make install, and I can confirm that the problem is solved. Thanks for the assistance > On 9 Jan 2018, at 10:55, Riccardo Mottola wrote: > > Daniel Santos wrote: >> I am running the binary at GNUMail.app/GNUMail under the main project >> directory >> > >

Re: Gorm can edit which types of files ?

2018-01-09 Thread Riccardo Mottola
Hi Daniel, Daniel Santos wrote: Hi, I updated my working copy of GNUMail to pick up the changes mentioned. But the problem still persists. Below is the output of the gdb session after the update. As you can see the check for NSNotFound is being made. (gdb) run Starting program:

Re: Gorm can edit which types of files ?

2018-01-08 Thread Daniel Santos
Hi, I updated my working copy of GNUMail to pick up the changes mentioned. But the problem still persists. Below is the output of the gdb session after the update. As you can see the check for NSNotFound is being made. (gdb) run Starting program: /home/dlsa/code/GNUMail-svn/GNUMail.app/GNUMail

Re: Gorm can edit which types of files ?

2018-01-08 Thread Riccardo Mottola
Hi Fred, Fred Kiefer wrote: Looks like Riccardo made some changes here but they won’t help your case. The problem is that line 594 in Utilities.m is still missing the check "i != NSNotFound“ you found it! Apparently that condition did not  happen for me, but it is better to check for not

Re: Gorm can edit which types of files ?

2018-01-07 Thread Daniel Santos
theSeparator = '/' aString = 'Drafts' On Fri, Jan 5, 2018 at 3:10 PM, Ivan Vučica wrote: > Can you share what theSeparator and aString are? > > 'print' command should just work. > > https://sourceware.org/gdb/onlinedocs/gdb/The-Print- > Command-with-Objective_002dC.html > >

Re: Gorm can edit which types of files ?

2018-01-05 Thread Fred Kiefer
Looks like Riccardo made some changes here but they won’t help your case. The problem is that line 594 in Utilities.m is still missing the check "i != NSNotFound“ Fred > Am 05.01.2018 um 15:22 schrieb Daniel Santos : > > Hi all, > > Any one has looked into this ? > >

Re: Gorm can edit which types of files ?

2018-01-05 Thread Ivan Vučica
Can you share what theSeparator and aString are? 'print' command should just work. https://sourceware.org/gdb/onlinedocs/gdb/The-Print-Command-with-Objective_002dC.html You may need to go up the stack to frame #2. Use the 'up' command to do that. On Fri, Jan 5, 2018 at 2:22 PM, Daniel Santos

Re: Gorm can edit which types of files ?

2018-01-05 Thread Daniel Santos
Hi all, Any one has looked into this ? Regards On Thu, Dec 28, 2017 at 11:08 PM, Daniel Santos wrote: > I just updated libs-base and GNUMail from version-control. > > doing a grep in libs-base I get : > > Headers/Foundation/NSObjCRuntime.h:enum {NSNotFound =

Re: Gorm can edit which types of files ?

2017-12-28 Thread Daniel Santos
I just updated libs-base and GNUMail from version-control. doing a grep in libs-base I get : Headers/Foundation/NSObjCRuntime.h:enum {NSNotFound = NSIntegerMax}; Which is what [aString indexOfCharacter: theSeparator]; is returning. But because NSNotFound is NSIntegerMax : [aString

Re: Gorm can edit which types of files ?

2017-12-28 Thread Riccardo Mottola
Hi, On 2017-12-28 23:18:21 +0100 Wolfgang Lux wrote: The problem is not so much the substringWithRange: method, but rather that the result of indexOfCharacter:, which is just NSNotFound, is not dealt with properly. This may be due to a 32/64 bit mismatch where

Re: Gorm can edit which types of files ?

2017-12-28 Thread Daniel Santos
The gorm problem occurred in the AccountView.nib in the Account Bundle I am using the latest release of gorm (1.2.23) Thanks for your help > On 28 Dec 2017, at 22:01, Riccardo Mottola wrote: > > Hi Daniel, > > Daniel Santos wrote: >> Hi Riccardo, >> >> I was able

Re: Gorm can edit which types of files ?

2017-12-28 Thread Riccardo Mottola
Hi Daniel, Daniel Santos wrote: Here are the details of the error I am getting : The backtrace : (gdb) bt 5 #0  +[Utilities folderNodesFromFolders:separator:] (self=out>, _cmd=, theFolders=0x55d49e20, theSeparator=)     at Utilities.m:602 #1  0x77b3470a in +[Utilities

Re: Gorm can edit which types of files ?

2017-12-28 Thread Riccardo Mottola
Hi Daniel, Daniel Santos wrote: Hi Riccardo, I was able to read your email, so you fixed it. What led me to Gorm and opening the GNUMail nibs in it, was that in my debian 9 VM (that I use to build and run gnustep), I bumped into a problem. When I open the preferences dialog and in the

Re: Gorm can edit which types of files ?

2017-12-28 Thread Daniel Santos
Here are the details of the error I am getting : The backtrace : (gdb) bt 5 #0 +[Utilities folderNodesFromFolders:separator:] (self=, _cmd=, theFolders=0x55d49e20, theSeparator=) at Utilities.m:602 #1 0x77b3470a in +[Utilities initializeFolderNodesUsingAccounts:] (self=,

Re: Gorm can edit which types of files ?

2017-12-28 Thread Daniel Santos
Hi Riccardo, I was able to read your email, so you fixed it. What led me to Gorm and opening the GNUMail nibs in it, was that in my debian 9 VM (that I use to build and run gnustep), I bumped into a problem. When I open the preferences dialog and in the accounts section I press either the Add or

Re: Gorm can edit which types of files ?

2017-12-27 Thread Riccardo Mottola
Hi Daniel, On 2017-12-25 21:04:04 +0100 Daniel Santos wrote: > Hi and Merry Christmas, > > I was trying to select elements on one of the NIB files in the GNUMail > project, a noticed that I can’t seem to do that on NIB files, only on Gorm > files. > Is it really lijke

Re: Gorm can edit which types of files ?

2017-12-25 Thread Gregory Casamento
Gorm should be able to edit gorm files. It can read nib files and edit them but I would recommend saving them as gorm files as the nib export has never been perfect. I’m not sure why you wouldn’t be able to edit them. There are some older nib files with which Gorm may have some issues. Whether

Re: Gorm can edit which types of files ?

2017-12-25 Thread Daniel Santos
Could you reply again ? Your first reply didn’t have any text Thanks > On 25 Dec 2017, at 22:54, Riccardo Mottola wrote: > > ___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org

Re: Gorm can edit which types of files ?

2017-12-25 Thread Riccardo Mottola
___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnustep