~ubuntu-branches/ubuntu/precise/wget/precise-proposed

« back to all changes in this revision

Viewing changes to doc/texi2pod.pl.in

  • Committer: Bazaar Package Importer
  • Author(s): Noèl Köthe
  • Date: 2005-06-26 16:46:25 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050626164625-jjcde8hyztx7xq7o
Tags: 1.10-2
* wget-fix_error--save-headers patch from upstream
  (closes: Bug#314728)
* don't pattern-match server redirects patch from upstream
  (closes: Bug#163243)
* correct de.po typos
  (closes: Bug#313883)
* wget-E_html_behind_file_counting fix problem with adding the
  numbers after the html extension
* updated Standards-Version: to 3.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
    # Now the ones that have to be replaced by special escapes
205
205
    # (which will be turned back into text by unmunge())
206
206
    s/&/&/g;
 
207
    s/\@\@/&at;/g;
207
208
    s/\@\{/{/g;
208
209
    s/\@\}/}/g;
209
 
    s/\@\@/&at;/g;
210
210
 
211
211
    # Inside a verbatim block, handle @var specially.
212
212
    if ($shift ne "") {
274
274
        $ic =~ s/\@(?:code|kbd)/C/;
275
275
        $ic =~ s/\@(?:dfn|var|emph|cite|i)/I/;
276
276
        $ic =~ s/\@(?:file)/F/;
 
277
        $ic =~ s/\@(?:asis)/S/; # punt
277
278
        $_ = "\n=over 4\n";
278
279
    };
279
280
 
307
308
$sects{NAME} = "$fn \- $tl\n";
308
309
$sects{FOOTNOTES} .= "=back\n" if exists $sects{FOOTNOTES};
309
310
 
310
 
for $sect (qw(NAME SYNOPSIS DESCRIPTION OPTIONS ENVIRONMENT FILES
 
311
for $sect (qw(NAME SYNOPSIS DESCRIPTION OPTIONS ENVIRONMENT EXAMPLES FILES
311
312
              BUGS NOTES FOOTNOTES SEEALSO AUTHOR COPYRIGHT)) {
312
313
    if(exists $sects{$sect}) {
313
314
        $head = $sect;