Re: [fossil-users] crlf-glob

2017-05-16 Thread Arjen Markus

From: fossil-users [mailto:fossil-users-boun...@lists.fossil-scm.org] On Behalf 
Of Stephan Beal
Sent: Tuesday, May 16, 2017 11:09 AM
To: Fossil SCM user's discussion
Subject: Re: [fossil-users] crlf-glob

On Tue, May 16, 2017 at 12:16 AM, Thomas  wrote:
On 2017-05-15 23:09, Warren Young wrote:
On May 15, 2017, at 3:27 PM, Thomas  wrote:

Does it really matter in the 21st century if a line is terminated by CR, LF, or 
CR/LF anymore?

Notepad.exe in Windows 10 Creator's Edition still only works properly with 
CR+LF.  Since that's the default handler for *.txt on Windows, yes, line ending 
type still matters for any cross-platform project.

So, after editing a file that belongs to your project with Notepad on Windows, 
would you expect an SCM complaining about it when you commit?

I wouldn't.


Real-life case: a developer on a banking project i worked on edited a shell 
script with notepad and checked it in (without having tested it). The SCM did 
not complain about Notepad-injected \r characters. After deployment on the live 
system this script started exiting with "bad interpreter". The reason, which we 
discovered only after opening the script in Emacs, which shows \r as ^M, was 
that notepad had mangled it, changing the first line to:

#!/bin/sh^M

The ^M (\r) is just another character for most Unix tools, and the system was 
treating the \r as part of the shell's name, which of course didn't work.


Warning: one of my favourite complaints ahead ...
Well, actually it gets worse. The CRLF is interpreted as a line separator, not 
an end-of-line marker. The last line may therefore miss that marker. So there 
is no distinction between a "complete" file and a truncated file.

And then there is the BOM, which editors on Windows sometimes insert ...

Regards,

Arjen
DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] visual studio solution and project file for fossil

2016-10-06 Thread Arjen Markus
Hi Kevin,



Well, it may have been me as well who misread it :).



Regards,



Arjen



> -Original Message-
> From: fossil-users [mailto:fossil-users-boun...@lists.fossil-scm.org] On 
> Behalf Of
> arnoldemu
> Sent: Wednesday, October 05, 2016 8:14 PM
> To: fossil-users@lists.fossil-scm.org
> Subject: Re: [fossil-users] visual studio solution and project file for fossil
>
>
> > Fossil's primary use is to keep track of changes in your files, it is not a 
> > build
> system perse. If you want to use Visual Studio, why not use something like 
> CMake:
>
> Hi Arjun,
>
> Thankyou for your reply. Sorry but after reading back my question I don't 
> think I
> worded it well and I didn't make it clear about what I wanted.
>
> I want to build fossil itself because I want to patch it and hopefully submit 
> my
> patches for review.
>
> I see that fossil can be built with a batch file "buildmsvc.bat" which uses 
> the
> command-line visual studio compiler. It uses some kind of custom build where 
> the
> headers which are needed are added to the files and output into a separate
> directory. I don't really understand fully how this works and is a guess from 
> what I
> have seen so far.
>
> I want to make a solution for fossil so I can build fossil under visual 
> studio itself
> from the IDE itself. I can then use the IDE's debugger. I tried to add all 
> the source
> files from inside the src directory but that didn't work. So I then ran the 
> batch file,
> waited for it to build and then used the source files from the msvcbld and 
> that didn't
> seem to work either.
>
> So I have failed so far and wondered if anyone has made a solution and if 
> they did,
> how did they do it?
>
> The second question was:
> - Is there a way I can modify (or pass a parameter) to the buildmsvc.bat to 
> make a
> "debug" build without the compiler doing optimisations and with it generating 
> a
> debug pdb. I could also debug fossil from within visual studio this way.
>
> Thanks
>
> Kevin
>
>
> ___
> fossil-users mailing list
> fossil-users@lists.fossil-scm.org
> http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] visual studio solution and project file for fossil

2016-10-05 Thread Arjen Markus
Fossil's primary use is to keep track of changes in your files, it is not a 
build system perse. If you want to use Visual Studio, why not use something 
like CMake: that can generate VS files from the description of your programs 
(CMakeLists.txt files and the like or plain Makefiles if you prefer them). 
These CMake files can in turn be maintained with Fossil, just as source code.



Regards,



Arjen



From: fossil-users [mailto:fossil-users-boun...@lists.fossil-scm.org] On Behalf 
Of arnoldemu
Sent: Wednesday, October 05, 2016 8:59 AM
To: fossil-users@lists.fossil-scm.org
Subject: [fossil-users] visual studio solution and project file for fossil

Hi

I am not familiar enough with the fossil build system so I hope somebody can 
answer these questions.

Is there a way to generate a visual studio solution and project file from the 
fossil source which I can then load up in visual studio 2015 community edition?

Or an alternative: is there a way to generate a debug build with pdbs which I 
can debug through visual studio?

I used to using visual studio for debugging and it would help me to finish my 
gmerge patch.

Thank you

Kevin


DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited. 
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Looking for guinea pig to test Makefile.msc changes

2013-01-24 Thread Arjen Markus

Hi Stephan,

I just tried it:
- two syntax errors - !if FOSSIL_ENABLE_JSON should
  be !ifdef FOSSIL_ENABLE_JSON
  (likewise FOSSIL_ENABLE_MARKDOWN)

After correcting these, nmake runs fine. I do get two
warnings about locally imported symbols - malloc and free
somewhere in zlib. Annoying messages that I can never
really understand.

This is with MSVC/C++ version 16 (MicroSoft Visual Studio 
2010), 32-bits mode. The fossil executable seems to be 
working fine.


Regards,

Arjen

On Thu, 24 Jan 2013 15:30:02 +0100
 Stephan Beal sgb...@googlemail.com wrote:

Hello, list,

Attached (assuming the list lets it through) is a 
replacement for
win/Makefile.msc, containing patches from Rudi and Tim 
for enabling JSON
support, which i would like to commit but would also 
like to see tested
before i commit it. i'm looking for someone with Windows 
who can try to
replace their existing Makefile.msc with this one and 
see if it still

builds.

Any volunteers?

JSON and Markdown are off by default but can be enabled 
by either:


Uncommenting these lines:
# Uncomment to enable JSON API
# FOSSIL_ENABLE_JSON = 1
# Uncomment to enable markdown support
# FOSSIL_ENABLE_MARKDOWN = 1

Or (theoretically) setting those macros on the command 
line (i have no idea

how that's done in nmake).

If someone can verify that i haven't broken the nmake 
file then i'll get

this committed.

Before trying it, please update to the latest trunk 
because this file also
takes advantage of a minor new change in 
cson_amalgamation.h.


:-?

PS: gmail tells me that Makefile.msc is an executable 
file and refuses to
send it for security reasons, so the file has been 
renamed with a .txt

extension. Please re-name it before trying.

--
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal





DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Help improve bot exclusion

2012-10-30 Thread Arjen Markus

On Tue, 30 Oct 2012 06:17:05 -0400
 Richard Hipp d...@sqlite.org wrote:



This two-phase defense against bots is usually 
effective.  But last night,
a couple of bots got through on the SQLite website.  No 
great damage was
done as we have ample bandwidth and CPU reserves to 
handle this sort of
thing.  Even so, I'd like to understand how they got 
through so that I

might improve Fossil's defenses.

The first run on the SQLite website originated in 
Chantilly, VA and gave a

USER_AGENT string as follows:

   Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; 
WOW64; Trident/5.0;
SLCC2; .NET_CLR 2.0.50727; .NET_CLR 3.5.30729; .NET_CLR 
3.0.30729;
Media_Center_PC 6.0; .NET4.0C; WebMoney_Advisor; 
MS-RTC_LM_8)


The second run came from Berlin and gives this 
USER_AGENT:


   Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)

Both sessions started out innocently.  The logs suggest 
that there really
was a human operator initially.  But then after about 3 
minutes of normal
browsing, each session starts downloading every 
hyperlink in sight at a
rate of about 5 to 10 pages per second.  It is as if the 
user had pressed a
Download Entire Website button on their browser. 
Question:  Is there

such a button in IE?


I just tried it: you can save a URL as a single web page 
or a web archive (extension .wht,
whatever that means). So it seems quite possible - and it 
appears to be the default when

using save as.

This was with IE 8.

Regards,

Arjen



DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Wildcards not working on windows

2011-09-26 Thread Arjen Markus

Hi Emil,

what you are missing is that it is not fossil itself that expands
the wildcard, but the shell in which you invoke it. On Linux (UNIX, ...)
the shell, Bourne shell or otherwise, expands the wildcard into a
list of file names and fossil simply picks up the expanded names.

On Windows nothing of the sort happens. Each program is itself
responsible for dealing with the arguments.

Regards,

Arjen

On 2011-09-26 12:34, Emil Totev wrote:

Hi
This is fossil version 1.19 [6517b5c857] 2011-09-01 18:25:19 UTC
on Windows 7 SP1

fossil add *
D:\utils\programs\fossil.exe: file not found D:/TEMP/proj/*

Files are of course there, but it seems the wrong path separator is used (/).
The same works OK with
This is fossil version 1.18 [df9da91ba8] 2011-07-13 23:03:41 UTC

Are there really so few people using fossil on Windows or am I missing
something?

Emil
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users




DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Needed: volunteer to autoconf Fossil

2011-06-15 Thread Arjen Markus
Hello Graeme,

On 2011-06-15 11:04, Graeme Gill wrote:
 Michal Suchanek wrote:
 Autotools can be installed and operated on Windows like most other
 build configuration systems.
 
 I'm not sure that's possible without installing a UNIX like shell
 and set of tools. This is rather foreign for a native MSWin developer.
 

You're quite right - it requires something like winbash, MSYS or
Cygwin to be installed on the system. It is certainly not something
the typical Windows developer would have.

Regards,

Arjen
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] CRNL warning: how svn does it

2011-06-08 Thread Arjen Markus
Hi Stephan,

thanks for sharing this - I have had problems with SVN myself, like
tree conflicts and other fun stuff, and then you are left out in the
cold ...

Regards,

Arjen

On 2011-06-08 11:05, Stephan Beal wrote:
 Hello, Fossilers,
 
 i know that some of you/us have been occasionally annoyed by the warning 
 File XYZ has CR/NL. Continue? prompt, but i just saw (for the first 
 time in 10 years of use) how Subversion (mis)handles this, and wanted to 
 share it:
 
  
 stephan@host:/...$ svn ci -m More files from the server-side Contenido 
 upgrade.
 Sending...
 Transmitting file data .svn: Commit failed (details follow):
 svn: While preparing '/.../errorlog.txt' for commit
 svn: Inconsistent line ending style
 
 And then it simply exits.
 
 -- 
 - stephan beal
 http://wanderinghorse.net/home/stephan/
 
 
 
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Questions about the settings command

2011-05-28 Thread Arjen Markus
Hi Richard,

thanks, that clarifies things - I will use this to
update the online documentation.

Regards,

Arjen

On Fri, 27 May 2011 10:50:30 -0400
  Richard Hipp d...@sqlite.org wrote:
 On Fri, May 27, 2011 at 3:01 AM, Arjen Markus 
arjen.mar...@deltares.nlwrote:
 
 Hello,

 I am (slowly) adapting the online help, trying to 
clarify the concepts
 that fossil uses and to accommodate the online help for 
both novice
 intermediate users.

 I came across a few things that are not quite clear to 
me in the
 settings command. So, if someone can enlighten me, I 
would
 appreciate that:

 - auto-shun: What is meant by shunning in this 
context?

 
 http://www.fossil-scm.org/fossil/doc/trunk/www/shunning.wiki
 
 

 - mtime-changes: If it is turned off, what does fossil 
do then?
  Compare the contents (which will have 
an impact
  on performance no doubt)?

 
 Correct.  With mtime-changes off, Fossil compares the 
files byte-by-byte to
 see if they have changed.  That works ok for smaller 
projects, but slows
 things down when you start to get into thousands of 
files.
 
 

 The flag -global for the settings command seems a bit 
out of
 sync with the other options: wouldn't --global be more 
appropriate?

 
Fossil ignores the number of - before an option.  One 
or two work the
 same.  For consistency in the documentation, change 
-global to --global.
 
 

 Regards,

 Arjen


 DISCLAIMER: This message is intended exclusively for the 
addressee(s) and
 may contain confidential and privileged information. If 
you are not the
 intended recipient please notify the sender immediately 
and destroy this
 message. Unauthorized use, disclosure or copying of this 
message is strictly
 prohibited.
 The foundation 'Stichting Deltares', which has its seat 
at Delft, The
 Netherlands, Commercial Registration Number 41146461, is 
not liable in any
 way whatsoever for consequences and/or damages resulting 
from the improper,
 incomplete and untimely dispatch, receipt and/or content 
of this e-mail.




 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

 
 
 
 -- 
 D. Richard Hipp
 d...@sqlite.org

 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] Questions about the settings command

2011-05-27 Thread Arjen Markus
Hello,

I am (slowly) adapting the online help, trying to clarify the concepts
that fossil uses and to accommodate the online help for both novice
intermediate users.

I came across a few things that are not quite clear to me in the
settings command. So, if someone can enlighten me, I would
appreciate that:

- auto-shun: What is meant by shunning in this context?

- mtime-changes: If it is turned off, what does fossil do then?
  Compare the contents (which will have an impact
  on performance no doubt)?

The flag -global for the settings command seems a bit out of
sync with the other options: wouldn't --global be more appropriate?

Regards,

Arjen
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] Issue in adding files

2011-05-03 Thread Arjen Markus
Hello,

I ran into a small issue while adding two files to my repository,
using a somewhat old version of fossil, so it may be that the problem
has already been solved. Anyway, here is the scenario:

fossil add filea fileb

where filea is the name of an existing file and fileb contains a typo,
so fossil is quite right in complaining about that one. However, the
message is something like:

ADDED: filea
fileb not found ...

This looks as if filea was added and fileb was not. So, subsequently
I did:

fossil add fileb_correct

And then I did:

fossil commit

The list of files that were modified or added did NOT include filea!
The fact that fileb was an invalid name nullified the addition of filea
to the repository despite the message on the screen. As there was no
indication at all of this, I thought filea was in fact added.

Regards,

Arjen
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] Editing commit messages

2011-04-18 Thread Arjen Markus
Hello,

I have a few comments (and not realy much more than that) on the
way Fossil implements the editing of commit messages:

- I noticed that the choice of editor seems to be a global setting
   in the repository. At least, that is the behaviour I observe
   with one repository (but that may be peculiar to that particular
   project). As editors are a highly personal choice, I would expect
   this to be a user-defined setting.

- I noticed that when I compile Fossil for MinGW, the default editor
   is not notepad in the absence of EDITOR etc. environment variables,
   but a command-line interface. I think notepad, whatever you think
   of it, would be a more natural choice.

- As I mostly work on Windows, my editor is set to write CR/LF
   line-endings. If I commit files that I forgot to save with LF
   line-endings, I get a question about this - but only for the
   first file. If I then break off the commit, repair this and try
   again, a message follows about the next file.

   Would it be possible to simply scan all the files to be committed
   and present a list of files that have a CR/LF issue, so that you
   can repair all of them at once?

Regards,

Arjen

 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Editing commit messages

2011-04-18 Thread Arjen Markus
Hi Konstantin, Martin,

like I said it may be the way I use this one repository in cooperation
with one other developer. It is no problem for me at the moment, I can
work my way around it ;).

As for environment variables, I have no trouble setting them, but I do
forget them from time to time. Again not something that deeply troubles
me.

Regards,

Arjen

On 2011-04-18 15:23, Konstantin Khomoutov wrote:
 On Mon, 18 Apr 2011 09:11:04 -0400
 Martin Gagnon eme...@gmail.com wrote:
 
 I have a few comments (and not realy much more than that) on the
 way Fossil implements the editing of commit messages:

 - I noticed that the choice of editor seems to be a global setting
   in the repository. At least, that is the behaviour I observe
   with one repository (but that may be peculiar to that particular
   project). As editors are a highly personal choice, I would expect
   this to be a user-defined setting.
 if you call fossil settings from outside a checkouted repository, or
 if you specify -global to the settings subcommand, it will be saved
 globally for the current user..

 it is saved on a $HOME/.fossil on unix sytem and on
 %HOME%\AppData\_fossil on windows (or something like that)
 Heh, exactly what I discovered right now looking at the contents of
 that _fossil config file and was about to post. ;-)
 Thanks for correcting.
 
 To be more precise, on Windows it's %appdata%\_fossil.
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Editing commit messages

2011-04-18 Thread Arjen Markus
Hi Konstantin,

On 2011-04-18 16:26, Konstantin Khomoutov wrote:
 On Mon, 18 Apr 2011 15:59:41 +0200
 Arjen Markus arjen.mar...@deltares.nl wrote:
 

 Sorry, but I'm somewhat lost now.
 
 I interpreted your original question as that you were asking if it
 would be feasible to implement per-user settings in fossil to set the
 commit message editor.  We then figured out that what are called
 global settings in fossil are, in fact, per-user settings so you
 could set your preferred editor using
 
 C:\ fossil set editor notepad.exe -global
 
 This setting would update your personal %appdata%\_fossil file which
 does not affect other developers and it is global in the sense that it
 applies to all your fossil repositories.
 
 What do you need to work around then?

You are right - nothing, I am a bit slow today ;).

I will try this solution.

Regards,

Arjen
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] Building fossil on Windows with MinGW - dependency on libz

2011-03-18 Thread Arjen Markus
Hello,

I have built fossil on Windows (XP) using MinGW and the gcc compiler.
That works fine, except that the resulting executable depends on
the libz-1.dll that is located in the MinGW bin directory.

This means such an executable will not work if that DLL is not in
the path (or one of the other locations for DLLs).

Would it not be better to link against the static/archive version
of libz?

Regards,

Arjen
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Building fossil on Windows with MinGW - dependency on libz

2011-03-18 Thread Arjen Markus
Hi Richard,

On 2011-03-18 12:49, Richard Hipp wrote:

 
 I link the precompiled binaries on the website against libz.a so that 
 there is no dependency.  I don't have a libz.dll anywhere on my system.
  

Hm, I installed libz and zlib (not quite sure what the relationship is
and I always mix them up), and that gave me both an archive version and
and a DLL version of libz (called libz-1.dll).

As Mark suggests, forcing a link against static libraries seems the way
to go.

Regards,

Arjen
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Corrupted database

2010-08-24 Thread Arjen Markus
Hi Richard,

fossil version reports:
[d090292800] 2010-08-05 10:09:43 UTC

The strange thing is that if I use fossil at home (I am working on a 
laptop), it works fine, but then it is not plugged into the network.
If I use fossil at work (with the laptop connected to the local
network), it invariably comes up with this error message!

Indeed, I just tested this hypothesis:
If the laptop is started without a network connection, all is well.

Regards,

Arjen


On 2010-08-23 17:04, Richard Hipp wrote:
 Are you using the latest version of Fossil?  What does fossil version 
 tell you?
 
 On Mon, Aug 23, 2010 at 10:51 AM, Arjen Markus arjen.mar...@deltares.nl 
 mailto:arjen.mar...@deltares.nl wrote:
 
 Hi,
 
 some further information: I am cooperating in this project with Torsten
 Berg and he was able to handle the repository I was not. He made a few
 changes, sent it back and ... I can not handle the new one either!
 
 I have no idea what is going wrong. Maybe restart the computer and
 try again?
 
 Regards,
 
 Arjen
 
 On 2010-08-23 14:11, Richard Hipp wrote:
   Please run
  
   sqlite3 repository-name.fossil 'pragma integrity_check'
  
   on your repository database file and post the results.
  
   On Mon, Aug 23, 2010 at 7:30 AM, Arjen Markus
 arjen.mar...@deltares.nl mailto:arjen.mar...@deltares.nl
   mailto:arjen.mar...@deltares.nl
 mailto:arjen.mar...@deltares.nl wrote:
  
   Hello,
  
   I have got an answer to my first question now (logging in as
 a different
   user), but it turns out that my fossil database has been
 corrupted.
   That is: whatever I do I get a message SQLITE_CANTOPEN (at
 line 31151)
   from fossil.
  
   I can see the Wiki, but I can not commit, add, open, ...
  
   Any suggestions?
  
   Regards,
  
   Arjen
  
  
   DISCLAIMER: This message is intended exclusively for the
   addressee(s) and may contain confidential and privileged
   information. If you are not the intended recipient please
 notify the
   sender immediately and destroy this message. Unauthorized use,
   disclosure or copying of this message is strictly prohibited.
   The foundation 'Stichting Deltares', which has its seat at Delft,
   The Netherlands, Commercial Registration Number 41146461, is not
   liable in any way whatsoever for consequences and/or damages
   resulting from the improper, incomplete and untimely dispatch,
   receipt and/or content of this e-mail.
  
  
  
  
   ___
   fossil-users mailing list
   fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
   mailto:fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
  
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
  
  
  
  
   --
   D. Richard Hipp
   d...@sqlite.org mailto:d...@sqlite.org mailto:d...@sqlite.org
 mailto:d...@sqlite.org
  
  
  
 
  
   ___
   fossil-users mailing list
   fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
  
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 
 
 DISCLAIMER: This message is intended exclusively for the
 addressee(s) and may contain confidential and privileged
 information. If you are not the intended recipient please notify the
 sender immediately and destroy this message. Unauthorized use,
 disclosure or copying of this message is strictly prohibited.
 The foundation 'Stichting Deltares', which has its seat at Delft,
 The Netherlands, Commercial Registration Number 41146461, is not
 liable in any way whatsoever for consequences and/or damages
 resulting from the improper, incomplete and untimely dispatch,
 receipt and/or content of this e-mail.
 
 
 
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 
 
 
 
 -- 
 D. Richard Hipp
 d...@sqlite.org mailto:d...@sqlite.org
 
 
 
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you

Re: [fossil-users] Corrupted database

2010-08-24 Thread Arjen Markus
Hi Saul,

see my reply to Richard Hipp: it has something to do with the network
that the laptop I am using is connected to or not.

Regards,

Arjen

On 2010-08-23 17:56, saulgo...@flashingtwelve.brickfilms.com wrote:
 Quoting Arjen Markus arjen.mar...@deltares.nl:
 
 Hi,

 some further information: I am cooperating in this project with Torsten
 Berg and he was able to handle the repository I was not. He made a few
 changes, sent it back and ... I can not handle the new one either!

 I have no idea what is going wrong. Maybe restart the computer and
 try again?
 
 A while back I was experiencing similar symptoms and the problem was  
 with my access permissions to the repository. I have since taken to  
 creating a 'fossil' group (I'm on GNU/Linux) and authorizing everyone  
 in that group access to the common repositories.
 
 -rw-rw-r-- 1 saul  fossil   276480 2010-07-21 01:34 devilspie.fossil
 -rw-rw-r-- 1 saul  fossil  2213888 2010-07-25 05:03 fossil.fossil
 -rw-rw-r-- 1 david fossil 55362560 2010-08-23 10:57 oggap.fossil
 -rw-rw-r-- 1 root  fossil   104448 2010-08-11 01:47 pkgusr.fossil
 -rw-rw-r-- 1 saul  fossil 33495040 2010-08-03 11:54 reva.fossil
 -rw-rw-r-- 1 saul  fossil   138240 2010-08-18 10:58 script-fu.fossil
 -rw-rw-r-- 1 saul  fossil   787456 2010-07-18 17:18 uwm.fossil
 
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Corrupted database

2010-08-24 Thread Arjen Markus
Hi,

some more information:
If I try to create a completely new repository, the repository itself
is created, but I get the same error message. That is, when the laptop
is connected to the local network.

I have seen another strange thing with this laptop that may be
related - it is unable to store some configuration information for one 
program I use. I have no such problems with another PC where I use
that same program.

Not sure if this gives any more clues as to what is going on.

Regards,

Arjen

On 2010-08-24 08:46, Arjen Markus wrote:
 Hi Richard,
 
 fossil version reports:
 [d090292800] 2010-08-05 10:09:43 UTC
 
 The strange thing is that if I use fossil at home (I am working on a 
 laptop), it works fine, but then it is not plugged into the network.
 If I use fossil at work (with the laptop connected to the local
 network), it invariably comes up with this error message!
 
 Indeed, I just tested this hypothesis:
 If the laptop is started without a network connection, all is well.
 
 Regards,
 
 Arjen
 
 
 On 2010-08-23 17:04, Richard Hipp wrote:
 Are you using the latest version of Fossil?  What does fossil version 
 tell you?

 On Mon, Aug 23, 2010 at 10:51 AM, Arjen Markus arjen.mar...@deltares.nl 
 mailto:arjen.mar...@deltares.nl wrote:

 Hi,

 some further information: I am cooperating in this project with Torsten
 Berg and he was able to handle the repository I was not. He made a few
 changes, sent it back and ... I can not handle the new one either!

 I have no idea what is going wrong. Maybe restart the computer and
 try again?

 Regards,

 Arjen

 On 2010-08-23 14:11, Richard Hipp wrote:
   Please run
  
   sqlite3 repository-name.fossil 'pragma integrity_check'
  
   on your repository database file and post the results.
  
   On Mon, Aug 23, 2010 at 7:30 AM, Arjen Markus
 arjen.mar...@deltares.nl mailto:arjen.mar...@deltares.nl
   mailto:arjen.mar...@deltares.nl
 mailto:arjen.mar...@deltares.nl wrote:
  
   Hello,
  
   I have got an answer to my first question now (logging in as
 a different
   user), but it turns out that my fossil database has been
 corrupted.
   That is: whatever I do I get a message SQLITE_CANTOPEN (at
 line 31151)
   from fossil.
  
   I can see the Wiki, but I can not commit, add, open, ...
  
   Any suggestions?
  
   Regards,
  
   Arjen
  
  
   DISCLAIMER: This message is intended exclusively for the
   addressee(s) and may contain confidential and privileged
   information. If you are not the intended recipient please
 notify the
   sender immediately and destroy this message. Unauthorized use,
   disclosure or copying of this message is strictly prohibited.
   The foundation 'Stichting Deltares', which has its seat at Delft,
   The Netherlands, Commercial Registration Number 41146461, is not
   liable in any way whatsoever for consequences and/or damages
   resulting from the improper, incomplete and untimely dispatch,
   receipt and/or content of this e-mail.
  
  
  
  
   ___
   fossil-users mailing list
   fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
   mailto:fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
  
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
  
  
  
  
   --
   D. Richard Hipp
   d...@sqlite.org mailto:d...@sqlite.org mailto:d...@sqlite.org
 mailto:d...@sqlite.org
  
  
  
 
  
   ___
   fossil-users mailing list
   fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
  
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


 DISCLAIMER: This message is intended exclusively for the
 addressee(s) and may contain confidential and privileged
 information. If you are not the intended recipient please notify the
 sender immediately and destroy this message. Unauthorized use,
 disclosure or copying of this message is strictly prohibited.
 The foundation 'Stichting Deltares', which has its seat at Delft,
 The Netherlands, Commercial Registration Number 41146461, is not
 liable in any way whatsoever for consequences and/or damages
 resulting from the improper, incomplete and untimely dispatch,
 receipt and/or content of this e-mail.




 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org

Re: [fossil-users] Corrupted database

2010-08-24 Thread Arjen Markus
Hi,

the problem has been solved, thanks to Sergey Sfeli in a private mail.

It turns out that the environment variables HOMEDRIVE and HOMEPATH are
pointing to an unuseable path. If I set them to a local disk and
directory, fossil does its job without complaints.

Regards,

Arjen

On 2010-08-24 10:05, Arjen Markus wrote:
 Hi,
 
 some more information:
 If I try to create a completely new repository, the repository itself
 is created, but I get the same error message. That is, when the laptop
 is connected to the local network.
 
 I have seen another strange thing with this laptop that may be
 related - it is unable to store some configuration information for one 
 program I use. I have no such problems with another PC where I use
 that same program.
 
 Not sure if this gives any more clues as to what is going on.
 
 Regards,
 
 Arjen
 
 On 2010-08-24 08:46, Arjen Markus wrote:
 Hi Richard,

 fossil version reports:
 [d090292800] 2010-08-05 10:09:43 UTC

 The strange thing is that if I use fossil at home (I am working on a 
 laptop), it works fine, but then it is not plugged into the network.
 If I use fossil at work (with the laptop connected to the local
 network), it invariably comes up with this error message!

 Indeed, I just tested this hypothesis:
 If the laptop is started without a network connection, all is well.

 Regards,

 Arjen


 On 2010-08-23 17:04, Richard Hipp wrote:
 Are you using the latest version of Fossil?  What does fossil version 
 tell you?

 On Mon, Aug 23, 2010 at 10:51 AM, Arjen Markus arjen.mar...@deltares.nl 
 mailto:arjen.mar...@deltares.nl wrote:

 Hi,

 some further information: I am cooperating in this project with Torsten
 Berg and he was able to handle the repository I was not. He made a few
 changes, sent it back and ... I can not handle the new one either!

 I have no idea what is going wrong. Maybe restart the computer and
 try again?

 Regards,

 Arjen

 On 2010-08-23 14:11, Richard Hipp wrote:
   Please run
  
   sqlite3 repository-name.fossil 'pragma integrity_check'
  
   on your repository database file and post the results.
  
   On Mon, Aug 23, 2010 at 7:30 AM, Arjen Markus
 arjen.mar...@deltares.nl mailto:arjen.mar...@deltares.nl
   mailto:arjen.mar...@deltares.nl
 mailto:arjen.mar...@deltares.nl wrote:
  
   Hello,
  
   I have got an answer to my first question now (logging in as
 a different
   user), but it turns out that my fossil database has been
 corrupted.
   That is: whatever I do I get a message SQLITE_CANTOPEN (at
 line 31151)
   from fossil.
  
   I can see the Wiki, but I can not commit, add, open, ...
  
   Any suggestions?
  
   Regards,
  
   Arjen
  
  
   DISCLAIMER: This message is intended exclusively for the
   addressee(s) and may contain confidential and privileged
   information. If you are not the intended recipient please
 notify the
   sender immediately and destroy this message. Unauthorized use,
   disclosure or copying of this message is strictly prohibited.
   The foundation 'Stichting Deltares', which has its seat at Delft,
   The Netherlands, Commercial Registration Number 41146461, is not
   liable in any way whatsoever for consequences and/or damages
   resulting from the improper, incomplete and untimely dispatch,
   receipt and/or content of this e-mail.
  
  
  
  
   ___
   fossil-users mailing list
   fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
   mailto:fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
  
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
  
  
  
  
   --
   D. Richard Hipp
   d...@sqlite.org mailto:d...@sqlite.org mailto:d...@sqlite.org
 mailto:d...@sqlite.org
  
  
  
 
  
   ___
   fossil-users mailing list
   fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
  
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


 DISCLAIMER: This message is intended exclusively for the
 addressee(s) and may contain confidential and privileged
 information. If you are not the intended recipient please notify the
 sender immediately and destroy this message. Unauthorized use,
 disclosure or copying of this message is strictly prohibited.
 The foundation 'Stichting Deltares', which has its seat at Delft,
 The Netherlands, Commercial Registration Number 41146461, is not
 liable in any way

[fossil-users] Two minor issues

2010-08-23 Thread Arjen Markus
Hello,

I have been using fossil the past couple of days and noticed two
small issues:

- I logged in as a different user using a local repository than the
   default one to check if that worked and saw the original user name on
   the browser page. That made me a bit certain as to whether I was
   logged in as that other user or not.

- If I run the command fossil ui (so without the name of the
   repository) the error message relates to SQLite not being able to
   open the database, rather than a more obvious message like you did
   not specify what repository!

Regards,

Arjen
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] Corrupted database

2010-08-23 Thread Arjen Markus
Hello,

I have got an answer to my first question now (logging in as a different
user), but it turns out that my fossil database has been corrupted.
That is: whatever I do I get a message SQLITE_CANTOPEN (at line 31151)
from fossil.

I can see the Wiki, but I can not commit, add, open, ...

Any suggestions?

Regards,

Arjen
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Two minor issues

2010-08-23 Thread Arjen Markus
Hello

On 2010-08-23 09:42, Arjen Markus wrote:
 Hello,
 
 I have been using fossil the past couple of days and noticed two
 small issues:
 
 - I logged in as a different user using a local repository than the
default one to check if that worked and saw the original user name on
the browser page. That made me a bit certain as to whether I was
logged in as that other user or not.

This one is solved: the Admin/Access page holds the answer.

 
 - If I run the command fossil ui (so without the name of the
repository) the error message relates to SQLite not being able to
open the database, rather than a more obvious message like you did
not specify what repository!
 

Just a minor nuisance that should be easy to fix ;).

Regards,

Arjen
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Corrupted database

2010-08-23 Thread Arjen Markus
Hi Richard,

odd, sqlite3 reports ok, but fossil comes up with:

fossil: SQLITE_CANTOPEN: cannot open file at line 31151 of [fbe70e1106]
fossil: unable to open database file

If you have recently updated your fossil executable, you might
need to run fossil all rebuild to bring the repository
schemas up to date.

if I try, for instance, to add a file to the (opened) repository or
if I try to clone it in a different directory.

Regards,

Arjen


On 2010-08-23 14:11, Richard Hipp wrote:
 Please run
 
 sqlite3 repository-name.fossil 'pragma integrity_check'
 
 on your repository database file and post the results.
 
 On Mon, Aug 23, 2010 at 7:30 AM, Arjen Markus arjen.mar...@deltares.nl 
 mailto:arjen.mar...@deltares.nl wrote:
 
 Hello,
 
 I have got an answer to my first question now (logging in as a different
 user), but it turns out that my fossil database has been corrupted.
 That is: whatever I do I get a message SQLITE_CANTOPEN (at line 31151)
 from fossil.
 
 I can see the Wiki, but I can not commit, add, open, ...
 
 Any suggestions?
 
 Regards,
 
 Arjen
 
 
 DISCLAIMER: This message is intended exclusively for the
 addressee(s) and may contain confidential and privileged
 information. If you are not the intended recipient please notify the
 sender immediately and destroy this message. Unauthorized use,
 disclosure or copying of this message is strictly prohibited.
 The foundation 'Stichting Deltares', which has its seat at Delft,
 The Netherlands, Commercial Registration Number 41146461, is not
 liable in any way whatsoever for consequences and/or damages
 resulting from the improper, incomplete and untimely dispatch,
 receipt and/or content of this e-mail.
 
 
 
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 
 
 
 
 -- 
 D. Richard Hipp
 d...@sqlite.org mailto:d...@sqlite.org
 
 
 
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Corrupted database

2010-08-23 Thread Arjen Markus
Hi,

some further information: I am cooperating in this project with Torsten
Berg and he was able to handle the repository I was not. He made a few
changes, sent it back and ... I can not handle the new one either!

I have no idea what is going wrong. Maybe restart the computer and
try again?

Regards,

Arjen

On 2010-08-23 14:11, Richard Hipp wrote:
 Please run
 
 sqlite3 repository-name.fossil 'pragma integrity_check'
 
 on your repository database file and post the results.
 
 On Mon, Aug 23, 2010 at 7:30 AM, Arjen Markus arjen.mar...@deltares.nl 
 mailto:arjen.mar...@deltares.nl wrote:
 
 Hello,
 
 I have got an answer to my first question now (logging in as a different
 user), but it turns out that my fossil database has been corrupted.
 That is: whatever I do I get a message SQLITE_CANTOPEN (at line 31151)
 from fossil.
 
 I can see the Wiki, but I can not commit, add, open, ...
 
 Any suggestions?
 
 Regards,
 
 Arjen
 
 
 DISCLAIMER: This message is intended exclusively for the
 addressee(s) and may contain confidential and privileged
 information. If you are not the intended recipient please notify the
 sender immediately and destroy this message. Unauthorized use,
 disclosure or copying of this message is strictly prohibited.
 The foundation 'Stichting Deltares', which has its seat at Delft,
 The Netherlands, Commercial Registration Number 41146461, is not
 liable in any way whatsoever for consequences and/or damages
 resulting from the improper, incomplete and untimely dispatch,
 receipt and/or content of this e-mail.
 
 
 
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 
 
 
 
 -- 
 D. Richard Hipp
 d...@sqlite.org mailto:d...@sqlite.org
 
 
 
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Corrupted database

2010-08-23 Thread Arjen Markus
Hi,

restarting the computer made no difference whatsoever.

Regards,

Arjen

On 2010-08-23 16:51, Arjen Markus wrote:
 Hi,
 
 some further information: I am cooperating in this project with Torsten
 Berg and he was able to handle the repository I was not. He made a few
 changes, sent it back and ... I can not handle the new one either!
 
 I have no idea what is going wrong. Maybe restart the computer and
 try again?
 
 Regards,
 
 Arjen
 
 On 2010-08-23 14:11, Richard Hipp wrote:
 Please run

 sqlite3 repository-name.fossil 'pragma integrity_check'

 on your repository database file and post the results.

 On Mon, Aug 23, 2010 at 7:30 AM, Arjen Markus arjen.mar...@deltares.nl 
 mailto:arjen.mar...@deltares.nl wrote:

 Hello,

 I have got an answer to my first question now (logging in as a different
 user), but it turns out that my fossil database has been corrupted.
 That is: whatever I do I get a message SQLITE_CANTOPEN (at line 31151)
 from fossil.

 I can see the Wiki, but I can not commit, add, open, ...

 Any suggestions?

 Regards,

 Arjen


 DISCLAIMER: This message is intended exclusively for the
 addressee(s) and may contain confidential and privileged
 information. If you are not the intended recipient please notify the
 sender immediately and destroy this message. Unauthorized use,
 disclosure or copying of this message is strictly prohibited.
 The foundation 'Stichting Deltares', which has its seat at Delft,
 The Netherlands, Commercial Registration Number 41146461, is not
 liable in any way whatsoever for consequences and/or damages
 resulting from the improper, incomplete and untimely dispatch,
 receipt and/or content of this e-mail.




 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 mailto:fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users




 -- 
 D. Richard Hipp
 d...@sqlite.org mailto:d...@sqlite.org


 

 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
  
 
 DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
 contain confidential and privileged information. If you are not the intended 
 recipient please notify the sender immediately and destroy this message. 
 Unauthorized use, disclosure or copying of this message is strictly 
 prohibited.
 The foundation 'Stichting Deltares', which has its seat at Delft, The 
 Netherlands, Commercial Registration Number 41146461, is not liable in any 
 way whatsoever for consequences and/or damages resulting from the improper, 
 incomplete and untimely dispatch, receipt and/or content of this e-mail.
 
 
 
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 
 

DISCLAIMER: This message is intended exclusively for the addressee(s) and may 
contain confidential and privileged information. If you are not the intended 
recipient please notify the sender immediately and destroy this message. 
Unauthorized use, disclosure or copying of this message is strictly prohibited.
The foundation 'Stichting Deltares', which has its seat at Delft, The 
Netherlands, Commercial Registration Number 41146461, is not liable in any way 
whatsoever for consequences and/or damages resulting from the improper, 
incomplete and untimely dispatch, receipt and/or content of this e-mail.




___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users