summaryrefslogtreecommitdiff
path: root/doc/TODO.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/TODO.txt')
-rw-r--r--doc/TODO.txt31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/TODO.txt b/doc/TODO.txt
new file mode 100644
index 00000000..93ee985f
--- /dev/null
+++ b/doc/TODO.txt
@@ -0,0 +1,31 @@
1* Tweet list
2* skin footer
3* language selector
4* sidebars in posts and pages
5* import images to /image/ dir
6
7https://alexwlchan.net/2019/11/saving-a-copy-of-a-tweet-by-typing-twurl/
8
9page_translations:
10id | page_id | locale | title | abstract | body | created_at | updated_at
11
12pages:
13id | node_id | revision | created_at | updated_at | published_at | user_id | template_name | editor_id
14
15nodes:
16id | slug | unique_name | created_at | updated_at | lft | rgt | parent_id | head_id | draft_id | locking_user_id | staged_slug | staged_parent_id
17
18
19users = select * from users
20
21tags = select * from tags
22taggings = select * from taggings
23
24nodes = select * from nodes
25 for node in nodes:
26 pages = select * from pages where node_id = node.id
27 for page in pages:
28 tag_ids = select tag_id from taggings where taggable_id = page.id
29 tags = select name from tags where id in tag_ids
30 translations = select * from page_translations where page_id = page.id
31