summaryrefslogtreecommitdiff
path: root/src/c/urweb.c
Commit message (Collapse)AuthorAge
* Merge pull request #136 from dredozubov/anchor-linksGravatar Adam Chlipala2020-01-15
|\ | | | | Same page link anchors
* | Remove sscanf from blob processingGravatar Simon Van Casteren2019-12-17
| |
* | Fix for #181: unurlify x-www-form-urlencoded without custom serialization ↵Gravatar Simon Van Casteren2019-11-04
| | | | | | | | using period
* | Unicode escapes in JSONGravatar Adam Chlipala2019-09-25
| |
* | PR suggestions (with thanks to @fabriceleal).Gravatar Oisín Mac Fhearaí2019-08-29
| |
* | Minor cleanup -- handle the case where we couldn't successfully generate a ↵Gravatar Oisín Mac Fhearaí2019-08-28
| | | | | | | | UTF8 codepoint by outputting a HTML escape (the default behaviour before for all multi-byte characters).
* | Try to avoid a pointer conversion errorGravatar Oisín Mac Fhearaí2019-08-11
| |
* | Add missing includeGravatar Oisín Mac Fhearaí2019-08-11
| |
* | * When htmlifying characters, don't use numeric escapes if they'reGravatar Oisín Mac Fhearaí2019-08-11
| | | | | | | | | | printable -- instead, try to convert them to UTF-8. * Add libicuio to linked C libraries
* | Make uw_set_error_message actually act printf-yGravatar Adam Chlipala2019-07-04
| |
* | Filecache support for MySQLGravatar Adam Chlipala2019-05-31
| |
* | Supporting 'char' arguments to handlers called from client codeGravatar Adam Chlipala2019-03-23
| |
* | Merge pull request #168 from fabriceleal/fix-codepoint-jsGravatar Adam Chlipala2019-01-26
|\ \ | | | | | | utf8: More portable js, implement urlifyChar, fix urlifyString, fix unit tests
* | | Basis.textOfBlob; try creating filecache directory if it doesn't existGravatar Adam Chlipala2019-01-21
| | |
| * | bug fixGravatar fab2019-01-14
| | |
| * | fix unit tests. implement urlifyCharGravatar fab2019-01-09
|/ /
* | Follow-up to #146: make style consistent in C codeGravatar Adam Chlipala2018-12-19
| |
* | Merge pull request #146 from fabriceleal/utf-icuGravatar Adam Chlipala2018-12-19
|\ \ | | | | | | utf-8 aware functions for basis. unit-testing.
| * | exhaustive testing brought to selenium. bug fix in isspace. useful function ↵Gravatar fab2018-12-11
| | | | | | | | | | | | to test if char is <128
| * | migrate is_valid_hash, blessData, property, atomGravatar fab2018-12-11
| | |
| * | fix isxdigit: is probably helpful to keep it only to ascii chars. migrate ↵Gravatar fab2018-12-09
| | | | | | | | | | | | islower, isupper, isalpha, isdigit, isblank, isspace, isxdigit, isprint
| * | chars with more than 2 bytes are awkwardly handled by the "normal" string of ↵Gravatar fab2018-12-06
| | | | | | | | | | | | javascript. the best way to get consistent results seems to be to convert to array by Array.from(...) and back to strings with .join("")
| * | fix: U8_IS_SINGLE should only be called on raw char*, NOT on uw_Basis_charGravatar fab2018-12-02
| | |
| * | 1 bug fix and sorting out my own confusion: uw_Basis_char is already a ↵Gravatar fab2018-12-02
| | | | | | | | | | | | codepoint, NOT the "serialized" utf8
| * | reject invalid codepoints. Basis.iscodepoint. fix german char in jsGravatar fab2018-11-30
| | |
* | | Replace timelocal usage with mktimeGravatar Chris Double2018-11-25
| | | | | | | | | | | | | | | | | | | | | timelocal is a non-standard GNU extension and equivalent to the POSIX standard mktime. musl-libc doesn't have timelocal, preventing fully static builds of urweb with musl.
| * | several fixes on unit tests and implementationGravatar fab2018-11-19
| | |
| * | utf-8 aware functions for basis. unit-testing.Gravatar fab2018-11-17
|/ /
* | Just return None rather than crashing, when trying to read cookies within ↵Gravatar Adam Chlipala2018-10-19
| | | | | | | | tasks (closes #143)
| * Rough same page anchorsGravatar Denis Redozubov2018-08-22
|/
* 'filecache' .urp directive, fixing a longstanding MonoUtil bug in the processGravatar Adam Chlipala2018-06-03
|
* Remove insecure crypto function (closes #114)Gravatar Adam Chlipala2018-05-29
|
* Enable -Wunused-parameterGravatar Benjamin Barenblat2017-08-07
|
* Raise an error if we run out of randomness during client initializationGravatar Adam Chlipala2017-05-14
|
* Prepare Postgres code for NULL error fieldsGravatar Adam Chlipala2016-06-17
|
* Silence gcc warningsGravatar Alexander2016-05-26
| | | "warning: 'entry' may be used uninitialized in this function"
* abs and floor addedGravatar Karen Sargsyan2016-05-23
|
* asin, acos, atan, atan2 addedGravatar Karen Sargsyan2016-05-22
|
* Some basic math functions: pow, sqrt, sin, cos, log, exp are added to work ↵Gravatar Karen Sargsyan2016-05-21
| | | | at client and server sides
* Support for <meta> tagsGravatar Adam Chlipala2016-05-15
|
* Fix preservation of headers when returning blobsGravatar Adam Chlipala2016-04-15
|
* Sqlcache: also record script additions; do a MonoReduce afterward, to help ↵Gravatar Adam Chlipala2016-03-12
| | | | Prepare do a better job
* Make JavaScript escaping handle ampersands properlyGravatar Adam Chlipala2016-02-23
|
* Fix handling of returnBlob headers for FastCGI, etc.Gravatar Adam Chlipala2016-02-14
|
* Remove duplicate typedef declarations.Gravatar Ziv Scully2015-12-30
|
* Merge SqlcacheGravatar Adam Chlipala2015-12-20
|\
| * Add read locks around time read in store.Gravatar Ziv Scully2015-11-20
| |
| * Tiny concurrency bugfix (race condition on cache->timeNow).Gravatar Ziv Scully2015-11-20
| |
| * Fix condition for installing new cache entriesGravatar Adam Chlipala2015-11-19
| |
| * Fix a read-after-free bug using a timestamp checkGravatar Adam Chlipala2015-11-19
| |