[Mplayer-cvslog] CVS: main/TOOLS TOCrenumber.sh,NONE,1.1
Winner of tha face compo
gabucino at mplayerhq.hu
Mon Oct 21 23:00:00 CEST 2002
- Previous message: [Mplayer-cvslog] CVS: main/help help_mp-it.h,1.12,1.13
- Next message: [Mplayer-cvslog] CVS: main/DOCS/Hungarian bugreports.html,1.24,1.25 cd-dvd.html,1.35,1.36 codecs.html,1.54,1.55 documentation.html,1.160,1.161 encoding.html,1.36,1.37 example.conf,1.16,1.17 faq.html,1.62,1.63 formats.html,1.24,1.25 sound.html,1.35,1.36 video.html,1.63,1.64
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/TOOLS
In directory mail:/var/tmp.root/cvs-serv7867/TOOLS
Added Files:
TOCrenumber.sh
Log Message:
small helper script for DOCS translators (to change numeric links to
alphabetic)
Read it for usage instructions.
--- NEW FILE ---
#!/bin/sh
#
# Very simple tool to convert numeric TOC links to alphabetic (for translators,
# it is already done in english DOCS)
#
# Usage:
# cd DOCS/French
# ...
# TOCrenumber.sh 2.3.1.2.1 xv_3dfx
# ...
#
# by Gabucino
#
for i in *html; do
cat $i | sed s/#$1\"/#$2\"/ > $i.new
mv -f $i.new $i
cat $i | sed s/NAME="$1"\>/NAME="$2"\>/ > $i.new
mv -f $i.new $i
done
- Previous message: [Mplayer-cvslog] CVS: main/help help_mp-it.h,1.12,1.13
- Next message: [Mplayer-cvslog] CVS: main/DOCS/Hungarian bugreports.html,1.24,1.25 cd-dvd.html,1.35,1.36 codecs.html,1.54,1.55 documentation.html,1.160,1.161 encoding.html,1.36,1.37 example.conf,1.16,1.17 faq.html,1.62,1.63 formats.html,1.24,1.25 sound.html,1.35,1.36 video.html,1.63,1.64
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list