Difference between revisions of "Developers"
From Owl
(→Parsers) |
|||
Line 8: | Line 8: | ||
Owl parsers are dynamically loaded at Owl's runtime and enable Owl to support a variety of Internet forums. Parsers are written in Lua and are by default stored in the <code>parsers</code> directory. This directory name is configurable in the <code>config.lua</code> file. See [[Configuring Owl]] for more details. | Owl parsers are dynamically loaded at Owl's runtime and enable Owl to support a variety of Internet forums. Parsers are written in Lua and are by default stored in the <code>parsers</code> directory. This directory name is configurable in the <code>config.lua</code> file. See [[Configuring Owl]] for more details. | ||
+ | |||
+ | [[Category:Lua]] | ||
+ | [[Category:Parsers]] |
Revision as of 10:51, 26 June 2014
Developers
Owl supports a script-based parsing system that allows for a variety of message board software to be supported without subsequent releases.
Developers can write their own parsers that support an entire message board software or just a single message board. The Owl Lua API provides parser developers with tools to help with the process of writing parsers.
Parsers
Owl parsers are dynamically loaded at Owl's runtime and enable Owl to support a variety of Internet forums. Parsers are written in Lua and are by default stored in the parsers
directory. This directory name is configurable in the config.lua
file. See Configuring Owl for more details.