[chora] Re: [cvs] commit: chora/graphics/mime text.gif
Roman Neuhauser
neuhauser@bellavista.cz
Tue, 16 Jul 2002 00:03:53 +0200
---------------------- multipart/mixed attachment
> To: cvs@lists.horde.org
> From: "Chuck Hagenbuch" <chuck@horde.org>
> Date: Mon, 8 Jul 2002 10:41:46 -0700 (PDT)
> Subject: [cvs] commit: chora/graphics/mime text.gif
>
> chuck 2002/07/08 10:41:46 PDT
>
> Removed files:
> graphics/mime text.gif
> Log:
> no longer necessary
>
> Revision Changes Path
> 1.5 +0 -2 chora/graphics/mime/Attic/text.gif (dead)
>
> Chora Links:
> http://cvs.horde.org/co.php/chora/graphics/mime/Attic/text.gif?r=1.4
chuck, i've just set up a freshly updated (and hopefully not too
misconfigured - i haven't followed for just too long) horde + chora.
when i browse a dir, all mime types have their icons, except for the
generic type. i get
<img src="/horde/chora/graphics/mime/text.gif" ...>
instead of
<img src="/horde/graphics/mime/text.gif" ...>
do you know what's up?
i'm also including a nitpick patch for templates/directory/file.inc
--
FreeBSD 4.6-STABLE
11:51PM up 2 days, 14:05, 4 users, load averages: 0.00, 0.00, 0.00
---------------------- multipart/mixed attachment
the value of the alt attribute for file's icons img tag in dir
listings contains a spurious apostrofe. removing.
Index: templates/directory/file.inc
===================================================================
RCS file: /repository/chora/templates/directory/file.inc,v
retrieving revision 1.14
diff -u -r1.14 file.inc
--- templates/directory/file.inc 15 Jun 2002 05:03:47 -0000 1.14
+++ templates/directory/file.inc 15 Jul 2002 21:56:50 -0000
@@ -5,7 +5,7 @@
<?php if ($attic) : ?>
<?php echo Horde::img('deleted.gif', _("Deleted File"), 'width="16" height="16"') ?>
<?php else: ?>
- <img src="<?php echo $icon ?>" border="0" width="16" height="16" alt="<?php echo _("File") ?>'" />
+ <img src="<?php echo $icon ?>" border="0" width="16" height="16" alt="<?php echo _("File") ?>" />
<?php endif; ?>
<?php echo $name ?></a>
</td>
---------------------- multipart/mixed attachment--