From 8ca4455dc7add53f496161eda1e86c455d4ce37c Mon Sep 17 00:00:00 2001
From: mensonge
Date: Thu, 20 Nov 2008 17:03:28 +0000
Subject: Minor fix: move images .gif to images/ directory
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@167 b3834d28-1941-0410-a4f8-b48e95affb8f
---
images/loading.gif | Bin 0 -> 1582 bytes
images/rss.gif | Bin 0 -> 401 bytes
jsScuttle.php | 4 ++--
loading.gif | Bin 1582 -> 0 bytes
rss.gif | Bin 401 -> 0 bytes
templates/bookmarks.tpl.php | 2 +-
6 files changed, 3 insertions(+), 3 deletions(-)
create mode 100644 images/loading.gif
create mode 100644 images/rss.gif
delete mode 100644 loading.gif
delete mode 100644 rss.gif
diff --git a/images/loading.gif b/images/loading.gif
new file mode 100644
index 0000000..859126e
Binary files /dev/null and b/images/loading.gif differ
diff --git a/images/rss.gif b/images/rss.gif
new file mode 100644
index 0000000..094ba10
Binary files /dev/null and b/images/rss.gif differ
diff --git a/jsScuttle.php b/jsScuttle.php
index d802b90..53356aa 100644
--- a/jsScuttle.php
+++ b/jsScuttle.php
@@ -62,7 +62,7 @@ function isAvailable(input, response){
username = username.trim();
var availability = document.getElementById("availability");
if (username != '') {
- usernameField.style.backgroundImage = 'url(loading.gif)';
+ usernameField.style.backgroundImage = 'url(images/loading.gif)';
if (response != '') {
usernameField.style.backgroundImage = 'none';
if (response == 'true') {
@@ -92,7 +92,7 @@ function useAddress(ele) {
function getTitle(input, response){
var title = document.getElementById('titleField');
if (title.value == '') {
- title.style.backgroundImage = 'url(loading.gif)';
+ title.style.backgroundImage = 'url(images/loading.gif)';
if (response != null) {
title.style.backgroundImage = 'none';
title.value = response;
diff --git a/loading.gif b/loading.gif
deleted file mode 100644
index 859126e..0000000
Binary files a/loading.gif and /dev/null differ
diff --git a/rss.gif b/rss.gif
deleted file mode 100644
index 094ba10..0000000
Binary files a/rss.gif and /dev/null differ
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php
index ae3e08b..27dfb6e 100644
--- a/templates/bookmarks.tpl.php
+++ b/templates/bookmarks.tpl.php
@@ -257,7 +257,7 @@ window.onload = playerLoad;
$brss = '';
$size = count($rsschannels);
for ($i = 0; $i < $size; $i++) {
- $brss = '
';
+ $brss = '
';
}
echo '
'. $bfirst .' / '. $bprev .' / '. $bnext .' / '. $blast .' / '. sprintf(T_('Page %d of %d'), $page, $totalpages) ." ". $brss ."
\n"; -- cgit v1.3-2-g0d8e