diff options
author | Mike Mason <ms13sp@gmail.com> | 2007-11-28 22:04:59 +0000 |
---|---|---|
committer | Mike Mason <ms13sp@gmail.com> | 2007-11-28 22:04:59 +0000 |
commit | a156a6951d673883333d19d5bd73df260451e58a (patch) | |
tree | 6975e1f2336fc7db45876d3ff49b966f24ad2693 /lib/README | |
parent | 118583621442b97aa0855b8e2d55d4ee1e8852a1 (diff) | |
download | acf-core-a156a6951d673883333d19d5bd73df260451e58a.tar.bz2 acf-core-a156a6951d673883333d19d5bd73df260451e58a.tar.xz |
Lots of changes. fs.lua now only has file/filesystem functions. format.lua added to be convert/sytle format changes. join.lua and split.lua put in format now. May delete later.
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@385 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'lib/README')
-rw-r--r-- | lib/README | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -1,12 +1,13 @@ Brief discription of libs so far. For more info see http://wiki.alpinelinux.org/w/index.php?title=ACF_Libraries +Also we use Lua Posix for the rest of the functionality. + +*** These are currently being worked on. *** date.lua - Date and Time functions -fs.lua - Many file,string,and table type functions. May need to be renamed -join.lua - Takes a table and given a delimeter makes it into a string +fs.lua - File and filesystem library pidof.lua - Process libraries not provided by LPOSIX -split.lua - Take a delimeted string and makes it into a table -date.lua - Date and Time lua functions +format.lua - Library to help reformat string,tables,files or any input. Good place for split and join validator.lua - Validate web input for ACF. html.lua - Helps with form building in ACF @@ -15,4 +16,10 @@ web_elements.lua - More web functionality for ACF privsep.lua - Helps with authorization with ACF session.lua -Helps with Session mangement in ACF -These are currently being worked on. Also we use Lua Posix for the rest of the functionality. +*** THESE MAY GO AWAY. PUT IN format.lua *** + +join.lua - Takes a table and given a delimeter makes it into a string +*** Added to format.lua as format.table_to_string *** +split.lua - Take a delimeted string and makes it into a table +*** Added to format.lua as format.string_to_table *** + |