blob: 9b5ad5aa2ebed3a9eca0364d78f067586d616a8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<a href="{$smarty.const.WIKI_PKG_URL}create_webhelp.php" class="pagetitle">{tr}Create WebHelp{/tr}</a>
Here you can generate static HTML files from Wiki Book.
<br /><br />
{if $generated eq 'y'}
<a href="{$smarty.const.BITHELP_PKG_URL}{$dir}/index.html">{tr}You can browse the generated WebHelp here{/tr}</a><br /><br />
{/if}
<form method="post" action="{$smarty.const.WIKI_PKG_URL}create_webhelp.php">
<table class="panel">
<tr>
<td>{tr}Structure{/tr}</td>
<td>{$struct_info.title|escape}</td>
</tr>
<input type="hidden" name="name" value="{$struct_info.title|escape}" />
<input type="hidden" name="struct" value="{$struct_info.structure_id}" />
<tr>
<td>{tr}Directory{/tr}</td>
<td><input type="text" name="dir" value="{$struct_info.title|escape}" /></td>
</tr>
<tr>
<td>{tr}Top page{/tr}</td>
<td><input type="text" name="top" value="{$struct_info.title|escape}" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" class="btn btn-default" name="create" value="{tr}Create{/tr}" /></td>
</tr>
</table>
</form>
|