Re: [patch] fix bug 1473: Implement phantom in math

2006-04-21 Thread Enrico Forestieri
On Fri, Apr 21, 2006 at 09:17:43AM +0200, Georg Baum wrote: Enrico Forestieri wrote: That's strange. I see the same thing in Windows, Debian and Solaris. It is independent of the fonts chosen for display. Now I see that you meant \{ etc without \bigl. This is the same here. The reason

Re: [patch] fix bug 1473: Implement phantom in math

2006-04-21 Thread Enrico Forestieri
On Thu, Apr 20, 2006 at 06:56:57PM +0200, Georg Baum wrote: Enrico Forestieri wrote: This is perfect! I tested it and think that this should also go in 1.4. Jean-Marc will tell. What is missing now is support for these in the math panel. It should not be too difficult to add, I would

Re: Unable to import LaTeX Documents in LyX 1.4.1 for Windows

2006-04-21 Thread Enrico Forestieri
On Fri, Apr 21, 2006 at 11:32:14AM -0400, Paul A. Rubin wrote: Angus Leeming wrote: Georg Baum [EMAIL PROTECTED] writes: I think this is a known bug: http://bugzilla.lyx.org/show_bug.cgi?id=2285. If I'm reading the report correctly, fixing it was deferred to 1.4.2. Here is the fix.

Re: Status of LyX-1.4.1 on WindowsME

2006-04-21 Thread Enrico Forestieri
On Fri, Apr 21, 2006 at 02:18:10PM +, Angus Leeming wrote: The good news is: 1. LyX 1.5 will have a Qt4 interface, using the official Qt4 library from Trolltech. 2. Enrico Forestieri has become de facto maintainer of the LyX/Cygwin and that *does* work on WinME apparently. Well

Re: [patch] fix bug 1473: Implement phantom in math

2006-04-21 Thread Enrico Forestieri
On Fri, Apr 21, 2006 at 04:54:57PM +0200, Georg Baum wrote: Enrico Forestieri wrote: I thought about it and my idea is to retain the existing delimiter dialog but placing a combobox next to the Keep matched checkbox. The default combobox item would be Variable size, and the other items

Re: [PATCH] File-compressed menu item

2006-04-21 Thread Enrico Forestieri
On Fri, Apr 21, 2006 at 12:23:09PM -0500, Bo Peng wrote: Should we always save compressed to file.lyx.gz, regardless of this flag? Given that there are stupid OSes out there that rely on file extension, I think this is not a good idea. That said, I don't know how compression is handled, but I

Re: [PATCH] File-compressed menu item

2006-04-22 Thread Enrico Forestieri
On Sat, Apr 22, 2006 at 01:48:00PM +0200, Georg Baum wrote: Abdelrazak Younes wrote: You know what would be great instead of a lyx compressed file? A portable lyx format. Quite frankly I don't see much the interest of having the lyx text file compressed as it is alreday quite small even

Re: [PATCH] File-compressed menu item

2006-04-22 Thread Enrico Forestieri
On Fri, Apr 21, 2006 at 06:35:41PM -0500, Bo Peng wrote: That said, I don't know how compression is handled, but I think that it should be done such that a LyX file starts with #LyX such that it is still possible to recognize it whatever its extension or compression status. Current

Re: [PATCH] auto viewer/editor under windows.

2006-04-22 Thread Enrico Forestieri
On Fri, Apr 21, 2006 at 11:21:06PM -0500, Bo Peng wrote: 2. If viewer() is empty or auto, ShellExecute will be called, and call the default viewer under windows. Otherwise, the specified viewer will be called. Please, instead of #ifdef _WIN32 #ifndef _WIN32 use #if defined(_WIN32) ||

Re: [PATCH] configure.py patch for auto viewer/editor under windows.

2006-04-22 Thread Enrico Forestieri
On Sat, Apr 22, 2006 at 09:28:50AM -0500, Bo Peng wrote: Please, instead of #ifdef _WIN32 #ifndef _WIN32 use #if defined(_WIN32) || defined(__CYGWIN__) #if !defined(_WIN32) !defined(__CYGWIN__) in this code, as it will also work on Cygwin. Please fix that yourself, and

Re: [PATCH] File-compressed menu item

2006-04-22 Thread Enrico Forestieri
On Sat, Apr 22, 2006 at 02:26:32PM -0500, Bo Peng wrote: I am concerned about being able to recognize a .lyx file, as there is software relying on the fact a .lyx file starts with #LyX. It has been so from day 1 and it would be a real nuisance if it changes. The signature is the standard

Re: [PATCH]

2006-04-23 Thread Enrico Forestieri
On Sat, Apr 22, 2006 at 08:29:37PM +, Angus Leeming wrote: Bo Peng [EMAIL PROTECTED] writes: Please advise on a good place to put an openFile(filename, mode=view/edit, command=, parameter=) function. src/support/filetools.[Ch] Do you mean that #ifdef'd code is acceptable there?

Re: [PATCH]

2006-04-23 Thread Enrico Forestieri
On Sun, Apr 23, 2006 at 09:47:26AM -0500, Bo Peng wrote: I tested the patch on Cygwin and it works, but I had to convert the filepaths to Windows style, so yet another #ifdef if it is done in src/support/filetools.[Ch] Please provide a patch, or simply how you convert file path. I have

Re: [Updated-PATCH] auto viewer/editor under windows.

2006-04-23 Thread Enrico Forestieri
On Sat, Apr 22, 2006 at 11:49:36PM -0500, Bo Peng wrote: Dear developers, Attached is a complete patch that, under windows, 1. configure.py generates auto as viewers. 2. when no user specified viewer exists, the default viewer through windows ShellExecute will be used. Windows users

Re: [PATCH]

2006-04-24 Thread Enrico Forestieri
On Mon, Apr 24, 2006 at 10:02:14AM +0200, Jean-Marc Lasgouttes wrote: Enrico == Enrico Forestieri [EMAIL PROTECTED] writes: Enrico On Sat, Apr 22, 2006 at 08:29:37PM +, Angus Leeming wrote: Bo Peng [EMAIL PROTECTED] writes: Please advise on a good place to put an openFile(filename

Re: bug. lyx1.4.1 for windows crashes on this equation

2006-04-24 Thread Enrico Forestieri
On Sun, Apr 23, 2006 at 05:27:47PM -0400, Paul A. Rubin wrote: Chunpeng Yan wrote: Can someone please look at the simple equation in attached the file? lyx1.4.1 for windows crashes when View-DVI. No such a problem for lyx1.3.7 windows. I can confirm that it 1.4.1 crashes. The LyX

Re: [PATCH] configure.py patch for auto viewer/editor under windows.

2006-04-24 Thread Enrico Forestieri
On Mon, Apr 24, 2006 at 08:41:14AM -0500, Bo Peng wrote: 2) iterate over the viewer/editor list and overwrite all those for which canOpenFile (see other message) returns true the command with auto I still do not understand why you insist on a 'canOpenFile' approach. Let

Re: bug. lyx1.4.1 for windows crashes on this equation

2006-04-24 Thread Enrico Forestieri
On Mon, Apr 24, 2006 at 06:00:08PM +0200, Georg Baum wrote: Enrico Forestieri wrote: The nulls inserted by MikTeX in the latex log file strike again... Did anybody report that as a MikTeX bug? Does this patch (untested) help? Yes, it does. No more crashes. -- Enrico

Re: rev. 13734 boost/libs/iostreams/src/bzip2.cpp does not compile

2006-04-24 Thread Enrico Forestieri
On Mon, Apr 24, 2006 at 06:22:03PM +0200, Abdelrazak Younes wrote: Angus Leeming a écrit : Abdelrazak Younes [EMAIL PROTECTED] writes: It's becoming harder and harder to become a lyx developer on windows. I have lost the count of the required package. I think we need to prepare a

Re: bug. lyx1.4.1 for windows crashes on this equation

2006-04-24 Thread Enrico Forestieri
On Mon, Apr 24, 2006 at 11:09:06PM +0200, Georg Baum wrote: Am Montag, 24. April 2006 21:10 schrieb Enrico Forestieri: Yes, it does. No more crashes. And are the filenames extracted correctly? If yes I would like to put this in. No, bug 1027 still applies, but your patch is orthogonal

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-24 Thread Enrico Forestieri
On Mon, Apr 24, 2006 at 10:42:39PM +0100, Angus Leeming wrote: Hmmm. All of the .ini files have dos line endings, but io_ui_language.ini has one line (line 14) that cygwin's unix2dos.exe changes. I attach the repaired file. I say repaired because not even notepad can display the repaired

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-24 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 01:32:39AM +0200, Enrico Forestieri wrote: On Mon, Apr 24, 2006 at 10:42:39PM +0100, Angus Leeming wrote: Hmmm. All of the .ini files have dos line endings, but io_ui_language.ini has one line (line 14) that cygwin's unix2dos.exe changes. I attach the repaired

Re: rev. 13734 boost/libs/iostreams/src/bzip2.cpp does not compile

2006-04-25 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 10:58:43AM +0200, Abdelrazak Younes wrote: What is the equivalent of /etc/fstab on cygwin? This information is in the registry? There is no /etc/fstab on cygwin and yes, the information is stored in the registry but you should use mount both to access and modify it. On

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-25 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 10:21:26AM +0200, Jean-Marc Lasgouttes wrote: Bo == Bo Peng [EMAIL PROTECTED] writes: Bo And we are getting rid of ghostview. Are we? Why? So (with your auto patch) users would see a ViewPostscript entry and wonder forever why it does not do anything useful? I

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-25 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 11:45:25AM +, Angus Leeming wrote: Uwe Stöhr [EMAIL PROTECTED] writes: Hello LyXers, under https://developer.berlios.de/ you can find the windows installer for LyX 1.4.1. A belated congratulations, Uwe! These problems are known: - LyX's menus are not

Re: Trying to compile po: msguniq fails with xforms_l10n.pot

2006-04-25 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 11:05:43AM +0200, Lars Gullik Bjønnes wrote: Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: | Abdelrazak == Abdelrazak Younes [EMAIL PROTECTED] writes: | | Abdelrazak This is maybe an indication that we should drop Xforms | Abdelrazak support... A sign coming from

Re: rev. 13734 boost/libs/iostreams/src/bzip2.cpp does not compile

2006-04-25 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 03:04:26PM +0200, Abdelrazak Younes wrote: Enrico Forestieri a écrit : On Tue, Apr 25, 2006 at 10:58:43AM +0200, Abdelrazak Younes wrote: What is the equivalent of /etc/fstab on cygwin? This information is in the registry? There is no /etc/fstab on cygwin

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-25 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 02:30:30PM +, Angus Leeming wrote: Enrico Forestieri [EMAIL PROTECTED] writes: I may well be wrong, though, and you may have already provided a libintl_set_relocation_prefix() function in your build. Nope. I've hardly ever looked in intl and, in general, LyX

Re: rev. 13734 boost/libs/iostreams/src/bzip2.cpp does not compile

2006-04-25 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 05:45:20PM +0200, Abdelrazak Younes wrote: Thanks for these information Enrico. I know that I am such a lazy bastard and I could have found them by myself. You're welcome. I had that info at hand, so I didn't the work for you ;-) It just happened to me that I keep

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-25 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 03:48:36PM +, Angus Leeming wrote: Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: Angus The code in src/support/package.C uses the name of Angus the LyX executable to provide it with the necessary info to Angus find the .mo files; obviously that won't work.

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-25 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 02:30:30PM +, Angus Leeming wrote: Enrico Forestieri [EMAIL PROTECTED] writes: I may well be wrong, though, and you may have already provided a libintl_set_relocation_prefix() function in your build. Nope. I've hardly ever looked in intl and, in general, LyX

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-25 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 08:41:32PM +, Angus Leeming wrote: Enrico Forestieri [EMAIL PROTECTED] writes: Angus, can you try the attached patch? It works for me. In any case, moving around the whole LyX dir I can get localized menus. I can certainly try but a couple of questions first

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-25 Thread Enrico Forestieri
On Wed, Apr 26, 2006 at 12:18:34AM +0200, Enrico Forestieri wrote: On Tue, Apr 25, 2006 at 08:41:32PM +, Angus Leeming wrote: Enrico Forestieri [EMAIL PROTECTED] writes: Angus, can you try the attached patch? It works for me. In any case, moving around the whole LyX dir I can get

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-25 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 02:00:56PM +0200, Uwe Stöhr wrote: Angus Leeming wrote: These problems are known: - LyX's menus are not localized (english is used) H. What's strange is that it worked for me on my box when I was packaging this up. I'll find some time to investigate

Re: [PATCH] configure.py patch for auto viewer/editor under windows.

2006-04-26 Thread Enrico Forestieri
On Tue, Apr 25, 2006 at 09:06:10PM -0500, Bo Peng wrote: I guess windows is doing the following: 1. check HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ FileExts\.ps\OpenWithList 2. from MRUList know a is the application, get gsview32.exe 3. go to

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-26 Thread Enrico Forestieri
On Wed, Apr 26, 2006 at 02:59:34PM +0200, Jean-Marc Lasgouttes wrote: Angus == Angus Leeming [EMAIL PROTECTED] writes: Angus Confusion? Senility? I don't have easy access to the source Angus code from my work machine and there's no viewsvn on the LyX Angus web site so you have to rely on my

Re: [patch] fix bug 1473: Implement phantom in math

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 10:42:58AM +0200, Georg Baum wrote: Jean-Marc Lasgouttes wrote: Georg == Georg Baum [EMAIL PROTECTED] writes: Georg If you want I'll revert the changes to plainInsert, but I am Georg not going to implement the cell based solution, since I don't Georg like

Re: LyXWinInstaller with LyX 1.4.1 - multiple answers

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 09:02:27AM +0200, Helge Hafting wrote: Bo Peng wrote: Bo Lyx needs Python, imagemagick etc to work, but ghostview can be Bo replaced by other gs viewers. Which one specifically? Maybe a cygwin/gv? I never did like the 'give me money' dialog when I open

Re: [announce] LyXWinInstaller with LyX 1.4.1

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 08:57:12AM +0200, Helge Hafting wrote: Bo Peng wrote: No it tells the user please browse you hard disk to find a suitable application. And it forgets to add good luck. I do not see how someone is going to think about installing gsview. Windows users may be

Re: Where to put compress lyx file check box?

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 10:46:13AM +0200, Abdelrazak Younes wrote: On windows, I think there's a public API for that kind of stuff yes. But I really prefer the simpler, faster, leaner lyx file dialog. I really don't understand why people insist on using the native ones for opening lyx

Re: [Again-Updated-PATCH] Win32 auto-view

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 02:28:46PM +0200, Jean-Marc Lasgouttes wrote: Bo == Bo Peng [EMAIL PROTECTED] writes: Bo Please: Bo 1. test 2. check for cygwin I can't do any of these. I am doing both. Bo 3. add autoconf things for -lshlwapi Isn't there a place already where one has to

Re: [announce] LyXWinInstaller with LyX 1.4.1 - dvipng

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 03:18:15PM +0200, Uwe Stöhr wrote: Enrico Forestieri wrote: This has bitten me with dvipng. It was not working and I removed it. But I still could not instant-preview because png format was still requested and it was not recognized by the legacy python script. So I

Re: Where to put compress lyx file check box?

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 05:26:09PM +0200, Abdelrazak Younes wrote: Enrico Forestieri a écrit : On Thu, Apr 27, 2006 at 10:46:13AM +0200, Abdelrazak Younes wrote: On windows, I think there's a public API for that kind of stuff yes. But I really prefer the simpler, faster, leaner lyx file

Re: [Again-Updated-PATCH] Win32 auto-view

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 05:34:37PM +0200, Abdelrazak Younes wrote: Angus Leeming a écrit : Abdelrazak Younes [EMAIL PROTECTED] writes: Hum, not sure... On my platform I don't have to set LDFLAGS manually and I would like it to stay that way. I don't understand why you have to set them

Re: [Again-Updated-PATCH] Win32 auto-view

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 05:02:20PM +0200, Jean-Marc Lasgouttes wrote: Enrico == Enrico Forestieri [EMAIL PROTECTED] writes: Enrico Currently I have to add libraries using LDFLAGS at configure Enrico time: Enrico LDFLAGS=-L$QTDIR/lib -lqt -lkernel32 -luser32 -lgdi32 Enrico -lcomdlg32

Re: [Again-Updated-PATCH] Win32 auto-view

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 09:45:02AM -0500, Bo Peng wrote: Bo 1. test 2. check for cygwin I can't do any of these. I am doing both. Thank you. I (or you) can fix the enum{ View, Edit} thing after the patch is confirmed to work. Urgh... I forgot that... But I have added autoconf

Re: [announce] LyXWinInstaller with LyX 1.4.1 - dvipng

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 06:15:21PM +0200, Uwe Stöhr wrote: Enrico Forestieri wrote: Thanks Uwe, but I solved the problem my way and compiled a new version of dvipng not having the bug. Cool, could you please send me your dvipng.exe? Many thanks in advance and regards Uwe I have

Re: [patch] fix bug 1473: Implement phantom in math

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 05:40:25PM +0200, Georg Baum wrote: Enrico Forestieri wrote: Well, here is the result of my effort. I also attach separately a diff against src/frontends/qt3/ui/moc/Makefile.in and src/frontends/qt3/moc/Makefile.in as svn diff doesn't seem to have catched them. I

Re: [patch] fix bug 1473: Implement phantom in math

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 05:24:07PM +0200, Abdelrazak Younes wrote: Enrico Forestieri a écrit : On Thu, Apr 27, 2006 at 10:42:58AM +0200, Georg Baum wrote: Jean-Marc Lasgouttes wrote: Georg == Georg Baum [EMAIL PROTECTED] writes: Georg If you want I'll revert the changes to plainInsert

Re: [patch] fix bug 1473: Implement phantom in math

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 09:56:07PM +0200, Lars Gullik Bjønnes wrote: Enrico Forestieri [EMAIL PROTECTED] writes: | On Thu, Apr 27, 2006 at 05:40:25PM +0200, Georg Baum wrote: | Enrico Forestieri wrote: | | Well, here is the result of my effort. I also attach separately a diff

Re: [patch] fix bug 1473: Implement phantom in math

2006-04-27 Thread Enrico Forestieri
On Thu, Apr 27, 2006 at 08:59:49PM +0100, Jose' Matos wrote: On Thursday 27 April 2006 20:14, Enrico Forestieri wrote: Do you mean that Makefile.in is deliberately ignored and that only Makefile.am needs modifications? (Yes, I am an ignorant but well supported by a bit of logic

Re: [Again-Updated-PATCH] Win32 auto-view

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 10:16:56AM +0200, Jean-Marc Lasgouttes wrote: Enrico == Enrico Forestieri [EMAIL PROTECTED] writes: Enrico Strictly speaking, the LDFLAGS thing is a quick hack in order Enrico to have configure test for Qt succeeding, otherwise libtool is Enrico able to figure out

Re: 1.5 features

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 12:13:44PM +0200, Abdelrazak Younes wrote: Jean-Marc Lasgouttes a écrit : Abdel == Abdelrazak Younes [EMAIL PROTECTED] writes: Abdel - Enrico and Georg: improved Cygwin Support Which part of that is or is not in 1.4.x? I'll let Enrico and/or Georg answer that. I

Re: [Again-Updated-PATCH] Win32 auto-view

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 11:38:45AM +0200, Jean-Marc Lasgouttes wrote: Abdelrazak == Abdelrazak Younes [EMAIL PROTECTED] writes: Abdelrazak In my tree, there is no libqt-mt.la for Qt3/mingw. Maybe Abdelrazak I've compiled as a dll. Qt4/mingw have no .la file either. So, nobody has these la

Re: 1.5 features

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 01:39:41PM +0200, Jean-Marc Lasgouttes wrote: Georg == Georg Baum [EMAIL PROTECTED] writes: Abdel - Enrico and Georg: improved Cygwin Support Which part of that is or is not in 1.4.x? I'll let Enrico and/or Georg answer that. Georg IIRC most (if not all) is

Re: Potential LyX 1.4.X patches

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 02:53:08PM +0200, Jean-Marc Lasgouttes wrote: r13704 - EF - Account for Cygwin teTeX on Windows I'd say no. So it is broken and will stay broken? It is not that important, after all this simply avoids an empty TeX Information, but I am really annoyed that seemingly

Re: error in enumerating subsection

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 03:03:23PM +0200, Jean-Marc Lasgouttes wrote: Paolo == Paolo Pumilia [EMAIL PROTECTED] writes: Paolo - Started lyx from console - created new doc - added two lines: Paolo the first one marked as section, the second one as - subsection Paolo - everything is ok -

Re: 1.5 features

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 03:50:44PM +0200, Jean-Marc Lasgouttes wrote: Enrico == Enrico Forestieri [EMAIL PROTECTED] writes: Enrico If you mean cygwin in general, then you are practically Enrico forcing me to maintain my own 1.4 branch as I care about it. Not cygwin in general, I am

Re: Potential LyX 1.4.X patches

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 04:52:02PM +0200, Georg Baum wrote: Enrico Forestieri wrote: So it is broken and will stay broken? It is not that important, after all this simply avoids an empty TeX Information, but I am really annoyed that seemingly everything which is cygwin related

Re: Potential LyX 1.4.X patches

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 05:48:24PM +0200, Abdelrazak Younes wrote: Please ask for that damn svn access! Abdel, I am not a programmer but a power user (using Windows parliance), and my contribution to LyX would be poor. The native Windows port had screwed up the cygwin target and nobody cared

Re: Potential LyX 1.4.X patches

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 05:54:35PM +0200, Jean-Marc Lasgouttes wrote: Enrico == Enrico Forestieri [EMAIL PROTECTED] writes: Enrico Here is the problem. Nobody cares about cygwin, ergo it is not Enrico well accepted. I mean, you have to do something for nothing, I Enrico would not well

Re: Potential LyX 1.4.X patches

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 06:38:04PM +0200, Abdelrazak Younes wrote: Enrico Forestieri a écrit : On Fri, Apr 28, 2006 at 05:48:24PM +0200, Abdelrazak Younes wrote: Please ask for that damn svn access! Abdel, I am not a programmer but a power user (using Windows parliance), and my

Re: Potential LyX 1.4.X patches

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 03:12:57PM +, Angus Leeming wrote: Georg Baum [EMAIL PROTECTED] writes: So it is broken and will stay broken? It is not that important, after all this simply avoids an empty TeX Information, but I am really annoyed that seemingly everything which is cygwin

Re: LyX 1.4.1 doesn't work on Win98---and doesn't matter, anyway

2006-04-28 Thread Enrico Forestieri
(lyxrc.cygwin_style_paths); if (!lyxrc.path_prefix.empty()) prependEnvPath(PATH, lyxrc.path_prefix); #! /bin/sh # Configuration of the LyX sources suitable for compilation # of a X11 build using the cygwin compiler. # author Angus Leeming, modified by Enrico Forestieri Error

Re: LyX 1.4.1 doesn't work on Win98---and doesn't matter, anyway

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 08:30:18PM +, Luis Rivera wrote: Enrico Forestieri [EMAIL PROTECTED] writes: I think it looks native because the interface to the user doesn't go through the command prompt; however, it is may not a native application. To be a native application it had to go

Re: Call for Windows developers

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 10:32:36PM +0200, Leuven, E. wrote: small update (yes i am stuck) i did the following: 1. installed cygwin latest setup from the cygwin site. used the default settings and added automake, make and gettext (?) 2. installed qt-4.1.2 and also let the

Re: Call for Windows developers

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 11:29:14PM +0200, Leuven, E. wrote: I see, you don't have the aclocal (perl) program. but i have: $ which aclocal /usr/bin/aclocal $ which aclocal-1.9 /usr/bin/aclocal-1.9 You should have: $ ls -l /usr/bin/aclocal lrwxrwxrwx 1 ef users 25 Jun 13 2005

Re: Call for Windows developers

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 11:49:06PM +0200, Leuven, E. wrote: yep, i see the same... version 1.9.6 btw Please, try running ./autogen.sh without prefixing it with sh. -Original Message- From: Enrico Forestieri [mailto:[EMAIL PROTECTED] Sent: Fri 4/28/06 23:46 To: lyx-devel

Re: Call for Windows developers

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 11:56:17PM +0200, Leuven, E. wrote: and this is what i get...! $ aclocal -I ./m4 270 [main] ? (10884) C:\cygwin\bin\sh.exe: *** fatal error - couldn't allocate heap, Win32 error 487, base 0x4D, top 0x4E, reserve_size 61440, allocsize 65536, page_const

Re: LyX 1.4.1 doesn't work on Win98---and doesn't matter, anyway

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 11:15:53PM +, Luis Rivera wrote: Having that definition in mind, then none of your exes is a true native windows app. Sorry! ;-) I have never claimed they are :-) However, I tested both on Win98, and both work pretty much as expected: 1/ LyX native (Qt library

Re: LyX 1.4.1 doesn't work on Win98---and doesn't matter, anyway

2006-04-28 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 10:24:09PM +0200, Abdelrazak Younes wrote: I have put another package which contains the exe and the needed runtimes dll: http://younes.a.free.fr/Lyx-15-experimental/lyx-qt4-exe-and-dlls.zip Abdel, I tried your LyX/Qt4 and got a bug report for you. After launching

Re: LyX 1.4.1 doesn't work on Win98---and doesn't matter, anyway

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 02:24:21PM +0200, Abdelrazak Younes wrote: Enrico Forestieri a écrit : On Fri, Apr 28, 2006 at 10:24:09PM +0200, Abdelrazak Younes wrote: I have put another package which contains the exe and the needed runtimes dll: http://younes.a.free.fr/Lyx-15-experimental

Re: Potential LyX 1.4.X patches

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 02:34:43PM +0200, Abdelrazak Younes wrote: Michael Gerz a écrit : Gentlemen, I think I have to give some comments on the heated 1.4 vs. 1.5 discussion. I've hoped that it would be more heated... like it should be for a decent friday flame war but I did not

Re: Potential LyX 1.4.X patches

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 10:42:34AM +0200, Jean-Marc Lasgouttes wrote: Enrico == Enrico Forestieri [EMAIL PROTECTED] writes: Enrico It's a benefit/cost ratio, Jean-Marc. I gain nothing in having Enrico my patches applied. I can simply patch my version and have a Enrico very high value

Re: LyX 1.4.1 doesn't work on Win98---and doesn't matter, anyway

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 03:32:06PM +0200, Abdelrazak Younes wrote: And does your patch to configure.py solve the crash of the open file button? No, sorry. It is an unrelated problem, only showing up because I used a cmd.exe to launch your LyX/Qt4. I did so because from a rxvt terminal I got

Re: Potential LyX 1.4.X patches

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 03:21:13PM +0200, Abdelrazak Younes wrote: Enrico Forestieri a écrit : On Sat, Apr 29, 2006 at 02:34:43PM +0200, Abdelrazak Younes wrote: Michael Gerz a écrit : Gentlemen, I think I have to give some comments on the heated 1.4 vs. 1.5 discussion. I've hoped

Re: LyX 1.4.1 doesn't work on Win98---and doesn't matter, anyway

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 08:50:29AM -0500, Bo Peng wrote: On 4/29/06, Bo Peng [EMAIL PROTECTED] wrote: Please, can you see if the attached patch can be applied to both trunk and branch? It seems to touch Bo's and Jean-Marc's work so I'll let them comment that. Since this patch is

Re: Potential LyX 1.4.X patches

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 04:36:31PM +0200, Abdelrazak Younes wrote: It was friday Enrico, Friday! Please, explain this Friday thing. In my culture Friday is like Saturday, or Monday, or... (sorry for being so stupid). -- Enrico

Re: Potential LyX 1.4.X patches

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 05:25:44PM +0200, Abdelrazak Younes wrote: Enrico Forestieri a écrit : On Sat, Apr 29, 2006 at 04:36:31PM +0200, Abdelrazak Younes wrote: It was friday Enrico, Friday! Please, explain this Friday thing. In my culture Friday is like Saturday, or Monday

Re: How to install zlib under windows?

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 10:42:23AM -0500, Bo Peng wrote: Just grab the package from gnuwin32 Thanks I will try that. There are so many options. I am trying the cygwin route, when I install the basic cygwin system, zlib.h and zlib.a are in place. Can I use them directly? On Cygwin, zlib

Re: How to install zlib under windows?

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 05:49:40PM +0200, Abdelrazak Younes wrote: Bo Peng a écrit : Just grab the package from gnuwin32 Thanks I will try that. There are so many options. I am trying the cygwin route, when I install the basic cygwin system, zlib.h and zlib.a are in place. Can I use

Re: How to install zlib under windows?

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 06:08:42PM +0200, Abdelrazak Younes wrote: Just to illustrate my case, try to compile the attached file with the following commands (adjust to your local paths): g++ -I/cygdrive/d/program/Aspell-0.60.4/include -c config.C g++ -Id:/program/Aspell-0.60.4/include -c

Re: How to install zlib under windows?

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 06:30:38PM +0200, Abdelrazak Younes wrote: Abdelrazak Younes a écrit : Abdelrazak Younes a écrit : Bo Peng a écrit : Just grab the package from gnuwin32 Thanks I will try that. There are so many options. I am trying the cygwin route, when I install the basic

Re: How to install zlib under windows?

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 06:47:56PM +0200, Abdelrazak Younes wrote: Enrico Forestieri a écrit : On Sat, Apr 29, 2006 at 06:30:38PM +0200, Abdelrazak Younes wrote: Abdel, Please try the following (set the env var on the same configure line) PATH_SEPARATOR=';' ../configure

Re: How to install zlib under windows?

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 07:03:40PM +0200, Abdelrazak Younes wrote: Enrico Forestieri a écrit : On Sat, Apr 29, 2006 at 06:47:56PM +0200, Abdelrazak Younes wrote: Enrico Forestieri a écrit : On Sat, Apr 29, 2006 at 06:30:38PM +0200, Abdelrazak Younes wrote: Abdel, Please try

Re: How to install zlib under windows?

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 07:36:49PM +0200, Abdelrazak Younes wrote: Enrico Forestieri a écrit : On Sat, Apr 29, 2006 at 07:03:40PM +0200, Abdelrazak Younes wrote: ... all in a line. Failing that, I have other ideas specifically for --with-extra-prefix, if you are interested. I am, I

Re: How to install zlib under windows?

2006-04-29 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 05:33:22PM -0500, Bo Peng wrote: I have another problem, I use cygwin/svn and cygwin/autoconf etc. Under tex2lyx/, the makefile generates symbolic links to ../../src/FloatList.C etc, but the mingw g++ does not recognize these files I get some undefined symbols even

Re: How to install zlib under windows?

2006-04-30 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 08:42:51PM -0500, Bo Peng wrote: Move ln.exe out of the way and run configure again, then cp -p will be used. mv /usr/bin/ln.exe /usr/bin/ln-no.exe That is a neat treat. Anyway, in the last step, when I run make install, I get ../../config/py-compile

Re: Cygwin build with cygwin/qt3?

2006-04-30 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 10:08:43PM -0500, Bo Peng wrote: Dear all, I am trying a native cygwin build, The wiki page (http://wiki.lyx.org/LyX/LyXOnCygwin) asks me to build qt by myself, but I notice that qt3 is already included in cygwin. Is there any particular reason we do not use it?

Re: Making lyx a standard cygwin packages?

2006-04-30 Thread Enrico Forestieri
On Sat, Apr 29, 2006 at 10:22:08PM -0500, Bo Peng wrote: I put both versions at ftp://ftp.lyx.org/pub/lyx/bin/1.4.1/lyx-1.4.1-cygwin.tar.gz but had almost no feedback apart a couple of bug reports. I think that, counting me, there are at least 3 LyX/Cygwin users. The lesser, the

Re: Cygwin build with cygwin/qt3?

2006-04-30 Thread Enrico Forestieri
On Sun, Apr 30, 2006 at 08:32:28AM -0500, Bo Peng wrote: The qt3 included in cygwin is X11 only and is currently broken: I would like to try, since it may have been fixed (or will be fixed soon). The build on cygwin will be really simple if it works. Yes, it is as simple as on linux

Re: [Final-PATCH] win32 auto-view/edit

2006-04-30 Thread Enrico Forestieri
On Fri, Apr 28, 2006 at 11:57:22PM -0500, Bo Peng wrote: Attached is a modified patch that 1. in configure.py, under windows/cygwin, %% is replaced by auto. Programs are not actually checked. ( so no waste of time) checkFormatEntries(os.name != 'nt' and sys.platform != 'cygwin') 2. in

Re: Making lyx a standard cygwin packages?

2006-04-30 Thread Enrico Forestieri
On Sun, Apr 30, 2006 at 09:10:50AM -0500, Bo Peng wrote: I thought about it but the point is that I cannot guarantee a continued commitment. Understandable. How about getting whatever you have now in? My point is that we should get the ball rolling and see what will happen. If you mean

Re: [Final-PATCH] win32 auto-view/edit

2006-04-30 Thread Enrico Forestieri
On Sun, Apr 30, 2006 at 09:46:13AM -0500, Bo Peng wrote: I tested this last patch on Cygwin and it does not work well. Specifically I have to delete userdir/lyxrc.defaults otherwise I only get PDF (dvipdfm) and PDF (pdflatex) in the View menu. That is the design. Use the old

Re: [Final-PATCH] win32 auto-view/edit

2006-04-30 Thread Enrico Forestieri
On Sun, Apr 30, 2006 at 05:08:23PM +0200, Enrico Forestieri wrote: I attach here the lyxrc.defaults produced by Tools-Reconfigure. I forgot to do that. -- Enrico # This file has been automatically generated by LyX' lib/configure.py # script. It contains default settings that have been

Re: [Final-PATCH] win32 auto-view/edit

2006-04-30 Thread Enrico Forestieri
On Sun, Apr 30, 2006 at 10:26:32AM -0500, Bo Peng wrote: This is weird to me. Any idea? Do you see auto in lyxrc.default after reconfiguration? The lyxrc.default is correct. sh: auto: command not found That may be a bug of detecting exit value from ShellExecute. I will check.

Re: Cygwin build with cygwin/qt3?

2006-04-30 Thread Enrico Forestieri
of the LyX sources suitable for compilation # of a X11 build using the cygwin compiler. # author Angus Leeming, modified by Enrico Forestieri Error () { test $# -gt 0 { echo $* 2 echo 2 } echo Expecting \`basename $0` dir [buildtype]\ 2 echo where dir is 'devel','13x

Re: Potential LyX 1.4.X patches

2006-04-30 Thread Enrico Forestieri
On Sun, Apr 30, 2006 at 06:42:28PM +0200, Georg Baum wrote: Am Freitag, 28. April 2006 17:35 schrieb Enrico Forestieri: On Fri, Apr 28, 2006 at 04:52:02PM +0200, Georg Baum wrote: - send patches against 1.4 (step by step, one fix = one patch) I was asked to send patches for trunk

Re: Cygwin build with cygwin/qt3?

2006-04-30 Thread Enrico Forestieri
On Sun, Apr 30, 2006 at 01:25:56PM -0500, Bo Peng wrote: Does it works? Qt3 is found. I guess because the following configure - configure.X11 hack. I do think we need to put this in config/qt.m4 so that configure will simply work. Lyx is compiling, it will be several hours later for

Re: Cygwin build with cygwin/qt3?

2006-04-30 Thread Enrico Forestieri
On Sun, Apr 30, 2006 at 01:56:22PM -0500, Bo Peng wrote: Does it works? No. BiblioModuleBase.C:33:4: warning: no newline at end of file BiblioModuleBase.C: In constructor `BiblioModuleBase::BiblioModuleBase(QWidget*, const char*, uint)': BiblioModuleBase.C:33: error: `se'

<    1   2   3   4   5   6   7   8   9   10   >