Re: [fossil-users] bug git import: import_cmd: If --git or - svn is not set, misjudge internally.

2017-06-21 Thread er38hcma
1735if( g.argc!=3 && g.argc!=4 ){ 1736 usage("--git|--svn ?OPTIONS? NEW-REPOSITORY ?INPUT-FILE?"); 1737} - Original Message - > From: "er38h...@yahoo.co.jp" > To: "fossil-users@lists.fossil-scm.org" > Cc: > Date:

[fossil-users] bug git import: import_cmd: If --git or - svn is not set, misjudge internally.

2017-06-21 Thread er38hcma
import_cmd If --git or - svn is not set, misjudge internally. and master branch replaced by empty branch name. https://www.fossil-scm.org/index.html/artifact?ln=1726=ec3911e2adec00c7 ___ fossil-users mailing list fossil-users@lists.fossil-scm.org

Re: [fossil-users] bug git import: import_cmd: If --git or - svn is not set, misjudge internally.

2017-06-21 Thread er38hcma
 -  if( g.argc!=3 && g.argc!=4 ){  +  if( ( g.argc!=3 && g.argc!=4 ) || ( !gitFlag && !svnFlag ) ){ - Original Message - > From: "er38h...@yahoo.co.jp" > To: Fossil SCM user's discussion > Cc: > Date: 2017/6/21, Wed 18:02 >

[fossil-users] bug export --git : error: multiple updates for ref ... not allowed

2017-06-21 Thread er38hcma
https://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg24574.html bug export --git : error: multiple updates for ref ... not allowed Git generates errors due to fossil inappropriate export code. Index: src/export.c ==

[fossil-users] debian/makedeb.sh License different from present

2017-06-22 Thread er38hcma
License different from present debian/makedeb.sh https://www.fossil-scm.org/index.html/artifact?ln=103=b57db65590abc421> 103 License: GNU GPLv2 ___ fossil-users mailing list fossil-users@lists.fossil-scm.org

[fossil-users] Segmentation fault : fossil import --git new-repo.fossil "Files that do not exist"

2017-06-23 Thread er38hcma
$ ./fossil import --git new-repo.fossil "Files that do not exist" Segmentation fault Index: src/import.c == --- src/import.c +++ src/import.c @@ -1735,10 +1735,12 @@    if( g.argc!=3 && g.argc!=4 ){ usage("--git|--svn

[fossil-users] test-comment-format utf8

2017-06-15 Thread er38hcma
$ ./fossil test-comment-format --legacy "legacy " $(printf "%.0s" {1..100}) legacy ▒    ▒▒▒▒    ▒▒▒    ▒    ▒    ▒▒▒ (6 lines output) $ ./fossil test-comment-format "   "

[fossil-users] bug : comment_print_legacy function destroys utf8 characters when wrapping text.

2017-06-14 Thread er38hcma
Bug   comment_print_legacy function destroys utf8 characters when wrapping text. https://www.fossil-scm.org/index.html/artifact?ln=302-307=f570981a7bb58eb3 src/comformat.c : Line 302-307 (unsigned char) c: bit right shift 7: 0 is ascii, 1 is utf8. (unsigned char) c: bit right shift 6: 0b11 is

[fossil-users] bug : comment_print_legacy function destroys utf8 characters when wrapping text.

2017-06-16 Thread er38hcma
$ fossil diff --from trunk src/comformat.c @@ -188,8 +188,11 @@    maxChars = lineChars;    for(;;){ int useChars = 1; char c = zLine[index]; +    if( maxChars==1 && (c&0xC0)==0xC0 && lineChars!=1) { +  break; +    } if( c==0 ){    break; }else{    if( origBreak

[fossil-users] bug uv page

2017-06-18 Thread er38hcma
fossil new test fossil ui test http://localhost:8080/uv  SQLITE_ERROR: no such table: unversioned Database Error no such table: unversioned SELECT encoding, content FROM unversioned WHERE name='index.wiki' ___ fossil-users mailing list