| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |\ |
|
| | |
| | |
| | |
| | | |
for zot xchans
|
| |/
|/| |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\ |
|
| |\ |
|
| | | |
|
| |/
|/| |
|
| | |
|
|/ |
|
|\
| |
| |
| |
| | |
Replace Epub thumbnail generation with our own code
See merge request hubzilla/core!2186
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The PHP Epub Meta library has a dependency that prevents deployment on
32bit architectures. We also don't need all the functionality in that
library, so this patch replaces it with our own simplified code for
fetching the cover embedded in Epub archives.
We also expand the test suite and clean up some minor issues in the
Epubthumbnail class.
|
| |
| |
| |
| |
| |
| | |
For some reason the gd build did not find libjpeg, even though it was
installed in the image. We will need jpeg support for testing the
thumbnail generation, so this patch adds the required configuration.
|
|\ \
| | |
| | |
| | |
| | | |
Exclude test results and PHPStan from git
See merge request hubzilla/core!2188
|
| |/ |
|
|\ \
| | |
| | |
| | |
| | | |
Update Spanish strings
See merge request hubzilla/core!2187
|
| | |
| | |
| | |
| | |
| | | |
(cherry picked from commit 10e2fbb22c6369c9ef6cbc6f943ff6878206e9fb)
Co-authored-by: mjfriaza:4GF~eYj,-iAv <mjfriaza@disroot.org>
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Highlight_mark_button3
See merge request hubzilla/core!2185
|
|/ / / |
|
|/ / |
|
| | |
|
| | |
|
| |
| |
| |
| | |
originals (sourced items from a channel at the same hub)
|
|/ |
|
| |
|
| |
|
|\
| |
| |
| |
| | |
Add error message on missing owa auth headers
See merge request hubzilla/core!2183
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
If the /owa endpoint received a request with a missing or invalid
Authorization header, it would return an error to the requester, but
without any message describing why it failes.
This patch adds a message to the error response, so that it will be a
bit easier to debug these issues in the future.
The owa spec includes a 'message' field in the error response, but makes
it optional. Any conforming implementations should accept a response
that includes the 'message' field.
|
|\ \
| | |
| | |
| | |
| | | |
Add Zotlabs\Tests namespace to autloader in dev
See merge request hubzilla/core!2182
|
| |/
| |
| |
| |
| |
| |
| | |
This is technically not needed, as we load the required classes in the
bootstrap file (`tests/unit/bootstrap.php`), but it helps editors that
integrate with language servers etc to find the classes so it does not
flag errors everywhere.
|
|\ \
| | |
| | |
| | |
| | | |
Add an insert and update methods to dba_pdo
See merge request hubzilla/core!2181
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
This is a convenience funcition to make it easier to update an existing
row in a database table.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
By using the returning clause when inserting a new record, we get back
the inserted record right away; thus saving us an extra roundtrip to the
database.
Both PostgreSQL and MariaDB supports this clause, but MySQL don't. In
that case we fall back to manually fetching the last inserted row.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The server version string is useful to among other things check whether
we are running on a real MySQL system, or MariaDB. Instead of fetching
it every time we need it, cache it in the dba_pdo object when we connect
to the db.
|
| | |
| | |
| | |
| | |
| | |
| | | |
MySQL does not support the INSERT...RETURNING clause, while MariaDB
does. This patch ensures that the test is not skipped on MariaDB, but
only on an actual MySQL system.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
According to the documentation, this function should never return null.
Still that's what it did if a non-select query raised a PDOException.
This patch fixes this, so that it so that the function conforms to the
docs.
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
A common use case is to insert a record into a database table, but also
instantiate an object from the inserted data. This requires that we know
the value of any default or calculated columns that is filled in by the
database when the row is inserter.
This patch adds a `insert` method to pda_dbo that will insert a row, and
immediately fetch the row back from the database – including the default
and calculated values not specified by the insert itself.
|
|\ \
| | |
| | |
| | |
| | | |
add highlight/mark button
See merge request hubzilla/core!2180
|
| |/ |
|
| | |
|