diff options
author | alecpl <alec@alec.pl> | 2009-11-02 07:41:21 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-11-02 07:41:21 +0000 |
commit | ac67db19802abd7d2a18c1bb804c3bfd887e9bdf (patch) | |
tree | 76ad8b06edf56b0cbc100c4c2ac2c051140d45da /plugins/managesieve/skins/default/templates/managesieveedit.html | |
parent | 598212252c0e53a2d0c083a409ecfa72ccec4e34 (diff) |
- Managesieve 2.0: multi-script support
Diffstat (limited to 'plugins/managesieve/skins/default/templates/managesieveedit.html')
-rw-r--r-- | plugins/managesieve/skins/default/templates/managesieveedit.html | 109 |
1 files changed, 0 insertions, 109 deletions
diff --git a/plugins/managesieve/skins/default/templates/managesieveedit.html b/plugins/managesieve/skins/default/templates/managesieveedit.html deleted file mode 100644 index 2302073b6..000000000 --- a/plugins/managesieve/skins/default/templates/managesieveedit.html +++ /dev/null @@ -1,109 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<title><roundcube:object name="pagetitle" /></title> -<roundcube:include file="/includes/links.html" /> -<link rel="stylesheet" type="text/css" href="/this/managesieve.css" /> -</head> -<body class="iframe"> - -<script type="text/javascript"> - -function header_select(id) -{ - var obj = document.getElementById('header'+id); - - if (obj.value == 'size') - { - document.getElementById('rule_size' + id).style.display = 'inline'; - document.getElementById('rule_op' + id).style.display = 'none'; - document.getElementById('rule_target' + id).style.display = 'none'; - document.getElementById('custom_header' + id).style.display = 'none'; - } - else - { - if (obj.value != '...') - document.getElementById('custom_header' + id).style.display = 'none'; - else - document.getElementById('custom_header' + id).style.display = 'inline'; - - document.getElementById('rule_size' + id).style.display = 'none'; - document.getElementById('rule_op' + id).style.display = 'inline'; - rule_op_select(id); - } -} - -function rule_op_select(id) -{ - var obj = document.getElementById('rule_op'+id); - - if (obj.value == 'exists' || obj.value == 'notexists') - { - document.getElementById('rule_target' + id).style.display = 'none'; - } - else - { - document.getElementById('rule_target' + id).style.display = 'inline'; - } -} - -function action_type_select(id) -{ - var obj = document.getElementById('action_type'+id); - - if (obj.value == 'fileinto') - { - document.getElementById('action_mailbox' + id).style.display = 'inline'; - document.getElementById('action_target' + id).style.display = 'none'; - document.getElementById('action_target_area' + id).style.display = 'none'; - document.getElementById('action_vacation' + id).style.display = 'none'; - } - else if (obj.value == 'redirect') - { - document.getElementById('action_target' + id).style.display = 'inline'; - document.getElementById('action_mailbox' + id).style.display = 'none'; - document.getElementById('action_target_area' + id).style.display = 'none'; - document.getElementById('action_vacation' + id).style.display = 'none'; - } - else if (obj.value.match(/^reject|ereject$/)) - { - document.getElementById('action_target_area' + id).style.display = 'inline'; - document.getElementById('action_vacation' + id).style.display = 'none'; - document.getElementById('action_target' + id).style.display = 'none'; - document.getElementById('action_mailbox' + id).style.display = 'none'; - } - else if (obj.value == 'vacation') - { - document.getElementById('action_vacation' + id).style.display = 'inline'; - document.getElementById('action_target_area' + id).style.display = 'none'; - document.getElementById('action_target' + id).style.display = 'none'; - document.getElementById('action_mailbox' + id).style.display = 'none'; - } - else // discard, keep, stop - { - document.getElementById('action_target_area' + id).style.display = 'none'; - document.getElementById('action_vacation' + id).style.display = 'none'; - document.getElementById('action_target' + id).style.display = 'none'; - document.getElementById('action_mailbox' + id).style.display = 'none'; - } -} - -function rule_join_radio(value) -{ - document.getElementById('rules').style.display = (value=='any' ? 'none' : 'block'); -} -</script> - -<div id="filter-form"> -<roundcube:object name="filterform" /> - -<p> -<roundcube:button command="plugin.managesieve-save" type="input" class="button mainaction" label="save" /> -</p> - -</form> -</div> - - -</body> -</html> |