From 642846d0d18e517d865b065faa10b79929dc9758 Mon Sep 17 00:00:00 2001 From: Anne Nicolas Date: Tue, 27 Oct 2009 11:30:46 +0000 Subject: cleaning add translation for desktop file add fr translation --- update-indexhtml | 66 -------------------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100755 update-indexhtml (limited to 'update-indexhtml') diff --git a/update-indexhtml b/update-indexhtml deleted file mode 100755 index fa2cbae..0000000 --- a/update-indexhtml +++ /dev/null @@ -1,66 +0,0 @@ -#!/bin/sh -#--------------------------------------------------------------- -# Project : Mandrakelinux -# Module : indexhtml -# File : update-indexhtml -# Version : $Id$ -# Author : Frederic Lepied -# Created On : Wed Jan 19 16:48:08 2005 -# Purpose : create the index.html file which is opened -# by default by the web browsers. -#--------------------------------------------------------------- - -datadir=/usr/share -idxdir=$datadir/mdk/indexhtml -docdir=$datadir/doc/HTML - -[ -d $idxdir ] || exit 1 -[ -d $docdir ] || exit 1 - -function get() { - wget -q -N -O $docdir/index.tmp $1 && \ - tar jxf $docdir/index.tmp -C $docdir && exit 0 -} - -if [ -r /etc/sysconfig/i18n ] ; then - . /etc/sysconfig/i18n - if [ -n "$LANGUAGE" ]; then - LISTLANG="`echo $LANGUAGE | tr ':' ' '`" ; - else - if [ -n "$LANG" ]; then - LISTLANG="$LANG" - fi - fi -fi - -( -if [ "$1" != nonetwork ] && /sbin/ip route | grep -q default; then - URL=http://www.mandrakelinux.com/dist/2005LE - if [ -r /etc/profile.d/proxy.sh ]; then - . /etc/profile.d/proxy.sh - fi - for i in $LISTLANG; do - get $URL/index-$i.tar.bz2 - - lang=`echo $i | cut -b-2` - if [ "$lang" != "$i" ]; then - get $URL/index-$lang.tar.bz2 - fi - done -fi - -for i in $LISTLANG en; do - if [ -r $idxdir/index-$i.html ]; then - cp -pf $idxdir/index-$i.html $docdir/index.html - break - else - lang=`echo $i | cut -b-2` - if [ -r $idxdir/index-$lang.html ]; then - cp -pf $idxdir/index-$lang.html $docdir/index.html - break; - fi - fi -done -) & - -# update-indexhtml ends here -- cgit v1.2.1