aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/c
Commit message (Collapse)AuthorAge
...
* | Fix datetime construction (contributed by Patrick Hurst)Gravatar Adam Chlipala2014-05-18
| |
* | Change context-local memory allocation to return word-aligned addresses ↵Gravatar Adam Chlipala2014-05-18
| | | | | | | | (based on patch by Evan Danaher)
* | HTML5 data-* attributesGravatar Adam Chlipala2014-05-02
| |
* | uw_register_transactional() can return error codesGravatar Adam Chlipala2014-04-17
| |
* | Tweaking uw_commit() logic, partly to fix a resource clean-up bug on SQL ↵Gravatar Adam Chlipala2014-04-15
| | | | | | | | serialization failures
* | Protect uw_Basis_new_client_source from invalid ctx->idGravatar Sergey Mironov2014-02-26
| | | | | | | | We assume that FFI code may create new contextes with id left unassigned
* | Define uw_loggers structure, allow FFI code to access itGravatar Sergey Mironov2014-02-26
|/
* getenv calls UNIX getenv() when no special alternative is setGravatar Adam Chlipala2014-03-07
|
* Change Basis.getenv to return None outside the context of a web requestGravatar Adam Chlipala2014-03-04
|
* Parse new bytea output format from Postgres 9.xGravatar Adam Chlipala2014-02-25
|
* Merge in upstreamGravatar Patrick Hurst2014-02-14
|\
| * Turn off GCC's fancy %n checking, because the performance cost is too highGravatar Adam Chlipala2014-02-07
| |
* | Use localtime, not gmtime, for datetime functions.Gravatar Patrick Hurst2014-01-25
| |
* | Trim trailing whitespace in urweb.c.Gravatar Patrick Hurst2014-01-25
| |
* | Merge in upstream changes.Gravatar Patrick Hurst2014-01-18
|\|
| * Add 'html5' .urp directiveGravatar Adam Chlipala2014-01-09
| |
| * Do a bit of extra userspace copying to send HTTP response with a single ↵Gravatar Adam Chlipala2013-12-31
| | | | | | | | system call
| * HTTP: continue after accept() failureGravatar Adam Chlipala2013-12-30
| |
| * How embarrassing; didn't try compiling before committingGravatar Adam Chlipala2013-12-28
| |
| * Make HTTP keepalive switch between available connections to improve throughputGravatar Adam Chlipala2013-12-28
| |
| * Change where a transaction is marked finished, to avoid forgetting to ↵Gravatar Adam Chlipala2013-12-27
| | | | | | | | rollback a failed transaction
| * Raise exception when recv()ing from someone else's channel; improve setting ↵Gravatar Adam Chlipala2013-12-27
| | | | | | | | of client ID in RPCs
| * Tweaking handling of database transactionsGravatar Adam Chlipala2013-12-25
| |
| * No need to ROLLBACK after a failed COMMITGravatar Adam Chlipala2013-12-25
| |
| * Proper handling of serialization failures during SQL COMMITGravatar Adam Chlipala2013-12-23
| |
| * Fix compilation of apps that don't use database; fix HTTP pipeliningGravatar Adam Chlipala2013-12-17
| |
| * Start SQL transactions as read-only when possible, based on conservative ↵Gravatar Adam Chlipala2013-12-12
| | | | | | | | program analysis
| * HTTP: avoid duplicate Content-lengthGravatar Adam Chlipala2013-12-12
| |
| * RAND_bytes isn't thread-safe, so wrap it with a lockGravatar Adam Chlipala2013-12-11
| |
| * Change handling of returned text blobs, to activate the normal EWrite ↵Gravatar Adam Chlipala2013-12-11
| | | | | | | | optimizations
| * Fix regression in http.c for long-polling connections; add lazy ↵Gravatar Adam Chlipala2013-12-11
| | | | | | | | initialization of database connections, to avoid the overhead in handlers that don't use SQL
| * Add '-q' option to HTTP binariesGravatar Adam Chlipala2013-12-11
| |
* | Day of week functions.Gravatar Patrick Hurst2013-12-05
| |
* | Add basic year/month/day/hour/minute/second <-> time functions.Gravatar Patrick Hurst2013-12-05
|/
* Increase precision for rendering floats to SQLGravatar Adam Chlipala2013-12-03
|
* Remove extra line break for onErrorGravatar Adam Chlipala2013-12-01
|
* Add keepalive option to the http protocolGravatar Adam Chlipala2013-11-28
|
* Add Connection and Content-length headers to raw HTTP responsesGravatar Adam Chlipala2013-11-27
|
* In HTTP protocol C code, increase listening socket backlog to maximumGravatar Adam Chlipala2013-11-27
|
* make dist: Use fewer wildcardsGravatar Anders Kaseorg2013-11-22
| | | | | | | | | | | | | | | The remaining ones only work by accident: http://www.gnu.org/software/automake/manual/html_node/Wildcards.html and they have some practical problems too (we don’t really want to distribute include/urweb/config.h or src/config.sml), but this is enough for now to pass ‘make distcheck’ as long as we don’t run it from a separate build directory. Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- Makefile.am | 6 +++--- src/c/Makefile.am | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-)
* Allow building in a separate build directoryGravatar Anders Kaseorg2013-11-22
| | | | | | | | | | Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- Makefile.am | 30 +++--- src/c/Makefile.am | 2 +- src/compiler.mlb | 2 +- src/sources | 302 +++++++++++++++++++++++++++--------------------------- 4 files changed, 168 insertions(+), 168 deletions(-)
* Remove autogenerated files from version controlGravatar Adam Chlipala2013-11-21
|
* Regenerate Makefile.inGravatar Adam Chlipala2013-11-21
|
* Add missing inter-library dependenciesGravatar Anders Kaseorg2013-11-21
| | | | | | | | | | | | | | | | | This is needed, at least on recent Ubuntu, to fix these linker errors when compiling any Ur/Web application: liburweb.so: undefined reference to `lround' liburweb.so: undefined reference to `ceil' liburweb.so: undefined reference to `RAND_bytes' liburweb.so: undefined reference to `DES_fcrypt' liburweb.so: undefined reference to `SHA256_Init' liburweb.so: undefined reference to `SHA256_Final' liburweb.so: undefined reference to `SHA256_Update' Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- src/c/Makefile.am | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-)
* Change Pthread thread creation logic to avoid Cygwin limitations with ↵Gravatar Adam Chlipala2013-10-14
| | | | setting stack size
* Remove uw_cutErrorLocation() hijinksGravatar Adam Chlipala2013-10-10
|
* Take proper account of signatures changing during page generationGravatar Adam Chlipala2013-10-10
|
* Tweak Sergey's patch to work with PostgresGravatar Adam Chlipala2013-09-13
|
* Add hex SQL syntax for blobs, such as X'0ABC12343'. Works with sqlite.Gravatar Sergey Mironov2013-09-13
|
* Postgres unicode printing fix from Artyom ShalkhakovGravatar Adam Chlipala2013-07-17
|