|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Hello world
I've just downloaded the pov doc in html format. Links for images
are like "Imagennn.gif" and files names are all lowercase.
Any tips for correcting this probleme ?
--
======== Thierry Boudet ========
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Thierry <oul### [at] chezcom> writes:
> I've just downloaded the pov doc in html format. Links for images
> are like "Imagennn.gif" and files names are all lowercase.
>
> Any tips for correcting this probleme ?
http://www.302-consulting.fr.eu.org:8080/~roland/realisations/
contains a Perl script to convert filenames. To capitalise them, for
instance. Maybe the one used to convert Chris Colefax's files would
work, too.
--
Roland Mas
Sauvez les castors, plantez des arbres.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Thierry wrote:
>
> Hello world
>
> I've just downloaded the pov doc in html format. Links for images
> are like "Imagennn.gif" and files names are all lowercase.
>
> Any tips for correcting this probleme ?
>
> --
> ======== Thierry Boudet ========
I've been meaning to distribute a Perl script expressly for this
purpose. I threw something together for my own use, but I wasn't
satisfied with it. At some point in the (possibly near) future, I'll
release one.
--
Mark Gordon
mtg### [at] povrayorg
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Thierry wrote:
>
> Hello world
>
> I've just downloaded the pov doc in html format. Links for images
> are like "Imagennn.gif" and files names are all lowercase.
>
> Any tips for correcting this probleme ?
>
> --
> ======== Thierry Boudet ========
Here a few commands doing it for tcsh. use your favorite shell and it's
for command
foreach name ( image* )
foreach? mv $name `echo $name|sed {s/i/I/}`
foreach? end
It's a bit late and out of date, but it was still in my drafts box, so
here it goes.
Axel
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Mark Gordon wrote:
>
> I've been meaning to distribute a Perl script expressly for this
> purpose. I threw something together for my own use, but I wasn't
> satisfied with it. At some point in the (possibly near) future, I'll
> release one.
I included that Perl script in 3.1g. In addition to fixing the image
links,
it replaces the ™ with something more widely supported and
converts all the .htm to .html.
--
Mark Gordon
mtg### [at] povrayorg
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |