/usr/share/latex2html/IndicTeX-HTML/telugu.perl is in latex2html 2008-debian1-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | # $Id: telugu.perl,v 1.1 1998/01/22 04:33:25 RRM Exp $
# TELUGU.PERL by Ross Moore <ross@mpce.mq.edu.au> 17-1-98
# Mathematics Department, Macquarie University, Sydney, Australia.
#
# Style for LaTeX2HTML v98.1 to construct images of traditional
# Indic scripts, using:
#
# Indica pre-processor and sinhala fonts: sinha, sinhb, sinhc
# by Yannis Haralambous <Yannis.Haralambous@univ-lille1.fr>
#
# sinhala.sty package for LaTeX-2e
# by Dominik Wujastyk <D.Wujastyk@ucl.ac.uk>
#
# extended for Prasad Dharmasena's <pkd@isr.umd.edu>
# `samanala' transliteration scheme
# by Vasantha Saparamadu <vsaparam@ocs.mq.edu.au>
#
# These resources are *not* included with this package.
# Obtain them from CTAN: http//ctan.tug.org/ctan
#
# ===================================================================
# This package requires the corresponding LaTeX package: telugu.sty .
# It also requiress: indica.perl and indica.sty .
#
# With LaTeX2HTML the options on the \usepackage line specify
# preprocessor commands to use with Indica.
#
# Usage:
#
# \usepackage{telugu} %| pre-process source using Indica
# \usepackage[indica]{telugu} %| with #ALIAS TELUGU T
# \usepackage[preprocess]{telugu}%| and #ALIAS NIL N
#
# \usepackage[tel]{telugu} %| also use #ALIAS TELUGU TEL
#
#
# options affecting Input-forms
#
# \usepackage[7bit]{telugu} %| Velthuis' Hindi/Sanskri transcription
# \usepackage[csx]{telugu} %| 8-bit Sanskrit extension of ISO 646
# \usepackage[latex]{telugu} %| standardized LaTeX transcription form
# \usepackage[unicode]{telugu} %| ISO 10646-1 + Sinhalese extension
# \usepackage[samanala]{telugu}%| Prasad Dharmasena's transliteration
#
# ===================================================================
# Warning
#
# This package works BOTH with source *before* pre-processing
# and also *after* having pre-processed.
# The latter may create more smaller images of individual syllabes,
# whereas the former tends to create larger images of whole lines,
# paragraphs, sections, etc.
# ===================================================================
#
# Change Log:
# ===========
# $Log: telugu.perl,v $
# Revision 1.1 1998/01/22 04:33:25 RRM
# LaTeX2HTML interfaces to packages and pre-processors for including
# traditional Indic scripts (as images) in HTML documents
#
# see the .perl files for documentation on usage
# see the corresponding .sty file for the LaTeX-2e interface
#
#
package main;
# preprocessor: indica
sub do_telugu_indica { &do_indica_telugu() }
sub do_telugu_preprocess { &do_indica_telugu() }
sub do_telugu_tel { &do_indica_tel() }
# input modes
sub do_telugu_7bit { &do_indica_7bit() }
sub do_telugu_csx { &do_indica_csx() }
sub do_telugu_latex { &do_indica_latex() }
sub do_telugu_unicode { &do_indica_unicode() }
sub do_telugu_samanala { &do_indica_samanala() }
# load Indica for #TELUGU
&do_require_package('indica');
if (defined &do_indica_telugu) {
&do_indica_telugu()
} else { die "\n indica.perl was not loaded, sorry" }
# override Indica variables here
#
# $INDICA = 'indica';
# $INDICA_MODE = 'sevenbit';
1; # Not really necessary...
|