summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Churchill <damoxc@gmail.com>2010-08-14 16:15:18 +0100
committerDamien Churchill <damoxc@gmail.com>2010-08-14 16:15:18 +0100
commit0e80b3ea0acb0fc44f9aca4a0b317f5fc04c5cd9 (patch)
tree43cafc51c236320e4bbbe06ad1c3228dabaf0773
parentaa61d33ee2775bf5e56716e801fa6ee2c7bfcdd9 (diff)
downloaddeluge-0e80b3ea0acb0fc44f9aca4a0b317f5fc04c5cd9.tar.gz
deluge-0e80b3ea0acb0fc44f9aca4a0b317f5fc04c5cd9.tar.bz2
deluge-0e80b3ea0acb0fc44f9aca4a0b317f5fc04c5cd9.zip
add the apple iOS bookmark icons from #1339
-rw-r--r--deluge/ui/web/icons/LICENSE17
-rw-r--r--deluge/ui/web/icons/apple-pre-114.pngbin0 -> 16227 bytes
-rw-r--r--deluge/ui/web/icons/apple-pre-57.pngbin0 -> 7613 bytes
-rw-r--r--deluge/ui/web/icons/apple-pre-72.pngbin0 -> 9649 bytes
-rw-r--r--deluge/ui/web/index.html49
5 files changed, 43 insertions, 23 deletions
diff --git a/deluge/ui/web/icons/LICENSE b/deluge/ui/web/icons/LICENSE
index 0ee20ac07..5323622b0 100644
--- a/deluge/ui/web/icons/LICENSE
+++ b/deluge/ui/web/icons/LICENSE
@@ -1,3 +1,20 @@
Icons in this folder are copied from the fruge icon set, taken from
http://www.pinvoke.com, licensed under the Creative Common
Attribution-ShareAlike 3.0 License.
+
+Exceptions
+==========
+apple-pre-57.png
+apple-pre-72.png
+apple-pre-114.png
+
+active.png
+alert.png
+all.png
+deluge.png
+dht.png
+downloading.png
+inactive.png
+queued.png
+seeding.png
+traffic.png
diff --git a/deluge/ui/web/icons/apple-pre-114.png b/deluge/ui/web/icons/apple-pre-114.png
new file mode 100644
index 000000000..57c34e8c3
--- /dev/null
+++ b/deluge/ui/web/icons/apple-pre-114.png
Binary files differ
diff --git a/deluge/ui/web/icons/apple-pre-57.png b/deluge/ui/web/icons/apple-pre-57.png
new file mode 100644
index 000000000..97447894c
--- /dev/null
+++ b/deluge/ui/web/icons/apple-pre-57.png
Binary files differ
diff --git a/deluge/ui/web/icons/apple-pre-72.png b/deluge/ui/web/icons/apple-pre-72.png
new file mode 100644
index 000000000..1f70d0ecf
--- /dev/null
+++ b/deluge/ui/web/icons/apple-pre-72.png
Binary files differ
diff --git a/deluge/ui/web/index.html b/deluge/ui/web/index.html
index c2897a457..da0517d2a 100644
--- a/deluge/ui/web/index.html
+++ b/deluge/ui/web/index.html
@@ -1,37 +1,40 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Deluge: Web UI ${version}</title>
-
- <link rel="shortcut icon" href="${base}icons/deluge.png" type="image/png" />
- <link rel="icon" href="${base}icons/deluge.png" type="image/png" />
-
- <!-- Stylesheets -->
- % for stylesheet in stylesheets:
- <link rel="stylesheet" type="text/css" href="${base}${stylesheet}" />
- % endfor
+ <head>
+ <title>Deluge: Web UI ${version}</title>
+
+ <link rel="shortcut icon" href="${base}icons/deluge.png" type="image/png" />
+ <link rel="icon" href="${base}icons/deluge.png" type="image/png" />
+ <link rel="apple-touch-icon-precomposed" media="screen and (resolution: 163dpi)" href="${base}icons/apple-pre-57.png" />
+ <link rel="apple-touch-icon-precomposed" media="screen and (resolution: 132dpi)" href="${base}icons/apple-pre-72.png" />
+ <link rel="apple-touch-icon-precomposed" media="screen and (resolution: 326dpi)" href="${base}icons/apple-pre-114.png" />
+
+ <!-- Stylesheets -->
+ % for stylesheet in stylesheets:
+ <link rel="stylesheet" type="text/css" href="${base}${stylesheet}" />
+ % endfor
- <script type="text/javascript">
+ <script type="text/javascript">
deluge = {
author: 'Damien Churchill <damoxc@gmail.com>',
version: '${version}',
config: ${js_config}
}
- </script>
+ </script>
- <!-- Javascript -->
- % for script in scripts:
- <script type="text/javascript" src="${base}${script}"></script>
- % endfor
- <script type="text/javascript">
- Deluge.debug = ${str(debug).lower()};
- </script>
- </head>
- <body>
- <div style="background-image: url('${base}themes/default/tree/loading.gif');"></div>
+ <!-- Javascript -->
+ % for script in scripts:
+ <script type="text/javascript" src="${base}${script}"></script>
+ % endfor
+ <script type="text/javascript">
+ Deluge.debug = ${str(debug).lower()};
+ </script>
+ </head>
+ <body>
+ <div style="background-image: url('${base}themes/default/tree/loading.gif');"></div>
<!-- Preload icon classes -->
<div class="ext-mb-error"></div>
<div class="icon-ok"></div>
- </body>
+ </body>
</html>