Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Rename C functions and remove functors nested inside modules. | Ziv Scully | 2015-07-19 |
| | |||
* | Progress on LRU cache but still more known bugs to fix. | Ziv Scully | 2015-06-28 |
| | |||
* | Merge. | Ziv Scully | 2015-03-27 |
|\ | |||
* \ | Merge. | Ziv Scully | 2014-12-11 |
|\ \ | |||
* \ \ | Merge. | Ziv Scully | 2014-11-24 |
|\ \ \ | |||
| | | * | Compatibility fix in header file | Adam Chlipala | 2014-12-21 |
| | |/ | |||
| | * | Optimizing writes of single characters | Adam Chlipala | 2014-12-04 |
| |/ | |||
| * | uw_remoteSock() | Adam Chlipala | 2014-11-16 |
| | | |||
* | | Merge. | Ziv Scully | 2014-09-13 |
|\| | |||
| * | New phase: Dbmodecheck | Adam Chlipala | 2014-08-17 |
| | | |||
| * | New .urp directive: file | Adam Chlipala | 2014-07-31 |
| | | |||
* | | Merge. | Ziv Scully | 2014-05-27 |
|\| | |||
* | | Finishes initial prototype, caching parameterless pages with ↵ | Ziv Scully | 2014-05-27 |
| | | | | | | | | table-match-based invalidation. Still has problems parsing non-Postgres SQL dialects properly. | ||
| * | HTML5 data-* attributes | Adam Chlipala | 2014-05-02 |
| | | |||
| * | uw_register_transactional() can return error codes | Adam Chlipala | 2014-04-17 |
| | | |||
| * | Define uw_loggers structure, allow FFI code to access it | Sergey Mironov | 2014-02-26 |
|/ | |||
* | Merge in upstream changes. | Patrick Hurst | 2014-01-18 |
|\ | |||
| * | Add 'html5' .urp directive | Adam Chlipala | 2014-01-09 |
| | | |||
| * | Proper handling of serialization failures during SQL COMMIT | Adam Chlipala | 2013-12-23 |
| | | |||
| * | Start SQL transactions as read-only when possible, based on conservative ↵ | Adam Chlipala | 2013-12-12 |
| | | | | | | | | program analysis | ||
| * | HTTP: avoid duplicate Content-length | Adam Chlipala | 2013-12-12 |
| | | |||
| * | Change handling of returned text blobs, to activate the normal EWrite ↵ | Adam Chlipala | 2013-12-11 |
| | | | | | | | | optimizations | ||
| * | Fix regression in http.c for long-polling connections; add lazy ↵ | Adam Chlipala | 2013-12-11 |
| | | | | | | | | initialization of database connections, to avoid the overhead in handlers that don't use SQL | ||
* | | Declare datetimeDayOfWeek in urweb_cpp.h. | Patrick Hurst | 2013-12-09 |
| | | |||
* | | Add basic year/month/day/hour/minute/second <-> time functions. | Patrick Hurst | 2013-12-05 |
|/ | |||
* | Add Connection and Content-length headers to raw HTTP responses | Adam Chlipala | 2013-11-27 |
| | |||
* | Remove autogenerated config.h.in from version control | Anders Kaseorg | 2013-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 ↵ | Adam Chlipala | 2013-10-11 |
| | | | | suggestion by Ron de Bruijn] | ||
* | Remove uw_cutErrorLocation() hijinks | Adam Chlipala | 2013-10-10 |
| | |||
* | Fix generation of timestamp literals for MySQL and SQLite | Adam Chlipala | 2012-11-30 |
| | |||
* | Basis.getenv | Adam Chlipala | 2012-08-02 |
| | |||
* | Get regular forms working again | Adam Chlipala | 2012-07-21 |
| | |||
* | Top.postFields | Adam Chlipala | 2012-07-21 |
| | |||
* | Support fancy expressions in module-level 'val' declarations | Adam Chlipala | 2012-07-18 |
| | |||
* | Run-time CSS style validation | Adam Chlipala | 2012-05-06 |
| | |||
* | Adaptations to ezyang's patch | Adam Chlipala | 2012-05-03 |
| | |||
* | Add support for -boot flag, which allows in-tree execution of Ur/Web | Edward Z. Yang | 2012-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.) | ||
* | Ensure proper ordering of <script> execution, to bring identifiers into ↵ | Adam Chlipala | 2012-04-27 |
| | | | | scope in time | ||
* | Basis.toMilliseconds and diffInMilliseconds, based on a patch from Gergely Buday | Adam Chlipala | 2012-02-04 |
| | |||
* | First part of changes to avoid depending on C function call argument order ↵ | Adam Chlipala | 2012-01-07 |
| | | | | of evaluation (omitting normal Ur function calls, so far) | ||
* | timeFormat .urp directive | Adam Chlipala | 2011-12-04 |
| | |||
* | Allow sources to be returned by RPCs | Adam Chlipala | 2011-12-03 |
| | |||
* | Primitive int/float functions: ceil, float, round, trunc | Adam Chlipala | 2011-10-08 |
| | |||
* | An abstract type of IDs | Adam Chlipala | 2011-09-03 |
| | |||
* | Introduce URWEB_STACK_SIZE environment variable (based on a patch by Hao Deng) | Adam Chlipala | 2011-08-02 |
| | |||
* | Backpedal on tutorial-motivated urweb-mode changes; add Basis.diffInSeconds ↵ | Adam Chlipala | 2011-07-22 |
| | | | | and Basis.toSeconds | ||
* | Change cookie signature comparison to resist timing attacks (based on code ↵ | Adam Chlipala | 2011-07-19 |
| | | | | suggested by Robin Green and Austin Seipp) | ||
* | Basis.currentUrlHasQueryString | Adam Chlipala | 2011-07-03 |
| | |||
* | For non-debug builds, leave out source location info in what is shown to user | Adam Chlipala | 2011-07-03 |
| | |||
* | getHeader and setHeader | Adam Chlipala | 2011-05-29 |
| |