| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(cherry picked from commit cf408c3facb4babeeaaefb199334b6a6896da5d8)
34e867cf provide a simplified automated installation as we had years ago
266df96c a) php version for max uplaod sizes b) hubzilla is the only option
c4d340d1 fixed installation of addons
b80a8a01 added composer
f1961884 composer: do not download again but install in any case
96710d83 help: default database name and user
ecf35537 fix composer
2d2bf751 main differences to homeinstall script
dcca3cab changed disclaimer
6c65c17f removed set path to convert because it does not have to be changed
ed77bfb5 email verification
93f85913 environments
00dd3bdd Debian 12 again
10223ef7 extra headings
f528a959 wording
18565bb2 sury instead of Debian repo
bc07f0c4 Merge remote-tracking branch 'origin/dev' into dev
38743496 fixed php install and db creation
d08bb5e6 fixed variable for creating db
b1cc4f4f do not care about more then one single webserver installed
8b0ec26a Merge branch core:master into dev
88e3522d Merge branch 'debianinstall' into dev
Co-authored-by: OJ Random <ojrandom@protonmail.com>
|
|\ |
|
| |\ |
|
| | | |
|
| |/
|/| |
|
|\| |
|
| | |
|
|/
|
|
| |
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.
|