Last change
on this file since 1651 was
1651,
checked in by work@…, 12 years ago
|
- removed searchable
- worked on the initial version of the setup wizard
|
File size:
1.6 KB
|
Line | |
---|
1 | <% |
---|
2 | /** |
---|
3 | * Configuration Location |
---|
4 | * |
---|
5 | * @author Jeroen Wesbeek |
---|
6 | * @since 20110318 |
---|
7 | * |
---|
8 | * Revision information: |
---|
9 | * $Rev: 66849 $ |
---|
10 | * $Author: duh $ |
---|
11 | * $Date: 2010-12-08 15:12:54 +0100 (Wed, 08 Dec 2010) $ |
---|
12 | */ |
---|
13 | %> |
---|
14 | <af:page> |
---|
15 | <h1>Configuration file</h1> |
---|
16 | |
---|
17 | <font color="red"><b><i>NOTE: this wizard is in development!</i></b></font> |
---|
18 | |
---|
19 | <g:if test="${configInfo.pathSummary && configInfo.fileSummary}"> |
---|
20 | OK! |
---|
21 | </g:if> |
---|
22 | <g:else> |
---|
23 | <div class="checklist"> |
---|
24 | <ul class="header"> |
---|
25 | <li class="path">Path</li> |
---|
26 | <li>exists</li> |
---|
27 | <li>readable</li> |
---|
28 | <li>writable</li> |
---|
29 | </ul> |
---|
30 | <ul> |
---|
31 | <li class="path">${configInfo.path}</li> |
---|
32 | <li><img src="${fam.icon(name: icons[(configInfo.pathExists.toString())])}"/></li> |
---|
33 | <li><img src="${fam.icon(name: icons[(configInfo.pathCanRead.toString())])}"/></li> |
---|
34 | <li><img src="${fam.icon(name: icons[(configInfo.pathCanWrite.toString())])}"/></li> |
---|
35 | <li class="summary"><g:if test="${!configInfo.pathSummary}"><img src="${fam.icon(name: 'arrow_right')}"/><af:ajaxButton name="toConfigurationPath" value="resolve issues" afterSuccess="onPage();" class="prevnext" /></g:if></li> |
---|
36 | </ul> |
---|
37 | <ul> |
---|
38 | <li class="path">${configInfo.file}</li> |
---|
39 | <li><img src="${fam.icon(name: icons[(configInfo.fileExists.toString())])}"/></li> |
---|
40 | <li><img src="${fam.icon(name: icons[(configInfo.fileCanRead.toString())])}"/></li> |
---|
41 | <li><img src="${fam.icon(name: icons[(configInfo.fileCanWrite.toString())])}"/></li> |
---|
42 | <li class="summary"><g:if test="${!configInfo.fileSummary}"><img src="${fam.icon(name: 'arrow_right')}"/><af:ajaxButton name="toConfigurationFile" value="resolve issues" afterSuccess="onPage();" class="prevnext" /></g:if></li> |
---|
43 | </ul> |
---|
44 | </div> |
---|
45 | </g:else> |
---|
46 | |
---|
47 | </af:page> |
---|
Note: See
TracBrowser
for help on using the repository browser.