Revision 8263
Added by Lauren Walker about 11 years ago
backup-configuration.jsp | ||
---|---|---|
39 | 39 |
<div class="document"> |
40 | 40 |
<h2>Backup Directory Configuration</h2> |
41 | 41 |
|
42 |
Metacat will back up configuration values in a location outside of the application installation |
|
43 |
directories. In this way, you won't have to re-enter the entire configuration every time you reinstall |
|
44 |
Metacat. <br><br> |
|
42 |
<p> |
|
43 |
Metacat will back up configuration values in a location outside of the application installation |
|
44 |
directories. In this way, you won't have to re-enter the entire configuration every time you reinstall |
|
45 |
Metacat. |
|
46 |
</p> |
|
45 | 47 |
|
46 | 48 |
<% |
47 | 49 |
String backupDir = (String)request.getAttribute("backupBaseDir"); |
... | ... | |
49 | 51 |
|
50 | 52 |
if (backupDirStatus.equals("hiddenExistsPopulated")) { |
51 | 53 |
%> |
52 |
The following directory was discovered with existing backup files. If this is not the |
|
53 |
correct backup directory, please correct below.<br><br> |
|
54 |
<p> |
|
55 |
The following directory was discovered with existing backup files. If this is not the |
|
56 |
correct backup directory, please correct below. |
|
57 |
</p> |
|
54 | 58 |
|
55 |
<%= backupDir %>
|
|
59 |
<h5><%= backupDir %></h5>
|
|
56 | 60 |
|
57 | 61 |
<% |
58 | 62 |
} else if (backupDirStatus.equals("unknown")) { |
59 | 63 |
%> |
64 |
<p> |
|
60 | 65 |
The system could not discover an optimal backup location. Please enter a location that you have |
61 |
permissions to below.<br><br> |
|
66 |
permissions to below. |
|
67 |
</p> |
|
62 | 68 |
|
63 | 69 |
<% |
64 | 70 |
} else { |
65 | 71 |
%> |
66 |
The following directory was determined to be optimal for creating backup directories. If |
|
67 |
this is not correct, please correct below.<br><br> |
|
68 |
|
|
69 |
<%= backupDir %> |
|
72 |
<p> |
|
73 |
The following directory was determined to be optimal for creating backup directories. If |
|
74 |
this is not correct, please correct below. |
|
75 |
</p> |
|
76 |
<h5><%= backupDir %></h5> |
|
70 | 77 |
<% |
71 | 78 |
} |
72 | 79 |
%> |
73 | 80 |
|
74 |
<br class="auth-header"> |
|
75 |
|
|
76 | 81 |
<%@ include file="./page-message-section.jsp"%> |
77 | 82 |
|
78 | 83 |
<form name="backupform" method="post" |
... | ... | |
93 | 98 |
</tr> |
94 | 99 |
</table> |
95 | 100 |
|
96 |
|
|
97 |
<input type="hidden" name="configureType" value="backup"/> |
|
98 |
<input type="hidden" name="processForm" value="true"/> |
|
99 |
<input class=button type="submit" value="Save"/> |
|
101 |
<div class="buttons-wrapper"> |
|
102 |
<input type="hidden" name="configureType" value="backup"/> |
|
103 |
<input type="hidden" name="processForm" value="true"/> |
|
104 |
<input class=button type="submit" value="Save"/> |
|
105 |
</div> |
|
100 | 106 |
</form> |
101 | 107 |
</div> |
102 | 108 |
</body> |
Also available in: Unified diff
Added the documentation for the new MetacatUI theming mechanism. Make some styling changes to the documentation and configuration pages and added Bootstrap and FontAwesome.