Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make the link to continue reading a parent of the main div, not at the ↵ | David A. Madore | 2014-10-17 | 1 | -12/+16 |
| | | | | cut-here level. | ||||
* | Rename the "do_single_page" database column to "special_name", and update ↵ | David A. Madore | 2014-10-12 | 1 | -1/+1 |
| | | | | | | | Java variables accordingly. The SQL command is: ALTER TABLE entries RENAME do_single_page TO special_name ; | ||||
* | Separate the "has_cut" property from "do_single_page". | David A. Madore | 2014-10-12 | 1 | -2/+0 |
| | | | | | | | | | Note: the following SQL should be used to upgrade the database: ALTER TABLE entries ADD COLUMN has_cut boolean NOT NULL DEFAULT FALSE ; UPDATE entries SET has_cut = (array_length(xpath('.//d:cut-here', content, ARRAY[ARRAY['d', 'http://www.madore.org/~david/NS/daml/']]), 1) NOTNULL) ; -- Check that the following returns nothing: SELECT edate , id FROM entries WHERE has_cut != ( do_single_page NOTNULL ) ; | ||||
* | Introduce a WeblogLink class to refactor a lot of code on how links are written. | David A. Madore | 2014-10-10 | 1 | -8/+8 |
| | |||||
* | Very slight restyle of the cut link for long entries. | David A. Madore | 2011-11-14 | 1 | -4/+6 |
| | |||||
* | Implement <d:cut-here /> for cutting long entries. | David A. Madore | 2011-11-12 | 1 | -0/+74 |