improved some minor layout stuff

This commit is contained in:
lars 2006-12-14 01:34:07 +00:00
parent 87af175764
commit 4d61bfbe77
4 changed files with 10 additions and 5 deletions

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
cryptobox (0.2.58-1) unstable; urgency=low
* fixed small layout bug
-- Lars Kruse <devel@sumpfralle.de> Thu, 14 Dec 2006 01:57:05 +0100
cryptobox (0.2.57-1) unstable; urgency=low
* added some documentation

View file

@ -3,8 +3,6 @@
<?cs call:handle_messages() ?>
<?cs call:show_help(Lang.Plugins.volume_format_fs.Help.Format) ?>
<?cs call:show_help(Lang.Plugins.volume_format_fs.Help.Filesystem) ?>
<?cs call:show_help(Lang.Plugins.volume_format_fs.Help.Encryption) ?>
<?cs if:Data.CurrentDisk.active ?>
<?cs call:hint("Plugins.volume_format_fs.UnmountBeforeInit") ?>
@ -13,12 +11,14 @@
<?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>

View file

@ -4,8 +4,6 @@
<?cs call:handle_messages() ?>
<?cs call:show_help(Lang.Plugins.volume_format_fs.Help.Password) ?>
<?cs if:Data.CurrentDisk.active ?>
<?cs call:hint("Plugins.volume_format_fs.UnmountBeforeInit") ?>
<?cs else ?>
@ -18,6 +16,7 @@
var:html_escape(Lang.Plugins.volume_format_fs.Text.Yes) ?><?cs else ?><?cs
var:html_escape(Lang.Plugins.volume_format_fs.Text.No) ?><?cs /if ?></p>
<?cs call:show_help(Lang.Plugins.volume_format_fs.Help.Password) ?>
<p><label for="crypto_password"><?cs var:html_escape(Lang.Text.EnterNewPassword) ?>: </label> <input type="password" id="crypto_password" name="crypto_password" /></p>
<p><label for="crypto_password2"><?cs var:html_escape(Lang.Text.EnterSamePassword) ?>: </label> <input type="password" id="crypto_password2" name="crypto_password2" /></p>
<p><input type="hidden" name="device" value="<?cs var:Data.CurrentDisk.device ?>" />

View file

@ -10,5 +10,5 @@ __all__ = ['core', 'web', 'plugins', 'tests']
__revision__ = "$Id$"
__version__ = "0.2.56"
__version__ = "0.2.58"