「WikiNebula:AccessLog.json」の版間の差分
ナビゲーションに移動
検索に移動
Hiratatomotaka (トーク | 投稿記録) 編集の要約なし |
Hiratatomotaka (トーク | 投稿記録) 編集の要約なし |
||
6行目: | 6行目: | ||
{"params": { | {"params": { | ||
"before": ["9999-12-31 23:59:59"], | "before": ["9999-12-31 23:59:59"], | ||
" | "n": ["3"] | ||
}}, | }}, | ||
"WITH last_access AS ( ", | "WITH last_access AS ( ", | ||
17行目: | 17行目: | ||
" 'case0' as result_type ", | " 'case0' as result_type ", | ||
"FROM last_access ", | "FROM last_access ", | ||
"WHERE datetime <= '{$ | "WHERE datetime <= '{$before}' ", | ||
"ORDER BY datetime DESC ", | "ORDER BY datetime DESC ", | ||
"LIMIT {$ | "LIMIT {$n} " | ||
] | ] | ||
}, | }, | ||
28行目: | 28行目: | ||
"{| class=\"wikitable\" style=\"margin:auto\" ", | "{| class=\"wikitable\" style=\"margin:auto\" ", | ||
"|- ", | "|- ", | ||
"! | "! 記事 !! 最終アクセス日時 " | ||
], | ], | ||
"record": [ | "record": [ | ||
"|- ", | "|- ", | ||
"| [[{$ | "| [[{$title}]] || [[{$datetime}]] " | ||
], | ], | ||
"foot": [ | "foot": [ | ||
"|}" | "|} " | ||
] | ] | ||
} | } |
2025年9月12日 (金) 10:00時点における版
<!-- AccessLog --> { "queries": { "last_viewed" : [ {"params": { "before": ["9999-12-31 23:59:59"], "n": ["3"] }}, "WITH last_access AS ( ", " SELECT title, MAX(datetime) as datetime ", " FROM AccessLog ", " GROUP BY title ", ") ", "SELECT ", " title, datetime, ", " 'case0' as result_type ", "FROM last_access ", "WHERE datetime <= '{$before}' ", "ORDER BY datetime DESC ", "LIMIT {$n} " ] }, "outputs": { "last_viewed" : { "case0": { "head": [ "{| class=\"wikitable\" style=\"margin:auto\" ", "|- ", "! 記事 !! 最終アクセス日時 " ], "record": [ "|- ", "| [[{$title}]] || [[{$datetime}]] " ], "foot": [ "|} " ] } } } } <!-- /AccessLog -->