ACF Libraries: Difference between revisions
Line 10: | Line 10: | ||
== html.lua == | == html.lua == | ||
== join.lua == | == join.lua <span style="color:red">(not working)</span>== | ||
'''INPUT:'''<BR> | |||
This library required the following inputs/parameters. | |||
* Delimiter | |||
** Could be one or more chars. | |||
* Array | |||
** Data which is to be joined into a string. | |||
'''OUTPUT:'''<BR> | |||
This library deliverers the following output/parameters. | |||
* String | |||
** Could be something like "Word, Word, Word, Word" | |||
'''CODING EXAMPLE:''' | |||
-- Set variable/Call for this library | |||
ourlib = require("join") | |||
-- Create a array of data <span style="color:red">(Not sure if the next row is correct)</span> | |||
arraytojoin = "Bird", "Fish", "Cow", "Hammer" | |||
-- Process the data (note the delimiter) | |||
liboutput = ourlib(";", arraytojoin) | |||
'liboutput' would contain: | |||
Bird;Fish;Cow;Hammer | |||
== log_view.lua == | == log_view.lua == |
Revision as of 11:08, 6 November 2007
ACF Libraries
Because of using lua, a very small language, the need arises to build everything from scratch. This can lead to some confusion, apprehension, or just feeling overwhelmed. Here is documentation on what we have now in the form of libraries and common functions. We hope to build some more and use this information to get the juices flowing in regard to ACF.
Some of these are lua libs or ones written for ACF.
ed.lua
fs.lua
html.lua
join.lua (not working)
INPUT:
This library required the following inputs/parameters.
- Delimiter
- Could be one or more chars.
- Array
- Data which is to be joined into a string.
OUTPUT:
This library deliverers the following output/parameters.
- String
- Could be something like "Word, Word, Word, Word"
CODING EXAMPLE:
-- Set variable/Call for this library
ourlib = require("join")
-- Create a array of data (Not sure if the next row is correct)
arraytojoin = "Bird", "Fish", "Cow", "Hammer"
-- Process the data (note the delimiter)
liboutput = ourlib(";", arraytojoin)
'liboutput' would contain:
Bird;Fish;Cow;Hammer
log_view.lua
service_controller.lua
service_model.lua
session.lua
split.lua
A lua library to work with tables. It takes a line like
test123~bobo~foo~bar
and splits it up and puts it in a table. With the following code you could take the line above and make it into a table like so
strplit = require "split"
t = strsplit("~", "test123~bobo~foo~bar")
t would be a table with elements
for a,b in ipairs(t) do print(a,b) end
1 test123
2 bobo
3 foo
4 bar