tag v0.3.1 released
This commit is contained in:
parent
58db140585
commit
d6b3f77778
718 changed files with 100584 additions and 0 deletions
36
v0.3.1/plugins/volume_format_fs/volume_format.cs
Normal file
36
v0.3.1/plugins/volume_format_fs/volume_format.cs
Normal file
|
@ -0,0 +1,36 @@
|
|||
<<?cs var:plugin_heading ?>><?cs var:html_escape(Lang.Plugins.volume_format_fs.Title.Format) ?></<?cs var:plugin_heading ?>>
|
||||
|
||||
<?cs call:handle_messages() ?>
|
||||
|
||||
<?cs call:show_help(Lang.Plugins.volume_format_fs.Help.Format) ?>
|
||||
|
||||
<?cs if:Data.CurrentDisk.active ?>
|
||||
<?cs call:hint("Plugins.volume_format_fs.UnmountBeforeInit") ?>
|
||||
<?cs else ?>
|
||||
|
||||
<?cs call:hint("Plugins.volume_format_fs.FormatWarning") ?>
|
||||
|
||||
<?cs call:print_form_header("set_type", "volume_format_fs") ?>
|
||||
<?cs call:show_help(Lang.Plugins.volume_format_fs.Help.Filesystem) ?>
|
||||
<p><label for="fs_type"><?cs var:html_escape(Lang.Plugins.volume_format_fs.Text.FSType)
|
||||
?>: </label><select name="fs_type" id="fs_type" size="0">
|
||||
<?cs each:x = Data.Plugins.volume_format_fs.fs_types ?>
|
||||
<option <?cs if:x == "windows" ?>selected="selected"<?cs /if ?>><?cs var:html_escape(x) ?></option><?cs /each ?>
|
||||
</select></p>
|
||||
|
||||
<?cs call:show_help(Lang.Plugins.volume_format_fs.Help.Encryption) ?>
|
||||
<p><label for="container_type"><?cs var:html_escape(Lang.Plugins.volume_format_fs.Text.IsEncrypted)
|
||||
?>: </label><select name="container_type" id="container_type">
|
||||
<option value="luks" <?cs if:Data.Plugins.volume_format_fs.container_type != "plain" ?>selected="selected"<?cs /if ?>><?cs var:html_escape(Lang.Plugins.volume_format_fs.Text.Yes) ?></option>
|
||||
<option value="plain" <?cs if:Data.Plugins.volume_format_fs.container_type == "plain" ?>selected="selected"<?cs /if ?>><?cs var:html_escape(Lang.Plugins.volume_format_fs.Text.No) ?></option>
|
||||
</select></p>
|
||||
|
||||
<p><input type="checkbox" name="confirm" value="1" id="confirm" /><label for="confirm"><?cs var:html_escape(Lang.Plugins.volume_format_fs.Text.Confirm) ?></label></p>
|
||||
|
||||
<p><input type="hidden" name="device" value="<?cs var:Data.CurrentDisk.device ?>" />
|
||||
<input type="hidden" name="store" value="step1" />
|
||||
<button type="submit"><?cs var:html_escape(Lang.Plugins.volume_format_fs.Button.Format) ?></button></p>
|
||||
</form>
|
||||
|
||||
<?cs /if ?>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue