2023-02-18 20:57:27 +00:00
|
|
|
local ansikit = require 'ansikit'
|
|
|
|
local bait = require 'bait'
|
|
|
|
local commander = require 'commander'
|
|
|
|
local hilbish = require 'hilbish'
|
|
|
|
local terminal = require 'terminal'
|
|
|
|
local Greenhouse = require 'nature.greenhouse'
|
2023-02-19 20:53:39 +00:00
|
|
|
local Page = require 'nature.greenhouse.page'
|
2023-02-18 20:57:27 +00:00
|
|
|
|
|
|
|
commander.register('greenhouse', function(args, sinks)
|
2023-02-19 20:53:39 +00:00
|
|
|
local gh = Greenhouse(sinks.out)
|
2023-02-18 20:57:27 +00:00
|
|
|
|
2023-03-25 22:12:51 +00:00
|
|
|
if sinks['in'].pipe then
|
|
|
|
local page = Page(sinks['in']:readAll())
|
|
|
|
gh:addPage(page)
|
|
|
|
end
|
|
|
|
|
2023-02-19 20:53:39 +00:00
|
|
|
for _, name in ipairs(args) do
|
|
|
|
local f <close> = io.open(name, 'r')
|
|
|
|
if not f then
|
|
|
|
sinks.err:writeln(string.format('could not open file %s', name))
|
|
|
|
end
|
|
|
|
|
|
|
|
local page = Page(f:read '*a')
|
|
|
|
gh:addPage(page)
|
|
|
|
end
|
2023-02-18 22:58:16 +00:00
|
|
|
|
2023-04-12 00:44:29 +00:00
|
|
|
gh:initUi()
|
2023-02-18 20:57:27 +00:00
|
|
|
end)
|