Re: [fossil-users] Bug: Unable to clone

2017-06-12 Thread Richard Hipp
On 6/13/17, Roy Keene wrote: > Richard, > > No change. > I checked in a change (to trunk) that seems likely to fix this. Please try yet again using the latest trunk. -- D. Richard Hipp d...@sqlite.org ___ fossil-users mailing

Re: [fossil-users] Bug: Unable to clone

2017-06-12 Thread Richard Hipp
On 6/13/17, Roy Keene wrote: > > If I do "fossil fts-config index off" then I can clone, but if I then do > "fossil fts-config index on" I cannot again due to the same error. > That can be your work-around until I get to the bottom of this. I'm currently in Budapest for an

Re: [fossil-users] Bug: Unable to clone

2017-06-12 Thread Roy Keene
Richard, No change. See below: $ fossil info project-name: Fossil repository: /home/rkeene/devel/fossil/.repo local-root: /home/rkeene/devel/fossil/ config-db:/home/rkeene/.fossil project-code:

Re: [fossil-users] Bug: Unable to clone

2017-06-12 Thread Richard Hipp
On 6/12/17, Roy Keene wrote: > All, > > I've run into a bug with Fossil 2.2 where I am unable to clone my > current repository. Instead of cloning I get: > > $ mkdir /tmp/fossil-2.2-upstream > $ cd /tmp/fossil-2.2-upstream/ > $ wget

[fossil-users] Bug: Unable to clone

2017-06-12 Thread Roy Keene
All, I've run into a bug with Fossil 2.2 where I am unable to clone my current repository. Instead of cloning I get: $ mkdir /tmp/fossil-2.2-upstream $ cd /tmp/fossil-2.2-upstream/ $ wget http://fossil-scm.org/index.html/uv/fossil-linux-x86-2.2.tar.gz

[fossil-users] Patch: Doctype for HTML5

2017-06-12 Thread Johan Kuuse
Hi, A patch to include DOCTYPE html (HTML5) in web GUI where missing. Also deleted tags (which are XHTML specific, and invalid in HTML5). Best Regards, Johan Index: ajax/index.html == --- ajax/index.html +++ ajax/index.html @@

[fossil-users] src/blob.c : blob_read_from_file overflow int size

2017-06-12 Thread kowlsd3pw23s
src/blob.c : blob_read_from_file https://www.fossil-scm.org/index.html/artifact?ln=795=141d4f5494ed6d1a 795    int size, 801    size = file_wd_size(zFilename); 803    if( size<0 ){ It will not function normally if the file size is larger than INT_MAX. file size is i64. file_wd_size return i64.