Recent .pyc related change

2004-05-30 Thread Kayvan A. Sylvan
Some recent lyx2lyx change breaks make install:

make[2]: Entering directory `/home/kayvan/src/lyx-build/lib'
make[2]: *** No rule to make target `lyx2lyx/error.pyc', needed by `all-am'.  Stop.
make[2]: Leaving directory `/home/kayvan/src/lyx-build/lib'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/kayvan/src/lyx-build/lib'
make: *** [install-recursive] Error 1



-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


CVS lyx automated build fails in po directory

2004-05-30 Thread Kayvan A. Sylvan
On Linux, my automated build fails against the latest CVS:

make[1]: Entering directory `/home/kayvan/src/lyx/po'
LC_ALL=C ; export LC_ALL ; \
rm -f POTFILES.in-t \
 ( cd ..; \
 grep -l _(\.*\) `find src -regex .*\\.\\(C\\|c\\|h\\|C\\.in\\) -print
` |\
 sed -e '/xforms.forms/d' | grep -v -e src/support/path_defines.C\ |\
 sort | uniq )  POTFILES.in-t \
 mv POTFILES.in-t POTFILES.in
/bin/sh: unexpected EOF while looking for `'
/bin/sh: -c: line 2: syntax error
make[1]: *** [POTFILES.in] Error 2
make[1]: Leaving directory `/home/kayvan/src/lyx/po'
make: *** [distdir] Error 1


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Recent .pyc related change

2004-05-30 Thread Kayvan A. Sylvan
Some recent lyx2lyx change breaks "make install":

make[2]: Entering directory `/home/kayvan/src/lyx-build/lib'
make[2]: *** No rule to make target `lyx2lyx/error.pyc', needed by `all-am'.  Stop.
make[2]: Leaving directory `/home/kayvan/src/lyx-build/lib'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/kayvan/src/lyx-build/lib'
make: *** [install-recursive] Error 1



-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


CVS lyx automated build fails in "po" directory

2004-05-30 Thread Kayvan A. Sylvan
On Linux, my automated build fails against the latest CVS:

make[1]: Entering directory `/home/kayvan/src/lyx/po'
LC_ALL=C ; export LC_ALL ; \
rm -f POTFILES.in-t \
&& ( cd ..; \
 grep -l "_(\".*\")" `find src -regex ".*\\.\\(C\\|c\\|h\\|C\\.in\\)" -print
` |\
 sed -e '/xforms.forms/d' | grep -v -e "src/support/path_defines.C\ |\
 sort | uniq ) > POTFILES.in-t \
&& mv POTFILES.in-t POTFILES.in
/bin/sh: unexpected EOF while looking for `"'
/bin/sh: -c: line 2: syntax error
make[1]: *** [POTFILES.in] Error 2
make[1]: Leaving directory `/home/kayvan/src/lyx/po'
make: *** [distdir] Error 1


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


The real solution to the Cygwin compile problems

2004-05-27 Thread Kayvan A. Sylvan
I got tired of wrestling with the config mechanism.

Please apply this (support/nt_defines.h is not used) and then
cvs remove the support/nt_defines.h file.

Thanks.

-- 
Kayvan A. Sylvan  
Sylvan Associates, Inc.   
http://sylvan.com/~kayvan
Index: ChangeLog
===
RCS file: /cvs/lyx/lyx-devel/ChangeLog,v
retrieving revision 1.964
diff -u -r1.964 ChangeLog
--- ChangeLog   2004/05/26 23:03:07 1.964
+++ ChangeLog   2004/05/27 07:07:02
@@ -1,3 +1,9 @@
+2004-05-27  Kayvan Sylvan [EMAIL PROTECTED]
+
+   * configure.ac: Remove reference to support/nt_defines.h
+
+   * config/acconfig.h: Remove reference to support/nt_defines.h
+
 2004-05-26  Lars Gullik Bjonnes  [EMAIL PROTECTED]
 
* autogen.sh (ACLOCAL): make all aclocal find m4
Index: configure.ac
===
RCS file: /cvs/lyx/lyx-devel/configure.ac,v
retrieving revision 1.19
diff -u -r1.19 configure.ac
--- configure.ac2004/05/26 16:53:44 1.19
+++ configure.ac2004/05/27 07:07:02
@@ -361,10 +361,6 @@
 #include support/os2_defines.h
 #endif
 
-#if defined(__CYGWIN__) || defined(__CYGWIN32__)
-#include support/nt_defines.h
-#endif
-
 #if defined(HAVE_OSTREAM)  defined(HAVE_LOCALE)  defined(HAVE_SSTREAM)
 #define USE_BOOST_FORMAT 1
 #else
Index: config/acconfig.h
===
RCS file: /cvs/lyx/lyx-devel/config/acconfig.h,v
retrieving revision 1.2
diff -u -r1.2 acconfig.h
--- config/acconfig.h   2002/11/24 15:20:31 1.2
+++ config/acconfig.h   2004/05/27 07:07:02
@@ -78,10 +78,6 @@
 #include support/os2_defines.h
 #endif
 
-#if defined(__CYGWIN__) || defined( __CYGWIN32__)
-#include support/nt_defines.h
-#endif
-
 /* Some support for the boost library. */
 /*
  * #ifndef HAVE_LIMITS
Index: src/support/ChangeLog
===
RCS file: /cvs/lyx/lyx-devel/src/support/ChangeLog,v
retrieving revision 1.253
diff -u -r1.253 ChangeLog
--- src/support/ChangeLog   2004/05/20 09:35:30 1.253
+++ src/support/ChangeLog   2004/05/27 07:07:02
@@ -1,3 +1,7 @@
+2004-05-27  Kayvan Sylvan [EMAIL PROTECTED]
+
+   * Makefile.am: remove reference to nt_defines.h
+
 2004-05-20  Angus Leeming  [EMAIL PROTECTED]
 
* debugstream.h: wrap the definition of debug_trait::DEBUG with
Index: src/support/Makefile.am
===
RCS file: /cvs/lyx/lyx-devel/src/support/Makefile.am,v
retrieving revision 1.73
diff -u -r1.73 Makefile.am
--- src/support/Makefile.am 2004/01/06 19:32:05 1.73
+++ src/support/Makefile.am 2004/05/27 07:07:02
@@ -51,7 +51,6 @@
lyxtime.h \
lyxsum.C \
mkdir.C \
-   nt_defines.h \
os.C \
os.h \
os2_defines.h \


The real solution to the Cygwin compile problems

2004-05-27 Thread Kayvan A. Sylvan
I got tired of wrestling with the config mechanism.

Please apply this (support/nt_defines.h is not used) and then
"cvs remove" the support/nt_defines.h file.

Thanks.

-- 
Kayvan A. Sylvan  
Sylvan Associates, Inc.   
http://sylvan.com/~kayvan
Index: ChangeLog
===
RCS file: /cvs/lyx/lyx-devel/ChangeLog,v
retrieving revision 1.964
diff -u -r1.964 ChangeLog
--- ChangeLog   2004/05/26 23:03:07 1.964
+++ ChangeLog   2004/05/27 07:07:02
@@ -1,3 +1,9 @@
+2004-05-27  Kayvan Sylvan <[EMAIL PROTECTED]>
+
+   * configure.ac: Remove reference to support/nt_defines.h
+
+   * config/acconfig.h: Remove reference to support/nt_defines.h
+
 2004-05-26  Lars Gullik Bjonnes  <[EMAIL PROTECTED]>
 
* autogen.sh (ACLOCAL): make all aclocal find m4
Index: configure.ac
===
RCS file: /cvs/lyx/lyx-devel/configure.ac,v
retrieving revision 1.19
diff -u -r1.19 configure.ac
--- configure.ac2004/05/26 16:53:44 1.19
+++ configure.ac2004/05/27 07:07:02
@@ -361,10 +361,6 @@
 #include "support/os2_defines.h"
 #endif
 
-#if defined(__CYGWIN__) || defined(__CYGWIN32__)
-#include "support/nt_defines.h"
-#endif
-
 #if defined(HAVE_OSTREAM) && defined(HAVE_LOCALE) && defined(HAVE_SSTREAM)
 #define USE_BOOST_FORMAT 1
 #else
Index: config/acconfig.h
===
RCS file: /cvs/lyx/lyx-devel/config/acconfig.h,v
retrieving revision 1.2
diff -u -r1.2 acconfig.h
--- config/acconfig.h   2002/11/24 15:20:31 1.2
+++ config/acconfig.h   2004/05/27 07:07:02
@@ -78,10 +78,6 @@
 #include "support/os2_defines.h"
 #endif
 
-#if defined(__CYGWIN__) || defined( __CYGWIN32__)
-#include "support/nt_defines.h"
-#endif
-
 /* Some support for the boost library. */
 /*
  * #ifndef HAVE_LIMITS
Index: src/support/ChangeLog
===
RCS file: /cvs/lyx/lyx-devel/src/support/ChangeLog,v
retrieving revision 1.253
diff -u -r1.253 ChangeLog
--- src/support/ChangeLog   2004/05/20 09:35:30 1.253
+++ src/support/ChangeLog   2004/05/27 07:07:02
@@ -1,3 +1,7 @@
+2004-05-27  Kayvan Sylvan <[EMAIL PROTECTED]>
+
+   * Makefile.am: remove reference to nt_defines.h
+
 2004-05-20  Angus Leeming  <[EMAIL PROTECTED]>
 
* debugstream.h: wrap the definition of debug_trait::DEBUG with
Index: src/support/Makefile.am
===
RCS file: /cvs/lyx/lyx-devel/src/support/Makefile.am,v
retrieving revision 1.73
diff -u -r1.73 Makefile.am
--- src/support/Makefile.am 2004/01/06 19:32:05 1.73
+++ src/support/Makefile.am 2004/05/27 07:07:02
@@ -51,7 +51,6 @@
lyxtime.h \
lyxsum.C \
mkdir.C \
-   nt_defines.h \
os.C \
os.h \
os2_defines.h \


Re: Cygwin compile error solved

2004-05-24 Thread Kayvan A. Sylvan
On Mon, May 24, 2004 at 12:45:49PM +0200, Lars Gullik Bjønnes wrote:
 Kayvan A. Sylvan [EMAIL PROTECTED] writes:
 
 | I added the following to common.am to get the Cygwin compile
 | to work.
 
 | ndex: config/common.am
 | ===
 | RCS file: /cvs/lyx/lyx-devel/config/common.am,v
 | retrieving revision 1.6
 | diff -u -r1.6 common.am
 | --- config/common.am2003/05/07 16:22:00 1.6
 | +++ config/common.am2004/05/20 07:30:43
 | @@ -9,7 +9,7 @@
 |  ETAGS_ARGS = --lang=c++
 |  
 |  if USE_INCLUDED_BOOST
 | -BOOST_INCLUDES = -I$(top_srcdir)/boost
 | +BOOST_INCLUDES = -I$(top_srcdir)/boost -I$(top_srcdir)/src
 |  endif
 
 what was the error again?
 
 This doesn not quite look like the correct fix to me.

This was the error:

g++ -DHAVE_CONFIG_H -I. -I../../../../../lyx/boost/libs/filesystem/src 
-I../../../../src -I../../../../../lyx/boost -I/usr/X11R6/include 
-DBOOST_USER_CONFIG=config.h -O2 -fno-exceptions -W -Wall -mms-bitfields -MT 
convenience.lo -MD -MP -MF .deps/convenience.Tpo -c 
../../../../../lyx/boost/libs/filesystem/src/convenience.cpp
In file included from ../../../../../lyx/boost/boost/config.hpp:26,
 from ../../../../../lyx/boost/boost/filesystem/config.hpp:18,
 from ../../../../../lyx/boost/boost/filesystem/path.hpp:15,
 from ../../../../../lyx/boost/boost/filesystem/convenience.hpp:16,
 from ../../../../../lyx/boost/libs/filesystem/src/convenience.cpp:17:
../../../../src/config.h:462:32: support/nt_defines.h: No such file or directory
make[4]: *** [convenience.lo] Error 1

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: Cygwin compile error solved

2004-05-24 Thread Kayvan A. Sylvan
 
 I'd rather just get rid of the whole file, it is unused.
 
 If not fixed that way it should be fixed by adding the appropriate DIR
 to the INCLUDES in the Makefile.ams in boost dirs. (that is how we
 solved this for other subdirs).
 

Okay. This works for me too:

Index: boost/libs/filesystem/Makefile.am
===
RCS file: /cvs/lyx/lyx-devel/boost/libs/filesystem/Makefile.am,v
retrieving revision 1.1
diff -u -r1.1 Makefile.am
--- boost/libs/filesystem/Makefile.am   2004/01/08 17:47:56 1.1
+++ boost/libs/filesystem/Makefile.am   2004/05/24 20:31:22
@@ -1,4 +1,8 @@
 include $(top_srcdir)/config/common.am
 
+if USE_INCLUDED_BOOST
+BOOST_INCLUDES += -I$(top_srcdir)/src
+endif
+
 SUBDIRS = src


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: Cygwin compile error solved

2004-05-24 Thread Kayvan A. Sylvan
On Mon, May 24, 2004 at 12:45:49PM +0200, Lars Gullik Bjønnes wrote:
> "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes:
> 
> | I added the following to common.am to get the Cygwin compile
> | to work.
> >
> | ndex: config/common.am
> | ===
> | RCS file: /cvs/lyx/lyx-devel/config/common.am,v
> | retrieving revision 1.6
> | diff -u -r1.6 common.am
> | --- config/common.am2003/05/07 16:22:00 1.6
> | +++ config/common.am2004/05/20 07:30:43
> | @@ -9,7 +9,7 @@
> |  ETAGS_ARGS = --lang=c++
> |  
> |  if USE_INCLUDED_BOOST
> | -BOOST_INCLUDES = -I$(top_srcdir)/boost
> | +BOOST_INCLUDES = -I$(top_srcdir)/boost -I$(top_srcdir)/src
> |  endif
> 
> what was the error again?
> 
> This doesn not quite look like the correct fix to me.

This was the error:

g++ -DHAVE_CONFIG_H -I. -I../../../../../lyx/boost/libs/filesystem/src 
-I../../../../src -I../../../../../lyx/boost -I/usr/X11R6/include 
"-DBOOST_USER_CONFIG=" -O2 -fno-exceptions -W -Wall -mms-bitfields -MT 
convenience.lo -MD -MP -MF .deps/convenience.Tpo -c 
../../../../../lyx/boost/libs/filesystem/src/convenience.cpp
In file included from ../../../../../lyx/boost/boost/config.hpp:26,
 from ../../../../../lyx/boost/boost/filesystem/config.hpp:18,
 from ../../../../../lyx/boost/boost/filesystem/path.hpp:15,
 from ../../../../../lyx/boost/boost/filesystem/convenience.hpp:16,
 from ../../../../../lyx/boost/libs/filesystem/src/convenience.cpp:17:
../../../../src/config.h:462:32: support/nt_defines.h: No such file or directory
make[4]: *** [convenience.lo] Error 1

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: Cygwin compile error solved

2004-05-24 Thread Kayvan A. Sylvan
> 
> I'd rather just get rid of the whole file, it is unused.
> 
> If not fixed that way it should be fixed by adding the appropriate DIR
> to the INCLUDES in the Makefile.ams in boost dirs. (that is how we
> solved this for other subdirs).
> 

Okay. This works for me too:

Index: boost/libs/filesystem/Makefile.am
===
RCS file: /cvs/lyx/lyx-devel/boost/libs/filesystem/Makefile.am,v
retrieving revision 1.1
diff -u -r1.1 Makefile.am
--- boost/libs/filesystem/Makefile.am   2004/01/08 17:47:56 1.1
+++ boost/libs/filesystem/Makefile.am   2004/05/24 20:31:22
@@ -1,4 +1,8 @@
 include $(top_srcdir)/config/common.am
 
+if USE_INCLUDED_BOOST
+BOOST_INCLUDES += -I$(top_srcdir)/src
+endif
+
 SUBDIRS = src


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Is anyone there?

2004-05-23 Thread Kayvan A. Sylvan
On my Solaris machine, latest CVS:

g++ -O2 -fno-exceptions -W -Wall -Wl,-R/u/ksylvan/lib -o tex2lyx FloatList.o 
Floating.o counters.o lengthcommon.o lyxlayout.o lyxtextclass.o lyxlex.o 
lyxlex_pimpl.o boost.o context.o gettext.o lyxfont.o texparser.o tex2lyx.o preamble.o 
math.o table.o text.o  -L/u/ksylvan/lib ../support/.libs/libsupport.a 
../../boost/libs/regex/src/.libs/libboostregex.a -lz
Undefined   first referenced
 symbol in file
LyXFont::resolved() const   lyxtextclass.o
LyXFont::realize(LyXFont const)lyxtextclass.o
Spacing::set(Spacing::Space, float) lyxlayout.o
LyXFont::LyXFont[in-charge]()   lyxlayout.o
LyXFont::LyXFont[in-charge](LyXFont::FONT_INIT1)lyxlayout.o
LyXFont::LyXFont[in-charge](LyXFont::FONT_INIT3)lyxlayout.o
ld: fatal: Symbol referencing errors. No output written to tex2lyx
collect2: ld returned 1 exit status
make[2]: *** [tex2lyx] Error 1


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Clean make on Win32 (Cygwin)

2004-05-23 Thread Kayvan A. Sylvan
For the first time in months, my compiles on Cygwin are failing.

After a cvs update, I did:

./autogen.sh ; cd ../lyx-build/;
../lyx/configure --disable-debug --enable-optimization=-O2

lyx-build is an empty directory

After a while, I get:

g++ -DHAVE_CONFIG_H -I. -I../../../../../lyx/boost/libs/filesystem/src 
-I../../../../src -I../../../../../lyx/boost -I/usr/X11R6/include 
-DBOOST_USER_CONFIG=config.h -O2 -fno-exceptions -W -Wall -mms-bitfields -MT 
convenience.lo -MD -MP -MF .deps/convenience.Tpo -c 
../../../../../lyx/boost/libs/filesystem/src/convenience.cpp
In file included from ../../../../../lyx/boost/boost/config.hpp:26,
 from ../../../../../lyx/boost/boost/filesystem/config.hpp:18,
 from ../../../../../lyx/boost/boost/filesystem/path.hpp:15,
 from ../../../../../lyx/boost/boost/filesystem/convenience.hpp:16,
 from ../../../../../lyx/boost/libs/filesystem/src/convenience.cpp:17:
../../../../src/config.h:462:32: support/nt_defines.h: No such file or directory
make[4]: *** [convenience.lo] Error 1

Any ideas?

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Not receiving lyx-devel Emails

2004-05-23 Thread Kayvan A. Sylvan
Hi everyone,

I don't seem to be getting my lyx-devel Emails. Is anyone out there?
Are y'all getting this?

---Kayvan
-- 
I'm Kayvan Sylvan, and I approve this message.
Kayvan A. Sylvan
Sylvan Associates, Inc.
http://sylvan.com/~kayvan


Cygwin compile error solved

2004-05-23 Thread Kayvan A. Sylvan
I added the following to common.am to get the Cygwin compile
to work.

ndex: config/common.am
===
RCS file: /cvs/lyx/lyx-devel/config/common.am,v
retrieving revision 1.6
diff -u -r1.6 common.am
--- config/common.am2003/05/07 16:22:00 1.6
+++ config/common.am2004/05/20 07:30:43
@@ -9,7 +9,7 @@
 ETAGS_ARGS = --lang=c++
 
 if USE_INCLUDED_BOOST
-BOOST_INCLUDES = -I$(top_srcdir)/boost
+BOOST_INCLUDES = -I$(top_srcdir)/boost -I$(top_srcdir)/src
 endif
 
 LIBS =


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Is anyone there?

2004-05-23 Thread Kayvan A. Sylvan
On my Solaris machine, latest CVS:

g++ -O2 -fno-exceptions -W -Wall -Wl,-R/u/ksylvan/lib -o tex2lyx FloatList.o 
Floating.o counters.o lengthcommon.o lyxlayout.o lyxtextclass.o lyxlex.o 
lyxlex_pimpl.o boost.o context.o gettext.o lyxfont.o texparser.o tex2lyx.o preamble.o 
math.o table.o text.o  -L/u/ksylvan/lib ../support/.libs/libsupport.a 
../../boost/libs/regex/src/.libs/libboostregex.a -lz
Undefined   first referenced
 symbol in file
LyXFont::resolved() const   lyxtextclass.o
LyXFont::realize(LyXFont const&)lyxtextclass.o
Spacing::set(Spacing::Space, float) lyxlayout.o
LyXFont::LyXFont[in-charge]()   lyxlayout.o
LyXFont::LyXFont[in-charge](LyXFont::FONT_INIT1)lyxlayout.o
LyXFont::LyXFont[in-charge](LyXFont::FONT_INIT3)lyxlayout.o
ld: fatal: Symbol referencing errors. No output written to tex2lyx
collect2: ld returned 1 exit status
make[2]: *** [tex2lyx] Error 1


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Clean make on Win32 (Cygwin)

2004-05-23 Thread Kayvan A. Sylvan
For the first time in months, my compiles on Cygwin are failing.

After a "cvs update", I did:

./autogen.sh ; cd ../lyx-build/;
../lyx/configure --disable-debug --enable-optimization=-O2

lyx-build is an empty directory

After a while, I get:

g++ -DHAVE_CONFIG_H -I. -I../../../../../lyx/boost/libs/filesystem/src 
-I../../../../src -I../../../../../lyx/boost -I/usr/X11R6/include 
"-DBOOST_USER_CONFIG=" -O2 -fno-exceptions -W -Wall -mms-bitfields -MT 
convenience.lo -MD -MP -MF .deps/convenience.Tpo -c 
../../../../../lyx/boost/libs/filesystem/src/convenience.cpp
In file included from ../../../../../lyx/boost/boost/config.hpp:26,
 from ../../../../../lyx/boost/boost/filesystem/config.hpp:18,
 from ../../../../../lyx/boost/boost/filesystem/path.hpp:15,
 from ../../../../../lyx/boost/boost/filesystem/convenience.hpp:16,
 from ../../../../../lyx/boost/libs/filesystem/src/convenience.cpp:17:
../../../../src/config.h:462:32: support/nt_defines.h: No such file or directory
make[4]: *** [convenience.lo] Error 1

Any ideas?

        ---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Not receiving lyx-devel Emails

2004-05-23 Thread Kayvan A. Sylvan
Hi everyone,

I don't seem to be getting my lyx-devel Emails. Is anyone out there?
Are y'all getting this?

---Kayvan
-- 
"I'm Kayvan Sylvan, and I approve this message."
Kayvan A. Sylvan
Sylvan Associates, Inc.
http://sylvan.com/~kayvan


Cygwin compile error solved

2004-05-23 Thread Kayvan A. Sylvan
I added the following to common.am to get the Cygwin compile
to work.

ndex: config/common.am
===
RCS file: /cvs/lyx/lyx-devel/config/common.am,v
retrieving revision 1.6
diff -u -r1.6 common.am
--- config/common.am2003/05/07 16:22:00 1.6
+++ config/common.am2004/05/20 07:30:43
@@ -9,7 +9,7 @@
 ETAGS_ARGS = --lang=c++
 
 if USE_INCLUDED_BOOST
-BOOST_INCLUDES = -I$(top_srcdir)/boost
+BOOST_INCLUDES = -I$(top_srcdir)/boost -I$(top_srcdir)/src
 endif
 
 LIBS =


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: CVS lyx is painfully slow

2004-04-10 Thread Kayvan A. Sylvan
On Fri, Apr 09, 2004 at 10:03:56PM +0200, Andre Poenitz wrote:
 On Fri, Apr 09, 2004 at 10:33:06AM -0700, Kayvan A. Sylvan wrote:
  Editing documents right now is an exercise in herculean patience.
 
 What size of document is that?
 
 Andre'

About 173K.

---Kayvan

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: CVS lyx is painfully slow

2004-04-10 Thread Kayvan A. Sylvan
On Fri, Apr 09, 2004 at 10:03:56PM +0200, Andre Poenitz wrote:
> On Fri, Apr 09, 2004 at 10:33:06AM -0700, Kayvan A. Sylvan wrote:
> > Editing documents right now is an exercise in herculean patience.
> 
> What size of document is that?
> 
> Andre'

About 173K.

        ---Kayvan

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


CVS lyx is painfully slow

2004-04-09 Thread Kayvan A. Sylvan
Editing documents right now is an exercise in herculean patience.

Is anyone else noticing this?

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


CVS lyx is painfully slow

2004-04-09 Thread Kayvan A. Sylvan
Editing documents right now is an exercise in herculean patience.

Is anyone else noticing this?

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


lyx CVS compile problem

2004-04-07 Thread Kayvan A. Sylvan
../../lyx/src/text2.C:114:2: warning: #warning broken?
../../lyx/src/text2.C:1338:2: warning: #warning This will not work anymore when we 
have multiple views of the same buffer
../../lyx/src/text2.C: In member function `bool 
   LyXText::deleteEmptyParagraphMechanism(LCursor, const LCursor)':
../../lyx/src/text2.C:1345: error: no matching function for call to `LyXText::
   fixCursorAfterDelete(CursorSlice, const CursorSlice)'
../../lyx/src/text2.C:1274: error: candidates are: void 
   LyXText::fixCursorAfterDelete(CursorSlice, const CursorSlice)
make[3]: *** [text2.o] Error 1



-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


lyx CVS compile problem

2004-04-07 Thread Kayvan A. Sylvan
../../lyx/src/text2.C:114:2: warning: #warning broken?
../../lyx/src/text2.C:1338:2: warning: #warning This will not work anymore when we 
have multiple views of the same buffer
../../lyx/src/text2.C: In member function `bool 
   LyXText::deleteEmptyParagraphMechanism(LCursor&, const LCursor&)':
../../lyx/src/text2.C:1345: error: no matching function for call to `LyXText::
   fixCursorAfterDelete(CursorSlice, const CursorSlice&)'
../../lyx/src/text2.C:1274: error: candidates are: void 
   LyXText::fixCursorAfterDelete(CursorSlice&, const CursorSlice&)
make[3]: *** [text2.o] Error 1



-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: sum with two rows below

2004-03-28 Thread Kayvan A. Sylvan
On Sun, Mar 28, 2004 at 12:09:48PM +, Angus Leeming wrote:
 Gunsan wrote:
 
  Hello.
  How can I produce a sum of this kind in LyX
  
  -
  \   a*b
  /
  -
  0an
  0bm
  
  
  (notice the two rows below the sum sign)
 
 Lyx file attached. Should enable you to modify to suit.
 

Doing the select the following and Insert-Inlined Math as mentioned
in the document, with current CVS, results in a core dump.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: sum with two rows below

2004-03-28 Thread Kayvan A. Sylvan
On Sun, Mar 28, 2004 at 12:09:48PM +, Angus Leeming wrote:
> Gunsan wrote:
> 
> > Hello.
> > How can I produce a sum of this kind in LyX
> > 
> > -
> > \   a*b
> > /
> > -
> > 0<a > 0<b > 
> > 
> > (notice the two rows below the sum sign)
> 
> Lyx file attached. Should enable you to modify to suit.
> 

Doing the "select the following and Insert->Inlined Math" as mentioned
in the document, with current CVS, results in a core dump.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: CVS Lyx: lyx --export works, but lyx GUI does not.

2004-03-26 Thread Kayvan A. Sylvan
This is probably the same as Angus's BibTeX inset crash, so I won't
follow up on this.

---Kayvan

On Thu, Mar 25, 2004 at 11:46:40PM -0800, Kayvan A. Sylvan wrote:
 [EMAIL PROTECTED] ~/src/capella/TS4032] lyx employee_development.lyx 
 no text in updateScrollbar
 
 lyx: SIGSEGV signal caught
 Sorry, you have found a bug in LyX. Please read the bug-reporting instructions in 
 Help-Introduction and send us a bug report, if necessary. Thanks !
 Bye.
 Aborted (core dumped)
 [EMAIL PROTECTED] ~/src/capella/TS4032] 
 
 But the following works:
 
 [EMAIL PROTECTED] ~/src/capella/TS4032] lyx --export pdf2 employee_development.lyx
 This is BibTeX, Version 0.99c (Web2C 7.4.5)
 The top-level auxiliary file: employee_development.aux
 The style file: apalike.bst
 Database file #1: /home/Kayvan/src/capella/TS4032/refs.bib
 
 I am trying to get a minimal test case, but it's a hard one... I'd be happy
 to send my LyX file to anyone who wants to make the crash happen themselves.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: CVS Lyx: lyx --export works, but lyx GUI does not.

2004-03-26 Thread Kayvan A. Sylvan
This is probably the same as Angus's BibTeX inset crash, so I won't
follow up on this.

---Kayvan

On Thu, Mar 25, 2004 at 11:46:40PM -0800, Kayvan A. Sylvan wrote:
> [EMAIL PROTECTED] ~/src/capella/TS4032] lyx employee_development.lyx 
> no text in updateScrollbar
> 
> lyx: SIGSEGV signal caught
> Sorry, you have found a bug in LyX. Please read the bug-reporting instructions in 
> Help->Introduction and send us a bug report, if necessary. Thanks !
> Bye.
> Aborted (core dumped)
> [EMAIL PROTECTED] ~/src/capella/TS4032] 
> 
> But the following works:
> 
> [EMAIL PROTECTED] ~/src/capella/TS4032] lyx --export pdf2 employee_development.lyx
> This is BibTeX, Version 0.99c (Web2C 7.4.5)
> The top-level auxiliary file: employee_development.aux
> The style file: apalike.bst
> Database file #1: /home/Kayvan/src/capella/TS4032/refs.bib
> 
> I am trying to get a minimal test case, but it's a hard one... I'd be happy
> to send my LyX file to anyone who wants to make the crash happen themselves.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


CVS Lyx: lyx --export works, but lyx GUI does not.

2004-03-25 Thread Kayvan A. Sylvan
[EMAIL PROTECTED] ~/src/capella/TS4032] lyx employee_development.lyx 
no text in updateScrollbar

lyx: SIGSEGV signal caught
Sorry, you have found a bug in LyX. Please read the bug-reporting instructions in 
Help-Introduction and send us a bug report, if necessary. Thanks !
Bye.
Aborted (core dumped)
[EMAIL PROTECTED] ~/src/capella/TS4032] 

But the following works:

[EMAIL PROTECTED] ~/src/capella/TS4032] lyx --export pdf2 employee_development.lyx
This is BibTeX, Version 0.99c (Web2C 7.4.5)
The top-level auxiliary file: employee_development.aux
The style file: apalike.bst
Database file #1: /home/Kayvan/src/capella/TS4032/refs.bib

I am trying to get a minimal test case, but it's a hard one... I'd be happy
to send my LyX file to anyone who wants to make the crash happen themselves.

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


CVS Lyx: lyx --export works, but lyx GUI does not.

2004-03-25 Thread Kayvan A. Sylvan
[EMAIL PROTECTED] ~/src/capella/TS4032] lyx employee_development.lyx 
no text in updateScrollbar

lyx: SIGSEGV signal caught
Sorry, you have found a bug in LyX. Please read the bug-reporting instructions in 
Help->Introduction and send us a bug report, if necessary. Thanks !
Bye.
Aborted (core dumped)
[EMAIL PROTECTED] ~/src/capella/TS4032] 

But the following works:

[EMAIL PROTECTED] ~/src/capella/TS4032] lyx --export pdf2 employee_development.lyx
This is BibTeX, Version 0.99c (Web2C 7.4.5)
The top-level auxiliary file: employee_development.aux
The style file: apalike.bst
Database file #1: /home/Kayvan/src/capella/TS4032/refs.bib

I am trying to get a minimal test case, but it's a hard one... I'd be happy
to send my LyX file to anyone who wants to make the crash happen themselves.

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Branch: titlepage gets read as color?

2004-03-21 Thread Kayvan A. Sylvan
I have a lyx document with a branch called titlepage (for when I want
to turn a custom titlepage off or on).

When LyX reads it, I see:

no text in updateScrollbar
Buffer::Buffer()
LColor::getFromLyXName: Unknown color titlepage

It does not seem to affect branch function, however.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Current CVS can not select with mouse

2004-03-21 Thread Kayvan A. Sylvan
I don't know when this bug popped up, but I can no longer select with
the mouse (click-hold-drag) although the SHIFT-move method of text
selection seems to work.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Current CVS: Can not work in math inset

2004-03-21 Thread Kayvan A. Sylvan
I can create a math inset (C-m) but I can not navigate into it.

Trying to move the cursor in causes the cursor to bounce to the top of
the document.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Current CVS: Insert-File- submenus grayed out

2004-03-21 Thread Kayvan A. Sylvan
I want to Insert-File-ASCII as Lines, but this option is grayed out
along with LyX Document and Ascii as paragraphs.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


spurious characters in src/ChangeLog

2004-03-21 Thread Kayvan A. Sylvan
Here is a cleanup fix


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)
Index: src/ChangeLog
===
RCS file: /cvs/lyx/lyx-devel/src/ChangeLog,v
retrieving revision 1.1835
diff -u -r1.1835 ChangeLog
--- src/ChangeLog   2004/03/21 10:16:38 1.1835
+++ src/ChangeLog   2004/03/22 06:53:19
@@ -5,12 +5,12 @@
 
 2004-03-19  André Pönitz  [EMAIL PROTECTED]
 
-* cursor.[Ch] (reset): take main text inset as argument
+   * cursor.[Ch] (reset): take main text inset as argument
 
-* BufferView: adjust
-* BufferView_pimpl.C: adjust
+   * BufferView: adjust
+   * BufferView_pimpl.C: adjust
 
-* paragraph.[Ch]: fix completely broken operator=()
+   * paragraph.[Ch]: fix completely broken operator=()
 
 
 2004-03-16  Jean-Marc Lasgouttes  [EMAIL PROTECTED]


"Branch: titlepage" gets read as color?

2004-03-21 Thread Kayvan A. Sylvan
I have a lyx document with a branch called "titlepage" (for when I want
to turn a custom titlepage off or on).

When LyX reads it, I see:

no text in updateScrollbar
Buffer::Buffer()
LColor::getFromLyXName: Unknown color "titlepage"

It does not seem to affect branch function, however.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Current CVS can not select with mouse

2004-03-21 Thread Kayvan A. Sylvan
I don't know when this bug popped up, but I can no longer select with
the mouse (click-hold-drag) although the SHIFT-move method of text
selection seems to work.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Current CVS: Can not work in math inset

2004-03-21 Thread Kayvan A. Sylvan
I can create a math inset (C-m) but I can not navigate into it.

Trying to move the cursor in causes the cursor to bounce to the top of
the document.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Current CVS: Insert->File-> submenus grayed out

2004-03-21 Thread Kayvan A. Sylvan
I want to Insert->File->ASCII as Lines, but this option is grayed out
along with "LyX Document" and "Ascii as paragraphs".

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


spurious characters in src/ChangeLog

2004-03-21 Thread Kayvan A. Sylvan
Here is a cleanup fix


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)
Index: src/ChangeLog
===
RCS file: /cvs/lyx/lyx-devel/src/ChangeLog,v
retrieving revision 1.1835
diff -u -r1.1835 ChangeLog
--- src/ChangeLog   2004/03/21 10:16:38 1.1835
+++ src/ChangeLog   2004/03/22 06:53:19
@@ -5,12 +5,12 @@
 
 2004-03-19  André Pönitz  <[EMAIL PROTECTED]>
 
-* cursor.[Ch] (reset): take main text inset as argument
+   * cursor.[Ch] (reset): take main text inset as argument
 
-* BufferView: adjust
-* BufferView_pimpl.C: adjust
+   * BufferView: adjust
+   * BufferView_pimpl.C: adjust
 
-* paragraph.[Ch]: fix completely broken operator=()
+   * paragraph.[Ch]: fix completely broken operator=()
 
 
 2004-03-16  Jean-Marc Lasgouttes  <[EMAIL PROTECTED]>


Re: lyx --export was working, now it is not again...

2004-03-20 Thread Kayvan A. Sylvan
On Fri, Mar 19, 2004 at 07:39:32PM +0100, Andre Poenitz wrote:
 On Thu, Mar 18, 2004 at 03:46:03PM -0800, Kayvan A. Sylvan wrote:
  $ lyx --export pdf evidence_TS3150.lyx
  Buffer::Buffer()
  Assertion triggered in BufferView* LyXText::bv() const by failing check bv_owner 
  != 0 in file ../../lyx/src/text.C:171
  Aborted (core dumped)
 
 I can confirm this.
 
 The solution is to change src/tabular.C to

I can verify the fix.

A cvs diff patch is attached.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)
Index: src/tabular.C
===
RCS file: /cvs/lyx/lyx-devel/src/tabular.C,v
retrieving revision 1.205
diff -u -r1.205 tabular.C
--- src/tabular.C   2004/02/20 17:19:49 1.205
+++ src/tabular.C   2004/03/21 05:21:13
@@ -2007,7 +2007,8 @@
ret += TeXCellPreamble(os, cell);
InsetText  inset = getCellInset(cell);
 
-   bool rtl = inset.text_.isRTL(inset.paragraphs().front())
+   Paragraph  par = inset.paragraphs().front();
+   bool rtl = par.isRightToLeftPar(buf.params())
 !inset.paragraphs().begin()-empty()
 getPWidth(cell).zero();
 


Re: lyx --export was working, now it is not again...

2004-03-20 Thread Kayvan A. Sylvan
On Fri, Mar 19, 2004 at 07:39:32PM +0100, Andre Poenitz wrote:
> On Thu, Mar 18, 2004 at 03:46:03PM -0800, Kayvan A. Sylvan wrote:
> > $ lyx --export pdf evidence_TS3150.lyx
> > Buffer::Buffer()
> > Assertion triggered in BufferView* LyXText::bv() const by failing check "bv_owner 
> > != 0" in file ../../lyx/src/text.C:171
> > Aborted (core dumped)
> 
> I can confirm this.
> 
> The solution is to change src/tabular.C to

I can verify the fix.

A cvs diff patch is attached.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)
Index: src/tabular.C
===
RCS file: /cvs/lyx/lyx-devel/src/tabular.C,v
retrieving revision 1.205
diff -u -r1.205 tabular.C
--- src/tabular.C   2004/02/20 17:19:49 1.205
+++ src/tabular.C   2004/03/21 05:21:13
@@ -2007,7 +2007,8 @@
ret += TeXCellPreamble(os, cell);
InsetText & inset = getCellInset(cell);
 
-   bool rtl = inset.text_.isRTL(inset.paragraphs().front())
+   Paragraph & par = inset.paragraphs().front();
+   bool rtl = par.isRightToLeftPar(buf.params())
&& !inset.paragraphs().begin()->empty()
&& getPWidth(cell).zero();
 


lyx --export was working, now it is not again...

2004-03-18 Thread Kayvan A. Sylvan
$ lyx --export pdf evidence_TS3150.lyx
Buffer::Buffer()
Assertion triggered in BufferView* LyXText::bv() const by failing check bv_owner != 
0 in file ../../lyx/src/text.C:171
Aborted (core dumped)


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


lyx --export was working, now it is not again...

2004-03-18 Thread Kayvan A. Sylvan
$ lyx --export pdf evidence_TS3150.lyx
Buffer::Buffer()
Assertion triggered in BufferView* LyXText::bv() const by failing check "bv_owner != 
0" in file ../../lyx/src/text.C:171
Aborted (core dumped)


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


CVS LyX dumps core of --export

2004-03-11 Thread Kayvan A. Sylvan
This is new:

lyx --export pdf commit.lyx
Assertion triggered in BufferView* LyXText::bv() const by failing check bv_owner != 
0 in file text.C:171


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


CVS LyX dumps core of --export

2004-03-11 Thread Kayvan A. Sylvan
This is new:

lyx --export pdf commit.lyx
Assertion triggered in BufferView* LyXText::bv() const by failing check "bv_owner != 
0" in file text.C:171


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: src/insets/insetlist.*

2004-02-26 Thread Kayvan A. Sylvan
On Thu, Feb 26, 2004 at 08:10:23PM +0100, Alfredo Braunstein wrote:
 Alfredo Braunstein wrote:
 
  Have you tried just to remove #include InsetList.h from insetlabel.C?
  
  it's used.
 
 I see... it gets it also from paragraph.h. May work... (Kayvan?)

Yes. I was able to compile by taking out the #include InsetList.h from
both insetlabel.C and paragraph.h.

However, I agree with Angus. There's really no reason for the
files to stay around at this point.

---Kayvan


src/insets/insetlist.*

2004-02-26 Thread Kayvan A. Sylvan
In order to compile on Cygwin, I have to rm src/insets/insetlist.*

Can someone either rename these to insetlisting.* or just remove them?

Thank you!

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: src/insets/insetlist.*

2004-02-26 Thread Kayvan A. Sylvan
On Thu, Feb 26, 2004 at 08:10:23PM +0100, Alfredo Braunstein wrote:
> Alfredo Braunstein wrote:
> 
> >> Have you tried just to remove #include "InsetList.h" from insetlabel.C?
> > 
> > it's used.
> 
> I see... it gets it also from paragraph.h. May work... (Kayvan?)

Yes. I was able to compile by taking out the "#include InsetList.h" from
both insetlabel.C and paragraph.h.

However, I agree with Angus. There's really no reason for the
files to stay around at this point.

---Kayvan


src/insets/insetlist.*

2004-02-26 Thread Kayvan A. Sylvan
In order to compile on Cygwin, I have to "rm src/insets/insetlist.*"

Can someone either rename these to insetlisting.* or just remove them?

Thank you!

    ---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Current CVS: Problem with text-wrap float

2004-02-21 Thread Kayvan A. Sylvan
This is with the current CVS:

When I create a text-wrap float and try to modify its parameters (right mouse
click and click on Right and set up 25 col%, for example), hitting OK
or Apply does not work. Nothing is saved and the settings are lost.

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Current CVS: Problem with text-wrap float

2004-02-21 Thread Kayvan A. Sylvan
This is with the current CVS:

When I create a text-wrap float and try to modify its parameters (right mouse
click and click on "Right" and set up "25" "col%", for example), hitting "OK"
or "Apply" does not work. Nothing is saved and the settings are lost.

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: [ANNOUNCE] LyX 1.3.4 is released

2004-02-19 Thread Kayvan A. Sylvan
On Thu, Feb 19, 2004 at 05:17:00PM +0100, Jean-Marc Lasgouttes wrote:
  Lars == Lars Gullik Bjønnes [EMAIL PROTECTED] writes:
 
 Lars | Hmm, why do we have this 'rpmdist' make target, then?
 
 Lars That target will create the tar.gz (make dist) and run rpmbuild
 Lars -ta on it.
 
 And I need to be root to use that, right?
 
 JMarc

Not necessarily.

[EMAIL PROTECTED] ~]$ cat ~/.rpmmacros 
%_myrpmdir  /home/kayvan/src/rpm
%_builddir  %{_myrpmdir}/BUILD
%_rpmdir%{_myrpmdir}/RPMS
%_srcrpmdir %{_myrpmdir}/SRPMS
%_specdir   %{_myrpmdir}/SPECS
%_sourcedir %{_myrpmdir}/SOURCES

%_mandir/usr/share/man


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: [ANNOUNCE] LyX 1.3.4 is released

2004-02-19 Thread Kayvan A. Sylvan
On Thu, Feb 19, 2004 at 05:17:00PM +0100, Jean-Marc Lasgouttes wrote:
> >>>>> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes:
> 
> Lars> | Hmm, why do we have this 'rpmdist' make target, then?
> 
> Lars> That target will create the tar.gz (make dist) and run rpmbuild
> Lars> -ta on it.
> 
> And I need to be root to use that, right?
> 
> JMarc

Not necessarily.

[EMAIL PROTECTED] ~]$ cat ~/.rpmmacros 
%_myrpmdir  /home/kayvan/src/rpm
%_builddir  %{_myrpmdir}/BUILD
%_rpmdir%{_myrpmdir}/RPMS
%_srcrpmdir %{_myrpmdir}/SRPMS
%_specdir   %{_myrpmdir}/SPECS
%_sourcedir     %{_myrpmdir}/SOURCES

%_mandir/usr/share/man


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: LyX CVS compile error: insetlabel.C

2004-02-17 Thread Kayvan A. Sylvan
On Tue, Feb 17, 2004 at 09:01:07AM +0100, Alfredo Braunstein wrote:
 Angus Leeming wrote:
 
  Why don't we (you) just remove this cruft from src/insets
  (insettheorem too). They no longer compile, they aren't ver y complex
  anyway and can always be retrieved from the Attic.
 
 There are no soonish plans for them? What is the use of the EXTRA_DIST
 variable in insets/Makefile.am (= insetlist.[Ch] insettheorem.[Ch])?
 
 (we could as well rename insetlist.[Ch] - insetlisting.[Ch] or something)

Good idea.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: LyX CVS compile error: insetlabel.C

2004-02-17 Thread Kayvan A. Sylvan
On Tue, Feb 17, 2004 at 09:01:07AM +0100, Alfredo Braunstein wrote:
> Angus Leeming wrote:
> 
> > Why don't we (you) just remove this cruft from src/insets
> > (insettheorem too). They no longer compile, they aren't ver y complex
> > anyway and can always be retrieved from the Attic.
> 
> There are no soonish plans for them? What is the use of the EXTRA_DIST
> variable in insets/Makefile.am (= insetlist.[Ch] insettheorem.[Ch])?
> 
> (we could as well rename insetlist.[Ch] -> insetlisting.[Ch] or something)

Good idea.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


LyX CVS compile error: insetlabel.C

2004-02-16 Thread Kayvan A. Sylvan
Clean repository, Cygwin environment:

g++ -DHAVE_CONFIG_H -I. -I../../../lyx/src/insets -I../../src 
-I../../../lyx/src/insets/../ -I../../../lyx/boost -I/usr/X11R6/include -O2 
-fno-exceptions -W -Wall -mms-bitfields -MT insetlabel.lo -MD -MP -MF 
.deps/insetlabel.Tpo -c ../../../lyx/src/insets/insetlabel.C
In file included from ../../../lyx/src/insets/insetlabel.C:19:
../../../lyx/src/insets/InsetList.h:21: error: redefinition of `class InsetList
   '
../../../lyx/src/InsetList.h:24: error: previous definition of `class InsetList
   '
../../../lyx/src/insets/InsetList.h:28: error: syntax error before `::' token
../../../lyx/src/insets/InsetList.h:30: error: semicolon missing after 
   declaration of `InsetList'
../../../lyx/src/insets/InsetList.h:30: error: extraneous `int' ignored
../../../lyx/src/insets/InsetList.h:30: error: non-member function `InsetList 
   latex(const Buffer, std::ostream, const OutputParams)' cannot have `const
   ' method qualifier
../../../lyx/src/insets/InsetList.h:32: error: syntax error before `const'
In file included from ../../../lyx/src/insets/insetlabel.C:20:
../../../lyx/src/iterators.h:40: error: `iterator' is not a member of type `
   InsetList'
../../../lyx/src/iterators.h:40: error: template argument 1 is invalid
../../../lyx/src/iterators.h:40: error: ISO C++ forbids declaration of `it' 
   with no type
../../../lyx/src/insets/insetlabel.C: In function `void 
   unnamed::changeRefsIfUnique(BufferView, const std::string, const 
   std::string)':
../../../lyx/src/insets/insetlabel.C:77: error: `iterator' is not a member of 
   type `InsetList'
../../../lyx/src/insets/insetlabel.C:77: error: parse error before `=' token
../../../lyx/src/insets/insetlabel.C:78: error: `it2' undeclared (first use 
   this function)
../../../lyx/src/insets/insetlabel.C:78: error: (Each undeclared identifier is 
   reported only once for each function it appears in.)
../../../lyx/src/insets/insetlabel.C:78: error: `end' undeclared (first use 
   this function)
make[3]: *** [insetlabel.lo] Error 1

The configuration:

Configuration
  Host type:  i686-pc-cygwin
  Special build flags:warnings assertions xforms-image-loader compression
  C   Compiler:   gcc
  C   Compiler flags: -g -O2
  C++ Compiler:   g++ (3.3.1)
  C++ Compiler flags: -O2 -fno-exceptions -W -Wall -mms-bitfields
  Linker flags:-Wl,--export-all-symbols
  XForms Frontend:
  libXpm version:   4.11
  libforms version: 1.0.0
  LyX binary dir: /usr/local/bin
  LyX files dir:  /usr/local/share/lyx


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: LyX CVS compile error: insetlabel.C

2004-02-16 Thread Kayvan A. Sylvan
On Mon, Feb 16, 2004 at 07:31:05PM +, Angus Leeming wrote:
 Kayvan A. Sylvan wrote:
 
  Clean repository, Cygwin environment:
 
 Kayvan, insets/insetlist.[Ch] are not compiled. What happens if you 
 just remove them?

That worked!

After removing it, doing ./autogen.sh and compiling.

Thanks, Angus.

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: LyX CVS compile error: insetlabel.C

2004-02-16 Thread Kayvan A. Sylvan
On Mon, Feb 16, 2004 at 12:56:41PM -0800, Kayvan A. Sylvan wrote:
 On Mon, Feb 16, 2004 at 07:31:05PM +, Angus Leeming wrote:
  Kayvan A. Sylvan wrote:
  
   Clean repository, Cygwin environment:
  
  Kayvan, insets/insetlist.[Ch] are not compiled. What happens if you 
  just remove them?
 
 That worked!
 
 After removing it, doing ./autogen.sh and compiling.
 
 Thanks, Angus.

If these are not used, them how come they show up anyway?

[EMAIL PROTECTED] ~/src/lyx] cvs update -dP 21 | grep -v 'cvs server'
U src/insets/insetlist.C
U src/insets/insetlist.h

---Kayvan


Re: Latest CVS lyx: key does not insert quote inset

2004-02-16 Thread Kayvan A. Sylvan
On Sat, Feb 14, 2004 at 11:06:34AM -0800, Kayvan A. Sylvan wrote:
 With the latest CVS, the quote key no longer inserts the correct
 quote inset.
 
 I always get the () ordinary quotes, instead of the (``) and ('') quotes.

Does anyone have any leads on this one?

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: LyX CVS compile error: insetlabel.C

2004-02-16 Thread Kayvan A. Sylvan
On Mon, Feb 16, 2004 at 10:45:11PM +, Angus Leeming wrote:
 Alfredo Braunstein wrote:
  There seems to be some kind of upper/lower case problem,
  src/insets/insetlabel.C should #include src/InsetList.h but it's
  wrongly including src/inset/insetlist.h in cwgwin.
 
 Why don't we (you) just remove this cruft from src/insets 
 (insettheorem too). They no longer compile, they aren't ver y complex 
 anyway and can always be retrieved from the Attic.

Alfredo is right. Two files with the same name (except for case) don't
quite work right in CygWin.

I agree with Angus. Let's just remove the files.

---Kayvan

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


LyX CVS compile error: insetlabel.C

2004-02-16 Thread Kayvan A. Sylvan
Clean repository, Cygwin environment:

g++ -DHAVE_CONFIG_H -I. -I../../../lyx/src/insets -I../../src 
-I../../../lyx/src/insets/../ -I../../../lyx/boost -I/usr/X11R6/include -O2 
-fno-exceptions -W -Wall -mms-bitfields -MT insetlabel.lo -MD -MP -MF 
.deps/insetlabel.Tpo -c ../../../lyx/src/insets/insetlabel.C
In file included from ../../../lyx/src/insets/insetlabel.C:19:
../../../lyx/src/insets/InsetList.h:21: error: redefinition of `class InsetList
   '
../../../lyx/src/InsetList.h:24: error: previous definition of `class InsetList
   '
../../../lyx/src/insets/InsetList.h:28: error: syntax error before `::' token
../../../lyx/src/insets/InsetList.h:30: error: semicolon missing after 
   declaration of `InsetList'
../../../lyx/src/insets/InsetList.h:30: error: extraneous `int' ignored
../../../lyx/src/insets/InsetList.h:30: error: non-member function `InsetList 
   latex(const Buffer&, std::ostream&, const OutputParams&)' cannot have `const
   ' method qualifier
../../../lyx/src/insets/InsetList.h:32: error: syntax error before `const'
In file included from ../../../lyx/src/insets/insetlabel.C:20:
../../../lyx/src/iterators.h:40: error: `iterator' is not a member of type `
   InsetList'
../../../lyx/src/iterators.h:40: error: template argument 1 is invalid
../../../lyx/src/iterators.h:40: error: ISO C++ forbids declaration of `it' 
   with no type
../../../lyx/src/insets/insetlabel.C: In function `void 
   ::changeRefsIfUnique(BufferView&, const std::string&, const 
   std::string&)':
../../../lyx/src/insets/insetlabel.C:77: error: `iterator' is not a member of 
   type `InsetList'
../../../lyx/src/insets/insetlabel.C:77: error: parse error before `=' token
../../../lyx/src/insets/insetlabel.C:78: error: `it2' undeclared (first use 
   this function)
../../../lyx/src/insets/insetlabel.C:78: error: (Each undeclared identifier is 
   reported only once for each function it appears in.)
../../../lyx/src/insets/insetlabel.C:78: error: `end' undeclared (first use 
   this function)
make[3]: *** [insetlabel.lo] Error 1

The configuration:

Configuration
  Host type:  i686-pc-cygwin
  Special build flags:warnings assertions xforms-image-loader compression
  C   Compiler:   gcc
  C   Compiler flags: -g -O2
  C++ Compiler:   g++ (3.3.1)
  C++ Compiler flags: -O2 -fno-exceptions -W -Wall -mms-bitfields
  Linker flags:-Wl,--export-all-symbols
  XForms Frontend:
  libXpm version:   4.11
  libforms version: 1.0.0
  LyX binary dir: /usr/local/bin
  LyX files dir:  /usr/local/share/lyx


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: LyX CVS compile error: insetlabel.C

2004-02-16 Thread Kayvan A. Sylvan
On Mon, Feb 16, 2004 at 07:31:05PM +, Angus Leeming wrote:
> Kayvan A. Sylvan wrote:
> 
> > Clean repository, Cygwin environment:
> 
> Kayvan, insets/insetlist.[Ch] are not compiled. What happens if you 
> just remove them?

That worked!

After removing it, doing ./autogen.sh and compiling.

Thanks, Angus.

        ---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: LyX CVS compile error: insetlabel.C

2004-02-16 Thread Kayvan A. Sylvan
On Mon, Feb 16, 2004 at 12:56:41PM -0800, Kayvan A. Sylvan wrote:
> On Mon, Feb 16, 2004 at 07:31:05PM +, Angus Leeming wrote:
> > Kayvan A. Sylvan wrote:
> > 
> > > Clean repository, Cygwin environment:
> > 
> > Kayvan, insets/insetlist.[Ch] are not compiled. What happens if you 
> > just remove them?
> 
> That worked!
> 
> After removing it, doing ./autogen.sh and compiling.
> 
> Thanks, Angus.

If these are not used, them how come they show up anyway?

[EMAIL PROTECTED] ~/src/lyx] cvs update -dP 2>&1 | grep -v 'cvs server'
U src/insets/insetlist.C
U src/insets/insetlist.h

---Kayvan


Re: Latest CVS lyx: " key does not insert quote inset

2004-02-16 Thread Kayvan A. Sylvan
On Sat, Feb 14, 2004 at 11:06:34AM -0800, Kayvan A. Sylvan wrote:
> With the latest CVS, the quote key no longer inserts the correct
> quote inset.
> 
> I always get the (") ordinary quotes, instead of the (``) and ('') quotes.

Does anyone have any leads on this one?

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: LyX CVS compile error: insetlabel.C

2004-02-16 Thread Kayvan A. Sylvan
On Mon, Feb 16, 2004 at 10:45:11PM +, Angus Leeming wrote:
> Alfredo Braunstein wrote:
> > There seems to be some kind of upper/lower case problem,
> > src/insets/insetlabel.C should #include src/InsetList.h but it's
> > wrongly including src/inset/insetlist.h in cwgwin.
> 
> Why don't we (you) just remove this cruft from src/insets 
> (insettheorem too). They no longer compile, they aren't ver y complex 
> anyway and can always be retrieved from the Attic.

Alfredo is right. Two files with the same name (except for case) don't
quite work right in CygWin.

I agree with Angus. Let's just remove the files.

        ---Kayvan

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Latest CVS lyx: key does not insert quote inset

2004-02-14 Thread Kayvan A. Sylvan
With the latest CVS, the quote key no longer inserts the correct
quote inset.

I always get the () ordinary quotes, instead of the (``) and ('') quotes.

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Latest CVS lyx: " key does not insert quote inset

2004-02-14 Thread Kayvan A. Sylvan
With the latest CVS, the quote key no longer inserts the correct
quote inset.

I always get the (") ordinary quotes, instead of the (``) and ('') quotes.

    ---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


latest CVS: compile error

2004-02-13 Thread Kayvan A. Sylvan
g++ -DHAVE_CONFIG_H -I. -I../../../lyx/src/insets -I../../src 
-I../../../lyx/src/insets/../ -I../../../lyx/boost -I/usr/X11R6/include -O2 
-fno-exceptions -W -Wall -mms-bitfields -MT insetlabel.lo -MD -MP -MF 
.deps/insetlabel.Tpo -c ../../../lyx/src/insets/insetlabel.C
In file included from ../../../lyx/src/insets/insetlabel.C:19:
../../../lyx/src/insets/InsetList.h:21: error: redefinition of `class InsetList
   '
../../../lyx/src/InsetList.h:24: error: previous definition of `class InsetList
   '
../../../lyx/src/insets/InsetList.h:28: error: syntax error before `::' token
../../../lyx/src/insets/InsetList.h:30: error: semicolon missing after 
   declaration of `InsetList'
../../../lyx/src/insets/InsetList.h:30: error: extraneous `int' ignored
../../../lyx/src/insets/InsetList.h:30: error: non-member function `InsetList 
   latex(const Buffer, std::ostream, const OutputParams)' cannot have `const
   ' method qualifier
../../../lyx/src/insets/InsetList.h:32: error: syntax error before `const'
In file included from ../../../lyx/src/insets/insetlabel.C:20:
../../../lyx/src/iterators.h:40: error: `iterator' is not a member of type `
   InsetList'
../../../lyx/src/iterators.h:40: error: template argument 1 is invalid
../../../lyx/src/iterators.h:40: error: ISO C++ forbids declaration of `it' 
   with no type
../../../lyx/src/insets/insetlabel.C: In function `void 
   unnamed::changeRefsIfUnique(BufferView, const std::string, const 
   std::string)':
../../../lyx/src/insets/insetlabel.C:77: error: `iterator' is not a member of 
   type `InsetList'
../../../lyx/src/insets/insetlabel.C:77: error: parse error before `=' token
../../../lyx/src/insets/insetlabel.C:78: error: `it2' undeclared (first use 
   this function)
../../../lyx/src/insets/insetlabel.C:78: error: (Each undeclared identifier is 
   reported only once for each function it appears in.)
../../../lyx/src/insets/insetlabel.C:78: error: `end' undeclared (first use 
   this function)
make[3]: *** [insetlabel.lo] Error 1
make[3]: Leaving directory `/home/Kayvan/src/lyx-build/src/insets'
make[2]: *** [install-recursive] Error 1
make[2]: Leaving directory `/home/Kayvan/src/lyx-build/src'
make[1]: *** [install] Error 2
make[1]: Leaving directory `/home/Kayvan/src/lyx-build/src'
make: *** [install-recursive] Error 1



-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


latest CVS: compile error

2004-02-13 Thread Kayvan A. Sylvan
g++ -DHAVE_CONFIG_H -I. -I../../../lyx/src/insets -I../../src 
-I../../../lyx/src/insets/../ -I../../../lyx/boost -I/usr/X11R6/include -O2 
-fno-exceptions -W -Wall -mms-bitfields -MT insetlabel.lo -MD -MP -MF 
.deps/insetlabel.Tpo -c ../../../lyx/src/insets/insetlabel.C
In file included from ../../../lyx/src/insets/insetlabel.C:19:
../../../lyx/src/insets/InsetList.h:21: error: redefinition of `class InsetList
   '
../../../lyx/src/InsetList.h:24: error: previous definition of `class InsetList
   '
../../../lyx/src/insets/InsetList.h:28: error: syntax error before `::' token
../../../lyx/src/insets/InsetList.h:30: error: semicolon missing after 
   declaration of `InsetList'
../../../lyx/src/insets/InsetList.h:30: error: extraneous `int' ignored
../../../lyx/src/insets/InsetList.h:30: error: non-member function `InsetList 
   latex(const Buffer&, std::ostream&, const OutputParams&)' cannot have `const
   ' method qualifier
../../../lyx/src/insets/InsetList.h:32: error: syntax error before `const'
In file included from ../../../lyx/src/insets/insetlabel.C:20:
../../../lyx/src/iterators.h:40: error: `iterator' is not a member of type `
   InsetList'
../../../lyx/src/iterators.h:40: error: template argument 1 is invalid
../../../lyx/src/iterators.h:40: error: ISO C++ forbids declaration of `it' 
   with no type
../../../lyx/src/insets/insetlabel.C: In function `void 
   ::changeRefsIfUnique(BufferView&, const std::string&, const 
   std::string&)':
../../../lyx/src/insets/insetlabel.C:77: error: `iterator' is not a member of 
   type `InsetList'
../../../lyx/src/insets/insetlabel.C:77: error: parse error before `=' token
../../../lyx/src/insets/insetlabel.C:78: error: `it2' undeclared (first use 
   this function)
../../../lyx/src/insets/insetlabel.C:78: error: (Each undeclared identifier is 
   reported only once for each function it appears in.)
../../../lyx/src/insets/insetlabel.C:78: error: `end' undeclared (first use 
   this function)
make[3]: *** [insetlabel.lo] Error 1
make[3]: Leaving directory `/home/Kayvan/src/lyx-build/src/insets'
make[2]: *** [install-recursive] Error 1
make[2]: Leaving directory `/home/Kayvan/src/lyx-build/src'
make[1]: *** [install] Error 2
make[1]: Leaving directory `/home/Kayvan/src/lyx-build/src'
make: *** [install-recursive] Error 1



-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: LyX 1.3.3/Qt/cygwin works

2004-02-10 Thread Kayvan A. Sylvan
On Tue, Feb 10, 2004 at 05:35:53PM +0200, Sivan Toledo wrote:
 Also, I think that the run-time configure script could use a little 
 upgrade on Windows. This is because the path names that LyX emits now 
 (e.g. inside generated LaTeX files) are good for Win32 TeX's (I use 
 fpTeX), but they do not work with the cygwin teTeX. It would be better 
 to figure out at configure time what the LaTeX engine expects and to 
 emit paths accordingly.

Yes. This is a problem that I work around with this patch:

Index: src/support/os_win32.C
===
RCS file: /cvs/lyx/lyx-devel/src/support/os_win32.C,v
retrieving revision 1.13
diff -u -r1.13 os_win32.C
--- src/support/os_win32.C  2003/10/08 08:38:05 1.13
+++ src/support/os_win32.C  2004/02/10 16:49:03
@@ -108,8 +108,9 @@

 string external_path(string const  p)
 {
+   char const * const disable_cygwin_fixup = getenv(LYX_NO_CYGPATH_FIX);
string dos_path = p;
-   if (is_absolute_path(p)) {
+   if ((! disable_cygwin_fixup)  is_absolute_path(p)) {
char dp[255];
cygwin_conv_to_full_win32_path(p.c_str(), dp);
dos_path = subst(dp,'\\','/');

Then I set the LYX_NO_CYGPATH_FIX variable to have cygwin's tetex work
with LyX. If we fix the configure process so that LyX can do the right
thing dependon on the latex installation, then I would not need such a kludge.

 But my setup works beautifully, including in Hebrew.

Fantastic! Great job!

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: LyX 1.3.3/Qt/cygwin works

2004-02-10 Thread Kayvan A. Sylvan
On Tue, Feb 10, 2004 at 05:35:53PM +0200, Sivan Toledo wrote:
> Also, I think that the run-time configure script could use a little 
> upgrade on Windows. This is because the path names that LyX emits now 
> (e.g. inside generated LaTeX files) are good for Win32 TeX's (I use 
> fpTeX), but they do not work with the cygwin teTeX. It would be better 
> to figure out at configure time what the LaTeX engine expects and to 
> emit paths accordingly.

Yes. This is a problem that I work around with this patch:

Index: src/support/os_win32.C
===
RCS file: /cvs/lyx/lyx-devel/src/support/os_win32.C,v
retrieving revision 1.13
diff -u -r1.13 os_win32.C
--- src/support/os_win32.C  2003/10/08 08:38:05 1.13
+++ src/support/os_win32.C  2004/02/10 16:49:03
@@ -108,8 +108,9 @@

 string external_path(string const & p)
 {
+   char const * const disable_cygwin_fixup = getenv("LYX_NO_CYGPATH_FIX");
string dos_path = p;
-   if (is_absolute_path(p)) {
+   if ((! disable_cygwin_fixup) && is_absolute_path(p)) {
char dp[255];
cygwin_conv_to_full_win32_path(p.c_str(), dp);
dos_path = subst(dp,'\\','/');

Then I set the LYX_NO_CYGPATH_FIX variable to have cygwin's tetex work
with LyX. If we fix the configure process so that LyX can do the right
thing dependon on the latex installation, then I would not need such a kludge.

> But my setup works beautifully, including in Hebrew.

Fantastic! Great job!

    ---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: Cygwin trouble: lyx 1.3.3 builds but crashes.

2004-02-05 Thread Kayvan A. Sylvan
On Thu, Feb 05, 2004 at 05:11:55PM +0200, Sivan Toledo wrote:
 
 I am trying to build lyx 1.3.3 with a qt frontend on cygwin. I got to 
 the point that qt and lyx both build successfully (no changes to the lyx 
 sources, and almost none to qt-x11). Qt runs the examples, but lyx dies 
 before it opens the first window. It says it crashed with a segmentation 
 fault and asks to report the bug.
 
 Here are the details:
 
 I built qt-x11 with gcc-2.95.3-10 (cygwin special); I couldn't get it to 
 compile with gcc 3. I did this by using the cygwin mkspec, but changing 
 to gcc-2 and g++2, by telling it not to use DNS, and not to build the 
 network module. I also forced the OS and WS to UNIX and X11, because qt 
 discovers (using a gcc macro) that it is on cygwin and tries to do a 
 windows build, which fails because you can't do it in the GPL version. 
 So this works, the examples run well. This is a static qt, not a dll. I 
 couldn't build the dll.
 

If you get this to work, I would like to know how. I have never managed to
built lyx-qt on Cygwin. I always build lyx-xforms.

Best regards,

---Kayvan


Re: Cygwin trouble: lyx 1.3.3 builds but crashes.

2004-02-05 Thread Kayvan A. Sylvan
On Thu, Feb 05, 2004 at 05:11:55PM +0200, Sivan Toledo wrote:
> 
> I am trying to build lyx 1.3.3 with a qt frontend on cygwin. I got to 
> the point that qt and lyx both build successfully (no changes to the lyx 
> sources, and almost none to qt-x11). Qt runs the examples, but lyx dies 
> before it opens the first window. It says it crashed with a segmentation 
> fault and asks to report the bug.
> 
> Here are the details:
> 
> I built qt-x11 with gcc-2.95.3-10 (cygwin special); I couldn't get it to 
> compile with gcc 3. I did this by using the cygwin mkspec, but changing 
> to gcc-2 and g++2, by telling it not to use DNS, and not to build the 
> network module. I also forced the OS and WS to UNIX and X11, because qt 
> discovers (using a gcc macro) that it is on cygwin and tries to do a 
> windows build, which fails because you can't do it in the GPL version. 
> So this works, the examples run well. This is a static qt, not a dll. I 
> couldn't build the dll.
> 

If you get this to work, I would like to know how. I have never managed to
built lyx-qt on Cygwin. I always build lyx-xforms.

Best regards,

---Kayvan


Latest CVS Lyx: Much better!

2004-02-03 Thread Kayvan A. Sylvan
The math mode seems to work again (no superscript crash) --- I have
not tested extensively.

I noticed the following:

1) selection does not seem to be giving visual feedback (i.e. I can position
   the cursor and then do SHIFT-down-arrow and BACKSPACE to delete some
   text, but the selection is not highlighted).

2) Clicking on some insets still seems to crash. I have a small example file
   attached. Click on the footnote. LyX crashes.

here is the output on the console:

Redraw screen
*** workAreaDispatch: request:  action: 216 arg: '' x: 439 y: 177
checkInsetHit: x: 439 y: 177
examining inset 0x100b0ed0 xo: 0...8 yo: -12...3
examining inset 0x100aea00 xo: 0...6 yo: -12...3
examining inset 0x100b09d0 xo: 425...453 yo: 167...187
Hit inset: 0x100b09d0
LCursor::push()  inset: 0x100b09d0
InsetText::edit xy

lyx: SIGSEGV signal caught
Sorry, you have found a bug in LyX. Please read the bug-reporting instructions in 
Help-Introduction and send us a bug report, if necessary. Thanks !
Bye.
Aborted (core dumped)

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)
#LyX 1.4.0cvs created this file. For more info see http://www.lyx.org/
\lyxformat 229
\textclass article
\begin_preamble
%
% Set these up.
%
\newcommand{\papertitle}{Qualities of Great Leaders}
\newcommand{\paperauthor}{Kayvan Sylvan}
\newcommand{\paperauthoremail}{\href{mailto:[EMAIL PROTECTED]@synopsys.com}}
\newcommand{\paperdate}{2/1/2004}
\newcommand{\papercoursename}{Motivating IT Professionals}
\newcommand{\papercoursenumber}{TS4032}
%
\usepackage[pdftex,pdftitle={\papertitle},urlcolor=blue,citecolor=blue,linktocpage,letterpaper,colorlinks=true]{hyperref}
%
% fancy page settings
%
\lhead{\emph{\paperauthor} --- \paperdate --- \papercoursenumber}
\chead{}
\rhead{\papertitle}
\renewcommand\headrulewidth{0pt}
%
% extra packages
%
\usepackage{multicol}
\usepackage{url}
\end_preamble
\language english
\inputencoding auto
\fontscheme pslatex
\graphics default
\paperfontsize 12
\spacing single 
\papersize Default
\paperpackage a4
\use_geometry 1
\use_amsmath 1
\use_natbib 1
\use_numerical_citations 0
\paperorientation portrait
\branch titlepage
\selected 1
\color none
\end_branch
\leftmargin 1in
\topmargin 1in
\rightmargin 1in
\bottommargin 1in
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language english
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle fancy
\tracking_changes 0
\end_header

\begin_layout Standard

\end_layout

\begin_layout Section

The Real Shift: Selflessness
\end_layout

\begin_layout Quote


\begin_inset Quotes eld
\end_inset 

The true value of a human being can be found in the degree to which he has
 found liberation from the self.
\begin_inset Quotes erd
\end_inset 

 --- Albert Einstein
\end_layout

\begin_layout Standard

Before any lasting change can occur in beliefs and attitudes, the aspiring
 leader must attain a degree of self understanding that elevates him or
 her above their baser human desires.
 More simply stated: people do not follow a man who is working primarily
 for his own self interest
\begin_inset Foot
status collapsed

\begin_layout Standard

This may in fact explain the observation that most people pay little attention
 to the pronouncements of our elected politicians.
 They know instinctively that these men and women are working for their
 own self aggrandizement instead of the lofty ideals of public service that
 they espouse.
\end_layout

\end_inset 

.
 All great leaders, whether in the realm of politics or business, are driven
 by a passion and a vision greater than themselves.
 They dream great dreams and subsume their whole self in the mission of
 accomplishing their purpose.
 Their selfless dedication is what inspires followers.
 When the focus of an individual's identity shifts from 
\begin_inset Quotes eld
\end_inset 

I
\begin_inset Quotes erd
\end_inset 

 to 
\begin_inset Quotes eld
\end_inset 

the world
\begin_inset Quotes erd
\end_inset 

, it becomes far easier to embody the attitudes and beliefs of transformational
 leadership.
\end_layout

\begin_layout Standard

\end_layout

\end_document


Latest CVS Lyx: Much better!

2004-02-03 Thread Kayvan A. Sylvan
The math mode seems to work again (no superscript crash) --- I have
not tested extensively.

I noticed the following:

1) selection does not seem to be giving visual feedback (i.e. I can position
   the cursor and then do SHIFT-down-arrow and BACKSPACE to delete some
   text, but the selection is not highlighted).

2) Clicking on some insets still seems to crash. I have a small example file
   attached. Click on the footnote. LyX crashes.

here is the output on the console:

Redraw screen
*** workAreaDispatch: request:  action: 216 arg: '' x: 439 y: 177
checkInsetHit: x: 439 y: 177
examining inset 0x100b0ed0 xo: 0...8 yo: -12...3
examining inset 0x100aea00 xo: 0...6 yo: -12...3
examining inset 0x100b09d0 xo: 425...453 yo: 167...187
Hit inset: 0x100b09d0
LCursor::push()  inset: 0x100b09d0
InsetText::edit xy

lyx: SIGSEGV signal caught
Sorry, you have found a bug in LyX. Please read the bug-reporting instructions in 
Help->Introduction and send us a bug report, if necessary. Thanks !
Bye.
Aborted (core dumped)

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)
#LyX 1.4.0cvs created this file. For more info see http://www.lyx.org/
\lyxformat 229
\textclass article
\begin_preamble
%
% Set these up.
%
\newcommand{\papertitle}{Qualities of Great Leaders}
\newcommand{\paperauthor}{Kayvan Sylvan}
\newcommand{\paperauthoremail}{\href{mailto:[EMAIL PROTECTED]@synopsys.com}}
\newcommand{\paperdate}{2/1/2004}
\newcommand{\papercoursename}{Motivating IT Professionals}
\newcommand{\papercoursenumber}{TS4032}
%
\usepackage[pdftex,pdftitle={\papertitle},urlcolor=blue,citecolor=blue,linktocpage,letterpaper,colorlinks=true]{hyperref}
%
% fancy page settings
%
\lhead{\emph{\paperauthor} --- \paperdate --- \papercoursenumber}
\chead{}
\rhead{\papertitle}
\renewcommand\headrulewidth{0pt}
%
% extra packages
%
\usepackage{multicol}
\usepackage{url}
\end_preamble
\language english
\inputencoding auto
\fontscheme pslatex
\graphics default
\paperfontsize 12
\spacing single 
\papersize Default
\paperpackage a4
\use_geometry 1
\use_amsmath 1
\use_natbib 1
\use_numerical_citations 0
\paperorientation portrait
\branch titlepage
\selected 1
\color none
\end_branch
\leftmargin 1in
\topmargin 1in
\rightmargin 1in
\bottommargin 1in
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language english
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle fancy
\tracking_changes 0
\end_header

\begin_layout Standard

\end_layout

\begin_layout Section

The Real Shift: Selflessness
\end_layout

\begin_layout Quote


\begin_inset Quotes eld
\end_inset 

The true value of a human being can be found in the degree to which he has
 found liberation from the self.
\begin_inset Quotes erd
\end_inset 

 --- Albert Einstein
\end_layout

\begin_layout Standard

Before any lasting change can occur in beliefs and attitudes, the aspiring
 leader must attain a degree of self understanding that elevates him or
 her above their baser human desires.
 More simply stated: people do not follow a man who is working primarily
 for his own self interest
\begin_inset Foot
status collapsed

\begin_layout Standard

This may in fact explain the observation that most people pay little attention
 to the pronouncements of our elected politicians.
 They know instinctively that these men and women are working for their
 own self aggrandizement instead of the lofty ideals of public service that
 they espouse.
\end_layout

\end_inset 

.
 All great leaders, whether in the realm of politics or business, are driven
 by a passion and a vision greater than themselves.
 They dream great dreams and subsume their whole self in the mission of
 accomplishing their purpose.
 Their selfless dedication is what inspires followers.
 When the focus of an individual's identity shifts from 
\begin_inset Quotes eld
\end_inset 

I
\begin_inset Quotes erd
\end_inset 

 to 
\begin_inset Quotes eld
\end_inset 

the world
\begin_inset Quotes erd
\end_inset 

, it becomes far easier to embody the attitudes and beliefs of transformational
 leadership.
\end_layout

\begin_layout Standard

\end_layout

\end_document


CVS lyx: insert math inset - crash

2004-02-02 Thread Kayvan A. Sylvan
Fresh CVS lyx compile.
1. Start lyx
2. C-n (New buffer)
3. C-m (Math inset)
lyx crashes

Here is the output on the console:

[EMAIL PROTECTED] ~] lyx
*** workAreaDispatch: request:  action: 216 arg: '' x: 325 y: 217
*** workAreaDispatch: request:  action: 217 arg: '' x: 325 y: 217
*** workAreaDispatch: request:  action: 218 arg: '' x: 325 y: 217
top_y: 0 y: 0
Redraw screen
BufferView::Pimpl::fitCursor.
 LCursor::getPos: x: 56 y: 13
LyXScreen::fitCursor: x: 56 y: 13  top_y: 0
top_y: 0 y: 0
Redraw screen
 LCursor::getPos: x: 56 y: 13
 LCursor::getPos: x: 56 y: 13
trying to dispatch to main text 0x10212b60
Called FormulaBase::edit
LCursor::push()  inset: 0x10215f98
*** MathHullInset: request:  action: 114 arg: 'simple' x: 0 y: 0
Hull: MUTATE: simple
mutating from 'none' to 'simple'
mutating from 'simple' to 'simple'
*** MathHullInset: request:  action: 103 arg: '' x: 0 y: 0
*** MathGridInset: request:  action: 103 arg: '' x: 0 y: 0
*** MathNestInset: request:  action: 103 arg: '' x: 0 y: 0
cursor: 
  (inset: 0 text: 0 idx: 0 par: 0 pos: 0 | inset: 0 text: 0 idx: 0 par: 0 pos: 0
  (inset: 0x10215f98 text: 0 idx: 0 par: 0 pos: 0 | inset: 0x10215f98 text: 0 idx: 0 
par: 0 pos: 0
current: 1

text: 0
this: 0x10212b60
Assertion triggered in CursorSlice LyXText::cursor() by failing check false in file 
../../lyx/src/text.C:1943
Aborted (core dumped)


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


CVS lyx: insert math inset -> crash

2004-02-02 Thread Kayvan A. Sylvan
Fresh CVS lyx compile.
1. Start lyx
2. C-n (New buffer)
3. C-m (Math inset)
lyx crashes

Here is the output on the console:

[EMAIL PROTECTED] ~] lyx
*** workAreaDispatch: request:  action: 216 arg: '' x: 325 y: 217
*** workAreaDispatch: request:  action: 217 arg: '' x: 325 y: 217
*** workAreaDispatch: request:  action: 218 arg: '' x: 325 y: 217
top_y: 0 y: 0
Redraw screen
BufferView::Pimpl::fitCursor.
 LCursor::getPos: x: 56 y: 13
LyXScreen::fitCursor: x: 56 y: 13  top_y: 0
top_y: 0 y: 0
Redraw screen
 LCursor::getPos: x: 56 y: 13
 LCursor::getPos: x: 56 y: 13
trying to dispatch to main text 0x10212b60
Called FormulaBase::edit
LCursor::push()  inset: 0x10215f98
*** MathHullInset: request:  action: 114 arg: 'simple' x: 0 y: 0
Hull: MUTATE: simple
mutating from 'none' to 'simple'
mutating from 'simple' to 'simple'
*** MathHullInset: request:  action: 103 arg: '' x: 0 y: 0
*** MathGridInset: request:  action: 103 arg: '' x: 0 y: 0
*** MathNestInset: request:  action: 103 arg: '' x: 0 y: 0
cursor: 
  (inset: 0 text: 0 idx: 0 par: 0 pos: 0 | inset: 0 text: 0 idx: 0 par: 0 pos: 0
  (inset: 0x10215f98 text: 0 idx: 0 par: 0 pos: 0 | inset: 0x10215f98 text: 0 idx: 0 
par: 0 pos: 0
current: 1

text: 0
this: 0x10212b60
Assertion triggered in CursorSlice& LyXText::cursor() by failing check "false" in file 
../../lyx/src/text.C:1943
Aborted (core dumped)


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: [patch] More IU

2004-01-30 Thread Kayvan A. Sylvan
The lyx crashes situation is better. Thanks.

Lyx still crashes on:

1. C-N (New document)
2. C-M (Insert math inset)
3. type X^Y in the math inset

The ^ causes the crash on some of my machines, but the C-m causes
the crash on my Solaris box.

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: [patch] More IU

2004-01-30 Thread Kayvan A. Sylvan
The lyx crashes situation is better. Thanks.

Lyx still crashes on:

1. C-N (New document)
2. C-M (Insert math inset)
3. type X^Y in the math inset

The "^" causes the crash on some of my machines, but the C-m causes
the crash on my Solaris box.

    ---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


CVS lyx math crash slightly better

2004-01-28 Thread Kayvan A. Sylvan
C-N (new document)
C-M (insert math inset)
6 ^ (at the ^, lyx crashes).

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


CVS lyx math crash slightly better

2004-01-28 Thread Kayvan A. Sylvan
C-N (new document)
C-M (insert math inset)
6 ^ (at the "^", lyx crashes).

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


CVS lyx crash

2004-01-27 Thread Kayvan A. Sylvan
Latest lyx crash:

C-N (new document)
C-M (insert math inset)
lyx crashes


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


CVS lyx crash

2004-01-27 Thread Kayvan A. Sylvan
Latest lyx crash:

C-N (new document)
C-M (insert math inset)
lyx crashes


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Current CVS does not compile

2004-01-26 Thread Kayvan A. Sylvan
g++ -DHAVE_CONFIG_H -I. -I../../../lyx/src/mathed -I../../src 
-I../../../lyx/src/mathed/../ -I../../../lyx/boost -I/usr/X11R6/include -O2 
-fno-exceptions -W -Wall -mms-bitfields -MT formulabase.lo -MD -MP -MF 
.deps/formulabase.Tpo -c ../../../lyx/src/mathed/formulabase.C
../../../lyx/src/mathed/formulabase.C:303:2: warning: #warning FIXME
../../../lyx/src/mathed/formulabase.C:789:2: warning: #warning pretty ugly
../../../lyx/src/mathed/formulabase.C: In function `void 
   mathDispatchCreation(LCursor, const FuncRequest, bool)':
../../../lyx/src/mathed/formulabase.C:862: error: `InsetFormula' undeclared 
   (first use this function)
../../../lyx/src/mathed/formulabase.C:862: error: (Each undeclared identifier 
   is reported only once for each function it appears in.)
../../../lyx/src/mathed/formulabase.C:862: error: `f' undeclared (first use 
   this function)
../../../lyx/src/mathed/formulabase.C:862: error: parse error before `;' token
../../../lyx/src/mathed/formulabase.C:878: error: parse error before `(' token
../../../lyx/src/mathed/formulabase.C: In function `void mathDispatch(LCursor, 
   const FuncRequest)':
../../../lyx/src/mathed/formulabase.C:916: error: cannot convert `
   InsetFormulaMacro*' to `UpdatableInset*' for argument `2' to `bool 
   unnamed::openNewInset(LCursor, UpdatableInset*)'
../../../lyx/src/mathed/formulabase.C:923: error: parse error before `;' token
make[3]: *** [formulabase.lo] Error 1


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: Current CVS does not compile

2004-01-26 Thread Kayvan A. Sylvan
On Mon, Jan 26, 2004 at 05:58:54PM +0100, Lars Gullik Bjønnes wrote:
 Kayvan A. Sylvan [EMAIL PROTECTED] writes:
 
 | g++ -DHAVE_CONFIG_H -I. -I../../../lyx/src/mathed -I../../src 
 -I../../../lyx/src/mathed/../ -I../../../lyx/boost -I/usr/X11R6/include -O2 
 -fno-exceptions -W -Wall -mms-bitfields -MT formulabase.lo -MD -MP -MF 
 .deps/formulabase.Tpo -c ../../../lyx/src/mathed/formulabase.C
 | ../../../lyx/src/mathed/formulabase.C:303:2: warning: #warning FIXME
 | ../../../lyx/src/mathed/formulabase.C:789:2: warning: #warning pretty ugly
 | ../../../lyx/src/mathed/formulabase.C: In function `void 
 |mathDispatchCreation(LCursor, const FuncRequest, bool)':
 | ../../../lyx/src/mathed/formulabase.C:862: error: `InsetFormula' undeclared 
 |(first use this function)
 | ../../../lyx/src/mathed/formulabase.C:862: error: (Each undeclared identifier 
 
 autogen, configure.
 

Thanks. Fixed.
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Current CVS does not compile

2004-01-26 Thread Kayvan A. Sylvan
g++ -DHAVE_CONFIG_H -I. -I../../../lyx/src/mathed -I../../src 
-I../../../lyx/src/mathed/../ -I../../../lyx/boost -I/usr/X11R6/include -O2 
-fno-exceptions -W -Wall -mms-bitfields -MT formulabase.lo -MD -MP -MF 
.deps/formulabase.Tpo -c ../../../lyx/src/mathed/formulabase.C
../../../lyx/src/mathed/formulabase.C:303:2: warning: #warning FIXME
../../../lyx/src/mathed/formulabase.C:789:2: warning: #warning pretty ugly
../../../lyx/src/mathed/formulabase.C: In function `void 
   mathDispatchCreation(LCursor&, const FuncRequest&, bool)':
../../../lyx/src/mathed/formulabase.C:862: error: `InsetFormula' undeclared 
   (first use this function)
../../../lyx/src/mathed/formulabase.C:862: error: (Each undeclared identifier 
   is reported only once for each function it appears in.)
../../../lyx/src/mathed/formulabase.C:862: error: `f' undeclared (first use 
   this function)
../../../lyx/src/mathed/formulabase.C:862: error: parse error before `;' token
../../../lyx/src/mathed/formulabase.C:878: error: parse error before `(' token
../../../lyx/src/mathed/formulabase.C: In function `void mathDispatch(LCursor&, 
   const FuncRequest&)':
../../../lyx/src/mathed/formulabase.C:916: error: cannot convert `
   InsetFormulaMacro*' to `UpdatableInset*' for argument `2' to `bool 
   ::openNewInset(LCursor&, UpdatableInset*)'
../../../lyx/src/mathed/formulabase.C:923: error: parse error before `;' token
make[3]: *** [formulabase.lo] Error 1


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: Current CVS does not compile

2004-01-26 Thread Kayvan A. Sylvan
On Mon, Jan 26, 2004 at 05:58:54PM +0100, Lars Gullik Bjønnes wrote:
> "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes:
> 
> | g++ -DHAVE_CONFIG_H -I. -I../../../lyx/src/mathed -I../../src 
> -I../../../lyx/src/mathed/../ -I../../../lyx/boost -I/usr/X11R6/include -O2 
> -fno-exceptions -W -Wall -mms-bitfields -MT formulabase.lo -MD -MP -MF 
> .deps/formulabase.Tpo -c ../../../lyx/src/mathed/formulabase.C
> | ../../../lyx/src/mathed/formulabase.C:303:2: warning: #warning FIXME
> | ../../../lyx/src/mathed/formulabase.C:789:2: warning: #warning pretty ugly
> | ../../../lyx/src/mathed/formulabase.C: In function `void 
> |mathDispatchCreation(LCursor&, const FuncRequest&, bool)':
> | ../../../lyx/src/mathed/formulabase.C:862: error: `InsetFormula' undeclared 
> |(first use this function)
> | ../../../lyx/src/mathed/formulabase.C:862: error: (Each undeclared identifier 
> 
> autogen, configure.
> 

Thanks. Fixed.
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: makepsres: command not found

2004-01-22 Thread Kayvan A. Sylvan
On Thu, Jan 22, 2004 at 03:46:42PM +0100, Jean-Marc Lasgouttes wrote:
  Kayvan == Kayvan A Sylvan [EMAIL PROTECTED] writes:
 
 Kayvan When I install the RPM, I get this: checking [for cmex10]...
 Kayvan yes (pfb) checking [for cmmi10]... yes (pfb) checking [for
 Kayvan cmr10]... yes (pfb) checking [for cmsy10]... yes (pfb)
 Kayvan checking [for eufm10]... yes (pfb) checking [for msam10]...
 Kayvan yes (pfb) checking [for msbm10]... yes (pfb) checking [for
 Kayvan wasy10]... yes (pfb) ./configure: makepsres: command not found
 
 Kayvan What is makepsres?
 
 Kayvan, I think this is fixed now. Could you check?
 
 JMarc

Yes. It is fixed. Thanks.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: makepsres: command not found

2004-01-22 Thread Kayvan A. Sylvan
On Thu, Jan 22, 2004 at 03:46:42PM +0100, Jean-Marc Lasgouttes wrote:
> >>>>> "Kayvan" == Kayvan A Sylvan <[EMAIL PROTECTED]> writes:
> 
> Kayvan> When I install the RPM, I get this: checking [for cmex10]...
> Kayvan> yes (pfb) checking [for cmmi10]... yes (pfb) checking [for
> Kayvan> cmr10]... yes (pfb) checking [for cmsy10]... yes (pfb)
> Kayvan> checking [for eufm10]... yes (pfb) checking [for msam10]...
> Kayvan> yes (pfb) checking [for msbm10]... yes (pfb) checking [for
> Kayvan> wasy10]... yes (pfb) ./configure: makepsres: command not found
> 
> Kayvan> What is makepsres?
> 
> Kayvan, I think this is fixed now. Could you check?
> 
> JMarc

Yes. It is fixed. Thanks.

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


CVS: LyX click on inset crashes

2004-01-21 Thread Kayvan A. Sylvan
Hi everyone,

Latest LyX:

lyx newfile.lyx
Click Create
Control-L (open a new ERT inset)
type something
Click on the ERT inset
LyX crashes


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


CVS: LyX click on inset crashes

2004-01-21 Thread Kayvan A. Sylvan
Hi everyone,

Latest LyX:

lyx newfile.lyx
Click "Create"
Control-L (open a new ERT inset)
type something
Click on the ERT inset
LyX crashes


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Current CVS lyx: selection does not work

2004-01-20 Thread Kayvan A. Sylvan
You can not select text in the current CVS lyx. Neither hold-left-mouse and
drag nor they keyboard method (shift+arrow keys) work.

Best regards,
---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Current CVS lyx: selection does not work

2004-01-20 Thread Kayvan A. Sylvan
You can not select text in the current CVS lyx. Neither hold-left-mouse and
drag nor they keyboard method (shift+arrow keys) work.

Best regards,
---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Re: new release

2004-01-19 Thread Kayvan A. Sylvan
On Mon, Jan 19, 2004 at 11:02:24AM +0100, Andre Poenitz wrote:
 
 In a long standing tradition on lyx-devel I hereby happily announce a
 new version of the Pönitz hardwares series.
 
 The piece dubbed Bruno was released to the public yesterday. Although
 it is not yet feature-complete (teeth are missing, but will be added in
 due time) the new light-weight architecture (3380g in 49cm) shows great
 potential. Audio in- and output is already working, but seems to use an
 undocumented encryption scheme. Our engineers are working on that. So
 far they've unfortunately come up with completely unrelated proposals
 only, such as replacing the traditional beer fuel with some drug called
 milk. They expect, however, that this change is temporary only and
 expect business as usual before Christmas.
 
 Andre'

Congratulations, Andre!

Have fun. Get sleep when you can. ;-)

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


Re: new release

2004-01-19 Thread Kayvan A. Sylvan
On Mon, Jan 19, 2004 at 11:02:24AM +0100, Andre Poenitz wrote:
> 
> In a long standing tradition on lyx-devel I hereby happily announce a
> new version of the Pönitz hardwares series.
> 
> The piece dubbed "Bruno" was released to the public yesterday. Although
> it is not yet feature-complete (teeth are missing, but will be added in
> due time) the new light-weight architecture (3380g in 49cm) shows great
> potential. Audio in- and output is already working, but seems to use an
> undocumented encryption scheme. Our engineers are working on that. So
> far they've unfortunately come up with completely unrelated proposals
> only, such as replacing the traditional beer fuel with some drug called
> "milk". They expect, however, that this change is temporary only and
> expect "business as usual" before Christmas.
> 
> Andre'

Congratulations, Andre!

Have fun. Get sleep when you can. ;-)

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


CVS LyX: Cursor placement problem

2004-01-16 Thread Kayvan A. Sylvan
Open a lyx document.
Click in the middle of the document.
The following is printed in the console window and the cursor does not move.

insetFromCoords
checkInsetHit: x: 138 y: 267
No inset hit. 
no further inset hit
theTempCursor: 
   ( inset: 0 text: 0 idx: 0 par: 0 pos: 0 |  inset: 0 text: 0 idx: 0 par: 0 pos
: 0

temp cursor is: 
   ( inset: 0 text: 0 idx: 0 par: 0 pos: 0 |  inset: 0 text: 0 idx: 0 par: 0 pos
: 0

dispatching  action: 216 arg: '' x: 138 y: 267 to surrounding LyXText 0x100ac5bc
BufferView::Pimpl::fitCursor.
BufferView::Pimpl::fitCursor.
Redraw screen
insetFromCoords
checkInsetHit: x: 138 y: 267
No inset hit. 
no further inset hit
theTempCursor: 
   ( inset: 0 text: 0 idx: 0 par: 0 pos: 0 |  inset: 0 text: 0 idx: 0 par: 0 pos
: 0

temp cursor is: 
   ( inset: 0 text: 0 idx: 0 par: 0 pos: 0 |  inset: 0 text: 0 idx: 0 par: 0 pos
: 0

dispatching  action: 218 arg: '' x: 138 y: 267 to surrounding LyXText 0x100ac5bc
BufferView::Pimpl::fitCursor.


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


CVS LyX: Cursor placement problem

2004-01-16 Thread Kayvan A. Sylvan
Open a lyx document.
Click in the middle of the document.
The following is printed in the console window and the cursor does not move.

insetFromCoords
checkInsetHit: x: 138 y: 267
No inset hit. 
no further inset hit
theTempCursor: 
   ( inset: 0 text: 0 idx: 0 par: 0 pos: 0 |  inset: 0 text: 0 idx: 0 par: 0 pos
: 0

temp cursor is: 
   ( inset: 0 text: 0 idx: 0 par: 0 pos: 0 |  inset: 0 text: 0 idx: 0 par: 0 pos
: 0

dispatching  action: 216 arg: '' x: 138 y: 267 to surrounding LyXText 0x100ac5bc
BufferView::Pimpl::fitCursor.
BufferView::Pimpl::fitCursor.
Redraw screen
insetFromCoords
checkInsetHit: x: 138 y: 267
No inset hit. 
no further inset hit
theTempCursor: 
   ( inset: 0 text: 0 idx: 0 par: 0 pos: 0 |  inset: 0 text: 0 idx: 0 par: 0 pos
: 0

temp cursor is: 
   ( inset: 0 text: 0 idx: 0 par: 0 pos: 0 |  inset: 0 text: 0 idx: 0 par: 0 pos
: 0

dispatching  action: 218 arg: '' x: 138 y: 267 to surrounding LyXText 0x100ac5bc
BufferView::Pimpl::fitCursor.


-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)


Problem with emphasis (italic) text

2004-01-09 Thread Kayvan A. Sylvan
I have a small lyx file that is causing problems with LaTeX2e.

If I put the following into the preamble, then it works:

\renewcommand\textcolor{}

I have attached the LyX file and the generated tex file.

---Kayvan
-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


w1ex.tex
Description: TeX document
#LyX 1.4.0cvs created this file. For more info see http://www.lyx.org/
\lyxformat 229
\textclass article
\begin_preamble
\usepackage[pdftex,pdftitle={Week One 
Exercise},urlcolor=blue,citecolor=blue,linktocpage,letterpaper,colorlinks=true]{hyperref}
\usepackage{url}
%\renewcommand\textcolor{}
\end_preamble
\language english
\inputencoding auto
\fontscheme pslatex
\graphics default
\paperfontsize 12
\spacing single 
\papersize Default
\paperpackage a4
\use_geometry 1
\use_amsmath 1
\use_natbib 1
\use_numerical_citations 0
\paperorientation portrait
\leftmargin 1in
\topmargin 1in
\rightmargin 1in
\bottommargin 1in
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language english
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes 0
\end_header

\begin_layout Title

Week One Exercise
\end_layout

\begin_layout Date

1/9/2004
\end_layout

\begin_layout Abstract


\color default
Blah blah 
\begin_inset LatexCommand \citet{bennatan00:on_time_within_budget}

\end_inset 

.
\end_layout

\begin_layout Standard


\begin_inset LatexCommand \tableofcontents{}

\end_inset 


\end_layout

\begin_layout Standard


\newpage 

\end_layout

\begin_layout Section

Section
\end_layout

\begin_layout Section

Conclusions
\end_layout

\begin_layout Standard

Summarizing the 
\emph on 
\color None
lessons
\emph default 
\color default
 learned from these projects.
\end_layout

\begin_layout Standard

Blah blah blah.
\end_layout

\begin_layout Standard


\begin_inset ERT
status collapsed

\begin_layout Standard


\backslash 
clearpage
\backslash 
phantomsection
\end_layout

\end_inset 


\begin_inset LatexCommand \bibtex[bibtotoc,apalike]{refs}

\end_inset 


\end_layout

\end_document


www.lyx.org/help link is broken

2004-01-09 Thread Kayvan A. Sylvan
The link to Herbert Voss's pages on www.lyx.org is no longer operational.

The new link appears to be http://latex.s-v-p.de/

-- 
Kayvan A. Sylvan  | Proud husband of   | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | crown of her husband | Robin Gregory (2/28/92)


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