summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2021-01-06use numeric key for suffix instead of extra argumentNathan Gass1-1/+1
2021-01-06add special handling of numeric keys to _set and _values consistent with _whereNathan Gass1-7/+21
2021-01-06Merge branch 'master' into ng/postgresqlNathan Gass11-134/+116
2021-01-05Remove obsolete support for texts.php without return statement, we do not ↵Christian Schneider1-10/+5
have such files anymore
2021-01-05Remove obsolete special case username == uid, we do not have such cases anymoreChristian Schneider1-7/+0
2021-01-05Remove 11 year old FIXME comment, code has been in use like that long enough :-)Christian Schneider1-1/+1
2021-01-05Remove support for obsolete _read_post_process/_write_pre_process, use ↵Christian Schneider1-24/+0
static _read_postprocess/_write_preprocess instead
2020-12-16ignore some more warningsDavid Flatz1-1/+1
2020-12-15do not prepend $errprefix twiceUrban Müller1-1/+1
2020-12-15ignore warning of jpeg decoderDavid Flatz1-1/+1
2020-12-04Ignore all requests to /fonts/ for language override check, previous fix did ↵Christian Schneider1-1/+1
not work
2020-12-04Do not complain about missing language override for .woff/.woff2 filesChristian Schneider1-1/+1
2020-12-03Add some tests for it::substr() behaviour we rely on which was broken for ↵Christian Schneider1-0/+4
some PHP 8 Beta versions
2020-12-03Use PHP 8 compatible way of detecting @ operator (does not set ↵Christian Schneider1-1/+1
error_reporting to 0 any longer)
2020-11-27log write throttlesUrban Müller1-0/+3
2020-11-27pass array values instead of keys to functions with only one argument in ↵Nathan Gass2-0/+6
it::map and it::filter
2020-11-13properly quote raw post data for httpreq.phpUrban Müller1-2/+2
2020-11-13nicer formattingUrban Müller1-1/+1
2020-11-11bugfix (accidentally added rawpost)Urban Müller1-1/+1
2020-11-09no longer ignore extra positional argumentsNathan Gass2-10/+7
2020-11-09detect bad it::error usageUrban Müller1-1/+4
2020-10-30include POSTed non form data in error mailsUrban Müller1-0/+3
2020-10-30remove support for old array syntaxUrban Müller1-10/+4
2020-10-29use new array syntax for texts in old/new mixed filesUrban Müller1-1/+1
2020-10-28Limit parallel threads of GraphicsMagick to avoid overloading serversChristian Schneider1-1/+1
2020-10-16document "followlocation"Urban Müller1-6/+8
2020-09-30show datetime-comment for numbers matching timestamps until 2030-03-17 18:46Koni Weber1-1/+1
2020-09-23resend info irrelevant on develUrban Müller1-1/+1
2020-09-16use error_context for mails onlyUrban Müller1-1/+1
2020-09-15Do not generate warning (PHP 8: TypeError) if STDERR is not a valid ↵Christian Schneider1-1/+2
resource, e.g. in test/getopt.t because of backgrounding?!
2020-09-15Make itools PHP 8 compatibleChristian Schneider5-56/+61
2020-09-03avoid forbidden syntaxNathan Gass2-5/+5
2020-09-03avoid arrow functions as we support php 7.0Nathan Gass2-12/+28
2020-09-03fix indentationNathan Gass2-6/+6
2020-09-03go back to $GLOBALS['it_dbi'] for backward compatibilityNathan Gass2-14/+14
2020-09-03escape uppercase field names for postgresqlNathan Gass1-0/+2
2020-09-03comment out broken testNathan Gass1-2/+3
2020-09-03dont depend on order of resultsNathan Gass1-1/+1
2020-09-03handle postgresql implementation of mysql replaceNathan Gass1-1/+1
2020-09-03use WHERE TRUE in tests which is compatible with postgresqlNathan Gass1-4/+4
2020-09-03escape ID to avoid postgresql lowercasing itNathan Gass2-6/+6
2020-09-03make _set tests independent of exact sql syntaxNathan Gass1-13/+6
2020-09-03it_dbi subclass for postgresqlNathan Gass1-0/+179
2020-09-03add options to run tests on postgressql, adapt create table statements to ↵Nathan Gass1-14/+31
used db, avoid dependency on specific table in db
2020-09-03make sure connection exists for escape_name same as escape_stringNathan Gass1-2/+12
2020-09-02extract mysql specific json code into overridable functionsNathan Gass1-11/+31
2020-09-01allow to add a suffix after INSERT (for ON FOO sql syntax)Nathan Gass1-2/+2
2020-09-01generate postgres compatible where statementsNathan Gass1-2/+2
2020-08-31add _escape_name as backticks are mysql specificNathan Gass1-2/+7
2020-08-31use insert values instead of mysql speficif insert setNathan Gass1-9/+35