3b6cd309ff
Sync with Revision 519 of Instiki trunk (2007/5/7).
129 lines
5.7 KiB
Plaintext
129 lines
5.7 KiB
Plaintext
<% @title = "Edit Web" %>
|
|
|
|
<% form_tag({ :controller => 'admin', :action => 'edit_web', :web => @web.address },
|
|
{ 'id' => 'setup', 'method' => 'post',
|
|
'onsubmit' => 'cleanAddress(); return validateSetup()',
|
|
'accept-charset' => 'utf-8' }) do
|
|
%>
|
|
|
|
<h2 style="margin-bottom: 3px">Name and address</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>.
|
|
</div>
|
|
|
|
<div class="inputBox">
|
|
<label for ="name">Name:</label> <input type="text" id="name" name="name" class="disableAutoComplete" value="<%= @web.name %>"
|
|
onchange="proposeAddress();" />   
|
|
<label for="address">Address:</label> <input type="text" class="disableAutoComplete" id="address" name="address" value="<%= @web.address %>"
|
|
onchange="cleanAddress();" />
|
|
<small><em>(Letters and digits only)</em></small>
|
|
</div>
|
|
|
|
<h2 style="margin-bottom: 3px">Specialize</h2>
|
|
<div class="inputBox">
|
|
<label for="markup">Markup:</label>
|
|
<select id="markup" name="markup">
|
|
<%= html_options({'Textile' => :textile, 'Markdown' => :markdown, 'Markdown+itex2MML' => :markdownMML, 'Mixed' => :mixed,
|
|
'RDoc' => :rdoc }, @web.markup) %>
|
|
</select>
|
|
|
|
  
|
|
|
|
<label for="color">Color:</label>
|
|
<select id="color" name="color">
|
|
<%= html_options({ 'Green' => '008B26', 'Purple' => '504685', 'Red' => 'DA0006',
|
|
'Orange' => 'FA6F00', 'Grey' => '8BA2B0' }, @web.color) %>
|
|
</select>
|
|
<br/>
|
|
<p>
|
|
<input type="checkbox" class="disableAutoComplete" id="safe_mode" name="safe_mode" <%= 'checked="checked"' if @web.safe_mode? %> />
|
|
<label for="safe_mode">Safe mode
|
|
<em>- strip HTML tags and stylesheet options from the content of all pages</em></label>
|
|
<br/>
|
|
<input type="checkbox" class="disableAutoComplete" id="brackets_only" name="brackets_only" <%= 'checked="checked"' if @web.brackets_only? %> />
|
|
<label for="brackets_only">Brackets only
|
|
<em>- require all wiki words to be as [[wiki word]], WikiWord links won't be created</em></label>
|
|
<br/>
|
|
<input type="checkbox" class="disableAutoComplete" id="count_pages" name="count_pages" <%= 'checked="checked"' if @web.count_pages? %> />
|
|
<label for="count_pages">Count pages</label>
|
|
<br/>
|
|
|
|
<input type="checkbox" class="disableAutoComplete" name="allow_uploads" <%= 'checked="checked"' if @web.allow_uploads? %> />
|
|
Allow uploads of no more than
|
|
<input type="text" class="disableAutoComplete" name="max_upload_size" value="<%= @web.max_upload_size %>"
|
|
size="20" />
|
|
kbytes
|
|
<em>-
|
|
allow users to upload pictures and other files and include them on wiki pages
|
|
</em>
|
|
<br/>
|
|
</p>
|
|
|
|
<a href="#" onclick="toggleView('additionalStyle');return false;">
|
|
Stylesheet tweaks >></a>
|
|
<em>
|
|
- add or change styles used by this web; styles defined here take precedence over
|
|
instiki.css. Hint: View HTML source of a page you want to style to find ID names on individual
|
|
tags.</em>
|
|
<br/>
|
|
<textarea id="additionalStyle" class="disableAutoComplete" cols="50" rows="20"
|
|
style="display:none" name="additional_style"><%= @web.additional_style %>
|
|
</textarea>
|
|
</div>
|
|
|
|
<h2 style="margin-bottom: 3px">Password protection for this web (<%= @web.name %>)</h2>
|
|
<div class="help">
|
|
This is the password that visitors need to view and edit this web.
|
|
Setting the password to nothing will remove the password protection.
|
|
</div>
|
|
<div class="inputBox">
|
|
<label for="password">Password:</label> <input class="disableAutoComplete" type="password" id="password"
|
|
name="password" value="<%= @web.password %>" />
|
|
  
|
|
<label for="password_check">Verify:</label> <input class="disableAutoComplete" type="password" id="password_check"
|
|
value="<%= @web.password %>" name="password_check" />
|
|
</div>
|
|
|
|
<h2 style="margin-bottom: 3px">Publish read-only version of this web (<%= @web.name %>)</h2>
|
|
<div class="help">
|
|
You can turn on a read-only version of this web that's accessible even when the regular web
|
|
is password protected.
|
|
The published version is accessible through URLs like /wiki/published/HomePage.
|
|
</div>
|
|
<div class="inputBox">
|
|
<input type="checkbox" id="published" name="published" class="disableAutoComplete" <%= 'checked="checked"' if @web.published? %> />
|
|
<label for="published">Publish this web</label>
|
|
</div>
|
|
|
|
<p style="text-align:right;font-size:.85em;">
|
|
<label for="system_password">Enter system password</label>
|
|
<input type="password" class="disableAutoComplete" id="system_password"
|
|
name="system_password" />
|
|
and
|
|
<input type="submit" value="Update Web" />
|
|
<br/><br/>
|
|
...or forget changes and <%= link_to 'create a new web', :action => 'create_web' %>
|
|
</p>
|
|
|
|
<% end %>
|
|
|
|
<br/>
|
|
<h1>Other administrative tasks</h1>
|
|
|
|
<% form_tag({:controller => 'admin', :web => @web.address, :action => 'remove_orphaned_pages'},
|
|
{ :id => 'remove_orphaned_pages',
|
|
:onsubmit => "return checkSystemPassword(document.getElementById('system_password_orphaned').value)",
|
|
'accept-charset' => 'utf-8' }) do
|
|
%>
|
|
<p style="text-align:right;font-size:.85em;">
|
|
Clean up by entering system password
|
|
<input type="password" id="system_password_orphaned" class="disableAutoComplete" name="system_password_orphaned" />
|
|
and
|
|
<input type="submit" value="Delete Orphan Pages" />
|
|
</p>
|
|
<% end %>
|
|
|
|
<%= javascript_include_tag 'edit_web' %>
|