diff options
author | root <root@debian.(none)> | 2012-05-23 07:38:31 -0400 |
---|---|---|
committer | root <root@debian.(none)> | 2012-05-23 07:38:31 -0400 |
commit | 325343a4922543a0043b91054984354624cf5504 (patch) | |
tree | 52a885b3510d9d81629a6732d93eb4c13ea4d3b7 /view | |
parent | 61dba985c14ebcfd20d18b579aee9b781f98bc23 (diff) | |
download | volse-hubzilla-325343a4922543a0043b91054984354624cf5504.tar.gz volse-hubzilla-325343a4922543a0043b91054984354624cf5504.tar.bz2 volse-hubzilla-325343a4922543a0043b91054984354624cf5504.zip |
Update install wizard
- writable .htconfig.php not required
- add test for working .htaccess/mod_rewrite configuration
- fix last pass: create tables, eventually show config text and print a "What next" section
Diffstat (limited to 'view')
-rw-r--r-- | view/install_checks.tpl | 6 | ||||
-rw-r--r-- | view/theme/duepuntozero/style.css | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/view/install_checks.tpl b/view/install_checks.tpl index a1a75ade6..8a76c454c 100644 --- a/view/install_checks.tpl +++ b/view/install_checks.tpl @@ -3,9 +3,9 @@ <form action="$baseurl/install" method="post"> <table> {{ for $checks as $check }} - <tr><td>$check.title </td><td><span class="icon s22 {{if $check.status}}on{{else}}off{{endif}}"></td><td>{{if $check.required}}(required){{endif}}</td></tr> + <tr><td>$check.title </td><td><span class="icon s22 {{if $check.status}}on{{else}}{{if$check.required}}off{{else}}yellow{{endif}}{{endif}}"></td><td>{{if $check.required}}(required){{endif}}</td></tr> {{if $check.help }} - <tr><td colspan="3">$check.help</td></tr> + <tr><td colspan="3"><blockquote>$check.help</blockquote></td></tr> {{endif}} {{ endfor }} </table> @@ -19,6 +19,6 @@ <input type="submit" value="$next"> {{ else }} <input type="hidden" name="pass" value="1"> - <input type="submit" value="$reload"> + <input type="button" value="$reload" onclick="document.location.reload()"> {{ endif }} </form> diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index fca935dee..f984cab68 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2950,6 +2950,7 @@ aside input[type='text'] { .starred { background-position: -16px -48px; } .unstarred { background-position: -32px -48px; } .tagged { background-position: -48px -48px; } +.yellow { background-position: -64px -48px; } .filer-icon { |