Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About
Login

Console View

Legend:   Passed Failed Warnings Failed Again Running Exception Offline No data

5c8fbf0c96aa...
Albert Astals Cid
pdfsig: Use optional for signatureNumber
Instead of using -1 as "optional no value marker"
57f429d72bf6...
Albert Astals Cid
I'm relatively sure this code does not compile with djgpp
5f68ea463947...
Albert Astals Cid
Remove EmbedStream rewind and restore
We can achieve what we want with careful use of reset and setting back
the replay variable to false once we read the end of what we have
recorded

It also contains a fix for EmbedStream::getChars in the replay case
that was ignoring the amount of requested characters (how did not
crash?) and not moving the bufPos forward
55a05e3452a7...
Albert Astals Cid
Fix EmbedStream::reset
One can't really reset EmbedStreams

The previous code tried to move the base stream to the same position as
before when resetting, but that's not good enough because the position
is based on file position, but that stream may be compressed so there
are many actual characters that correspond to the same file position so
reading the stream until we are in that position is not enough

So reuse the record/replay functionality that was introduced much
earlier to solve this "can not reset problem"
a22bd51bc17d...
Albert Astals Cid
glib: change iterator internal indexes to their actual types
61521a511e29...
Albert Astals Cid
cpp: Change stream operator signature now that we broke BC
Makes clazy happier
745432763149...
Albert Astals Cid
cpp: Extract the (size_t)-1 to a const variable
Makes the core easier to read and isolates the "uglyness" of casting
-1 to an unsigned type
73babce9e7a4...
Albert Astals Cid
cpp: Remove deprecated time functions that have a Y2K38 problem
Their counterparts were added more than 3 years ago, hopefully anyone
using them has already ported to the new ones
7369704d41df...
Albert Astals Cid
DCTStream: less type casting
02b4fab490ac...
Albert Astals Cid
pdfunite: Move iterator variable declaration to the for loop itself
7ac61fd1d65f...
Albert Astals Cid
perf-test: Fix msvc compile
ecf2ab9f048a...
Albert Astals Cid
GooTimer: Use C++
e7d386426396...
Albert Astals Cid
if -> ifdef since not all compiles define __GNUC__
and thus we get warnings about using an undefined defined on those
8f4a5d8a833d...
Albert Astals Cid
perf-test: Remove preview support
It was only implemented in windows and was not even linked it,
so it was impossible to use.

By removing it, it allows us to get rid of the nanosleep checks
795d7404bba9...
Albert Astals Cid
Remove TEXTOUT_WORD_LIST cmake option/ifdef
We have had it be true forever, no need to keep an extra ifdef around
de2947f1e9a4...
Albert Astals Cid
Remove OPI_SUPPORT cmake option/ifdef
We have had it be true forever, no need to keep an extra ifdef around
fdfa02c09ff2...
Albert Astals Cid
Fix ignored-attributes warning
9294059e9cce...
Albert Astals Cid
Simplify compiler preprocessor checks
All the gcc we support support what we need from them
so there's no need to check the version number

Also the mingw we support don't need special casing for the printf
format check
942193a8c880...
Albert Astals Cid
We don't need unistd.h
ab2d1074866e...
Albert Astals Cid
Remove unused cmake checks/defines
519b5b342046...
Albert Astals Cid
Remove unused dir includes/cmake checks
8e9c75e10c94...
Sune Vuorela
Print alt text in pdfinfo -struct
2544aeb7af41...
Albert Astals Cid
parseDA/tokenizeDA: Return std::optional instead of -1 on error
Also makes keeping signed/unsigned types easier
c8147d255e60...
Albert Astals Cid
Update (C)
6f2e397b770a...
Albert Astals Cid
parseDA can be const
484ed2e11875...
Albert Astals Cid
Convert variable to its proper unsigned type
7072af211a3d...
Albert Astals Cid
Annot: just return the vector instead of having getCount/get
It's better and makes one not have to worry about the count signed-ness
d79a09311516...
Albert Astals Cid
Increase version so people that track master can add ifdefs on version
45d43f4685d0...
Albert Astals Cid
poppler 25.12.0
0994338dc4a3...
Albert Astals Cid
Update (C)
f04f81182249...
Albert Astals Cid
Trick clang-tidy 21 into not complaining
We know bufSize is 1024 so it fits more than enough in an integer
f275e2c7579a...
Albert Astals Cid
Make param to getIndexVal const & since it's always non null
a0d06b3018c1...
Albert Astals Cid
Make a variable unsigned to represent the data more correctly
022d33de2270...
Albert Astals Cid
CI: Update clang-format to 21
77f36b852541...
Nelson Benítez León
Annot.cc: partially revert e674ca64 to fix #1642 regression
The refactor in commit e674ca64 deleted the code in
AnnotWidget::draw() that checked if ZaDb font was
automatically added by AnnotAppearanceBuilder::drawText()
(after it could not find it in the document Resources)
and if that was the case then AnnotWidget::draw() added
a fake ZaDb font to the Gfx Resources prior to calling
gfx->drawAnnot().

The deletion of that code was causing pdf form files
exported from LibreOffice which had checkbuttons and
radiobuttons to not display them as checked after
clicking them.

So this commit brings back that code so those form
buttons display fine again.

Fixes #1642
2a4edaea6a74...
Albert Astals Cid
Do not report pdf syntax error when Suspects or UserProperties have false value
9785e34024d6...
Albert Astals Cid
Update (C)
ca72340b0490...
Albert Astals Cid
roleMapResolve: Fix using object as name before checking it is a name
0bc521bbee2c...
Sune Vuorela
RoleMapResolve: Deal with different circular references
7aa99cf8fe66...
Sune Vuorela
Don't resolve roleMap by recursion
This gives the potential for stack exhaustion; It is just a list we can
iterate over instead.

Fixes: #1646