Re: Some minor errors in the new svn repository

2006-02-16 Thread Andre Poenitz
On Sat, Feb 11, 2006 at 10:35:34PM +, Angus Leeming wrote: On Saturday 11 February 2006 21:56, Andre Poenitz wrote: On Sat, Feb 11, 2006 at 10:13:41AM +0100, Michael Gerz wrote: - svn:ignore (similar to .cvsignore) - svn:eol-style (controls eol style when checking out a file) This

Re: Some minor errors in the new svn repository

2006-02-16 Thread Andre Poenitz
On Sat, Feb 11, 2006 at 10:35:34PM +, Angus Leeming wrote: > On Saturday 11 February 2006 21:56, Andre Poenitz wrote: > > On Sat, Feb 11, 2006 at 10:13:41AM +0100, Michael Gerz wrote: > > > - svn:ignore (similar to ".cvsignore") > > > - svn:eol-style (controls eol style when checking out a

Re: Some minor errors in the new svn repository

2006-02-11 Thread Michael Gerz
Angus Leeming wrote: We needed (something like) this because CVS imports text files from the repository and gives them Windows line endings (\r\n) by default. Lars, Angus, Subversion allows to assign properties to files and directories. There are at least three properties types which are

Re: Some minor errors in the new svn repository

2006-02-11 Thread Lars Gullik Bjønnes
Michael Gerz [EMAIL PROTECTED] writes: | - svn:ignore (similar to .cvsignore) We should probably clean this up, and have users of the repo set global-ignores in their configs. For the files that should always be ignored (*.o etc.) | - svn:eol-style (controls eol style when checking out a

Re: Some minor errors in the new svn repository

2006-02-11 Thread Michael Gerz
Lars Gullik Bjønnes wrote: Michael Gerz [EMAIL PROTECTED] writes: | - svn:ignore (similar to .cvsignore) We should probably clean this up, and have users of the repo set global-ignores in their configs. For the files that should always be ignored (*.o etc.) There is a --recursive option

Re: Some minor errors in the new svn repository

2006-02-11 Thread Lars Gullik Bjønnes
Michael Gerz [EMAIL PROTECTED] writes: | Lars Gullik Bjønnes wrote: | | Michael Gerz [EMAIL PROTECTED] writes: | | | - svn:ignore (similar to .cvsignore) | | We should probably clean this up, and have users of the repo set | global-ignores in their configs. For the files that should always be

Re: Some minor errors in the new svn repository

2006-02-11 Thread Lars Gullik Bjønnes
Michael Gerz [EMAIL PROTECTED] writes: | Ok. Even better. Please note that there are four files (+ a lot of | Qt-generated files) that use $Id$ | | ** $Id: qgridview.C,v 1.3 2003/08/23 00:16:39 leeming Exp $ | ** $Id: qttableview.C,v 1.7 2005/04/26 10:30:22 leeming Exp $ | ** $Id: qgridview.h,v

Re: Some minor errors in the new svn repository

2006-02-11 Thread Michael Gerz
Lars Gullik Bjønnes wrote: Michael Gerz [EMAIL PROTECTED] writes: Still. I think we should reserve svn:ignore for special cases, not what should always be ignroed. That shifts responsibility to the user. OTOH, there are only a few (and experienced) users with write access. It is pretty

Re: Some minor errors in the new svn repository

2006-02-11 Thread Angus Leeming
Lars Gullik Bjønnes wrote: | | - svn:eol-style (controls eol style when checking out a file) | | We should be very wary of using anything else than native. | | I agree. But it might be useful in some special cases. (I just wanted | to mention it in case you don't know about this option)

Re: Some minor errors in the new svn repository

2006-02-11 Thread Angus Leeming
Michael Gerz wrote: | Ok. Even better. Please note that there are four files (+ a lot of | Qt-generated files) that use $Id$ Hmm... do the Qt generated file output this? (bad dog) Yes. Which means that we can't do much about it. Regarding the four special files: They look like code from

Re: Some minor errors in the new svn repository

2006-02-11 Thread Lars Gullik Bjønnes
Michael Gerz [EMAIL PROTECTED] writes: | Lars Gullik Bjønnes wrote: | | Michael Gerz [EMAIL PROTECTED] writes: | | Still. I think we should reserve svn:ignore for special cases, not | what should always be ignroed. | | That shifts responsibility to the user. OTOH, there are only a few | (and

Re: Some minor errors in the new svn repository

2006-02-11 Thread Lars Gullik Bjønnes
Angus Leeming [EMAIL PROTECTED] writes: | Could you require configure.ac to have unix-style line endings please | because autoconf just throws up on it otherwise. This is the only file in | the entire repository that appears to need this setting. Do you have any idea what it specifically throws

Re: Some minor errors in the new svn repository

2006-02-11 Thread Angus Leeming
Lars Gullik Bjønnes wrote: | Could you require configure.ac to have unix-style line endings please | because autoconf just throws up on it otherwise. This is the only file | in the entire repository that appears to need this setting. Do you have any idea what it specifically throws up on?

Re: Some minor errors in the new svn repository

2006-02-11 Thread Andre Poenitz
On Sat, Feb 11, 2006 at 10:13:41AM +0100, Michael Gerz wrote: - svn:ignore (similar to .cvsignore) - svn:eol-style (controls eol style when checking out a file) This is a fairly expensive feature. We should just continue current policy of using Unix line endings only. - svn:keywords (controls

Re: Some minor errors in the new svn repository

2006-02-11 Thread Angus Leeming
On Saturday 11 February 2006 21:56, Andre Poenitz wrote: On Sat, Feb 11, 2006 at 10:13:41AM +0100, Michael Gerz wrote: - svn:ignore (similar to .cvsignore) - svn:eol-style (controls eol style when checking out a file) This is a fairly expensive feature. We should just continue current

Re: Some minor errors in the new svn repository

2006-02-11 Thread Michael Gerz
Angus Leeming wrote: We needed (something like) this because CVS imports text files from the repository and gives them Windows line endings (\r\n) by default. Lars, Angus, Subversion allows to assign properties to files and directories. There are at least three properties types which are

Re: Some minor errors in the new svn repository

2006-02-11 Thread Lars Gullik Bjønnes
Michael Gerz <[EMAIL PROTECTED]> writes: | - svn:ignore (similar to ".cvsignore") We should probably clean this up, and have users of the repo set global-ignores in their configs. For the files that should always be ignored (*.o etc.) | - svn:eol-style (controls eol style when checking out a

Re: Some minor errors in the new svn repository

2006-02-11 Thread Michael Gerz
Lars Gullik Bjønnes wrote: Michael Gerz <[EMAIL PROTECTED]> writes: | - svn:ignore (similar to ".cvsignore") We should probably clean this up, and have users of the repo set global-ignores in their configs. For the files that should always be ignored (*.o etc.) There is a --recursive

Re: Some minor errors in the new svn repository

2006-02-11 Thread Lars Gullik Bjønnes
Michael Gerz <[EMAIL PROTECTED]> writes: | Lars Gullik Bjønnes wrote: | | >Michael Gerz <[EMAIL PROTECTED]> writes: | > | >| - svn:ignore (similar to ".cvsignore") | > | >We should probably clean this up, and have users of the repo set | >global-ignores in their configs. For the files that

Re: Some minor errors in the new svn repository

2006-02-11 Thread Lars Gullik Bjønnes
Michael Gerz <[EMAIL PROTECTED]> writes: | Ok. Even better. Please note that there are four files (+ a lot of | Qt-generated files) that use $Id$ | | ** $Id: qgridview.C,v 1.3 2003/08/23 00:16:39 leeming Exp $ | ** $Id: qttableview.C,v 1.7 2005/04/26 10:30:22 leeming Exp $ | ** $Id:

Re: Some minor errors in the new svn repository

2006-02-11 Thread Michael Gerz
Lars Gullik Bjønnes wrote: Michael Gerz <[EMAIL PROTECTED]> writes: Still. I think we should reserve svn:ignore for special cases, not what should always be ignroed. That shifts responsibility to the user. OTOH, there are only a few (and experienced) users with write access. It is pretty

Re: Some minor errors in the new svn repository

2006-02-11 Thread Angus Leeming
Lars Gullik Bjønnes wrote: > | >| - svn:eol-style (controls eol style when checking out a file) > | > > | >We should be very wary of using anything else than native. > | > > | I agree. But it might be useful in some special cases. (I just wanted > | to mention it in case you don't know about this

Re: Some minor errors in the new svn repository

2006-02-11 Thread Angus Leeming
Michael Gerz wrote: >>| Ok. Even better. Please note that there are four files (+ a lot of >>| Qt-generated files) that use $Id$ >>Hmm... do the Qt generated file output this? >>(bad dog) > Yes. Which means that we can't do much about it. Regarding the four > special files: They look like code

Re: Some minor errors in the new svn repository

2006-02-11 Thread Lars Gullik Bjønnes
Michael Gerz <[EMAIL PROTECTED]> writes: | Lars Gullik Bjønnes wrote: | | >Michael Gerz <[EMAIL PROTECTED]> writes: | > | >Still. I think we should reserve svn:ignore for special cases, not | >what should always be ignroed. | > | That shifts responsibility to the user. OTOH, there are only a few

Re: Some minor errors in the new svn repository

2006-02-11 Thread Lars Gullik Bjønnes
Angus Leeming <[EMAIL PROTECTED]> writes: | Could you require configure.ac to have unix-style line endings please | because autoconf just throws up on it otherwise. This is the only file in | the entire repository that appears to need this setting. Do you have any idea what it specifically

Re: Some minor errors in the new svn repository

2006-02-11 Thread Angus Leeming
Lars Gullik Bjønnes wrote: > | Could you require configure.ac to have unix-style line endings please > | because autoconf just throws up on it otherwise. This is the only file > | in the entire repository that appears to need this setting. > > Do you have any idea what it specifically throws up

Re: Some minor errors in the new svn repository

2006-02-11 Thread Andre Poenitz
On Sat, Feb 11, 2006 at 10:13:41AM +0100, Michael Gerz wrote: > - svn:ignore (similar to ".cvsignore") > - svn:eol-style (controls eol style when checking out a file) This is a fairly expensive feature. We should just continue current policy of using Unix line endings only. > - svn:keywords

Re: Some minor errors in the new svn repository

2006-02-11 Thread Angus Leeming
On Saturday 11 February 2006 21:56, Andre Poenitz wrote: > On Sat, Feb 11, 2006 at 10:13:41AM +0100, Michael Gerz wrote: > > - svn:ignore (similar to ".cvsignore") > > - svn:eol-style (controls eol style when checking out a file) > > This is a fairly expensive feature. We should just continue

Some minor errors in the new svn repository

2006-02-10 Thread Jean-Marc Lasgouttes
I did a diff of my cvs lyx-devel and the new svn one. There are a couple of minor problems: *** in build_lyxwin.sh a ^M has been replaced with ^J. This code may not be useful anymore with svn under windows. -- cvs/development/Win32/packaging/build_lyxwin.sh 2005-07-17 23:31:02.

Re: Some minor errors in the new svn repository

2006-02-10 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: | I did a diff of my cvs lyx-devel and the new svn one. There are a | couple of minor problems: | | *** in build_lyxwin.sh a ^M has been replaced with ^J. This code may | not be useful anymore with svn under windows. | | --

Re: Some minor errors in the new svn repository

2006-02-10 Thread Angus Leeming
Lars Gullik Bjønnes [EMAIL PROTECTED] writes: Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: | I did a diff of my cvs lyx-devel and the new svn one. There are a | couple of minor problems: | | *** in build_lyxwin.sh a ^M has been replaced with ^J. This code may | not be useful anymore

Re: Some minor errors in the new svn repository

2006-02-10 Thread Jean-Marc Lasgouttes
Angus == Angus Leeming [EMAIL PROTECTED] writes: Angus The script doesn't know anything about version control. It Angus builds the checked-out sources into a LyX executable. [...] Angus We needed (something like) this because CVS imports text files Angus from the repository and gives them

Re: Some minor errors in the new svn repository

2006-02-10 Thread Georg Baum
Angus Leeming wrote: Lars Gullik Bjønnes [EMAIL PROTECTED] writes: Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: The script doesn't know anything about version control. It builds the checked-out sources into a LyX executable. | -- cvs/development/Win32/packaging/build_lyxwin.sh | +++

Some minor errors in the new svn repository

2006-02-10 Thread Jean-Marc Lasgouttes
I did a diff of my cvs lyx-devel and the new svn one. There are a couple of minor problems: *** in build_lyxwin.sh a ^M has been replaced with ^J. This code may not be useful anymore with svn under windows. -- cvs/development/Win32/packaging/build_lyxwin.sh 2005-07-17 23:31:02.

Re: Some minor errors in the new svn repository

2006-02-10 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | I did a diff of my cvs lyx-devel and the new svn one. There are a | couple of minor problems: | | *** in build_lyxwin.sh a ^M has been replaced with ^J. This code may | not be useful anymore with svn under windows. | | --

Re: Some minor errors in the new svn repository

2006-02-10 Thread Angus Leeming
Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: > Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: > > | I did a diff of my cvs lyx-devel and the new svn one. There are a > | couple of minor problems: > | > | *** in build_lyxwin.sh a ^M has been replaced with ^J. This code may > | not be

Re: Some minor errors in the new svn repository

2006-02-10 Thread Jean-Marc Lasgouttes
> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes: Angus> The script doesn't know anything about version control. It Angus> builds the checked-out sources into a LyX executable. [...] Angus> We needed (something like) this because CVS imports text files Angus> from the repository and

Re: Some minor errors in the new svn repository

2006-02-10 Thread Georg Baum
Angus Leeming wrote: > Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: >> Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: > > The script doesn't know anything about version control. It builds the > checked-out sources into a LyX executable. > >> | --