Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Expand the size of an arbitrary safety limit | John Wiegley | 2024-01-19 | 1 | -1/+1 |
| | |||||
* | Update copyright year | Alexis Hildebrandt | 2023-02-02 | 1 | -1/+1 |
| | | | | [skip ci] | ||||
* | Update copyright statement for 2022 | Alexis Hildebrandt | 2022-07-02 | 1 | -1/+1 |
| | |||||
* | Implement cryptographic access to files using GPGME | Michael Raitza | 2020-10-30 | 1 | -4/+13 |
| | |||||
* | Increase the error display text limit | John Wiegley | 2020-04-26 | 1 | -1/+1 |
| | |||||
* | Drop support for gcc 2 and earlier | Tim Landscheidt | 2019-01-25 | 1 | -5/+5 |
| | |||||
* | [misc] Update year in copyright notice to 2017 | Alexis Hildebrandt | 2018-01-27 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | [misc] Update year in copyright notice to 2017 | Alexis Hildebrandt | 2017-01-05 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | [misc] Update year in copyright notice to 2016 | Alexis Hildebrandt | 2016-01-02 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | Bump copyright notice to 2015 | Alexis Hildebrandt | 2014-12-27 | 1 | -1/+1 |
| | | | | | | The following script makes it a no-brainer: % NEXT_YEAR=2015; ag -l 'Copyright.*Wiegley' \ | xargs sed -i '' -e "s/\(Copyright.*\)-20[0-9]\{2\}/\1-${NEXT_YEAR}/" | ||||
* | Remove trailing whitespace from error messages | Martin Michlmayr | 2014-05-13 | 1 | -1/+1 |
| | | | | Fix for bug #867 | ||||
* | Bump copyright information to 2014 | Alexis Hildebrandt | 2014-02-02 | 1 | -1/+1 |
| | |||||
* | Bump copyright information to 2013 | John Wiegley | 2013-02-18 | 1 | -1/+1 |
| | |||||
* | change handling of standard input | Johann Klähn | 2013-01-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | For `-f /dev/stdin`, the `pathname` of the parsing context will be empty as for any other streamed input. `instance_t::include_directive` did not work as expected for `-f /dev/stdin` and relative file names. One would expect them to be relative to the current directory rather than `/dev`. This will lead to `While parsing file ""` messages. This could be adjusted to read `While parsing standard input`, but maybe it's not worth the special cases. This commit also fixes bug 788: behaviour of source_context for '-f -' | ||||
* | Revert "fix bug 788: behaviour of source_context for '-f -'" | John Wiegley | 2013-01-16 | 1 | -1/+1 |
| | | | | This reverts commit 0a1ff035421d5f97675ad769a7fcdbc68399f3dc. | ||||
* | fix bug 788: behaviour of source_context for '-f -' | Johann Klähn | 2013-01-15 | 1 | -1/+1 |
| | | | | | | `session_t::read_data` did not set context.pathname to `/dev/stdin` for the special case `-f -`. I chose to adjust `source_context` too as there is no sensible context if no file name is provided. | ||||
* | Switch to using Boost.Format | John Wiegley | 2012-05-14 | 1 | -2/+0 |
| | |||||
* | Increased file copyrights to 2012 | John Wiegley | 2012-02-29 | 1 | -1/+1 |
| | |||||
* | Corrected the type of a cast | John Wiegley | 2012-02-17 | 1 | -1/+1 |
| | |||||
* | Cleanup whitespace | John Wiegley | 2011-08-18 | 1 | -2/+2 |
| | |||||
* | Increased an assertion's length limit | John Wiegley | 2011-05-30 | 1 | -1/+1 |
| | |||||
* | Corrections to the regression tests | John Wiegley | 2011-03-03 | 1 | -1/+1 |
| | |||||
* | Fix for Boost.Filesystem v3 | John Wiegley | 2011-02-28 | 1 | -1/+1 |
| | |||||
* | Untabified all source files | John Wiegley | 2010-06-11 | 1 | -12/+12 |
| | |||||
* | Corrections to the way error strings are generated | John Wiegley | 2010-06-10 | 1 | -0/+1 |
| | |||||
* | Updated copyrights to 2003-2010 | John Wiegley | 2010-03-05 | 1 | -1/+1 |
| | |||||
* | Added a few more missing casts | John Wiegley | 2009-10-31 | 1 | -3/+3 |
| | |||||
* | Added two missing casts | John Wiegley | 2009-10-31 | 1 | -1/+1 |
| | |||||
* | Fixed many compiler warnings from g++ 4.4 | John Wiegley | 2009-10-25 | 1 | -15/+14 |
| | |||||
* | Added some missing casts, upgraded to Boost 1.40 | John Wiegley | 2009-10-09 | 1 | -1/+2 |
| | |||||
* | Enabled use of pre-compiled headers by default | John Wiegley | 2009-03-10 | 1 | -0/+2 |
| | |||||
* | Corrected warnings g++-4.3.3 was complaining about | John Wiegley | 2009-02-28 | 1 | -7/+7 |
| | |||||
* | If an error occurred in /dev/stdin, don't fopen it | John Wiegley | 2009-02-27 | 1 | -1/+1 |
| | |||||
* | Added a new source_context function | John Wiegley | 2009-02-26 | 1 | -0/+36 |
| | |||||
* | Use a "format accumulator" for error strings | John Wiegley | 2009-02-21 | 1 | -1/+3 |
| | | | | | | | | This makes it possible to internationalize strings while still using I/O streams. For example: std::cout << ACCUM(_("Hello to %1 and %2!") << "me" << "you") << std::endl; | ||||
* | Simplified the textual parser, and improved metadata support. | John Wiegley | 2009-02-04 | 1 | -7/+7 |
| | |||||
* | Removed report_error() function and reordered context for parsing errors. | John Wiegley | 2009-02-02 | 1 | -6/+0 |
| | |||||
* | Moved error code into error.h. | John Wiegley | 2009-02-02 | 1 | -0/+84 |