summaryrefslogtreecommitdiff
path: root/html/widgets/host.tmpl
diff options
context:
space:
mode:
authoranbr <vdr07@deltab.de>2011-10-08 07:43:51 +0200
committeranbr <vdr07@deltab.de>2011-10-08 07:43:51 +0200
commit85d4bfa04ce28b5ec3eb0054306c43bc59c55128 (patch)
treed7878021068d70e2a4ab3044beb5f770a57fc980 /html/widgets/host.tmpl
parenta71b70567ed73853367d972a95d2a346b2f93989 (diff)
downloadxxv-85d4bfa04ce28b5ec3eb0054306c43bc59c55128.tar.gz
xxv-85d4bfa04ce28b5ec3eb0054306c43bc59c55128.tar.bz2
Merge skins into common directory
Diffstat (limited to 'html/widgets/host.tmpl')
-rw-r--r--html/widgets/host.tmpl23
1 files changed, 0 insertions, 23 deletions
diff --git a/html/widgets/host.tmpl b/html/widgets/host.tmpl
deleted file mode 100644
index cf90c8a..0000000
--- a/html/widgets/host.tmpl
+++ /dev/null
@@ -1,23 +0,0 @@
-<!-- host -->
-<tr>
- <td class="<?% (param.count mod 2) == 0 ? 'light' : 'dark' %?>" >
- <?% data.msg %?>
- </td>
- <td class="<?% (param.count mod 2) == 0 ? 'light' : 'dark' %?>" >
- <?% val = cgi.param(data.NAME) || data.def %?>
- <input
- type="text"
- name="<?% data.NAME %?>"
- value="<?% val %?>"
- <?% FOREACH p = param.tags; "$p ";END %?>
- onBlur="check<?% data.NAME %?>Host()"
- ><br/>
- <span id='id<?% param.count %?>'></span>
- </td>
-</tr>
-<script>
-function check<?% data.NAME %?>Host () {
- checkValue(document.forms[0].<?% data.NAME %?>, 'id<?% param.count %?>', 'getip', '<?% gettext("Host does not exist!") %?>', 'IP: %s');
-}
-window.setTimeout("check<?% data.NAME %?>Host()", 500);
-</script>