diff options
author | Ted Trask <ttrask01@yahoo.com> | 2008-04-30 20:36:02 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2008-04-30 20:36:02 +0000 |
commit | da880cee19e82ab4770ee3fe5bf362213cc96d10 (patch) | |
tree | b255858307d07356006cccb9c29758b87f90b957 /apk-html.lsp | |
parent | 20b0e779f4524e348f123786688a4dc56a2bfe4f (diff) | |
download | acf-apk-tools-da880cee19e82ab4770ee3fe5bf362213cc96d10.tar.bz2 acf-apk-tools-da880cee19e82ab4770ee3fe5bf362213cc96d10.tar.xz |
Modified cfe, removing option, errtxt, and name, and adding label - This may break things.
Rewrote password module, adding model
Modified authenticator to make password module work
git-svn-id: svn://svn.alpinelinux.org/acf/apk/trunk@1052 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'apk-html.lsp')
-rw-r--r-- | apk-html.lsp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apk-html.lsp b/apk-html.lsp index 76334ff..19cb085 100644 --- a/apk-html.lsp +++ b/apk-html.lsp @@ -25,7 +25,7 @@ io.write("</span>") <TD style="white-space:nowrap;" class="header">Description</TD> </TR> -<? for i,packagetable in pairs(form.value.loaded.option) do ?> +<? for i,packagetable in pairs(form.value.loaded.value) do ?> <TR> <TD style="padding-right:20px;white-space:nowrap;"> <?= html.link{value = "delete?package=" .. packagetable.name, label="Delete"} ?> @@ -48,7 +48,7 @@ io.write("</span>") <TD style="white-space:nowrap;" WIDTH="90%" class="header">Package Name</TD> </TR> -<? for i,package in pairs(form.value.available.option) do ?> +<? for i,package in pairs(form.value.available.value) do ?> <TR> <TD style="padding-right:20px;white-space:nowrap;"> <?= html.link{value = "install?package=" .. package, label="Install"} ?> |