#1 Re: PDF Engine » CreateHyperLink function » 2020-05-26 12:15:46

Well, my last pull request was not merged for over a month without a comment: https://github.com/synopse/mORMot/pull/296
Why would I provide another?

#2 Re: PDF Engine » Bug in the CreateHyperLink() function? » 2020-05-26 07:17:37

Hello jeanmilost,

did you ever get an answer? What happened to your pull request?

#3 Re: PDF Engine » CreateHyperLink function » 2020-05-26 07:15:30

There is a bug and it was mentioned multiple times here, but somehow it is still not fixed. I am not sure why. Maybe the authors refuse to fix this? They never answered as far as I know.

#4 PDF Engine » Pull request 296 - no response » 2020-04-15 09:25:18

asdjklf
Replies: 0

Hello,

I created a pull request 296 to fix a bug in the PDF unit:

"fixed font is replaced by a variable one and vice versa"
https://github.com/synopse/mORMot/pull/296

It is a one line change, but it was not merged yet (19 days later).
Is there a problem with this pull request?
Is it a normal response time?
I see other pull requests being merged in the meantime.

Thank you.

#5 Re: PDF Engine » Bug in the CreateHyperLink() function? » 2019-02-08 09:34:23

I have just found your post after fixing this error in the same way.

#6 Re: mORMot 1 » Created ZIP file is not valid » 2018-07-23 12:23:05

I will go back to AbZipper in the mean time. Thank you for a great library!

#7 Re: mORMot 1 » Created ZIP file is not valid » 2018-07-20 09:07:00

Some time ago I asked for the implementation of zip64 in Quazip. Here are the corresponding commits: https://github.com/stachenov/quazip/sea … pe=Commits

#8 Re: mORMot 1 » Created ZIP file is not valid » 2018-07-19 14:15:46

7-zip errors:

https://drive.google.com/file/d/1Sz0MuB … sp=sharing

Here is the output of 7z.exe (should be the same as unzip):

P:\>"C:\Program Files\7-ZIP_64_bit\7z.exe" t "C:\ProgramData\SPS\Reporting\Files\bigdir\139.zip"

7-Zip 18.01 (x64) : Copyright (c) 1999-2018 Igor Pavlov : 2018-01-28

Scanning the drive for archives:
1 file, 2150759962 bytes (2052 MiB)

Testing archive: C:\ProgramData\SPS\Reporting\Files\bigdir\139.zip
--
Path = C:\ProgramData\SPS\Reporting\Files\bigdir\139.zip
Type = zip
Physical Size = 2150759962

ERROR: Data Error : File1.dat
ERROR: Headers Error : File10.dat
ERROR: Headers Error : File2.dat
ERROR: Headers Error : File3.dat
ERROR: Data Error : File4.dat
ERROR: Headers Error : File5.dat
ERROR: Headers Error : File6.dat
ERROR: Headers Error : File7.dat

Sub items Errors: 8

Archives with Errors: 1

Sub items Errors: 8

#9 mORMot 1 » Created ZIP file is not valid » 2018-07-18 12:55:10

asdjklf
Replies: 8

Hello,

I use the following code to create a .zip file:

class procedure TUtils.ZIP(const Dir, ZIPFile: string);
var
    Z: TZipWrite;
begin
    Z := TZipWrite.Create(ZIPFile);
    try
        Z.AddFolder(Dir);
    finally
        FreeAndNil(Z);
    end;
end;

... and the following batch to create a test directory:

mkdir "%~1"

"C:\msys64\usr\bin\dd.exe" if=/dev/urandom "of=%~1\File1.dat" bs=64M count=16 iflag=fullblock
"C:\msys64\usr\bin\dd.exe" if=/dev/urandom "of=%~1\File2.dat" bs=64M count=16 iflag=fullblock
"C:\msys64\usr\bin\dd.exe" if=/dev/urandom "of=%~1\File3.dat" bs=64M count=16 iflag=fullblock
"C:\msys64\usr\bin\dd.exe" if=/dev/urandom "of=%~1\File4.dat" bs=64M count=16 iflag=fullblock
"C:\msys64\usr\bin\dd.exe" if=/dev/urandom "of=%~1\File5.dat" bs=64M count=16 iflag=fullblock
"C:\msys64\usr\bin\dd.exe" if=/dev/urandom "of=%~1\File6.dat" bs=64M count=16 iflag=fullblock
"C:\msys64\usr\bin\dd.exe" if=/dev/urandom "of=%~1\File7.dat" bs=64M count=16 iflag=fullblock
"C:\msys64\usr\bin\dd.exe" if=/dev/urandom "of=%~1\File8.dat" bs=64M count=16 iflag=fullblock
"C:\msys64\usr\bin\dd.exe" if=/dev/urandom "of=%~1\File9.dat" bs=64M count=16 iflag=fullblock
"C:\msys64\usr\bin\dd.exe" if=/dev/urandom "of=%~1\File10.dat" bs=64M count=16 iflag=fullblock

7-zip shows errors while validating the created file.

Thank you

Board footer

Powered by FluxBB