iens

Manager of links to read
git clone https://git.instinctive.eu/iens.git
Log | Files | Refs | README | LICENSE

commit 0d06d77c2517a7bf699272380d03ddc1e3c82dda
parent 91cd529fca4ded42af4901ad8a0e8168d8cf9ee0
Author: Natasha Kerensikova <natgh@instinctive.eu>
Date:   Wed, 14 Feb 2024 17:45:52 +0000

Command `list-tagged` can display the beginning of the list
Diffstat:
Msrc/iens.scm | 30++++++++++++++++++++++--------
1 file changed, 22 insertions(+), 8 deletions(-)

diff --git a/src/iens.scm b/src/iens.scm @@ -510,15 +510,29 @@ (defcmd (list-tagged tag-name . args) "tag-name [limit]" "Display entries with the given tag" (query (for-each-row* print-listed-entry-row) - (sql db "SELECT * FROM - (SELECT id,url,notes,protected FROM entry - WHERE id IN (SELECT url_id FROM tagrel - WHERE tag_id IN (SELECT id FROM tag - WHERE name=?)) - ORDER BY id DESC LIMIT ?) - ORDER BY id ASC;") + (sql db (cond ((or (null? args) (positive? (car args))) + "SELECT * FROM + (SELECT id,url,notes,protected FROM entry + WHERE id IN (SELECT url_id FROM tagrel + WHERE tag_id IN (SELECT id FROM tag + WHERE name=?)) + ORDER BY id DESC LIMIT ?) + ORDER BY id ASC;") + ((negative? (car args)) + "SELECT id,url,notes,protected FROM entry + WHERE id IN (SELECT url_id FROM tagrel + WHERE tag_id IN (SELECT id FROM tag + WHERE name=?)) + ORDER BY id ASC LIMIT ?;") + (else ; (zero? (car args)) + "SELECT id,url,notes,protected FROM entry + WHERE id IN (SELECT url_id FROM tagrel + WHERE tag_id IN (SELECT id FROM tag + WHERE name=?)) + OR id=? + ORDER BY id ASC;"))) tag-name - (if (null? args) 10 (car args)))) + (if (null? args) 10 (abs (car args))))) (defcmd (list-untagged) "" "Display entries without any tag"