diff options
author | Ted Trask <ttrask01@yahoo.com> | 2008-05-28 17:56:17 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2008-05-28 17:56:17 +0000 |
commit | 68b08ba0a7525e7571f304e4756c2e0a8f7d6e47 (patch) | |
tree | 2dfada6b11660074f3f318ae97435d9fe5507e07 /openssl-editconfigfile-html.lsp | |
parent | 2c7efb258612b0039becb4d535b0e118c400d79d (diff) | |
download | acf-openssl-68b08ba0a7525e7571f304e4756c2e0a8f7d6e47.tar.bz2 acf-openssl-68b08ba0a7525e7571f304e4756c2e0a8f7d6e47.tar.xz |
Check to see if necessary openssl directories exist, add support to create them
And enddate and daysremaining to list of certificates
Add ability to renew a certificate
git-svn-id: svn://svn.alpinelinux.org/acf/openssl/trunk@1188 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'openssl-editconfigfile-html.lsp')
-rw-r--r-- | openssl-editconfigfile-html.lsp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/openssl-editconfigfile-html.lsp b/openssl-editconfigfile-html.lsp index be6dae0..890909c 100644 --- a/openssl-editconfigfile-html.lsp +++ b/openssl-editconfigfile-html.lsp @@ -1,4 +1,4 @@ -<? local form, viewlibrary = ... ?> +<? local form, viewlibrary, page_info, session = ... ?> <? require("viewfunctions") ?> <? --[[ DEBUG INFORMATION @@ -23,7 +23,9 @@ displayitem(form.value.mtime) <?= form.value.filecontent.value ?> </textarea> -<DL><DT>Save/Apply above settings</DT><DD><input class="submit" type="submit" name="<?= form.option ?>" value="Save"></DD></DL> +<DL><DT><input class="submit" type="submit" name="<?= form.option ?>" value="<?= form.option ?>"></DT></DL> </form> - +<? if viewlibrary and viewlibrary.dispatch_component and session.permissions.openssl.checkenvironment then + viewlibrary.dispatch_component("checkenvironment") +end ?> |