aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-20 17:03:28 +0000
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-20 17:03:28 +0000
commit8ca4455dc7add53f496161eda1e86c455d4ce37c (patch)
tree28bb9027ac59c575577e43c0f8b3182fd4c32b58
parent936f680062b40d237b90383c31034f9873ef8cd0 (diff)
downloadsemanticscuttle-8ca4455dc7add53f496161eda1e86c455d4ce37c.tar.gz
semanticscuttle-8ca4455dc7add53f496161eda1e86c455d4ce37c.tar.bz2
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
-rw-r--r--images/loading.gif (renamed from loading.gif)bin1582 -> 1582 bytes
-rw-r--r--images/rss.gif (renamed from rss.gif)bin401 -> 401 bytes
-rw-r--r--jsScuttle.php4
-rw-r--r--templates/bookmarks.tpl.php2
4 files changed, 3 insertions, 3 deletions
diff --git a/loading.gif b/images/loading.gif
index 859126e..859126e 100644
--- a/loading.gif
+++ b/images/loading.gif
Binary files differ
diff --git a/rss.gif b/images/rss.gif
index 094ba10..094ba10 100644
--- a/rss.gif
+++ b/images/rss.gif
Binary files 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(<?php echo $root; ?>loading.gif)';
+ usernameField.style.backgroundImage = 'url(<?php echo $root; ?>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(<?php echo $root; ?>loading.gif)';
+ title.style.backgroundImage = 'url(<?php echo $root; ?>images/loading.gif)';
if (response != null) {
title.style.backgroundImage = 'none';
title.value = response;
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 = '<a style="background:#FFFFFF" href="'. $rsschannels[$i][1] .'" title="'. $rsschannels[$i][0] .'"><img src="'. $GLOBALS['root'] .'rss.gif" width="16" height="16" alt="'. $rsschannels[$i][0] .'" /></a>';
+ $brss = '<a style="background:#FFFFFF" href="'. $rsschannels[$i][1] .'" title="'. $rsschannels[$i][0] .'"><img src="'. $GLOBALS['root'] .'images/rss.gif" width="16" height="16" alt="'. $rsschannels[$i][0] .'" /></a>';
}
echo '<p class="paging">'. $bfirst .'<span> / </span>'. $bprev .'<span> / </span>'. $bnext .'<span> / </span>'. $blast .'<span> / </span>'. sprintf(T_('Page %d of %d'), $page, $totalpages) ." ". $brss ." </p>\n";