Fossil Forum

Search Results
Login

Search Results

  1. Forum Reply: Cross-compiled fossil.exe does not output stdout in Windows
    ... With MSVC, this can be tested using: Unfortunately, I do not have MSVC installed and intend also not to do so (too much resources would be needed). Does this mean something like this done in ... (2023-09-26)

  2. Forum Reply: Wiki search: page titles, case sensitivity
    ... In my testing, this works for wiki pages and I did not see differences for checkins, docs, forums or tickets. BTW, after initializing the title Blob like this, the many calls to add the title ... (2023-09-12)

  3. Forum Reply: Segfault in 2.22 with ancient repository
    ... Reading symbols from fossil... (No debugging symbols found in fossil) [New LWP 101221] Core was generated by `/var/tmp/build/fossil-src-2.22/fossil open --verbose /var/tmp/test.fossil?. Program terminated with signal ... (2023-07-01)

  4. Forum Reply: WCAG-2.1 Branch
    ... This is a test commit. No changes will be made to the repository # # user: ericwikman # tags: wcag-2.1 # # EDITED .fossil-settings/ignore-glob # EDITED skins/ardoise/css.txt # EDITED skins/ardoise/footer.txt # EDITED ... (2022-11-12)

  5. Forum Reply: "after-receive" hook not running automatically
    ... However, it does look like tests might be affected. My guess is that the line in main.c was originally added so that test_fossil_http from testtester.tcl would not try to invoke the ... (2022-08-05)

  6. Forum Reply: Call for testers/feedbackers: new /pikchrshow
    ... I'll do detailed tests as soon as possible, at least when I get around to update my local patches (reminded by the expected merge conflict), and come back if there's any problems. That ... (2022-06-08)

  7. Forum Reply: 2.18: cannot clone "http://www.fossil-scm.org/fossil" to "fossil"
    ... The current change works as expected, according to those who have tested it on Windows. Why replace it with a huge block of Windows-specific code: +#ifdef _WIN32 + dwRet = GetModuleFileNameW(NULL, buf, ARRAYSIZE(buf)); + assert ... (2022-03-03)

  8. Forum Post: fossil can't checkout to the drive root
    ... cd /d T:\ fossil.exe open -k c:\tst\test.fossil project-name: <unnamed> repository: C:/tst/test.fossil local-root: T:/ ... And after this simple patch, all commands work correctly: --- src/utf8.c +++ src ... (2022-02-27)

  9. Forum Reply: Invalid processing of root directories on Windows.
    ... fossil_utf8_to_path function. This happened not only for root paths: if subdir not exists fossil zip trunk F:\subdir\test.zip lead to the same behaviour and fossil zip trunk \\?\f:\test.zip ... (2022-01-25)

  10. Forum Post: Invalid processing of root directories on Windows.
    ... After executing fs zip trunk F:\test.zip command on Windows, Fossil creates a subdirectory with a strange name. The reason is simple: Windows treat F: and F:\ differently. Fossil unsuccessfully checks (blob_write_to ... (2022-01-25)

  11. Forum Reply: Code page of files in web interface
    ... bidi markers are found embedded in the middle of a quoted string, used as part of a program to generate UTF8 text? Should we also add parsers... I think this decision - whether special (for some ... (2021-11-13)

  12. Forum Reply: Missing dot in docs for add
    ... 11 +401,11 @@ ** ** Usage: %fossil test-looks-like-utf FILENAME ** ** Options: ** -n|--limit N Repeat looks-like function N times, for -** performance measurement. Default = 1; +** performance measurement. Default = 1 ** --utf8 Ignoring BOM and file size ... (2021-03-11)

  13. Forum Post: Can `fossil grep` handle non-ASCII characters (UTF-8) ?
    ... 字, arrow: ↑? > test_utf8.txt fossil add test_utf8.txt fossil commit -m ?save.? # try grep unicode characters # -> does not work fossil grep ?😀? test_utf8.txt fossil grep ?字? test_utf8.txt fossil grep ?↑? test ... (2021-02-18)

  14. Forum Reply: UTF-8 BOM and Windows new lines...
    ... This should be secure enough not to cause ** unintended changes to the merged file and consistent with what ** users are using in their source files. */ if( starts_with_utf8_bom(pV1, 0) && starts_with_utf8 ... (2020-08-19)

  15. Forum Edit reply: UTF-8 BOM and Windows new lines...
    ... with_utf8_bom(pV1, 0) && starts_with_utf8_bom(pV2, 0) ){ blob_append(pOut, get_utf8_bom(0), -1); } Please check this image. This is what I was talking about... If someone could test it ... (2020-08-19)

  16. Forum Reply: UTF-8 BOM and Windows new lines...
    ... with_utf8_bom(pV1, 0) && starts_with_utf8_bom(pV2, 0) ){ blob_append(pOut, get_utf8_bom(0), -1); } Please check this image. This is what I was talking about... If someone could test it ... (2020-08-19)

  17. Forum Edit reply: UTF-8 BOM and Windows new lines...
    ... My interpretation of OP was that Marcio would like Fossil to keep UTF8 BOM when merging: Apparently Fossil discards that 'EF BB BF' byte order mark at the start of the file <...> I wonder if ... (2020-08-18)

  18. Forum Reply: UTF-8 BOM and Windows new lines...
    ... My interpretation of OP was that Marcio would like Fossil to keep UTF8 BOM when merging: Apparently Fossil discards that 'EF BB BF' byte order mark at the start of the file <...> I wonder if ... (2020-08-18)

  19. Forum Reply: Hash values used by style_load_one_js_file()
    ... test stat() on Windows, so would need to copy/paste a few lines from file.c and hope that it works on Windows. Nevermind: that would also require, for Windows, access to fossil_utf8_to ... (2020-05-10)

  20. Forum Edit reply: RFC: patch manifests (editing via web UI)
    ... looks_like_binary() is just a proxy for looks_like_utf8(), and that will fail (meaning it will look like binary) for non-UTF8. There are no intentions of supporting arbitrary encodings this way - that ... (2020-05-01)

  21. Forum Edit reply: RFC: patch manifests (editing via web UI)
    ... looks_like_binary() is just a proxy for looks_like_utf8(), and that will fail (meaning it will look like binary) for non-UTF8. There are no intentions of supporting arbitrary encodings this way - that ... (2020-05-01)

  22. Forum Edit reply: RFC: patch manifests (editing via web UI)
    ... looks_like_binary() is just a proxy for looks_like_utf8(), and that will fail (meaning it will look like binary) for non-UTF8. There are no intentions of supporting arbitrary encodings this way - that ... (2020-05-01)

  23. Forum Reply: RFC: patch manifests (editing via web UI)
    ... looks_like_binary() is just a proxy for looks_like_utf8(), and that will fail (meaning it will look like binary) for non-UTF8. There are no intentions of supporting arbitrary encodings this way - that ... (2020-05-01)

  24. Forum Reply: Fossil Forum to show a thread's title as page title in browser
    ... Thank you for the functional code and hints on how to apply it to UTF8 truncation. We should use this instead of the current way of truncating the title. The way I see this there ... (2020-03-03)

  25. Forum Reply: Timezone in timeline?
    ... In a branch so the OP can test them in his setup. (user: stephan tags: memleak-fixes) --- entry limit (1) reached --- # f time 2019-12-20T00:00:00 -n 1 === 2019-12-19 === 21:56 ... (2019-12-22)

  26. Forum Reply: On the command line, if a multibyte word wraps in a comment, fossil breaks up the word as a single byte and destroys it.
    ... So is the comment-formatter-utf8 branch ready to be merged onto trunk? Other than a few stylistic (which I will be patching shortly) I don't see anything wrong with it, and it appears ... (2018-11-28)

  27. Forum Reply: On the command line, if a multibyte word wraps in a comment, fossil breaks up the word as a single byte and destroys it.
    ... The latest word breaking enhancements ensure identical layout of UTF-8 and ASCII text. (Results are analogous for 3- and 4-byte UTF-8 sequences, so they are omitted here.) Tests: ./fossil test-comment-format ... (2018-11-16)

  28. Forum Edit reply: Request for Enhancement: Markdown Fenced code blocks
    ... 100%%; @ } @@ -1036,19 +1035,16 @@ @ } @ div.adunit_right_container { @ min-height: <i>height-of-right-column-ad-unit</i>; - @ } - @ </pre></blockquote> + @ }</code></pre></blockquote> @ <li>For a place-holder Ad-Unit for testing, Copy/Paste ... (2018-10-27)

  29. Forum Edit reply: Request for Enhancement: Markdown Fenced code blocks
    ... 100%%; @ } @@ -1036,19 +1035,16 @@ @ } @ div.adunit_right_container { @ min-height: <i>height-of-right-column-ad-unit</i>; - @ } - @ </pre></blockquote> + @ }</code></pre></blockquote> @ <li>For a place-holder Ad-Unit for testing, Copy/Paste ... (2018-10-27)

  30. Forum Edit reply: Request for Enhancement: Markdown Fenced code blocks
    ... 100%%; @ } @@ -1036,19 +1035,16 @@ @ } @ div.adunit_right_container { @ min-height: <i>height-of-right-column-ad-unit</i>; - @ } - @ </pre></blockquote> + @ }</code></pre></blockquote> @ <li>For a place-holder Ad-Unit for testing, Copy/Paste ... (2018-10-26)

  31. Forum Edit reply: Request for Enhancement: Markdown Fenced code blocks
    ... 100%%; @ } @@ -1036,19 +1035,16 @@ @ } @ div.adunit_right_container { @ min-height: <i>height-of-right-column-ad-unit</i>; - @ } - @ </pre></blockquote> + @ }</code></pre></blockquote> @ <li>For a place-holder Ad-Unit for testing, Copy/Paste ... (2018-10-25)

  32. Forum Reply: Request for Enhancement: Markdown Fenced code blocks
    ... 100%%; @ } @@ -1036,19 +1035,16 @@ @ } @ div.adunit_right_container { @ min-height: <i>height-of-right-column-ad-unit</i>; - @ } - @ </pre></blockquote> + @ }</code></pre></blockquote> @ <li>For a place-holder Ad-Unit for testing, Copy/Paste ... (2018-10-24)

  33. Forum Reply: On the command line, if a multibyte word wraps in a comment, fossil breaks up the word as a single byte and destroys it.
    ... https://www.fossil-scm.org/index.html/timeline?&r=comment-formatter-utf8 Tests with comments containing 2-, 3- and 4-byte UTF-8 sequences (run on Windows 10, output of patched version in the left ... (2018-10-17)