reorganization

This commit is contained in:
Evgeny
2021-08-06 14:43:34 +03:00
parent 372ec8578d
commit 1e9b33eaea
52 changed files with 1044 additions and 20 deletions

17
ru/quotes-ru-widget.lua Normal file
View File

@@ -0,0 +1,17 @@
-- name = "Цитаты великих"
-- description = "Рандомные цитаты на русском языке."
-- data_source = "forismatic.com"
-- type = "widget"
-- author = "Evgeny Zobnin (zobnin@gmail.com)"
-- version = "1.0"
function on_alarm()
http:get("http://api.forismatic.com/api/1.0/?method=getQuote&format=json&lang=ru")
end
function on_network_result(result)
local quote = ajson:get_value(result, "object string:quoteText")
local author = ajson:get_value(result, "object string:quoteAuthor")
ui:show_lines({ quote }, { author })
end