diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 02:37:40 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 02:37:40 +0000 |
commit | 9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0 (patch) | |
tree | d088b5210e77d9fa91d954d8550e00e372b47378 /plugins/webinterface/www/mobile/settings.php | |
download | ktorrent-9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0.tar.gz ktorrent-9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0.zip |
Updated to final KDE3 ktorrent release (2.2.6)
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktorrent@1077377 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/webinterface/www/mobile/settings.php')
-rw-r--r-- | plugins/webinterface/www/mobile/settings.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/plugins/webinterface/www/mobile/settings.php b/plugins/webinterface/www/mobile/settings.php new file mode 100644 index 0000000..b763bb1 --- /dev/null +++ b/plugins/webinterface/www/mobile/settings.php @@ -0,0 +1,44 @@ +<html> +<head> +<title>KTorrent WebInterface</title> +</head> +<body> +<table width="100%"> + <tbody> + <tr> + <td align="center"><IMG src="ktorrentwebinterfacelogo.png" width="340" height="150" align="top" border="0"></td> + <td><strong>ktorrent-><a href="interface.php">transfers</a></strong>->settings</td> + <td><a href="settings.php" >refresh</a></td> + </tr> + </tbody> +</table> +<table width="100%"> + <tbody> +<?php + $globalinfo=globalInfo(); + echo "<FORM method=\"GET\">"; + echo "<tr>"; + echo "<td>Upload Speed (0 is no limit): </td>"; + echo "<td><INPUT type=\"text\" name=\"maximum_upload_rate\" value=\"{$globalinfo['max_upload_speed']}\"></td>"; + echo " </tr>"; + echo "<tr>"; + echo "<td>Download Speed (0 is no limit): </td>"; + echo "<td><INPUT type=\"text\" name=\"maximum_download_rate\" value=\"{$globalinfo['max_download_speed']}\"></td>"; + echo "</tr>"; + echo "<tr>"; + echo "<td>Maximum downloads (0 is no limit): </td>"; + echo "<td><INPUT type=\"text\" name=\"maximum_downloads\" value=\"{$globalinfo['max_downloads']}\"></td>"; + echo"</tr>"; + echo "<tr>"; + echo "<td>Maximum seeds (0 is no limit): </td>"; + echo "<td><INPUT type=\"text\" name=\"maximum_seeds\" value=\"{$globalinfo['max_seeds']}\"></td>"; + echo"</tr>"; + echo "<tr><td><INPUT type=\"submit\"></tr></td>"; + echo "</FORM>"; +?> +</tbody> +</table> + +</body> +</html> + |