summaryrefslogtreecommitdiff
path: root/include/urweb
Commit message (Collapse)AuthorAge
* 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
|
* 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 Connection and Content-length headers to raw HTTP responsesGravatar Adam Chlipala2013-11-27
|
* Remove autogenerated config.h.in from version controlGravatar Anders Kaseorg2013-11-22
| | | | | | | | | Signed-off-by: Anders Kaseorg <andersk@mit.edu> --- .hgignore | 1 + include/urweb/config.h.in | 104 ---------------------------------------------- 2 files changed, 1 insertion(+), 104 deletions(-) delete mode 100644 include/urweb/config.h.in
* New header file scheme to support FFI code in either of C or C++ [based on ↵Gravatar Adam Chlipala2013-10-11
| | | | suggestion by Ron de Bruijn]
* Remove uw_cutErrorLocation() hijinksGravatar Adam Chlipala2013-10-10
|
* Fix generation of timestamp literals for MySQL and SQLiteGravatar Adam Chlipala2012-11-30
|
* Basis.getenvGravatar Adam Chlipala2012-08-02
|
* Get regular forms working againGravatar Adam Chlipala2012-07-21
|
* Top.postFieldsGravatar Adam Chlipala2012-07-21
|
* Support fancy expressions in module-level 'val' declarationsGravatar Adam Chlipala2012-07-18
|
* Run-time CSS style validationGravatar Adam Chlipala2012-05-06
|
* Adaptations to ezyang's patchGravatar Adam Chlipala2012-05-03
|
* Add support for -boot flag, which allows in-tree execution of Ur/WebGravatar Edward Z. Yang2012-05-02
The boot flag rewrites most hardcoded paths to point to the build directory, and also forces static compilation. This is convenient for developing Ur/Web, or if you cannot 'sudo make install' Ur/Web. The following changes were made: * Header files were moved to include/urweb instead of include; this lets FFI users point their C_INCLUDE_PATH at this directory at write <urweb/urweb.h>. For internal Ur/Web executables, we simply pass -I$PATH/include/urweb as normal. * Differentiate between LIB and SRCLIB; SRCLIB is Ur and JavaScript source files, while LIB is compiled products from libtool. For in-tree compilation these live in different places. * No longer reference Config for paths; instead use Settings; these settings can be changed dynamically by Compiler.enableBoot () (TODO: add a disableBoot function.) * config.h is now generated directly in include/urweb/config.h, for consistency's sake (especially since it gets installed along with the rest of the headers!) * All of the autotools build products got updated. * The linkStatic field in protocols now only contains the name of the build product, and not the absolute path. Future users have to be careful not to reference the Settings files to early, lest they get an old version (this was the source of two bugs during development of this patch.)