2008-12-15 20:19:22 +01:00
|
|
|
<%- @title = "Instiki Setup"; @content_width = 500 -%>
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
<p>
|
|
|
|
Congratulations on succesfully installing and starting Instiki.
|
|
|
|
Since this is the first time Instiki has been run on this port,
|
|
|
|
you'll need to do a brief one-time setup.
|
|
|
|
</p>
|
|
|
|
|
2007-05-11 18:47:38 +02:00
|
|
|
<% form_tag({ :controller => 'admin', :action => 'create_system' },
|
2007-01-22 15:36:51 +01:00
|
|
|
{ 'id' => 'setup', 'method' => 'post', 'onsubmit' => 'return validateSetup()',
|
2007-05-11 18:47:38 +02:00
|
|
|
'accept-charset' => 'utf-8' }) do
|
2007-01-22 14:43:50 +01:00
|
|
|
%>
|
|
|
|
<ol class="setup">
|
|
|
|
<li>
|
|
|
|
|
|
|
|
<h2 style="margin-bottom: 3px">Name and address for your first web</h2>
|
|
|
|
<div class="help">
|
|
|
|
The name of the web is included in the title on all pages.
|
|
|
|
The address is the base path that all pages within the web live beneath.
|
|
|
|
Ex: the address "rails" gives URLs like <i>/rails/show/HomePage</i>.
|
|
|
|
The address can only consist of letters and digits.
|
|
|
|
</div>
|
|
|
|
<div class="inputBox">
|
2007-02-19 00:27:36 +01:00
|
|
|
<label for="web_name">Name:</label> <input type="text" id="web_name" name="web_name" value="Wiki"
|
2007-01-22 15:36:51 +01:00
|
|
|
onchange="proposeAddress();" onclick="this.value == 'Wiki' ? this.value = '' : true" />
|
2007-02-19 00:27:36 +01:00
|
|
|
  
|
|
|
|
<label for="web_address">Address:</label> <input type="text" id="web_address" name="web_address" onchange="cleanAddress();"
|
2007-01-22 14:43:50 +01:00
|
|
|
value="wiki" />
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li>
|
|
|
|
<h2 style="margin-bottom: 3px">Password for creating and changing webs</h2>
|
|
|
|
<div class="help">
|
|
|
|
Administrative access allows you to make new webs and change existing ones.
|
|
|
|
</div>
|
|
|
|
<div class="help"><em>Everyone with this password will be able to do this, so pick it carefully!</em></div>
|
|
|
|
<div class="inputBox">
|
2007-02-19 00:27:36 +01:00
|
|
|
<label for="password">Password:</label> <input type="password" id="password" name="password" />
|
|
|
|
  
|
|
|
|
<label for="password_check">Verify:</label> <input type="password" id="password_check" name="password_check" />
|
2007-01-22 14:43:50 +01:00
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
|
2007-02-19 06:14:55 +01:00
|
|
|
<p style="text-align:right">
|
2007-01-22 14:43:50 +01:00
|
|
|
<input type="submit" value="Setup" style="margin-left: 40px" />
|
|
|
|
</p>
|
2007-05-11 18:47:38 +02:00
|
|
|
<% end %>
|
2007-01-22 14:43:50 +01:00
|
|
|
|
2007-02-19 06:14:55 +01:00
|
|
|
<script type="text/javascript">
|
2007-01-22 14:43:50 +01:00
|
|
|
function proposeAddress() {
|
|
|
|
document.getElementById('web_address').value =
|
|
|
|
document.getElementById('web_name').value.replace(/[^a-zA-Z0-9]/g, "").toLowerCase();
|
|
|
|
}
|
|
|
|
|
|
|
|
function cleanAddress() {
|
|
|
|
document.getElementById('web_address').value =
|
|
|
|
document.getElementById('web_address').value.replace(/[^a-zA-Z0-9]/g, "").toLowerCase();
|
|
|
|
}
|
|
|
|
|
|
|
|
function validateSetup() {
|
|
|
|
if (document.getElementById('web_name').value == "") {
|
|
|
|
alert("You must pick a name for the first web");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (document.getElementById('web_address').value == "") {
|
|
|
|
alert("You must pick an address for the first web");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (document.getElementById('password').value == "") {
|
|
|
|
alert("You must pick a system password");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (document.getElementById('password_check').value == "" ||
|
|
|
|
document.getElementById('password').value != document.getElementById('password_check').value) {
|
|
|
|
alert("The password and its verification doesn't match");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
</script>
|