summaryrefslogtreecommitdiffstats
path: root/lib/README
diff options
context:
space:
mode:
authorMike Mason <ms13sp@gmail.com>2007-11-28 22:04:59 +0000
committerMike Mason <ms13sp@gmail.com>2007-11-28 22:04:59 +0000
commita156a6951d673883333d19d5bd73df260451e58a (patch)
tree6975e1f2336fc7db45876d3ff49b966f24ad2693 /lib/README
parent118583621442b97aa0855b8e2d55d4ee1e8852a1 (diff)
downloadacf-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/README17
1 files changed, 12 insertions, 5 deletions
diff --git a/lib/README b/lib/README
index 0d650dc..afd175c 100644
--- a/lib/README
+++ b/lib/README
@@ -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 ***
+