Codebase list texinfo / 4645ea2
Imported Upstream version 5.0.dfsg.1 Norbert Preining 11 years ago
421 changed file(s) with 12441 addition(s) and 1854 deletion(s). Raw diff Collapse all Expand all
0 2013-02-16 Karl Berry <karl@gnu.org>
1
2 * Version 5.0.
3
4 * doc/texinfo.txi: remove zyx placeholder.
5
6 2013-02-13 Sergey Poznyakoff <gray@gnu.org.ua>
7
8 * info/window.c (window_make_window): Initialize allocated
9 memory.
10 (string_to_node): Likewise.
11 * info/filesys.c (filesys_read_info_file): Always terminate
12 the contents with 0.
13 Fix 700354@bugs.debian.org.
14
15 2013-02-12 Karl Berry <karl@gnu.org>
16
17 * pretest 4.13.97.
18
19 2013-02-10 Karl Berry <karl@gnu.org>
20
21 * info/tag.c (tag_found_keyword): new fn, including a check
22 for the text buffer being realloc-ed, invalidating kw. Sigh.
23 (tag_image): call it (twice).
24
25 2013-02-10 Patrice Dumas <pertusus@free.fr>
26
27 * autogen.sh, tp/maintain/regenerate_cmd_tests.sh, tp/tests/*:
28 Generate automatically test file scripts for each test in
29 tp/tests/*.
30 * tp/Makefile.am: run directly tap tests in Makefile.am.
31
32 2013-02-09 Patrice Dumas <pertusus@free.fr>
33
34 * configure.ac, tp/Makefile.am, tp/maintain/regenerate_file_lists.pl:
35 prepare for running directly tap tests in Makefile.am.
36
37 2013-02-07 Karl Berry <karl@gnu.org>
38
39 * contrib/booklet.mak: new contribution from John Darrington.
40
41 * Pod-Simple-Texinfo/pod2texi.pl (preamble): back to inserting
42 the default.
43 * contrib/perldoc-all/GNUmakefile (pod2texi_args): omit it.
44
045 2013-02-04 Karl Berry <karl@gnu.org>
146
2 * pretest 4.13.95.
47 * pretest 4.13.96.
348
449 * contrib/perldoc-all/GNUmakefile (distclean): new target.
550 * Makefile.am (dist-hook): use it.
7373 DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
7474 $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
7575 $(top_srcdir)/configure $(am__configure_deps) \
76 $(srcdir)/config.in ABOUT-NLS README-alpha COPYING TODO \
77 build-aux/compile build-aux/config.guess \
78 build-aux/config.rpath build-aux/config.sub build-aux/depcomp \
79 build-aux/install-sh build-aux/mdate-sh build-aux/missing \
80 build-aux/texinfo.tex $(top_srcdir)/build-aux/compile \
76 $(srcdir)/config.in ABOUT-NLS COPYING TODO build-aux/compile \
77 build-aux/config.guess build-aux/config.rpath \
78 build-aux/config.sub build-aux/depcomp build-aux/install-sh \
79 build-aux/mdate-sh build-aux/missing build-aux/texinfo.tex \
80 $(top_srcdir)/build-aux/compile \
8181 $(top_srcdir)/build-aux/config.guess \
8282 $(top_srcdir)/build-aux/config.rpath \
8383 $(top_srcdir)/build-aux/config.sub \
8484 $(top_srcdir)/build-aux/install-sh \
85 $(top_srcdir)/build-aux/missing
85 $(top_srcdir)/build-aux/missing \
86 $(top_srcdir)/build-aux/tap-driver.sh
8687 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
8788 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \
8889 $(top_srcdir)/gnulib/m4/alloca.m4 \
0 $Id: NEWS,v 1.228 2013/02/04 01:34:46 karl Exp $
0 $Id: NEWS,v 1.230 2013/02/16 23:59:29 karl Exp $
11 This NEWS file records noteworthy changes, very tersely.
22 See the manual for detailed information.
33
2222
2323 -------------------------------------------------------------------------------
2424
25 5.0 (16 February 2013)
2526 * Language:
2627 . Texinfo commands are supported in node names.
2728 . #line directives are recognized.
106107
107108 * Documentation:
108109 . new appendix with a technical description of the Info file format.
109 . extensive information on the customizations of the HTML output that
110 are now possible.
110 . information on the customizations of the HTML output now possible.
111111
112112 * Distribution:
113113 . new file htmlxref.cnf is installed to support cross-manual
00 #! /usr/bin/env perl
1 # $Id: pod2texi.pl,v 1.29 2013/02/04 22:52:25 karl Exp $
1 # $Id: pod2texi.pl,v 1.30 2013/02/07 18:14:46 karl Exp $
22 # pod2texi -- convert Pod to Texinfo.
33 # Copyright 2012, 2013 Free Software Foundation, Inc.
44 #
447447 $outfile_name .= '.info';
448448
449449 if (! defined ($preamble)) {
450 $preamble = ($base_level > 0) ? ""
451 : '\input texinfo
450 $preamble = '\input texinfo
452451 @setfilename ' . Pod::Simple::Texinfo::_protect_text($outfile_name) . "
453452 \@documentencoding utf-8
454453 \@settitle $top
553552
554553 =item B<--preamble>=I<STR>
555554
556 Insert I<STR> as top boilerplate before includes. For standalone
557 documents (C<--base-level> is 0), the default is a minimal beginning for
558 a Texinfo document, and sets C<@documentencoding> to C<utf-8>. For
559 included documents (C<--base-level> is nonzero), it is the empty string,
560 under the assumption that you will want your own top-level material,
561 and to C<@include> the generated files.
555 Insert I<STR> as top boilerplate before includes. The default is a
556 minimal beginning for a Texinfo document, and sets C<@documentencoding>
557 to C<utf-8> (because the output is written that way).
562558
563559 =item B<--subdir>=I<NAME>
564560
+0
-27
README-alpha less more
0 $Id: README-alpha,v 1.5 2012/11/17 23:32:09 karl Exp $
1 This is the README-alpha file for GNU Texinfo.
2
3 Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 2001, 2002, 2003, 2004, 2005, 2011, 2012
5 Free Software Foundation, Inc.
6
7 Copying and distribution of this file, with or without modification,
8 are permitted in any medium without royalty provided the copyright
9 notice and this notice are preserved.
10
11 This is a test release!
12
13 The latest test release (if any) is available at
14 ftp://alpha.gnu.org/gnu/texinfo/
15
16 Please email comments and problem reports to bug-texinfo@gnu.org. You
17 are welcome to join that mailing list; to do so, please visit
18 http://lists.gnu.org/mailman/listinfo/bug-texinfo. (There is no
19 dedicated mailing list for pretests any more.)
20
21 If you see a problem in this release that you've already reported, feel
22 free to re-report it -- it's good to get a reminder. If you sent a
23 patch for a previous release, and you haven't received any feedback
24 about it, please do re-send it, it likely got lost.
25
26 For development environment information, see README.dev.
0 $Id: README-hacking,v 1.5 2013/02/05 00:45:47 karl Exp $
0 $Id: README-hacking,v 1.7 2013/02/16 23:59:29 karl Exp $
11 This file describes the development environment for Texinfo.
22
33 Copyright 2002, 2003, 2005, 2006, 2007, 2008, 2010, 2011, 2012, 2013
106106 make -C doc wwwdoc-build # and eventually -install, for official.
107107 (export MALLOC_CHECK_=2; make distcheck) # repeat until clean
108108 cvs commit # when clean, then distcheck to be sure.
109 make diff # for official
110 rwtar *.tar.* # consistent permissions in tarball?
109 #create diff for official, see below
111110
112111 - To do the actual upload:
113112 pkg=texinfo
114 ver=4.13.95
113 ver=4.13.97
115114
116115 then do one of:
117116 gnupload --to alpha.gnu.org:$pkg $pkg-$ver.tar.xz #pretest
139138 cvs tag -b texinfo_`echo $ver | tr . _`
140139
141140 ... update texinfo at tug.org (contact root@tug.org); from last time:
142 prev=4.12
143 ver=4.13
141 prev=4.13
142 ver=5.0
144143 cd ~ftp/tex
145144 rm -rf texinfo-$prev*
146 cp ~/src/texinfo/texinfo-$ver.tar.{gz,lzma} .
145 cp ~/src/texinfo/texinfo-$ver.tar.{gz,xz} .
147146 tar xzf texinfo-$ver.tar.gz
148147 ln -s texinfo-$ver.tar.gz texinfo.tar.gz
149 !!:gs/gz/lzma
148 !!:gs/gz/xz
150149 relink texinfo $ver
151150
152151 ... announcements:
153152 news item at savannah.
154 send announcement to info-gnu.
153 send announcement to info-gnu, cc bug-texinfo.
11 # Attempt to guess a canonical system name.
22 # Copyright 1992-2013 Free Software Foundation, Inc.
33
4 timestamp='2013-02-04'
4 timestamp='2013-02-12'
55
66 # This file is free software; you can redistribute it and/or modify it
77 # under the terms of the GNU General Public License as published by
952952 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
953953 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
954954 ;;
955 or1k:Linux:*:*)
956 echo ${UNAME_MACHINE}-unknown-linux-gnu
957 exit ;;
955958 or32:Linux:*:*)
956959 echo ${UNAME_MACHINE}-unknown-linux-gnu
957960 exit ;;
11 # Configuration validation subroutine script.
22 # Copyright 1992-2013 Free Software Foundation, Inc.
33
4 timestamp='2013-02-04'
4 timestamp='2013-02-12'
55
66 # This file is free software; you can redistribute it and/or modify it
77 # under the terms of the GNU General Public License as published by
295295 | nios | nios2 | nios2eb | nios2el \
296296 | ns16k | ns32k \
297297 | open8 \
298 | or32 \
298 | or1k | or32 \
299299 | pdp10 | pdp11 | pj | pjl \
300300 | powerpc | powerpc64 | powerpc64le | powerpcle \
301301 | pyramid \
15881588 mips*-*)
15891589 os=-elf
15901590 ;;
1591 or1k-*)
1592 os=-elf
1593 ;;
15911594 or32-*)
15921595 os=-coff
15931596 ;;
0 #! /bin/sh
1 # Copyright (C) 2011-2013 Free Software Foundation, Inc.
2 #
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2, or (at your option)
6 # any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16 # As a special exception to the GNU General Public License, if you
17 # distribute this file as part of a program that contains a
18 # configuration script generated by Autoconf, you may include it under
19 # the same distribution terms that you use for the rest of that program.
20
21 # This file is maintained in Automake, please report
22 # bugs to <bug-automake@gnu.org> or send patches to
23 # <automake-patches@gnu.org>.
24
25 scriptversion=2011-12-27.17; # UTC
26
27 # Make unconditional expansion of undefined variables an error. This
28 # helps a lot in preventing typo-related bugs.
29 set -u
30
31 me=tap-driver.sh
32
33 fatal ()
34 {
35 echo "$me: fatal: $*" >&2
36 exit 1
37 }
38
39 usage_error ()
40 {
41 echo "$me: $*" >&2
42 print_usage >&2
43 exit 2
44 }
45
46 print_usage ()
47 {
48 cat <<END
49 Usage:
50 tap-driver.sh --test-name=NAME --log-file=PATH --trs-file=PATH
51 [--expect-failure={yes|no}] [--color-tests={yes|no}]
52 [--enable-hard-errors={yes|no}] [--ignore-exit]
53 [--diagnostic-string=STRING] [--merge|--no-merge]
54 [--comments|--no-comments] [--] TEST-COMMAND
55 The \`--test-name', \`--log-file' and \`--trs-file' options are mandatory.
56 END
57 }
58
59 # TODO: better error handling in option parsing (in particular, ensure
60 # TODO: $log_file, $trs_file and $test_name are defined).
61 test_name= # Used for reporting.
62 log_file= # Where to save the result and output of the test script.
63 trs_file= # Where to save the metadata of the test run.
64 expect_failure=0
65 color_tests=0
66 merge=0
67 ignore_exit=0
68 comments=0
69 diag_string='#'
70 while test $# -gt 0; do
71 case $1 in
72 --help) print_usage; exit $?;;
73 --version) echo "$me $scriptversion"; exit $?;;
74 --test-name) test_name=$2; shift;;
75 --log-file) log_file=$2; shift;;
76 --trs-file) trs_file=$2; shift;;
77 --color-tests) color_tests=$2; shift;;
78 --expect-failure) expect_failure=$2; shift;;
79 --enable-hard-errors) shift;; # No-op.
80 --merge) merge=1;;
81 --no-merge) merge=0;;
82 --ignore-exit) ignore_exit=1;;
83 --comments) comments=1;;
84 --no-comments) comments=0;;
85 --diagnostic-string) diag_string=$2; shift;;
86 --) shift; break;;
87 -*) usage_error "invalid option: '$1'";;
88 esac
89 shift
90 done
91
92 test $# -gt 0 || usage_error "missing test command"
93
94 case $expect_failure in
95 yes) expect_failure=1;;
96 *) expect_failure=0;;
97 esac
98
99 if test $color_tests = yes; then
100 init_colors='
101 color_map["red"]="" # Red.
102 color_map["grn"]="" # Green.
103 color_map["lgn"]="" # Light green.
104 color_map["blu"]="" # Blue.
105 color_map["mgn"]="" # Magenta.
106 color_map["std"]="" # No color.
107 color_for_result["ERROR"] = "mgn"
108 color_for_result["PASS"] = "grn"
109 color_for_result["XPASS"] = "red"
110 color_for_result["FAIL"] = "red"
111 color_for_result["XFAIL"] = "lgn"
112 color_for_result["SKIP"] = "blu"'
113 else
114 init_colors=''
115 fi
116
117 # :; is there to work around a bug in bash 3.2 (and earlier) which
118 # does not always set '$?' properly on redirection failure.
119 # See the Autoconf manual for more details.
120 :;{
121 (
122 # Ignore common signals (in this subshell only!), to avoid potential
123 # problems with Korn shells. Some Korn shells are known to propagate
124 # to themselves signals that have killed a child process they were
125 # waiting for; this is done at least for SIGINT (and usually only for
126 # it, in truth). Without the `trap' below, such a behaviour could
127 # cause a premature exit in the current subshell, e.g., in case the
128 # test command it runs gets terminated by a SIGINT. Thus, the awk
129 # script we are piping into would never seen the exit status it
130 # expects on its last input line (which is displayed below by the
131 # last `echo $?' statement), and would thus die reporting an internal
132 # error.
133 # For more information, see the Autoconf manual and the threads:
134 # <http://lists.gnu.org/archive/html/bug-autoconf/2011-09/msg00004.html>
135 # <http://mail.opensolaris.org/pipermail/ksh93-integration-discuss/2009-February/004121.html>
136 trap : 1 3 2 13 15
137 if test $merge -gt 0; then
138 exec 2>&1
139 else
140 exec 2>&3
141 fi
142 "$@"
143 echo $?
144 ) | LC_ALL=C ${AM_TAP_AWK-awk} \
145 -v me="$me" \
146 -v test_script_name="$test_name" \
147 -v log_file="$log_file" \
148 -v trs_file="$trs_file" \
149 -v expect_failure="$expect_failure" \
150 -v merge="$merge" \
151 -v ignore_exit="$ignore_exit" \
152 -v comments="$comments" \
153 -v diag_string="$diag_string" \
154 '
155 # FIXME: the usages of "cat >&3" below could be optimized when using
156 # FIXME: GNU awk, and/on on systems that supports /dev/fd/.
157
158 # Implementation note: in what follows, `result_obj` will be an
159 # associative array that (partly) simulates a TAP result object
160 # from the `TAP::Parser` perl module.
161
162 ## ----------- ##
163 ## FUNCTIONS ##
164 ## ----------- ##
165
166 function fatal(msg)
167 {
168 print me ": " msg | "cat >&2"
169 exit 1
170 }
171
172 function abort(where)
173 {
174 fatal("internal error " where)
175 }
176
177 # Convert a boolean to a "yes"/"no" string.
178 function yn(bool)
179 {
180 return bool ? "yes" : "no";
181 }
182
183 function add_test_result(result)
184 {
185 if (!test_results_index)
186 test_results_index = 0
187 test_results_list[test_results_index] = result
188 test_results_index += 1
189 test_results_seen[result] = 1;
190 }
191
192 # Whether the test script should be re-run by "make recheck".
193 function must_recheck()
194 {
195 for (k in test_results_seen)
196 if (k != "XFAIL" && k != "PASS" && k != "SKIP")
197 return 1
198 return 0
199 }
200
201 # Whether the content of the log file associated to this test should
202 # be copied into the "global" test-suite.log.
203 function copy_in_global_log()
204 {
205 for (k in test_results_seen)
206 if (k != "PASS")
207 return 1
208 return 0
209 }
210
211 # FIXME: this can certainly be improved ...
212 function get_global_test_result()
213 {
214 if ("ERROR" in test_results_seen)
215 return "ERROR"
216 if ("FAIL" in test_results_seen || "XPASS" in test_results_seen)
217 return "FAIL"
218 all_skipped = 1
219 for (k in test_results_seen)
220 if (k != "SKIP")
221 all_skipped = 0
222 if (all_skipped)
223 return "SKIP"
224 return "PASS";
225 }
226
227 function stringify_result_obj(result_obj)
228 {
229 if (result_obj["is_unplanned"] || result_obj["number"] != testno)
230 return "ERROR"
231
232 if (plan_seen == LATE_PLAN)
233 return "ERROR"
234
235 if (result_obj["directive"] == "TODO")
236 return result_obj["is_ok"] ? "XPASS" : "XFAIL"
237
238 if (result_obj["directive"] == "SKIP")
239 return result_obj["is_ok"] ? "SKIP" : COOKED_FAIL;
240
241 if (length(result_obj["directive"]))
242 abort("in function stringify_result_obj()")
243
244 return result_obj["is_ok"] ? COOKED_PASS : COOKED_FAIL
245 }
246
247 function decorate_result(result)
248 {
249 color_name = color_for_result[result]
250 if (color_name)
251 return color_map[color_name] "" result "" color_map["std"]
252 # If we are not using colorized output, or if we do not know how
253 # to colorize the given result, we should return it unchanged.
254 return result
255 }
256
257 function report(result, details)
258 {
259 if (result ~ /^(X?(PASS|FAIL)|SKIP|ERROR)/)
260 {
261 msg = ": " test_script_name
262 add_test_result(result)
263 }
264 else if (result == "#")
265 {
266 msg = " " test_script_name ":"
267 }
268 else
269 {
270 abort("in function report()")
271 }
272 if (length(details))
273 msg = msg " " details
274 # Output on console might be colorized.
275 print decorate_result(result) msg
276 # Log the result in the log file too, to help debugging (this is
277 # especially true when said result is a TAP error or "Bail out!").
278 print result msg | "cat >&3";
279 }
280
281 function testsuite_error(error_message)
282 {
283 report("ERROR", "- " error_message)
284 }
285
286 function handle_tap_result()
287 {
288 details = result_obj["number"];
289 if (length(result_obj["description"]))
290 details = details " " result_obj["description"]
291
292 if (plan_seen == LATE_PLAN)
293 {
294 details = details " # AFTER LATE PLAN";
295 }
296 else if (result_obj["is_unplanned"])
297 {
298 details = details " # UNPLANNED";
299 }
300 else if (result_obj["number"] != testno)
301 {
302 details = sprintf("%s # OUT-OF-ORDER (expecting %d)",
303 details, testno);
304 }
305 else if (result_obj["directive"])
306 {
307 details = details " # " result_obj["directive"];
308 if (length(result_obj["explanation"]))
309 details = details " " result_obj["explanation"]
310 }
311
312 report(stringify_result_obj(result_obj), details)
313 }
314
315 # `skip_reason` should be empty whenever planned > 0.
316 function handle_tap_plan(planned, skip_reason)
317 {
318 planned += 0 # Avoid getting confused if, say, `planned` is "00"
319 if (length(skip_reason) && planned > 0)
320 abort("in function handle_tap_plan()")
321 if (plan_seen)
322 {
323 # Error, only one plan per stream is acceptable.
324 testsuite_error("multiple test plans")
325 return;
326 }
327 planned_tests = planned
328 # The TAP plan can come before or after *all* the TAP results; we speak
329 # respectively of an "early" or a "late" plan. If we see the plan line
330 # after at least one TAP result has been seen, assume we have a late
331 # plan; in this case, any further test result seen after the plan will
332 # be flagged as an error.
333 plan_seen = (testno >= 1 ? LATE_PLAN : EARLY_PLAN)
334 # If testno > 0, we have an error ("too many tests run") that will be
335 # automatically dealt with later, so do not worry about it here. If
336 # $plan_seen is true, we have an error due to a repeated plan, and that
337 # has already been dealt with above. Otherwise, we have a valid "plan
338 # with SKIP" specification, and should report it as a particular kind
339 # of SKIP result.
340 if (planned == 0 && testno == 0)
341 {
342 if (length(skip_reason))
343 skip_reason = "- " skip_reason;
344 report("SKIP", skip_reason);
345 }
346 }
347
348 function extract_tap_comment(line)
349 {
350 if (index(line, diag_string) == 1)
351 {
352 # Strip leading `diag_string` from `line`.
353 line = substr(line, length(diag_string) + 1)
354 # And strip any leading and trailing whitespace left.
355 sub("^[ \t]*", "", line)
356 sub("[ \t]*$", "", line)
357 # Return what is left (if any).
358 return line;
359 }
360 return "";
361 }
362
363 # When this function is called, we know that line is a TAP result line,
364 # so that it matches the (perl) RE "^(not )?ok\b".
365 function setup_result_obj(line)
366 {
367 # Get the result, and remove it from the line.
368 result_obj["is_ok"] = (substr(line, 1, 2) == "ok" ? 1 : 0)
369 sub("^(not )?ok[ \t]*", "", line)
370
371 # If the result has an explicit number, get it and strip it; otherwise,
372 # automatically assing the next progresive number to it.
373 if (line ~ /^[0-9]+$/ || line ~ /^[0-9]+[^a-zA-Z0-9_]/)
374 {
375 match(line, "^[0-9]+")
376 # The final `+ 0` is to normalize numbers with leading zeros.
377 result_obj["number"] = substr(line, 1, RLENGTH) + 0
378 line = substr(line, RLENGTH + 1)
379 }
380 else
381 {
382 result_obj["number"] = testno
383 }
384
385 if (plan_seen == LATE_PLAN)
386 # No further test results are acceptable after a "late" TAP plan
387 # has been seen.
388 result_obj["is_unplanned"] = 1
389 else if (plan_seen && testno > planned_tests)
390 result_obj["is_unplanned"] = 1
391 else
392 result_obj["is_unplanned"] = 0
393
394 # Strip trailing and leading whitespace.
395 sub("^[ \t]*", "", line)
396 sub("[ \t]*$", "", line)
397
398 # This will have to be corrected if we have a "TODO"/"SKIP" directive.
399 result_obj["description"] = line
400 result_obj["directive"] = ""
401 result_obj["explanation"] = ""
402
403 if (index(line, "#") == 0)
404 return # No possible directive, nothing more to do.
405
406 # Directives are case-insensitive.
407 rx = "[ \t]*#[ \t]*([tT][oO][dD][oO]|[sS][kK][iI][pP])[ \t]*"
408
409 # See whether we have the directive, and if yes, where.
410 pos = match(line, rx "$")
411 if (!pos)
412 pos = match(line, rx "[^a-zA-Z0-9_]")
413
414 # If there was no TAP directive, we have nothing more to do.
415 if (!pos)
416 return
417
418 # Let`s now see if the TAP directive has been escaped. For example:
419 # escaped: ok \# SKIP
420 # not escaped: ok \\# SKIP
421 # escaped: ok \\\\\# SKIP
422 # not escaped: ok \ # SKIP
423 if (substr(line, pos, 1) == "#")
424 {
425 bslash_count = 0
426 for (i = pos; i > 1 && substr(line, i - 1, 1) == "\\"; i--)
427 bslash_count += 1
428 if (bslash_count % 2)
429 return # Directive was escaped.
430 }
431
432 # Strip the directive and its explanation (if any) from the test
433 # description.
434 result_obj["description"] = substr(line, 1, pos - 1)
435 # Now remove the test description from the line, that has been dealt
436 # with already.
437 line = substr(line, pos)
438 # Strip the directive, and save its value (normalized to upper case).
439 sub("^[ \t]*#[ \t]*", "", line)
440 result_obj["directive"] = toupper(substr(line, 1, 4))
441 line = substr(line, 5)
442 # Now get the explanation for the directive (if any), with leading
443 # and trailing whitespace removed.
444 sub("^[ \t]*", "", line)
445 sub("[ \t]*$", "", line)
446 result_obj["explanation"] = line
447 }
448
449 function get_test_exit_message(status)
450 {
451 if (status == 0)
452 return ""
453 if (status !~ /^[1-9][0-9]*$/)
454 abort("getting exit status")
455 if (status < 127)
456 exit_details = ""
457 else if (status == 127)
458 exit_details = " (command not found?)"
459 else if (status >= 128 && status <= 255)
460 exit_details = sprintf(" (terminated by signal %d?)", status - 128)
461 else if (status > 256 && status <= 384)
462 # We used to report an "abnormal termination" here, but some Korn
463 # shells, when a child process die due to signal number n, can leave
464 # in $? an exit status of 256+n instead of the more standard 128+n.
465 # Apparently, both behaviours are allowed by POSIX (2008), so be
466 # prepared to handle them both. See also Austing Group report ID
467 # 0000051 <http://www.austingroupbugs.net/view.php?id=51>
468 exit_details = sprintf(" (terminated by signal %d?)", status - 256)
469 else
470 # Never seen in practice.
471 exit_details = " (abnormal termination)"
472 return sprintf("exited with status %d%s", status, exit_details)
473 }
474
475 function write_test_results()
476 {
477 print ":global-test-result: " get_global_test_result() > trs_file
478 print ":recheck: " yn(must_recheck()) > trs_file
479 print ":copy-in-global-log: " yn(copy_in_global_log()) > trs_file
480 for (i = 0; i < test_results_index; i += 1)
481 print ":test-result: " test_results_list[i] > trs_file
482 close(trs_file);
483 }
484
485 BEGIN {
486
487 ## ------- ##
488 ## SETUP ##
489 ## ------- ##
490
491 '"$init_colors"'
492
493 # Properly initialized once the TAP plan is seen.
494 planned_tests = 0
495
496 COOKED_PASS = expect_failure ? "XPASS": "PASS";
497 COOKED_FAIL = expect_failure ? "XFAIL": "FAIL";
498
499 # Enumeration-like constants to remember which kind of plan (if any)
500 # has been seen. It is important that NO_PLAN evaluates "false" as
501 # a boolean.
502 NO_PLAN = 0
503 EARLY_PLAN = 1
504 LATE_PLAN = 2
505
506 testno = 0 # Number of test results seen so far.
507 bailed_out = 0 # Whether a "Bail out!" directive has been seen.
508
509 # Whether the TAP plan has been seen or not, and if yes, which kind
510 # it is ("early" is seen before any test result, "late" otherwise).
511 plan_seen = NO_PLAN
512
513 ## --------- ##
514 ## PARSING ##
515 ## --------- ##
516
517 is_first_read = 1
518
519 while (1)
520 {
521 # Involutions required so that we are able to read the exit status
522 # from the last input line.
523 st = getline
524 if (st < 0) # I/O error.
525 fatal("I/O error while reading from input stream")
526 else if (st == 0) # End-of-input
527 {
528 if (is_first_read)
529 abort("in input loop: only one input line")
530 break
531 }
532 if (is_first_read)
533 {
534 is_first_read = 0
535 nextline = $0
536 continue
537 }
538 else
539 {
540 curline = nextline
541 nextline = $0
542 $0 = curline
543 }
544 # Copy any input line verbatim into the log file.
545 print | "cat >&3"
546 # Parsing of TAP input should stop after a "Bail out!" directive.
547 if (bailed_out)
548 continue
549
550 # TAP test result.
551 if ($0 ~ /^(not )?ok$/ || $0 ~ /^(not )?ok[^a-zA-Z0-9_]/)
552 {
553 testno += 1
554 setup_result_obj($0)
555 handle_tap_result()
556 }
557 # TAP plan (normal or "SKIP" without explanation).
558 else if ($0 ~ /^1\.\.[0-9]+[ \t]*$/)
559 {
560 # The next two lines will put the number of planned tests in $0.
561 sub("^1\\.\\.", "")
562 sub("[^0-9]*$", "")
563 handle_tap_plan($0, "")
564 continue
565 }
566 # TAP "SKIP" plan, with an explanation.
567 else if ($0 ~ /^1\.\.0+[ \t]*#/)
568 {
569 # The next lines will put the skip explanation in $0, stripping
570 # any leading and trailing whitespace. This is a little more
571 # tricky in truth, since we want to also strip a potential leading
572 # "SKIP" string from the message.
573 sub("^[^#]*#[ \t]*(SKIP[: \t][ \t]*)?", "")
574 sub("[ \t]*$", "");
575 handle_tap_plan(0, $0)
576 }
577 # "Bail out!" magic.
578 # Older versions of prove and TAP::Harness (e.g., 3.17) did not
579 # recognize a "Bail out!" directive when preceded by leading
580 # whitespace, but more modern versions (e.g., 3.23) do. So we
581 # emulate the latter, "more modern" behaviour.
582 else if ($0 ~ /^[ \t]*Bail out!/)
583 {
584 bailed_out = 1
585 # Get the bailout message (if any), with leading and trailing
586 # whitespace stripped. The message remains stored in `$0`.
587 sub("^[ \t]*Bail out![ \t]*", "");
588 sub("[ \t]*$", "");
589 # Format the error message for the
590 bailout_message = "Bail out!"
591 if (length($0))
592 bailout_message = bailout_message " " $0
593 testsuite_error(bailout_message)
594 }
595 # Maybe we have too look for dianogtic comments too.
596 else if (comments != 0)
597 {
598 comment = extract_tap_comment($0);
599 if (length(comment))
600 report("#", comment);
601 }
602 }
603
604 ## -------- ##
605 ## FINISH ##
606 ## -------- ##
607
608 # A "Bail out!" directive should cause us to ignore any following TAP
609 # error, as well as a non-zero exit status from the TAP producer.
610 if (!bailed_out)
611 {
612 if (!plan_seen)
613 {
614 testsuite_error("missing test plan")
615 }
616 else if (planned_tests != testno)
617 {
618 bad_amount = testno > planned_tests ? "many" : "few"
619 testsuite_error(sprintf("too %s tests run (expected %d, got %d)",
620 bad_amount, planned_tests, testno))
621 }
622 if (!ignore_exit)
623 {
624 # Fetch exit status from the last line.
625 exit_message = get_test_exit_message(nextline)
626 if (exit_message)
627 testsuite_error(exit_message)
628 }
629 }
630
631 write_test_results()
632
633 exit 0
634
635 } # End of "BEGIN" block.
636 '
637
638 # TODO: document that we consume the file descriptor 3 :-(
639 } 3>"$log_file"
640
641 test $? -eq 0 || fatal "I/O or internal error"
642
643 # Local Variables:
644 # mode: shell-script
645 # sh-indentation: 2
646 # eval: (add-hook 'write-file-hooks 'time-stamp)
647 # time-stamp-start: "scriptversion="
648 # time-stamp-format: "%:y-%02m-%02d.%02H"
649 # time-stamp-time-zone: "UTC"
650 # time-stamp-end: "; # UTC"
651 # End:
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for GNU Texinfo 4.13.96.
2 # Generated by GNU Autoconf 2.69 for GNU Texinfo 5.0.
33 #
44 # Report bugs to <bug-texinfo@gnu.org>.
55 #
579579 # Identity of this package.
580580 PACKAGE_NAME='GNU Texinfo'
581581 PACKAGE_TARNAME='texinfo'
582 PACKAGE_VERSION='4.13.96'
583 PACKAGE_STRING='GNU Texinfo 4.13.96'
582 PACKAGE_VERSION='5.0'
583 PACKAGE_STRING='GNU Texinfo 5.0'
584584 PACKAGE_BUGREPORT='bug-texinfo@gnu.org'
585585 PACKAGE_URL='http://www.gnu.org/software/texinfo/'
586586
19121912 # Omit some internal or obsolete options to make the list less imposing.
19131913 # This message is too long to be a string in the A/UX 3.1 sh.
19141914 cat <<_ACEOF
1915 \`configure' configures GNU Texinfo 4.13.96 to adapt to many kinds of systems.
1915 \`configure' configures GNU Texinfo 5.0 to adapt to many kinds of systems.
19161916
19171917 Usage: $0 [OPTION]... [VAR=VALUE]...
19181918
19821982
19831983 if test -n "$ac_init_help"; then
19841984 case $ac_init_help in
1985 short | recursive ) echo "Configuration of GNU Texinfo 4.13.96:";;
1985 short | recursive ) echo "Configuration of GNU Texinfo 5.0:";;
19861986 esac
19871987 cat <<\_ACEOF
19881988
21082108 test -n "$ac_init_help" && exit $ac_status
21092109 if $ac_init_version; then
21102110 cat <<\_ACEOF
2111 GNU Texinfo configure 4.13.96
2111 GNU Texinfo configure 5.0
21122112 generated by GNU Autoconf 2.69
21132113
21142114 Copyright (C) 2012 Free Software Foundation, Inc.
28172817 This file contains any messages produced by compilers while
28182818 running configure, to aid debugging if configure makes a mistake.
28192819
2820 It was created by GNU Texinfo $as_me 4.13.96, which was
2820 It was created by GNU Texinfo $as_me 5.0, which was
28212821 generated by GNU Autoconf 2.69. Invocation command line was
28222822
28232823 $ $0 $@
37183718
37193719 # Define the identity of the package.
37203720 PACKAGE='texinfo'
3721 VERSION='4.13.96'
3721 VERSION='5.0'
37223722
37233723
37243724 cat >>confdefs.h <<_ACEOF
39413941 if test z"$perl_version_requirement" = 'zno' ; then
39423942 as_fn_error $? "perl >= 5.7.3 with Encode required by Texinfo." "$LINENO" 5
39433943 fi
3944
3945
3946 for ac_prog in gawk mawk nawk awk
3947 do
3948 # Extract the first word of "$ac_prog", so it can be a program name with args.
3949 set dummy $ac_prog; ac_word=$2
3950 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3951 $as_echo_n "checking for $ac_word... " >&6; }
3952 if ${ac_cv_prog_AWK+:} false; then :
3953 $as_echo_n "(cached) " >&6
3954 else
3955 if test -n "$AWK"; then
3956 ac_cv_prog_AWK="$AWK" # Let the user override the test.
3957 else
3958 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3959 for as_dir in $PATH
3960 do
3961 IFS=$as_save_IFS
3962 test -z "$as_dir" && as_dir=.
3963 for ac_exec_ext in '' $ac_executable_extensions; do
3964 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3965 ac_cv_prog_AWK="$ac_prog"
3966 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3967 break 2
3968 fi
3969 done
3970 done
3971 IFS=$as_save_IFS
3972
3973 fi
3974 fi
3975 AWK=$ac_cv_prog_AWK
3976 if test -n "$AWK"; then
3977 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
3978 $as_echo "$AWK" >&6; }
3979 else
3980 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3981 $as_echo "no" >&6; }
3982 fi
3983
3984
3985 test -n "$AWK" && break
3986 done
3987
39443988
39453989 # Checks for programs.
39463990 ac_ext=c
2232822372 # report actual input values of CONFIG_FILES etc. instead of their
2232922373 # values after options handling.
2233022374 ac_log="
22331 This file was extended by GNU Texinfo $as_me 4.13.96, which was
22375 This file was extended by GNU Texinfo $as_me 5.0, which was
2233222376 generated by GNU Autoconf 2.69. Invocation command line was
2233322377
2233422378 CONFIG_FILES = $CONFIG_FILES
2239622440 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2239722441 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2239822442 ac_cs_version="\\
22399 GNU Texinfo config.status 4.13.96
22443 GNU Texinfo config.status 5.0
2240022444 configured by $0, generated by GNU Autoconf 2.69,
2240122445 with options \\"\$ac_cs_config\\"
2240222446
00 # Process this file with autoconf to produce a configure script.
1 # $Id: configure.ac,v 1.141 2013/02/05 00:49:28 karl Exp $
1 # $Id: configure.ac,v 1.144 2013/02/16 16:50:22 karl Exp $
22 #
33 # Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
44 # 2012, 2013 Free Software Foundation, Inc.
1111 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
1212 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1313 #
14 AC_INIT([GNU Texinfo], [4.13.96], [bug-texinfo@gnu.org])
14 AC_INIT([GNU Texinfo], [5.0], [bug-texinfo@gnu.org])
1515
1616 dnl Must come before AM_INIT_AUTOMAKE.
1717 AC_CONFIG_AUX_DIR([build-aux])
6868 if test z"$perl_version_requirement" = 'zno' ; then
6969 AC_MSG_ERROR([perl >= 5.7.3 with Encode required by Texinfo.])
7070 fi
71
72 AC_REQUIRE_AUX_FILE([tap-driver.sh])
73 AC_PROG_AWK
7174
7275 # Checks for programs.
7376 AC_PROG_CC
0 # -*- makefile -*-
1 #
2 # booklet.mak - making booklets from Texinfo.
3 #
4 # Copyright 2013 John Darrington.
5 #
6 # This file is free software; as a special exception the author gives
7 # unlimited permission to copy and/or distribute it, with or without
8 # modifications, as long as this notice is preserved.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
12 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 #
14 # This makefile can be used to generate booklets from Texinfo sources.
15 # It reduces each page to A5 size and renders two pages per sheet onto
16 # A4 landscape. The pages are ordered into a "quire" or "gathering".
17 # This means that you can print the result on a standard laser printer,
18 # fold in half and using simple stapler bind the result into a
19 # booklet.
20
21 # Targets are <foo>-{a4,a5}-book.{dvi,ps,pdf} where <foo>.texi is the texinfo
22 # source file.
23 # It is suitable for Texinfo documents up to approx. 70 pages.
24
25 # The *-a4-book targets produce A4 half area reduced pages. The *-a5-book
26 # targets produce A5 full sized pages. The *a5-book option will therefore
27 # have larger text, but will have a higher page count. It may also have
28 # problems if the document has @display or @example environments with
29 # long lines.
30
31 # Example of use:
32 # 1. make -f Makebook manual-a4-book.ps
33 # 2. Print the result on a double sided laser printer. Alternatively
34 # if your laser printer does not support double sided printing, print the ODD
35 # numbered sheets, retreive the result from the printer and thinking carefully
36 # about the page orientation, shove them back into the paper tray. Depending
37 # on your printer, you may have to reverse the order of the sheets. Then print
38 # the EVEN numbered sheets. I find gv usefull for this.
39 # 3. Fold the result along the short dimension.
40 # 4. Staple in place, using a long arm stapler.
41 # 5. Using a guillotine cut the pages such that their edges co-incide.
42 # 6. Sit back in an armchair and enjoy your reading.
43
44 # For those of you who live in countries which refuse to conform to ISO 216,
45 # you have a problem.
46
47 # End of instructions.
48
49 all:
50 echo 'Usage: make -f Makebook <target>'
51
52
53 # Mutate the source, with appropriate headings, overriding anything that the
54 # author has thoughtlessly imposed.
55 # We want to specify the paper size, and double headings. Anything else?
56 %-a4.texi: %.texi
57 sed -e 's/@afivepaper/@afourpaper/' -e '/@end titlepage/a @headings double' $< > $@
58
59 %-a5.texi: %.texi
60 sed -e 's/@afourpaper/@afivepaper/' -e '/@end titlepage/a @headings double' $< > $@
61
62 # Older versions of Texinfo break if the locale is non-english.
63 %.dvi: %.texi
64 LC_ALL=C texi2dvi $< -o $@
65
66
67 # Reorder the dvi into the correct order for the quire.
68 %-sig.dvi: %.dvi
69 dvibook $< -o $@
70
71 # Render 2 pages per sheet, ensuring there is an appropriate "gutter"
72 %-a5-book.dvi: %-a5-sig.dvi
73 dvitodvi '2:0+1(148mm,0)' $< $@
74
75 %-a4-book.dvi: %-a4-sig.dvi
76 dvitodvi '2:700@0(-15mm,-5mm)+1(210mm,-5mm)' $< $@
77
78 # print the result in landscape orientation
79 %.ps: %.dvi
80 dvips -t a4 -t landscape -t landscape $< -o $@
81
82 %.pdf: %.ps
83 ps2pdf $< $@
84
85
86 .PHONY: clean
87 clean:
88 $(RM) *-a[54].*
0 # $Id: GNUmakefile,v 1.2 2013/02/05 00:23:49 karl Exp $
0 # $Id: GNUmakefile,v 1.4 2013/02/16 16:49:49 karl Exp $
11 # Sample Makefile to build Texinfo from the Perl POD documentation,
22 # using pod2texi.
33 #
1818
1919 texinfo_srcdir = $(shell cd ../../ && pwd)
2020 pod2texi = perl $(texinfo_srcdir)/Pod-Simple-Texinfo/pod2texi.pl
21 pod2texi_args = --base-level=section
21 pod2texi_args = --base-level=section
22 pod2texi_args += --preamble='' # we want our own
23 pod2texi_args += --subdir=$(texi_pod_subdir)
2224
2325 # Unfortunately have to use --no-validate since not all the names and
2426 # L<references> match up. Split HTML by chapter is the natural thing here.
2527 gendocs_args = --email bug-texinfo@gnu.org
26 gendocs_args = --common "--no-warn --no-validate"
28 gendocs_args += --common "--no-warn --no-validate"
2729 gendocs_args += --split chapter
2830 gendocs_args += --no-ascii
2931 gendocs_args += --source $(texi_pod_subdir)
3032 gendocs_title = "Perl documentation in Texinfo"
3133
3234 all: $(texi_pod_doc_incl)
33 rm -rf manual
35 rm -rf manual *.aux *.toc *.??
3436 gendocs.sh $(gendocs_args) $(texi_pod_doc) $(gendocs_title)
3537
3638 $(texi_pod_doc_incl): $(perl_pod_subdir)/*.pod
3840 # we omit the numerous delta pods, which are uninteresting when searching
3941 # (and take tons of time and space).
4042 cd $(perl_pod_subdir) \
41 && $(pod2texi) -o $@ --subdir=$(texi_pod_subdir) $(pod2texi_args) \
43 && $(pod2texi) -o $@ $(pod2texi_args) \
4244 `ls *.pod | fgrep -v delta` \
4345 && mv $(texi_pod_subdir) $@ ../..
4446
22 <!--#include virtual="/server/banner.html" -->
33 <h2>%%TITLE%%</h2>
44
5 <address>Free Software Foundation</address>
5 <address>GNU Project</address>
66 <address>last updated %%DATE%%</address>
77
88 <p>This translation of the <a href="http://perldoc.perl.org/">Perl
99 documentation</a> from POD to Texinfo is not official, and not endorsed
1010 by the Perl developers (indeed, they haven't seen it). It was created
1111 by the GNU Texinfo developers because they found it useful to have the
12 core Perl documentation available in Info other formats, and thought
12 core Perl documentation available in Info and other formats, and thought
1313 they would share the results. Suggestions welcome.</p>
1414
1515 <p>This output is created entirely by the Texinfo tools; see the <a
2626 <li><a href="%%PACKAGE%%.html.gz">HTML compressed
2727 (%%HTML_MONO_GZ_SIZE%%K gzipped characters)</a> - entirely on
2828 one web page.</li>
29 <li><a href="%%PACKAGE%%.html_node.tar.gz">HTML compressed
30 (%%HTML_NODE_TGZ_SIZE%%K gzipped tar file)</a> -
31 with one web page per node.</li>
3229 <li><a href="%%PACKAGE%%.html_chapter.tar.gz">HTML compressed
3330 (%%HTML_CHAPTER_TGZ_SIZE%%K gzipped tar file)</a> -
3431 with one web page per chapter.</li>
6865
6966 <p>Copyright &copy; 2013 Free Software Foundation, Inc.</p>
7067
71 <p>Verbatim copying and distribution of this entire article are
72 permitted worldwide, without royalty, in any medium, provided this
73 notice, and the copyright notice, are preserved.</p>
68 <p>This page is licensed under a <a rel="license"
69 href="http://creativecommons.org/licenses/by-nd/3.0/us/">Creative
70 Commons Attribution-NoDerivs 3.0 United States License</a>.</p>
7471
7572 </div>
7673 </div>
Binary diff not shown
00 % Texinfo reference card.
1 % $Id: txirefcard.tex,v 1.29 2013/01/01 19:31:56 karl Exp $
1 % $Id: txirefcard.tex,v 1.30 2013/02/16 16:50:29 karl Exp $
22 %
33 %**start of header
44 % This file can be printed with 1, 2, or 3 columns per page (see below).
4848 % Summary node in texinfo.txi, written primarily by Bob Chassell.
4949
5050 \def\versionyear{2013} % year manual was updated
51 \def\versionTexinfo{5.0+} % version of Texinfo this manual is for
51 \def\versionTexinfo{5.0} % version of Texinfo this manual is for
5252 \def\year{2013} % copyright year
5353
5454 \def\copyrightnotice{%
00 @set UPDATED 20 January 2013
11 @set UPDATED-MONTH January 2013
2 @set EDITION 4.13.96
3 @set VERSION 4.13.96
2 @set EDITION 5.0
3 @set VERSION 5.0
0 @set UPDATED 4 February 2013
0 @set UPDATED 16 February 2013
11 @set UPDATED-MONTH February 2013
2 @set EDITION 4.13.96
3 @set VERSION 4.13.96
2 @set EDITION 5.0
3 @set VERSION 5.0
0 \input texinfo
1 @setfilename tp_api.info
2 @documentencoding utf-8
3 @settitle Texinfo perl module
4
5 @contents
6
7 @ifnottex
8 @node Top
9 @top Texinfo perl module
10 @end ifnottex
11
012 @menu
113 * Texinfo@asis{::}Common::
214 * Texinfo@asis{::}Parser::
00 @set UPDATED 20 January 2013
11 @set UPDATED-MONTH January 2013
2 @set EDITION 4.13.96
3 @set VERSION 4.13.96
2 @set EDITION 5.0
3 @set VERSION 5.0
0 @set UPDATED 4 February 2013
0 @set UPDATED 16 February 2013
11 @set UPDATED-MONTH February 2013
2 @set EDITION 4.13.96
3 @set VERSION 4.13.96
2 @set EDITION 5.0
3 @set VERSION 5.0
00 /* filesys.c -- filesystem specific functions.
1 $Id: filesys.c,v 1.18 2012/11/17 17:16:18 gray Exp $
1 $Id: filesys.c,v 1.19 2013/02/13 19:16:39 gray Exp $
22
33 Copyright 1993, 1997, 1998, 2000, 2002, 2003, 2004, 2007, 2008, 2009, 2011,
44 2012 Free Software Foundation, Inc.
633633 free (contents);
634634 return NULL;
635635 }
636
636 contents[fsize] = 0;
637637 close (descriptor);
638638 }
639639
0 /* tag.c -- Functions to handle Info tags.
1 $Id: tag.c,v 1.2 2012/11/30 23:58:20 gray Exp $
2
3 Copyright (C) 2012 Free Software Foundation, Inc.
0 /* tag.c -- Functions to handle Info tags (that is, the special
1 construct for images, not the "tag table" of starting position.)
2 $Id: tag.c,v 1.3 2013/02/10 19:44:42 karl Exp $
3
4 Copyright (C) 2012, 2013 Free Software Foundation, Inc.
45
56 This program is free software: you can redistribute it and/or modify
67 it under the terms of the GNU General Public License as published by
4647 }
4748 }
4849
50
51 /* See if KW is one of the tags in the list starting at TAG. */
52
4953 static struct info_tag *
5054 info_tag_find (struct info_tag *tag, const char *kw)
5155 {
5458 return tag;
5559 return NULL;
5660 }
61
62
63 /* Found a keyword when parsing the full tag string: alt, text, etc.
64 Return the new tag, update *TMPBUF_PTR and set *KW. */
65
66 static struct info_tag *
67 tag_found_keyword (struct text_buffer *tmpbuf_ptr, char **kw)
68 {
69 struct info_tag *tag = xmalloc (sizeof (*tag));
70 tag->next = NULL; /* have to update in caller */
71
72 text_buffer_add_char (tmpbuf_ptr, 0);
73 if (*kw != tmpbuf_ptr->base) { /* in case tmpbuf got realloc-ed */
74 *kw = tmpbuf_ptr->base; /* ick */
75 }
76 tag->kw = xstrdup (*kw);
77 tag->val = xstrdup (*kw + strlen(*kw) + 1);
78 text_buffer_reset (tmpbuf_ptr);
79
80 return tag;
81 }
82
83 /* Handle the image tag. */
5784
5885 static int
5986 tag_image (char *text, struct text_buffer *outbuf)
76103 {
77104 if (state == state_val)
78105 {
79 text_buffer_add_char (&tmpbuf, 0);
80 tag = xmalloc (sizeof (*tag));
81 tag->next = tag_head;
82 tag_head = tag;
83 tag->kw = xstrdup (kw);
84 tag->val = xstrdup (kw + strlen(kw) + 1);
85 text_buffer_reset (&tmpbuf);
86 state = state_delim;
106 struct info_tag *new_kw = tag_found_keyword (&tmpbuf, &kw);
107 new_kw->next = tag_head;
108 tag_head = new_kw;
109 state = state_delim;
110 continue;
87111 }
88112 if (state == state_delim)
89113 continue;
120144 }
121145 if (state == state_qstr)
122146 {
123 text_buffer_add_char (&tmpbuf, 0);
124 tag = xmalloc (sizeof (*tag));
125 tag->next = tag_head;
126 tag_head = tag;
127 tag->kw = xstrdup (kw);
128 tag->val = xstrdup (kw + strlen(kw) + 1);
129 text_buffer_reset (&tmpbuf);
147 struct info_tag *new_kw = tag_found_keyword (&tmpbuf, &kw);
148 new_kw->next = tag_head;
149 tag_head = new_kw;
130150 state = state_delim;
131151 continue;
132152 }
157177 return 0;
158178 }
159179
180
181 /* We don't do anything with the index tag; it'll just be ignored. */
182
160183 static struct tag_handler tagtab[] = {
161184 { "image", 5, tag_image },
162185 { NULL }
183206
184207 text_buffer_init (&outbuf);
185208
186 while ((p = input + strlen (input)) < endp)
187 {
188 if (memcmp(p + 1, "\b[", 2) == 0)
209 while ((p = input + strlen (input)) < endp) /* go forward to null */
210 {
211 if (memcmp(p + 1, "\b[", 2) == 0) /* opening magic? */
189212 {
190213 char *q;
191214
192215 p += 3;
193 q = p + strlen (p);
194 if (memcmp (q + 1, "\b]", 2) == 0)
216 q = p + strlen (p); /* forward to next null */
217 if (memcmp (q + 1, "\b]", 2) == 0) /* closing magic? */
195218 {
196219 size_t len;
197220 struct tag_handler *tp;
198221
199 len = strcspn (p, " \t");
222 len = strcspn (p, " \t"); /* tag name */
200223 tp = find_tag_handler (p, len);
201224 if (tp)
202225 {
203226 while (p[len] == ' ' || p[len] == '\t')
204 ++len;
227 ++len; /* move past whitespace */
205228
206229 if (!text_buffer_off (&outbuf))
207230 text_buffer_add_string (&outbuf, *pbuf, p - *pbuf - 3);
00 /* window.c -- windows in Info.
1 $Id: window.c,v 1.27 2013/01/11 18:28:56 karl Exp $
1 $Id: window.c,v 1.28 2013/02/13 07:38:19 gray Exp $
22
33 Copyright 1993, 1997, 1998, 2001, 2002, 2003, 2004, 2007, 2008,
44 2011, 2012, 2013 Free Software Foundation, Inc.
292292 chain cannot start at window->height, since that is where the modeline
293293 for the previous window is displayed. The inverse adjustment is made
294294 in window_delete_window (). */
295 window = xmalloc (sizeof (WINDOW));
295 window = xzalloc (sizeof (WINDOW));
296296 window->width = the_screen->width;
297297 window->height = (active_window->height / 2) - 1;
298298 #if defined (SPLIT_BEFORE_ACTIVE)
12921292 {
12931293 NODE *node;
12941294
1295 node = xmalloc (sizeof (NODE));
1295 node = xzalloc (sizeof (NODE));
12961296 node->filename = NULL;
12971297 node->parent = NULL;
12981298 node->nodename = NULL;
00 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.41.1.
1 .TH INFO "1" "February 2013" "info 4.13.96" "User Commands"
1 .TH INFO "1" "February 2013" "info 5.0" "User Commands"
22 .SH NAME
33 info \- read Info documents
44 .SH SYNOPSIS
00 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.41.1.
1 .TH INFOKEY "1" "February 2013" "infokey 4.13.96" "User Commands"
1 .TH INFOKEY "1" "February 2013" "infokey 5.0" "User Commands"
22 .SH NAME
33 infokey \- compile customizations for Info
44 .SH SYNOPSIS
00 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.41.1.
1 .TH INSTALL-INFO "1" "February 2013" "install-info 4.13.96" "User Commands"
1 .TH INSTALL-INFO "1" "February 2013" "install-info 5.0" "User Commands"
22 .SH NAME
33 install-info \- update info/dir entries
44 .SH SYNOPSIS
00 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.41.1.
1 .TH MAKEINFO "1" "February 2013" "makeinfo 4.13.96" "User Commands"
1 .TH MAKEINFO "1" "February 2013" "makeinfo 5.0" "User Commands"
22 .SH NAME
33 makeinfo \- translate Texinfo documents
44 .SH SYNOPSIS
123123 .\" ========================================================================
124124 .\"
125125 .IX Title "POD2TEXI 1"
126 .TH POD2TEXI 1 "2013-02-04" "perl v5.16.2" "User Contributed Perl Documentation"
126 .TH POD2TEXI 1 "2013-02-07" "perl v5.16.2" "User Contributed Perl Documentation"
127127 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
128128 .\" way too many mistakes in technical documents.
129129 .if n .ad l
183183 Ordinarily, it's good to keep the sectioning hierarchy intact.
184184 .IP "\fB\-\-preamble\fR=\fI\s-1STR\s0\fR" 4
185185 .IX Item "--preamble=STR"
186 Insert \fI\s-1STR\s0\fR as top boilerplate before includes. For standalone
187 documents (\f(CW\*(C`\-\-base\-level\*(C'\fR is 0), the default is a minimal beginning for
188 a Texinfo document, and sets \f(CW@documentencoding\fR to \f(CW\*(C`utf\-8\*(C'\fR. For
189 included documents (\f(CW\*(C`\-\-base\-level\*(C'\fR is nonzero), it is the empty string,
190 under the assumption that you will want your own top-level material,
191 and to \f(CW@include\fR the generated files.
186 Insert \fI\s-1STR\s0\fR as top boilerplate before includes. The default is a
187 minimal beginning for a Texinfo document, and sets \f(CW@documentencoding\fR
188 to \f(CW\*(C`utf\-8\*(C'\fR (because the output is written that way).
192189 .IP "\fB\-\-subdir\fR=\fI\s-1NAME\s0\fR" 4
193190 .IX Item "--subdir=NAME"
194191 If there is a main manual with include files (each corresponding to
00 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.41.1.
1 .TH TEXI2DVI "1" "February 2013" "texi2dvi 1.174" "User Commands"
1 .TH TEXI2DVI "1" "February 2013" "texi2dvi 1.175" "User Commands"
22 .SH NAME
33 texi2dvi \- convert Texinfo documents to DVI or PDF
44 .SH SYNOPSIS
00 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.41.1.
1 .TH TEXINDEX "1" "February 2013" "texindex 4.13.96" "User Commands"
1 .TH TEXINDEX "1" "February 2013" "texindex 5.0" "User Commands"
22 .SH NAME
33 texindex \- sort Texinfo index files
44 .SH SYNOPSIS
Binary diff not shown
77 msgstr ""
88 "Project-Id-Version: texinfo 4.0\n"
99 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
10 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
10 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1111 "PO-Revision-Date: 2000-10-31 15:17+01:00\n"
1212 "Last-Translator: Vladimir Michl <Vladimir.Michl@seznam.cz>\n"
1313 "Language-Team: Czech <cs@li.org>\n"
23422342 msgid "@%s outside of any node"
23432343 msgstr "(mimo v¹echny uzly)"
23442344
2345 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2345 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
23462346 #, fuzzy, perl-format
23472347 msgid "entry for index `%s' outside of any node"
23482348 msgstr "Polo¾ka pro rejstøík `%s' je mimo v¹echny uzly"
23492349
2350 #: tp/Texinfo/Convert/Plaintext.pm:1217
2350 #: tp/Texinfo/Convert/Plaintext.pm:1313
23512351 #, fuzzy, perl-format
23522352 msgid "error on closing image text file %s: %s"
23532353 msgstr "Výstupní soubor `%s' nelze vytvoøit."
23542354
2355 #: tp/Texinfo/Convert/Plaintext.pm:1222
2355 #: tp/Texinfo/Convert/Plaintext.pm:1318
23562356 #, perl-format
23572357 msgid "@image file `%s' unreadable: %s"
23582358 msgstr "soubor `%s' v pøíkazu @image je neèitelný: %s"
23592359
2360 #: tp/Texinfo/Convert/Plaintext.pm:1251
2360 #: tp/Texinfo/Convert/Plaintext.pm:1341
23612361 #, fuzzy, perl-format
23622362 msgid "could not find @image file `%s.txt' nor alternate text"
23632363 msgstr "Uzel `%s' nelze nalézt."
23642364
2365 #: tp/Texinfo/Convert/Plaintext.pm:1617
2365 #: tp/Texinfo/Convert/Plaintext.pm:1705
23662366 msgid ""
23672367 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
23682368 "avoid that"
23692369 msgstr ""
23702370
2371 #: tp/Texinfo/Convert/Plaintext.pm:1849
2371 #: tp/Texinfo/Convert/Plaintext.pm:1937
23722372 #, fuzzy, perl-format
23732373 msgid "`.' or `,' must follow @xref, not %s"
23742374 msgstr "`.' nebo `,' musí následovat za køí¾ovým odkazem, ale ne za %c"
23752375
2376 #: tp/Texinfo/Convert/Plaintext.pm:1852
2376 #: tp/Texinfo/Convert/Plaintext.pm:1940
23772377 #, fuzzy
23782378 msgid "`.' or `,' must follow @xref"
23792379 msgstr "`.' nebo `,' musí následovat za køí¾ovým odkazem, ale ne za %c"
23832383 msgid "@%s should only appear at beginning or end of document"
23842384 msgstr "Vıstup %s pro expanzi makra nelze otevøít"
23852385
2386 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2386 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
23872387 #, perl-format
23882388 msgid "multiple @%s"
23892389 msgstr ""
30003000 msgid "no sectioning command associated with @%s"
30013001 msgstr ""
30023002
3003 #: tp/Texinfo/Structuring.pm:568
3004 #, fuzzy, perl-format
3005 msgid "menu reference to nonexistent node `%s'"
3006 msgstr "uzel `%s' - nesmìøuje na nìj ¾ádný odkaz"
3007
3008 #: tp/Texinfo/Structuring.pm:583
3009 #, perl-format
3010 msgid "menu entry node name `%s' different from %s name `%s'"
3011 msgstr ""
3012
3013 #: tp/Texinfo/Structuring.pm:619
3003 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3004 #, fuzzy, perl-format
3005 msgid "@%s reference to nonexistent node `%s'"
3006 msgstr "%s se odkazuje na neexistující uzel `%s'"
3007
3008 #: tp/Texinfo/Structuring.pm:551
3009 #, perl-format
3010 msgid "@%s entry node name `%s' different from %s name `%s'"
3011 msgstr ""
3012
3013 #: tp/Texinfo/Structuring.pm:656
30143014 #, perl-format
30153015 msgid "unreferenced node `%s'"
30163016 msgstr "uzel `%s' - nesmìøuje na nìj ¾ádný odkaz"
30173017
3018 #: tp/Texinfo/Structuring.pm:665
3018 #: tp/Texinfo/Structuring.pm:702
30193019 #, perl-format
30203020 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
30213021 msgstr ""
30223022
3023 #: tp/Texinfo/Structuring.pm:672
3023 #: tp/Texinfo/Structuring.pm:709
30243024 #, perl-format
30253025 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
30263026 msgstr ""
30273027
3028 #: tp/Texinfo/Structuring.pm:690
3028 #: tp/Texinfo/Structuring.pm:727
30293029 #, perl-format
30303030 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
30313031 msgstr ""
30323032
3033 #: tp/Texinfo/Structuring.pm:744
3033 #: tp/Texinfo/Structuring.pm:781
30343034 #, perl-format
30353035 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
30363036 msgstr ""
30373037
3038 #: tp/Texinfo/Structuring.pm:771
3038 #: tp/Texinfo/Structuring.pm:808
30393039 #, fuzzy, perl-format
30403040 msgid "%s reference to nonexistent `%s'"
30413041 msgstr "uzel `%s' - nesmìøuje na nìj ¾ádný odkaz"
30423042
3043 #: tp/Texinfo/Structuring.pm:790
3043 #: tp/Texinfo/Structuring.pm:827
30443044 #, fuzzy, perl-format
30453045 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
30463046 msgstr ""
30473047 "Uzel `%s' postrádá polo¾ku menu pro `%s' navzdory tomu, ¾e je jeho vy¹¹ím "
30483048 "uzlem"
30493049
3050 #: tp/Texinfo/Structuring.pm:798
3050 #: tp/Texinfo/Structuring.pm:835
30513051 #, perl-format
30523052 msgid "for `%s', up in menu `%s' and up `%s' don't match"
30533053 msgstr ""
30543054
3055 #: tp/Texinfo/Structuring.pm:1282
3056 #, fuzzy, perl-format
3057 msgid "@%s reference to nonexistent node `%s'"
3058 msgstr "%s se odkazuje na neexistující uzel `%s'"
3059
3060 #: tp/Texinfo/Structuring.pm:1294
3055 #: tp/Texinfo/Structuring.pm:1331
30613056 #, perl-format
30623057 msgid "@%s to `%s', different from %s name `%s'"
30633058 msgstr ""
30643059
3065 #: tp/Texinfo/Structuring.pm:1959
3060 #: tp/Texinfo/Structuring.pm:1996
30663061 #, fuzzy, perl-format
30673062 msgid "empty index key in @%s"
30683063 msgstr "odpovídající polo¾ky rejstøíku nebyly pro `%s' nalezeny\n"
31743169 msgid "tex4ht.pm: could not open: %s"
31753170 msgstr "Nelze najít `%s'."
31763171
3177 #: tp/init/tex4ht.pm:293
3172 #: tp/init/tex4ht.pm:294
31783173 #, perl-format
31793174 msgid "tex4ht.pm: end of @%s item %d not found"
31803175 msgstr ""
31813176
3182 #: tp/init/tex4ht.pm:300
3177 #: tp/init/tex4ht.pm:301
31833178 #, perl-format
31843179 msgid ""
31853180 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
31863181 "items found in the document for @%s"
31873182 msgstr ""
31883183
3189 #: tp/init/tex4ht.pm:320
3184 #: tp/init/tex4ht.pm:321
31903185 #, fuzzy, perl-format
31913186 msgid "tex4ht.pm: output has no HTML item for @%s %s"
31923187 msgstr "Výstupní soubor `%s' nelze vytvoøit."
31933188
3194 #: tp/init/tex4ht.pm:335
3189 #: tp/init/tex4ht.pm:336
31953190 #, perl-format
31963191 msgid ""
31973192 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
35643559 #, c-format
35653560 msgid "entry %s follows an entry with a secondary name"
35663561 msgstr "polo¾ka %s následuje za polo¾kou se sekundárním jménem"
3562
3563 #, fuzzy
3564 #~ msgid "menu reference to nonexistent node `%s'"
3565 #~ msgstr "uzel `%s' - nesmìøuje na nìj ¾ádný odkaz"
35673566
35683567 #, fuzzy
35693568 #~ msgid "Can't read file %s: %s"
Binary diff not shown
55 msgstr ""
66 "Project-Id-Version: texinfo 4.2e\n"
77 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
8 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
8 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
99 "PO-Revision-Date: 2002-11-08 09:13GMT\n"
1010 "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
1111 "Language-Team: Danish <dansk@klid.dk>\n"
23712371 msgid "@%s outside of any node"
23722372 msgstr "(udenfor et emne)"
23732373
2374 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2374 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
23752375 #, fuzzy, perl-format
23762376 msgid "entry for index `%s' outside of any node"
23772377 msgstr "Indgang til indeks '%s' udenfor et emne"
23782378
2379 #: tp/Texinfo/Convert/Plaintext.pm:1217
2379 #: tp/Texinfo/Convert/Plaintext.pm:1313
23802380 #, fuzzy, perl-format
23812381 msgid "error on closing image text file %s: %s"
23822382 msgstr "fejl under lukning af uddatafilen '%s'"
23832383
2384 #: tp/Texinfo/Convert/Plaintext.pm:1222
2384 #: tp/Texinfo/Convert/Plaintext.pm:1318
23852385 #, perl-format
23862386 msgid "@image file `%s' unreadable: %s"
23872387 msgstr "@image-fil '%s' er ulæselig: %s"
23882388
2389 #: tp/Texinfo/Convert/Plaintext.pm:1251
2389 #: tp/Texinfo/Convert/Plaintext.pm:1341
23902390 #, fuzzy, perl-format
23912391 msgid "could not find @image file `%s.txt' nor alternate text"
23922392 msgstr "Kan ikke finde emnet '%s'."
23932393
2394 #: tp/Texinfo/Convert/Plaintext.pm:1617
2394 #: tp/Texinfo/Convert/Plaintext.pm:1705
23952395 msgid ""
23962396 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
23972397 "avoid that"
23982398 msgstr ""
23992399
2400 #: tp/Texinfo/Convert/Plaintext.pm:1849
2400 #: tp/Texinfo/Convert/Plaintext.pm:1937
24012401 #, fuzzy, perl-format
24022402 msgid "`.' or `,' must follow @xref, not %s"
24032403 msgstr "en krydsreference må efterfølges af '.' eller ',', ikke %c"
24042404
2405 #: tp/Texinfo/Convert/Plaintext.pm:1852
2405 #: tp/Texinfo/Convert/Plaintext.pm:1940
24062406 #, fuzzy
24072407 msgid "`.' or `,' must follow @xref"
24082408 msgstr "en krydsreference må efterfølges af '.' eller ',', ikke %c"
24122412 msgid "@%s should only appear at beginning or end of document"
24132413 msgstr "Kunne ikke åbne makroudfoldelses-uddata '%s'"
24142414
2415 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2415 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
24162416 #, perl-format
24172417 msgid "multiple @%s"
24182418 msgstr ""
30253025 msgid "no sectioning command associated with @%s"
30263026 msgstr ""
30273027
3028 #: tp/Texinfo/Structuring.pm:568
3029 #, fuzzy, perl-format
3030 msgid "menu reference to nonexistent node `%s'"
3031 msgstr "ikke-refereret emne '%s'"
3032
3033 #: tp/Texinfo/Structuring.pm:583
3034 #, perl-format
3035 msgid "menu entry node name `%s' different from %s name `%s'"
3036 msgstr ""
3037
3038 #: tp/Texinfo/Structuring.pm:619
3028 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3029 #, fuzzy, perl-format
3030 msgid "@%s reference to nonexistent node `%s'"
3031 msgstr "%s reference til ikke-eksisterende emne '%s'"
3032
3033 #: tp/Texinfo/Structuring.pm:551
3034 #, perl-format
3035 msgid "@%s entry node name `%s' different from %s name `%s'"
3036 msgstr ""
3037
3038 #: tp/Texinfo/Structuring.pm:656
30393039 #, perl-format
30403040 msgid "unreferenced node `%s'"
30413041 msgstr "ikke-refereret emne '%s'"
30423042
3043 #: tp/Texinfo/Structuring.pm:665
3043 #: tp/Texinfo/Structuring.pm:702
30443044 #, perl-format
30453045 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
30463046 msgstr ""
30473047
3048 #: tp/Texinfo/Structuring.pm:672
3048 #: tp/Texinfo/Structuring.pm:709
30493049 #, perl-format
30503050 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
30513051 msgstr ""
30523052
3053 #: tp/Texinfo/Structuring.pm:690
3053 #: tp/Texinfo/Structuring.pm:727
30543054 #, perl-format
30553055 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
30563056 msgstr ""
30573057
3058 #: tp/Texinfo/Structuring.pm:744
3058 #: tp/Texinfo/Structuring.pm:781
30593059 #, perl-format
30603060 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
30613061 msgstr ""
30623062
3063 #: tp/Texinfo/Structuring.pm:771
3063 #: tp/Texinfo/Structuring.pm:808
30643064 #, fuzzy, perl-format
30653065 msgid "%s reference to nonexistent `%s'"
30663066 msgstr "ikke-refereret emne '%s'"
30673067
3068 #: tp/Texinfo/Structuring.pm:790
3068 #: tp/Texinfo/Structuring.pm:827
30693069 #, fuzzy, perl-format
30703070 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
30713071 msgstr ""
30723072 "Emnet '%s' mangler menupunkt for '%s' på trods af at det er dens 'Op'-mål"
30733073
3074 #: tp/Texinfo/Structuring.pm:798
3074 #: tp/Texinfo/Structuring.pm:835
30753075 #, perl-format
30763076 msgid "for `%s', up in menu `%s' and up `%s' don't match"
30773077 msgstr ""
30783078
3079 #: tp/Texinfo/Structuring.pm:1282
3080 #, fuzzy, perl-format
3081 msgid "@%s reference to nonexistent node `%s'"
3082 msgstr "%s reference til ikke-eksisterende emne '%s'"
3083
3084 #: tp/Texinfo/Structuring.pm:1294
3079 #: tp/Texinfo/Structuring.pm:1331
30853080 #, perl-format
30863081 msgid "@%s to `%s', different from %s name `%s'"
30873082 msgstr ""
30883083
3089 #: tp/Texinfo/Structuring.pm:1959
3084 #: tp/Texinfo/Structuring.pm:1996
30903085 #, fuzzy, perl-format
30913086 msgid "empty index key in @%s"
30923087 msgstr "ingen indeksindgange blev fundet for '%s'\n"
31983193 msgid "tex4ht.pm: could not open: %s"
31993194 msgstr "Kan ikke finde '%s'."
32003195
3201 #: tp/init/tex4ht.pm:293
3196 #: tp/init/tex4ht.pm:294
32023197 #, perl-format
32033198 msgid "tex4ht.pm: end of @%s item %d not found"
32043199 msgstr ""
32053200
3206 #: tp/init/tex4ht.pm:300
3201 #: tp/init/tex4ht.pm:301
32073202 #, perl-format
32083203 msgid ""
32093204 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
32103205 "items found in the document for @%s"
32113206 msgstr ""
32123207
3213 #: tp/init/tex4ht.pm:320
3208 #: tp/init/tex4ht.pm:321
32143209 #, fuzzy, perl-format
32153210 msgid "tex4ht.pm: output has no HTML item for @%s %s"
32163211 msgstr "kan ikke oprette uddatafil '%s'"
32173212
3218 #: tp/init/tex4ht.pm:335
3213 #: tp/init/tex4ht.pm:336
32193214 #, perl-format
32203215 msgid ""
32213216 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
36513646 #, c-format
36523647 msgid "entry %s follows an entry with a secondary name"
36533648 msgstr "indgang %s følger en indgang med et sekundært navn"
3649
3650 #, fuzzy
3651 #~ msgid "menu reference to nonexistent node `%s'"
3652 #~ msgstr "ikke-refereret emne '%s'"
36543653
36553654 #, fuzzy
36563655 #~ msgid "Can't create directories `%s': %s"
Binary diff not shown
3333 msgstr ""
3434 "Project-Id-Version: texinfo 4.13.92\n"
3535 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
36 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
36 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
3737 "PO-Revision-Date: 2012-12-20 21:05+0100\n"
3838 "Last-Translator: Michael Piefel <piefel@informatik.hu-berlin.de>\n"
3939 "Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
25082508 msgid "@%s outside of any node"
25092509 msgstr "@%s (außerhalb jeglichen Knotens)"
25102510
2511 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2511 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
25122512 #, fuzzy, perl-format
25132513 msgid "entry for index `%s' outside of any node"
25142514 msgstr "Eintrag für Index „%s“ außerhalb jeglichen Knotens"
25152515
2516 #: tp/Texinfo/Convert/Plaintext.pm:1217
2516 #: tp/Texinfo/Convert/Plaintext.pm:1313
25172517 #, fuzzy, perl-format
25182518 msgid "error on closing image text file %s: %s"
25192519 msgstr "Fehler beim Schließen der Ausgabedatei „%s“."
25202520
2521 #: tp/Texinfo/Convert/Plaintext.pm:1222
2521 #: tp/Texinfo/Convert/Plaintext.pm:1318
25222522 #, perl-format
25232523 msgid "@image file `%s' unreadable: %s"
25242524 msgstr "@image-Datei „%s“ nicht lesbar: %s"
25252525
2526 #: tp/Texinfo/Convert/Plaintext.pm:1251
2526 #: tp/Texinfo/Convert/Plaintext.pm:1341
25272527 #, perl-format
25282528 msgid "could not find @image file `%s.txt' nor alternate text"
25292529 msgstr ""
25302530
2531 #: tp/Texinfo/Convert/Plaintext.pm:1617
2531 #: tp/Texinfo/Convert/Plaintext.pm:1705
25322532 msgid ""
25332533 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
25342534 "avoid that"
25362536 "@strong{Bemerkung...} erzeugt einen Pseudo-Querverweis in Info; "
25372537 "umformulieren, um das zu vermeiden"
25382538
2539 #: tp/Texinfo/Convert/Plaintext.pm:1849
2539 #: tp/Texinfo/Convert/Plaintext.pm:1937
25402540 #, perl-format
25412541 msgid "`.' or `,' must follow @xref, not %s"
25422542 msgstr "„.“ or „,“ muss @xref folgen, nicht %s"
25432543
2544 #: tp/Texinfo/Convert/Plaintext.pm:1852
2544 #: tp/Texinfo/Convert/Plaintext.pm:1940
25452545 msgid "`.' or `,' must follow @xref"
25462546 msgstr "„.“ or „,“ muss @xref folgen"
25472547
25502550 msgid "@%s should only appear at beginning or end of document"
25512551 msgstr "@%s sollte nur am Anfang oder Ende eines Dokuments erscheinen"
25522552
2553 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2553 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25542554 #, fuzzy, perl-format
25552555 msgid "multiple @%s"
25562556 msgstr "Mehrfache @%s"
31793179 msgid "no sectioning command associated with @%s"
31803180 msgstr ""
31813181
3182 #: tp/Texinfo/Structuring.pm:568
3183 #, fuzzy, perl-format
3184 msgid "menu reference to nonexistent node `%s'"
3185 msgstr "Nicht referenzierter Knoten „%s“"
3186
3187 #: tp/Texinfo/Structuring.pm:583
3188 #, perl-format
3189 msgid "menu entry node name `%s' different from %s name `%s'"
3190 msgstr ""
3191
3192 #: tp/Texinfo/Structuring.pm:619
3182 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3183 #, fuzzy, perl-format
3184 msgid "@%s reference to nonexistent node `%s'"
3185 msgstr ""
3186 "%sverweis auf nicht existierenden Knoten „%s“ (vielleicht @section statt "
3187 "@subsection o.ä.?)"
3188
3189 #: tp/Texinfo/Structuring.pm:551
3190 #, perl-format
3191 msgid "@%s entry node name `%s' different from %s name `%s'"
3192 msgstr ""
3193
3194 #: tp/Texinfo/Structuring.pm:656
31933195 #, perl-format
31943196 msgid "unreferenced node `%s'"
31953197 msgstr "Nicht referenzierter Knoten „%s“"
31963198
3197 #: tp/Texinfo/Structuring.pm:665
3199 #: tp/Texinfo/Structuring.pm:702
31983200 #, perl-format
31993201 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
32003202 msgstr ""
32013203
3202 #: tp/Texinfo/Structuring.pm:672
3204 #: tp/Texinfo/Structuring.pm:709
32033205 #, perl-format
32043206 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
32053207 msgstr ""
32063208
3207 #: tp/Texinfo/Structuring.pm:690
3209 #: tp/Texinfo/Structuring.pm:727
32083210 #, perl-format
32093211 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
32103212 msgstr ""
32113213
3212 #: tp/Texinfo/Structuring.pm:744
3214 #: tp/Texinfo/Structuring.pm:781
32133215 #, perl-format
32143216 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
32153217 msgstr ""
32163218
3217 #: tp/Texinfo/Structuring.pm:771
3219 #: tp/Texinfo/Structuring.pm:808
32183220 #, fuzzy, perl-format
32193221 msgid "%s reference to nonexistent `%s'"
32203222 msgstr "Nicht referenzierter Knoten „%s“"
32213223
3222 #: tp/Texinfo/Structuring.pm:790
3224 #: tp/Texinfo/Structuring.pm:827
32233225 #, fuzzy, perl-format
32243226 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
32253227 msgstr ""
32263228 "Dem Knoten „%s“ fehlt ein Menüeintrag für „%s“, obwohl er dessen Ziel für "
32273229 "„aufwärts“ (Up) ist"
32283230
3229 #: tp/Texinfo/Structuring.pm:798
3231 #: tp/Texinfo/Structuring.pm:835
32303232 #, perl-format
32313233 msgid "for `%s', up in menu `%s' and up `%s' don't match"
32323234 msgstr ""
32333235
3234 #: tp/Texinfo/Structuring.pm:1282
3235 #, fuzzy, perl-format
3236 msgid "@%s reference to nonexistent node `%s'"
3237 msgstr ""
3238 "%sverweis auf nicht existierenden Knoten „%s“ (vielleicht @section statt "
3239 "@subsection o.ä.?)"
3240
3241 #: tp/Texinfo/Structuring.pm:1294
3236 #: tp/Texinfo/Structuring.pm:1331
32423237 #, perl-format
32433238 msgid "@%s to `%s', different from %s name `%s'"
32443239 msgstr ""
32453240
3246 #: tp/Texinfo/Structuring.pm:1959
3241 #: tp/Texinfo/Structuring.pm:1996
32473242 #, fuzzy, perl-format
32483243 msgid "empty index key in @%s"
32493244 msgstr "Leeres Argument in @%s"
33553350 msgid "tex4ht.pm: could not open: %s"
33563351 msgstr "%s: Konnte CSS-Datei nicht öffnen: %s"
33573352
3358 #: tp/init/tex4ht.pm:293
3353 #: tp/init/tex4ht.pm:294
33593354 #, perl-format
33603355 msgid "tex4ht.pm: end of @%s item %d not found"
33613356 msgstr ""
33623357
3363 #: tp/init/tex4ht.pm:300
3358 #: tp/init/tex4ht.pm:301
33643359 #, perl-format
33653360 msgid ""
33663361 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33673362 "items found in the document for @%s"
33683363 msgstr ""
33693364
3370 #: tp/init/tex4ht.pm:320
3365 #: tp/init/tex4ht.pm:321
33713366 #, fuzzy, perl-format
33723367 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33733368 msgstr "Ausgabedatei „%s“ kann nicht angelegt werden."
33743369
3375 #: tp/init/tex4ht.pm:335
3370 #: tp/init/tex4ht.pm:336
33763371 #, perl-format
33773372 msgid ""
33783373 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
38583853 msgid "entry %s follows an entry with a secondary name"
38593854 msgstr "Eintrag „%s“ direkt nach einem Untereintrag"
38603855
3856 #, fuzzy
3857 #~ msgid "menu reference to nonexistent node `%s'"
3858 #~ msgstr "Nicht referenzierter Knoten „%s“"
3859
38613860 #~ msgid "protect_hashchar_at_line_beginning cannot protect in @%s"
38623861 #~ msgstr "protect_hashchar_at_line_beginning kann in @%s nichts schützen"
38633862
Binary diff not shown
88 msgstr ""
99 "Project-Id-Version: texinfo 3.12d\n"
1010 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
11 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
11 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1212 "PO-Revision-Date: 1999-02-16 21:14+01:00\n"
1313 "Last-Translator: Karl Eichwalder <ke@suse.de>\n"
1414 "Language-Team: German <de@li.org>\n"
22232223 msgid "@%s outside of any node"
22242224 msgstr ""
22252225
2226 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2226 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
22272227 #, perl-format
22282228 msgid "entry for index `%s' outside of any node"
22292229 msgstr ""
22302230
2231 #: tp/Texinfo/Convert/Plaintext.pm:1217
2231 #: tp/Texinfo/Convert/Plaintext.pm:1313
22322232 #, perl-format
22332233 msgid "error on closing image text file %s: %s"
22342234 msgstr ""
22352235
2236 #: tp/Texinfo/Convert/Plaintext.pm:1222
2236 #: tp/Texinfo/Convert/Plaintext.pm:1318
22372237 #, perl-format
22382238 msgid "@image file `%s' unreadable: %s"
22392239 msgstr ""
22402240
2241 #: tp/Texinfo/Convert/Plaintext.pm:1251
2241 #: tp/Texinfo/Convert/Plaintext.pm:1341
22422242 #, perl-format
22432243 msgid "could not find @image file `%s.txt' nor alternate text"
22442244 msgstr ""
22452245
2246 #: tp/Texinfo/Convert/Plaintext.pm:1617
2246 #: tp/Texinfo/Convert/Plaintext.pm:1705
22472247 msgid ""
22482248 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
22492249 "avoid that"
22502250 msgstr ""
22512251
2252 #: tp/Texinfo/Convert/Plaintext.pm:1849
2252 #: tp/Texinfo/Convert/Plaintext.pm:1937
22532253 #, perl-format
22542254 msgid "`.' or `,' must follow @xref, not %s"
22552255 msgstr ""
22562256
2257 #: tp/Texinfo/Convert/Plaintext.pm:1852
2257 #: tp/Texinfo/Convert/Plaintext.pm:1940
22582258 msgid "`.' or `,' must follow @xref"
22592259 msgstr ""
22602260
22632263 msgid "@%s should only appear at beginning or end of document"
22642264 msgstr ""
22652265
2266 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2266 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
22672267 #, perl-format
22682268 msgid "multiple @%s"
22692269 msgstr ""
28632863 msgid "no sectioning command associated with @%s"
28642864 msgstr ""
28652865
2866 #: tp/Texinfo/Structuring.pm:568
2867 #, perl-format
2868 msgid "menu reference to nonexistent node `%s'"
2869 msgstr ""
2870
2871 #: tp/Texinfo/Structuring.pm:583
2872 #, perl-format
2873 msgid "menu entry node name `%s' different from %s name `%s'"
2874 msgstr ""
2875
2876 #: tp/Texinfo/Structuring.pm:619
2866 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
2867 #, perl-format
2868 msgid "@%s reference to nonexistent node `%s'"
2869 msgstr ""
2870
2871 #: tp/Texinfo/Structuring.pm:551
2872 #, perl-format
2873 msgid "@%s entry node name `%s' different from %s name `%s'"
2874 msgstr ""
2875
2876 #: tp/Texinfo/Structuring.pm:656
28772877 #, perl-format
28782878 msgid "unreferenced node `%s'"
28792879 msgstr ""
28802880
2881 #: tp/Texinfo/Structuring.pm:665
2881 #: tp/Texinfo/Structuring.pm:702
28822882 #, perl-format
28832883 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
28842884 msgstr ""
28852885
2886 #: tp/Texinfo/Structuring.pm:672
2886 #: tp/Texinfo/Structuring.pm:709
28872887 #, perl-format
28882888 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
28892889 msgstr ""
28902890
2891 #: tp/Texinfo/Structuring.pm:690
2891 #: tp/Texinfo/Structuring.pm:727
28922892 #, perl-format
28932893 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
28942894 msgstr ""
28952895
2896 #: tp/Texinfo/Structuring.pm:744
2896 #: tp/Texinfo/Structuring.pm:781
28972897 #, perl-format
28982898 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
28992899 msgstr ""
29002900
2901 #: tp/Texinfo/Structuring.pm:771
2901 #: tp/Texinfo/Structuring.pm:808
29022902 #, perl-format
29032903 msgid "%s reference to nonexistent `%s'"
29042904 msgstr ""
29052905
2906 #: tp/Texinfo/Structuring.pm:790
2906 #: tp/Texinfo/Structuring.pm:827
29072907 #, perl-format
29082908 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
29092909 msgstr ""
29102910
2911 #: tp/Texinfo/Structuring.pm:798
2911 #: tp/Texinfo/Structuring.pm:835
29122912 #, perl-format
29132913 msgid "for `%s', up in menu `%s' and up `%s' don't match"
29142914 msgstr ""
29152915
2916 #: tp/Texinfo/Structuring.pm:1282
2917 #, perl-format
2918 msgid "@%s reference to nonexistent node `%s'"
2919 msgstr ""
2920
2921 #: tp/Texinfo/Structuring.pm:1294
2916 #: tp/Texinfo/Structuring.pm:1331
29222917 #, perl-format
29232918 msgid "@%s to `%s', different from %s name `%s'"
29242919 msgstr ""
29252920
2926 #: tp/Texinfo/Structuring.pm:1959
2921 #: tp/Texinfo/Structuring.pm:1996
29272922 #, perl-format
29282923 msgid "empty index key in @%s"
29292924 msgstr ""
30353030 msgid "tex4ht.pm: could not open: %s"
30363031 msgstr ""
30373032
3038 #: tp/init/tex4ht.pm:293
3033 #: tp/init/tex4ht.pm:294
30393034 #, perl-format
30403035 msgid "tex4ht.pm: end of @%s item %d not found"
30413036 msgstr ""
30423037
3043 #: tp/init/tex4ht.pm:300
3038 #: tp/init/tex4ht.pm:301
30443039 #, perl-format
30453040 msgid ""
30463041 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
30473042 "items found in the document for @%s"
30483043 msgstr ""
30493044
3050 #: tp/init/tex4ht.pm:320
3045 #: tp/init/tex4ht.pm:321
30513046 #, perl-format
30523047 msgid "tex4ht.pm: output has no HTML item for @%s %s"
30533048 msgstr ""
30543049
3055 #: tp/init/tex4ht.pm:335
3050 #: tp/init/tex4ht.pm:336
30563051 #, perl-format
30573052 msgid ""
30583053 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
Binary diff not shown
99 msgstr ""
1010 "Project-Id-Version: texinfo 4.13.92\n"
1111 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
12 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
12 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1313 "PO-Revision-Date: 2012-12-26 19:34+0100\n"
1414 "Last-Translator: Benno Schulenberg <benno@vertaalt.nl>\n"
1515 "Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
24562456 msgid "@%s outside of any node"
24572457 msgstr "'@%s' ekster iu ajn nodo"
24582458
2459 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2459 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24602460 #, fuzzy, perl-format
24612461 msgid "entry for index `%s' outside of any node"
24622462 msgstr "Elemento por indekso «%s» estas ekster iu ajn nodo"
24632463
2464 #: tp/Texinfo/Convert/Plaintext.pm:1217
2464 #: tp/Texinfo/Convert/Plaintext.pm:1313
24652465 #, fuzzy, perl-format
24662466 msgid "error on closing image text file %s: %s"
24672467 msgstr "Eraro dum fermo de %s (dosiero kun 'image'-teksto): %s"
24682468
2469 #: tp/Texinfo/Convert/Plaintext.pm:1222
2469 #: tp/Texinfo/Convert/Plaintext.pm:1318
24702470 #, perl-format
24712471 msgid "@image file `%s' unreadable: %s"
24722472 msgstr "Dosiero «%s» en komando '@image' ne legeblas: %s"
24732473
2474 #: tp/Texinfo/Convert/Plaintext.pm:1251
2474 #: tp/Texinfo/Convert/Plaintext.pm:1341
24752475 #, fuzzy, perl-format
24762476 msgid "could not find @image file `%s.txt' nor alternate text"
24772477 msgstr ""
24782478 "Ne eblas trovi dosieron «%s.txt» en komando '@image' nek alternativan tekston"
24792479
2480 #: tp/Texinfo/Convert/Plaintext.pm:1617
2480 #: tp/Texinfo/Convert/Plaintext.pm:1705
24812481 msgid ""
24822482 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24832483 "avoid that"
24852485 "«@strong{Note...}» estigas falsan referencon en Info; alivortigu por eviti "
24862486 "tion"
24872487
2488 #: tp/Texinfo/Convert/Plaintext.pm:1849
2488 #: tp/Texinfo/Convert/Plaintext.pm:1937
24892489 #, perl-format
24902490 msgid "`.' or `,' must follow @xref, not %s"
24912491 msgstr "Post '@xref' sekvendas «.» aŭ «,», ne «%s»"
24922492
2493 #: tp/Texinfo/Convert/Plaintext.pm:1852
2493 #: tp/Texinfo/Convert/Plaintext.pm:1940
24942494 msgid "`.' or `,' must follow @xref"
24952495 msgstr "Post '@xref' sekvendas «.» aŭ «,»"
24962496
24992499 msgid "@%s should only appear at beginning or end of document"
25002500 msgstr "@%s devus aperi nur je komenco aŭ fino de dokumento"
25012501
2502 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2502 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25032503 #, fuzzy, perl-format
25042504 msgid "multiple @%s"
25052505 msgstr "Pluraj '@%s'"
31143114 msgid "no sectioning command associated with @%s"
31153115 msgstr "Neniu sekciada komando estas rilatata al '@%s'"
31163116
3117 #: tp/Texinfo/Structuring.pm:568
3118 #, fuzzy, perl-format
3119 msgid "menu reference to nonexistent node `%s'"
3120 msgstr "Menua referenco al neekzistanta nodo «%s»"
3121
3122 #: tp/Texinfo/Structuring.pm:583
3123 #, fuzzy, perl-format
3124 msgid "menu entry node name `%s' different from %s name `%s'"
3117 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3118 #, perl-format
3119 msgid "@%s reference to nonexistent node `%s'"
3120 msgstr "@%s referenco al neekzistanta nodo «%s»"
3121
3122 #: tp/Texinfo/Structuring.pm:551
3123 #, fuzzy, perl-format
3124 msgid "@%s entry node name `%s' different from %s name `%s'"
31253125 msgstr "Menuera nodnomo '%s' malsamas de %s-nomo '%s'"
31263126
3127 #: tp/Texinfo/Structuring.pm:619
3127 #: tp/Texinfo/Structuring.pm:656
31283128 #, perl-format
31293129 msgid "unreferenced node `%s'"
31303130 msgstr "nodo «%s» ne estas referencita"
31313131
3132 #: tp/Texinfo/Structuring.pm:665
3132 #: tp/Texinfo/Structuring.pm:702
31333133 #, fuzzy, perl-format
31343134 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31353135 msgstr "Nodo «%s» estas %s por '%s' en sekciado sed ne en menuo"
31363136
3137 #: tp/Texinfo/Structuring.pm:672
3137 #: tp/Texinfo/Structuring.pm:709
31383138 #, fuzzy, perl-format
31393139 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31403140 msgstr "Nodo «%s» '%s' malsamas en menuo '%s' kaj en sekciado '%s'"
31413141
3142 #: tp/Texinfo/Structuring.pm:690
3142 #: tp/Texinfo/Structuring.pm:727
31433143 #, fuzzy, perl-format
31443144 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31453145 msgstr "Nodo «%s» estas %s por '%s' en menuo sed ne en sekciado"
31463146
3147 #: tp/Texinfo/Structuring.pm:744
3147 #: tp/Texinfo/Structuring.pm:781
31483148 #, perl-format
31493149 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31503150 msgstr "%s-ligo '%s' (por nodo «%s») malsamas de %s-nomo '%s'"
31513151
3152 #: tp/Texinfo/Structuring.pm:771
3152 #: tp/Texinfo/Structuring.pm:808
31533153 #, perl-format
31543154 msgid "%s reference to nonexistent `%s'"
31553155 msgstr "%s referenco al neekzistanta «%s»"
31563156
3157 #: tp/Texinfo/Structuring.pm:790
3157 #: tp/Texinfo/Structuring.pm:827
31583158 #, fuzzy, perl-format
31593159 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31603160 msgstr "En nodo «%s» mankas menuero por '%s', malgraŭ esti ties ligo 'Up'"
31613161
3162 #: tp/Texinfo/Structuring.pm:798
3162 #: tp/Texinfo/Structuring.pm:835
31633163 #, fuzzy, perl-format
31643164 msgid "for `%s', up in menu `%s' and up `%s' don't match"
31653165 msgstr "Por '%s', supren en menuo '%s' kaj supren en '%s' ne kongruas"
31663166
3167 #: tp/Texinfo/Structuring.pm:1282
3168 #, perl-format
3169 msgid "@%s reference to nonexistent node `%s'"
3170 msgstr "@%s referenco al neekzistanta nodo «%s»"
3171
3172 #: tp/Texinfo/Structuring.pm:1294
3167 #: tp/Texinfo/Structuring.pm:1331
31733168 #, perl-format
31743169 msgid "@%s to `%s', different from %s name `%s'"
31753170 msgstr "@%s al '%s', malsamas de %s-nomo '%s'"
31763171
3177 #: tp/Texinfo/Structuring.pm:1959
3172 #: tp/Texinfo/Structuring.pm:1996
31783173 #, fuzzy, perl-format
31793174 msgid "empty index key in @%s"
31803175 msgstr "Vaka indeksŝlosilo en '@%s'"
32883283 msgid "tex4ht.pm: could not open: %s"
32893284 msgstr "@%s: Ne eblas malfermi %s: %s"
32903285
3291 #: tp/init/tex4ht.pm:293
3286 #: tp/init/tex4ht.pm:294
32923287 #, perl-format
32933288 msgid "tex4ht.pm: end of @%s item %d not found"
32943289 msgstr ""
32953290
3296 #: tp/init/tex4ht.pm:300
3291 #: tp/init/tex4ht.pm:301
32973292 #, fuzzy, perl-format
32983293 msgid ""
32993294 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33023297 "traktado per 'tex4ht' produktis %d erojn en HTML; sed atendatas %d, la "
33033298 "nombro de elementoj en la dokumento"
33043299
3305 #: tp/init/tex4ht.pm:320
3300 #: tp/init/tex4ht.pm:321
33063301 #, fuzzy, perl-format
33073302 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33083303 msgstr "'tex4ht'-a eligo ne enhavas HTML-an eron por '@%s %s'"
33093304
3310 #: tp/init/tex4ht.pm:335
3305 #: tp/init/tex4ht.pm:336
33113306 #, fuzzy, perl-format
33123307 msgid ""
33133308 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
37843779 #, c-format
37853780 msgid "entry %s follows an entry with a secondary name"
37863781 msgstr "elemento %s sekvas elementon kun kromnomo"
3782
3783 #, fuzzy
3784 #~ msgid "menu reference to nonexistent node `%s'"
3785 #~ msgstr "Menua referenco al neekzistanta nodo «%s»"
37873786
37883787 #~ msgid "protect_hashchar_at_line_beginning cannot protect in @%s"
37893788 #~ msgstr "'protect_hashchar_at_line_beginning()' ne povas protekti en '@%s'"
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: texinfo-4.12.94\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1010 "PO-Revision-Date: 2008-09-04 23:50+0200\n"
1111 "Last-Translator: Benno Schulenberg <benno@vertaalt.nl>\n"
1212 "Language-Team: Spanish <es@li.org>\n"
25482548 msgid "@%s outside of any node"
25492549 msgstr "(fuera de nodo alguno)"
25502550
2551 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2551 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
25522552 #, fuzzy, perl-format
25532553 msgid "entry for index `%s' outside of any node"
25542554 msgstr "La entrada para el índice `%s' se encuentra fuera de nodo alguno"
25552555
2556 #: tp/Texinfo/Convert/Plaintext.pm:1217
2556 #: tp/Texinfo/Convert/Plaintext.pm:1313
25572557 #, fuzzy, perl-format
25582558 msgid "error on closing image text file %s: %s"
25592559 msgstr "error cerrando fichero `%s'"
25602560
2561 #: tp/Texinfo/Convert/Plaintext.pm:1222
2561 #: tp/Texinfo/Convert/Plaintext.pm:1318
25622562 #, perl-format
25632563 msgid "@image file `%s' unreadable: %s"
25642564 msgstr "El fichero de imagen `%s' no es accesible: %s"
25652565
2566 #: tp/Texinfo/Convert/Plaintext.pm:1251
2566 #: tp/Texinfo/Convert/Plaintext.pm:1341
25672567 #, fuzzy, perl-format
25682568 msgid "could not find @image file `%s.txt' nor alternate text"
25692569 msgstr "Nodo `%s' no fue encontrado."
25702570
2571 #: tp/Texinfo/Convert/Plaintext.pm:1617
2571 #: tp/Texinfo/Convert/Plaintext.pm:1705
25722572 msgid ""
25732573 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
25742574 "avoid that"
25762576 "@strong{Note...} produce una referencia no deseada en Info; reescríbalo para "
25772577 "que esto no ocurra"
25782578
2579 #: tp/Texinfo/Convert/Plaintext.pm:1849
2579 #: tp/Texinfo/Convert/Plaintext.pm:1937
25802580 #, fuzzy, perl-format
25812581 msgid "`.' or `,' must follow @xref, not %s"
25822582 msgstr "`@%s' debe ser precedido por `.' o `,', no por `%c'"
25832583
2584 #: tp/Texinfo/Convert/Plaintext.pm:1852
2584 #: tp/Texinfo/Convert/Plaintext.pm:1940
25852585 #, fuzzy
25862586 msgid "`.' or `,' must follow @xref"
25872587 msgstr "`@%s' debe ser precedido por `.' o `,', no por `%c'"
25912591 msgid "@%s should only appear at beginning or end of document"
25922592 msgstr "%s: no se pudo abrir --css-file: %s"
25932593
2594 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2594 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25952595 #, perl-format
25962596 msgid "multiple @%s"
25972597 msgstr ""
32163216 msgid "no sectioning command associated with @%s"
32173217 msgstr ""
32183218
3219 #: tp/Texinfo/Structuring.pm:568
3220 #, fuzzy, perl-format
3221 msgid "menu reference to nonexistent node `%s'"
3222 msgstr "Nodo `%s' no referenciado"
3223
3224 #: tp/Texinfo/Structuring.pm:583
3225 #, perl-format
3226 msgid "menu entry node name `%s' different from %s name `%s'"
3227 msgstr ""
3228
3229 #: tp/Texinfo/Structuring.pm:619
3219 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3220 #, fuzzy, perl-format
3221 msgid "@%s reference to nonexistent node `%s'"
3222 msgstr ""
3223 "`%s' hace referencia a un nodo inexistente (`%s'), quizás debido a un "
3224 "seccionado incorrecto del documento"
3225
3226 #: tp/Texinfo/Structuring.pm:551
3227 #, perl-format
3228 msgid "@%s entry node name `%s' different from %s name `%s'"
3229 msgstr ""
3230
3231 #: tp/Texinfo/Structuring.pm:656
32303232 #, perl-format
32313233 msgid "unreferenced node `%s'"
32323234 msgstr "Nodo `%s' no referenciado"
32333235
3234 #: tp/Texinfo/Structuring.pm:665
3236 #: tp/Texinfo/Structuring.pm:702
32353237 #, perl-format
32363238 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
32373239 msgstr ""
32383240
3239 #: tp/Texinfo/Structuring.pm:672
3241 #: tp/Texinfo/Structuring.pm:709
32403242 #, perl-format
32413243 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
32423244 msgstr ""
32433245
3244 #: tp/Texinfo/Structuring.pm:690
3246 #: tp/Texinfo/Structuring.pm:727
32453247 #, perl-format
32463248 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
32473249 msgstr ""
32483250
3249 #: tp/Texinfo/Structuring.pm:744
3251 #: tp/Texinfo/Structuring.pm:781
32503252 #, perl-format
32513253 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
32523254 msgstr ""
32533255
3254 #: tp/Texinfo/Structuring.pm:771
3256 #: tp/Texinfo/Structuring.pm:808
32553257 #, fuzzy, perl-format
32563258 msgid "%s reference to nonexistent `%s'"
32573259 msgstr "Nodo `%s' no referenciado"
32583260
3259 #: tp/Texinfo/Structuring.pm:790
3261 #: tp/Texinfo/Structuring.pm:827
32603262 #, fuzzy, perl-format
32613263 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
32623264 msgstr ""
32633265 "El nodo `%s' carece de elemento de menú alguno para `%s' aunque consta como "
32643266 "destino para `Up'"
32653267
3266 #: tp/Texinfo/Structuring.pm:798
3268 #: tp/Texinfo/Structuring.pm:835
32673269 #, perl-format
32683270 msgid "for `%s', up in menu `%s' and up `%s' don't match"
32693271 msgstr ""
32703272
3271 #: tp/Texinfo/Structuring.pm:1282
3272 #, fuzzy, perl-format
3273 msgid "@%s reference to nonexistent node `%s'"
3274 msgstr ""
3275 "`%s' hace referencia a un nodo inexistente (`%s'), quizás debido a un "
3276 "seccionado incorrecto del documento"
3277
3278 #: tp/Texinfo/Structuring.pm:1294
3273 #: tp/Texinfo/Structuring.pm:1331
32793274 #, perl-format
32803275 msgid "@%s to `%s', different from %s name `%s'"
32813276 msgstr ""
32823277
3283 #: tp/Texinfo/Structuring.pm:1959
3278 #: tp/Texinfo/Structuring.pm:1996
32843279 #, fuzzy, perl-format
32853280 msgid "empty index key in @%s"
32863281 msgstr ""
33933388 msgid "tex4ht.pm: could not open: %s"
33943389 msgstr "No se encontró `%s'."
33953390
3396 #: tp/init/tex4ht.pm:293
3391 #: tp/init/tex4ht.pm:294
33973392 #, perl-format
33983393 msgid "tex4ht.pm: end of @%s item %d not found"
33993394 msgstr ""
34003395
3401 #: tp/init/tex4ht.pm:300
3396 #: tp/init/tex4ht.pm:301
34023397 #, perl-format
34033398 msgid ""
34043399 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
34053400 "items found in the document for @%s"
34063401 msgstr ""
34073402
3408 #: tp/init/tex4ht.pm:320
3403 #: tp/init/tex4ht.pm:321
34093404 #, fuzzy, perl-format
34103405 msgid "tex4ht.pm: output has no HTML item for @%s %s"
34113406 msgstr "no se pudo crear el fichero `%s'"
34123407
3413 #: tp/init/tex4ht.pm:335
3408 #: tp/init/tex4ht.pm:336
34143409 #, perl-format
34153410 msgid ""
34163411 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
39683963 msgstr "la entrada %s sigue un elemento con nombre secundario"
39693964
39703965 #, fuzzy
3966 #~ msgid "menu reference to nonexistent node `%s'"
3967 #~ msgstr "Nodo `%s' no referenciado"
3968
3969 #, fuzzy
39713970 #~ msgid "Can't create directories `%s': %s"
39723971 #~ msgstr "No se pudo crear el directorio `%s': %s"
39733972
Binary diff not shown
1313 msgstr ""
1414 "Project-Id-Version: texinfo 4.13.92\n"
1515 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
16 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
16 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1717 "PO-Revision-Date: 2013-01-16 00:56+0100\n"
1818 "Last-Translator: Jean-Philippe Guérard <jean-philippe.guerard@corbeaunoir."
1919 "org>\n"
24852485 msgid "@%s outside of any node"
24862486 msgstr "@%s hors de tout nœud"
24872487
2488 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2488 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24892489 #, fuzzy, perl-format
24902490 msgid "entry for index `%s' outside of any node"
24912491 msgstr "L'entrée de l'index « %s » est hors de tout nœud"
24922492
2493 #: tp/Texinfo/Convert/Plaintext.pm:1217
2493 #: tp/Texinfo/Convert/Plaintext.pm:1313
24942494 #, fuzzy, perl-format
24952495 msgid "error on closing image text file %s: %s"
24962496 msgstr "Erreur de fermeture du fichier texte image %s : %s"
24972497
2498 #: tp/Texinfo/Convert/Plaintext.pm:1222
2498 #: tp/Texinfo/Convert/Plaintext.pm:1318
24992499 #, perl-format
25002500 msgid "@image file `%s' unreadable: %s"
25012501 msgstr "Fichier @image « %s » illisible : %s"
25022502
2503 #: tp/Texinfo/Convert/Plaintext.pm:1251
2503 #: tp/Texinfo/Convert/Plaintext.pm:1341
25042504 #, fuzzy, perl-format
25052505 msgid "could not find @image file `%s.txt' nor alternate text"
25062506 msgstr "Fichier @image « %s.txt » et texte de remplacement non trouvés"
25072507
2508 #: tp/Texinfo/Convert/Plaintext.pm:1617
2508 #: tp/Texinfo/Convert/Plaintext.pm:1705
25092509 msgid ""
25102510 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
25112511 "avoid that"
25132513 "@strong{Note...} produit un renvoi parasite dans Info ; reformulez pour "
25142514 "éviter cela"
25152515
2516 #: tp/Texinfo/Convert/Plaintext.pm:1849
2516 #: tp/Texinfo/Convert/Plaintext.pm:1937
25172517 #, perl-format
25182518 msgid "`.' or `,' must follow @xref, not %s"
25192519 msgstr "« . » ou « , » doit suivre @xref, pas %s"
25202520
2521 #: tp/Texinfo/Convert/Plaintext.pm:1852
2521 #: tp/Texinfo/Convert/Plaintext.pm:1940
25222522 msgid "`.' or `,' must follow @xref"
25232523 msgstr "« . » ou « , » doit suivre @xref"
25242524
25272527 msgid "@%s should only appear at beginning or end of document"
25282528 msgstr "@%s est uniquement permis en début ou en fin de document"
25292529
2530 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2530 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25312531 #, fuzzy, perl-format
25322532 msgid "multiple @%s"
25332533 msgstr "@%s multiples"
31543154 msgid "no sectioning command associated with @%s"
31553155 msgstr "Acune commande de sectionnement associée à @%s"
31563156
3157 #: tp/Texinfo/Structuring.pm:568
3158 #, fuzzy, perl-format
3159 msgid "menu reference to nonexistent node `%s'"
3160 msgstr "Entrée de menu pour un nœud « %s » inexistant"
3161
3162 #: tp/Texinfo/Structuring.pm:583
3163 #, fuzzy, perl-format
3164 msgid "menu entry node name `%s' different from %s name `%s'"
3157 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3158 #, perl-format
3159 msgid "@%s reference to nonexistent node `%s'"
3160 msgstr "@%s pointe vers un nœud « %s » inexistant"
3161
3162 #: tp/Texinfo/Structuring.pm:551
3163 #, fuzzy, perl-format
3164 msgid "@%s entry node name `%s' different from %s name `%s'"
31653165 msgstr "Nom de nœud de l'entrée de menu « %s » différente du nom de %s « %s »"
31663166
3167 #: tp/Texinfo/Structuring.pm:619
3167 #: tp/Texinfo/Structuring.pm:656
31683168 #, perl-format
31693169 msgid "unreferenced node `%s'"
31703170 msgstr "nœud « %s » non référencé"
31713171
3172 #: tp/Texinfo/Structuring.pm:665
3172 #: tp/Texinfo/Structuring.pm:702
31733173 #, fuzzy, perl-format
31743174 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31753175 msgstr ""
31763176 "Le nœud « %s » est %s pour « %s » dans le sectionnement, mais pas dans le "
31773177 "menu"
31783178
3179 #: tp/Texinfo/Structuring.pm:672
3179 #: tp/Texinfo/Structuring.pm:709
31803180 #, fuzzy, perl-format
31813181 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31823182 msgstr ""
31833183 "Le nœud %s « %s » est différent dans le menu « %s » et dans le sectionnement "
31843184 "« %s »"
31853185
3186 #: tp/Texinfo/Structuring.pm:690
3186 #: tp/Texinfo/Structuring.pm:727
31873187 #, fuzzy, perl-format
31883188 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31893189 msgstr ""
31903190 "Le nœud « %s » est %s pour « %s » dans le menu mais pas dans le sectionnement"
31913191
3192 #: tp/Texinfo/Structuring.pm:744
3192 #: tp/Texinfo/Structuring.pm:781
31933193 #, perl-format
31943194 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31953195 msgstr "Le pointeur %s « %s » (pour le nœud « %s ») diffère de %s nommé « %s »"
31963196
3197 #: tp/Texinfo/Structuring.pm:771
3197 #: tp/Texinfo/Structuring.pm:808
31983198 #, perl-format
31993199 msgid "%s reference to nonexistent `%s'"
32003200 msgstr "%s fait référence à « %s » qui n'existe pas"
32013201
3202 #: tp/Texinfo/Structuring.pm:790
3202 #: tp/Texinfo/Structuring.pm:827
32033203 #, fuzzy, perl-format
32043204 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
32053205 msgstr ""
32063206 "Le nœud « %s » n'a pas d'entrée de menu pour « %s », dont le « Up » le "
32073207 "désigne"
32083208
3209 #: tp/Texinfo/Structuring.pm:798
3209 #: tp/Texinfo/Structuring.pm:835
32103210 #, fuzzy, perl-format
32113211 msgid "for `%s', up in menu `%s' and up `%s' don't match"
32123212 msgstr ""
32133213 "Pour « %s », au-dessus dans le menu « %s » et au-dessus « %s » ne "
32143214 "correspondent pas"
32153215
3216 #: tp/Texinfo/Structuring.pm:1282
3217 #, perl-format
3218 msgid "@%s reference to nonexistent node `%s'"
3219 msgstr "@%s pointe vers un nœud « %s » inexistant"
3220
3221 #: tp/Texinfo/Structuring.pm:1294
3216 #: tp/Texinfo/Structuring.pm:1331
32223217 #, perl-format
32233218 msgid "@%s to `%s', different from %s name `%s'"
32243219 msgstr "@%s pour « %s », différent de %s nommé « %s »"
32253220
3226 #: tp/Texinfo/Structuring.pm:1959
3221 #: tp/Texinfo/Structuring.pm:1996
32273222 #, fuzzy, perl-format
32283223 msgid "empty index key in @%s"
32293224 msgstr "Entrée d'index vide dans @%s"
33373332 msgid "tex4ht.pm: could not open: %s"
33383333 msgstr "@%s : impossible d'ouvrir %s : %s"
33393334
3340 #: tp/init/tex4ht.pm:293
3335 #: tp/init/tex4ht.pm:294
33413336 #, perl-format
33423337 msgid "tex4ht.pm: end of @%s item %d not found"
33433338 msgstr ""
33443339
3345 #: tp/init/tex4ht.pm:300
3340 #: tp/init/tex4ht.pm:301
33463341 #, fuzzy, perl-format
33473342 msgid ""
33483343 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33513346 "Le traitement par tex4ht a produit %d éléments HTML ; %d étaient attendus, "
33523347 "correspondant au nombre d'éléments du document"
33533348
3354 #: tp/init/tex4ht.pm:320
3349 #: tp/init/tex4ht.pm:321
33553350 #, fuzzy, perl-format
33563351 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33573352 msgstr "La sortie de tex4html n'a pas d'élément HTML pour @%s %s"
33583353
3359 #: tp/init/tex4ht.pm:335
3354 #: tp/init/tex4ht.pm:336
33603355 #, fuzzy, perl-format
33613356 msgid ""
33623357 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
38583853 msgid "entry %s follows an entry with a secondary name"
38593854 msgstr "l'entrée %s suit une entrée ayant un nom secondaire"
38603855
3856 #, fuzzy
3857 #~ msgid "menu reference to nonexistent node `%s'"
3858 #~ msgstr "Entrée de menu pour un nœud « %s » inexistant"
3859
38613860 #~ msgid "protect_hashchar_at_line_beginning cannot protect in @%s"
38623861 #~ msgstr "protect_hashchar_at_line_beginning ne protège pas dans @%s"
38633862
Binary diff not shown
55 msgstr ""
66 "Project-Id-Version: texinfo 4.2\n"
77 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
8 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
8 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
99 "PO-Revision-Date: 2002-04-03 12:31+0300\n"
1010 "Last-Translator: Eli Zaretskii <eliz@gnu.org>\n"
1111 "Language-Team: Hebrew <eliz@gnu.org>\n"
23582358 msgid "@%s outside of any node"
23592359 msgstr "(הקסיפ לכל ץוחמ)"
23602360
2361 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2361 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
23622362 #, fuzzy, perl-format
23632363 msgid "entry for index `%s' outside of any node"
23642364 msgstr "הקסיפ לכל ץוחמ רדגומ `%s' סקדניא טירפ"
23652365
2366 #: tp/Texinfo/Convert/Plaintext.pm:1217
2366 #: tp/Texinfo/Convert/Plaintext.pm:1313
23672367 #, fuzzy, perl-format
23682368 msgid "error on closing image text file %s: %s"
23692369 msgstr "`%s' טלפ ץבוק תריגסב הלקת"
23702370
2371 #: tp/Texinfo/Convert/Plaintext.pm:1222
2371 #: tp/Texinfo/Convert/Plaintext.pm:1318
23722372 #, perl-format
23732373 msgid "@image file `%s' unreadable: %s"
23742374 msgstr "@image רובע `%s' ץבוק תאירקב (%s) הלקת"
23752375
2376 #: tp/Texinfo/Convert/Plaintext.pm:1251
2376 #: tp/Texinfo/Convert/Plaintext.pm:1341
23772377 #, fuzzy, perl-format
23782378 msgid "could not find @image file `%s.txt' nor alternate text"
23792379 msgstr ".האצמנ אל `%s' הקסיפ"
23802380
2381 #: tp/Texinfo/Convert/Plaintext.pm:1617
2381 #: tp/Texinfo/Convert/Plaintext.pm:1705
23822382 msgid ""
23832383 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
23842384 "avoid that"
23852385 msgstr ""
23862386
2387 #: tp/Texinfo/Convert/Plaintext.pm:1849
2387 #: tp/Texinfo/Convert/Plaintext.pm:1937
23882388 #, fuzzy, perl-format
23892389 msgid "`.' or `,' must follow @xref, not %s"
23902390 msgstr "%c אלו `,' וא `.' אובל ךירצ רושיק ירחא"
23912391
2392 #: tp/Texinfo/Convert/Plaintext.pm:1852
2392 #: tp/Texinfo/Convert/Plaintext.pm:1940
23932393 #, fuzzy
23942394 msgid "`.' or `,' must follow @xref"
23952395 msgstr "%c אלו `,' וא `.' אובל ךירצ רושיק ירחא"
23992399 msgid "@%s should only appear at beginning or end of document"
24002400 msgstr "`%s' ורקאמ תובחרה טלפ תחיתפב הלקת"
24012401
2402 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2402 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
24032403 #, perl-format
24042404 msgid "multiple @%s"
24052405 msgstr ""
30123012 msgid "no sectioning command associated with @%s"
30133013 msgstr ""
30143014
3015 #: tp/Texinfo/Structuring.pm:568
3016 #, fuzzy, perl-format
3017 msgid "menu reference to nonexistent node `%s'"
3018 msgstr "רושיק ףא ןיא `%s' הקסיפל"
3019
3020 #: tp/Texinfo/Structuring.pm:583
3021 #, perl-format
3022 msgid "menu entry node name `%s' different from %s name `%s'"
3023 msgstr ""
3024
3025 #: tp/Texinfo/Structuring.pm:619
3015 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3016 #, fuzzy, perl-format
3017 msgid "@%s reference to nonexistent node `%s'"
3018 msgstr "%sב `%s' תמייק הנניאש הקסיפל היינפה"
3019
3020 #: tp/Texinfo/Structuring.pm:551
3021 #, perl-format
3022 msgid "@%s entry node name `%s' different from %s name `%s'"
3023 msgstr ""
3024
3025 #: tp/Texinfo/Structuring.pm:656
30263026 #, perl-format
30273027 msgid "unreferenced node `%s'"
30283028 msgstr "רושיק ףא ןיא `%s' הקסיפל"
30293029
3030 #: tp/Texinfo/Structuring.pm:665
3030 #: tp/Texinfo/Structuring.pm:702
30313031 #, perl-format
30323032 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
30333033 msgstr ""
30343034
3035 #: tp/Texinfo/Structuring.pm:672
3035 #: tp/Texinfo/Structuring.pm:709
30363036 #, perl-format
30373037 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
30383038 msgstr ""
30393039
3040 #: tp/Texinfo/Structuring.pm:690
3040 #: tp/Texinfo/Structuring.pm:727
30413041 #, perl-format
30423042 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
30433043 msgstr ""
30443044
3045 #: tp/Texinfo/Structuring.pm:744
3045 #: tp/Texinfo/Structuring.pm:781
30463046 #, perl-format
30473047 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
30483048 msgstr ""
30493049
3050 #: tp/Texinfo/Structuring.pm:771
3050 #: tp/Texinfo/Structuring.pm:808
30513051 #, fuzzy, perl-format
30523052 msgid "%s reference to nonexistent `%s'"
30533053 msgstr "רושיק ףא ןיא `%s' הקסיפל"
30543054
3055 #: tp/Texinfo/Structuring.pm:790
3055 #: tp/Texinfo/Structuring.pm:827
30563056 #, fuzzy, perl-format
30573057 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
30583058 msgstr "הרזחב עיבצמש טירפת ףיעס ןיא לבא ,`%s' לע עיבצמ `%s' הקסיפ לש Up הדש"
30593059
3060 #: tp/Texinfo/Structuring.pm:798
3060 #: tp/Texinfo/Structuring.pm:835
30613061 #, perl-format
30623062 msgid "for `%s', up in menu `%s' and up `%s' don't match"
30633063 msgstr ""
30643064
3065 #: tp/Texinfo/Structuring.pm:1282
3066 #, fuzzy, perl-format
3067 msgid "@%s reference to nonexistent node `%s'"
3068 msgstr "%sב `%s' תמייק הנניאש הקסיפל היינפה"
3069
3070 #: tp/Texinfo/Structuring.pm:1294
3065 #: tp/Texinfo/Structuring.pm:1331
30713066 #, perl-format
30723067 msgid "@%s to `%s', different from %s name `%s'"
30733068 msgstr ""
30743069
3075 #: tp/Texinfo/Structuring.pm:1959
3070 #: tp/Texinfo/Structuring.pm:1996
30763071 #, fuzzy, perl-format
30773072 msgid "empty index key in @%s"
30783073 msgstr "`%s' תזורחמ םיליכמה סקדניא יטירפ ןיא\n"
31843179 msgid "tex4ht.pm: could not open: %s"
31853180 msgstr ".אצמנ אל `%s' ץבוק"
31863181
3187 #: tp/init/tex4ht.pm:293
3182 #: tp/init/tex4ht.pm:294
31883183 #, perl-format
31893184 msgid "tex4ht.pm: end of @%s item %d not found"
31903185 msgstr ""
31913186
3192 #: tp/init/tex4ht.pm:300
3187 #: tp/init/tex4ht.pm:301
31933188 #, perl-format
31943189 msgid ""
31953190 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
31963191 "items found in the document for @%s"
31973192 msgstr ""
31983193
3199 #: tp/init/tex4ht.pm:320
3194 #: tp/init/tex4ht.pm:321
32003195 #, fuzzy, perl-format
32013196 msgid "tex4ht.pm: output has no HTML item for @%s %s"
32023197 msgstr "`%s' טלפ ץבוק תריציב הלקת"
32033198
3204 #: tp/init/tex4ht.pm:335
3199 #: tp/init/tex4ht.pm:336
32053200 #, perl-format
32063201 msgid ""
32073202 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
36233618 #, c-format
36243619 msgid "entry %s follows an entry with a secondary name"
36253620 msgstr "ינשמ םש לעב טירפ תובקעב אב %s טירפ"
3621
3622 #, fuzzy
3623 #~ msgid "menu reference to nonexistent node `%s'"
3624 #~ msgstr "רושיק ףא ןיא `%s' הקסיפל"
36263625
36273626 #, fuzzy
36283627 #~ msgid "Can't create directories `%s': %s"
Binary diff not shown
88 msgstr ""
99 "Project-Id-Version: texinfo 4.13.92\n"
1010 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
11 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
11 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1212 "PO-Revision-Date: 2012-12-20 22:42+0100\n"
1313 "Last-Translator: Tomislav Krznar <tomislav.krznar@gmail.com>\n"
1414 "Language-Team: Croatian <lokalizacija@linux.hr>\n"
24572457 msgid "@%s outside of any node"
24582458 msgstr "@%s je izvan svih čvorova"
24592459
2460 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2460 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24612461 #, fuzzy, perl-format
24622462 msgid "entry for index `%s' outside of any node"
24632463 msgstr "Stavka za indeks „%s” je izvan svih čvorova"
24642464
24652465 # tekstualna datoteka slike ili datoteka teksta slike? (TK)
2466 #: tp/Texinfo/Convert/Plaintext.pm:1217
2466 #: tp/Texinfo/Convert/Plaintext.pm:1313
24672467 #, fuzzy, perl-format
24682468 msgid "error on closing image text file %s: %s"
24692469 msgstr "Greška pri zatvaranju tekstualne datoteke slike %s: %s"
24702470
2471 #: tp/Texinfo/Convert/Plaintext.pm:1222
2471 #: tp/Texinfo/Convert/Plaintext.pm:1318
24722472 #, perl-format
24732473 msgid "@image file `%s' unreadable: %s"
24742474 msgstr "@image datoteka „%s” nije čitljiva: %s"
24752475
2476 #: tp/Texinfo/Convert/Plaintext.pm:1251
2476 #: tp/Texinfo/Convert/Plaintext.pm:1341
24772477 #, fuzzy, perl-format
24782478 msgid "could not find @image file `%s.txt' nor alternate text"
24792479 msgstr "Ne mogu pronaći @image datoteku „%s.txt” niti mijenjati tekst"
24802480
2481 #: tp/Texinfo/Convert/Plaintext.pm:1617
2481 #: tp/Texinfo/Convert/Plaintext.pm:1705
24822482 msgid ""
24832483 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24842484 "avoid that"
24862486 "@strong{Bilješka...} proizvodi lažnu Info unakrsnu referencu, promijenite "
24872487 "riječi za izbjegavanje"
24882488
2489 #: tp/Texinfo/Convert/Plaintext.pm:1849
2489 #: tp/Texinfo/Convert/Plaintext.pm:1937
24902490 #, perl-format
24912491 msgid "`.' or `,' must follow @xref, not %s"
24922492 msgstr "nakon @xref mora slijediti „.” ili „,”, ne %s"
24932493
2494 #: tp/Texinfo/Convert/Plaintext.pm:1852
2494 #: tp/Texinfo/Convert/Plaintext.pm:1940
24952495 msgid "`.' or `,' must follow @xref"
24962496 msgstr "nakon @xref mora slijediti „.” ili „,”"
24972497
25002500 msgid "@%s should only appear at beginning or end of document"
25012501 msgstr "@%s bi se trebao pojaviti samo an početku ili kraju dokumenta"
25022502
2503 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2503 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25042504 #, fuzzy, perl-format
25052505 msgid "multiple @%s"
25062506 msgstr "Višestruki @%s"
31123112 msgid "no sectioning command associated with @%s"
31133113 msgstr "Nema naredbe za odlomke pridružene @%s"
31143114
3115 #: tp/Texinfo/Structuring.pm:568
3116 #, fuzzy, perl-format
3117 msgid "menu reference to nonexistent node `%s'"
3118 msgstr "Referenca izbornika na nepostojeći čvor „%s”"
3119
3120 #: tp/Texinfo/Structuring.pm:583
3121 #, fuzzy, perl-format
3122 msgid "menu entry node name `%s' different from %s name `%s'"
3115 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3116 #, perl-format
3117 msgid "@%s reference to nonexistent node `%s'"
3118 msgstr "%s referencira nepostojeći čvor „%s”"
3119
3120 #: tp/Texinfo/Structuring.pm:551
3121 #, fuzzy, perl-format
3122 msgid "@%s entry node name `%s' different from %s name `%s'"
31233123 msgstr "Ime čvora stavke izbornika „%s” različito od %s imena „%s”"
31243124
3125 #: tp/Texinfo/Structuring.pm:619
3125 #: tp/Texinfo/Structuring.pm:656
31263126 #, perl-format
31273127 msgid "unreferenced node `%s'"
31283128 msgstr "nereferencirani čvor „%s”"
31293129
3130 #: tp/Texinfo/Structuring.pm:665
3130 #: tp/Texinfo/Structuring.pm:702
31313131 #, fuzzy, perl-format
31323132 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31333133 msgstr "Čvor „%s” je %s za „%s” u odlomcima, ali ne u izborniku"
31343134
3135 #: tp/Texinfo/Structuring.pm:672
3135 #: tp/Texinfo/Structuring.pm:709
31363136 #, fuzzy, perl-format
31373137 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31383138 msgstr "Čvor %s „%s” u izborniku „%s” i u odlomcima „%s” se razlikuje"
31393139
3140 #: tp/Texinfo/Structuring.pm:690
3140 #: tp/Texinfo/Structuring.pm:727
31413141 #, fuzzy, perl-format
31423142 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31433143 msgstr "Čvor „%s” je %s za „%s” u izborniku, ali ne u odlomcima"
31443144
3145 #: tp/Texinfo/Structuring.pm:744
3145 #: tp/Texinfo/Structuring.pm:781
31463146 #, perl-format
31473147 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31483148 msgstr "%s pokazivač „%s” (za čvor „%s”) različit od %s imena „%s”"
31493149
3150 #: tp/Texinfo/Structuring.pm:771
3150 #: tp/Texinfo/Structuring.pm:808
31513151 #, perl-format
31523152 msgid "%s reference to nonexistent `%s'"
31533153 msgstr "%s referencira nepostojeći „%s”"
31543154
3155 #: tp/Texinfo/Structuring.pm:790
3155 #: tp/Texinfo/Structuring.pm:827
31563156 #, fuzzy, perl-format
31573157 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31583158 msgstr ""
31593159 "Čvoru „%s” nedostaje stavka izbornika „%s” iako je njegovo gornje odredište"
31603160
3161 #: tp/Texinfo/Structuring.pm:798
3161 #: tp/Texinfo/Structuring.pm:835
31623162 #, fuzzy, perl-format
31633163 msgid "for `%s', up in menu `%s' and up `%s' don't match"
31643164 msgstr "Za „%s”, gore u izborniku „%s” i gore „%s” su različiti"
31653165
3166 #: tp/Texinfo/Structuring.pm:1282
3167 #, perl-format
3168 msgid "@%s reference to nonexistent node `%s'"
3169 msgstr "%s referencira nepostojeći čvor „%s”"
3170
3171 #: tp/Texinfo/Structuring.pm:1294
3166 #: tp/Texinfo/Structuring.pm:1331
31723167 #, perl-format
31733168 msgid "@%s to `%s', different from %s name `%s'"
31743169 msgstr "@%s za „%s”, različit od %s imena „%s”"
31753170
3176 #: tp/Texinfo/Structuring.pm:1959
3171 #: tp/Texinfo/Structuring.pm:1996
31773172 #, fuzzy, perl-format
31783173 msgid "empty index key in @%s"
31793174 msgstr "Prazna tipka indeksa u @%s"
32873282 msgid "tex4ht.pm: could not open: %s"
32883283 msgstr "@%s: Ne mogu otvoriti %s: %s"
32893284
3290 #: tp/init/tex4ht.pm:293
3285 #: tp/init/tex4ht.pm:294
32913286 #, perl-format
32923287 msgid "tex4ht.pm: end of @%s item %d not found"
32933288 msgstr ""
32943289
3295 #: tp/init/tex4ht.pm:300
3290 #: tp/init/tex4ht.pm:301
32963291 #, fuzzy, perl-format
32973292 msgid ""
32983293 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33013296 "tex4ht obrada je napravila %d elemenata u HTML-u, očekivano je %d, koliko ih "
33023297 "je pronađeno u dokumentu"
33033298
3304 #: tp/init/tex4ht.pm:320
3299 #: tp/init/tex4ht.pm:321
33053300 #, fuzzy, perl-format
33063301 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33073302 msgstr "tex4ht izlaz nema HTML elemente za @%s %s"
33083303
3309 #: tp/init/tex4ht.pm:335
3304 #: tp/init/tex4ht.pm:336
33103305 #, fuzzy, perl-format
33113306 msgid ""
33123307 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
37913786 #, c-format
37923787 msgid "entry %s follows an entry with a secondary name"
37933788 msgstr "stavka %s slijedi nakon stavke sa sekundarnim imenom"
3789
3790 #, fuzzy
3791 #~ msgid "menu reference to nonexistent node `%s'"
3792 #~ msgstr "Referenca izbornika na nepostojeći čvor „%s”"
37943793
37953794 #~ msgid "protect_hashchar_at_line_beginning cannot protect in @%s"
37963795 #~ msgstr "protect_hashchar_at_line_beginning ne može zaštititi u @%s"
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: info\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1010 "PO-Revision-Date: 2006-02-18 16:00+0100\n"
1111 "Last-Translator: Mate LABADI <labadimate@freemail.hu>\n"
1212 "Language-Team: hungarian <hu@li.org>\n"
24812481 msgid "@%s outside of any node"
24822482 msgstr "(az oldalakon kívül)"
24832483
2484 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2484 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24852485 #, fuzzy, perl-format
24862486 msgid "entry for index `%s' outside of any node"
24872487 msgstr "A(z) „%s“ tárgymutató bejegyzése az oldalakon kívülre esik"
24882488
2489 #: tp/Texinfo/Convert/Plaintext.pm:1217
2489 #: tp/Texinfo/Convert/Plaintext.pm:1313
24902490 #, fuzzy, perl-format
24912491 msgid "error on closing image text file %s: %s"
24922492 msgstr "hiba a(z) „%s“ output fájl bezárásakor"
24932493
2494 #: tp/Texinfo/Convert/Plaintext.pm:1222
2494 #: tp/Texinfo/Convert/Plaintext.pm:1318
24952495 #, perl-format
24962496 msgid "@image file `%s' unreadable: %s"
24972497 msgstr "@image a(z) „%s“ fájl nem olvasható: %s"
24982498
2499 #: tp/Texinfo/Convert/Plaintext.pm:1251
2499 #: tp/Texinfo/Convert/Plaintext.pm:1341
25002500 #, fuzzy, perl-format
25012501 msgid "could not find @image file `%s.txt' nor alternate text"
25022502 msgstr "A(z) „%s“ oldal nem található."
25032503
2504 #: tp/Texinfo/Convert/Plaintext.pm:1617
2504 #: tp/Texinfo/Convert/Plaintext.pm:1705
25052505 msgid ""
25062506 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
25072507 "avoid that"
25082508 msgstr ""
25092509
2510 #: tp/Texinfo/Convert/Plaintext.pm:1849
2510 #: tp/Texinfo/Convert/Plaintext.pm:1937
25112511 #, perl-format
25122512 msgid "`.' or `,' must follow @xref, not %s"
25132513 msgstr ""
25142514
2515 #: tp/Texinfo/Convert/Plaintext.pm:1852
2515 #: tp/Texinfo/Convert/Plaintext.pm:1940
25162516 msgid "`.' or `,' must follow @xref"
25172517 msgstr ""
25182518
25212521 msgid "@%s should only appear at beginning or end of document"
25222522 msgstr "%s: A CSS fájl nem nyitható meg: %s"
25232523
2524 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2524 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25252525 #, perl-format
25262526 msgid "multiple @%s"
25272527 msgstr ""
31503150 msgid "no sectioning command associated with @%s"
31513151 msgstr ""
31523152
3153 #: tp/Texinfo/Structuring.pm:568
3154 #, fuzzy, perl-format
3155 msgid "menu reference to nonexistent node `%s'"
3156 msgstr "nem hivatkozott oldal „%s“"
3157
3158 #: tp/Texinfo/Structuring.pm:583
3159 #, perl-format
3160 msgid "menu entry node name `%s' different from %s name `%s'"
3161 msgstr ""
3162
3163 #: tp/Texinfo/Structuring.pm:619
3153 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3154 #, fuzzy, perl-format
3155 msgid "@%s reference to nonexistent node `%s'"
3156 msgstr ""
3157 "%s egy nem létező oldalra („%s“) hivatkozik (esetleg hibás szekcionálás?)"
3158
3159 #: tp/Texinfo/Structuring.pm:551
3160 #, perl-format
3161 msgid "@%s entry node name `%s' different from %s name `%s'"
3162 msgstr ""
3163
3164 #: tp/Texinfo/Structuring.pm:656
31643165 #, perl-format
31653166 msgid "unreferenced node `%s'"
31663167 msgstr "nem hivatkozott oldal „%s“"
31673168
3168 #: tp/Texinfo/Structuring.pm:665
3169 #: tp/Texinfo/Structuring.pm:702
31693170 #, perl-format
31703171 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31713172 msgstr ""
31723173
3173 #: tp/Texinfo/Structuring.pm:672
3174 #: tp/Texinfo/Structuring.pm:709
31743175 #, perl-format
31753176 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31763177 msgstr ""
31773178
3178 #: tp/Texinfo/Structuring.pm:690
3179 #: tp/Texinfo/Structuring.pm:727
31793180 #, perl-format
31803181 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31813182 msgstr ""
31823183
3183 #: tp/Texinfo/Structuring.pm:744
3184 #: tp/Texinfo/Structuring.pm:781
31843185 #, perl-format
31853186 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31863187 msgstr ""
31873188
3188 #: tp/Texinfo/Structuring.pm:771
3189 #: tp/Texinfo/Structuring.pm:808
31893190 #, fuzzy, perl-format
31903191 msgid "%s reference to nonexistent `%s'"
31913192 msgstr "nem hivatkozott oldal „%s“"
31923193
3193 #: tp/Texinfo/Structuring.pm:790
3194 #: tp/Texinfo/Structuring.pm:827
31943195 #, fuzzy, perl-format
31953196 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31963197 msgstr ""
31973198 "A(z) „%s“ oldal nem tartalmaz menüelemet „%s“-hez, bár ez uóbbi a szülője"
31983199
3199 #: tp/Texinfo/Structuring.pm:798
3200 #: tp/Texinfo/Structuring.pm:835
32003201 #, perl-format
32013202 msgid "for `%s', up in menu `%s' and up `%s' don't match"
32023203 msgstr ""
32033204
3204 #: tp/Texinfo/Structuring.pm:1282
3205 #, fuzzy, perl-format
3206 msgid "@%s reference to nonexistent node `%s'"
3207 msgstr ""
3208 "%s egy nem létező oldalra („%s“) hivatkozik (esetleg hibás szekcionálás?)"
3209
3210 #: tp/Texinfo/Structuring.pm:1294
3205 #: tp/Texinfo/Structuring.pm:1331
32113206 #, perl-format
32123207 msgid "@%s to `%s', different from %s name `%s'"
32133208 msgstr ""
32143209
3215 #: tp/Texinfo/Structuring.pm:1959
3210 #: tp/Texinfo/Structuring.pm:1996
32163211 #, fuzzy, perl-format
32173212 msgid "empty index key in @%s"
32183213 msgstr "Nincs tárgymutató ehhez: %s\n"
33323327 msgid "tex4ht.pm: could not open: %s"
33333328 msgstr "„%s“ nem található."
33343329
3335 #: tp/init/tex4ht.pm:293
3330 #: tp/init/tex4ht.pm:294
33363331 #, perl-format
33373332 msgid "tex4ht.pm: end of @%s item %d not found"
33383333 msgstr ""
33393334
3340 #: tp/init/tex4ht.pm:300
3335 #: tp/init/tex4ht.pm:301
33413336 #, perl-format
33423337 msgid ""
33433338 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33443339 "items found in the document for @%s"
33453340 msgstr ""
33463341
3347 #: tp/init/tex4ht.pm:320
3342 #: tp/init/tex4ht.pm:321
33483343 #, fuzzy, perl-format
33493344 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33503345 msgstr "a(z) „%s“ output fájl nem hozható létre."
33513346
3352 #: tp/init/tex4ht.pm:335
3347 #: tp/init/tex4ht.pm:336
33533348 #, perl-format
33543349 msgid ""
33553350 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
37113706 msgstr "a(z) %s bejegyzés egy másodlagos névvel rendelkező bejegyzést követ"
37123707
37133708 #, fuzzy
3709 #~ msgid "menu reference to nonexistent node `%s'"
3710 #~ msgstr "nem hivatkozott oldal „%s“"
3711
3712 #, fuzzy
37143713 #~ msgid "Can't create directories `%s': %s"
37153714 #~ msgstr "A(z) „%s“ könyvtár nem hozható létre: %s"
37163715
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: texinfo 4.12.94\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1010 "PO-Revision-Date: 2008-11-11 17:30+0700\n"
1111 "Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>\n"
1212 "Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
24912491 msgid "@%s outside of any node"
24922492 msgstr "(diluar dari titik apapun)"
24932493
2494 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2494 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24952495 #, fuzzy, perl-format
24962496 msgid "entry for index `%s' outside of any node"
24972497 msgstr "Masukan untuk indeks `%s' diluar dari titik apapun"
24982498
2499 #: tp/Texinfo/Convert/Plaintext.pm:1217
2499 #: tp/Texinfo/Convert/Plaintext.pm:1313
25002500 #, fuzzy, perl-format
25012501 msgid "error on closing image text file %s: %s"
25022502 msgstr "error menutup berkas keluaran `%s'"
25032503
2504 #: tp/Texinfo/Convert/Plaintext.pm:1222
2504 #: tp/Texinfo/Convert/Plaintext.pm:1318
25052505 #, perl-format
25062506 msgid "@image file `%s' unreadable: %s"
25072507 msgstr "@image berkas `%s' tidak dapat dibaca: %s"
25082508
2509 #: tp/Texinfo/Convert/Plaintext.pm:1251
2509 #: tp/Texinfo/Convert/Plaintext.pm:1341
25102510 #, fuzzy, perl-format
25112511 msgid "could not find @image file `%s.txt' nor alternate text"
25122512 msgstr "Tidak dapat menemukan titik `%s'."
25132513
2514 #: tp/Texinfo/Convert/Plaintext.pm:1617
2514 #: tp/Texinfo/Convert/Plaintext.pm:1705
25152515 msgid ""
25162516 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
25172517 "avoid that"
25192519 "@strong{Note...} menghasilkan sebuah referensi silang spurious dalam Info; "
25202520 "reword ke untuk menghindari"
25212521
2522 #: tp/Texinfo/Convert/Plaintext.pm:1849
2522 #: tp/Texinfo/Convert/Plaintext.pm:1937
25232523 #, fuzzy, perl-format
25242524 msgid "`.' or `,' must follow @xref, not %s"
25252525 msgstr "`.' atau `,' harus mengikuti @%s, bukan `%c'"
25262526
2527 #: tp/Texinfo/Convert/Plaintext.pm:1852
2527 #: tp/Texinfo/Convert/Plaintext.pm:1940
25282528 #, fuzzy
25292529 msgid "`.' or `,' must follow @xref"
25302530 msgstr "`.' atau `,' harus mengikuti @%s, bukan `%c'"
25342534 msgid "@%s should only appear at beginning or end of document"
25352535 msgstr "%s: tidak dapat membuka --css-file: %s"
25362536
2537 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2537 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25382538 #, perl-format
25392539 msgid "multiple @%s"
25402540 msgstr ""
31513151 msgid "no sectioning command associated with @%s"
31523152 msgstr ""
31533153
3154 #: tp/Texinfo/Structuring.pm:568
3155 #, fuzzy, perl-format
3156 msgid "menu reference to nonexistent node `%s'"
3157 msgstr "titik `%s' tidak tereferensi"
3158
3159 #: tp/Texinfo/Structuring.pm:583
3160 #, perl-format
3161 msgid "menu entry node name `%s' different from %s name `%s'"
3162 msgstr ""
3163
3164 #: tp/Texinfo/Structuring.pm:619
3154 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3155 #, fuzzy, perl-format
3156 msgid "@%s reference to nonexistent node `%s'"
3157 msgstr ""
3158 "%s referensi ke titik yang tidak ada `%s' (mungkin pembagian tidak benar?)"
3159
3160 #: tp/Texinfo/Structuring.pm:551
3161 #, perl-format
3162 msgid "@%s entry node name `%s' different from %s name `%s'"
3163 msgstr ""
3164
3165 #: tp/Texinfo/Structuring.pm:656
31653166 #, perl-format
31663167 msgid "unreferenced node `%s'"
31673168 msgstr "titik `%s' tidak tereferensi"
31683169
3169 #: tp/Texinfo/Structuring.pm:665
3170 #: tp/Texinfo/Structuring.pm:702
31703171 #, perl-format
31713172 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31723173 msgstr ""
31733174
3174 #: tp/Texinfo/Structuring.pm:672
3175 #: tp/Texinfo/Structuring.pm:709
31753176 #, perl-format
31763177 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31773178 msgstr ""
31783179
3179 #: tp/Texinfo/Structuring.pm:690
3180 #: tp/Texinfo/Structuring.pm:727
31803181 #, perl-format
31813182 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31823183 msgstr ""
31833184
3184 #: tp/Texinfo/Structuring.pm:744
3185 #: tp/Texinfo/Structuring.pm:781
31853186 #, perl-format
31863187 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31873188 msgstr ""
31883189
3189 #: tp/Texinfo/Structuring.pm:771
3190 #: tp/Texinfo/Structuring.pm:808
31903191 #, fuzzy, perl-format
31913192 msgid "%s reference to nonexistent `%s'"
31923193 msgstr "titik `%s' tidak tereferensi"
31933194
3194 #: tp/Texinfo/Structuring.pm:790
3195 #: tp/Texinfo/Structuring.pm:827
31953196 #, fuzzy, perl-format
31963197 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31973198 msgstr "Titik `%s' kurang item menu untuk `%s' dariapda target Up nya"
31983199
3199 #: tp/Texinfo/Structuring.pm:798
3200 #: tp/Texinfo/Structuring.pm:835
32003201 #, perl-format
32013202 msgid "for `%s', up in menu `%s' and up `%s' don't match"
32023203 msgstr ""
32033204
3204 #: tp/Texinfo/Structuring.pm:1282
3205 #, fuzzy, perl-format
3206 msgid "@%s reference to nonexistent node `%s'"
3207 msgstr ""
3208 "%s referensi ke titik yang tidak ada `%s' (mungkin pembagian tidak benar?)"
3209
3210 #: tp/Texinfo/Structuring.pm:1294
3205 #: tp/Texinfo/Structuring.pm:1331
32113206 #, perl-format
32123207 msgid "@%s to `%s', different from %s name `%s'"
32133208 msgstr ""
32143209
3215 #: tp/Texinfo/Structuring.pm:1959
3210 #: tp/Texinfo/Structuring.pm:1996
32163211 #, fuzzy, perl-format
32173212 msgid "empty index key in @%s"
32183213 msgstr "tidak ada masukan indeks ditemukan untuk `%s'\n"
33243319 msgid "tex4ht.pm: could not open: %s"
33253320 msgstr "Tidak dapat menemukan `%s'."
33263321
3327 #: tp/init/tex4ht.pm:293
3322 #: tp/init/tex4ht.pm:294
33283323 #, perl-format
33293324 msgid "tex4ht.pm: end of @%s item %d not found"
33303325 msgstr ""
33313326
3332 #: tp/init/tex4ht.pm:300
3327 #: tp/init/tex4ht.pm:301
33333328 #, perl-format
33343329 msgid ""
33353330 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33363331 "items found in the document for @%s"
33373332 msgstr ""
33383333
3339 #: tp/init/tex4ht.pm:320
3334 #: tp/init/tex4ht.pm:321
33403335 #, fuzzy, perl-format
33413336 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33423337 msgstr "tidak dapat membuat berkas keluaran `%s'"
33433338
3344 #: tp/init/tex4ht.pm:335
3339 #: tp/init/tex4ht.pm:336
33453340 #, perl-format
33463341 msgid ""
33473342 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
38053800 #, c-format
38063801 msgid "entry %s follows an entry with a secondary name"
38073802 msgstr "masukan %s mengikuti sebuah masukan dengan nama cadangan"
3803
3804 #, fuzzy
3805 #~ msgid "menu reference to nonexistent node `%s'"
3806 #~ msgstr "titik `%s' tidak tereferensi"
38083807
38093808 #, fuzzy
38103809 #~ msgid "Can't create directories `%s': %s"
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: texinfo 4.13.92\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1010 "PO-Revision-Date: 2013-01-07 11:26+0100\n"
1111 "Last-Translator: Francesco Groccia <frgroccia@gmail.com>\n"
1212 "Language-Team: Italian <tp@lists.linux.it>\n"
25042504 msgid "@%s outside of any node"
25052505 msgstr "@%s non presente in alcun nodo"
25062506
2507 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2507 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
25082508 #, fuzzy, perl-format
25092509 msgid "entry for index `%s' outside of any node"
25102510 msgstr "Voce per l'indice «%s» non presente in alcun nodo"
25112511
2512 #: tp/Texinfo/Convert/Plaintext.pm:1217
2512 #: tp/Texinfo/Convert/Plaintext.pm:1313
25132513 #, fuzzy, perl-format
25142514 msgid "error on closing image text file %s: %s"
25152515 msgstr "Errore durante la chiusura del file testo dell'immagine %s: %s"
25162516
2517 #: tp/Texinfo/Convert/Plaintext.pm:1222
2517 #: tp/Texinfo/Convert/Plaintext.pm:1318
25182518 #, perl-format
25192519 msgid "@image file `%s' unreadable: %s"
25202520 msgstr "file @image «%s» non leggibile: %s"
25212521
2522 #: tp/Texinfo/Convert/Plaintext.pm:1251
2522 #: tp/Texinfo/Convert/Plaintext.pm:1341
25232523 #, fuzzy, perl-format
25242524 msgid "could not find @image file `%s.txt' nor alternate text"
25252525 msgstr "Impossibile trovare il file @image «%s.txt» né testo alternativo"
25262526
2527 #: tp/Texinfo/Convert/Plaintext.pm:1617
2527 #: tp/Texinfo/Convert/Plaintext.pm:1705
25282528 msgid ""
25292529 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
25302530 "avoid that"
25322532 "@strong{Nota...} produce un riferimento falso; riscrivilo per evitare che "
25332533 "non succeda"
25342534
2535 #: tp/Texinfo/Convert/Plaintext.pm:1849
2535 #: tp/Texinfo/Convert/Plaintext.pm:1937
25362536 #, perl-format
25372537 msgid "`.' or `,' must follow @xref, not %s"
25382538 msgstr "«.» o «,» devono seguire @xref, non %s"
25392539
2540 #: tp/Texinfo/Convert/Plaintext.pm:1852
2540 #: tp/Texinfo/Convert/Plaintext.pm:1940
25412541 msgid "`.' or `,' must follow @xref"
25422542 msgstr "«.» o «,» devono seguire @xref"
25432543
25462546 msgid "@%s should only appear at beginning or end of document"
25472547 msgstr "@%s dovrebbe apparire solo all'inizio o alla fine del documento"
25482548
2549 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2549 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25502550 #, fuzzy, perl-format
25512551 msgid "multiple @%s"
25522552 msgstr "@%s multiplo"
31743174 msgid "no sectioning command associated with @%s"
31753175 msgstr "Nessun comando di sezionamento associato con @%s"
31763176
3177 #: tp/Texinfo/Structuring.pm:568
3178 #, fuzzy, perl-format
3179 msgid "menu reference to nonexistent node `%s'"
3180 msgstr "Riferimento del menù all'inesistente nodo «%s»"
3181
3182 #: tp/Texinfo/Structuring.pm:583
3183 #, fuzzy, perl-format
3184 msgid "menu entry node name `%s' different from %s name `%s'"
3177 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3178 #, perl-format
3179 msgid "@%s reference to nonexistent node `%s'"
3180 msgstr "%s si riferisce al nodo inesistente «%s»"
3181
3182 #: tp/Texinfo/Structuring.pm:551
3183 #, fuzzy, perl-format
3184 msgid "@%s entry node name `%s' different from %s name `%s'"
31853185 msgstr "Nome del nodo della voce di menù «%s» diverso dal nome %s «%s»"
31863186
3187 #: tp/Texinfo/Structuring.pm:619
3187 #: tp/Texinfo/Structuring.pm:656
31883188 #, perl-format
31893189 msgid "unreferenced node `%s'"
31903190 msgstr "nodo «%s» non referenziato"
31913191
3192 #: tp/Texinfo/Structuring.pm:665
3192 #: tp/Texinfo/Structuring.pm:702
31933193 #, fuzzy, perl-format
31943194 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31953195 msgstr "Il nodo «%s» è %s per «%s» nel sezionamento, ma non nel menù"
31963196
3197 #: tp/Texinfo/Structuring.pm:672
3197 #: tp/Texinfo/Structuring.pm:709
31983198 #, fuzzy, perl-format
31993199 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
32003200 msgstr "I nodi %s «%s» nel menù «%s» e nel sezionamento «%s» sono diversi"
32013201
3202 #: tp/Texinfo/Structuring.pm:690
3202 #: tp/Texinfo/Structuring.pm:727
32033203 #, fuzzy, perl-format
32043204 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
32053205 msgstr "Il nodo «%s» è %s per «%s» nel menù, ma non nel sezionamento"
32063206
3207 #: tp/Texinfo/Structuring.pm:744
3207 #: tp/Texinfo/Structuring.pm:781
32083208 #, perl-format
32093209 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
32103210 msgstr "Il puntatore %s «%s» (per il nodo «%s») è diverso dal nome %s «%s»"
32113211
3212 #: tp/Texinfo/Structuring.pm:771
3212 #: tp/Texinfo/Structuring.pm:808
32133213 #, perl-format
32143214 msgid "%s reference to nonexistent `%s'"
32153215 msgstr "%s si riferisce all'inesistente «%s»"
32163216
3217 #: tp/Texinfo/Structuring.pm:790
3217 #: tp/Texinfo/Structuring.pm:827
32183218 #, fuzzy, perl-format
32193219 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
32203220 msgstr ""
32213221 "Il nodo «%s» non ha alcuna voce di menù per «%s», nonostante sia destinata "
32223222 "ad «Up»"
32233223
3224 #: tp/Texinfo/Structuring.pm:798
3224 #: tp/Texinfo/Structuring.pm:835
32253225 #, fuzzy, perl-format
32263226 msgid "for `%s', up in menu `%s' and up `%s' don't match"
32273227 msgstr "Per «%s», «Up» nel menù «%s» e «%s» «Up» non coincidono"
32283228
3229 #: tp/Texinfo/Structuring.pm:1282
3230 #, perl-format
3231 msgid "@%s reference to nonexistent node `%s'"
3232 msgstr "%s si riferisce al nodo inesistente «%s»"
3233
3234 #: tp/Texinfo/Structuring.pm:1294
3229 #: tp/Texinfo/Structuring.pm:1331
32353230 #, perl-format
32363231 msgid "@%s to `%s', different from %s name `%s'"
32373232 msgstr "@%s a «%s», diverso dal nome %s «%s»"
32383233
3239 #: tp/Texinfo/Structuring.pm:1959
3234 #: tp/Texinfo/Structuring.pm:1996
32403235 #, fuzzy, perl-format
32413236 msgid "empty index key in @%s"
32423237 msgstr "Chiave indice vuota in @%s"
33503345 msgid "tex4ht.pm: could not open: %s"
33513346 msgstr "%s: impossibile aprire %s: %s"
33523347
3353 #: tp/init/tex4ht.pm:293
3348 #: tp/init/tex4ht.pm:294
33543349 #, perl-format
33553350 msgid "tex4ht.pm: end of @%s item %d not found"
33563351 msgstr ""
33573352
3358 #: tp/init/tex4ht.pm:300
3353 #: tp/init/tex4ht.pm:301
33593354 #, fuzzy, perl-format
33603355 msgid ""
33613356 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33643359 "L'elaborazioine di tex4ht ha prodotto %d voci in HTML; si aspettava %d, il "
33653360 "numero di voci trovate nel documento"
33663361
3367 #: tp/init/tex4ht.pm:320
3362 #: tp/init/tex4ht.pm:321
33683363 #, fuzzy, perl-format
33693364 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33703365 msgstr "L'output di tex4ht non ha nessuna voce HTML per @%s %s"
33713366
3372 #: tp/init/tex4ht.pm:335
3367 #: tp/init/tex4ht.pm:336
33733368 #, fuzzy, perl-format
33743369 msgid ""
33753370 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
38793874 msgid "entry %s follows an entry with a secondary name"
38803875 msgstr "la voce %s segue un elemento con un nome secondario"
38813876
3877 #, fuzzy
3878 #~ msgid "menu reference to nonexistent node `%s'"
3879 #~ msgstr "Riferimento del menù all'inesistente nodo «%s»"
3880
38823881 #~ msgid "protect_hashchar_at_line_beginning cannot protect in @%s"
38833882 #~ msgstr "protect_hashchar_at_line_beginning non protetto in @%s"
38843883
Binary diff not shown
1212 msgstr ""
1313 "Project-Id-Version: texinfo 4.13.91\n"
1414 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
15 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
15 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1616 "PO-Revision-Date: 2012-11-29 07:15+0900\n"
1717 "Last-Translator: Takeshi Hamasaki <hmatrjp@users.sourceforge.jp>\n"
1818 "Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
24602460 msgid "@%s outside of any node"
24612461 msgstr "(あらゆるノードの外側)"
24622462
2463 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2463 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24642464 #, fuzzy, perl-format
24652465 msgid "entry for index `%s' outside of any node"
24662466 msgstr "`%s' 見出し項目があらゆるノードの外側にあります"
24672467
2468 #: tp/Texinfo/Convert/Plaintext.pm:1217
2468 #: tp/Texinfo/Convert/Plaintext.pm:1313
24692469 #, fuzzy, perl-format
24702470 msgid "error on closing image text file %s: %s"
24712471 msgstr "出力ファイル `%s' を閉じる際にエラーが発生しました"
24722472
2473 #: tp/Texinfo/Convert/Plaintext.pm:1222
2473 #: tp/Texinfo/Convert/Plaintext.pm:1318
24742474 #, perl-format
24752475 msgid "@image file `%s' unreadable: %s"
24762476 msgstr "@image ファイル `%s' が読めません: %s"
24772477
2478 #: tp/Texinfo/Convert/Plaintext.pm:1251
2478 #: tp/Texinfo/Convert/Plaintext.pm:1341
24792479 #, perl-format
24802480 msgid "could not find @image file `%s.txt' nor alternate text"
24812481 msgstr ""
24822482
2483 #: tp/Texinfo/Convert/Plaintext.pm:1617
2483 #: tp/Texinfo/Convert/Plaintext.pm:1705
24842484 msgid ""
24852485 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24862486 "avoid that"
24882488 "@strong{Note...} は Info 内に疑似的な相互参照を生成します。使用は避けてくださ"
24892489 "い"
24902490
2491 #: tp/Texinfo/Convert/Plaintext.pm:1849
2491 #: tp/Texinfo/Convert/Plaintext.pm:1937
24922492 #, fuzzy, perl-format
24932493 msgid "`.' or `,' must follow @xref, not %s"
24942494 msgstr "`.' または `,' には `%2$c' では無く @%1$s が続かなければいけません。"
24952495
2496 #: tp/Texinfo/Convert/Plaintext.pm:1852
2496 #: tp/Texinfo/Convert/Plaintext.pm:1940
24972497 #, fuzzy
24982498 msgid "`.' or `,' must follow @xref"
24992499 msgstr "`.' または `,' には `%2$c' では無く @%1$s が続かなければいけません。"
25032503 msgid "@%s should only appear at beginning or end of document"
25042504 msgstr ""
25052505
2506 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2506 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25072507 #, perl-format
25082508 msgid "multiple @%s"
25092509 msgstr ""
31233123 msgid "no sectioning command associated with @%s"
31243124 msgstr "ホスト名にアドレスが割り当てられていません"
31253125
3126 #: tp/Texinfo/Structuring.pm:568
3127 #, fuzzy, perl-format
3128 msgid "menu reference to nonexistent node `%s'"
3129 msgstr "参照されていないノード `%s'"
3130
3131 #: tp/Texinfo/Structuring.pm:583
3132 #, fuzzy, perl-format
3133 msgid "menu entry node name `%s' different from %s name `%s'"
3126 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3127 #, fuzzy, perl-format
3128 msgid "@%s reference to nonexistent node `%s'"
3129 msgstr ""
3130 "%s は存在しないノード `%s' を参照しています (正しくないセクション付けをしてい"
3131 "るかもしれません?)"
3132
3133 #: tp/Texinfo/Structuring.pm:551
3134 #, fuzzy, perl-format
3135 msgid "@%s entry node name `%s' different from %s name `%s'"
31343136 msgstr "名前の取得に失敗しました: %s"
31353137
3136 #: tp/Texinfo/Structuring.pm:619
3138 #: tp/Texinfo/Structuring.pm:656
31373139 #, perl-format
31383140 msgid "unreferenced node `%s'"
31393141 msgstr "参照されていないノード `%s'"
31403142
3141 #: tp/Texinfo/Structuring.pm:665
3143 #: tp/Texinfo/Structuring.pm:702
31423144 #, perl-format
31433145 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31443146 msgstr ""
31453147
3146 #: tp/Texinfo/Structuring.pm:672
3148 #: tp/Texinfo/Structuring.pm:709
31473149 #, perl-format
31483150 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31493151 msgstr ""
31503152
3151 #: tp/Texinfo/Structuring.pm:690
3153 #: tp/Texinfo/Structuring.pm:727
31523154 #, perl-format
31533155 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31543156 msgstr ""
31553157
3156 #: tp/Texinfo/Structuring.pm:744
3158 #: tp/Texinfo/Structuring.pm:781
31573159 #, perl-format
31583160 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31593161 msgstr ""
31603162
3161 #: tp/Texinfo/Structuring.pm:771
3163 #: tp/Texinfo/Structuring.pm:808
31623164 #, perl-format
31633165 msgid "%s reference to nonexistent `%s'"
31643166 msgstr "%s は存在しない `%s' を参照しています"
31653167
3166 #: tp/Texinfo/Structuring.pm:790
3168 #: tp/Texinfo/Structuring.pm:827
31673169 #, fuzzy, perl-format
31683170 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31693171 msgstr ""
31703172 "ノード `%s' には 上位項目があるのに、`%s' へのメニューアイテムを欠いています"
31713173
3172 #: tp/Texinfo/Structuring.pm:798
3174 #: tp/Texinfo/Structuring.pm:835
31733175 #, perl-format
31743176 msgid "for `%s', up in menu `%s' and up `%s' don't match"
31753177 msgstr ""
31763178
3177 #: tp/Texinfo/Structuring.pm:1282
3178 #, fuzzy, perl-format
3179 msgid "@%s reference to nonexistent node `%s'"
3180 msgstr ""
3181 "%s は存在しないノード `%s' を参照しています (正しくないセクション付けをしてい"
3182 "るかもしれません?)"
3183
3184 #: tp/Texinfo/Structuring.pm:1294
3179 #: tp/Texinfo/Structuring.pm:1331
31853180 #, fuzzy, perl-format
31863181 msgid "@%s to `%s', different from %s name `%s'"
31873182 msgstr "名前の取得に失敗しました: %s"
31883183
3189 #: tp/Texinfo/Structuring.pm:1959
3184 #: tp/Texinfo/Structuring.pm:1996
31903185 #, fuzzy, perl-format
31913186 msgid "empty index key in @%s"
31923187 msgstr "コメント内でファイル終端 (EOF) に達しました"
32983293 msgid "tex4ht.pm: could not open: %s"
32993294 msgstr "@%s: %s を開くことができません: %s"
33003295
3301 #: tp/init/tex4ht.pm:293
3296 #: tp/init/tex4ht.pm:294
33023297 #, perl-format
33033298 msgid "tex4ht.pm: end of @%s item %d not found"
33043299 msgstr ""
33053300
3306 #: tp/init/tex4ht.pm:300
3301 #: tp/init/tex4ht.pm:301
33073302 #, perl-format
33083303 msgid ""
33093304 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33103305 "items found in the document for @%s"
33113306 msgstr ""
33123307
3313 #: tp/init/tex4ht.pm:320
3308 #: tp/init/tex4ht.pm:321
33143309 #, fuzzy, perl-format
33153310 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33163311 msgstr "設定ファイルの欠落。"
33173312
3318 #: tp/init/tex4ht.pm:335
3313 #: tp/init/tex4ht.pm:336
33193314 #, perl-format
33203315 msgid ""
33213316 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
37903785 #, c-format
37913786 msgid "entry %s follows an entry with a secondary name"
37923787 msgstr "%s 項目に二つ目の項目名が続いています"
3788
3789 #, fuzzy
3790 #~ msgid "menu reference to nonexistent node `%s'"
3791 #~ msgstr "参照されていないノード `%s'"
37933792
37943793 #, fuzzy
37953794 #~ msgid "Can't read file %s: %s"
Binary diff not shown
2020 msgstr ""
2121 "Project-Id-Version: texinfo 4.7.90\n"
2222 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
23 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
23 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
2424 "PO-Revision-Date: 2004-12-05 15:37+0100\n"
2525 "Last-Translator: Trond Endrestøl <Trond.Endrestol@gtf.ol.no>\n"
2626 "Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
23922392 msgid "@%s outside of any node"
23932393 msgstr "(utenfor noder)"
23942394
2395 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2395 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
23962396 #, fuzzy, perl-format
23972397 msgid "entry for index `%s' outside of any node"
23982398 msgstr "Innslag for indeksen «%s» utenfor node"
23992399
2400 #: tp/Texinfo/Convert/Plaintext.pm:1217
2400 #: tp/Texinfo/Convert/Plaintext.pm:1313
24012401 #, fuzzy, perl-format
24022402 msgid "error on closing image text file %s: %s"
24032403 msgstr "Feil ved lukking av outputfila «%s»"
24042404
2405 #: tp/Texinfo/Convert/Plaintext.pm:1222
2405 #: tp/Texinfo/Convert/Plaintext.pm:1318
24062406 #, perl-format
24072407 msgid "@image file `%s' unreadable: %s"
24082408 msgstr "@image-fil «%s» er uleselig: %s"
24092409
2410 #: tp/Texinfo/Convert/Plaintext.pm:1251
2410 #: tp/Texinfo/Convert/Plaintext.pm:1341
24112411 #, fuzzy, perl-format
24122412 msgid "could not find @image file `%s.txt' nor alternate text"
24132413 msgstr "Kan ikke finne noden «%s»."
24142414
2415 #: tp/Texinfo/Convert/Plaintext.pm:1617
2415 #: tp/Texinfo/Convert/Plaintext.pm:1705
24162416 msgid ""
24172417 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24182418 "avoid that"
24202420 "@strong{Note...} lager en overflødig kryssreferanse i Info; skriv om for å "
24212421 "unngå dette"
24222422
2423 #: tp/Texinfo/Convert/Plaintext.pm:1849
2423 #: tp/Texinfo/Convert/Plaintext.pm:1937
24242424 #, perl-format
24252425 msgid "`.' or `,' must follow @xref, not %s"
24262426 msgstr ""
24272427
2428 #: tp/Texinfo/Convert/Plaintext.pm:1852
2428 #: tp/Texinfo/Convert/Plaintext.pm:1940
24292429 msgid "`.' or `,' must follow @xref"
24302430 msgstr ""
24312431
24342434 msgid "@%s should only appear at beginning or end of document"
24352435 msgstr "%s: kunne ikke åpne --css-file: %s"
24362436
2437 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2437 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
24382438 #, perl-format
24392439 msgid "multiple @%s"
24402440 msgstr ""
30453045 msgid "no sectioning command associated with @%s"
30463046 msgstr ""
30473047
3048 #: tp/Texinfo/Structuring.pm:568
3049 #, fuzzy, perl-format
3050 msgid "menu reference to nonexistent node `%s'"
3051 msgstr "ureferert node «%s»"
3052
3053 #: tp/Texinfo/Structuring.pm:583
3054 #, perl-format
3055 msgid "menu entry node name `%s' different from %s name `%s'"
3056 msgstr ""
3057
3058 #: tp/Texinfo/Structuring.pm:619
3048 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3049 #, fuzzy, perl-format
3050 msgid "@%s reference to nonexistent node `%s'"
3051 msgstr ""
3052 "%s referanse til ikke-eksisterende node «%s» (kanskje ugyldig inndeling?)"
3053
3054 #: tp/Texinfo/Structuring.pm:551
3055 #, perl-format
3056 msgid "@%s entry node name `%s' different from %s name `%s'"
3057 msgstr ""
3058
3059 #: tp/Texinfo/Structuring.pm:656
30593060 #, perl-format
30603061 msgid "unreferenced node `%s'"
30613062 msgstr "ureferert node «%s»"
30623063
3063 #: tp/Texinfo/Structuring.pm:665
3064 #: tp/Texinfo/Structuring.pm:702
30643065 #, perl-format
30653066 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
30663067 msgstr ""
30673068
3068 #: tp/Texinfo/Structuring.pm:672
3069 #: tp/Texinfo/Structuring.pm:709
30693070 #, perl-format
30703071 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
30713072 msgstr ""
30723073
3073 #: tp/Texinfo/Structuring.pm:690
3074 #: tp/Texinfo/Structuring.pm:727
30743075 #, perl-format
30753076 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
30763077 msgstr ""
30773078
3078 #: tp/Texinfo/Structuring.pm:744
3079 #: tp/Texinfo/Structuring.pm:781
30793080 #, perl-format
30803081 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
30813082 msgstr ""
30823083
3083 #: tp/Texinfo/Structuring.pm:771
3084 #: tp/Texinfo/Structuring.pm:808
30843085 #, fuzzy, perl-format
30853086 msgid "%s reference to nonexistent `%s'"
30863087 msgstr "ureferert node «%s»"
30873088
3088 #: tp/Texinfo/Structuring.pm:790
3089 #: tp/Texinfo/Structuring.pm:827
30893090 #, fuzzy, perl-format
30903091 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
30913092 msgstr "Noden «%s» mangler et menypunkt for «%s» selv om den er dens oppmål"
30923093
3093 #: tp/Texinfo/Structuring.pm:798
3094 #: tp/Texinfo/Structuring.pm:835
30943095 #, perl-format
30953096 msgid "for `%s', up in menu `%s' and up `%s' don't match"
30963097 msgstr ""
30973098
3098 #: tp/Texinfo/Structuring.pm:1282
3099 #, fuzzy, perl-format
3100 msgid "@%s reference to nonexistent node `%s'"
3101 msgstr ""
3102 "%s referanse til ikke-eksisterende node «%s» (kanskje ugyldig inndeling?)"
3103
3104 #: tp/Texinfo/Structuring.pm:1294
3099 #: tp/Texinfo/Structuring.pm:1331
31053100 #, perl-format
31063101 msgid "@%s to `%s', different from %s name `%s'"
31073102 msgstr ""
31083103
3109 #: tp/Texinfo/Structuring.pm:1959
3104 #: tp/Texinfo/Structuring.pm:1996
31103105 #, fuzzy, perl-format
31113106 msgid "empty index key in @%s"
31123107 msgstr "ingen innslag funnet for «%s»\n"
32183213 msgid "tex4ht.pm: could not open: %s"
32193214 msgstr "Kan ikke finne «%s»."
32203215
3221 #: tp/init/tex4ht.pm:293
3216 #: tp/init/tex4ht.pm:294
32223217 #, perl-format
32233218 msgid "tex4ht.pm: end of @%s item %d not found"
32243219 msgstr ""
32253220
3226 #: tp/init/tex4ht.pm:300
3221 #: tp/init/tex4ht.pm:301
32273222 #, perl-format
32283223 msgid ""
32293224 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
32303225 "items found in the document for @%s"
32313226 msgstr ""
32323227
3233 #: tp/init/tex4ht.pm:320
3228 #: tp/init/tex4ht.pm:321
32343229 #, fuzzy, perl-format
32353230 msgid "tex4ht.pm: output has no HTML item for @%s %s"
32363231 msgstr "Kunne ikke opprette outputfila «%s»"
32373232
3238 #: tp/init/tex4ht.pm:335
3233 #: tp/init/tex4ht.pm:336
32393234 #, perl-format
32403235 msgid ""
32413236 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
36873682 #, c-format
36883683 msgid "entry %s follows an entry with a secondary name"
36893684 msgstr "oppføring %s følger en oppføring med et annet navn"
3685
3686 #, fuzzy
3687 #~ msgid "menu reference to nonexistent node `%s'"
3688 #~ msgstr "ureferert node «%s»"
36903689
36913690 #, fuzzy
36923691 #~ msgid "Can't create directories `%s': %s"
Binary diff not shown
1010 msgstr ""
1111 "Project-Id-Version: texinfo-4.13.92\n"
1212 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
13 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
13 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1414 "PO-Revision-Date: 2012-12-19 22:35+0100\n"
1515 "Last-Translator: Benno Schulenberg <benno@vertaalt.nl>\n"
1616 "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
24742474 msgid "@%s outside of any node"
24752475 msgstr "@%s buiten alle pagina's"
24762476
2477 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2477 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24782478 #, fuzzy, perl-format
24792479 msgid "entry for index `%s' outside of any node"
24802480 msgstr "Item voor index '%s' valt buiten alle pagina's"
24812481
2482 #: tp/Texinfo/Convert/Plaintext.pm:1217
2482 #: tp/Texinfo/Convert/Plaintext.pm:1313
24832483 #, fuzzy, perl-format
24842484 msgid "error on closing image text file %s: %s"
24852485 msgstr "Fout bij sluiten van %s, bestand met 'image'-tekst: %s"
24862486
2487 #: tp/Texinfo/Convert/Plaintext.pm:1222
2487 #: tp/Texinfo/Convert/Plaintext.pm:1318
24882488 #, perl-format
24892489 msgid "@image file `%s' unreadable: %s"
24902490 msgstr "@image-bestand '%s' is onleesbaar: %s"
24912491
2492 #: tp/Texinfo/Convert/Plaintext.pm:1251
2492 #: tp/Texinfo/Convert/Plaintext.pm:1341
24932493 #, fuzzy, perl-format
24942494 msgid "could not find @image file `%s.txt' nor alternate text"
24952495 msgstr "Kan '@image'-bestand '%s.txt' niet vinden noch een alternatieve tekst"
24962496
2497 #: tp/Texinfo/Convert/Plaintext.pm:1617
2497 #: tp/Texinfo/Convert/Plaintext.pm:1705
24982498 msgid ""
24992499 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
25002500 "avoid that"
25022502 "@strong{Noot...} produceert een loze kruisverwijzing in Info; kies een ander "
25032503 "woord om dat te vermijden"
25042504
2505 #: tp/Texinfo/Convert/Plaintext.pm:1849
2505 #: tp/Texinfo/Convert/Plaintext.pm:1937
25062506 #, perl-format
25072507 msgid "`.' or `,' must follow @xref, not %s"
25082508 msgstr "'.' of ',' moet volgen op @xref, niet '%s'"
25092509
2510 #: tp/Texinfo/Convert/Plaintext.pm:1852
2510 #: tp/Texinfo/Convert/Plaintext.pm:1940
25112511 msgid "`.' or `,' must follow @xref"
25122512 msgstr "'.' of ',' moet volgen op '@xref'"
25132513
25162516 msgid "@%s should only appear at beginning or end of document"
25172517 msgstr "@%s hoort alleen voor te komen aan begin of eind van document"
25182518
2519 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2519 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25202520 #, fuzzy, perl-format
25212521 msgid "multiple @%s"
25222522 msgstr "Meerdere @%s"
31443144 msgid "no sectioning command associated with @%s"
31453145 msgstr "Er is geen sectioneringscommando gerelateerd aan @%s"
31463146
3147 #: tp/Texinfo/Structuring.pm:568
3148 #, fuzzy, perl-format
3149 msgid "menu reference to nonexistent node `%s'"
3150 msgstr "Menu verwijst naar niet-bestaande pagina '%s'"
3151
3152 #: tp/Texinfo/Structuring.pm:583
3153 #, fuzzy, perl-format
3154 msgid "menu entry node name `%s' different from %s name `%s'"
3147 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3148 #, perl-format
3149 msgid "@%s reference to nonexistent node `%s'"
3150 msgstr "@%s verwijst naar niet-bestaande pagina '%s'"
3151
3152 #: tp/Texinfo/Structuring.pm:551
3153 #, fuzzy, perl-format
3154 msgid "@%s entry node name `%s' different from %s name `%s'"
31553155 msgstr "Paginanaam '%s' in menu-item verschilt van %s-naam '%s'"
31563156
3157 #: tp/Texinfo/Structuring.pm:619
3157 #: tp/Texinfo/Structuring.pm:656
31583158 #, perl-format
31593159 msgid "unreferenced node `%s'"
31603160 msgstr "naar pagina '%s' wordt niet verwezen"
31613161
3162 #: tp/Texinfo/Structuring.pm:665
3162 #: tp/Texinfo/Structuring.pm:702
31633163 #, fuzzy, perl-format
31643164 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31653165 msgstr "Pagina '%s' is %s voor '%s' in de sectionering maar niet in het menu "
31663166
3167 #: tp/Texinfo/Structuring.pm:672
3167 #: tp/Texinfo/Structuring.pm:709
31683168 #, fuzzy, perl-format
31693169 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31703170 msgstr "Pagina %s '%s' in menu '%s' en in sectionering '%s' verschillen"
31713171
3172 #: tp/Texinfo/Structuring.pm:690
3172 #: tp/Texinfo/Structuring.pm:727
31733173 #, fuzzy, perl-format
31743174 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31753175 msgstr "Pagina '%s' is %s voor '%s' in het menu maar niet in de sectionering"
31763176
3177 #: tp/Texinfo/Structuring.pm:744
3177 #: tp/Texinfo/Structuring.pm:781
31783178 #, perl-format
31793179 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31803180 msgstr "%s-pointer '%s' (voor pagina '%s') verschilt van %s-naam '%s'"
31813181
3182 #: tp/Texinfo/Structuring.pm:771
3182 #: tp/Texinfo/Structuring.pm:808
31833183 #, perl-format
31843184 msgid "%s reference to nonexistent `%s'"
31853185 msgstr "%s verwijst naar niet-bestaande '%s'"
31863186
3187 #: tp/Texinfo/Structuring.pm:790
3187 #: tp/Texinfo/Structuring.pm:827
31883188 #, fuzzy, perl-format
31893189 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31903190 msgstr ""
31913191 "Pagina '%s' bevat geen menu-item voor '%s'\n"
31923192 "ondanks dat de eerste het 'Up'-doel van de laatste is"
31933193
3194 #: tp/Texinfo/Structuring.pm:798
3194 #: tp/Texinfo/Structuring.pm:835
31953195 #, fuzzy, perl-format
31963196 msgid "for `%s', up in menu `%s' and up `%s' don't match"
31973197 msgstr "Bij '%s' komen 'Up' in menu '%s' en 'Up %s' niet overeen"
31983198
3199 #: tp/Texinfo/Structuring.pm:1282
3200 #, perl-format
3201 msgid "@%s reference to nonexistent node `%s'"
3202 msgstr "@%s verwijst naar niet-bestaande pagina '%s'"
3203
3204 #: tp/Texinfo/Structuring.pm:1294
3199 #: tp/Texinfo/Structuring.pm:1331
32053200 #, perl-format
32063201 msgid "@%s to `%s', different from %s name `%s'"
32073202 msgstr "@%s naar '%s', verschilt van %s-naam '%s'"
32083203
3209 #: tp/Texinfo/Structuring.pm:1959
3204 #: tp/Texinfo/Structuring.pm:1996
32103205 #, fuzzy, perl-format
32113206 msgid "empty index key in @%s"
32123207 msgstr "Lege indexsleutel in @%s"
33203315 msgid "tex4ht.pm: could not open: %s"
33213316 msgstr "@%s: Kan %s niet openen: %s"
33223317
3323 #: tp/init/tex4ht.pm:293
3318 #: tp/init/tex4ht.pm:294
33243319 #, perl-format
33253320 msgid "tex4ht.pm: end of @%s item %d not found"
33263321 msgstr ""
33273322
3328 #: tp/init/tex4ht.pm:300
3323 #: tp/init/tex4ht.pm:301
33293324 #, fuzzy, perl-format
33303325 msgid ""
33313326 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33343329 "tex4ht-bewerking produceerde %d items in HTML;\n"
33353330 "verwacht werden %d, het aantal items in het document"
33363331
3337 #: tp/init/tex4ht.pm:320
3332 #: tp/init/tex4ht.pm:321
33383333 #, fuzzy, perl-format
33393334 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33403335 msgstr "tex4ht-uitvoer bevat geen HTML-item voor @%s %s"
33413336
3342 #: tp/init/tex4ht.pm:335
3337 #: tp/init/tex4ht.pm:336
33433338 #, fuzzy, perl-format
33443339 msgid ""
33453340 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
38273822 msgid "entry %s follows an entry with a secondary name"
38283823 msgstr "item %s volgt op een item met een alternatieve naam"
38293824
3825 #, fuzzy
3826 #~ msgid "menu reference to nonexistent node `%s'"
3827 #~ msgstr "Menu verwijst naar niet-bestaande pagina '%s'"
3828
38303829 #~ msgid "protect_hashchar_at_line_beginning cannot protect in @%s"
38313830 #~ msgstr "'protect_hashchar_at_line_beginning()' kan niet beschermen in @%s"
38323831
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: texinfo 4.13.92\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1010 "PO-Revision-Date: 2012-12-19 20:45+0100\n"
1111 "Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>\n"
1212 "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
24602460 msgid "@%s outside of any node"
24612461 msgstr "@%s poza jakimkolwiek węzłem"
24622462
2463 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2463 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24642464 #, fuzzy, perl-format
24652465 msgid "entry for index `%s' outside of any node"
24662466 msgstr "Wpis dla indeksu `%s' poza jakimkolwiek węzłem"
24672467
2468 #: tp/Texinfo/Convert/Plaintext.pm:1217
2468 #: tp/Texinfo/Convert/Plaintext.pm:1313
24692469 #, fuzzy, perl-format
24702470 msgid "error on closing image text file %s: %s"
24712471 msgstr "Błąd podczas zamykania pliku tekstowego obrazu %s: %s"
24722472
2473 #: tp/Texinfo/Convert/Plaintext.pm:1222
2473 #: tp/Texinfo/Convert/Plaintext.pm:1318
24742474 #, perl-format
24752475 msgid "@image file `%s' unreadable: %s"
24762476 msgstr "Plik @image `%s' nieczytelny: %s"
24772477
2478 #: tp/Texinfo/Convert/Plaintext.pm:1251
2478 #: tp/Texinfo/Convert/Plaintext.pm:1341
24792479 #, fuzzy, perl-format
24802480 msgid "could not find @image file `%s.txt' nor alternate text"
24812481 msgstr "Nie odnaleziono pliku @image `%s.txt' ani alternatywnego tekstu"
24822482
2483 #: tp/Texinfo/Convert/Plaintext.pm:1617
2483 #: tp/Texinfo/Convert/Plaintext.pm:1705
24842484 msgid ""
24852485 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24862486 "avoid that"
24882488 "@string{Note...} tworzy nieprawdziwe odniesienia w Info; należy "
24892489 "przeredagować aby zapobiec temu"
24902490
2491 #: tp/Texinfo/Convert/Plaintext.pm:1849
2491 #: tp/Texinfo/Convert/Plaintext.pm:1937
24922492 #, perl-format
24932493 msgid "`.' or `,' must follow @xref, not %s"
24942494 msgstr "Po @xref musi wystąpić `.' lub `,', a nie %s"
24952495
2496 #: tp/Texinfo/Convert/Plaintext.pm:1852
2496 #: tp/Texinfo/Convert/Plaintext.pm:1940
24972497 msgid "`.' or `,' must follow @xref"
24982498 msgstr "Po @xref musi wystąpić `.' lub `,'"
24992499
25022502 msgid "@%s should only appear at beginning or end of document"
25032503 msgstr "@%s powinno wystąpić tylko na początku lub na końcu dokumentu"
25042504
2505 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2505 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25062506 #, fuzzy, perl-format
25072507 msgid "multiple @%s"
25082508 msgstr "Wiele @%s"
31213121 msgid "no sectioning command associated with @%s"
31223122 msgstr "Brak polecenia sekcjonowania związanego z @%s"
31233123
3124 #: tp/Texinfo/Structuring.pm:568
3125 #, fuzzy, perl-format
3126 msgid "menu reference to nonexistent node `%s'"
3127 msgstr "Odwołanie menu do nie istniejącego węzła `%s'"
3128
3129 #: tp/Texinfo/Structuring.pm:583
3130 #, fuzzy, perl-format
3131 msgid "menu entry node name `%s' different from %s name `%s'"
3124 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3125 #, perl-format
3126 msgid "@%s reference to nonexistent node `%s'"
3127 msgstr "Odwołanie @%s do nie istniejącego węzła `%s'"
3128
3129 #: tp/Texinfo/Structuring.pm:551
3130 #, fuzzy, perl-format
3131 msgid "@%s entry node name `%s' different from %s name `%s'"
31323132 msgstr "Nazwa węzła wpisu menu `%s' różni się od nazwy %s `%s'"
31333133
3134 #: tp/Texinfo/Structuring.pm:619
3134 #: tp/Texinfo/Structuring.pm:656
31353135 #, perl-format
31363136 msgid "unreferenced node `%s'"
31373137 msgstr "nie wskazywany węzeł `%s'"
31383138
3139 #: tp/Texinfo/Structuring.pm:665
3139 #: tp/Texinfo/Structuring.pm:702
31403140 #, fuzzy, perl-format
31413141 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31423142 msgstr "Węzeł `%s' to %s dla `%s' w sekcjonowaniu, ale nie w menu"
31433143
3144 #: tp/Texinfo/Structuring.pm:672
3144 #: tp/Texinfo/Structuring.pm:709
31453145 #, fuzzy, perl-format
31463146 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31473147 msgstr "Węzeł %s `%s' w menu `%s' i w sekcjonowaniu `%s' są różne"
31483148
3149 #: tp/Texinfo/Structuring.pm:690
3149 #: tp/Texinfo/Structuring.pm:727
31503150 #, fuzzy, perl-format
31513151 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31523152 msgstr "Węzeł `%s' to %s dla `%s' w menu, ale nie w sekcjonowaniu"
31533153
3154 #: tp/Texinfo/Structuring.pm:744
3154 #: tp/Texinfo/Structuring.pm:781
31553155 #, perl-format
31563156 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31573157 msgstr "Wskaźnik %s `%s' (dla węzła `%s') różni się od nazwy %s `%s'"
31583158
3159 #: tp/Texinfo/Structuring.pm:771
3159 #: tp/Texinfo/Structuring.pm:808
31603160 #, perl-format
31613161 msgid "%s reference to nonexistent `%s'"
31623162 msgstr "Odwołanie %s do nie istniejącego `%s'"
31633163
3164 #: tp/Texinfo/Structuring.pm:790
3164 #: tp/Texinfo/Structuring.pm:827
31653165 #, fuzzy, perl-format
31663166 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31673167 msgstr ""
31683168 "Węzeł `%s' nie ma elementu menu dla `%s' pomimo bycia jego celem W górę"
31693169
3170 #: tp/Texinfo/Structuring.pm:798
3170 #: tp/Texinfo/Structuring.pm:835
31713171 #, fuzzy, perl-format
31723172 msgid "for `%s', up in menu `%s' and up `%s' don't match"
31733173 msgstr "Dla `%s' węzeł górny w menu `%s' i górny `%s' są różne"
31743174
3175 #: tp/Texinfo/Structuring.pm:1282
3176 #, perl-format
3177 msgid "@%s reference to nonexistent node `%s'"
3178 msgstr "Odwołanie @%s do nie istniejącego węzła `%s'"
3179
3180 #: tp/Texinfo/Structuring.pm:1294
3175 #: tp/Texinfo/Structuring.pm:1331
31813176 #, perl-format
31823177 msgid "@%s to `%s', different from %s name `%s'"
31833178 msgstr "@%s do `%s' różne od nazwy %s `%s'"
31843179
3185 #: tp/Texinfo/Structuring.pm:1959
3180 #: tp/Texinfo/Structuring.pm:1996
31863181 #, fuzzy, perl-format
31873182 msgid "empty index key in @%s"
31883183 msgstr "Pusty klucz indeksu w @%s"
32963291 msgid "tex4ht.pm: could not open: %s"
32973292 msgstr "@%s: nie można otworzyć pliku %s: %s"
32983293
3299 #: tp/init/tex4ht.pm:293
3294 #: tp/init/tex4ht.pm:294
33003295 #, perl-format
33013296 msgid "tex4ht.pm: end of @%s item %d not found"
33023297 msgstr ""
33033298
3304 #: tp/init/tex4ht.pm:300
3299 #: tp/init/tex4ht.pm:301
33053300 #, fuzzy, perl-format
33063301 msgid ""
33073302 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33103305 "Przetwarzanie tex4ht wytworzyło elementów w HTML-u: %d; oczekiwano %d - "
33113306 "liczba elementów znalezionych w dokumencie"
33123307
3313 #: tp/init/tex4ht.pm:320
3308 #: tp/init/tex4ht.pm:321
33143309 #, fuzzy, perl-format
33153310 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33163311 msgstr "Wyjście tex4ht nie ma elementu HTML dla @%s %s"
33173312
3318 #: tp/init/tex4ht.pm:335
3313 #: tp/init/tex4ht.pm:336
33193314 #, fuzzy, perl-format
33203315 msgid ""
33213316 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
38183813 msgid "entry %s follows an entry with a secondary name"
38193814 msgstr "wpis %s wystąpił po wpisie z dodatkową nazwą"
38203815
3816 #, fuzzy
3817 #~ msgid "menu reference to nonexistent node `%s'"
3818 #~ msgstr "Odwołanie menu do nie istniejącego węzła `%s'"
3819
38213820 #~ msgid "protect_hashchar_at_line_beginning cannot protect in @%s"
38223821 #~ msgstr "protect_hashchar_at_line_beginning nie może zabezpieczyć w @%s"
38233822
Binary diff not shown
77 msgstr ""
88 "Project-Id-Version: texinfo 4.7.94\n"
99 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
10 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
10 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1111 "PO-Revision-Date: 2005-05-03 12:00+05\n"
1212 "Last-Translator: Laurentiu Buzdugan <lbuz@rolix.org>\n"
1313 "Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\n"
23942394 msgid "@%s outside of any node"
23952395 msgstr "(în afara oricãrui nod)"
23962396
2397 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2397 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
23982398 #, fuzzy, perl-format
23992399 msgid "entry for index `%s' outside of any node"
24002400 msgstr "Intrarea pentru index-ul `%s' în afara oricãrui nod"
24012401
2402 #: tp/Texinfo/Convert/Plaintext.pm:1217
2402 #: tp/Texinfo/Convert/Plaintext.pm:1313
24032403 #, fuzzy, perl-format
24042404 msgid "error on closing image text file %s: %s"
24052405 msgstr "eroare la închiderea fiºierului de ieºire `%s'"
24062406
2407 #: tp/Texinfo/Convert/Plaintext.pm:1222
2407 #: tp/Texinfo/Convert/Plaintext.pm:1318
24082408 #, perl-format
24092409 msgid "@image file `%s' unreadable: %s"
24102410 msgstr "Fiºierul @image `%s' nu poate fi citit: %s"
24112411
2412 #: tp/Texinfo/Convert/Plaintext.pm:1251
2412 #: tp/Texinfo/Convert/Plaintext.pm:1341
24132413 #, fuzzy, perl-format
24142414 msgid "could not find @image file `%s.txt' nor alternate text"
24152415 msgstr "Nu pot gãsi nodul `%s'."
24162416
2417 #: tp/Texinfo/Convert/Plaintext.pm:1617
2417 #: tp/Texinfo/Convert/Plaintext.pm:1705
24182418 msgid ""
24192419 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24202420 "avoid that"
24222422 "@strong{Notã...] produce o referinþã încruciºatã falsã în Info; reformulaþi "
24232423 "pentru a o evita"
24242424
2425 #: tp/Texinfo/Convert/Plaintext.pm:1849
2425 #: tp/Texinfo/Convert/Plaintext.pm:1937
24262426 #, perl-format
24272427 msgid "`.' or `,' must follow @xref, not %s"
24282428 msgstr ""
24292429
2430 #: tp/Texinfo/Convert/Plaintext.pm:1852
2430 #: tp/Texinfo/Convert/Plaintext.pm:1940
24312431 msgid "`.' or `,' must follow @xref"
24322432 msgstr ""
24332433
24362436 msgid "@%s should only appear at beginning or end of document"
24372437 msgstr "%s: nu am putut deschide --css-file: %s"
24382438
2439 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2439 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
24402440 #, perl-format
24412441 msgid "multiple @%s"
24422442 msgstr ""
30513051 msgid "no sectioning command associated with @%s"
30523052 msgstr ""
30533053
3054 #: tp/Texinfo/Structuring.pm:568
3055 #, fuzzy, perl-format
3056 msgid "menu reference to nonexistent node `%s'"
3057 msgstr "nod nereferit `%s'"
3058
3059 #: tp/Texinfo/Structuring.pm:583
3060 #, perl-format
3061 msgid "menu entry node name `%s' different from %s name `%s'"
3062 msgstr ""
3063
3064 #: tp/Texinfo/Structuring.pm:619
3054 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3055 #, fuzzy, perl-format
3056 msgid "@%s reference to nonexistent node `%s'"
3057 msgstr ""
3058 "referinþa %s cãtre nodul inexistent `%s' (probabil secþionare incorectã?)"
3059
3060 #: tp/Texinfo/Structuring.pm:551
3061 #, perl-format
3062 msgid "@%s entry node name `%s' different from %s name `%s'"
3063 msgstr ""
3064
3065 #: tp/Texinfo/Structuring.pm:656
30653066 #, perl-format
30663067 msgid "unreferenced node `%s'"
30673068 msgstr "nod nereferit `%s'"
30683069
3069 #: tp/Texinfo/Structuring.pm:665
3070 #: tp/Texinfo/Structuring.pm:702
30703071 #, perl-format
30713072 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
30723073 msgstr ""
30733074
3074 #: tp/Texinfo/Structuring.pm:672
3075 #: tp/Texinfo/Structuring.pm:709
30753076 #, perl-format
30763077 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
30773078 msgstr ""
30783079
3079 #: tp/Texinfo/Structuring.pm:690
3080 #: tp/Texinfo/Structuring.pm:727
30803081 #, perl-format
30813082 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
30823083 msgstr ""
30833084
3084 #: tp/Texinfo/Structuring.pm:744
3085 #: tp/Texinfo/Structuring.pm:781
30853086 #, perl-format
30863087 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
30873088 msgstr ""
30883089
3089 #: tp/Texinfo/Structuring.pm:771
3090 #: tp/Texinfo/Structuring.pm:808
30903091 #, fuzzy, perl-format
30913092 msgid "%s reference to nonexistent `%s'"
30923093 msgstr "nod nereferit `%s'"
30933094
3094 #: tp/Texinfo/Structuring.pm:790
3095 #: tp/Texinfo/Structuring.pm:827
30953096 #, fuzzy, perl-format
30963097 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
30973098 msgstr "Nodului `%s' îi lipseºte articolul pentru `%s' deºi îi este þinta Sus"
30983099
3099 #: tp/Texinfo/Structuring.pm:798
3100 #: tp/Texinfo/Structuring.pm:835
31003101 #, perl-format
31013102 msgid "for `%s', up in menu `%s' and up `%s' don't match"
31023103 msgstr ""
31033104
3104 #: tp/Texinfo/Structuring.pm:1282
3105 #, fuzzy, perl-format
3106 msgid "@%s reference to nonexistent node `%s'"
3107 msgstr ""
3108 "referinþa %s cãtre nodul inexistent `%s' (probabil secþionare incorectã?)"
3109
3110 #: tp/Texinfo/Structuring.pm:1294
3105 #: tp/Texinfo/Structuring.pm:1331
31113106 #, perl-format
31123107 msgid "@%s to `%s', different from %s name `%s'"
31133108 msgstr ""
31143109
3115 #: tp/Texinfo/Structuring.pm:1959
3110 #: tp/Texinfo/Structuring.pm:1996
31163111 #, fuzzy, perl-format
31173112 msgid "empty index key in @%s"
31183113 msgstr "nici o intrare de index a fost gãsitã pentru `%s'\n"
32243219 msgid "tex4ht.pm: could not open: %s"
32253220 msgstr "Nu pot gãsi `%s'."
32263221
3227 #: tp/init/tex4ht.pm:293
3222 #: tp/init/tex4ht.pm:294
32283223 #, perl-format
32293224 msgid "tex4ht.pm: end of @%s item %d not found"
32303225 msgstr ""
32313226
3232 #: tp/init/tex4ht.pm:300
3227 #: tp/init/tex4ht.pm:301
32333228 #, perl-format
32343229 msgid ""
32353230 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
32363231 "items found in the document for @%s"
32373232 msgstr ""
32383233
3239 #: tp/init/tex4ht.pm:320
3234 #: tp/init/tex4ht.pm:321
32403235 #, fuzzy, perl-format
32413236 msgid "tex4ht.pm: output has no HTML item for @%s %s"
32423237 msgstr "nu pot crea fiºierul de ieºire `%s'"
32433238
3244 #: tp/init/tex4ht.pm:335
3239 #: tp/init/tex4ht.pm:336
32453240 #, perl-format
32463241 msgid ""
32473242 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
36973692 #, c-format
36983693 msgid "entry %s follows an entry with a secondary name"
36993694 msgstr "intrarea %s urmeazã o intrare cu nume secundar"
3695
3696 #, fuzzy
3697 #~ msgid "menu reference to nonexistent node `%s'"
3698 #~ msgstr "nod nereferit `%s'"
37003699
37013700 #, fuzzy
37023701 #~ msgid "Can't create directories `%s': %s"
Binary diff not shown
55 msgstr ""
66 "Project-Id-Version: texinfo 4.7.94\n"
77 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
8 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
8 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
99 "PO-Revision-Date: 2005-02-07 09:27+0300\n"
1010 "Last-Translator: Oleg S. Tihonov <ost@tatnipi.ru>\n"
1111 "Language-Team: Russian <ru@li.org>\n"
23752375 msgid "@%s outside of any node"
23762376 msgstr "(вне какой-либо ноды)"
23772377
2378 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2378 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
23792379 #, fuzzy, perl-format
23802380 msgid "entry for index `%s' outside of any node"
23812381 msgstr "Вхождение для именного указателя `%s' вне ноды"
23822382
2383 #: tp/Texinfo/Convert/Plaintext.pm:1217
2383 #: tp/Texinfo/Convert/Plaintext.pm:1313
23842384 #, fuzzy, perl-format
23852385 msgid "error on closing image text file %s: %s"
23862386 msgstr "невозможно закрыть выходной файл `%s'"
23872387
2388 #: tp/Texinfo/Convert/Plaintext.pm:1222
2388 #: tp/Texinfo/Convert/Plaintext.pm:1318
23892389 #, perl-format
23902390 msgid "@image file `%s' unreadable: %s"
23912391 msgstr "невозможно прочитать @image файл `%s': %s"
23922392
2393 #: tp/Texinfo/Convert/Plaintext.pm:1251
2393 #: tp/Texinfo/Convert/Plaintext.pm:1341
23942394 #, fuzzy, perl-format
23952395 msgid "could not find @image file `%s.txt' nor alternate text"
23962396 msgstr "Невозможно найти ноду `%s'."
23972397
2398 #: tp/Texinfo/Convert/Plaintext.pm:1617
2398 #: tp/Texinfo/Convert/Plaintext.pm:1705
23992399 msgid ""
24002400 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24012401 "avoid that"
24032403 "@strong{Note...} создает в Info ложную перекрестную ссылку; перефразируйте "
24042404 "текст, чтобы избежать этого"
24052405
2406 #: tp/Texinfo/Convert/Plaintext.pm:1849
2406 #: tp/Texinfo/Convert/Plaintext.pm:1937
24072407 #, perl-format
24082408 msgid "`.' or `,' must follow @xref, not %s"
24092409 msgstr ""
24102410
2411 #: tp/Texinfo/Convert/Plaintext.pm:1852
2411 #: tp/Texinfo/Convert/Plaintext.pm:1940
24122412 msgid "`.' or `,' must follow @xref"
24132413 msgstr ""
24142414
24172417 msgid "@%s should only appear at beginning or end of document"
24182418 msgstr "%s: невозможно открыть css-файл: %s"
24192419
2420 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2420 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
24212421 #, perl-format
24222422 msgid "multiple @%s"
24232423 msgstr ""
30373037 msgid "no sectioning command associated with @%s"
30383038 msgstr ""
30393039
3040 #: tp/Texinfo/Structuring.pm:568
3041 #, fuzzy, perl-format
3042 msgid "menu reference to nonexistent node `%s'"
3043 msgstr "на ноду `%s' нет ссылок"
3044
3045 #: tp/Texinfo/Structuring.pm:583
3046 #, perl-format
3047 msgid "menu entry node name `%s' different from %s name `%s'"
3048 msgstr ""
3049
3050 #: tp/Texinfo/Structuring.pm:619
3040 # здесь %s может быть `cross' или `menu'
3041 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3042 #, fuzzy, perl-format
3043 msgid "@%s reference to nonexistent node `%s'"
3044 msgstr ""
3045 "%s на несуществующую ноду `%s' (возможно, неправильно описана структура "
3046 "глав?)"
3047
3048 #: tp/Texinfo/Structuring.pm:551
3049 #, perl-format
3050 msgid "@%s entry node name `%s' different from %s name `%s'"
3051 msgstr ""
3052
3053 #: tp/Texinfo/Structuring.pm:656
30513054 #, perl-format
30523055 msgid "unreferenced node `%s'"
30533056 msgstr "на ноду `%s' нет ссылок"
30543057
3055 #: tp/Texinfo/Structuring.pm:665
3058 #: tp/Texinfo/Structuring.pm:702
30563059 #, perl-format
30573060 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
30583061 msgstr ""
30593062
3060 #: tp/Texinfo/Structuring.pm:672
3063 #: tp/Texinfo/Structuring.pm:709
30613064 #, perl-format
30623065 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
30633066 msgstr ""
30643067
3065 #: tp/Texinfo/Structuring.pm:690
3068 #: tp/Texinfo/Structuring.pm:727
30663069 #, perl-format
30673070 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
30683071 msgstr ""
30693072
3070 #: tp/Texinfo/Structuring.pm:744
3073 #: tp/Texinfo/Structuring.pm:781
30713074 #, perl-format
30723075 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
30733076 msgstr ""
30743077
3075 #: tp/Texinfo/Structuring.pm:771
3078 #: tp/Texinfo/Structuring.pm:808
30763079 #, fuzzy, perl-format
30773080 msgid "%s reference to nonexistent `%s'"
30783081 msgstr "на ноду `%s' нет ссылок"
30793082
3080 #: tp/Texinfo/Structuring.pm:790
3083 #: tp/Texinfo/Structuring.pm:827
30813084 #, fuzzy, perl-format
30823085 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
30833086 msgstr "Нода `%s' не имеет пункта меню для `%s', хотя на нее ссылается поле Up"
30843087
3085 #: tp/Texinfo/Structuring.pm:798
3088 #: tp/Texinfo/Structuring.pm:835
30863089 #, perl-format
30873090 msgid "for `%s', up in menu `%s' and up `%s' don't match"
30883091 msgstr ""
30893092
3090 # здесь %s может быть `cross' или `menu'
3091 #: tp/Texinfo/Structuring.pm:1282
3092 #, fuzzy, perl-format
3093 msgid "@%s reference to nonexistent node `%s'"
3094 msgstr ""
3095 "%s на несуществующую ноду `%s' (возможно, неправильно описана структура "
3096 "глав?)"
3097
3098 #: tp/Texinfo/Structuring.pm:1294
3093 #: tp/Texinfo/Structuring.pm:1331
30993094 #, perl-format
31003095 msgid "@%s to `%s', different from %s name `%s'"
31013096 msgstr ""
31023097
3103 #: tp/Texinfo/Structuring.pm:1959
3098 #: tp/Texinfo/Structuring.pm:1996
31043099 #, fuzzy, perl-format
31053100 msgid "empty index key in @%s"
31063101 msgstr "для `%s' не найдено вхождений в именном указателе\n"
32123207 msgid "tex4ht.pm: could not open: %s"
32133208 msgstr "Невозможно найти `%s'."
32143209
3215 #: tp/init/tex4ht.pm:293
3210 #: tp/init/tex4ht.pm:294
32163211 #, perl-format
32173212 msgid "tex4ht.pm: end of @%s item %d not found"
32183213 msgstr ""
32193214
3220 #: tp/init/tex4ht.pm:300
3215 #: tp/init/tex4ht.pm:301
32213216 #, perl-format
32223217 msgid ""
32233218 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
32243219 "items found in the document for @%s"
32253220 msgstr ""
32263221
3227 #: tp/init/tex4ht.pm:320
3222 #: tp/init/tex4ht.pm:321
32283223 #, fuzzy, perl-format
32293224 msgid "tex4ht.pm: output has no HTML item for @%s %s"
32303225 msgstr "невозможно создать выходной файл `%s'"
32313226
3232 #: tp/init/tex4ht.pm:335
3227 #: tp/init/tex4ht.pm:336
32333228 #, perl-format
32343229 msgid ""
32353230 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
36943689 #, c-format
36953690 msgid "entry %s follows an entry with a secondary name"
36963691 msgstr "за вхождением %s следует вхождение с вторичным именем"
3692
3693 #, fuzzy
3694 #~ msgid "menu reference to nonexistent node `%s'"
3695 #~ msgstr "на ноду `%s' нет ссылок"
36973696
36983697 #, fuzzy
36993698 #~ msgid "Can't create directories `%s': %s"
Binary diff not shown
1515 msgstr ""
1616 "Project-Id-Version: texinfo 4.7.94\n"
1717 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
18 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
18 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1919 "PO-Revision-Date: 2005-04-04 10:55-0700\n"
2020 "Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n"
2121 "Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
24662466 msgid "@%s outside of any node"
24672467 msgstr "(Hanze Bya"
24682468
2469 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2469 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24702470 #, fuzzy, perl-format
24712471 msgid "entry for index `%s' outside of any node"
24722472 msgstr "kugirango Umubarendanga Hanze Bya"
24732473
2474 #: tp/Texinfo/Convert/Plaintext.pm:1217
2474 #: tp/Texinfo/Convert/Plaintext.pm:1313
24752475 #, fuzzy, perl-format
24762476 msgid "error on closing image text file %s: %s"
24772477 msgstr "Ikosa Ibisohoka IDOSIYE"
24782478
2479 #: tp/Texinfo/Convert/Plaintext.pm:1222
2479 #: tp/Texinfo/Convert/Plaintext.pm:1318
24802480 #, fuzzy, perl-format
24812481 msgid "@image file `%s' unreadable: %s"
24822482 msgstr "@Ishusho IDOSIYE"
24832483
2484 #: tp/Texinfo/Convert/Plaintext.pm:1251
2484 #: tp/Texinfo/Convert/Plaintext.pm:1341
24852485 #, fuzzy, perl-format
24862486 msgid "could not find @image file `%s.txt' nor alternate text"
24872487 msgstr "Gushaka"
24882488
2489 #: tp/Texinfo/Convert/Plaintext.pm:1617
2489 #: tp/Texinfo/Convert/Plaintext.pm:1705
24902490 #, fuzzy
24912491 msgid ""
24922492 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24932493 "avoid that"
24942494 msgstr "@a Kwambukiranya Indango in Kuri"
24952495
2496 #: tp/Texinfo/Convert/Plaintext.pm:1849
2496 #: tp/Texinfo/Convert/Plaintext.pm:1937
24972497 #, perl-format
24982498 msgid "`.' or `,' must follow @xref, not %s"
24992499 msgstr ""
25002500
2501 #: tp/Texinfo/Convert/Plaintext.pm:1852
2501 #: tp/Texinfo/Convert/Plaintext.pm:1940
25022502 msgid "`.' or `,' must follow @xref"
25032503 msgstr ""
25042504
25072507 msgid "@%s should only appear at beginning or end of document"
25082508 msgstr "%s:OYA Gufungura IDOSIYE"
25092509
2510 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2510 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25112511 #, perl-format
25122512 msgid "multiple @%s"
25132513 msgstr ""
31173117 msgid "no sectioning command associated with @%s"
31183118 msgstr ""
31193119
3120 #: tp/Texinfo/Structuring.pm:568
3121 #, fuzzy, perl-format
3122 msgid "menu reference to nonexistent node `%s'"
3120 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3121 #, fuzzy, perl-format
3122 msgid "@%s reference to nonexistent node `%s'"
31233123 msgstr "%sIndango Kuri"
31243124
3125 #: tp/Texinfo/Structuring.pm:583
3126 #, perl-format
3127 msgid "menu entry node name `%s' different from %s name `%s'"
3128 msgstr ""
3129
3130 #: tp/Texinfo/Structuring.pm:619
3125 #: tp/Texinfo/Structuring.pm:551
3126 #, perl-format
3127 msgid "@%s entry node name `%s' different from %s name `%s'"
3128 msgstr ""
3129
3130 #: tp/Texinfo/Structuring.pm:656
31313131 #, perl-format
31323132 msgid "unreferenced node `%s'"
31333133 msgstr ""
31343134
3135 #: tp/Texinfo/Structuring.pm:665
3135 #: tp/Texinfo/Structuring.pm:702
31363136 #, perl-format
31373137 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31383138 msgstr ""
31393139
3140 #: tp/Texinfo/Structuring.pm:672
3140 #: tp/Texinfo/Structuring.pm:709
31413141 #, perl-format
31423142 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31433143 msgstr ""
31443144
3145 #: tp/Texinfo/Structuring.pm:690
3145 #: tp/Texinfo/Structuring.pm:727
31463146 #, perl-format
31473147 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31483148 msgstr ""
31493149
3150 #: tp/Texinfo/Structuring.pm:744
3150 #: tp/Texinfo/Structuring.pm:781
31513151 #, perl-format
31523152 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31533153 msgstr ""
31543154
3155 #: tp/Texinfo/Structuring.pm:771
3155 #: tp/Texinfo/Structuring.pm:808
31563156 #, fuzzy, perl-format
31573157 msgid "%s reference to nonexistent `%s'"
31583158 msgstr "%sIndango Kuri"
31593159
3160 #: tp/Texinfo/Structuring.pm:790
3160 #: tp/Texinfo/Structuring.pm:827
31613161 #, fuzzy, perl-format
31623162 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31633163 msgstr "Ibikubiyemo Ikintu kugirango Intego"
31643164
3165 #: tp/Texinfo/Structuring.pm:798
3165 #: tp/Texinfo/Structuring.pm:835
31663166 #, perl-format
31673167 msgid "for `%s', up in menu `%s' and up `%s' don't match"
31683168 msgstr ""
31693169
3170 #: tp/Texinfo/Structuring.pm:1282
3171 #, fuzzy, perl-format
3172 msgid "@%s reference to nonexistent node `%s'"
3173 msgstr "%sIndango Kuri"
3174
3175 #: tp/Texinfo/Structuring.pm:1294
3170 #: tp/Texinfo/Structuring.pm:1331
31763171 #, perl-format
31773172 msgid "@%s to `%s', different from %s name `%s'"
31783173 msgstr ""
31793174
3180 #: tp/Texinfo/Structuring.pm:1959
3175 #: tp/Texinfo/Structuring.pm:1996
31813176 #, fuzzy, perl-format
31823177 msgid "empty index key in @%s"
31833178 msgstr "Oya Umubarendanga Ibyinjijwe Byabonetse kugirango"
32893284 msgid "tex4ht.pm: could not open: %s"
32903285 msgstr "Gushaka"
32913286
3292 #: tp/init/tex4ht.pm:293
3287 #: tp/init/tex4ht.pm:294
32933288 #, perl-format
32943289 msgid "tex4ht.pm: end of @%s item %d not found"
32953290 msgstr ""
32963291
3297 #: tp/init/tex4ht.pm:300
3292 #: tp/init/tex4ht.pm:301
32983293 #, perl-format
32993294 msgid ""
33003295 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33013296 "items found in the document for @%s"
33023297 msgstr ""
33033298
3304 #: tp/init/tex4ht.pm:320
3299 #: tp/init/tex4ht.pm:321
33053300 #, fuzzy, perl-format
33063301 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33073302 msgstr "Kurema Ibisohoka IDOSIYE"
33083303
3309 #: tp/init/tex4ht.pm:335
3304 #: tp/init/tex4ht.pm:336
33103305 #, perl-format
33113306 msgid ""
33123307 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
37013696 #, fuzzy, c-format
37023697 msgid "entry %s follows an entry with a secondary name"
37033698 msgstr "Icyinjijwe Icyinjijwe Na: a Izina:"
3699
3700 #, fuzzy
3701 #~ msgid "menu reference to nonexistent node `%s'"
3702 #~ msgstr "%sIndango Kuri"
37043703
37053704 #, fuzzy
37063705 #~ msgid "Can't create directories `%s': %s"
Binary diff not shown
88 msgstr ""
99 "Project-Id-Version: texinfo 4.13\n"
1010 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
11 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
11 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1212 "PO-Revision-Date: 2012-08-10 18:31+0100\n"
1313 "Last-Translator: Klemen Košir <klemen.kosir@gmx.com>\n"
1414 "Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\n"
24392439 msgid "@%s outside of any node"
24402440 msgstr "(zunaj vseh vozlišč)"
24412441
2442 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2442 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24432443 #, fuzzy, perl-format
24442444 msgid "entry for index `%s' outside of any node"
24452445 msgstr "Vnos za kazalo `%s' je zunaj vseh vozlišč"
24462446
2447 #: tp/Texinfo/Convert/Plaintext.pm:1217
2447 #: tp/Texinfo/Convert/Plaintext.pm:1313
24482448 #, fuzzy, perl-format
24492449 msgid "error on closing image text file %s: %s"
24502450 msgstr "napaka med končanjem datoteke vnosa `%s'"
24512451
2452 #: tp/Texinfo/Convert/Plaintext.pm:1222
2452 #: tp/Texinfo/Convert/Plaintext.pm:1318
24532453 #, perl-format
24542454 msgid "@image file `%s' unreadable: %s"
24552455 msgstr "datoteka @image `%s' je neberljiva: %s"
24562456
2457 #: tp/Texinfo/Convert/Plaintext.pm:1251
2457 #: tp/Texinfo/Convert/Plaintext.pm:1341
24582458 #, perl-format
24592459 msgid "could not find @image file `%s.txt' nor alternate text"
24602460 msgstr ""
24612461
2462 #: tp/Texinfo/Convert/Plaintext.pm:1617
2462 #: tp/Texinfo/Convert/Plaintext.pm:1705
24632463 msgid ""
24642464 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24652465 "avoid that"
24672467 "@strong{Opomba ...} ustvari lažni navzkrižni sklic v Info; ponovno ubesedite "
24682468 "za izognitev temu"
24692469
2470 #: tp/Texinfo/Convert/Plaintext.pm:1849
2470 #: tp/Texinfo/Convert/Plaintext.pm:1937
24712471 #, fuzzy, perl-format
24722472 msgid "`.' or `,' must follow @xref, not %s"
24732473 msgstr "`.' ali `,' morata slediti @%s, ne `%c'"
24742474
2475 #: tp/Texinfo/Convert/Plaintext.pm:1852
2475 #: tp/Texinfo/Convert/Plaintext.pm:1940
24762476 #, fuzzy
24772477 msgid "`.' or `,' must follow @xref"
24782478 msgstr "`.' ali `,' morata slediti @%s, ne `%c'"
24822482 msgid "@%s should only appear at beginning or end of document"
24832483 msgstr ""
24842484
2485 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2485 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
24862486 #, perl-format
24872487 msgid "multiple @%s"
24882488 msgstr ""
30933093 msgid "no sectioning command associated with @%s"
30943094 msgstr ""
30953095
3096 #: tp/Texinfo/Structuring.pm:568
3097 #, fuzzy, perl-format
3098 msgid "menu reference to nonexistent node `%s'"
3099 msgstr "nesklicevano vozlišče `%s'"
3100
3101 #: tp/Texinfo/Structuring.pm:583
3102 #, perl-format
3103 msgid "menu entry node name `%s' different from %s name `%s'"
3104 msgstr ""
3105
3106 #: tp/Texinfo/Structuring.pm:619
3096 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3097 #, fuzzy, perl-format
3098 msgid "@%s reference to nonexistent node `%s'"
3099 msgstr ""
3100 "%s sklicevanje na neobstoječe vozlišče `%s' (morda nepravilno ustvarjanje "
3101 "odsekov?)"
3102
3103 #: tp/Texinfo/Structuring.pm:551
3104 #, perl-format
3105 msgid "@%s entry node name `%s' different from %s name `%s'"
3106 msgstr ""
3107
3108 #: tp/Texinfo/Structuring.pm:656
31073109 #, perl-format
31083110 msgid "unreferenced node `%s'"
31093111 msgstr "nesklicevano vozlišče `%s'"
31103112
3111 #: tp/Texinfo/Structuring.pm:665
3113 #: tp/Texinfo/Structuring.pm:702
31123114 #, perl-format
31133115 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31143116 msgstr ""
31153117
3116 #: tp/Texinfo/Structuring.pm:672
3118 #: tp/Texinfo/Structuring.pm:709
31173119 #, perl-format
31183120 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31193121 msgstr ""
31203122
3121 #: tp/Texinfo/Structuring.pm:690
3123 #: tp/Texinfo/Structuring.pm:727
31223124 #, perl-format
31233125 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31243126 msgstr ""
31253127
3126 #: tp/Texinfo/Structuring.pm:744
3128 #: tp/Texinfo/Structuring.pm:781
31273129 #, perl-format
31283130 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31293131 msgstr ""
31303132
3131 #: tp/Texinfo/Structuring.pm:771
3133 #: tp/Texinfo/Structuring.pm:808
31323134 #, fuzzy, perl-format
31333135 msgid "%s reference to nonexistent `%s'"
31343136 msgstr "nesklicevano vozlišče `%s'"
31353137
3136 #: tp/Texinfo/Structuring.pm:790
3138 #: tp/Texinfo/Structuring.pm:827
31373139 #, fuzzy, perl-format
31383140 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31393141 msgstr ""
31403142 "Vozlišču `%s' manjka predmet menija za `%s', kljub temu, da je njegov "
31413143 "Zgornji cilj"
31423144
3143 #: tp/Texinfo/Structuring.pm:798
3145 #: tp/Texinfo/Structuring.pm:835
31443146 #, perl-format
31453147 msgid "for `%s', up in menu `%s' and up `%s' don't match"
31463148 msgstr ""
31473149
3148 #: tp/Texinfo/Structuring.pm:1282
3149 #, fuzzy, perl-format
3150 msgid "@%s reference to nonexistent node `%s'"
3151 msgstr ""
3152 "%s sklicevanje na neobstoječe vozlišče `%s' (morda nepravilno ustvarjanje "
3153 "odsekov?)"
3154
3155 #: tp/Texinfo/Structuring.pm:1294
3150 #: tp/Texinfo/Structuring.pm:1331
31563151 #, perl-format
31573152 msgid "@%s to `%s', different from %s name `%s'"
31583153 msgstr ""
31593154
3160 #: tp/Texinfo/Structuring.pm:1959
3155 #: tp/Texinfo/Structuring.pm:1996
31613156 #, fuzzy, perl-format
31623157 msgid "empty index key in @%s"
31633158 msgstr "Slab argument k @%s"
32693264 msgid "tex4ht.pm: could not open: %s"
32703265 msgstr "%s: ni mogoče odpreti --css-file: %s"
32713266
3272 #: tp/init/tex4ht.pm:293
3267 #: tp/init/tex4ht.pm:294
32733268 #, perl-format
32743269 msgid "tex4ht.pm: end of @%s item %d not found"
32753270 msgstr ""
32763271
3277 #: tp/init/tex4ht.pm:300
3272 #: tp/init/tex4ht.pm:301
32783273 #, perl-format
32793274 msgid ""
32803275 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
32813276 "items found in the document for @%s"
32823277 msgstr ""
32833278
3284 #: tp/init/tex4ht.pm:320
3279 #: tp/init/tex4ht.pm:321
32853280 #, fuzzy, perl-format
32863281 msgid "tex4ht.pm: output has no HTML item for @%s %s"
32873282 msgstr "ni mogoče ustvariti datoteke vnosa `%s'"
32883283
3289 #: tp/init/tex4ht.pm:335
3284 #: tp/init/tex4ht.pm:336
32903285 #, perl-format
32913286 msgid ""
32923287 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
37453740 msgstr "Vnos %s sledi vnosu z drugotnim imenom"
37463741
37473742 #, fuzzy
3743 #~ msgid "menu reference to nonexistent node `%s'"
3744 #~ msgstr "nesklicevano vozlišče `%s'"
3745
3746 #, fuzzy
37483747 #~ msgid "Can't read file %s: %s"
37493748 #~ msgstr "Ni mogoče odstraniti datoteke `%s': %s"
37503749
Binary diff not shown
55 msgstr ""
66 "Project-Id-Version: texinfo 4.11.93\n"
77 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
8 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
8 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
99 "PO-Revision-Date: 2008-03-09 20:35+0100\n"
1010 "Last-Translator: Christian Rose <menthos@menthos.com>\n"
1111 "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
24912491 msgid "@%s outside of any node"
24922492 msgstr "(utanför alla noder)"
24932493
2494 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2494 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24952495 #, fuzzy, perl-format
24962496 msgid "entry for index `%s' outside of any node"
24972497 msgstr "Posten för index \"%s\" är utanför alla noder"
24982498
2499 #: tp/Texinfo/Convert/Plaintext.pm:1217
2499 #: tp/Texinfo/Convert/Plaintext.pm:1313
25002500 #, fuzzy, perl-format
25012501 msgid "error on closing image text file %s: %s"
25022502 msgstr "fel vid stängning av utdatafilen \"%s\""
25032503
2504 #: tp/Texinfo/Convert/Plaintext.pm:1222
2504 #: tp/Texinfo/Convert/Plaintext.pm:1318
25052505 #, perl-format
25062506 msgid "@image file `%s' unreadable: %s"
25072507 msgstr "@image-filen \"%s\" är oläslig: %s"
25082508
2509 #: tp/Texinfo/Convert/Plaintext.pm:1251
2509 #: tp/Texinfo/Convert/Plaintext.pm:1341
25102510 #, fuzzy, perl-format
25112511 msgid "could not find @image file `%s.txt' nor alternate text"
25122512 msgstr "Kan inte hitta noden \"%s\"."
25132513
25142514 # Är det kombinationen "@strong{Note:.." eller bara @strong{} rent allmänt som
25152515 # orsakar problem?
2516 #: tp/Texinfo/Convert/Plaintext.pm:1617
2516 #: tp/Texinfo/Convert/Plaintext.pm:1705
25172517 msgid ""
25182518 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
25192519 "avoid that"
25212521 "@strong{Obs...} skapar en falsk korsreferens i Info; formulera om för att "
25222522 "undvika detta"
25232523
2524 #: tp/Texinfo/Convert/Plaintext.pm:1849
2524 #: tp/Texinfo/Convert/Plaintext.pm:1937
25252525 #, fuzzy, perl-format
25262526 msgid "`.' or `,' must follow @xref, not %s"
25272527 msgstr "\".\" eller \",\" måste följa på @%s, inte \"%c\""
25282528
2529 #: tp/Texinfo/Convert/Plaintext.pm:1852
2529 #: tp/Texinfo/Convert/Plaintext.pm:1940
25302530 #, fuzzy
25312531 msgid "`.' or `,' must follow @xref"
25322532 msgstr "\".\" eller \",\" måste följa på @%s, inte \"%c\""
25362536 msgid "@%s should only appear at beginning or end of document"
25372537 msgstr "%s: kunde inte öppna --css-fil: %s"
25382538
2539 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2539 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25402540 #, perl-format
25412541 msgid "multiple @%s"
25422542 msgstr ""
31563156 msgid "no sectioning command associated with @%s"
31573157 msgstr ""
31583158
3159 #: tp/Texinfo/Structuring.pm:568
3160 #, fuzzy, perl-format
3161 msgid "menu reference to nonexistent node `%s'"
3162 msgstr "orefererad nod \"%s\""
3163
3164 #: tp/Texinfo/Structuring.pm:583
3165 #, perl-format
3166 msgid "menu entry node name `%s' different from %s name `%s'"
3167 msgstr ""
3168
3169 #: tp/Texinfo/Structuring.pm:619
3159 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3160 #, fuzzy, perl-format
3161 msgid "@%s reference to nonexistent node `%s'"
3162 msgstr ""
3163 "%s-referens till ickeexisterande noden \"%s\" (kanske felaktig "
3164 "avsnittsindelning?)"
3165
3166 #: tp/Texinfo/Structuring.pm:551
3167 #, perl-format
3168 msgid "@%s entry node name `%s' different from %s name `%s'"
3169 msgstr ""
3170
3171 #: tp/Texinfo/Structuring.pm:656
31703172 #, perl-format
31713173 msgid "unreferenced node `%s'"
31723174 msgstr "orefererad nod \"%s\""
31733175
3174 #: tp/Texinfo/Structuring.pm:665
3176 #: tp/Texinfo/Structuring.pm:702
31753177 #, perl-format
31763178 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31773179 msgstr ""
31783180
3179 #: tp/Texinfo/Structuring.pm:672
3181 #: tp/Texinfo/Structuring.pm:709
31803182 #, perl-format
31813183 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31823184 msgstr ""
31833185
3184 #: tp/Texinfo/Structuring.pm:690
3186 #: tp/Texinfo/Structuring.pm:727
31853187 #, perl-format
31863188 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31873189 msgstr ""
31883190
3189 #: tp/Texinfo/Structuring.pm:744
3191 #: tp/Texinfo/Structuring.pm:781
31903192 #, perl-format
31913193 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31923194 msgstr ""
31933195
3194 #: tp/Texinfo/Structuring.pm:771
3196 #: tp/Texinfo/Structuring.pm:808
31953197 #, fuzzy, perl-format
31963198 msgid "%s reference to nonexistent `%s'"
31973199 msgstr "orefererad nod \"%s\""
31983200
3199 #: tp/Texinfo/Structuring.pm:790
3201 #: tp/Texinfo/Structuring.pm:827
32003202 #, fuzzy, perl-format
32013203 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
32023204 msgstr "Noden \"%s\" saknar menypost för \"%s\" trots att den är dess Upp-mål"
32033205
3204 #: tp/Texinfo/Structuring.pm:798
3206 #: tp/Texinfo/Structuring.pm:835
32053207 #, perl-format
32063208 msgid "for `%s', up in menu `%s' and up `%s' don't match"
32073209 msgstr ""
32083210
3209 #: tp/Texinfo/Structuring.pm:1282
3210 #, fuzzy, perl-format
3211 msgid "@%s reference to nonexistent node `%s'"
3212 msgstr ""
3213 "%s-referens till ickeexisterande noden \"%s\" (kanske felaktig "
3214 "avsnittsindelning?)"
3215
3216 #: tp/Texinfo/Structuring.pm:1294
3211 #: tp/Texinfo/Structuring.pm:1331
32173212 #, perl-format
32183213 msgid "@%s to `%s', different from %s name `%s'"
32193214 msgstr ""
32203215
3221 #: tp/Texinfo/Structuring.pm:1959
3216 #: tp/Texinfo/Structuring.pm:1996
32223217 #, fuzzy, perl-format
32233218 msgid "empty index key in @%s"
32243219 msgstr "inga indexposter för \"%s\" hittades\n"
33303325 msgid "tex4ht.pm: could not open: %s"
33313326 msgstr "Kan inte hitta \"%s\"."
33323327
3333 #: tp/init/tex4ht.pm:293
3328 #: tp/init/tex4ht.pm:294
33343329 #, perl-format
33353330 msgid "tex4ht.pm: end of @%s item %d not found"
33363331 msgstr ""
33373332
3338 #: tp/init/tex4ht.pm:300
3333 #: tp/init/tex4ht.pm:301
33393334 #, perl-format
33403335 msgid ""
33413336 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33423337 "items found in the document for @%s"
33433338 msgstr ""
33443339
3345 #: tp/init/tex4ht.pm:320
3340 #: tp/init/tex4ht.pm:321
33463341 #, fuzzy, perl-format
33473342 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33483343 msgstr "kan inte skapa utdatafilen \"%s\""
33493344
3350 #: tp/init/tex4ht.pm:335
3345 #: tp/init/tex4ht.pm:336
33513346 #, perl-format
33523347 msgid ""
33533348 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
38073802 #, c-format
38083803 msgid "entry %s follows an entry with a secondary name"
38093804 msgstr "posten %s följer på en post med ett sekundärt namn"
3805
3806 #, fuzzy
3807 #~ msgid "menu reference to nonexistent node `%s'"
3808 #~ msgstr "orefererad nod \"%s\""
38103809
38113810 #, fuzzy
38123811 #~ msgid "Can't create directories `%s': %s"
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: texinfo 4.13.96\n"
8 "Project-Id-Version: texinfo 5.0\n"
99 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
10 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
10 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
22232223 msgid "@%s outside of any node"
22242224 msgstr ""
22252225
2226 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2226 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
22272227 #, perl-format
22282228 msgid "entry for index `%s' outside of any node"
22292229 msgstr ""
22302230
2231 #: tp/Texinfo/Convert/Plaintext.pm:1217
2231 #: tp/Texinfo/Convert/Plaintext.pm:1313
22322232 #, perl-format
22332233 msgid "error on closing image text file %s: %s"
22342234 msgstr ""
22352235
2236 #: tp/Texinfo/Convert/Plaintext.pm:1222
2236 #: tp/Texinfo/Convert/Plaintext.pm:1318
22372237 #, perl-format
22382238 msgid "@image file `%s' unreadable: %s"
22392239 msgstr ""
22402240
2241 #: tp/Texinfo/Convert/Plaintext.pm:1251
2241 #: tp/Texinfo/Convert/Plaintext.pm:1341
22422242 #, perl-format
22432243 msgid "could not find @image file `%s.txt' nor alternate text"
22442244 msgstr ""
22452245
2246 #: tp/Texinfo/Convert/Plaintext.pm:1617
2246 #: tp/Texinfo/Convert/Plaintext.pm:1705
22472247 msgid ""
22482248 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
22492249 "avoid that"
22502250 msgstr ""
22512251
2252 #: tp/Texinfo/Convert/Plaintext.pm:1849
2252 #: tp/Texinfo/Convert/Plaintext.pm:1937
22532253 #, perl-format
22542254 msgid "`.' or `,' must follow @xref, not %s"
22552255 msgstr ""
22562256
2257 #: tp/Texinfo/Convert/Plaintext.pm:1852
2257 #: tp/Texinfo/Convert/Plaintext.pm:1940
22582258 msgid "`.' or `,' must follow @xref"
22592259 msgstr ""
22602260
22632263 msgid "@%s should only appear at beginning or end of document"
22642264 msgstr ""
22652265
2266 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2266 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
22672267 #, perl-format
22682268 msgid "multiple @%s"
22692269 msgstr ""
28632863 msgid "no sectioning command associated with @%s"
28642864 msgstr ""
28652865
2866 #: tp/Texinfo/Structuring.pm:568
2867 #, perl-format
2868 msgid "menu reference to nonexistent node `%s'"
2869 msgstr ""
2870
2871 #: tp/Texinfo/Structuring.pm:583
2872 #, perl-format
2873 msgid "menu entry node name `%s' different from %s name `%s'"
2874 msgstr ""
2875
2876 #: tp/Texinfo/Structuring.pm:619
2866 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
2867 #, perl-format
2868 msgid "@%s reference to nonexistent node `%s'"
2869 msgstr ""
2870
2871 #: tp/Texinfo/Structuring.pm:551
2872 #, perl-format
2873 msgid "@%s entry node name `%s' different from %s name `%s'"
2874 msgstr ""
2875
2876 #: tp/Texinfo/Structuring.pm:656
28772877 #, perl-format
28782878 msgid "unreferenced node `%s'"
28792879 msgstr ""
28802880
2881 #: tp/Texinfo/Structuring.pm:665
2881 #: tp/Texinfo/Structuring.pm:702
28822882 #, perl-format
28832883 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
28842884 msgstr ""
28852885
2886 #: tp/Texinfo/Structuring.pm:672
2886 #: tp/Texinfo/Structuring.pm:709
28872887 #, perl-format
28882888 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
28892889 msgstr ""
28902890
2891 #: tp/Texinfo/Structuring.pm:690
2891 #: tp/Texinfo/Structuring.pm:727
28922892 #, perl-format
28932893 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
28942894 msgstr ""
28952895
2896 #: tp/Texinfo/Structuring.pm:744
2896 #: tp/Texinfo/Structuring.pm:781
28972897 #, perl-format
28982898 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
28992899 msgstr ""
29002900
2901 #: tp/Texinfo/Structuring.pm:771
2901 #: tp/Texinfo/Structuring.pm:808
29022902 #, perl-format
29032903 msgid "%s reference to nonexistent `%s'"
29042904 msgstr ""
29052905
2906 #: tp/Texinfo/Structuring.pm:790
2906 #: tp/Texinfo/Structuring.pm:827
29072907 #, perl-format
29082908 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
29092909 msgstr ""
29102910
2911 #: tp/Texinfo/Structuring.pm:798
2911 #: tp/Texinfo/Structuring.pm:835
29122912 #, perl-format
29132913 msgid "for `%s', up in menu `%s' and up `%s' don't match"
29142914 msgstr ""
29152915
2916 #: tp/Texinfo/Structuring.pm:1282
2917 #, perl-format
2918 msgid "@%s reference to nonexistent node `%s'"
2919 msgstr ""
2920
2921 #: tp/Texinfo/Structuring.pm:1294
2916 #: tp/Texinfo/Structuring.pm:1331
29222917 #, perl-format
29232918 msgid "@%s to `%s', different from %s name `%s'"
29242919 msgstr ""
29252920
2926 #: tp/Texinfo/Structuring.pm:1959
2921 #: tp/Texinfo/Structuring.pm:1996
29272922 #, perl-format
29282923 msgid "empty index key in @%s"
29292924 msgstr ""
30353030 msgid "tex4ht.pm: could not open: %s"
30363031 msgstr ""
30373032
3038 #: tp/init/tex4ht.pm:293
3033 #: tp/init/tex4ht.pm:294
30393034 #, perl-format
30403035 msgid "tex4ht.pm: end of @%s item %d not found"
30413036 msgstr ""
30423037
3043 #: tp/init/tex4ht.pm:300
3038 #: tp/init/tex4ht.pm:301
30443039 #, perl-format
30453040 msgid ""
30463041 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
30473042 "items found in the document for @%s"
30483043 msgstr ""
30493044
3050 #: tp/init/tex4ht.pm:320
3045 #: tp/init/tex4ht.pm:321
30513046 #, perl-format
30523047 msgid "tex4ht.pm: output has no HTML item for @%s %s"
30533048 msgstr ""
30543049
3055 #: tp/init/tex4ht.pm:335
3050 #: tp/init/tex4ht.pm:336
30563051 #, perl-format
30573052 msgid ""
30583053 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: texinfo 4.13.92\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1010 "PO-Revision-Date: 2012-12-24 23:21-0600\n"
1111 "Last-Translator: Eyüp Hakan Duran <hakan_duran@hotmail.com>\n"
1212 "Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
24632463 msgid "@%s outside of any node"
24642464 msgstr "@%s tüm düğümlerin dışında"
24652465
2466 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2466 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24672467 #, fuzzy, perl-format
24682468 msgid "entry for index `%s' outside of any node"
24692469 msgstr "`%s' indeks girdisi tüm düğümlerin dışında"
24702470
2471 #: tp/Texinfo/Convert/Plaintext.pm:1217
2471 #: tp/Texinfo/Convert/Plaintext.pm:1313
24722472 #, fuzzy, perl-format
24732473 msgid "error on closing image text file %s: %s"
24742474 msgstr "İmge metin dosyası %1$s'i kapatmada hata: %2$s"
24752475
2476 #: tp/Texinfo/Convert/Plaintext.pm:1222
2476 #: tp/Texinfo/Convert/Plaintext.pm:1318
24772477 #, perl-format
24782478 msgid "@image file `%s' unreadable: %s"
24792479 msgstr "@image dosyası `%1$s' okunamıyor: %2$s"
24802480
2481 #: tp/Texinfo/Convert/Plaintext.pm:1251
2481 #: tp/Texinfo/Convert/Plaintext.pm:1341
24822482 #, fuzzy, perl-format
24832483 msgid "could not find @image file `%s.txt' nor alternate text"
24842484 msgstr "@image dosyası `%s.txt' ya da alternatif metin bulunamadı"
24852485
2486 #: tp/Texinfo/Convert/Plaintext.pm:1617
2486 #: tp/Texinfo/Convert/Plaintext.pm:1705
24872487 msgid ""
24882488 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24892489 "avoid that"
24912491 "@strong{Not...} Info'da sahte bir çapraz-başvuru oluşturur; bundan kaçınmak "
24922492 "için yazımı değiştirin"
24932493
2494 #: tp/Texinfo/Convert/Plaintext.pm:1849
2494 #: tp/Texinfo/Convert/Plaintext.pm:1937
24952495 #, perl-format
24962496 msgid "`.' or `,' must follow @xref, not %s"
24972497 msgstr "`.' ya da `,' @xref'i izlemelidir, `%s'i değil"
24982498
2499 #: tp/Texinfo/Convert/Plaintext.pm:1852
2499 #: tp/Texinfo/Convert/Plaintext.pm:1940
25002500 msgid "`.' or `,' must follow @xref"
25012501 msgstr "`.' ya da `,' @xref'i izlemelidir"
25022502
25052505 msgid "@%s should only appear at beginning or end of document"
25062506 msgstr "@%s yalnızca belgenin başında ya da sonunda görünmelidir"
25072507
2508 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2508 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25092509 #, fuzzy, perl-format
25102510 msgid "multiple @%s"
25112511 msgstr "Çok sayıda @%s"
31173117 msgid "no sectioning command associated with @%s"
31183118 msgstr "@%s ile ilintili bir bölümleme kmoutu yok"
31193119
3120 #: tp/Texinfo/Structuring.pm:568
3121 #, fuzzy, perl-format
3122 msgid "menu reference to nonexistent node `%s'"
3123 msgstr "Varolmayan düğüm `%s'e menü referansı"
3124
3125 #: tp/Texinfo/Structuring.pm:583
3126 #, fuzzy, perl-format
3127 msgid "menu entry node name `%s' different from %s name `%s'"
3120 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3121 #, perl-format
3122 msgid "@%s reference to nonexistent node `%s'"
3123 msgstr "varolmayan düğüm `%s'e @%s referansı"
3124
3125 #: tp/Texinfo/Structuring.pm:551
3126 #, fuzzy, perl-format
3127 msgid "@%s entry node name `%s' different from %s name `%s'"
31283128 msgstr "Menü girdisi düğüm adı `%s' %s adı olan `%s'den farklı"
31293129
3130 #: tp/Texinfo/Structuring.pm:619
3130 #: tp/Texinfo/Structuring.pm:656
31313131 #, perl-format
31323132 msgid "unreferenced node `%s'"
31333133 msgstr "başvurulmamış düğüm `%s'"
31343134
3135 #: tp/Texinfo/Structuring.pm:665
3135 #: tp/Texinfo/Structuring.pm:702
31363136 #, fuzzy, perl-format
31373137 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31383138 msgstr "Düğüm `1$%s' `%3$s' için bölümlemede %2$s fakat menüde değil"
31393139
3140 #: tp/Texinfo/Structuring.pm:672
3140 #: tp/Texinfo/Structuring.pm:709
31413141 #, fuzzy, perl-format
31423142 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31433143 msgstr "Düğüm %1$s `%3$s' menüsündeki `%2$s' ve bölümlemedeki `%4$s' farklı"
31443144
3145 #: tp/Texinfo/Structuring.pm:690
3145 #: tp/Texinfo/Structuring.pm:727
31463146 #, fuzzy, perl-format
31473147 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31483148 msgstr "Düğüm `%s' menüdeki `%s' için %s fakat bölümlemede değil"
31493149
3150 #: tp/Texinfo/Structuring.pm:744
3150 #: tp/Texinfo/Structuring.pm:781
31513151 #, perl-format
31523152 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31533153 msgstr "`%s' %s göstergesi (düğüm `%s' için) `%s' %s adından farklı"
31543154
3155 #: tp/Texinfo/Structuring.pm:771
3155 #: tp/Texinfo/Structuring.pm:808
31563156 #, perl-format
31573157 msgid "%s reference to nonexistent `%s'"
31583158 msgstr "varolmayan düğüm `%s' e %s referansı"
31593159
3160 #: tp/Texinfo/Structuring.pm:790
3160 #: tp/Texinfo/Structuring.pm:827
31613161 #, fuzzy, perl-format
31623162 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31633163 msgstr ""
31643164 "Düğüm `%s', Yukarı hedefi olmasına karşın, `%s' için eksik menü öğesi "
31653165 "içeriyor"
31663166
3167 #: tp/Texinfo/Structuring.pm:798
3167 #: tp/Texinfo/Structuring.pm:835
31683168 #, fuzzy, perl-format
31693169 msgid "for `%s', up in menu `%s' and up `%s' don't match"
31703170 msgstr "`%s' için, menü `%s' deki yukarı ve `%s' yukarısı eşleşmiyor"
31713171
3172 #: tp/Texinfo/Structuring.pm:1282
3173 #, perl-format
3174 msgid "@%s reference to nonexistent node `%s'"
3175 msgstr "varolmayan düğüm `%s'e @%s referansı"
3176
3177 #: tp/Texinfo/Structuring.pm:1294
3172 #: tp/Texinfo/Structuring.pm:1331
31783173 #, perl-format
31793174 msgid "@%s to `%s', different from %s name `%s'"
31803175 msgstr "`%s'e @%s, `%s' %s adından farklı"
31813176
3182 #: tp/Texinfo/Structuring.pm:1959
3177 #: tp/Texinfo/Structuring.pm:1996
31833178 #, fuzzy, perl-format
31843179 msgid "empty index key in @%s"
31853180 msgstr "@%s'de boş dizin anahtarı"
32933288 msgid "tex4ht.pm: could not open: %s"
32943289 msgstr "@%s: %s açılamıyor: %s"
32953290
3296 #: tp/init/tex4ht.pm:293
3291 #: tp/init/tex4ht.pm:294
32973292 #, perl-format
32983293 msgid "tex4ht.pm: end of @%s item %d not found"
32993294 msgstr ""
33003295
3301 #: tp/init/tex4ht.pm:300
3296 #: tp/init/tex4ht.pm:301
33023297 #, fuzzy, perl-format
33033298 msgid ""
33043299 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33073302 "tex4ht işlemesi HTML'de %d öğe üretti; %d bekleniyordu, belgede bulunan öğe "
33083303 "sayısı"
33093304
3310 #: tp/init/tex4ht.pm:320
3305 #: tp/init/tex4ht.pm:321
33113306 #, fuzzy, perl-format
33123307 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33133308 msgstr "tex4ht çıktısında @%s %s için hiç HTML öğesi yok"
33143309
3315 #: tp/init/tex4ht.pm:335
3310 #: tp/init/tex4ht.pm:336
33163311 #, fuzzy, perl-format
33173312 msgid ""
33183313 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
37993794 msgid "entry %s follows an entry with a secondary name"
38003795 msgstr "%s girdisi, ikincil isimli bir girdiyi takip ediyor"
38013796
3797 #, fuzzy
3798 #~ msgid "menu reference to nonexistent node `%s'"
3799 #~ msgstr "Varolmayan düğüm `%s'e menü referansı"
3800
38023801 #~ msgid "protect_hashchar_at_line_beginning cannot protect in @%s"
38033802 #~ msgstr "protect_hashchar_at_line_beginning @%s'de koruyamıyor"
38043803
Binary diff not shown
77 msgstr ""
88 "Project-Id-Version: texinfo 4.13\n"
99 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
10 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
10 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1111 "PO-Revision-Date: 2010-06-01 14:53+0300\n"
1212 "Last-Translator: Maxim V. Dziumanenko <dziumanenko@gmail.com>\n"
1313 "Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
24802480 msgid "@%s outside of any node"
24812481 msgstr "(ззовні будь-якого вузла)"
24822482
2483 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2483 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24842484 #, fuzzy, perl-format
24852485 msgid "entry for index `%s' outside of any node"
24862486 msgstr "Пункт покажчику `%s' ззовні будь-якого вузла"
24872487
2488 #: tp/Texinfo/Convert/Plaintext.pm:1217
2488 #: tp/Texinfo/Convert/Plaintext.pm:1313
24892489 #, fuzzy, perl-format
24902490 msgid "error on closing image text file %s: %s"
24912491 msgstr "помилка закриття файлу виводу `%s'"
24922492
2493 #: tp/Texinfo/Convert/Plaintext.pm:1222
2493 #: tp/Texinfo/Convert/Plaintext.pm:1318
24942494 #, perl-format
24952495 msgid "@image file `%s' unreadable: %s"
24962496 msgstr "Неможливо прочитати файл @image `%s': %s"
24972497
2498 #: tp/Texinfo/Convert/Plaintext.pm:1251
2498 #: tp/Texinfo/Convert/Plaintext.pm:1341
24992499 #, fuzzy, perl-format
25002500 msgid "could not find @image file `%s.txt' nor alternate text"
25012501 msgstr "Не вдається знайти вузол `%s'."
25022502
2503 #: tp/Texinfo/Convert/Plaintext.pm:1617
2503 #: tp/Texinfo/Convert/Plaintext.pm:1705
25042504 msgid ""
25052505 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
25062506 "avoid that"
25082508 "@strong{Note...} створює хибні перехресні посилання у Info; переформулюйте, "
25092509 "уникаючи цього"
25102510
2511 #: tp/Texinfo/Convert/Plaintext.pm:1849
2511 #: tp/Texinfo/Convert/Plaintext.pm:1937
25122512 #, fuzzy, perl-format
25132513 msgid "`.' or `,' must follow @xref, not %s"
25142514 msgstr "`.' чи `,' мають йти після @%s, а не `%c'"
25152515
2516 #: tp/Texinfo/Convert/Plaintext.pm:1852
2516 #: tp/Texinfo/Convert/Plaintext.pm:1940
25172517 #, fuzzy
25182518 msgid "`.' or `,' must follow @xref"
25192519 msgstr "`.' чи `,' мають йти після @%s, а не `%c'"
25232523 msgid "@%s should only appear at beginning or end of document"
25242524 msgstr "%s: не вдається відкрити --css-file: %s"
25252525
2526 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2526 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25272527 #, perl-format
25282528 msgid "multiple @%s"
25292529 msgstr ""
31423142 msgid "no sectioning command associated with @%s"
31433143 msgstr ""
31443144
3145 #: tp/Texinfo/Structuring.pm:568
3146 #, fuzzy, perl-format
3147 msgid "menu reference to nonexistent node `%s'"
3148 msgstr "вузол, на який нема посилань `%s'"
3149
3150 #: tp/Texinfo/Structuring.pm:583
3151 #, perl-format
3152 msgid "menu entry node name `%s' different from %s name `%s'"
3153 msgstr ""
3154
3155 #: tp/Texinfo/Structuring.pm:619
3145 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3146 #, fuzzy, perl-format
3147 msgid "@%s reference to nonexistent node `%s'"
3148 msgstr ""
3149 "%s посилається на неіснуючий вузол `%s' (мабуть, з-за неправильного "
3150 "секціювання?)"
3151
3152 #: tp/Texinfo/Structuring.pm:551
3153 #, perl-format
3154 msgid "@%s entry node name `%s' different from %s name `%s'"
3155 msgstr ""
3156
3157 #: tp/Texinfo/Structuring.pm:656
31563158 #, perl-format
31573159 msgid "unreferenced node `%s'"
31583160 msgstr "вузол, на який нема посилань `%s'"
31593161
3160 #: tp/Texinfo/Structuring.pm:665
3162 #: tp/Texinfo/Structuring.pm:702
31613163 #, perl-format
31623164 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31633165 msgstr ""
31643166
3165 #: tp/Texinfo/Structuring.pm:672
3167 #: tp/Texinfo/Structuring.pm:709
31663168 #, perl-format
31673169 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31683170 msgstr ""
31693171
3170 #: tp/Texinfo/Structuring.pm:690
3172 #: tp/Texinfo/Structuring.pm:727
31713173 #, perl-format
31723174 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31733175 msgstr ""
31743176
3175 #: tp/Texinfo/Structuring.pm:744
3177 #: tp/Texinfo/Structuring.pm:781
31763178 #, perl-format
31773179 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31783180 msgstr ""
31793181
3180 #: tp/Texinfo/Structuring.pm:771
3182 #: tp/Texinfo/Structuring.pm:808
31813183 #, fuzzy, perl-format
31823184 msgid "%s reference to nonexistent `%s'"
31833185 msgstr "вузол, на який нема посилань `%s'"
31843186
3185 #: tp/Texinfo/Structuring.pm:790
3187 #: tp/Texinfo/Structuring.pm:827
31863188 #, fuzzy, perl-format
31873189 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31883190 msgstr "Вузол `%s' не має пункту меню для `%s', хоча й є його горішнім вузлом"
31893191
3190 #: tp/Texinfo/Structuring.pm:798
3192 #: tp/Texinfo/Structuring.pm:835
31913193 #, perl-format
31923194 msgid "for `%s', up in menu `%s' and up `%s' don't match"
31933195 msgstr ""
31943196
3195 #: tp/Texinfo/Structuring.pm:1282
3196 #, fuzzy, perl-format
3197 msgid "@%s reference to nonexistent node `%s'"
3198 msgstr ""
3199 "%s посилається на неіснуючий вузол `%s' (мабуть, з-за неправильного "
3200 "секціювання?)"
3201
3202 #: tp/Texinfo/Structuring.pm:1294
3197 #: tp/Texinfo/Structuring.pm:1331
32033198 #, perl-format
32043199 msgid "@%s to `%s', different from %s name `%s'"
32053200 msgstr ""
32063201
3207 #: tp/Texinfo/Structuring.pm:1959
3202 #: tp/Texinfo/Structuring.pm:1996
32083203 #, fuzzy, perl-format
32093204 msgid "empty index key in @%s"
32103205 msgstr "не знайдено пунктів покажчику для `%s'\n"
33163311 msgid "tex4ht.pm: could not open: %s"
33173312 msgstr "Не вдається знайти `%s'."
33183313
3319 #: tp/init/tex4ht.pm:293
3314 #: tp/init/tex4ht.pm:294
33203315 #, perl-format
33213316 msgid "tex4ht.pm: end of @%s item %d not found"
33223317 msgstr ""
33233318
3324 #: tp/init/tex4ht.pm:300
3319 #: tp/init/tex4ht.pm:301
33253320 #, perl-format
33263321 msgid ""
33273322 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33283323 "items found in the document for @%s"
33293324 msgstr ""
33303325
3331 #: tp/init/tex4ht.pm:320
3326 #: tp/init/tex4ht.pm:321
33323327 #, fuzzy, perl-format
33333328 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33343329 msgstr "не вдається створити файл виводу `%s'"
33353330
3336 #: tp/init/tex4ht.pm:335
3331 #: tp/init/tex4ht.pm:336
33373332 #, perl-format
33383333 msgid ""
33393334 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
38053800 #, c-format
38063801 msgid "entry %s follows an entry with a secondary name"
38073802 msgstr "пункт %s йде за пунктом, що має вторинну назву"
3803
3804 #, fuzzy
3805 #~ msgid "menu reference to nonexistent node `%s'"
3806 #~ msgstr "вузол, на який нема посилань `%s'"
38083807
38093808 #, fuzzy
38103809 #~ msgid "Can't create directories `%s': %s"
Binary diff not shown
77 msgstr ""
88 "Project-Id-Version: texinfo 4.13.92\n"
99 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
10 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
10 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1111 "PO-Revision-Date: 2012-12-22 07:39+0700\n"
1212 "Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
1313 "Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
24612461 msgid "@%s outside of any node"
24622462 msgstr "@%s nằm ngoài mọi nút"
24632463
2464 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2464 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24652465 #, fuzzy, perl-format
24662466 msgid "entry for index `%s' outside of any node"
24672467 msgstr "Mục nhập cho chỉ mục “%s” nằm ở ngoại nút nào"
24682468
2469 #: tp/Texinfo/Convert/Plaintext.pm:1217
2469 #: tp/Texinfo/Convert/Plaintext.pm:1313
24702470 #, fuzzy, perl-format
24712471 msgid "error on closing image text file %s: %s"
24722472 msgstr "Gặp lỗi khi đóng tập tin ánh xạ text %s: %s"
24732473
2474 #: tp/Texinfo/Convert/Plaintext.pm:1222
2474 #: tp/Texinfo/Convert/Plaintext.pm:1318
24752475 #, perl-format
24762476 msgid "@image file `%s' unreadable: %s"
24772477 msgstr "Không thể đọc tập tin @image “%s”: %s"
24782478
2479 #: tp/Texinfo/Convert/Plaintext.pm:1251
2479 #: tp/Texinfo/Convert/Plaintext.pm:1341
24802480 #, fuzzy, perl-format
24812481 msgid "could not find @image file `%s.txt' nor alternate text"
24822482 msgstr ""
24832483 "Không thể tìm thấy tập tin @image “%s.txt” mà cũng không có chữ thay thế"
24842484
2485 #: tp/Texinfo/Convert/Plaintext.pm:1617
2485 #: tp/Texinfo/Convert/Plaintext.pm:1705
24862486 msgid ""
24872487 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24882488 "avoid that"
24902490 "“@strong{Note...}” tạo một tham chiếu chéo giả trong Info; hãy sửa đổi để "
24912491 "tránh nó"
24922492
2493 #: tp/Texinfo/Convert/Plaintext.pm:1849
2493 #: tp/Texinfo/Convert/Plaintext.pm:1937
24942494 #, perl-format
24952495 msgid "`.' or `,' must follow @xref, not %s"
24962496 msgstr "“.” hay “,” phải theo sau @xref, không phải %s"
24972497
2498 #: tp/Texinfo/Convert/Plaintext.pm:1852
2498 #: tp/Texinfo/Convert/Plaintext.pm:1940
24992499 msgid "`.' or `,' must follow @xref"
25002500 msgstr "“.” hay “,” phải theo sau @xref"
25012501
25042504 msgid "@%s should only appear at beginning or end of document"
25052505 msgstr "@%s chỉ được phép xuất hiện ở đầu hoặc cuối của tài liệu"
25062506
2507 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2507 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
25082508 #, fuzzy, perl-format
25092509 msgid "multiple @%s"
25102510 msgstr "Nhân @%s"
31503150 msgid "no sectioning command associated with @%s"
31513151 msgstr "Không có lệnh chương phần nào được kết hợp cùng với @%s"
31523152
3153 #: tp/Texinfo/Structuring.pm:568
3154 #, fuzzy, perl-format
3155 msgid "menu reference to nonexistent node `%s'"
3156 msgstr "Trình đơn tham chiếu đến vị trí nút chưa sẵn có “%s”"
3157
3158 #: tp/Texinfo/Structuring.pm:583
3159 #, fuzzy, perl-format
3160 msgid "menu entry node name `%s' different from %s name `%s'"
3153 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3154 #, perl-format
3155 msgid "@%s reference to nonexistent node `%s'"
3156 msgstr "@%s tham chiếu đến nút chưa tồn tại “%s”"
3157
3158 #: tp/Texinfo/Structuring.pm:551
3159 #, fuzzy, perl-format
3160 msgid "@%s entry node name `%s' different from %s name `%s'"
31613161 msgstr "Tên nút mục trình đơn “%s” khác biệt với %s tên “%s”"
31623162
3163 #: tp/Texinfo/Structuring.pm:619
3163 #: tp/Texinfo/Structuring.pm:656
31643164 #, perl-format
31653165 msgid "unreferenced node `%s'"
31663166 msgstr "nút chưa được tham chiếu “%s”"
31673167
3168 #: tp/Texinfo/Structuring.pm:665
3168 #: tp/Texinfo/Structuring.pm:702
31693169 #, fuzzy, perl-format
31703170 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
31713171 msgstr ""
31723172 "Nút “%s” là %s dành cho “%s” trong phần chương nhưng không trong trình đơn"
31733173
3174 #: tp/Texinfo/Structuring.pm:672
3174 #: tp/Texinfo/Structuring.pm:709
31753175 #, fuzzy, perl-format
31763176 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
31773177 msgstr "Nút %s “%s” trong trình đơn “%s” và trong chương “%s” khác nhau"
31783178
3179 #: tp/Texinfo/Structuring.pm:690
3179 #: tp/Texinfo/Structuring.pm:727
31803180 #, fuzzy, perl-format
31813181 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
31823182 msgstr "Nút “%s” là %s cho “%s” trong trình đơn nhưng mà không ở chương đoạn"
31833183
3184 #: tp/Texinfo/Structuring.pm:744
3184 #: tp/Texinfo/Structuring.pm:781
31853185 #, perl-format
31863186 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31873187 msgstr "con trỏ %s “%s” (cho nút “%s”) khác với %s tên “%s”"
31883188
3189 #: tp/Texinfo/Structuring.pm:771
3189 #: tp/Texinfo/Structuring.pm:808
31903190 #, perl-format
31913191 msgid "%s reference to nonexistent `%s'"
31923192 msgstr "%s tham chiếu đến nơi mà chưa có “%s”"
31933193
3194 #: tp/Texinfo/Structuring.pm:790
3194 #: tp/Texinfo/Structuring.pm:827
31953195 #, fuzzy, perl-format
31963196 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31973197 msgstr ""
31983198 "Nút “%s” không có mục trình đơn cho “%s”, không kể nút này là đích Lên của nó"
31993199
3200 #: tp/Texinfo/Structuring.pm:798
3200 #: tp/Texinfo/Structuring.pm:835
32013201 #, fuzzy, perl-format
32023202 msgid "for `%s', up in menu `%s' and up `%s' don't match"
32033203 msgstr "Cho “%s”, nhảy lên trong trình đơn “%s” và lên “%s” không khớp"
32043204
3205 #: tp/Texinfo/Structuring.pm:1282
3206 #, perl-format
3207 msgid "@%s reference to nonexistent node `%s'"
3208 msgstr "@%s tham chiếu đến nút chưa tồn tại “%s”"
3209
3210 #: tp/Texinfo/Structuring.pm:1294
3205 #: tp/Texinfo/Structuring.pm:1331
32113206 #, perl-format
32123207 msgid "@%s to `%s', different from %s name `%s'"
32133208 msgstr "@%s thành “%s”, khác với %s tên “%s”"
32143209
3215 #: tp/Texinfo/Structuring.pm:1959
3210 #: tp/Texinfo/Structuring.pm:1996
32163211 #, fuzzy, perl-format
32173212 msgid "empty index key in @%s"
32183213 msgstr "Khóa chỉ mục trống rỗng trong @%s"
33263321 msgid "tex4ht.pm: could not open: %s"
33273322 msgstr "@%s: không thể mở %s: %s"
33283323
3329 #: tp/init/tex4ht.pm:293
3324 #: tp/init/tex4ht.pm:294
33303325 #, perl-format
33313326 msgid "tex4ht.pm: end of @%s item %d not found"
33323327 msgstr ""
33333328
3334 #: tp/init/tex4ht.pm:300
3329 #: tp/init/tex4ht.pm:301
33353330 #, fuzzy, perl-format
33363331 msgid ""
33373332 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
33403335 "tex4ht xử lý thủ tục %d mục trong HTML; cần %d, số mục được tìm thấy trong "
33413336 "tài liệu"
33423337
3343 #: tp/init/tex4ht.pm:320
3338 #: tp/init/tex4ht.pm:321
33443339 #, fuzzy, perl-format
33453340 msgid "tex4ht.pm: output has no HTML item for @%s %s"
33463341 msgstr "kết xuất tex4ht không có mục HTML cho @%s %s"
33473342
3348 #: tp/init/tex4ht.pm:335
3343 #: tp/init/tex4ht.pm:336
33493344 #, fuzzy, perl-format
33503345 msgid ""
33513346 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
38593854 msgid "entry %s follows an entry with a secondary name"
38603855 msgstr "mục nhập %s nằm theo một mục nhập có tên phụ"
38613856
3857 #, fuzzy
3858 #~ msgid "menu reference to nonexistent node `%s'"
3859 #~ msgstr "Trình đơn tham chiếu đến vị trí nút chưa sẵn có “%s”"
3860
38623861 #~ msgid "protect_hashchar_at_line_beginning cannot protect in @%s"
38633862 #~ msgstr "protect_hashchar_at_line_beginning không thể bảo vệ trong @%s"
38643863
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: texinfo 4.13\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
1010 "PO-Revision-Date: 2009-05-21 15:08中国标准时间\n"
1111 "Last-Translator: Ji ZhengYu <zhengyuji@gmail.com>\n"
1212 "Language-Team: Chinese (simplified) <translation-team-zh-cn@lists."
24182418 msgid "@%s outside of any node"
24192419 msgstr "(超出任何节点)"
24202420
2421 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2421 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
24222422 #, fuzzy, perl-format
24232423 msgid "entry for index `%s' outside of any node"
24242424 msgstr "关于索引“%s”的条目超出了所有节点"
24252425
2426 #: tp/Texinfo/Convert/Plaintext.pm:1217
2426 #: tp/Texinfo/Convert/Plaintext.pm:1313
24272427 #, fuzzy, perl-format
24282428 msgid "error on closing image text file %s: %s"
24292429 msgstr "关闭输出文件“%s”时出错"
24302430
2431 #: tp/Texinfo/Convert/Plaintext.pm:1222
2431 #: tp/Texinfo/Convert/Plaintext.pm:1318
24322432 #, perl-format
24332433 msgid "@image file `%s' unreadable: %s"
24342434 msgstr "@image 文件“%s”不可读:%s"
24352435
2436 #: tp/Texinfo/Convert/Plaintext.pm:1251
2436 #: tp/Texinfo/Convert/Plaintext.pm:1341
24372437 #, fuzzy, perl-format
24382438 msgid "could not find @image file `%s.txt' nor alternate text"
24392439 msgstr "无法找到节点“%s”。"
24402440
2441 #: tp/Texinfo/Convert/Plaintext.pm:1617
2441 #: tp/Texinfo/Convert/Plaintext.pm:1705
24422442 msgid ""
24432443 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
24442444 "avoid that"
24452445 msgstr "@strong{Note...} 在 Info 中形成了一个假的交叉引用;可通过重写避免此事"
24462446
2447 #: tp/Texinfo/Convert/Plaintext.pm:1849
2447 #: tp/Texinfo/Convert/Plaintext.pm:1937
24482448 #, fuzzy, perl-format
24492449 msgid "`.' or `,' must follow @xref, not %s"
24502450 msgstr "“.”或“,”之后必须为 @%s,而不是“%c”"
24512451
2452 #: tp/Texinfo/Convert/Plaintext.pm:1852
2452 #: tp/Texinfo/Convert/Plaintext.pm:1940
24532453 #, fuzzy
24542454 msgid "`.' or `,' must follow @xref"
24552455 msgstr "“.”或“,”之后必须为 @%s,而不是“%c”"
24592459 msgid "@%s should only appear at beginning or end of document"
24602460 msgstr "%s: 无法打开 --css-file: %s"
24612461
2462 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2462 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
24632463 #, perl-format
24642464 msgid "multiple @%s"
24652465 msgstr ""
30663066 msgid "no sectioning command associated with @%s"
30673067 msgstr ""
30683068
3069 #: tp/Texinfo/Structuring.pm:568
3070 #, fuzzy, perl-format
3071 msgid "menu reference to nonexistent node `%s'"
3072 msgstr "未引用的节点“%s”"
3073
3074 #: tp/Texinfo/Structuring.pm:583
3075 #, perl-format
3076 msgid "menu entry node name `%s' different from %s name `%s'"
3077 msgstr ""
3078
3079 #: tp/Texinfo/Structuring.pm:619
3069 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
3070 #, fuzzy, perl-format
3071 msgid "@%s reference to nonexistent node `%s'"
3072 msgstr "%s 引用到不存在的节点“%s”(也许字段不正确?)"
3073
3074 #: tp/Texinfo/Structuring.pm:551
3075 #, perl-format
3076 msgid "@%s entry node name `%s' different from %s name `%s'"
3077 msgstr ""
3078
3079 #: tp/Texinfo/Structuring.pm:656
30803080 #, perl-format
30813081 msgid "unreferenced node `%s'"
30823082 msgstr "未引用的节点“%s”"
30833083
3084 #: tp/Texinfo/Structuring.pm:665
3084 #: tp/Texinfo/Structuring.pm:702
30853085 #, perl-format
30863086 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
30873087 msgstr ""
30883088
3089 #: tp/Texinfo/Structuring.pm:672
3089 #: tp/Texinfo/Structuring.pm:709
30903090 #, perl-format
30913091 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
30923092 msgstr ""
30933093
3094 #: tp/Texinfo/Structuring.pm:690
3094 #: tp/Texinfo/Structuring.pm:727
30953095 #, perl-format
30963096 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
30973097 msgstr ""
30983098
3099 #: tp/Texinfo/Structuring.pm:744
3099 #: tp/Texinfo/Structuring.pm:781
31003100 #, perl-format
31013101 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
31023102 msgstr ""
31033103
3104 #: tp/Texinfo/Structuring.pm:771
3104 #: tp/Texinfo/Structuring.pm:808
31053105 #, fuzzy, perl-format
31063106 msgid "%s reference to nonexistent `%s'"
31073107 msgstr "未引用的节点“%s”"
31083108
3109 #: tp/Texinfo/Structuring.pm:790
3109 #: tp/Texinfo/Structuring.pm:827
31103110 #, fuzzy, perl-format
31113111 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
31123112 msgstr "尽管节点“%s”是“%s”的上层节点,但缺少相关的菜单项"
31133113
3114 #: tp/Texinfo/Structuring.pm:798
3114 #: tp/Texinfo/Structuring.pm:835
31153115 #, perl-format
31163116 msgid "for `%s', up in menu `%s' and up `%s' don't match"
31173117 msgstr ""
31183118
3119 #: tp/Texinfo/Structuring.pm:1282
3120 #, fuzzy, perl-format
3121 msgid "@%s reference to nonexistent node `%s'"
3122 msgstr "%s 引用到不存在的节点“%s”(也许字段不正确?)"
3123
3124 #: tp/Texinfo/Structuring.pm:1294
3119 #: tp/Texinfo/Structuring.pm:1331
31253120 #, perl-format
31263121 msgid "@%s to `%s', different from %s name `%s'"
31273122 msgstr ""
31283123
3129 #: tp/Texinfo/Structuring.pm:1959
3124 #: tp/Texinfo/Structuring.pm:1996
31303125 #, fuzzy, perl-format
31313126 msgid "empty index key in @%s"
31323127 msgstr "找不到含有“%s”的索引\n"
32383233 msgid "tex4ht.pm: could not open: %s"
32393234 msgstr "无法寻找“%s”。"
32403235
3241 #: tp/init/tex4ht.pm:293
3236 #: tp/init/tex4ht.pm:294
32423237 #, perl-format
32433238 msgid "tex4ht.pm: end of @%s item %d not found"
32443239 msgstr ""
32453240
3246 #: tp/init/tex4ht.pm:300
3241 #: tp/init/tex4ht.pm:301
32473242 #, perl-format
32483243 msgid ""
32493244 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
32503245 "items found in the document for @%s"
32513246 msgstr ""
32523247
3253 #: tp/init/tex4ht.pm:320
3248 #: tp/init/tex4ht.pm:321
32543249 #, fuzzy, perl-format
32553250 msgid "tex4ht.pm: output has no HTML item for @%s %s"
32563251 msgstr "无法创建输出文件“%s”"
32573252
3258 #: tp/init/tex4ht.pm:335
3253 #: tp/init/tex4ht.pm:336
32593254 #, perl-format
32603255 msgid ""
32613256 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
36893684 #, c-format
36903685 msgid "entry %s follows an entry with a secondary name"
36913686 msgstr "条目 %s 出现在具有次要名称的条目之后"
3687
3688 #, fuzzy
3689 #~ msgid "menu reference to nonexistent node `%s'"
3690 #~ msgstr "未引用的节点“%s”"
36923691
36933692 #, fuzzy
36943693 #~ msgid "Can't create directories `%s': %s"
Binary diff not shown
55 msgstr ""
66 "Project-Id-Version: texinfo 4.1\n"
77 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
8 "POT-Creation-Date: 2013-02-04 15:57-0800\n"
8 "POT-Creation-Date: 2013-02-16 06:55-0800\n"
99 "PO-Revision-Date: 2002-03-08 04:56+0800\n"
1010 "Last-Translator: Abel Cheung <maddog@linux.org.hk>\n"
1111 "Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
23182318 msgid "@%s outside of any node"
23192319 msgstr "(不在任何的節點內)"
23202320
2321 #: tp/Texinfo/Convert/Plaintext.pm:1109 tp/Texinfo/Parser.pm:2508
2321 #: tp/Texinfo/Convert/Plaintext.pm:1200 tp/Texinfo/Parser.pm:2508
23222322 #, fuzzy, perl-format
23232323 msgid "entry for index `%s' outside of any node"
23242324 msgstr "索引 `%s' 的項目不在任何的節點內"
23252325
2326 #: tp/Texinfo/Convert/Plaintext.pm:1217
2326 #: tp/Texinfo/Convert/Plaintext.pm:1313
23272327 #, fuzzy, perl-format
23282328 msgid "error on closing image text file %s: %s"
23292329 msgstr "無法建立輸出檔案 `%s'."
23302330
2331 #: tp/Texinfo/Convert/Plaintext.pm:1222
2331 #: tp/Texinfo/Convert/Plaintext.pm:1318
23322332 #, perl-format
23332333 msgid "@image file `%s' unreadable: %s"
23342334 msgstr "@image 檔案 `%s' 無法讀取: %s"
23352335
2336 #: tp/Texinfo/Convert/Plaintext.pm:1251
2336 #: tp/Texinfo/Convert/Plaintext.pm:1341
23372337 #, fuzzy, perl-format
23382338 msgid "could not find @image file `%s.txt' nor alternate text"
23392339 msgstr "找不到 `%s' 節點."
23402340
2341 #: tp/Texinfo/Convert/Plaintext.pm:1617
2341 #: tp/Texinfo/Convert/Plaintext.pm:1705
23422342 msgid ""
23432343 "@strong{Note...} produces a spurious cross-reference in Info; reword to "
23442344 "avoid that"
23452345 msgstr ""
23462346
2347 #: tp/Texinfo/Convert/Plaintext.pm:1849
2347 #: tp/Texinfo/Convert/Plaintext.pm:1937
23482348 #, fuzzy, perl-format
23492349 msgid "`.' or `,' must follow @xref, not %s"
23502350 msgstr "`.' 或 `,' 必須跟著交互參照, 而不是 %c"
23512351
2352 #: tp/Texinfo/Convert/Plaintext.pm:1852
2352 #: tp/Texinfo/Convert/Plaintext.pm:1940
23532353 #, fuzzy
23542354 msgid "`.' or `,' must follow @xref"
23552355 msgstr "`.' 或 `,' 必須跟著交互參照, 而不是 %c"
23592359 msgid "@%s should only appear at beginning or end of document"
23602360 msgstr "無法建立輸出檔案 `%s'."
23612361
2362 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:548
2362 #: tp/Texinfo/Parser.pm:1068 tp/Texinfo/Structuring.pm:588
23632363 #, perl-format
23642364 msgid "multiple @%s"
23652365 msgstr ""
29662966 msgid "no sectioning command associated with @%s"
29672967 msgstr ""
29682968
2969 #: tp/Texinfo/Structuring.pm:568
2970 #, fuzzy, perl-format
2971 msgid "menu reference to nonexistent node `%s'"
2972 msgstr "未被參照的節點 `%s'"
2973
2974 #: tp/Texinfo/Structuring.pm:583
2975 #, perl-format
2976 msgid "menu entry node name `%s' different from %s name `%s'"
2977 msgstr ""
2978
2979 #: tp/Texinfo/Structuring.pm:619
2969 #: tp/Texinfo/Structuring.pm:538 tp/Texinfo/Structuring.pm:1319
2970 #, fuzzy, perl-format
2971 msgid "@%s reference to nonexistent node `%s'"
2972 msgstr "%s 參照到不存在的節點: `%s'"
2973
2974 #: tp/Texinfo/Structuring.pm:551
2975 #, perl-format
2976 msgid "@%s entry node name `%s' different from %s name `%s'"
2977 msgstr ""
2978
2979 #: tp/Texinfo/Structuring.pm:656
29802980 #, perl-format
29812981 msgid "unreferenced node `%s'"
29822982 msgstr "未被參照的節點 `%s'"
29832983
2984 #: tp/Texinfo/Structuring.pm:665
2984 #: tp/Texinfo/Structuring.pm:702
29852985 #, perl-format
29862986 msgid "node `%s' is %s for `%s' in sectioning but not in menu"
29872987 msgstr ""
29882988
2989 #: tp/Texinfo/Structuring.pm:672
2989 #: tp/Texinfo/Structuring.pm:709
29902990 #, perl-format
29912991 msgid "node %s `%s' in menu `%s' and in sectioning `%s' differ"
29922992 msgstr ""
29932993
2994 #: tp/Texinfo/Structuring.pm:690
2994 #: tp/Texinfo/Structuring.pm:727
29952995 #, perl-format
29962996 msgid "node `%s' is %s for `%s' in menu but not in sectioning"
29972997 msgstr ""
29982998
2999 #: tp/Texinfo/Structuring.pm:744
2999 #: tp/Texinfo/Structuring.pm:781
30003000 #, perl-format
30013001 msgid "%s pointer `%s' (for node `%s') different from %s name `%s'"
30023002 msgstr ""
30033003
3004 #: tp/Texinfo/Structuring.pm:771
3004 #: tp/Texinfo/Structuring.pm:808
30053005 #, fuzzy, perl-format
30063006 msgid "%s reference to nonexistent `%s'"
30073007 msgstr "未被參照的節點 `%s'"
30083008
3009 #: tp/Texinfo/Structuring.pm:790
3009 #: tp/Texinfo/Structuring.pm:827
30103010 #, perl-format
30113011 msgid "node `%s' lacks menu item for `%s' despite being its Up target"
30123012 msgstr ""
30133013
3014 #: tp/Texinfo/Structuring.pm:798
3014 #: tp/Texinfo/Structuring.pm:835
30153015 #, perl-format
30163016 msgid "for `%s', up in menu `%s' and up `%s' don't match"
30173017 msgstr ""
30183018
3019 #: tp/Texinfo/Structuring.pm:1282
3020 #, fuzzy, perl-format
3021 msgid "@%s reference to nonexistent node `%s'"
3022 msgstr "%s 參照到不存在的節點: `%s'"
3023
3024 #: tp/Texinfo/Structuring.pm:1294
3019 #: tp/Texinfo/Structuring.pm:1331
30253020 #, perl-format
30263021 msgid "@%s to `%s', different from %s name `%s'"
30273022 msgstr ""
30283023
3029 #: tp/Texinfo/Structuring.pm:1959
3024 #: tp/Texinfo/Structuring.pm:1996
30303025 #, fuzzy, perl-format
30313026 msgid "empty index key in @%s"
30323027 msgstr "找不到包含 `%s' 的索引項目\n"
31383133 msgid "tex4ht.pm: could not open: %s"
31393134 msgstr "µLªk§ä¨ì `%s'."
31403135
3141 #: tp/init/tex4ht.pm:293
3136 #: tp/init/tex4ht.pm:294
31423137 #, perl-format
31433138 msgid "tex4ht.pm: end of @%s item %d not found"
31443139 msgstr ""
31453140
3146 #: tp/init/tex4ht.pm:300
3141 #: tp/init/tex4ht.pm:301
31473142 #, perl-format
31483143 msgid ""
31493144 "tex4ht.pm: processing produced %d items in HTML; expected %d, the number of "
31503145 "items found in the document for @%s"
31513146 msgstr ""
31523147
3153 #: tp/init/tex4ht.pm:320
3148 #: tp/init/tex4ht.pm:321
31543149 #, fuzzy, perl-format
31553150 msgid "tex4ht.pm: output has no HTML item for @%s %s"
31563151 msgstr "無法建立輸出檔案 `%s'."
31573152
3158 #: tp/init/tex4ht.pm:335
3153 #: tp/init/tex4ht.pm:336
31593154 #, perl-format
31603155 msgid ""
31613156 "tex4ht.pm: processing retrieved %d items in HTML; expected %d, the number of "
35183513 #, c-format
35193514 msgid "entry %s follows an entry with a secondary name"
35203515 msgstr ""
3516
3517 #, fuzzy
3518 #~ msgid "menu reference to nonexistent node `%s'"
3519 #~ msgstr "未被參照的節點 `%s'"
35213520
35223521 #, fuzzy
35233522 #~ msgid "Can't read file %s: %s"
66 msgstr ""
77 "Project-Id-Version: texinfo 5.0\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1010 "PO-Revision-Date: 2008-03-19\n"
1111 "Last-Translator: Reinhold Kainhofer <reinhold@kainhofer.com>\n"
1212 "Language-Team: Unknown\n"
6060 msgid "{month} {day}, {year}"
6161 msgstr "{day}. {month} {year}"
6262
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6464 #: tp/Texinfo/Convert/HTML.pm:511
6565 #, perl-brace-format
6666 msgid "Appendix {number} {section_title}"
6767 msgstr ""
6868
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
7070 #: tp/Texinfo/Convert/HTML.pm:517
7171 #, fuzzy, perl-brace-format
7272 msgid "{number} {section_title}"
239239 msgid "see {title_ref}"
240240 msgstr ""
241241
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
243243 #, fuzzy, perl-brace-format
244244 msgid "{abbr_or_acronym} ({explanation})"
245245 msgstr "{acronym_like} ({explanation})"
246246
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
248248 #: tp/Texinfo/Convert/HTML.pm:3526
249249 #, perl-brace-format
250250 msgid "@b{{quotation_arg}:} "
251251 msgstr "@b{{quotation_arg}:} "
252252
253 #: tp/Texinfo/Convert/Plaintext.pm:1104
253 #: tp/Texinfo/Convert/Plaintext.pm:1195
254254 msgid "(outside of any node)"
255255 msgstr ""
256256
257 #: tp/Texinfo/Convert/Plaintext.pm:1685
257 #: tp/Texinfo/Convert/Plaintext.pm:1773
258258 #, perl-brace-format
259259 msgid "{name} @url{{email}}"
260260 msgstr ""
261261
262 #: tp/Texinfo/Convert/Plaintext.pm:1688
262 #: tp/Texinfo/Convert/Plaintext.pm:1776
263263 #, perl-brace-format
264264 msgid "@url{{email}}"
265265 msgstr ""
266266
267 #: tp/Texinfo/Convert/Plaintext.pm:1710
267 #: tp/Texinfo/Convert/Plaintext.pm:1798
268268 #, perl-brace-format
269269 msgid "{text} ({url})"
270270 msgstr ""
271271
272 #: tp/Texinfo/Convert/Plaintext.pm:1715
272 #: tp/Texinfo/Convert/Plaintext.pm:1803
273273 #, perl-brace-format
274274 msgid "@t{<{url}>}"
275275 msgstr ""
276276
277 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
277 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
278278 #, perl-brace-format
279279 msgid "@{No value for `{value}'@}"
280280 msgstr ""
281281
282 #: tp/Texinfo/Convert/Plaintext.pm:2450
282 #: tp/Texinfo/Convert/Plaintext.pm:2538
283283 #, perl-brace-format
284284 msgid "@tie{ }-- {category}: {name} {arguments}"
285285 msgstr ""
286286
287 #: tp/Texinfo/Convert/Plaintext.pm:2455
287 #: tp/Texinfo/Convert/Plaintext.pm:2543
288288 #, perl-brace-format
289289 msgid "@tie{ }-- {category}: {name}"
290290 msgstr ""
291291
292 #: tp/Texinfo/Convert/Plaintext.pm:2468
292 #: tp/Texinfo/Convert/Plaintext.pm:2556
293293 #, perl-brace-format
294294 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
295295 msgstr ""
296296
297 #: tp/Texinfo/Convert/Plaintext.pm:2471
297 #: tp/Texinfo/Convert/Plaintext.pm:2559
298298 #, perl-brace-format
299299 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
300300 msgstr ""
301301
302 #: tp/Texinfo/Convert/Plaintext.pm:2480
302 #: tp/Texinfo/Convert/Plaintext.pm:2568
303303 #, perl-brace-format
304304 msgid "@tie{ }-- {category}:@*{type}@*{name}"
305305 msgstr ""
306306
307 #: tp/Texinfo/Convert/Plaintext.pm:2483
307 #: tp/Texinfo/Convert/Plaintext.pm:2571
308308 #, perl-brace-format
309309 msgid "@tie{ }-- {category}: {type} {name}"
310310 msgstr ""
311311
312 #: tp/Texinfo/Convert/Plaintext.pm:2491
312 #: tp/Texinfo/Convert/Plaintext.pm:2579
313313 #, perl-brace-format
314314 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
315315 msgstr ""
316316
317 #: tp/Texinfo/Convert/Plaintext.pm:2497
317 #: tp/Texinfo/Convert/Plaintext.pm:2585
318318 #, perl-brace-format
319319 msgid "@tie{ }-- {category} of {class}: {name}"
320320 msgstr ""
321321
322 #: tp/Texinfo/Convert/Plaintext.pm:2506
322 #: tp/Texinfo/Convert/Plaintext.pm:2594
323323 #, perl-brace-format
324324 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
325325 msgstr ""
326326
327 #: tp/Texinfo/Convert/Plaintext.pm:2512
327 #: tp/Texinfo/Convert/Plaintext.pm:2600
328328 #, perl-brace-format
329329 msgid "@tie{ }-- {category} on {class}: {name}"
330330 msgstr ""
331331
332 #: tp/Texinfo/Convert/Plaintext.pm:2527
332 #: tp/Texinfo/Convert/Plaintext.pm:2615
333333 #, perl-brace-format
334334 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
335335 msgstr ""
336336
337 #: tp/Texinfo/Convert/Plaintext.pm:2531
337 #: tp/Texinfo/Convert/Plaintext.pm:2619
338338 #, perl-brace-format
339339 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
340340 msgstr ""
341341
342 #: tp/Texinfo/Convert/Plaintext.pm:2542
342 #: tp/Texinfo/Convert/Plaintext.pm:2630
343343 #, perl-brace-format
344344 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
345345 msgstr ""
346346
347 #: tp/Texinfo/Convert/Plaintext.pm:2546
347 #: tp/Texinfo/Convert/Plaintext.pm:2634
348348 #, perl-brace-format
349349 msgid "@tie{ }-- {category} on {class}: {type} {name}"
350350 msgstr ""
351351
352 #: tp/Texinfo/Convert/Plaintext.pm:2560
352 #: tp/Texinfo/Convert/Plaintext.pm:2648
353353 #, perl-brace-format
354354 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
355355 msgstr ""
356356
357 #: tp/Texinfo/Convert/Plaintext.pm:2564
357 #: tp/Texinfo/Convert/Plaintext.pm:2652
358358 #, perl-brace-format
359359 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
360360 msgstr ""
361361
362 #: tp/Texinfo/Convert/Plaintext.pm:2575
362 #: tp/Texinfo/Convert/Plaintext.pm:2663
363363 #, perl-brace-format
364364 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
365365 msgstr ""
366366
367 #: tp/Texinfo/Convert/Plaintext.pm:2579
367 #: tp/Texinfo/Convert/Plaintext.pm:2667
368368 #, perl-brace-format
369369 msgid "@tie{ }-- {category} of {class}: {type} {name}"
370370 msgstr ""
371371
372 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
372 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
373373 #, perl-brace-format
374374 msgid "@center --- @emph{{author}}\n"
375375 msgstr ""
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: texinfo_document 4.13.93\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1010 "PO-Revision-Date: 2013-01-30 10:05-0300\n"
1111 "Last-Translator: Felipe Castro <fefcas@gmail.com>\n"
1212 "Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
5858 msgid "{month} {day}, {year}"
5959 msgstr "{year} {month} {day}"
6060
61 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
61 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6262 #: tp/Texinfo/Convert/HTML.pm:511
6363 #, perl-brace-format
6464 msgid "Appendix {number} {section_title}"
6565 msgstr "Aldono {number} {section_title}"
6666
67 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
67 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
6868 #: tp/Texinfo/Convert/HTML.pm:517
6969 #, perl-brace-format
7070 msgid "{number} {section_title}"
237237 msgid "see {title_ref}"
238238 msgstr "konsultu {title_ref}"
239239
240 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
240 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
241241 #, perl-brace-format
242242 msgid "{abbr_or_acronym} ({explanation})"
243243 msgstr "{abbr_or_acronym} ({explanation})"
244244
245 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
245 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
246246 #: tp/Texinfo/Convert/HTML.pm:3526
247247 #, perl-brace-format
248248 msgid "@b{{quotation_arg}:} "
249249 msgstr "@b{{quotation_arg}:} "
250250
251 #: tp/Texinfo/Convert/Plaintext.pm:1104
251 #: tp/Texinfo/Convert/Plaintext.pm:1195
252252 msgid "(outside of any node)"
253253 msgstr "(for de iu ajn nodo)"
254254
255 #: tp/Texinfo/Convert/Plaintext.pm:1685
255 #: tp/Texinfo/Convert/Plaintext.pm:1773
256256 #, perl-brace-format
257257 msgid "{name} @url{{email}}"
258258 msgstr "{name} @url{{email}}"
259259
260 #: tp/Texinfo/Convert/Plaintext.pm:1688
260 #: tp/Texinfo/Convert/Plaintext.pm:1776
261261 #, perl-brace-format
262262 msgid "@url{{email}}"
263263 msgstr "@url{{email}}"
264264
265 #: tp/Texinfo/Convert/Plaintext.pm:1710
265 #: tp/Texinfo/Convert/Plaintext.pm:1798
266266 #, perl-brace-format
267267 msgid "{text} ({url})"
268268 msgstr "{text} ({url})"
269269
270 #: tp/Texinfo/Convert/Plaintext.pm:1715
270 #: tp/Texinfo/Convert/Plaintext.pm:1803
271271 #, perl-brace-format
272272 msgid "@t{<{url}>}"
273273 msgstr "@t{<{url}>}"
274274
275 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
275 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
276276 #, perl-brace-format
277277 msgid "@{No value for `{value}'@}"
278278 msgstr "@{Neniu valoro por `{value}'@}"
279279
280 #: tp/Texinfo/Convert/Plaintext.pm:2450
280 #: tp/Texinfo/Convert/Plaintext.pm:2538
281281 #, perl-brace-format
282282 msgid "@tie{ }-- {category}: {name} {arguments}"
283283 msgstr "@tie{ }-- {category}: {name} {arguments}"
284284
285 #: tp/Texinfo/Convert/Plaintext.pm:2455
285 #: tp/Texinfo/Convert/Plaintext.pm:2543
286286 #, perl-brace-format
287287 msgid "@tie{ }-- {category}: {name}"
288288 msgstr "@tie{ }-- {category}: {name}"
289289
290 #: tp/Texinfo/Convert/Plaintext.pm:2468
290 #: tp/Texinfo/Convert/Plaintext.pm:2556
291291 #, perl-brace-format
292292 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
293293 msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
294294
295 #: tp/Texinfo/Convert/Plaintext.pm:2471
295 #: tp/Texinfo/Convert/Plaintext.pm:2559
296296 #, perl-brace-format
297297 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
298298 msgstr "@tie{ }-- {category}: {type} {name} {arguments}"
299299
300 #: tp/Texinfo/Convert/Plaintext.pm:2480
300 #: tp/Texinfo/Convert/Plaintext.pm:2568
301301 #, perl-brace-format
302302 msgid "@tie{ }-- {category}:@*{type}@*{name}"
303303 msgstr "@tie{ }-- {category}:@*{type}@*{name}"
304304
305 #: tp/Texinfo/Convert/Plaintext.pm:2483
305 #: tp/Texinfo/Convert/Plaintext.pm:2571
306306 #, perl-brace-format
307307 msgid "@tie{ }-- {category}: {type} {name}"
308308 msgstr "@tie{ }-- {category}: {type} {name}"
309309
310 #: tp/Texinfo/Convert/Plaintext.pm:2491
310 #: tp/Texinfo/Convert/Plaintext.pm:2579
311311 #, perl-brace-format
312312 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
313313 msgstr "@tie{ }-- {category} de {class}: {name} {arguments}"
314314
315 #: tp/Texinfo/Convert/Plaintext.pm:2497
315 #: tp/Texinfo/Convert/Plaintext.pm:2585
316316 #, perl-brace-format
317317 msgid "@tie{ }-- {category} of {class}: {name}"
318318 msgstr "@tie{ }-- {category} de {class}: {name}"
319319
320 #: tp/Texinfo/Convert/Plaintext.pm:2506
320 #: tp/Texinfo/Convert/Plaintext.pm:2594
321321 #, perl-brace-format
322322 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
323323 msgstr "@tie{ }-- {category} en {class}: {name} {arguments}"
324324
325 #: tp/Texinfo/Convert/Plaintext.pm:2512
325 #: tp/Texinfo/Convert/Plaintext.pm:2600
326326 #, perl-brace-format
327327 msgid "@tie{ }-- {category} on {class}: {name}"
328328 msgstr "@tie{ }-- {category} en {class}: {name}"
329329
330 #: tp/Texinfo/Convert/Plaintext.pm:2527
330 #: tp/Texinfo/Convert/Plaintext.pm:2615
331331 #, perl-brace-format
332332 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
333333 msgstr "@tie{ }-- {category} en {class}:@*{type}@*{name} {arguments}"
334334
335 #: tp/Texinfo/Convert/Plaintext.pm:2531
335 #: tp/Texinfo/Convert/Plaintext.pm:2619
336336 #, perl-brace-format
337337 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
338338 msgstr "@tie{ }-- {category} en {class}: {type} {name} {arguments}"
339339
340 #: tp/Texinfo/Convert/Plaintext.pm:2542
340 #: tp/Texinfo/Convert/Plaintext.pm:2630
341341 #, perl-brace-format
342342 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
343343 msgstr "@tie{ }-- {category} en {class}:@*{type}@*{name}"
344344
345 #: tp/Texinfo/Convert/Plaintext.pm:2546
345 #: tp/Texinfo/Convert/Plaintext.pm:2634
346346 #, perl-brace-format
347347 msgid "@tie{ }-- {category} on {class}: {type} {name}"
348348 msgstr "@tie{ }-- {category} en {class}: {type} {name}"
349349
350 #: tp/Texinfo/Convert/Plaintext.pm:2560
350 #: tp/Texinfo/Convert/Plaintext.pm:2648
351351 #, perl-brace-format
352352 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
353353 msgstr "@tie{ }-- {category} de {class}:@*{type}@*{name} {arguments}"
354354
355 #: tp/Texinfo/Convert/Plaintext.pm:2564
355 #: tp/Texinfo/Convert/Plaintext.pm:2652
356356 #, perl-brace-format
357357 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
358358 msgstr "@tie{ }-- {category} de {class}: {type} {name} {arguments}"
359359
360 #: tp/Texinfo/Convert/Plaintext.pm:2575
360 #: tp/Texinfo/Convert/Plaintext.pm:2663
361361 #, perl-brace-format
362362 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
363363 msgstr "@tie{ }-- {category} de {class}:@*{type}@*{name}"
364364
365 #: tp/Texinfo/Convert/Plaintext.pm:2579
365 #: tp/Texinfo/Convert/Plaintext.pm:2667
366366 #, perl-brace-format
367367 msgid "@tie{ }-- {category} of {class}: {type} {name}"
368368 msgstr "@tie{ }-- {category} de {class}: {type} {name}"
369369
370 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
370 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
371371 #, perl-brace-format
372372 msgid "@center --- @emph{{author}}\n"
373373 msgstr "@center --- @emph{{author}}\n"
66 msgstr ""
77 "Project-Id-Version: texinfo 5.0\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1010 "PO-Revision-Date: 2008-08-28\n"
1111 "Last-Translator: Francisco Vila <paconet.org@gmail.com>\n"
1212 "Language-Team: Unknown\n"
6060 msgid "{month} {day}, {year}"
6161 msgstr "el {day} {month} {year}"
6262
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6464 #: tp/Texinfo/Convert/HTML.pm:511
6565 #, perl-brace-format
6666 msgid "Appendix {number} {section_title}"
6767 msgstr ""
6868
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
7070 #: tp/Texinfo/Convert/HTML.pm:517
7171 #, perl-brace-format
7272 msgid "{number} {section_title}"
239239 msgid "see {title_ref}"
240240 msgstr ""
241241
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
243243 #, perl-brace-format
244244 msgid "{abbr_or_acronym} ({explanation})"
245245 msgstr ""
246246
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
248248 #: tp/Texinfo/Convert/HTML.pm:3526
249249 #, perl-brace-format
250250 msgid "@b{{quotation_arg}:} "
251251 msgstr ""
252252
253 #: tp/Texinfo/Convert/Plaintext.pm:1104
253 #: tp/Texinfo/Convert/Plaintext.pm:1195
254254 msgid "(outside of any node)"
255255 msgstr ""
256256
257 #: tp/Texinfo/Convert/Plaintext.pm:1685
257 #: tp/Texinfo/Convert/Plaintext.pm:1773
258258 #, perl-brace-format
259259 msgid "{name} @url{{email}}"
260260 msgstr ""
261261
262 #: tp/Texinfo/Convert/Plaintext.pm:1688
262 #: tp/Texinfo/Convert/Plaintext.pm:1776
263263 #, perl-brace-format
264264 msgid "@url{{email}}"
265265 msgstr ""
266266
267 #: tp/Texinfo/Convert/Plaintext.pm:1710
267 #: tp/Texinfo/Convert/Plaintext.pm:1798
268268 #, perl-brace-format
269269 msgid "{text} ({url})"
270270 msgstr ""
271271
272 #: tp/Texinfo/Convert/Plaintext.pm:1715
272 #: tp/Texinfo/Convert/Plaintext.pm:1803
273273 #, perl-brace-format
274274 msgid "@t{<{url}>}"
275275 msgstr ""
276276
277 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
277 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
278278 #, perl-brace-format
279279 msgid "@{No value for `{value}'@}"
280280 msgstr ""
281281
282 #: tp/Texinfo/Convert/Plaintext.pm:2450
282 #: tp/Texinfo/Convert/Plaintext.pm:2538
283283 #, perl-brace-format
284284 msgid "@tie{ }-- {category}: {name} {arguments}"
285285 msgstr ""
286286
287 #: tp/Texinfo/Convert/Plaintext.pm:2455
287 #: tp/Texinfo/Convert/Plaintext.pm:2543
288288 #, perl-brace-format
289289 msgid "@tie{ }-- {category}: {name}"
290290 msgstr ""
291291
292 #: tp/Texinfo/Convert/Plaintext.pm:2468
292 #: tp/Texinfo/Convert/Plaintext.pm:2556
293293 #, fuzzy, perl-brace-format
294294 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
295295 msgstr "{name} en {class}"
296296
297 #: tp/Texinfo/Convert/Plaintext.pm:2471
297 #: tp/Texinfo/Convert/Plaintext.pm:2559
298298 #, perl-brace-format
299299 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
300300 msgstr ""
301301
302 #: tp/Texinfo/Convert/Plaintext.pm:2480
302 #: tp/Texinfo/Convert/Plaintext.pm:2568
303303 #, fuzzy, perl-brace-format
304304 msgid "@tie{ }-- {category}:@*{type}@*{name}"
305305 msgstr "{name} en {class}"
306306
307 #: tp/Texinfo/Convert/Plaintext.pm:2483
307 #: tp/Texinfo/Convert/Plaintext.pm:2571
308308 #, perl-brace-format
309309 msgid "@tie{ }-- {category}: {type} {name}"
310310 msgstr ""
311311
312 #: tp/Texinfo/Convert/Plaintext.pm:2491
312 #: tp/Texinfo/Convert/Plaintext.pm:2579
313313 #, perl-brace-format
314314 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
315315 msgstr ""
316316
317 #: tp/Texinfo/Convert/Plaintext.pm:2497
317 #: tp/Texinfo/Convert/Plaintext.pm:2585
318318 #, fuzzy, perl-brace-format
319319 msgid "@tie{ }-- {category} of {class}: {name}"
320320 msgstr "{name} de {class}"
321321
322 #: tp/Texinfo/Convert/Plaintext.pm:2506
322 #: tp/Texinfo/Convert/Plaintext.pm:2594
323323 #, perl-brace-format
324324 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
325325 msgstr ""
326326
327 #: tp/Texinfo/Convert/Plaintext.pm:2512
327 #: tp/Texinfo/Convert/Plaintext.pm:2600
328328 #, fuzzy, perl-brace-format
329329 msgid "@tie{ }-- {category} on {class}: {name}"
330330 msgstr "{name} en {class}"
331331
332 #: tp/Texinfo/Convert/Plaintext.pm:2527
332 #: tp/Texinfo/Convert/Plaintext.pm:2615
333333 #, fuzzy, perl-brace-format
334334 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
335335 msgstr "{name} en {class}"
336336
337 #: tp/Texinfo/Convert/Plaintext.pm:2531
337 #: tp/Texinfo/Convert/Plaintext.pm:2619
338338 #, perl-brace-format
339339 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
340340 msgstr ""
341341
342 #: tp/Texinfo/Convert/Plaintext.pm:2542
342 #: tp/Texinfo/Convert/Plaintext.pm:2630
343343 #, fuzzy, perl-brace-format
344344 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
345345 msgstr "{name} en {class}"
346346
347 #: tp/Texinfo/Convert/Plaintext.pm:2546
347 #: tp/Texinfo/Convert/Plaintext.pm:2634
348348 #, fuzzy, perl-brace-format
349349 msgid "@tie{ }-- {category} on {class}: {type} {name}"
350350 msgstr "{name} en {class}"
351351
352 #: tp/Texinfo/Convert/Plaintext.pm:2560
352 #: tp/Texinfo/Convert/Plaintext.pm:2648
353353 #, fuzzy, perl-brace-format
354354 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
355355 msgstr "{name} de {class}"
356356
357 #: tp/Texinfo/Convert/Plaintext.pm:2564
357 #: tp/Texinfo/Convert/Plaintext.pm:2652
358358 #, perl-brace-format
359359 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
360360 msgstr ""
361361
362 #: tp/Texinfo/Convert/Plaintext.pm:2575
362 #: tp/Texinfo/Convert/Plaintext.pm:2663
363363 #, fuzzy, perl-brace-format
364364 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
365365 msgstr "{name} de {class}"
366366
367 #: tp/Texinfo/Convert/Plaintext.pm:2579
367 #: tp/Texinfo/Convert/Plaintext.pm:2667
368368 #, fuzzy, perl-brace-format
369369 msgid "@tie{ }-- {category} of {class}: {type} {name}"
370370 msgstr "{name} de {class}"
371371
372 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
372 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
373373 #, perl-brace-format
374374 msgid "@center --- @emph{{author}}\n"
375375 msgstr ""
66 msgstr ""
77 "Project-Id-Version: texinfo 5.0\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1010 "PO-Revision-Date: 2013-01-06 15:26+0100\n"
1111 "Last-Translator: Jean-Charles Malahieude <lilyfan@orange.fr>\n"
1212 "Language-Team: Unknown\n"
5858 msgid "{month} {day}, {year}"
5959 msgstr "le {day} {month} {year}"
6060
61 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
61 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6262 #: tp/Texinfo/Convert/HTML.pm:511
6363 #, perl-brace-format
6464 msgid "Appendix {number} {section_title}"
6565 msgstr "Appendice {number} {section_title}"
6666
67 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
67 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
6868 #: tp/Texinfo/Convert/HTML.pm:517
6969 #, perl-brace-format
7070 msgid "{number} {section_title}"
237237 msgid "see {title_ref}"
238238 msgstr "voir {title_ref}"
239239
240 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
240 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
241241 #, perl-brace-format
242242 msgid "{abbr_or_acronym} ({explanation})"
243243 msgstr "{abbr_or_acronym} ({explanation})"
244244
245 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
245 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
246246 #: tp/Texinfo/Convert/HTML.pm:3526
247247 #, perl-brace-format
248248 msgid "@b{{quotation_arg}:} "
249249 msgstr "@b{{quotation_arg}@ :} "
250250
251 #: tp/Texinfo/Convert/Plaintext.pm:1104
251 #: tp/Texinfo/Convert/Plaintext.pm:1195
252252 msgid "(outside of any node)"
253253 msgstr "(en dehors de tout n@oe{}ud)"
254254
255 #: tp/Texinfo/Convert/Plaintext.pm:1685
255 #: tp/Texinfo/Convert/Plaintext.pm:1773
256256 #, perl-brace-format
257257 msgid "{name} @url{{email}}"
258258 msgstr "{name} @url{{email}}"
259259
260 #: tp/Texinfo/Convert/Plaintext.pm:1688
260 #: tp/Texinfo/Convert/Plaintext.pm:1776
261261 #, perl-brace-format
262262 msgid "@url{{email}}"
263263 msgstr "@url{{email}}"
264264
265 #: tp/Texinfo/Convert/Plaintext.pm:1710
265 #: tp/Texinfo/Convert/Plaintext.pm:1798
266266 #, perl-brace-format
267267 msgid "{text} ({url})"
268268 msgstr "{text} ({url})"
269269
270 #: tp/Texinfo/Convert/Plaintext.pm:1715
270 #: tp/Texinfo/Convert/Plaintext.pm:1803
271271 #, perl-brace-format
272272 msgid "@t{<{url}>}"
273273 msgstr "@t{<{url}>}"
274274
275 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
275 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
276276 #, perl-brace-format
277277 msgid "@{No value for `{value}'@}"
278278 msgstr "@{Aucune valeur pour `{value}'@}"
279279
280 #: tp/Texinfo/Convert/Plaintext.pm:2450
280 #: tp/Texinfo/Convert/Plaintext.pm:2538
281281 #, perl-brace-format
282282 msgid "@tie{ }-- {category}: {name} {arguments}"
283283 msgstr "@tie{ }-- {category}@ : {name} {arguments}"
284284
285 #: tp/Texinfo/Convert/Plaintext.pm:2455
285 #: tp/Texinfo/Convert/Plaintext.pm:2543
286286 #, perl-brace-format
287287 msgid "@tie{ }-- {category}: {name}"
288288 msgstr "@tie{ }-- {category}@ : {name}"
289289
290 #: tp/Texinfo/Convert/Plaintext.pm:2468
290 #: tp/Texinfo/Convert/Plaintext.pm:2556
291291 #, perl-brace-format
292292 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
293293 msgstr "@tie{ }-- {category}@ :@*{type}@*{name} {arguments}"
294294
295 #: tp/Texinfo/Convert/Plaintext.pm:2471
295 #: tp/Texinfo/Convert/Plaintext.pm:2559
296296 #, perl-brace-format
297297 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
298298 msgstr "@tie{ }-- {category}@ : {type} {name} {arguments}"
299299
300 #: tp/Texinfo/Convert/Plaintext.pm:2480
300 #: tp/Texinfo/Convert/Plaintext.pm:2568
301301 #, perl-brace-format
302302 msgid "@tie{ }-- {category}:@*{type}@*{name}"
303303 msgstr "@tie{ }-- {category}@ :@*{type}@*{name}"
304304
305 #: tp/Texinfo/Convert/Plaintext.pm:2483
305 #: tp/Texinfo/Convert/Plaintext.pm:2571
306306 #, perl-brace-format
307307 msgid "@tie{ }-- {category}: {type} {name}"
308308 msgstr "@tie{ }-- {category}@ : {type} {name}"
309309
310 #: tp/Texinfo/Convert/Plaintext.pm:2491
310 #: tp/Texinfo/Convert/Plaintext.pm:2579
311311 #, perl-brace-format
312312 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
313313 msgstr "@tie{ }-- {category} de {class}@ : {name} {arguments}"
314314
315 #: tp/Texinfo/Convert/Plaintext.pm:2497
315 #: tp/Texinfo/Convert/Plaintext.pm:2585
316316 #, perl-brace-format
317317 msgid "@tie{ }-- {category} of {class}: {name}"
318318 msgstr "@tie{ }-- {category} de {class}@ : {name}"
319319
320 #: tp/Texinfo/Convert/Plaintext.pm:2506
320 #: tp/Texinfo/Convert/Plaintext.pm:2594
321321 #, perl-brace-format
322322 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
323323 msgstr "@tie{ }-- {category} de {class}@ : {name} {arguments}"
324324
325 #: tp/Texinfo/Convert/Plaintext.pm:2512
325 #: tp/Texinfo/Convert/Plaintext.pm:2600
326326 #, perl-brace-format
327327 msgid "@tie{ }-- {category} on {class}: {name}"
328328 msgstr "@tie{ }-- {category} de {class}@ : {name}"
329329
330 #: tp/Texinfo/Convert/Plaintext.pm:2527
330 #: tp/Texinfo/Convert/Plaintext.pm:2615
331331 #, perl-brace-format
332332 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
333333 msgstr "@tie{ }-- {category} de {class}@ :@*{type}@*{name} {arguments}"
334334
335 #: tp/Texinfo/Convert/Plaintext.pm:2531
335 #: tp/Texinfo/Convert/Plaintext.pm:2619
336336 #, perl-brace-format
337337 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
338338 msgstr "@tie{ }-- {category} de {class}@ : {type} {name} {arguments}"
339339
340 #: tp/Texinfo/Convert/Plaintext.pm:2542
340 #: tp/Texinfo/Convert/Plaintext.pm:2630
341341 #, perl-brace-format
342342 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
343343 msgstr "@tie{ }-- {category} de {class}@ :@*{type}@*{name}"
344344
345 #: tp/Texinfo/Convert/Plaintext.pm:2546
345 #: tp/Texinfo/Convert/Plaintext.pm:2634
346346 #, perl-brace-format
347347 msgid "@tie{ }-- {category} on {class}: {type} {name}"
348348 msgstr "@tie{ }-- {category} de {class}@ : {type} {name}"
349349
350 #: tp/Texinfo/Convert/Plaintext.pm:2560
350 #: tp/Texinfo/Convert/Plaintext.pm:2648
351351 #, perl-brace-format
352352 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
353353 msgstr "@tie{ }-- {category} de {class}@ :@*{type}@*{name} {arguments}"
354354
355 #: tp/Texinfo/Convert/Plaintext.pm:2564
355 #: tp/Texinfo/Convert/Plaintext.pm:2652
356356 #, perl-brace-format
357357 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
358358 msgstr "@tie{ }-- {category} de {class}@ : {type} {name} {arguments}"
359359
360 #: tp/Texinfo/Convert/Plaintext.pm:2575
360 #: tp/Texinfo/Convert/Plaintext.pm:2663
361361 #, perl-brace-format
362362 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
363363 msgstr "@tie{ }-- {category} de {class}@ :@*{type}@*{name}"
364364
365 #: tp/Texinfo/Convert/Plaintext.pm:2579
365 #: tp/Texinfo/Convert/Plaintext.pm:2667
366366 #, perl-brace-format
367367 msgid "@tie{ }-- {category} of {class}: {type} {name}"
368368 msgstr "@tie{ }-- {category} de {class}@ : {type} {name}"
369369
370 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
370 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
371371 #, perl-brace-format
372372 msgid "@center --- @emph{{author}}\n"
373373 msgstr "@center --- @emph{{author}}\n"
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: texinfo 5.0\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1010 "PO-Revision-Date: 2009-12-27 22:02+0100\n"
1111 "Last-Translator: Harmath Dénes <harmathdenes@gmail.com>\n"
1212 "Language-Team: Unknown\n"
6060 msgid "{month} {day}, {year}"
6161 msgstr ""
6262
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6464 #: tp/Texinfo/Convert/HTML.pm:511
6565 #, perl-brace-format
6666 msgid "Appendix {number} {section_title}"
6767 msgstr ""
6868
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
7070 #: tp/Texinfo/Convert/HTML.pm:517
7171 #, fuzzy, perl-brace-format
7272 msgid "{number} {section_title}"
239239 msgid "see {title_ref}"
240240 msgstr "ld. {title_ref}"
241241
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
243243 #, fuzzy, perl-brace-format
244244 msgid "{abbr_or_acronym} ({explanation})"
245245 msgstr "{acronym_like} ({explanation})"
246246
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
248248 #: tp/Texinfo/Convert/HTML.pm:3526
249249 #, perl-brace-format
250250 msgid "@b{{quotation_arg}:} "
251251 msgstr "@b{{quotation_arg}:} "
252252
253 #: tp/Texinfo/Convert/Plaintext.pm:1104
253 #: tp/Texinfo/Convert/Plaintext.pm:1195
254254 msgid "(outside of any node)"
255255 msgstr "(bármelyik csomóponton kívül)"
256256
257 #: tp/Texinfo/Convert/Plaintext.pm:1685
257 #: tp/Texinfo/Convert/Plaintext.pm:1773
258258 #, perl-brace-format
259259 msgid "{name} @url{{email}}"
260260 msgstr ""
261261
262 #: tp/Texinfo/Convert/Plaintext.pm:1688
262 #: tp/Texinfo/Convert/Plaintext.pm:1776
263263 #, perl-brace-format
264264 msgid "@url{{email}}"
265265 msgstr ""
266266
267 #: tp/Texinfo/Convert/Plaintext.pm:1710
267 #: tp/Texinfo/Convert/Plaintext.pm:1798
268268 #, perl-brace-format
269269 msgid "{text} ({url})"
270270 msgstr ""
271271
272 #: tp/Texinfo/Convert/Plaintext.pm:1715
272 #: tp/Texinfo/Convert/Plaintext.pm:1803
273273 #, perl-brace-format
274274 msgid "@t{<{url}>}"
275275 msgstr ""
276276
277 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
277 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
278278 #, perl-brace-format
279279 msgid "@{No value for `{value}'@}"
280280 msgstr "@{Nincs értéke ennek: `{value}'@}"
281281
282 #: tp/Texinfo/Convert/Plaintext.pm:2450
282 #: tp/Texinfo/Convert/Plaintext.pm:2538
283283 #, perl-brace-format
284284 msgid "@tie{ }-- {category}: {name} {arguments}"
285285 msgstr ""
286286
287 #: tp/Texinfo/Convert/Plaintext.pm:2455
287 #: tp/Texinfo/Convert/Plaintext.pm:2543
288288 #, perl-brace-format
289289 msgid "@tie{ }-- {category}: {name}"
290290 msgstr ""
291291
292 #: tp/Texinfo/Convert/Plaintext.pm:2468
292 #: tp/Texinfo/Convert/Plaintext.pm:2556
293293 #, fuzzy, perl-brace-format
294294 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
295295 msgstr "{name} ezen: {class}"
296296
297 #: tp/Texinfo/Convert/Plaintext.pm:2471
297 #: tp/Texinfo/Convert/Plaintext.pm:2559
298298 #, perl-brace-format
299299 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
300300 msgstr ""
301301
302 #: tp/Texinfo/Convert/Plaintext.pm:2480
302 #: tp/Texinfo/Convert/Plaintext.pm:2568
303303 #, fuzzy, perl-brace-format
304304 msgid "@tie{ }-- {category}:@*{type}@*{name}"
305305 msgstr "{name} ezen: {class}"
306306
307 #: tp/Texinfo/Convert/Plaintext.pm:2483
307 #: tp/Texinfo/Convert/Plaintext.pm:2571
308308 #, perl-brace-format
309309 msgid "@tie{ }-- {category}: {type} {name}"
310310 msgstr ""
311311
312 #: tp/Texinfo/Convert/Plaintext.pm:2491
312 #: tp/Texinfo/Convert/Plaintext.pm:2579
313313 #, perl-brace-format
314314 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
315315 msgstr ""
316316
317 #: tp/Texinfo/Convert/Plaintext.pm:2497
317 #: tp/Texinfo/Convert/Plaintext.pm:2585
318318 #, fuzzy, perl-brace-format
319319 msgid "@tie{ }-- {category} of {class}: {name}"
320320 msgstr "{name} típusa: {class}"
321321
322 #: tp/Texinfo/Convert/Plaintext.pm:2506
322 #: tp/Texinfo/Convert/Plaintext.pm:2594
323323 #, perl-brace-format
324324 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
325325 msgstr ""
326326
327 #: tp/Texinfo/Convert/Plaintext.pm:2512
327 #: tp/Texinfo/Convert/Plaintext.pm:2600
328328 #, fuzzy, perl-brace-format
329329 msgid "@tie{ }-- {category} on {class}: {name}"
330330 msgstr "{name} ezen: {class}"
331331
332 #: tp/Texinfo/Convert/Plaintext.pm:2527
332 #: tp/Texinfo/Convert/Plaintext.pm:2615
333333 #, fuzzy, perl-brace-format
334334 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
335335 msgstr "{name} ezen: {class}"
336336
337 #: tp/Texinfo/Convert/Plaintext.pm:2531
337 #: tp/Texinfo/Convert/Plaintext.pm:2619
338338 #, perl-brace-format
339339 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
340340 msgstr ""
341341
342 #: tp/Texinfo/Convert/Plaintext.pm:2542
342 #: tp/Texinfo/Convert/Plaintext.pm:2630
343343 #, fuzzy, perl-brace-format
344344 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
345345 msgstr "{name} ezen: {class}"
346346
347 #: tp/Texinfo/Convert/Plaintext.pm:2546
347 #: tp/Texinfo/Convert/Plaintext.pm:2634
348348 #, fuzzy, perl-brace-format
349349 msgid "@tie{ }-- {category} on {class}: {type} {name}"
350350 msgstr "{name} ezen: {class}"
351351
352 #: tp/Texinfo/Convert/Plaintext.pm:2560
352 #: tp/Texinfo/Convert/Plaintext.pm:2648
353353 #, fuzzy, perl-brace-format
354354 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
355355 msgstr "{name} típusa: {class}"
356356
357 #: tp/Texinfo/Convert/Plaintext.pm:2564
357 #: tp/Texinfo/Convert/Plaintext.pm:2652
358358 #, perl-brace-format
359359 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
360360 msgstr ""
361361
362 #: tp/Texinfo/Convert/Plaintext.pm:2575
362 #: tp/Texinfo/Convert/Plaintext.pm:2663
363363 #, fuzzy, perl-brace-format
364364 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
365365 msgstr "{name} típusa: {class}"
366366
367 #: tp/Texinfo/Convert/Plaintext.pm:2579
367 #: tp/Texinfo/Convert/Plaintext.pm:2667
368368 #, fuzzy, perl-brace-format
369369 msgid "@tie{ }-- {category} of {class}: {type} {name}"
370370 msgstr "{name} típusa: {class}"
371371
372 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
372 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
373373 #, perl-brace-format
374374 msgid "@center --- @emph{{author}}\n"
375375 msgstr ""
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: texinfo 5.0\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1010 "PO-Revision-Date: 2009-12-27 22:02+0100\n"
1111 "Last-Translator: Federico Bruni <brunology@gmx.com>\n"
1212 "Language-Team: Unknown\n"
6060 msgid "{month} {day}, {year}"
6161 msgstr ""
6262
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6464 #: tp/Texinfo/Convert/HTML.pm:511
6565 #, perl-brace-format
6666 msgid "Appendix {number} {section_title}"
6767 msgstr ""
6868
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
7070 #: tp/Texinfo/Convert/HTML.pm:517
7171 #, fuzzy, perl-brace-format
7272 msgid "{number} {section_title}"
239239 msgid "see {title_ref}"
240240 msgstr "vedi {title_ref}"
241241
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
243243 #, fuzzy, perl-brace-format
244244 msgid "{abbr_or_acronym} ({explanation})"
245245 msgstr "{acronym_like} ({explanation})"
246246
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
248248 #: tp/Texinfo/Convert/HTML.pm:3526
249249 #, perl-brace-format
250250 msgid "@b{{quotation_arg}:} "
251251 msgstr "@b{{quotation_arg}:} "
252252
253 #: tp/Texinfo/Convert/Plaintext.pm:1104
253 #: tp/Texinfo/Convert/Plaintext.pm:1195
254254 msgid "(outside of any node)"
255255 msgstr "(fuori da qualsiasi nodo)"
256256
257 #: tp/Texinfo/Convert/Plaintext.pm:1685
257 #: tp/Texinfo/Convert/Plaintext.pm:1773
258258 #, perl-brace-format
259259 msgid "{name} @url{{email}}"
260260 msgstr ""
261261
262 #: tp/Texinfo/Convert/Plaintext.pm:1688
262 #: tp/Texinfo/Convert/Plaintext.pm:1776
263263 #, perl-brace-format
264264 msgid "@url{{email}}"
265265 msgstr ""
266266
267 #: tp/Texinfo/Convert/Plaintext.pm:1710
267 #: tp/Texinfo/Convert/Plaintext.pm:1798
268268 #, perl-brace-format
269269 msgid "{text} ({url})"
270270 msgstr ""
271271
272 #: tp/Texinfo/Convert/Plaintext.pm:1715
272 #: tp/Texinfo/Convert/Plaintext.pm:1803
273273 #, perl-brace-format
274274 msgid "@t{<{url}>}"
275275 msgstr ""
276276
277 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
277 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
278278 #, perl-brace-format
279279 msgid "@{No value for `{value}'@}"
280280 msgstr "@{Nessun valore per `{value}'@}"
281281
282 #: tp/Texinfo/Convert/Plaintext.pm:2450
282 #: tp/Texinfo/Convert/Plaintext.pm:2538
283283 #, perl-brace-format
284284 msgid "@tie{ }-- {category}: {name} {arguments}"
285285 msgstr ""
286286
287 #: tp/Texinfo/Convert/Plaintext.pm:2455
287 #: tp/Texinfo/Convert/Plaintext.pm:2543
288288 #, perl-brace-format
289289 msgid "@tie{ }-- {category}: {name}"
290290 msgstr ""
291291
292 #: tp/Texinfo/Convert/Plaintext.pm:2468
292 #: tp/Texinfo/Convert/Plaintext.pm:2556
293293 #, fuzzy, perl-brace-format
294294 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
295295 msgstr "{name} in {class}"
296296
297 #: tp/Texinfo/Convert/Plaintext.pm:2471
297 #: tp/Texinfo/Convert/Plaintext.pm:2559
298298 #, perl-brace-format
299299 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
300300 msgstr ""
301301
302 #: tp/Texinfo/Convert/Plaintext.pm:2480
302 #: tp/Texinfo/Convert/Plaintext.pm:2568
303303 #, fuzzy, perl-brace-format
304304 msgid "@tie{ }-- {category}:@*{type}@*{name}"
305305 msgstr "{name} in {class}"
306306
307 #: tp/Texinfo/Convert/Plaintext.pm:2483
307 #: tp/Texinfo/Convert/Plaintext.pm:2571
308308 #, perl-brace-format
309309 msgid "@tie{ }-- {category}: {type} {name}"
310310 msgstr ""
311311
312 #: tp/Texinfo/Convert/Plaintext.pm:2491
312 #: tp/Texinfo/Convert/Plaintext.pm:2579
313313 #, perl-brace-format
314314 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
315315 msgstr ""
316316
317 #: tp/Texinfo/Convert/Plaintext.pm:2497
317 #: tp/Texinfo/Convert/Plaintext.pm:2585
318318 #, fuzzy, perl-brace-format
319319 msgid "@tie{ }-- {category} of {class}: {name}"
320320 msgstr "{name} di {class}"
321321
322 #: tp/Texinfo/Convert/Plaintext.pm:2506
322 #: tp/Texinfo/Convert/Plaintext.pm:2594
323323 #, perl-brace-format
324324 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
325325 msgstr ""
326326
327 #: tp/Texinfo/Convert/Plaintext.pm:2512
327 #: tp/Texinfo/Convert/Plaintext.pm:2600
328328 #, fuzzy, perl-brace-format
329329 msgid "@tie{ }-- {category} on {class}: {name}"
330330 msgstr "{name} in {class}"
331331
332 #: tp/Texinfo/Convert/Plaintext.pm:2527
332 #: tp/Texinfo/Convert/Plaintext.pm:2615
333333 #, fuzzy, perl-brace-format
334334 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
335335 msgstr "{name} in {class}"
336336
337 #: tp/Texinfo/Convert/Plaintext.pm:2531
337 #: tp/Texinfo/Convert/Plaintext.pm:2619
338338 #, perl-brace-format
339339 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
340340 msgstr ""
341341
342 #: tp/Texinfo/Convert/Plaintext.pm:2542
342 #: tp/Texinfo/Convert/Plaintext.pm:2630
343343 #, fuzzy, perl-brace-format
344344 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
345345 msgstr "{name} in {class}"
346346
347 #: tp/Texinfo/Convert/Plaintext.pm:2546
347 #: tp/Texinfo/Convert/Plaintext.pm:2634
348348 #, fuzzy, perl-brace-format
349349 msgid "@tie{ }-- {category} on {class}: {type} {name}"
350350 msgstr "{name} in {class}"
351351
352 #: tp/Texinfo/Convert/Plaintext.pm:2560
352 #: tp/Texinfo/Convert/Plaintext.pm:2648
353353 #, fuzzy, perl-brace-format
354354 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
355355 msgstr "{name} di {class}"
356356
357 #: tp/Texinfo/Convert/Plaintext.pm:2564
357 #: tp/Texinfo/Convert/Plaintext.pm:2652
358358 #, perl-brace-format
359359 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
360360 msgstr ""
361361
362 #: tp/Texinfo/Convert/Plaintext.pm:2575
362 #: tp/Texinfo/Convert/Plaintext.pm:2663
363363 #, fuzzy, perl-brace-format
364364 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
365365 msgstr "{name} di {class}"
366366
367 #: tp/Texinfo/Convert/Plaintext.pm:2579
367 #: tp/Texinfo/Convert/Plaintext.pm:2667
368368 #, fuzzy, perl-brace-format
369369 msgid "@tie{ }-- {category} of {class}: {type} {name}"
370370 msgstr "{name} di {class}"
371371
372 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
372 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
373373 #, perl-brace-format
374374 msgid "@center --- @emph{{author}}\n"
375375 msgstr ""
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: texinfo_document-4.13.93\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1010 "PO-Revision-Date: 2013-01-30 10:57+0100\n"
1111 "Last-Translator: Benno Schulenberg <benno@vertaalt.nl>\n"
1212 "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
6060 msgid "{month} {day}, {year}"
6161 msgstr "{day} {month} {year}"
6262
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6464 #: tp/Texinfo/Convert/HTML.pm:511
6565 #, perl-brace-format
6666 msgid "Appendix {number} {section_title}"
6767 msgstr "Appendix {number} {section_title}"
6868
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
7070 #: tp/Texinfo/Convert/HTML.pm:517
7171 #, perl-brace-format
7272 msgid "{number} {section_title}"
239239 msgid "see {title_ref}"
240240 msgstr "zie {title_ref}"
241241
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
243243 #, perl-brace-format
244244 msgid "{abbr_or_acronym} ({explanation})"
245245 msgstr "{abbr_or_acronym} ({explanation})"
246246
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
248248 #: tp/Texinfo/Convert/HTML.pm:3526
249249 #, perl-brace-format
250250 msgid "@b{{quotation_arg}:} "
251251 msgstr "@b{{quotation_arg}:} "
252252
253 #: tp/Texinfo/Convert/Plaintext.pm:1104
253 #: tp/Texinfo/Convert/Plaintext.pm:1195
254254 msgid "(outside of any node)"
255255 msgstr "(buiten alle pagina's)"
256256
257 #: tp/Texinfo/Convert/Plaintext.pm:1685
257 #: tp/Texinfo/Convert/Plaintext.pm:1773
258258 #, perl-brace-format
259259 msgid "{name} @url{{email}}"
260260 msgstr "{name} @url{{email}}"
261261
262 #: tp/Texinfo/Convert/Plaintext.pm:1688
262 #: tp/Texinfo/Convert/Plaintext.pm:1776
263263 #, perl-brace-format
264264 msgid "@url{{email}}"
265265 msgstr "@url{{email}}"
266266
267 #: tp/Texinfo/Convert/Plaintext.pm:1710
267 #: tp/Texinfo/Convert/Plaintext.pm:1798
268268 #, perl-brace-format
269269 msgid "{text} ({url})"
270270 msgstr "{text} ({url})"
271271
272 #: tp/Texinfo/Convert/Plaintext.pm:1715
272 #: tp/Texinfo/Convert/Plaintext.pm:1803
273273 #, perl-brace-format
274274 msgid "@t{<{url}>}"
275275 msgstr "@t{<{url}>}"
276276
277 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
277 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
278278 #, perl-brace-format
279279 msgid "@{No value for `{value}'@}"
280280 msgstr "@{Geen waarde voor '{value}'@}"
281281
282 #: tp/Texinfo/Convert/Plaintext.pm:2450
282 #: tp/Texinfo/Convert/Plaintext.pm:2538
283283 #, perl-brace-format
284284 msgid "@tie{ }-- {category}: {name} {arguments}"
285285 msgstr "@tie{ }-- {category}: {name} {arguments}"
286286
287 #: tp/Texinfo/Convert/Plaintext.pm:2455
287 #: tp/Texinfo/Convert/Plaintext.pm:2543
288288 #, perl-brace-format
289289 msgid "@tie{ }-- {category}: {name}"
290290 msgstr "@tie{ }-- {category}: {name}"
291291
292 #: tp/Texinfo/Convert/Plaintext.pm:2468
292 #: tp/Texinfo/Convert/Plaintext.pm:2556
293293 #, perl-brace-format
294294 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
295295 msgstr "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
296296
297 #: tp/Texinfo/Convert/Plaintext.pm:2471
297 #: tp/Texinfo/Convert/Plaintext.pm:2559
298298 #, perl-brace-format
299299 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
300300 msgstr "@tie{ }-- {category}: {type} {name} {arguments}"
301301
302 #: tp/Texinfo/Convert/Plaintext.pm:2480
302 #: tp/Texinfo/Convert/Plaintext.pm:2568
303303 #, perl-brace-format
304304 msgid "@tie{ }-- {category}:@*{type}@*{name}"
305305 msgstr "@tie{ }-- {category}:@*{type}@*{name}"
306306
307 #: tp/Texinfo/Convert/Plaintext.pm:2483
307 #: tp/Texinfo/Convert/Plaintext.pm:2571
308308 #, perl-brace-format
309309 msgid "@tie{ }-- {category}: {type} {name}"
310310 msgstr "@tie{ }-- {category}: {type} {name}"
311311
312 #: tp/Texinfo/Convert/Plaintext.pm:2491
312 #: tp/Texinfo/Convert/Plaintext.pm:2579
313313 #, perl-brace-format
314314 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
315315 msgstr "@tie{ }-- {category} van {class}: {name} {arguments}"
316316
317 #: tp/Texinfo/Convert/Plaintext.pm:2497
317 #: tp/Texinfo/Convert/Plaintext.pm:2585
318318 #, perl-brace-format
319319 msgid "@tie{ }-- {category} of {class}: {name}"
320320 msgstr "@tie{ }-- {category} van {class}: {name}"
321321
322 #: tp/Texinfo/Convert/Plaintext.pm:2506
322 #: tp/Texinfo/Convert/Plaintext.pm:2594
323323 #, perl-brace-format
324324 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
325325 msgstr "@tie{ }-- {category} over {class}: {name} {arguments}"
326326
327 #: tp/Texinfo/Convert/Plaintext.pm:2512
327 #: tp/Texinfo/Convert/Plaintext.pm:2600
328328 #, perl-brace-format
329329 msgid "@tie{ }-- {category} on {class}: {name}"
330330 msgstr "@tie{ }-- {category} over {class}: {name}"
331331
332 #: tp/Texinfo/Convert/Plaintext.pm:2527
332 #: tp/Texinfo/Convert/Plaintext.pm:2615
333333 #, perl-brace-format
334334 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
335335 msgstr "@tie{ }-- {category} over {class}:@*{type}@*{name} {arguments}"
336336
337 #: tp/Texinfo/Convert/Plaintext.pm:2531
337 #: tp/Texinfo/Convert/Plaintext.pm:2619
338338 #, perl-brace-format
339339 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
340340 msgstr "@tie{ }-- {category} over {class}: {type} {name} {arguments}"
341341
342 #: tp/Texinfo/Convert/Plaintext.pm:2542
342 #: tp/Texinfo/Convert/Plaintext.pm:2630
343343 #, perl-brace-format
344344 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
345345 msgstr "@tie{ }-- {category} over {class}:@*{type}@*{name}"
346346
347 #: tp/Texinfo/Convert/Plaintext.pm:2546
347 #: tp/Texinfo/Convert/Plaintext.pm:2634
348348 #, perl-brace-format
349349 msgid "@tie{ }-- {category} on {class}: {type} {name}"
350350 msgstr "@tie{ }-- {category} over {class}: {type} {name}"
351351
352 #: tp/Texinfo/Convert/Plaintext.pm:2560
352 #: tp/Texinfo/Convert/Plaintext.pm:2648
353353 #, perl-brace-format
354354 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
355355 msgstr "@tie{ }-- {category} van {class}:@*{type}@*{name} {arguments}"
356356
357 #: tp/Texinfo/Convert/Plaintext.pm:2564
357 #: tp/Texinfo/Convert/Plaintext.pm:2652
358358 #, perl-brace-format
359359 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
360360 msgstr "@tie{ }-- {category} van {class}: {type} {name} {arguments}"
361361
362 #: tp/Texinfo/Convert/Plaintext.pm:2575
362 #: tp/Texinfo/Convert/Plaintext.pm:2663
363363 #, perl-brace-format
364364 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
365365 msgstr "@tie{ }-- {category} van {class}:@*{type}@*{name}"
366366
367 #: tp/Texinfo/Convert/Plaintext.pm:2579
367 #: tp/Texinfo/Convert/Plaintext.pm:2667
368368 #, perl-brace-format
369369 msgid "@tie{ }-- {category} of {class}: {type} {name}"
370370 msgstr "@tie{ }-- {category} van{class}: {type} {name}"
371371
372 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
372 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
373373 #, perl-brace-format
374374 msgid "@center --- @emph{{author}}\n"
375375 msgstr "@center --- @emph{{author}}\n"
66 msgstr ""
77 "Project-Id-Version: texinfo 5.0\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1010 "PO-Revision-Date: 2001-01-01\n"
1111 "Last-Translator: Unknown\n"
1212 "Language-Team: Unknown\n"
5858 msgid "{month} {day}, {year}"
5959 msgstr ""
6060
61 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
61 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6262 #: tp/Texinfo/Convert/HTML.pm:511
6363 #, perl-brace-format
6464 msgid "Appendix {number} {section_title}"
6565 msgstr ""
6666
67 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
67 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
6868 #: tp/Texinfo/Convert/HTML.pm:517
6969 #, perl-brace-format
7070 msgid "{number} {section_title}"
237237 msgid "see {title_ref}"
238238 msgstr ""
239239
240 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
240 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
241241 #, perl-brace-format
242242 msgid "{abbr_or_acronym} ({explanation})"
243243 msgstr ""
244244
245 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
245 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
246246 #: tp/Texinfo/Convert/HTML.pm:3526
247247 #, perl-brace-format
248248 msgid "@b{{quotation_arg}:} "
249249 msgstr ""
250250
251 #: tp/Texinfo/Convert/Plaintext.pm:1104
251 #: tp/Texinfo/Convert/Plaintext.pm:1195
252252 msgid "(outside of any node)"
253253 msgstr ""
254254
255 #: tp/Texinfo/Convert/Plaintext.pm:1685
255 #: tp/Texinfo/Convert/Plaintext.pm:1773
256256 #, perl-brace-format
257257 msgid "{name} @url{{email}}"
258258 msgstr ""
259259
260 #: tp/Texinfo/Convert/Plaintext.pm:1688
260 #: tp/Texinfo/Convert/Plaintext.pm:1776
261261 #, perl-brace-format
262262 msgid "@url{{email}}"
263263 msgstr ""
264264
265 #: tp/Texinfo/Convert/Plaintext.pm:1710
265 #: tp/Texinfo/Convert/Plaintext.pm:1798
266266 #, perl-brace-format
267267 msgid "{text} ({url})"
268268 msgstr ""
269269
270 #: tp/Texinfo/Convert/Plaintext.pm:1715
270 #: tp/Texinfo/Convert/Plaintext.pm:1803
271271 #, perl-brace-format
272272 msgid "@t{<{url}>}"
273273 msgstr ""
274274
275 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
275 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
276276 #, perl-brace-format
277277 msgid "@{No value for `{value}'@}"
278278 msgstr ""
279279
280 #: tp/Texinfo/Convert/Plaintext.pm:2450
280 #: tp/Texinfo/Convert/Plaintext.pm:2538
281281 #, perl-brace-format
282282 msgid "@tie{ }-- {category}: {name} {arguments}"
283283 msgstr ""
284284
285 #: tp/Texinfo/Convert/Plaintext.pm:2455
285 #: tp/Texinfo/Convert/Plaintext.pm:2543
286286 #, perl-brace-format
287287 msgid "@tie{ }-- {category}: {name}"
288288 msgstr ""
289289
290 #: tp/Texinfo/Convert/Plaintext.pm:2468
290 #: tp/Texinfo/Convert/Plaintext.pm:2556
291291 #, perl-brace-format
292292 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
293293 msgstr ""
294294
295 #: tp/Texinfo/Convert/Plaintext.pm:2471
295 #: tp/Texinfo/Convert/Plaintext.pm:2559
296296 #, perl-brace-format
297297 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
298298 msgstr ""
299299
300 #: tp/Texinfo/Convert/Plaintext.pm:2480
300 #: tp/Texinfo/Convert/Plaintext.pm:2568
301301 #, perl-brace-format
302302 msgid "@tie{ }-- {category}:@*{type}@*{name}"
303303 msgstr ""
304304
305 #: tp/Texinfo/Convert/Plaintext.pm:2483
305 #: tp/Texinfo/Convert/Plaintext.pm:2571
306306 #, perl-brace-format
307307 msgid "@tie{ }-- {category}: {type} {name}"
308308 msgstr ""
309309
310 #: tp/Texinfo/Convert/Plaintext.pm:2491
310 #: tp/Texinfo/Convert/Plaintext.pm:2579
311311 #, perl-brace-format
312312 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
313313 msgstr ""
314314
315 #: tp/Texinfo/Convert/Plaintext.pm:2497
315 #: tp/Texinfo/Convert/Plaintext.pm:2585
316316 #, perl-brace-format
317317 msgid "@tie{ }-- {category} of {class}: {name}"
318318 msgstr ""
319319
320 #: tp/Texinfo/Convert/Plaintext.pm:2506
320 #: tp/Texinfo/Convert/Plaintext.pm:2594
321321 #, perl-brace-format
322322 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
323323 msgstr ""
324324
325 #: tp/Texinfo/Convert/Plaintext.pm:2512
325 #: tp/Texinfo/Convert/Plaintext.pm:2600
326326 #, perl-brace-format
327327 msgid "@tie{ }-- {category} on {class}: {name}"
328328 msgstr ""
329329
330 #: tp/Texinfo/Convert/Plaintext.pm:2527
330 #: tp/Texinfo/Convert/Plaintext.pm:2615
331331 #, perl-brace-format
332332 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
333333 msgstr ""
334334
335 #: tp/Texinfo/Convert/Plaintext.pm:2531
335 #: tp/Texinfo/Convert/Plaintext.pm:2619
336336 #, perl-brace-format
337337 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
338338 msgstr ""
339339
340 #: tp/Texinfo/Convert/Plaintext.pm:2542
340 #: tp/Texinfo/Convert/Plaintext.pm:2630
341341 #, perl-brace-format
342342 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
343343 msgstr ""
344344
345 #: tp/Texinfo/Convert/Plaintext.pm:2546
345 #: tp/Texinfo/Convert/Plaintext.pm:2634
346346 #, perl-brace-format
347347 msgid "@tie{ }-- {category} on {class}: {type} {name}"
348348 msgstr ""
349349
350 #: tp/Texinfo/Convert/Plaintext.pm:2560
350 #: tp/Texinfo/Convert/Plaintext.pm:2648
351351 #, perl-brace-format
352352 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
353353 msgstr ""
354354
355 #: tp/Texinfo/Convert/Plaintext.pm:2564
355 #: tp/Texinfo/Convert/Plaintext.pm:2652
356356 #, perl-brace-format
357357 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
358358 msgstr ""
359359
360 #: tp/Texinfo/Convert/Plaintext.pm:2575
360 #: tp/Texinfo/Convert/Plaintext.pm:2663
361361 #, perl-brace-format
362362 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
363363 msgstr ""
364364
365 #: tp/Texinfo/Convert/Plaintext.pm:2579
365 #: tp/Texinfo/Convert/Plaintext.pm:2667
366366 #, perl-brace-format
367367 msgid "@tie{ }-- {category} of {class}: {type} {name}"
368368 msgstr ""
369369
370 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
370 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
371371 #, perl-brace-format
372372 msgid "@center --- @emph{{author}}\n"
373373 msgstr ""
Binary diff not shown
66 msgstr ""
77 "Project-Id-Version: texinfo_document 4.13.93\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1010 "PO-Revision-Date: 2013-01-30 18:11+0100\n"
1111 "Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>\n"
1212 "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
5858 msgid "{month} {day}, {year}"
5959 msgstr "{day} {month} {year}"
6060
61 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
61 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6262 #: tp/Texinfo/Convert/HTML.pm:511
6363 #, perl-brace-format
6464 msgid "Appendix {number} {section_title}"
6565 msgstr "Załącznik {number} {section_title}"
6666
67 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
67 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
6868 #: tp/Texinfo/Convert/HTML.pm:517
6969 #, perl-brace-format
7070 msgid "{number} {section_title}"
237237 msgid "see {title_ref}"
238238 msgstr "p. {title_ref}"
239239
240 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
240 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
241241 #, perl-brace-format
242242 msgid "{abbr_or_acronym} ({explanation})"
243243 msgstr "{abbr_or_acronym} ({explanation})"
244244
245 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
245 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
246246 #: tp/Texinfo/Convert/HTML.pm:3526
247247 #, perl-brace-format
248248 msgid "@b{{quotation_arg}:} "
249249 msgstr "@b{{quotation_arg}:} "
250250
251 #: tp/Texinfo/Convert/Plaintext.pm:1104
251 #: tp/Texinfo/Convert/Plaintext.pm:1195
252252 msgid "(outside of any node)"
253253 msgstr "(poza węzłem)"
254254
255 #: tp/Texinfo/Convert/Plaintext.pm:1685
255 #: tp/Texinfo/Convert/Plaintext.pm:1773
256256 #, perl-brace-format
257257 msgid "{name} @url{{email}}"
258258 msgstr "{name} @url{{email}}"
259259
260 #: tp/Texinfo/Convert/Plaintext.pm:1688
260 #: tp/Texinfo/Convert/Plaintext.pm:1776
261261 #, perl-brace-format
262262 msgid "@url{{email}}"
263263 msgstr "@url{{email}}"
264264
265 #: tp/Texinfo/Convert/Plaintext.pm:1710
265 #: tp/Texinfo/Convert/Plaintext.pm:1798
266266 #, perl-brace-format
267267 msgid "{text} ({url})"
268268 msgstr "{text} ({url})"
269269
270 #: tp/Texinfo/Convert/Plaintext.pm:1715
270 #: tp/Texinfo/Convert/Plaintext.pm:1803
271271 #, perl-brace-format
272272 msgid "@t{<{url}>}"
273273 msgstr "@t{<{url}>}"
274274
275 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
275 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
276276 #, perl-brace-format
277277 msgid "@{No value for `{value}'@}"
278278 msgstr "@{Brak wartości dla `{value}'@}"
279279
280 #: tp/Texinfo/Convert/Plaintext.pm:2450
280 #: tp/Texinfo/Convert/Plaintext.pm:2538
281281 #, perl-brace-format
282282 msgid "@tie{ }-- {category}: {name} {arguments}"
283283 msgstr "@tie{ }- {category}: {name} {arguments}"
284284
285 #: tp/Texinfo/Convert/Plaintext.pm:2455
285 #: tp/Texinfo/Convert/Plaintext.pm:2543
286286 #, perl-brace-format
287287 msgid "@tie{ }-- {category}: {name}"
288288 msgstr "@tie{ }- {category}: {name}"
289289
290 #: tp/Texinfo/Convert/Plaintext.pm:2468
290 #: tp/Texinfo/Convert/Plaintext.pm:2556
291291 #, perl-brace-format
292292 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
293293 msgstr "@tie{ }- {category}:@*{type}@*{name} {arguments}"
294294
295 #: tp/Texinfo/Convert/Plaintext.pm:2471
295 #: tp/Texinfo/Convert/Plaintext.pm:2559
296296 #, perl-brace-format
297297 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
298298 msgstr "@tie{ }- {category}: {type} {name} {arguments}"
299299
300 #: tp/Texinfo/Convert/Plaintext.pm:2480
300 #: tp/Texinfo/Convert/Plaintext.pm:2568
301301 #, perl-brace-format
302302 msgid "@tie{ }-- {category}:@*{type}@*{name}"
303303 msgstr "@tie{ }- {category}:@*{type}@*{name}"
304304
305 #: tp/Texinfo/Convert/Plaintext.pm:2483
305 #: tp/Texinfo/Convert/Plaintext.pm:2571
306306 #, perl-brace-format
307307 msgid "@tie{ }-- {category}: {type} {name}"
308308 msgstr "@tie{ }- {category}: {type} {name}"
309309
310 #: tp/Texinfo/Convert/Plaintext.pm:2491
310 #: tp/Texinfo/Convert/Plaintext.pm:2579
311311 #, perl-brace-format
312312 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
313313 msgstr "@tie{ }- {category} klasy {class}: {name} {arguments}"
314314
315 #: tp/Texinfo/Convert/Plaintext.pm:2497
315 #: tp/Texinfo/Convert/Plaintext.pm:2585
316316 #, perl-brace-format
317317 msgid "@tie{ }-- {category} of {class}: {name}"
318318 msgstr "@tie{ }- {category} klasy {class}: {name}"
319319
320 #: tp/Texinfo/Convert/Plaintext.pm:2506
320 #: tp/Texinfo/Convert/Plaintext.pm:2594
321321 #, perl-brace-format
322322 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
323323 msgstr "@tie{ }- {category} dla klasy {class}: {name} {arguments}"
324324
325 #: tp/Texinfo/Convert/Plaintext.pm:2512
325 #: tp/Texinfo/Convert/Plaintext.pm:2600
326326 #, perl-brace-format
327327 msgid "@tie{ }-- {category} on {class}: {name}"
328328 msgstr "@tie{ }- {category} dla klasy {class}: {name}"
329329
330 #: tp/Texinfo/Convert/Plaintext.pm:2527
330 #: tp/Texinfo/Convert/Plaintext.pm:2615
331331 #, perl-brace-format
332332 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
333333 msgstr "@tie{ }- {category} dla klasy {class}:@*{type}@*{name} {arguments}"
334334
335 #: tp/Texinfo/Convert/Plaintext.pm:2531
335 #: tp/Texinfo/Convert/Plaintext.pm:2619
336336 #, perl-brace-format
337337 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
338338 msgstr "@tie{ }- {category} dla klasy {class}: {type} {name} {arguments}"
339339
340 #: tp/Texinfo/Convert/Plaintext.pm:2542
340 #: tp/Texinfo/Convert/Plaintext.pm:2630
341341 #, perl-brace-format
342342 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
343343 msgstr "@tie{ }- {category} dla klasy {class}:@*{type}@*{name}"
344344
345 #: tp/Texinfo/Convert/Plaintext.pm:2546
345 #: tp/Texinfo/Convert/Plaintext.pm:2634
346346 #, perl-brace-format
347347 msgid "@tie{ }-- {category} on {class}: {type} {name}"
348348 msgstr "@tie{ }- {category} dla klasy {class}: {type} {name}"
349349
350 #: tp/Texinfo/Convert/Plaintext.pm:2560
350 #: tp/Texinfo/Convert/Plaintext.pm:2648
351351 #, perl-brace-format
352352 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
353353 msgstr "@tie{ }- {category} klasy {class}:@*{type}@*{name} {arguments}"
354354
355 #: tp/Texinfo/Convert/Plaintext.pm:2564
355 #: tp/Texinfo/Convert/Plaintext.pm:2652
356356 #, perl-brace-format
357357 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
358358 msgstr "@tie{ }- {category} klasy {class}: {type} {name} {arguments}"
359359
360 #: tp/Texinfo/Convert/Plaintext.pm:2575
360 #: tp/Texinfo/Convert/Plaintext.pm:2663
361361 #, perl-brace-format
362362 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
363363 msgstr "@tie{ }- {category} klasy {class}:@*{type}@*{name}"
364364
365 #: tp/Texinfo/Convert/Plaintext.pm:2579
365 #: tp/Texinfo/Convert/Plaintext.pm:2667
366366 #, perl-brace-format
367367 msgid "@tie{ }-- {category} of {class}: {type} {name}"
368368 msgstr "@tie{ }- {category} klasy {class}: {type} {name}"
369369
370 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
370 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
371371 #, perl-brace-format
372372 msgid "@center --- @emph{{author}}\n"
373373 msgstr "@center - @emph{{author}}\n"
66 msgstr ""
77 "Project-Id-Version: texinfo 5.0\n"
88 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
9 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
9 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1010 "PO-Revision-Date: 2006-01-09\n"
1111 "Last-Translator: Jorge Barros de Abreu <ficmatin01@solar.com.br>\n"
1212 "Language-Team: Unknown\n"
6060 msgid "{month} {day}, {year}"
6161 msgstr "{day} de {month} de {year}"
6262
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
63 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6464 #: tp/Texinfo/Convert/HTML.pm:511
6565 #, perl-brace-format
6666 msgid "Appendix {number} {section_title}"
6767 msgstr ""
6868
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
69 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
7070 #: tp/Texinfo/Convert/HTML.pm:517
7171 #, perl-brace-format
7272 msgid "{number} {section_title}"
239239 msgid "see {title_ref}"
240240 msgstr ""
241241
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
242 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
243243 #, perl-brace-format
244244 msgid "{abbr_or_acronym} ({explanation})"
245245 msgstr ""
246246
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
247 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
248248 #: tp/Texinfo/Convert/HTML.pm:3526
249249 #, perl-brace-format
250250 msgid "@b{{quotation_arg}:} "
251251 msgstr ""
252252
253 #: tp/Texinfo/Convert/Plaintext.pm:1104
253 #: tp/Texinfo/Convert/Plaintext.pm:1195
254254 msgid "(outside of any node)"
255255 msgstr ""
256256
257 #: tp/Texinfo/Convert/Plaintext.pm:1685
257 #: tp/Texinfo/Convert/Plaintext.pm:1773
258258 #, perl-brace-format
259259 msgid "{name} @url{{email}}"
260260 msgstr ""
261261
262 #: tp/Texinfo/Convert/Plaintext.pm:1688
262 #: tp/Texinfo/Convert/Plaintext.pm:1776
263263 #, perl-brace-format
264264 msgid "@url{{email}}"
265265 msgstr ""
266266
267 #: tp/Texinfo/Convert/Plaintext.pm:1710
267 #: tp/Texinfo/Convert/Plaintext.pm:1798
268268 #, perl-brace-format
269269 msgid "{text} ({url})"
270270 msgstr ""
271271
272 #: tp/Texinfo/Convert/Plaintext.pm:1715
272 #: tp/Texinfo/Convert/Plaintext.pm:1803
273273 #, perl-brace-format
274274 msgid "@t{<{url}>}"
275275 msgstr ""
276276
277 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
277 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
278278 #, perl-brace-format
279279 msgid "@{No value for `{value}'@}"
280280 msgstr ""
281281
282 #: tp/Texinfo/Convert/Plaintext.pm:2450
282 #: tp/Texinfo/Convert/Plaintext.pm:2538
283283 #, perl-brace-format
284284 msgid "@tie{ }-- {category}: {name} {arguments}"
285285 msgstr ""
286286
287 #: tp/Texinfo/Convert/Plaintext.pm:2455
287 #: tp/Texinfo/Convert/Plaintext.pm:2543
288288 #, perl-brace-format
289289 msgid "@tie{ }-- {category}: {name}"
290290 msgstr ""
291291
292 #: tp/Texinfo/Convert/Plaintext.pm:2468
292 #: tp/Texinfo/Convert/Plaintext.pm:2556
293293 #, fuzzy, perl-brace-format
294294 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
295295 msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}"
296296
297 #: tp/Texinfo/Convert/Plaintext.pm:2471
297 #: tp/Texinfo/Convert/Plaintext.pm:2559
298298 #, perl-brace-format
299299 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
300300 msgstr ""
301301
302 #: tp/Texinfo/Convert/Plaintext.pm:2480
302 #: tp/Texinfo/Convert/Plaintext.pm:2568
303303 #, fuzzy, perl-brace-format
304304 msgid "@tie{ }-- {category}:@*{type}@*{name}"
305305 msgstr "@tie{ }-- {category} na {class}: {type} {name}"
306306
307 #: tp/Texinfo/Convert/Plaintext.pm:2483
307 #: tp/Texinfo/Convert/Plaintext.pm:2571
308308 #, perl-brace-format
309309 msgid "@tie{ }-- {category}: {type} {name}"
310310 msgstr ""
311311
312 #: tp/Texinfo/Convert/Plaintext.pm:2491
312 #: tp/Texinfo/Convert/Plaintext.pm:2579
313313 #, perl-brace-format
314314 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
315315 msgstr "@tie{ }-- {category} da {class}: {name} {arguments}"
316316
317 #: tp/Texinfo/Convert/Plaintext.pm:2497
317 #: tp/Texinfo/Convert/Plaintext.pm:2585
318318 #, perl-brace-format
319319 msgid "@tie{ }-- {category} of {class}: {name}"
320320 msgstr "@tie{ }-- {category} da {class}: {name}"
321321
322 #: tp/Texinfo/Convert/Plaintext.pm:2506
322 #: tp/Texinfo/Convert/Plaintext.pm:2594
323323 #, perl-brace-format
324324 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
325325 msgstr "@tie{ }-- {category} na {class}: {name} {arguments}"
326326
327 #: tp/Texinfo/Convert/Plaintext.pm:2512
327 #: tp/Texinfo/Convert/Plaintext.pm:2600
328328 #, perl-brace-format
329329 msgid "@tie{ }-- {category} on {class}: {name}"
330330 msgstr "@tie{ }-- {category} na {class}: {name}"
331331
332 #: tp/Texinfo/Convert/Plaintext.pm:2527
332 #: tp/Texinfo/Convert/Plaintext.pm:2615
333333 #, fuzzy, perl-brace-format
334334 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
335335 msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}"
336336
337 #: tp/Texinfo/Convert/Plaintext.pm:2531
337 #: tp/Texinfo/Convert/Plaintext.pm:2619
338338 #, perl-brace-format
339339 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
340340 msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}"
341341
342 #: tp/Texinfo/Convert/Plaintext.pm:2542
342 #: tp/Texinfo/Convert/Plaintext.pm:2630
343343 #, fuzzy, perl-brace-format
344344 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
345345 msgstr "@tie{ }-- {category} na {class}: {type} {name}"
346346
347 #: tp/Texinfo/Convert/Plaintext.pm:2546
347 #: tp/Texinfo/Convert/Plaintext.pm:2634
348348 #, perl-brace-format
349349 msgid "@tie{ }-- {category} on {class}: {type} {name}"
350350 msgstr "@tie{ }-- {category} na {class}: {type} {name}"
351351
352 #: tp/Texinfo/Convert/Plaintext.pm:2560
352 #: tp/Texinfo/Convert/Plaintext.pm:2648
353353 #, fuzzy, perl-brace-format
354354 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
355355 msgstr "@tie{ }-- {category} da {class}: {type} {name} {arguments}"
356356
357 #: tp/Texinfo/Convert/Plaintext.pm:2564
357 #: tp/Texinfo/Convert/Plaintext.pm:2652
358358 #, perl-brace-format
359359 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
360360 msgstr "@tie{ }-- {category} da {class}: {type} {name} {arguments}"
361361
362 #: tp/Texinfo/Convert/Plaintext.pm:2575
362 #: tp/Texinfo/Convert/Plaintext.pm:2663
363363 #, fuzzy, perl-brace-format
364364 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
365365 msgstr "@tie{ }-- {category} da {class}: {type} {name}"
366366
367 #: tp/Texinfo/Convert/Plaintext.pm:2579
367 #: tp/Texinfo/Convert/Plaintext.pm:2667
368368 #, perl-brace-format
369369 msgid "@tie{ }-- {category} of {class}: {type} {name}"
370370 msgstr "@tie{ }-- {category} da {class}: {type} {name}"
371371
372 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
372 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
373373 #, perl-brace-format
374374 msgid "@center --- @emph{{author}}\n"
375375 msgstr ""
77 msgstr ""
88 "Project-Id-Version: texinfo 5.0\n"
99 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
10 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
10 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1111 "PO-Revision-Date: 2006-01-09\n"
1212 "Last-Translator: Jorge Barros de Abreu <ficmatin01@solar.com.br>\n"
1313 "Language-Team: Unknown\n"
6161 msgid "{month} {day}, {year}"
6262 msgstr "{day} de {month} de {year}"
6363
64 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
64 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6565 #: tp/Texinfo/Convert/HTML.pm:511
6666 #, perl-brace-format
6767 msgid "Appendix {number} {section_title}"
6868 msgstr ""
6969
70 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
70 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
7171 #: tp/Texinfo/Convert/HTML.pm:517
7272 #, fuzzy, perl-brace-format
7373 msgid "{number} {section_title}"
240240 msgid "see {title_ref}"
241241 msgstr "veja {title_ref}"
242242
243 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
243 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
244244 #, fuzzy, perl-brace-format
245245 msgid "{abbr_or_acronym} ({explanation})"
246246 msgstr "{acronym_like} ({explanation})"
247247
248 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
248 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
249249 #: tp/Texinfo/Convert/HTML.pm:3526
250250 #, perl-brace-format
251251 msgid "@b{{quotation_arg}:} "
252252 msgstr "@b{{quotation_arg}:} "
253253
254 #: tp/Texinfo/Convert/Plaintext.pm:1104
254 #: tp/Texinfo/Convert/Plaintext.pm:1195
255255 msgid "(outside of any node)"
256256 msgstr "(fora de qualquer nodo)"
257257
258 #: tp/Texinfo/Convert/Plaintext.pm:1685
258 #: tp/Texinfo/Convert/Plaintext.pm:1773
259259 #, perl-brace-format
260260 msgid "{name} @url{{email}}"
261261 msgstr ""
262262
263 #: tp/Texinfo/Convert/Plaintext.pm:1688
263 #: tp/Texinfo/Convert/Plaintext.pm:1776
264264 #, perl-brace-format
265265 msgid "@url{{email}}"
266266 msgstr ""
267267
268 #: tp/Texinfo/Convert/Plaintext.pm:1710
268 #: tp/Texinfo/Convert/Plaintext.pm:1798
269269 #, perl-brace-format
270270 msgid "{text} ({url})"
271271 msgstr ""
272272
273 #: tp/Texinfo/Convert/Plaintext.pm:1715
273 #: tp/Texinfo/Convert/Plaintext.pm:1803
274274 #, perl-brace-format
275275 msgid "@t{<{url}>}"
276276 msgstr ""
277277
278 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
278 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
279279 #, perl-brace-format
280280 msgid "@{No value for `{value}'@}"
281281 msgstr "@{Nenhum valor para `{value}'@}"
282282
283 #: tp/Texinfo/Convert/Plaintext.pm:2450
283 #: tp/Texinfo/Convert/Plaintext.pm:2538
284284 #, perl-brace-format
285285 msgid "@tie{ }-- {category}: {name} {arguments}"
286286 msgstr ""
287287
288 #: tp/Texinfo/Convert/Plaintext.pm:2455
288 #: tp/Texinfo/Convert/Plaintext.pm:2543
289289 #, perl-brace-format
290290 msgid "@tie{ }-- {category}: {name}"
291291 msgstr ""
292292
293 #: tp/Texinfo/Convert/Plaintext.pm:2468
293 #: tp/Texinfo/Convert/Plaintext.pm:2556
294294 #, fuzzy, perl-brace-format
295295 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
296296 msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}"
297297
298 #: tp/Texinfo/Convert/Plaintext.pm:2471
298 #: tp/Texinfo/Convert/Plaintext.pm:2559
299299 #, perl-brace-format
300300 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
301301 msgstr ""
302302
303 #: tp/Texinfo/Convert/Plaintext.pm:2480
303 #: tp/Texinfo/Convert/Plaintext.pm:2568
304304 #, fuzzy, perl-brace-format
305305 msgid "@tie{ }-- {category}:@*{type}@*{name}"
306306 msgstr "@tie{ }-- {category} na {class}: {type} {name}"
307307
308 #: tp/Texinfo/Convert/Plaintext.pm:2483
308 #: tp/Texinfo/Convert/Plaintext.pm:2571
309309 #, perl-brace-format
310310 msgid "@tie{ }-- {category}: {type} {name}"
311311 msgstr ""
312312
313 #: tp/Texinfo/Convert/Plaintext.pm:2491
313 #: tp/Texinfo/Convert/Plaintext.pm:2579
314314 #, perl-brace-format
315315 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
316316 msgstr "@tie{ }-- {category} da {class}: {name} {arguments}"
317317
318 #: tp/Texinfo/Convert/Plaintext.pm:2497
318 #: tp/Texinfo/Convert/Plaintext.pm:2585
319319 #, perl-brace-format
320320 msgid "@tie{ }-- {category} of {class}: {name}"
321321 msgstr "@tie{ }-- {category} da {class}: {name}"
322322
323 #: tp/Texinfo/Convert/Plaintext.pm:2506
323 #: tp/Texinfo/Convert/Plaintext.pm:2594
324324 #, perl-brace-format
325325 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
326326 msgstr "@tie{ }-- {category} na {class}: {name} {arguments}"
327327
328 #: tp/Texinfo/Convert/Plaintext.pm:2512
328 #: tp/Texinfo/Convert/Plaintext.pm:2600
329329 #, perl-brace-format
330330 msgid "@tie{ }-- {category} on {class}: {name}"
331331 msgstr "@tie{ }-- {category} na {class}: {name}"
332332
333 #: tp/Texinfo/Convert/Plaintext.pm:2527
333 #: tp/Texinfo/Convert/Plaintext.pm:2615
334334 #, fuzzy, perl-brace-format
335335 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
336336 msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}"
337337
338 #: tp/Texinfo/Convert/Plaintext.pm:2531
338 #: tp/Texinfo/Convert/Plaintext.pm:2619
339339 #, perl-brace-format
340340 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
341341 msgstr "@tie{ }-- {category} na {class}: {type} {name} {arguments}"
342342
343 #: tp/Texinfo/Convert/Plaintext.pm:2542
343 #: tp/Texinfo/Convert/Plaintext.pm:2630
344344 #, fuzzy, perl-brace-format
345345 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
346346 msgstr "@tie{ }-- {category} na {class}: {type} {name}"
347347
348 #: tp/Texinfo/Convert/Plaintext.pm:2546
348 #: tp/Texinfo/Convert/Plaintext.pm:2634
349349 #, perl-brace-format
350350 msgid "@tie{ }-- {category} on {class}: {type} {name}"
351351 msgstr "@tie{ }-- {category} na {class}: {type} {name}"
352352
353 #: tp/Texinfo/Convert/Plaintext.pm:2560
353 #: tp/Texinfo/Convert/Plaintext.pm:2648
354354 #, fuzzy, perl-brace-format
355355 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
356356 msgstr "@tie{ }-- {category} da {class}: {type} {name} {arguments}"
357357
358 #: tp/Texinfo/Convert/Plaintext.pm:2564
358 #: tp/Texinfo/Convert/Plaintext.pm:2652
359359 #, perl-brace-format
360360 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
361361 msgstr "@tie{ }-- {category} da {class}: {type} {name} {arguments}"
362362
363 #: tp/Texinfo/Convert/Plaintext.pm:2575
363 #: tp/Texinfo/Convert/Plaintext.pm:2663
364364 #, fuzzy, perl-brace-format
365365 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
366366 msgstr "@tie{ }-- {category} da {class}: {type} {name}"
367367
368 #: tp/Texinfo/Convert/Plaintext.pm:2579
368 #: tp/Texinfo/Convert/Plaintext.pm:2667
369369 #, perl-brace-format
370370 msgid "@tie{ }-- {category} of {class}: {type} {name}"
371371 msgstr "@tie{ }-- {category} da {class}: {type} {name}"
372372
373 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
373 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
374374 #, perl-brace-format
375375 msgid "@center --- @emph{{author}}\n"
376376 msgstr "@center --- @emph{{author}}\n"
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: texinfo 4.13.96\n"
8 "Project-Id-Version: texinfo 5.0\n"
99 "Report-Msgid-Bugs-To: bug-texinfo@gnu.org\n"
10 "POT-Creation-Date: 2013-02-04 11:18-0800\n"
10 "POT-Creation-Date: 2013-02-16 06:56-0800\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
5959 msgid "{month} {day}, {year}"
6060 msgstr ""
6161
62 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:904
62 #: tp/Texinfo/Common.pm:1197 tp/Texinfo/Convert/Plaintext.pm:995
6363 #: tp/Texinfo/Convert/HTML.pm:511
6464 #, perl-brace-format
6565 msgid "Appendix {number} {section_title}"
6666 msgstr ""
6767
68 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:909
68 #: tp/Texinfo/Common.pm:1201 tp/Texinfo/Convert/Plaintext.pm:1000
6969 #: tp/Texinfo/Convert/HTML.pm:517
7070 #, perl-brace-format
7171 msgid "{number} {section_title}"
238238 msgid "see {title_ref}"
239239 msgstr ""
240240
241 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1878
241 #: tp/Texinfo/Convert/DocBook.pm:989 tp/Texinfo/Convert/Plaintext.pm:1966
242242 #, perl-brace-format
243243 msgid "{abbr_or_acronym} ({explanation})"
244244 msgstr ""
245245
246 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2004
246 #: tp/Texinfo/Convert/DocBook.pm:1118 tp/Texinfo/Convert/Plaintext.pm:2092
247247 #: tp/Texinfo/Convert/HTML.pm:3526
248248 #, perl-brace-format
249249 msgid "@b{{quotation_arg}:} "
250250 msgstr ""
251251
252 #: tp/Texinfo/Convert/Plaintext.pm:1104
252 #: tp/Texinfo/Convert/Plaintext.pm:1195
253253 msgid "(outside of any node)"
254254 msgstr ""
255255
256 #: tp/Texinfo/Convert/Plaintext.pm:1685
256 #: tp/Texinfo/Convert/Plaintext.pm:1773
257257 #, perl-brace-format
258258 msgid "{name} @url{{email}}"
259259 msgstr ""
260260
261 #: tp/Texinfo/Convert/Plaintext.pm:1688
261 #: tp/Texinfo/Convert/Plaintext.pm:1776
262262 #, perl-brace-format
263263 msgid "@url{{email}}"
264264 msgstr ""
265265
266 #: tp/Texinfo/Convert/Plaintext.pm:1710
266 #: tp/Texinfo/Convert/Plaintext.pm:1798
267267 #, perl-brace-format
268268 msgid "{text} ({url})"
269269 msgstr ""
270270
271 #: tp/Texinfo/Convert/Plaintext.pm:1715
271 #: tp/Texinfo/Convert/Plaintext.pm:1803
272272 #, perl-brace-format
273273 msgid "@t{<{url}>}"
274274 msgstr ""
275275
276 #: tp/Texinfo/Convert/Plaintext.pm:1929 tp/Texinfo/Convert/HTML.pm:1433
276 #: tp/Texinfo/Convert/Plaintext.pm:2017 tp/Texinfo/Convert/HTML.pm:1433
277277 #, perl-brace-format
278278 msgid "@{No value for `{value}'@}"
279279 msgstr ""
280280
281 #: tp/Texinfo/Convert/Plaintext.pm:2450
281 #: tp/Texinfo/Convert/Plaintext.pm:2538
282282 #, perl-brace-format
283283 msgid "@tie{ }-- {category}: {name} {arguments}"
284284 msgstr ""
285285
286 #: tp/Texinfo/Convert/Plaintext.pm:2455
286 #: tp/Texinfo/Convert/Plaintext.pm:2543
287287 #, perl-brace-format
288288 msgid "@tie{ }-- {category}: {name}"
289289 msgstr ""
290290
291 #: tp/Texinfo/Convert/Plaintext.pm:2468
291 #: tp/Texinfo/Convert/Plaintext.pm:2556
292292 #, perl-brace-format
293293 msgid "@tie{ }-- {category}:@*{type}@*{name} {arguments}"
294294 msgstr ""
295295
296 #: tp/Texinfo/Convert/Plaintext.pm:2471
296 #: tp/Texinfo/Convert/Plaintext.pm:2559
297297 #, perl-brace-format
298298 msgid "@tie{ }-- {category}: {type} {name} {arguments}"
299299 msgstr ""
300300
301 #: tp/Texinfo/Convert/Plaintext.pm:2480
301 #: tp/Texinfo/Convert/Plaintext.pm:2568
302302 #, perl-brace-format
303303 msgid "@tie{ }-- {category}:@*{type}@*{name}"
304304 msgstr ""
305305
306 #: tp/Texinfo/Convert/Plaintext.pm:2483
306 #: tp/Texinfo/Convert/Plaintext.pm:2571
307307 #, perl-brace-format
308308 msgid "@tie{ }-- {category}: {type} {name}"
309309 msgstr ""
310310
311 #: tp/Texinfo/Convert/Plaintext.pm:2491
311 #: tp/Texinfo/Convert/Plaintext.pm:2579
312312 #, perl-brace-format
313313 msgid "@tie{ }-- {category} of {class}: {name} {arguments}"
314314 msgstr ""
315315
316 #: tp/Texinfo/Convert/Plaintext.pm:2497
316 #: tp/Texinfo/Convert/Plaintext.pm:2585
317317 #, perl-brace-format
318318 msgid "@tie{ }-- {category} of {class}: {name}"
319319 msgstr ""
320320
321 #: tp/Texinfo/Convert/Plaintext.pm:2506
321 #: tp/Texinfo/Convert/Plaintext.pm:2594
322322 #, perl-brace-format
323323 msgid "@tie{ }-- {category} on {class}: {name} {arguments}"
324324 msgstr ""
325325
326 #: tp/Texinfo/Convert/Plaintext.pm:2512
326 #: tp/Texinfo/Convert/Plaintext.pm:2600
327327 #, perl-brace-format
328328 msgid "@tie{ }-- {category} on {class}: {name}"
329329 msgstr ""
330330
331 #: tp/Texinfo/Convert/Plaintext.pm:2527
331 #: tp/Texinfo/Convert/Plaintext.pm:2615
332332 #, perl-brace-format
333333 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name} {arguments}"
334334 msgstr ""
335335
336 #: tp/Texinfo/Convert/Plaintext.pm:2531
336 #: tp/Texinfo/Convert/Plaintext.pm:2619
337337 #, perl-brace-format
338338 msgid "@tie{ }-- {category} on {class}: {type} {name} {arguments}"
339339 msgstr ""
340340
341 #: tp/Texinfo/Convert/Plaintext.pm:2542
341 #: tp/Texinfo/Convert/Plaintext.pm:2630
342342 #, perl-brace-format
343343 msgid "@tie{ }-- {category} on {class}:@*{type}@*{name}"
344344 msgstr ""
345345
346 #: tp/Texinfo/Convert/Plaintext.pm:2546
346 #: tp/Texinfo/Convert/Plaintext.pm:2634
347347 #, perl-brace-format
348348 msgid "@tie{ }-- {category} on {class}: {type} {name}"
349349 msgstr ""
350350
351 #: tp/Texinfo/Convert/Plaintext.pm:2560
351 #: tp/Texinfo/Convert/Plaintext.pm:2648
352352 #, perl-brace-format
353353 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name} {arguments}"
354354 msgstr ""
355355
356 #: tp/Texinfo/Convert/Plaintext.pm:2564
356 #: tp/Texinfo/Convert/Plaintext.pm:2652
357357 #, perl-brace-format
358358 msgid "@tie{ }-- {category} of {class}: {type} {name} {arguments}"
359359 msgstr ""
360360
361 #: tp/Texinfo/Convert/Plaintext.pm:2575
361 #: tp/Texinfo/Convert/Plaintext.pm:2663
362362 #, perl-brace-format
363363 msgid "@tie{ }-- {category} of {class}:@*{type}@*{name}"
364364 msgstr ""
365365
366 #: tp/Texinfo/Convert/Plaintext.pm:2579
366 #: tp/Texinfo/Convert/Plaintext.pm:2667
367367 #, perl-brace-format
368368 msgid "@tie{ }-- {category} of {class}: {type} {name}"
369369 msgstr ""
370370
371 #: tp/Texinfo/Convert/Plaintext.pm:2860 tp/Texinfo/Convert/HTML.pm:2786
371 #: tp/Texinfo/Convert/Plaintext.pm:2948 tp/Texinfo/Convert/HTML.pm:2786
372372 #, perl-brace-format
373373 msgid "@center --- @emph{{author}}\n"
374374 msgstr ""
7777 maintain/change_perl_modules_version.sh
7878 maintain/language-subtag-registry
7979 maintain/prepare_perl_module.sh
80 maintain/regenerate_cmd_tests.sh
8081 maintain/regenerate_converters_documentation.sh
8182 maintain/regenerate_docstr.sh
8283 maintain/regenerate_documentlanguages.pl
196197 t/include_dir/section_file.texi
197198 t/include_reference/f--ile.png
198199 t/include_reference/f--ile.txt
200 t/include_reference/figure.txt
199201 t/include_reference/inc_file.texi
200202 t/include_reference/incl-incl.txi
201203 t/include_reference/macro_included.texi
701703 t/results/info_tests/image_text_encoded.pl
702704 t/results/info_tests/index_entry_at_end_node.pl
703705 t/results/info_tests/known_encoding.pl
706 t/results/info_tests/multiline_image_and_align.pl
704707 t/results/info_tests/multitable_anchor_and_index_entry.pl
705708 t/results/info_tests/nested_footnotes_separate.pl
706709 t/results/info_tests/nested_multitable_anchor_index.pl
10241027 t/results/plaintext_tests/line_passed_and_formats.pl
10251028 t/results/plaintext_tests/long_line.pl
10261029 t/results/plaintext_tests/long_uref_after_item.pl
1030 t/results/plaintext_tests/multiline_image_and_align.pl
10271031 t/results/plaintext_tests/multiline_verb_after_space.pl
10281032 t/results/plaintext_tests/multitable.pl
10291033 t/results/plaintext_tests/multitable_in_example_extraneous_tab.pl
0 # $Id: Makefile.am,v 1.57 2013/02/03 23:53:48 karl Exp $
0 # $Id: Makefile.am,v 1.61 2013/02/10 16:45:05 pertusus Exp $
11 # Makefile.am for texinfo/tp.
22 #
33 # Copyright 2011, 2012, 2013 Free Software Foundation, Inc.
162162 tp_tests = prove.sh
163163
164164 if TP_TESTS
165 TESTS = $(tp_tests)
165 #TESTS = $(tp_tests)
166 TESTS = $(test_tap_files_generated_list)
166167 endif
168
169 TEST_EXTENSIONS = .t
170 T_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
171 $(top_srcdir)/build-aux/tap-driver.sh
172 T_LOG_COMPILER = $(PERL)
173 AM_T_LOG_FLAGS = -w
174 AM_TESTS_ENVIRONMENT = srcdir="$(srcdir)"; export srcdir; top_srcdir="$(top_srcdir)"; export top_srcdir;
167175
168176 maintenance_files = \
169177 maintain/all_tests.sh \
172180 maintain/Makefile_perl_po \
173181 maintain/MANIFEST_generated_files \
174182 maintain/prepare_perl_module.sh \
183 maintain/regenerate_cmd_tests.sh \
175184 maintain/regenerate_converters_documentation.sh \
176185 maintain/regenerate_docstr.sh \
177186 maintain/regenerate_documentlanguages.pl \
0 # Makefile.docstr generated by ./maintain/regenerate_docstr.sh.
1 #
2 # Copyright 2013 Free Software Foundation, Inc.
3 #
4 # This file is free software; as a special exception the author gives
5 # unlimited permission to copy and/or distribute it, with or without
6 # modifications, as long as this notice is preserved.
7 #
8 # This program is distributed in the hope that it will be useful, but
9 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
10 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
011
112
213 $(srcdir)/../po_document/de.us-ascii.gmo: $(srcdir)/../po_document/de.us-ascii.po
1313
1414 @SET_MAKE@
1515
16 # $Id: Makefile.am,v 1.57 2013/02/03 23:53:48 karl Exp $
16 # $Id: Makefile.am,v 1.61 2013/02/10 16:45:05 pertusus Exp $
1717 # Makefile.am for texinfo/tp.
1818 #
1919 # Copyright 2011, 2012, 2013 Free Software Foundation, Inc.
20 #
21 # This file is free software; as a special exception the author gives
22 # unlimited permission to copy and/or distribute it, with or without
23 # modifications, as long as this notice is preserved.
24 #
25 # This program is distributed in the hope that it will be useful, but
26 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
27 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28
29 # Makefile.docstr generated by ./maintain/regenerate_docstr.sh.
30 #
31 # Copyright 2013 Free Software Foundation, Inc.
2032 #
2133 # This file is free software; as a special exception the author gives
2234 # unlimited permission to copy and/or distribute it, with or without
6577 DIST_COMMON = $(srcdir)/Makefile.tres $(srcdir)/Makefile.docstr \
6678 $(srcdir)/Makefile.in $(srcdir)/Makefile.am $(srcdir)/defs.in \
6779 $(dist_converters_DATA) $(dist_debugmodules_DATA) \
68 $(dist_init_DATA) $(dist_modules_DATA) \
69 $(top_srcdir)/build-aux/test-driver README TODO
80 $(dist_init_DATA) $(dist_modules_DATA) README TODO
7081 subdir = tp
7182 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
7283 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \
411422 bases=`echo $$bases`
412423 RECHECK_LOGS = $(TEST_LOGS)
413424 TEST_SUITE_LOG = test-suite.log
414 TEST_EXTENSIONS = @EXEEXT@ .test
415 LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
416 LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
425 am__test_logs1 = $(TESTS:=.log)
426 am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
427 TEST_LOGS = $(am__test_logs2:.t.log=.log)
428 T_LOG_COMPILE = $(T_LOG_COMPILER) $(AM_T_LOG_FLAGS) $(T_LOG_FLAGS)
417429 am__set_b = \
418430 case '$@' in \
419431 */*) \
424436 *) \
425437 b='$*';; \
426438 esac
427 am__test_logs1 = $(TESTS:=.log)
428 am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
429 TEST_LOGS = $(am__test_logs2:.test.log=.log)
430 TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
431 TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
432 $(TEST_LOG_FLAGS)
433439 DIST_SUBDIRS = $(SUBDIRS)
434440 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
435441 am__relativize = \
11391145 top_builddir = @top_builddir@
11401146 top_srcdir = @top_srcdir@
11411147
1142 # Makefile.tres generated by ./maintain/regenerate_file_lists.pl.
1148 # Makefile.tres generated by ./tp/maintain/regenerate_file_lists.pl.
11431149 #
11441150 # Copyright 2013 Free Software Foundation, Inc.
11451151 #
11501156 # This program is distributed in the hope that it will be useful, but
11511157 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
11521158 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1153 test_files_generated_list = \
1159 test_tap_files_generated_list = \
11541160 t/01use.t \
11551161 t/02coverage.t \
11561162 t/03coverage_braces.t \
11961202 t/plaintext_tests.t \
11971203 t/protect_character_in_texinfo.t \
11981204 t/reference_to_text_in_tree.t \
1205 t/test_brace_count.t \
1206 t/test_count.t \
1207 t/test_fill_gaps_in_sectioning.t \
1208 t/test_protect_hashchar_at_line_beginning.t \
1209 t/test_sort.t \
1210 t/test_tree_copy.t \
1211 t/xml_tests.t
1212
1213 test_files_generated_list = $(test_tap_files_generated_list) \
11991214 t/results/alias/alias_table_command.pl \
12001215 t/results/alias/bad_line.pl \
12011216 t/results/alias/block_command_alias.pl \
16581673 t/results/info_tests/image_text_encoded.pl \
16591674 t/results/info_tests/index_entry_at_end_node.pl \
16601675 t/results/info_tests/known_encoding.pl \
1676 t/results/info_tests/multiline_image_and_align.pl \
16611677 t/results/info_tests/multitable_anchor_and_index_entry.pl \
16621678 t/results/info_tests/nested_footnotes_separate.pl \
16631679 t/results/info_tests/nested_multitable_anchor_index.pl \
19811997 t/results/plaintext_tests/line_passed_and_formats.pl \
19821998 t/results/plaintext_tests/long_line.pl \
19831999 t/results/plaintext_tests/long_uref_after_item.pl \
2000 t/results/plaintext_tests/multiline_image_and_align.pl \
19842001 t/results/plaintext_tests/multiline_verb_after_space.pl \
19852002 t/results/plaintext_tests/multitable.pl \
19862003 t/results/plaintext_tests/multitable_in_example_extraneous_tab.pl \
22712288 t/results/xtable/table_nested.pl \
22722289 t/results/xtable/text_between_item_itemx.pl \
22732290 t/results/xtable/title_and_itemx_before_item.pl \
2274 t/test_brace_count.t \
2275 t/test_count.t \
2276 t/test_fill_gaps_in_sectioning.t \
2277 t/test_protect_hashchar_at_line_beginning.t \
2278 t/test_sort.t \
2279 t/test_tree_copy.t \
2280 t/xml_tests.t \
22812291 t/include_reference/f--ile.png \
22822292 t/include_reference/f--ile.txt \
2293 t/include_reference/figure.txt \
22832294 t/include_reference/inc_file.texi \
22842295 t/include_reference/incl-incl.txi \
22852296 t/include_reference/macro_included.texi \
22862297 t/include_reference/section_file.texi
22872298
2288 test_copied_include_files = t/include_dir/section_file.texi t/include_dir/f--ile.txt t/include_dir/incl-incl.txi t/include_dir/inc_file.texi t/include_dir/f--ile.png t/include_dir/macro_included.texi
2299 test_copied_include_files = t/include_dir/section_file.texi t/include_dir/f--ile.txt t/include_dir/incl-incl.txi t/include_dir/inc_file.texi t/include_dir/figure.txt t/include_dir/f--ile.png t/include_dir/macro_included.texi
22892300 document_strings_mo_files = LocaleData/de.us-ascii/LC_MESSAGES/$(document_domain).mo LocaleData/eo/LC_MESSAGES/$(document_domain).mo LocaleData/es.us-ascii/LC_MESSAGES/$(document_domain).mo LocaleData/fr.us-ascii/LC_MESSAGES/$(document_domain).mo LocaleData/hu/LC_MESSAGES/$(document_domain).mo LocaleData/it/LC_MESSAGES/$(document_domain).mo LocaleData/nl/LC_MESSAGES/$(document_domain).mo LocaleData/no.us-ascii/LC_MESSAGES/$(document_domain).mo LocaleData/pl/LC_MESSAGES/$(document_domain).mo LocaleData/pt_BR.us-ascii/LC_MESSAGES/$(document_domain).mo LocaleData/pt.us-ascii/LC_MESSAGES/$(document_domain).mo
22902301 SUBDIRS = . tests
22912302 bin_SCRIPTS = texi2any
24072418
24082419 document_domain = $(PACKAGE)_document
24092420 tp_tests = prove.sh
2410 @TP_TESTS_TRUE@TESTS = $(tp_tests)
2421
2422 #TESTS = $(tp_tests)
2423 @TP_TESTS_TRUE@TESTS = $(test_tap_files_generated_list)
2424 TEST_EXTENSIONS = .t
2425 T_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
2426 $(top_srcdir)/build-aux/tap-driver.sh
2427
2428 T_LOG_COMPILER = $(PERL)
2429 AM_T_LOG_FLAGS = -w
2430 AM_TESTS_ENVIRONMENT = srcdir="$(srcdir)"; export srcdir; top_srcdir="$(top_srcdir)"; export top_srcdir;
24112431 maintenance_files = \
24122432 maintain/all_tests.sh \
24132433 maintain/change_perl_modules_version.sh \
24152435 maintain/Makefile_perl_po \
24162436 maintain/MANIFEST_generated_files \
24172437 maintain/prepare_perl_module.sh \
2438 maintain/regenerate_cmd_tests.sh \
24182439 maintain/regenerate_converters_documentation.sh \
24192440 maintain/regenerate_docstr.sh \
24202441 maintain/regenerate_documentlanguages.pl \
24432464 all: all-recursive
24442465
24452466 .SUFFIXES:
2446 .SUFFIXES: .log .test .test$(EXEEXT) .trs
2467 .SUFFIXES: .log .t .t$(EXEEXT) .trs
24472468 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/Makefile.tres $(srcdir)/Makefile.docstr $(am__configure_deps)
24482469 @for dep in $?; do \
24492470 case '$(am__configure_deps)' in \
28382859 am__force_recheck=am--force-recheck \
28392860 TEST_LOGS="$$log_list"; \
28402861 exit $$?
2841 prove.sh.log: prove.sh
2842 @p='prove.sh'; \
2843 b='prove.sh'; \
2844 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2845 --log-file $$b.log --trs-file $$b.trs \
2846 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2847 "$$tst" $(AM_TESTS_FD_REDIRECT)
2848 .test.log:
2862 .t.log:
28492863 @p='$<'; \
28502864 $(am__set_b); \
2851 $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
2865 $(am__check_pre) $(T_LOG_DRIVER) --test-name "$$f" \
28522866 --log-file $$b.log --trs-file $$b.trs \
2853 $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
2867 $(am__common_driver_flags) $(AM_T_LOG_DRIVER_FLAGS) $(T_LOG_DRIVER_FLAGS) -- $(T_LOG_COMPILE) \
28542868 "$$tst" $(AM_TESTS_FD_REDIRECT)
2855 @am__EXEEXT_TRUE@.test$(EXEEXT).log:
2869 @am__EXEEXT_TRUE@.t$(EXEEXT).log:
28562870 @am__EXEEXT_TRUE@ @p='$<'; \
28572871 @am__EXEEXT_TRUE@ $(am__set_b); \
2858 @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
2872 @am__EXEEXT_TRUE@ $(am__check_pre) $(T_LOG_DRIVER) --test-name "$$f" \
28592873 @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
2860 @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
2874 @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_T_LOG_DRIVER_FLAGS) $(T_LOG_DRIVER_FLAGS) -- $(T_LOG_COMPILE) \
28612875 @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
28622876
28632877 distdir: $(DISTFILES)
30723086 t/include_dir/inc_file.texi: $(srcdir)/t/include_reference/inc_file.texi t/include_dir
30733087 $(INSTALL_DATA) $(srcdir)/t/include_reference/inc_file.texi $@
30743088
3089 t/include_dir/figure.txt: $(srcdir)/t/include_reference/figure.txt t/include_dir
3090 $(INSTALL_DATA) $(srcdir)/t/include_reference/figure.txt $@
3091
30753092 t/include_dir/f--ile.png: $(srcdir)/t/include_reference/f--ile.png t/include_dir
30763093 $(INSTALL_DATA) $(srcdir)/t/include_reference/f--ile.png $@
30773094
0 # Makefile.tres generated by ./maintain/regenerate_file_lists.pl.
0 # Makefile.tres generated by ./tp/maintain/regenerate_file_lists.pl.
11 #
22 # Copyright 2013 Free Software Foundation, Inc.
33 #
88 # This program is distributed in the hope that it will be useful, but
99 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
1010 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 test_files_generated_list = \
11 test_tap_files_generated_list = \
1212 t/01use.t \
1313 t/02coverage.t \
1414 t/03coverage_braces.t \
5454 t/plaintext_tests.t \
5555 t/protect_character_in_texinfo.t \
5656 t/reference_to_text_in_tree.t \
57 t/test_brace_count.t \
58 t/test_count.t \
59 t/test_fill_gaps_in_sectioning.t \
60 t/test_protect_hashchar_at_line_beginning.t \
61 t/test_sort.t \
62 t/test_tree_copy.t \
63 t/xml_tests.t
64
65 test_files_generated_list = $(test_tap_files_generated_list) \
5766 t/results/alias/alias_table_command.pl \
5867 t/results/alias/bad_line.pl \
5968 t/results/alias/block_command_alias.pl \
516525 t/results/info_tests/image_text_encoded.pl \
517526 t/results/info_tests/index_entry_at_end_node.pl \
518527 t/results/info_tests/known_encoding.pl \
528 t/results/info_tests/multiline_image_and_align.pl \
519529 t/results/info_tests/multitable_anchor_and_index_entry.pl \
520530 t/results/info_tests/nested_footnotes_separate.pl \
521531 t/results/info_tests/nested_multitable_anchor_index.pl \
839849 t/results/plaintext_tests/line_passed_and_formats.pl \
840850 t/results/plaintext_tests/long_line.pl \
841851 t/results/plaintext_tests/long_uref_after_item.pl \
852 t/results/plaintext_tests/multiline_image_and_align.pl \
842853 t/results/plaintext_tests/multiline_verb_after_space.pl \
843854 t/results/plaintext_tests/multitable.pl \
844855 t/results/plaintext_tests/multitable_in_example_extraneous_tab.pl \
11291140 t/results/xtable/table_nested.pl \
11301141 t/results/xtable/text_between_item_itemx.pl \
11311142 t/results/xtable/title_and_itemx_before_item.pl \
1132 t/test_brace_count.t \
1133 t/test_count.t \
1134 t/test_fill_gaps_in_sectioning.t \
1135 t/test_protect_hashchar_at_line_beginning.t \
1136 t/test_sort.t \
1137 t/test_tree_copy.t \
1138 t/xml_tests.t \
11391143 t/include_reference/f--ile.png \
11401144 t/include_reference/f--ile.txt \
1145 t/include_reference/figure.txt \
11411146 t/include_reference/inc_file.texi \
11421147 t/include_reference/incl-incl.txi \
11431148 t/include_reference/macro_included.texi \
11581163 t/include_dir/inc_file.texi: $(srcdir)/t/include_reference/inc_file.texi t/include_dir
11591164 $(INSTALL_DATA) $(srcdir)/t/include_reference/inc_file.texi $@
11601165
1166 t/include_dir/figure.txt: $(srcdir)/t/include_reference/figure.txt t/include_dir
1167 $(INSTALL_DATA) $(srcdir)/t/include_reference/figure.txt $@
1168
11611169 t/include_dir/f--ile.png: $(srcdir)/t/include_reference/f--ile.png t/include_dir
11621170 $(INSTALL_DATA) $(srcdir)/t/include_reference/f--ile.png $@
11631171
11641172 t/include_dir/macro_included.texi: $(srcdir)/t/include_reference/macro_included.texi t/include_dir
11651173 $(INSTALL_DATA) $(srcdir)/t/include_reference/macro_included.texi $@
11661174
1167 test_copied_include_files = t/include_dir/section_file.texi t/include_dir/f--ile.txt t/include_dir/incl-incl.txi t/include_dir/inc_file.texi t/include_dir/f--ile.png t/include_dir/macro_included.texi
1175 test_copied_include_files = t/include_dir/section_file.texi t/include_dir/f--ile.txt t/include_dir/incl-incl.txi t/include_dir/inc_file.texi t/include_dir/figure.txt t/include_dir/f--ile.png t/include_dir/macro_included.texi
11681176
9494
9595 Test of CASE_INSENSITIVE_FILENAMES.
9696
97 anchor in flushright, on an empty line, with a current byte offset.
9798
9899 Future features
99100 ===============
886886 .$self->xml_protect_text($file->[0])
887887 ."\" format=\"$file->[1]\"></imagedata></imageobject>";
888888 }
889 my $image_text
889 my ($image_text, $image_width)
890890 = $self->Texinfo::Convert::Plaintext::_image_text($root, $basefile);
891891 if (defined($image_text)) {
892892 $result .= "<textobject><literallayout>"
147147 $self->{'output_file'}, $close_error));
148148 return undef;
149149 }
150 unless (rename ($self->{'output_file'},
151 $self->{'output_file'}.'-'.$out_file_nr)) {
150 unless (rename($self->{'output_file'},
151 $self->{'output_file'}.'-'.$out_file_nr)) {
152152 $self->document_error(sprintf($self->__("rename %s failed: %s"),
153153 $self->{'output_file'}, $!));
154154 return undef;
436436 last;
437437 }
438438 }
439 my $text = $self->_image_text($root, $basefile);
440 my $text_result;
441 if (defined($text)) {
442 if (!$self->{'formatters'}->[-1]->{'_top_formatter'}) {
443 $text_result = '['.$text.']';
444 } else {
445 $text_result = $text;
446 }
439 my ($text, $width) = $self->_image_text($root, $basefile);
440 my $alt;
441 if (defined($root->{'extra'}->{'brace_command_contents'}->[3])) {
442 $alt = Texinfo::Convert::Text::convert(
443 {'contents' => $root->{'extra'}->{'brace_command_contents'}->[3]},
444 {Texinfo::Common::_convert_text_options($self)});
447445 }
448446
449447 my $result;
450448
451 if (defined($image_file)) {
449 if (defined($image_file) or (defined($text) and defined($alt))) {
452450 $image_file =~ s/\\/\\\\/g;
453451 $image_file =~ s/\"/\\\"/g;
454452 $result = "\x{00}\x{08}[image src=\"$image_file\"";
455453
456454 if (defined($root->{'extra'}->{'brace_command_contents'}->[3])) {
457 my $alt = Texinfo::Convert::Text::convert(
458 {'contents' => $root->{'extra'}->{'brace_command_contents'}->[3]},
459 {Texinfo::Common::_convert_text_options($self)});
460455 $alt =~ s/\\/\\\\/g;
461456 $alt =~ s/\"/\\\"/g;
462457 $result .= " alt=\"$alt\"";
463458 }
464 if (defined($text_result)) {
465 $text_result =~ s/\\/\\\\/g;
466 $text_result =~ s/\"/\\\"/g;
467 $result .= " text=\"$text_result\"";
459 if (defined($text)) {
460 $text =~ s/\\/\\\\/g;
461 $text =~ s/\"/\\\"/g;
462 $result .= " text=\"$text\"";
468463 }
469464 $result .= "\x{00}\x{08}]";
470465 if ($self->{'formatters'}->[-1]->{'_top_formatter'}) {
471466 $result .= "\n";
472467 }
468 my $image_lines_count = ($result =~ tr/\n/\n/) +1;
469 $self->_add_image($root, $image_lines_count, $width, 1);
473470 } else {
474 $result = $self->_image_formatted_text($root, $basefile, $text,
475 $text_result);
471 $result = $self->_image_formatted_text($root, $basefile, $text);
476472 $lines_count = ($result =~ tr/\n/\n/);
473 $self->_add_image($root, $lines_count+1, $width);
477474 }
478475 return ($result, $lines_count);
479476 }
666666 return $location;
667667 }
668668
669 sub _add_image($$$$;$)
670 {
671 my $self = shift;
672 my $root = shift;
673 my $lines_count = shift;
674 my $image_width = shift;
675 my $no_align = shift;
676
677 push @{$self->{'count_context'}->[-1]->{'images'}}, {
678 'lines' => $self->{'count_context'}->[-1]->{'lines'},
679 'lines_count' => $lines_count,
680 'image_width' => $image_width,
681 'no_align' => $no_align,
682 # may be used for debugging?
683 #'_ref' => $root,
684 };
685 }
686
669687 sub _count_added($$$)
670688 {
671689 my $self = shift;
785803 return $result;
786804 }
787805
788 sub _align_lines($$$$$)
806 sub _compute_spaces_align_line($$$;$)
807 {
808 my $line_width = shift;
809 my $max_column = shift;
810 my $direction = shift;
811 my $no_align = shift;
812
813 my $spaces_prepended;
814 if ($line_width > $max_column or $no_align) {
815 $spaces_prepended = 0;
816 } elsif ($direction eq 'center') {
817 $spaces_prepended = (($max_column -1 - $line_width) /2);
818 } else {
819 $spaces_prepended = ($max_column -1 - $line_width);
820 }
821 return $spaces_prepended;
822 }
823
824 sub _align_lines($$$$$$)
789825 {
790826 my $self = shift;
791827 my $text = shift;
792828 my $max_column = shift;
793829 my $direction = shift;
794830 my $locations = shift;
831 my $images = shift;
795832
796833 my $result = '';
797834
803840 push @{$updated_locations->{$location->{'lines'}}}, $location;
804841 }
805842 }
843 my $images_marks = {};
844 if ($images and @$images) {
845 foreach my $image (@$images) {
846 #print STDERR "I $image->{'lines'}, $image->{'lines_count'}, $image->{'image_width'}\n";
847 if ($image->{'lines_count'} > 1) {
848 if (!$images_marks->{$image->{'lines'}}) {
849 $images_marks->{$image->{'lines'}} = $image;
850 }# else {
851 # Happens in Info with the special construct as, in that
852 # case, there are no lines! So no error...
853 # $self->_bug_message("more than one image with lines on $image->{'lines'}");
854 # in that case, the $image->{'lines'} is not in sync with the
855 # lines count. So the second image will be treated as simple text.
856 #}
857 }
858 }
859 }
806860
807861 my $bytes_count = 0;
808862 my $delta_bytes = 0;
809863 my $line_index = 0;
864 my $image;
865 my $image_lines_count;
866 my $image_prepended_spaces;
810867 foreach my $line (split /^/, $text) {
811868 my $line_bytes_begin = 0;
812869 my $line_bytes_end = 0;
813 my $chomped = chomp($line);
814 # for debugging.
815 my $orig_line = $line;
816 $line_bytes_end -= $self->count_bytes($chomped);
817 $line =~ s/^(\s*)//;
818 $line_bytes_begin -= $self->count_bytes($1);
819 $line =~ s/(\s*)$//;
820 $line_bytes_end -= $self->count_bytes($1);
821 my $line_width = Texinfo::Convert::Unicode::string_width($line);
822 if ($line_width == 0) {
823 $result .= "\n";
824 $line_bytes_end += $self->count_bytes("\n");
825 $bytes_count += $self->count_bytes("\n");
870
871 my ($new_image, $new_image_prepended_spaces);
872 if ($images_marks->{$line_index}) {
873 $new_image = $images_marks->{$line_index};
874 $image_lines_count = 0;
875 $new_image_prepended_spaces
876 = _compute_spaces_align_line($new_image->{'image_width'}, $max_column,
877 $direction, $new_image->{'no_align'});
878 if (!defined($image)) {
879 $image = $new_image;
880 $image_prepended_spaces = $new_image_prepended_spaces;
881 $new_image = undef;
882 }
883 }
884
885 if (!$image) {
886 my $chomped = chomp($line);
887 # for debugging.
888 my $orig_line = $line;
889 $line_bytes_end -= $self->count_bytes($chomped);
890 $line =~ s/^(\s*)//;
891 $line_bytes_begin -= $self->count_bytes($1);
892 $line =~ s/(\s*)$//;
893 $line_bytes_end -= $self->count_bytes($1);
894 my $line_width = Texinfo::Convert::Unicode::string_width($line);
895 if ($line_width == 0) {
896 $result .= "\n";
897 $line_bytes_end += $self->count_bytes("\n");
898 $bytes_count += $self->count_bytes("\n");
899 } else {
900 my $spaces_prepended
901 = _compute_spaces_align_line($line_width, $max_column, $direction);
902 $result .= ' ' x$spaces_prepended . $line ."\n";
903 $line_bytes_begin += $self->count_bytes(' ' x$spaces_prepended);
904 $line_bytes_end += $self->count_bytes("\n");
905 $bytes_count += $line_bytes_begin + $line_bytes_end
906 + $self->count_bytes($line);
907 }
826908 } else {
827 my $spaces_prepended;
828 if ($line_width > $max_column) {
829 $spaces_prepended = 0;
830 } elsif ($direction eq 'center') {
831 $spaces_prepended = (($max_column -1 - $line_width) /2);
832 } else {
833 $spaces_prepended = ($max_column -1 - $line_width);
834 }
835 $result .= ' ' x$spaces_prepended . $line ."\n";
836 $line_bytes_begin += $self->count_bytes(' ' x$spaces_prepended);
837 $line_bytes_end += $self->count_bytes("\n");
838 if ($updated_locations->{$line_index}) {
839 foreach my $location (@{$updated_locations->{$line_index}}) {
840 $location->{'bytes'} += $line_bytes_begin + $delta_bytes;
841 #print STDERR "UPDATE ALIGN: $location->{'root'}->{'extra'}->{'normalized'}: ($location->{'bytes'})\n";
842 }
843 }
844 $bytes_count += $line_bytes_begin + $line_bytes_end
845 + $self->count_bytes($line);
909 $image_lines_count++;
910 my $prepended_spaces = $image_prepended_spaces;
911 # adjust if there is something else that the image on the first or
912 # last line. The adjustment is approximate.
913 if (($image_lines_count == 1 or $image_lines_count == $image->{'lines_count'})
914 and Texinfo::Convert::Unicode::string_width($line) > $image->{'image_width'}) {
915 $prepended_spaces
916 -= Texinfo::Convert::Unicode::string_width($line) - $image->{'image_width'};
917 $prepended_spaces = 0 if ($prepended_spaces < 0);
918 }
919 $result .= ' ' x$prepended_spaces . $line;
920 $line_bytes_begin += $self->count_bytes(' ' x$prepended_spaces);
921 $bytes_count += $line_bytes_begin + $self->count_bytes($line);
922 if ($new_image) {
923 $image = $new_image;
924 $image_prepended_spaces = $new_image_prepended_spaces;
925 } elsif ($image_lines_count == $image->{'lines_count'}) {
926 $image = undef;
927 $image_lines_count = undef;
928 $image_prepended_spaces = undef;
929 }
930 }
931
932 if ($updated_locations->{$line_index}) {
933 foreach my $location (@{$updated_locations->{$line_index}}) {
934 $location->{'bytes'} += $line_bytes_begin + $delta_bytes;
935 #print STDERR "UPDATE ALIGN: $location->{'root'}->{'extra'}->{'normalized'}: ($location->{'bytes'})\n";
936 }
846937 }
847938 $delta_bytes += $line_bytes_begin + $line_bytes_end;
848939 #print STDERR "ALIGN $orig_line ($line_index. lbb $line_bytes_begin, lbe $line_bytes_end, delta $delta_bytes, bytes_count $bytes_count)\n";
861952 my $counts = pop @{$self->{'count_context'}};
862953 my $bytes_count;
863954 ($result, $bytes_count) = $self->_align_lines($result, $max,
864 $align, $counts->{'locations'});
955 $align, $counts->{'locations'}, $counts->{'images'});
865956 $self->_update_locations_counts($counts->{'locations'});
866957 $self->{'count_context'}->[-1]->{'bytes'} += $bytes_count;
867958 $self->{'count_context'}->[-1]->{'lines'} += $counts->{'lines'};
12071298 .$self->get_conf('INPUT_PERL_ENCODING').")")
12081299 if (defined($self->get_conf('INPUT_PERL_ENCODING')));
12091300 my $result = '';
1301 my $max_width = 0;
12101302 while (<$filehandle>) {
1303 my $width = Texinfo::Convert::Unicode::string_width($_);
1304 if ($width > $max_width) {
1305 $max_width = $width;
1306 }
12111307 $result .= $_;
12121308 }
12131309 # remove last end of line
12161312 $self->document_warn(sprintf($self->__("error on closing image text file %s: %s"),
12171313 $txt_file, $!));
12181314 }
1219 return $result;
1315 return ($result, $max_width);
12201316 } else {
12211317 $self->line_warn(sprintf($self->__("\@image file `%s' unreadable: %s"),
12221318 $txt_file, $!), $root->{'line_nr'});
12251321 return undef;
12261322 }
12271323
1228 sub _image_formatted_text($$$$$)
1324 sub _image_formatted_text($$$$)
12291325 {
12301326 my $self = shift;
12311327 my $root = shift;
12321328 my $basefile = shift;
12331329 my $text = shift;
1234 my $text_result = shift;
12351330
12361331 my $result;
12371332 if (defined($text)) {
1238 $result = $text_result;
1333 $result = $text;
12391334 } elsif (defined($root->{'extra'}->{'brace_command_contents'}->[3])) {
1240 my $alt = Texinfo::Convert::Text::convert(
1335 $result = '[' .Texinfo::Convert::Text::convert(
12411336 {'contents' => $root->{'extra'}->{'brace_command_contents'}->[3]},
1242 {Texinfo::Common::_convert_text_options($self)});
1243 if (!$self->{'formatters'}->[-1]->{'_top_formatter'}) {
1244 $result = '['.$alt.']';
1245 } else {
1246 $result = $alt;
1247 }
1337 {Texinfo::Common::_convert_text_options($self)}) .']';
12481338 } else {
12491339 $self->line_warn(sprintf($self->__(
12501340 "could not find \@image file `%s.txt' nor alternate text"),
12631353 my $basefile = Texinfo::Convert::Text::convert(
12641354 {'contents' => $root->{'extra'}->{'brace_command_contents'}->[0]},
12651355 {'code' => 1, Texinfo::Common::_convert_text_options($self)});
1266 my $text = $self->_image_text($root, $basefile);
1267 my $text_result;
1268 if (defined($text)) {
1269 if (!$self->{'formatters'}->[-1]->{'_top_formatter'}) {
1270 $text_result = '['.$text.']';
1271 } else {
1272 $text_result = $text;
1273 }
1274 }
1275 my $result = $self->_image_formatted_text($root, $basefile, $text,
1276 $text_result);
1356 my ($text, $width) = $self->_image_text($root, $basefile);
1357 my $result = $self->_image_formatted_text($root, $basefile, $text);
12771358 my $lines_count = ($result =~ tr/\n/\n/);
1359 if (!defined($width)) {
1360 $width = Texinfo::Convert::Unicode::string_width($result);
1361 }
1362 # the last line is part of the image but do not have a new line,
1363 # so 1 is added to $lines_count to have the number of lines of
1364 # the image
1365 $self->_add_image($root, $lines_count+1, $width);
12781366 return ($result, $lines_count);
12791367 }
12801368 return ('', 0);
22072295 {'indent_level'
22082296 => $self->{'format_context'}->[-1]->{'indent_level'} -1});
22092297 } else {
2210 $result = $self->convert_line ({'contents' => $root->{'extra'}->{'misc_content'}},
2298 $result = $self->convert_line({'contents' => $root->{'extra'}->{'misc_content'}},
22112299 {'indent_level'
22122300 => $self->{'format_context'}->[-1]->{'indent_level'} -1});
22132301 }
27962884 $result .= $self->_count_added($paragraph->{'container'},
27972885 $paragraph->{'container'}->end());
27982886 if ($self->{'context'}->[-1] eq 'flushright') {
2799 $result = $self->_align_environment ($result,
2887 $result = $self->_align_environment($result,
28002888 $self->{'text_element_context'}->[-1]->{'max'}, 'right');
28012889 }
28022890 pop @{$self->{'formatters'}};
275275 my %global_multiple_commands;
276276 foreach my $global_multiple_command (
277277 'author', 'footnote', 'hyphenation', 'insertcopying', 'printindex',
278 'subtitle','titlefont', 'listoffloats',
278 'subtitle','titlefont', 'listoffloats', 'detailmenu',
279279 keys(%Texinfo::Common::document_settable_at_commands), ) {
280280 $global_multiple_commands{$global_multiple_command} = 1;
281281 }
522522 'up' => 'Up'
523523 );
524524
525 sub _check_menu_entry($$$$)
526 {
527 my $self = shift;
528 my $command = shift;
529 my $menu_content = shift;
530 my $check_menu_entries = shift;
531
532 my $menu_node;
533
534 if (!$self->{'labels'}->{$menu_content->{'extra'}->{'menu_entry_node'}->{'normalized'}}) {
535 if ($check_menu_entries) {
536 $self->line_error(sprintf($self->
537 __("\@%s reference to nonexistent node `%s'"),
538 $command,
539 Texinfo::Parser::_node_extra_to_texi(
540 $menu_content->{'extra'}->{'menu_entry_node'})),
541 $menu_content->{'line_nr'});
542 }
543 } else {
544 my $normalized_menu_node
545 = $menu_content->{'extra'}->{'menu_entry_node'}->{'normalized'};
546 $menu_node = $self->{'labels'}->{$normalized_menu_node};
547 if ($check_menu_entries and ! _check_node_same_texinfo_code($menu_node,
548 $menu_content->{'extra'}->{'menu_entry_node'})) {
549 $self->line_warn(sprintf($self->
550 __("\@%s entry node name `%s' different from %s name `%s'"),
551 $command,
552 Texinfo::Parser::_node_extra_to_texi(
553 $menu_content->{'extra'}->{'menu_entry_node'}),
554 $menu_node->{'cmdname'},
555 Texinfo::Parser::_node_extra_to_texi($menu_node->{'extra'})),
556 $menu_content->{'line_nr'});
557 }
558 }
559 return $menu_node;
560 }
561
525562 # first go through all the menu and set menu_up, menu_next, menu_prev
526563 # and warn for unknown nodes.
527564 # then go through all the nodes and set directions
531568 return undef unless ($self->{'nodes'} and @{$self->{'nodes'}});
532569 my $top_node;
533570 my $top_node_up;
571
572 my $check_menu_entries = (!$self->{'novalidate'} and $self->{'SHOW_MENU'});
573
534574 foreach my $node (@{$self->{'nodes'}}) {
535575 if ($node->{'extra'}->{'normalized'} eq 'Top') {
536576 $top_node = $node;
552592 # menu entry before the first node may be treated slightly differently.
553593 # at least, there are no error messages for them
554594
555 my $check_menu_entries = (!$self->{'novalidate'} and $self->{'SHOW_MENU'});
556595 foreach my $menu (@{$node->{'menus'}}) {
557596 my $previous_node;
558597 foreach my $menu_content (@{$menu->{'contents'}}) {
561600 my $menu_node;
562601 my $external_node;
563602 if (!$menu_content->{'extra'}->{'menu_entry_node'}->{'manual_content'}) {
564 if (!$self->{'labels'}->{$menu_content->{'extra'}->{'menu_entry_node'}->{'normalized'}}) {
565 if ($check_menu_entries) {
566 $self->line_error(sprintf($self->
567 __("menu reference to nonexistent node `%s'"),
568 Texinfo::Parser::_node_extra_to_texi(
569 $menu_content->{'extra'}->{'menu_entry_node'})),
570 $menu_content->{'line_nr'});
571 }
572 } else {
573 # this may happen more than once for a given node if the node
574 # is in more than one menu. Therefore all the menu up node
575 # are kept in $menu_node->{'menu_up_hash'}
576 my $normalized_menu_node
577 = $menu_content->{'extra'}->{'menu_entry_node'}->{'normalized'};
578 $menu_node = $self->{'labels'}->{$normalized_menu_node};
579 if ($check_menu_entries and ! _check_node_same_texinfo_code($menu_node,
580 $menu_content->{'extra'}->{'menu_entry_node'})) {
581 $self->line_warn(sprintf($self->
582 __("menu entry node name `%s' different from %s name `%s'"),
583 Texinfo::Parser::_node_extra_to_texi(
584 $menu_content->{'extra'}->{'menu_entry_node'}),
585 $menu_node->{'cmdname'},
586 Texinfo::Parser::_node_extra_to_texi($menu_node->{'extra'})),
587 $menu_content->{'line_nr'});
588 }
603 $menu_node = _check_menu_entry($self, 'menu', $menu_content,
604 $check_menu_entries);
605 # this may happen more than once for a given node if the node
606 # is in more than one menu. Therefore all the menu up node
607 # are kept in $menu_node->{'menu_up_hash'}
608 if ($menu_node) {
589609 $menu_node->{'menu_up'} = $node;
590610 $menu_node->{'menu_up_hash'}->{$node->{'extra'}->{'normalized'}} = 1;
591611 }
611631 }
612632 }
613633 }
634 if ($check_menu_entries) {
635 my $global_commands = $self->global_commands_information();
636 if ($global_commands->{'detailmenu'}) {
637 foreach my $detailmenu (@{$global_commands->{'detailmenu'}}) {
638 foreach my $menu_content (@{$detailmenu->{'contents'}}) {
639 if ($menu_content->{'extra'}
640 and $menu_content->{'extra'}->{'menu_entry_node'}) {
641 if (!$menu_content->{'extra'}->{'menu_entry_node'}->{'manual_content'}) {
642 _check_menu_entry($self, 'detailmenu', $menu_content,
643 $check_menu_entries);
644 }
645 }
646 }
647 }
648 }
649 }
650
614651 $top_node = $self->{'nodes'}->[0] if (!$top_node);
615652 foreach my $node (@{$self->{'nodes'}}) {
616653 # warn if node is not top node and doesn't appear in menu
17541791 foreach my $entry (@{$menu->{'contents'}}) {
17551792 if ($entry->{'type'} and $entry->{'type'} eq 'menu_entry') {
17561793 push @master_menu_contents, Texinfo::Common::copy_tree($entry);
1757 # gather node cheldren to recusrsively print their menus
1794 # gather node children to recusrsively print their menus
17581795 my $entry_node = $entry->{'extra'}->{'menu_entry_node'};
17591796 if (! $entry_node->{'manual_content'}
17601797 and defined($entry_node->{'normalized'})) {
255255 my $cmd = "$commands{$command}->{'exec'} $commands{$command}->{'basefile'} $options";
256256 print STDERR "tex4ht command: $cmd\n" if ($self->get_conf('VERBOSE'));
257257 if (system($cmd)) {
258 $self->document_warn(sprintf(__(
258 $self->document_warn(sprintf($self->__(
259259 "tex4ht.pm: command failed: %s"), $cmd));
260260 return 1;
261261 }
263263 # extract the html from the file created by tex4ht
264264 my $html_basefile = $commands{$command}->{'html_file'};
265265 unless (open (TEX4HT_HTMLFILE, $html_basefile)) {
266 $self->document_warn(sprintf(__("tex4ht.pm: could not open: %s"),
266 $self->document_warn(sprintf($self->__("tex4ht.pm: could not open: %s"),
267267 $html_basefile, $!));
268268 return 1;
269269 }
289289 }
290290 }
291291 unless ($end_found) {
292 $self->document_warn(sprintf(__("tex4ht.pm: end of \@%s item %d not found"),
292 $self->document_warn(sprintf($self->__(
293 "tex4ht.pm: end of \@%s item %d not found"),
293294 $command, $count));
294295 }
295296 }
0 #! /bin/sh
1 # regenerate_cmd_tests.sh: use information from test driving files to
2 # regenerate test scripts that run only one test, and files lists to be
3 # use in Makefiles.
4 # $Id: regenerate_cmd_tests.sh,v 1.1 2013/02/10 15:14:11 pertusus Exp $
5 # Copyright 2013 Free Software Foundation, Inc.
6 #
7 # This file is free software; as a special exception the author gives
8 # unlimited permission to copy and/or distribute it, with or without
9 # modifications, as long as this notice is preserved.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
13 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 #
15 # Originally written by Patrice Dumas.
16
17 #set -x
18
19 test_file='tests-parser.txt'
20 test_scripts_dir='test_scripts'
21
22 test -d $test_scripts_dir || mkdir $test_scripts_dir
23
24 dir=`echo $0 | sed 's,/[^/]*$,,'`
25 outfile=$1
26 shift
27
28 while test z"$1" = 'z-base' -o z"$1" = 'z-long' -o z"$1" = 'z-tex_html'; do
29 if test z"$1" = 'z-base'; then
30 base_test_dirs=$2
31 elif test z"$1" = 'z-long'; then
32 long_test_dirs=$2
33 elif test z"$1" = 'z-tex_html'; then
34 tex_html_test_dirs=$2
35 else
36 echo "Bad args" 1>&2
37 exit 1
38 fi
39 shift
40 shift
41 done
42
43
44 (
45 cd "$dir/../tests" || exit 1
46
47 test_driving_files='test_driving_files_generated_list ='
48 one_test_files='one_test_files_generated_list = '
49
50 gather_tests() {
51 type=$1
52 shift
53 test_dirs=$1
54 for test_dir in $test_dirs; do
55 driving_file=$test_dir/tests-parser.txt
56 if test -f $driving_file; then
57 test_driving_files="$test_driving_files $driving_file"
58 while read line
59 do
60 if echo $line | grep -qs '^ *#'; then continue; fi
61 # there are better ways
62 name=`echo $line | awk '{print $1}'`
63 arg=$name
64 file=`echo $line | awk '{print $2}'`
65 remaining=`echo $line | sed 's/[a-zA-Z0-9_./-]* *[a-zA-Z0-9_./-]* *//'`
66 test "z$name" = 'z' -o "$zfile" = 'z' && continue
67 basename=`basename $file .texi`
68 if test "z$name" = 'ztexi' ; then
69 name="texi_${basename}"
70 arg="texi ${basename}.texi"
71 fi
72 one_test_file="$test_scripts_dir/${test_dir}_$name.sh"
73 one_test_files="$one_test_files \\
74 $one_test_file"
75 echo '#! /bin/sh
76
77 if test z"$srcdir" = "z"; then
78 srcdir=.
79 fi
80
81 command=run_parser_all.sh
82 one_test_logs_dir=test_log
83 diffs_dir=diffs
84
85 ' > $one_test_file
86 if test $type = 'base'; then
87 echo '
88 if test "z$LONG_TESTS" = z"yes"; then
89 echo "Skipping short tests because we are only doing long tests"
90 exit 77
91 fi' >> $one_test_file
92 elif test $type = 'long'; then
93 echo '
94 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
95 echo "Skipping long tests that take a lot of time to run"
96 exit 77
97 fi
98
99 if test "z$TEX_HTML_TESTS" = z"yes"; then
100 echo "Skipping long tests, only doing HTML TeX tests"
101 exit 77
102 fi
103 ' >> $one_test_file
104 elif test $type = 'tex_html'; then
105 echo '
106 if test "z$TEX_HTML_TESTS" != z"yes"; then
107 echo "Skipping HTML TeX tests that are not easily reproducible"
108 exit 77
109 fi
110 ' >> $one_test_file
111 fi
112 echo "dir=$test_dir
113 arg='$arg'
114 name='$name'
115 "'[ -d "$dir" ] || mkdir $dir
116
117 srcdir_test=$dir; export srcdir_test;
118 cd "$dir" || exit 99
119 ../"$srcdir"/"$command" -dir $dir $arg
120 exit_status=$?
121 cat $one_test_logs_dir/$name.log
122 if test -f $diffs_dir/$name.diff; then
123 echo
124 cat $diffs_dir/$name.diff
125 fi
126 exit $exit_status
127 ' >> $one_test_file
128 chmod 0755 $one_test_file
129 done < $driving_file
130 else
131 echo "Missing file $driving_file" 1>&2
132 exit 1
133 fi
134 done
135 }
136
137 basefile=`basename $outfile`
138 cat >$outfile <<END_HEADER
139 # $basefile generated by $0.
140 #
141 # Copyright 2013 Free Software Foundation, Inc.
142 #
143 # This file is free software; as a special exception the author gives
144 # unlimited permission to copy and/or distribute it, with or without
145 # modifications, as long as this notice is preserved.
146 #
147 # This program is distributed in the hope that it will be useful, but
148 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
149 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
150
151 END_HEADER
152
153 gather_tests long "$long_test_dirs"
154 gather_tests base "$base_test_dirs"
155 gather_tests tex_html "$tex_html_test_dirs"
156
157 echo "$test_driving_files
158 " >> $outfile
159
160 echo "$one_test_files
161 " >>$outfile
162
163 )
00 #! /bin/sh
1 # $Id: regenerate_docstr.sh,v 1.2 2013/02/03 23:53:48 karl Exp $
1 # $Id: regenerate_docstr.sh,v 1.3 2013/02/10 15:14:12 pertusus Exp $
22 # Copyright 2011, 2012, 2013 Free Software Foundation, Inc.
33 #
44 # This file is free software; as a special exception the author gives
2222 exit 1
2323 fi
2424
25 echo >$outfile <<END_HEADER
26 # Makefile.docstr generated by $0.
25 basefile=`basename $outfile`
26 cat >$outfile <<END_HEADER
27 # $basefile generated by $0.
2728 #
2829 # Copyright 2013 Free Software Foundation, Inc.
2930 #
3435 # This program is distributed in the hope that it will be useful, but
3536 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
3637 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
38
3739 END_HEADER
3840
3941 for lingua in `cat ../po_document/LINGUAS`; do
00 #! /usr/bin/env perl
1 # $Id: regenerate_file_lists.pl,v 1.13 2013/02/03 23:53:48 karl Exp $
1 # $Id: regenerate_file_lists.pl,v 1.14 2013/02/09 21:24:21 pertusus Exp $
22 # Copyright 2011, 2012 Free Software Foundation, Inc.
33 #
44 # This file is free software; as a special exception the author gives
2222 use File::Basename;
2323 use File::Spec;
2424
25 my %files;
26
2725 my ($command, $mydir, $suffix) = fileparse($0);
2826 my $parent = File::Spec->catdir($mydir, File::Spec->updir());
2927 chdir($parent) || die "chdir $parent: $!";
3028 -d "t" || (die "goodbye, no t directory in " . `pwd`);
3129
30 my %files;
3231 find (\&wanted, ('t'));
3332 sub wanted
3433 {
3534 if ((/\.pl$/ and $File::Find::dir =~ m:^t/results/[^/]+:)
36 or (/\.t$/ and $File::Find::dir =~ /t$/)
3735 or (!/^CVS$/ and $File::Find::dir =~ m:^t/results/[^/]+/[^/]+/res_[^/]+$:)) {
3836 $files{$File::Find::name} = 1;
37 }
38 }
39
40 my %tap_files;
41 find (\&wanted_tap_files, ('t'));
42 sub wanted_tap_files
43 {
44 if (/\.t$/ and $File::Find::dir =~ /t$/) {
45 $tap_files{$File::Find::name} = 1;
3946 }
4047 }
4148
6471 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
6572 EOH
6673
67 print INCLUDE "test_files_generated_list =";
74 print INCLUDE 'test_tap_files_generated_list =';
75 foreach my $file (sort(keys(%tap_files))) {
76 print INCLUDE " \\\n $file";
77 }
78 print INCLUDE "\n\n";
79
80 print INCLUDE 'test_files_generated_list = $(test_tap_files_generated_list)';
6881 foreach my $file (sort(keys(%files)), sort(keys(%include_files))) {
6982 print INCLUDE " \\\n $file";
7083 }
55 use strict;
66
77 use Test::More;
8 BEGIN { plan tests => 2 };
8 use File::Spec;
9 BEGIN { plan tests => 2;
10 if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
911 use Texinfo::Convert::Texinfo;
1012 ok(1, "modules loading"); # If we made it this far, we're ok.
1113
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use Test::More;
11 use strict;
2
3 use File::Spec;
4 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
25
36 require 't/test_utils.pl';
47
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
173176 @node unnumberedsec
174177 @unnumberedsec unnumberedsec
175178 '],
179 ['detailmenu_unknown_node',
180 '@node Top
181
182 @menu
183 @detailmenu
184 * unknown::
185 @end detailmenu
186 @end menu
187 '],
176188 ['reference_to_external_manual',
177189 '
178190 @node Top
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 63 };
3 use File::Spec;
4 BEGIN { plan tests => 63;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 5 };
3 use File::Spec;
4 BEGIN { plan tests => 5;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 25 };
3 use File::Spec;
4 BEGIN { plan tests => 25;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 15 };
3 use File::Spec;
4 BEGIN { plan tests => 15;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
12
413 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
514 use lib 'maintain/lib/libintl-perl/lib/';
615 use lib 'maintain/lib/Text-Unidecode/lib/';
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 5 };
3 use File::Spec;
4 BEGIN { plan tests => 5;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 4 };
3 use File::Spec;
4 BEGIN { plan tests => 4;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
12
413 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
514 use lib 'maintain/lib/libintl-perl/lib/';
615 use lib 'maintain/lib/Text-Unidecode/lib/';
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 2 };
3 use File::Spec;
4 BEGIN { plan tests => 2;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 6 };
3 use File::Spec;
4 BEGIN { plan tests => 6;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
409412 * tOP::
410413 @end menu
411414 '],
412 # since there is no split in the test suite, there is no split tested
413 # here, in fact.
415 # since there is no split in the test suite, there is no split tested
416 # here, in fact.
414417 ['split_no_copying',
415418 '\input texinfo
416419 @setfilename split-nocopying.info
785788 Second anchor in text @anchor{second anchor in flushright} after anchor.
786789 @end flushright
787790 '],
791 # if this test is changed, the corresponding test in t/plaintext_tests.t
792 # should be changed too
793 ['multiline_image_and_align',
794 '@center @image{figure}
795
796 @center CCCC @image{figure}
797
798 @center fffffffffffffffffffffffffffffffffffffff @image{figure}
799
800 @center dddd @image{figure} iiiii
801
802 @flushright
803 AAA
804 @image{figure}
805
806 BBB @image{figure} gggg @image{figure}
807
808 HHH
809 @image{figure} JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ
810 @end flushright
811
812 @center @image{figure, , , ,txt}
813
814 @center CCCC @image{figure, , , ,txt}
815
816 @center fffffffffffffffffffffffffffffffffffffff @image{figure, , , ,txt}
817
818 @center dddd @image{figure, , , ,txt} iiiii
819
820 @flushright
821 AAA
822 @image{figure, , , ,txt}
823
824 BBB @image{figure, , , ,txt} gggg @image{figure, , , ,txt}
825
826 HHH
827 @image{figure, , , ,txt} JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ
828 @end flushright
829 '],
788830 );
789831
790832 foreach my $test (@test_cases) {
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
0 use strict;
1
02 use Test::More;
1 BEGIN { plan tests => 8 };
3 use File::Spec;
4 BEGIN { plan tests => 8;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
12
213 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
314 use lib 'maintain/lib/libintl-perl/lib/';
415 use lib 'maintain/lib/Text-Unidecode/lib/';
516 use Texinfo::Convert::NodeNameNormalization qw(normalize_node transliterate_texinfo);
617 use Texinfo::Parser;
718 use Data::Dumper;
8
9 use strict;
1019
1120 # Currently, tests check that NodeNameNormalization do not break with complete
1221 # Texinfo trees, not that the output is correct.
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 129 };
3 use File::Spec;
4 BEGIN { plan tests => 129;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
12
413 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
514 use Texinfo::Convert::Paragraph;
615 use Texinfo::Convert::Line;
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
592595 @item in item
593596 @end example
594597 '],
598 # if this test is modified, the corresponding test in t/info_tests.t should
599 # be changed too
600 ['multiline_image_and_align',
601 '@center @image{figure}
602
603 @center CCCC @image{figure}
604
605 @center fffffffffffffffffffffffffffffffffffffff @image{figure}
606
607 @center dddd @image{figure} iiiii
608
609 @flushright
610 AAA
611 @image{figure}
612
613 BBB @image{figure} gggg @image{figure}
614
615 HHH
616 @image{figure} JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ
617 @end flushright
618 '],
595619 );
596620
597621 my $insert_copying_and_paragraph =
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 4 };
3 use File::Spec;
4 BEGIN { plan tests => 4;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 2 };
3 use File::Spec;
4 BEGIN { plan tests => 2;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
5656 <a name="Preface"></a>
5757 <div class="header">
5858 <p>
59 ŽŸ: <a href="Introduction.html#Introduction" accesskey="n" rel="next">Introduction</a>, Previous: <a href="index.html#Top" accesskey="p" rel="previous">Top</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> &nbsp; </p>
59 Next: <a href="Introduction.html#Introduction" accesskey="n" rel="next">Introduction</a>, Previous: <a href="index.html#Top" accesskey="p" rel="previous">Top</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> &nbsp; </p>
6060 </div>
6161 <hr>
6262 <a name="Preface-1"></a>
5858 <a name="Top"></a>
5959 <div class="header">
6060 <p>
61 ŽŸ: <a href="Preface.html#Preface" accesskey="n" rel="next">Preface</a>, Up: <a href="../dir/index.html" accesskey="u" rel="up">(dir)</a> &nbsp; </p>
61 Next: <a href="Preface.html#Preface" accesskey="n" rel="next">Preface</a>, Up: <a href="../dir/index.html" accesskey="u" rel="up">(dir)</a> &nbsp; </p>
6262 </div>
6363 <hr>
6464 <a name="GNU-LilyPond-_002d_002d_002d-XueXimaniyuaru"></a>
7878 <hr>
7979 <div class="header">
8080 <p>
81 ŽŸ: <a href="Preface.html#Preface" accesskey="n" rel="next">Preface</a>, Up: <a href="../dir/index.html" accesskey="u" rel="up">(dir)</a> &nbsp; </p>
81 Next: <a href="Preface.html#Preface" accesskey="n" rel="next">Preface</a>, Up: <a href="../dir/index.html" accesskey="u" rel="up">(dir)</a> &nbsp; </p>
8282 </div>
8383
8484
10171017 'type' => 'error'
10181018 },
10191019 {
1020 'error_line' => ':4: menu reference to nonexistent node `@ @ \'
1020 'error_line' => ':4: @menu reference to nonexistent node `@ @ \'
10211021 ',
10221022 'file_name' => '',
10231023 'line_nr' => 4,
10241024 'macro' => '',
1025 'text' => 'menu reference to nonexistent node `@ @ \'',
1025 'text' => '@menu reference to nonexistent node `@ @ \'',
10261026 'type' => 'error'
10271027 },
10281028 {
1029 'error_line' => ':5: menu reference to nonexistent node `@verb{: :}\'
1029 'error_line' => ':5: @menu reference to nonexistent node `@verb{: :}\'
10301030 ',
10311031 'file_name' => '',
10321032 'line_nr' => 5,
10331033 'macro' => '',
1034 'text' => 'menu reference to nonexistent node `@verb{: :}\'',
1034 'text' => '@menu reference to nonexistent node `@verb{: :}\'',
10351035 'type' => 'error'
10361036 },
10371037 {
1038 'error_line' => ':6: menu reference to nonexistent node `@ \'
1038 'error_line' => ':6: @menu reference to nonexistent node `@ \'
10391039 ',
10401040 'file_name' => '',
10411041 'line_nr' => 6,
10421042 'macro' => '',
1043 'text' => 'menu reference to nonexistent node `@ \'',
1043 'text' => '@menu reference to nonexistent node `@ \'',
10441044 'type' => 'error'
10451045 }
10461046 ];
11161116 'type' => 'warning'
11171117 },
11181118 {
1119 'error_line' => ':6: warning: menu entry node name `c@ \' different from node name `c@w{ }\'
1119 'error_line' => ':6: warning: @menu entry node name `c@ \' different from node name `c@w{ }\'
11201120 ',
11211121 'file_name' => '',
11221122 'line_nr' => 6,
11231123 'macro' => '',
1124 'text' => 'menu entry node name `c@ \' different from node name `c@w{ }\'',
1124 'text' => '@menu entry node name `c@ \' different from node name `c@w{ }\'',
11251125 'type' => 'warning'
11261126 }
11271127 ];
203203
204204
205205
206 $result_converted{'plaintext'}->{'space_in_image'} = 'An image text before paragraph.. [Another image text, in paragraph.].
206 $result_converted{'plaintext'}->{'space_in_image'} = 'An image text before paragraph.. Another image text, in paragraph..
207207 ';
208208
209209
12531253 File: , Node: Top, Up: (dir)
12541254
12551255 This is an image words.This is an image words.This is an image words.This is an image words.This is an image words.This is an image words.This is an image words.
1256 Some text [This is an image words.] [This is an image words.] [This is an image words.] [This is an image words.] [This is an image words.] [This is an image words.] [This is an image words.].
1257
1258 Some text [This is an image words.] text aaaaaaaaa [This is an image words.] text bbbbbbbbbbb [This is an image words.] text ccccccccccccc [This is an image words.] text
1259 ddddddddddddd [This is an image words.] text eeeeeeeeeeeeeee [This is an image words.] text fffffffffff [This is an image words.].
1260
1261 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA [This is an image words.]
1256 Some text This is an image words. This is an image words. This is an image words. This is an image words. This is an image words. This is an image words. This is an image words..
1257
1258 Some text This is an image words. text aaaaaaaaa This is an image words. text bbbbbbbbbbb This is an image words. text ccccccccccccc This is an image words. text
1259 ddddddddddddd This is an image words. text eeeeeeeeeeeeeee This is an image words. text fffffffffff This is an image words..
1260
1261 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA This is an image words.
12621262
12631263 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBB
1264 [This is an image words.]
1265 Text. [This is an image words.] [This is an image words.].
1264 This is an image words.
1265 Text. This is an image words. This is an image words..
12661266
12671267
12681268 
434434 'type' => 'warning'
435435 },
436436 {
437 'error_line' => ':6: warning: menu entry node name `tOP\' different from node name `ToP\'
437 'error_line' => ':6: warning: @menu entry node name `tOP\' different from node name `ToP\'
438438 ',
439439 'file_name' => '',
440440 'line_nr' => 6,
441441 'macro' => '',
442 'text' => 'menu entry node name `tOP\' different from node name `ToP\'',
442 'text' => '@menu entry node name `tOP\' different from node name `ToP\'',
443443 'type' => 'warning'
444444 },
445445 {
6969 <a name="chapter-ja"></a>
7070 <div class="header">
7171 <p>
72 次: <a href="#chapter-en" accesskey="n" rel="next">chapter en</a>, Previous: <a href="#Top" accesskey="p" rel="previous">Top</a>, Up: <a href="#Top" accesskey="u" rel="up">Top</a> &nbsp; </p>
72 Next: <a href="#chapter-en" accesskey="n" rel="next">chapter en</a>, Previous: <a href="#Top" accesskey="p" rel="previous">Top</a>, Up: <a href="#Top" accesskey="u" rel="up">Top</a> &nbsp; </p>
7373 </div>
7474 <a name="ja"></a>
7575 <h2 class="chapter">1 ja</h2>
7272 <table class="header" cellpadding="1" cellspacing="1" border="0">
7373 <tr><td valign="middle" align="left">[<a href="#Top" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
7474 <td valign="middle" align="left">[<a href="#Top" title="Previous section in reading order"> &lt; </a>]</td>
75 <td valign="middle" align="left">[<a href="#Top" title="Up section">上</a>]</td>
75 <td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
7676 <td valign="middle" align="left">[<a href="#chapter-en" title="Next section in reading order"> &gt; </a>]</td>
7777 <td valign="middle" align="left">[<a href="#chapter-en" title="Next chapter"> &gt;&gt; </a>]</td>
7878 <td valign="middle" align="left"> &nbsp; </td>
7979 <td valign="middle" align="left"> &nbsp; </td>
8080 <td valign="middle" align="left"> &nbsp; </td>
8181 <td valign="middle" align="left"> &nbsp; </td>
82 <td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">冒頭</a>]</td>
83 <td valign="middle" align="left">[目次]</td>
84 <td valign="middle" align="left">[見出し]</td>
82 <td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
83 <td valign="middle" align="left">[Contents]</td>
84 <td valign="middle" align="left">[Index]</td>
8585 <td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
8686 </tr></table>
8787 <a name="ja"></a>
140140
141141
142142
143 $result_converted{'plaintext'}->{'image_in_paragraph'} = 'Para. [Text for image out of paragraph.]. After image.
143 $result_converted{'plaintext'}->{'image_in_paragraph'} = 'Para. Text for image out of paragraph.. After image.
144144 ';
145145
146146
0 use vars qw(%result_texis %result_texts %result_trees %result_errors
1 %result_indices %result_sectioning %result_nodes %result_menus
2 %result_floats %result_converted %result_converted_errors
3 %result_elements %result_directions_text);
4
5 use utf8;
6
7 $result_trees{'multiline_image_and_align'} = {
8 'contents' => [
9 {
10 'args' => [
11 {
12 'contents' => [
13 {
14 'extra' => {
15 'command' => {}
16 },
17 'parent' => {},
18 'text' => ' ',
19 'type' => 'empty_spaces_after_command'
20 },
21 {
22 'args' => [
23 {
24 'contents' => [
25 {
26 'parent' => {},
27 'text' => 'figure'
28 }
29 ],
30 'parent' => {},
31 'type' => 'brace_command_arg'
32 }
33 ],
34 'cmdname' => 'image',
35 'contents' => [],
36 'extra' => {
37 'brace_command_contents' => [
38 [
39 {}
40 ]
41 ],
42 'spaces_before_argument' => {
43 'text' => '',
44 'type' => 'empty_spaces_before_argument'
45 }
46 },
47 'line_nr' => {
48 'file_name' => '',
49 'line_nr' => 1,
50 'macro' => ''
51 },
52 'parent' => {}
53 },
54 {
55 'parent' => {},
56 'text' => '
57 ',
58 'type' => 'spaces_at_end'
59 }
60 ],
61 'parent' => {},
62 'type' => 'misc_line_arg'
63 }
64 ],
65 'cmdname' => 'center',
66 'extra' => {
67 'misc_content' => [
68 {}
69 ],
70 'spaces_after_command' => {}
71 },
72 'line_nr' => {},
73 'parent' => {}
74 },
75 {
76 'parent' => {},
77 'text' => '
78 ',
79 'type' => 'empty_line'
80 },
81 {
82 'args' => [
83 {
84 'contents' => [
85 {
86 'extra' => {
87 'command' => {}
88 },
89 'parent' => {},
90 'text' => ' ',
91 'type' => 'empty_spaces_after_command'
92 },
93 {
94 'parent' => {},
95 'text' => 'CCCC '
96 },
97 {
98 'args' => [
99 {
100 'contents' => [
101 {
102 'parent' => {},
103 'text' => 'figure'
104 }
105 ],
106 'parent' => {},
107 'type' => 'brace_command_arg'
108 }
109 ],
110 'cmdname' => 'image',
111 'contents' => [],
112 'extra' => {
113 'brace_command_contents' => [
114 [
115 {}
116 ]
117 ],
118 'spaces_before_argument' => {
119 'text' => '',
120 'type' => 'empty_spaces_before_argument'
121 }
122 },
123 'line_nr' => {
124 'file_name' => '',
125 'line_nr' => 3,
126 'macro' => ''
127 },
128 'parent' => {}
129 },
130 {
131 'parent' => {},
132 'text' => '
133 ',
134 'type' => 'spaces_at_end'
135 }
136 ],
137 'parent' => {},
138 'type' => 'misc_line_arg'
139 }
140 ],
141 'cmdname' => 'center',
142 'extra' => {
143 'misc_content' => [
144 {},
145 {}
146 ],
147 'spaces_after_command' => {}
148 },
149 'line_nr' => {},
150 'parent' => {}
151 },
152 {
153 'parent' => {},
154 'text' => '
155 ',
156 'type' => 'empty_line'
157 },
158 {
159 'args' => [
160 {
161 'contents' => [
162 {
163 'extra' => {
164 'command' => {}
165 },
166 'parent' => {},
167 'text' => ' ',
168 'type' => 'empty_spaces_after_command'
169 },
170 {
171 'parent' => {},
172 'text' => 'fffffffffffffffffffffffffffffffffffffff '
173 },
174 {
175 'args' => [
176 {
177 'contents' => [
178 {
179 'parent' => {},
180 'text' => 'figure'
181 }
182 ],
183 'parent' => {},
184 'type' => 'brace_command_arg'
185 }
186 ],
187 'cmdname' => 'image',
188 'contents' => [],
189 'extra' => {
190 'brace_command_contents' => [
191 [
192 {}
193 ]
194 ],
195 'spaces_before_argument' => {
196 'text' => '',
197 'type' => 'empty_spaces_before_argument'
198 }
199 },
200 'line_nr' => {
201 'file_name' => '',
202 'line_nr' => 5,
203 'macro' => ''
204 },
205 'parent' => {}
206 },
207 {
208 'parent' => {},
209 'text' => '
210 ',
211 'type' => 'spaces_at_end'
212 }
213 ],
214 'parent' => {},
215 'type' => 'misc_line_arg'
216 }
217 ],
218 'cmdname' => 'center',
219 'extra' => {
220 'misc_content' => [
221 {},
222 {}
223 ],
224 'spaces_after_command' => {}
225 },
226 'line_nr' => {},
227 'parent' => {}
228 },
229 {
230 'parent' => {},
231 'text' => '
232 ',
233 'type' => 'empty_line'
234 },
235 {
236 'args' => [
237 {
238 'contents' => [
239 {
240 'extra' => {
241 'command' => {}
242 },
243 'parent' => {},
244 'text' => ' ',
245 'type' => 'empty_spaces_after_command'
246 },
247 {
248 'parent' => {},
249 'text' => 'dddd '
250 },
251 {
252 'args' => [
253 {
254 'contents' => [
255 {
256 'parent' => {},
257 'text' => 'figure'
258 }
259 ],
260 'parent' => {},
261 'type' => 'brace_command_arg'
262 }
263 ],
264 'cmdname' => 'image',
265 'contents' => [],
266 'extra' => {
267 'brace_command_contents' => [
268 [
269 {}
270 ]
271 ],
272 'spaces_before_argument' => {
273 'text' => '',
274 'type' => 'empty_spaces_before_argument'
275 }
276 },
277 'line_nr' => {
278 'file_name' => '',
279 'line_nr' => 7,
280 'macro' => ''
281 },
282 'parent' => {}
283 },
284 {
285 'parent' => {},
286 'text' => ' iiiii'
287 },
288 {
289 'parent' => {},
290 'text' => '
291 ',
292 'type' => 'spaces_at_end'
293 }
294 ],
295 'parent' => {},
296 'type' => 'misc_line_arg'
297 }
298 ],
299 'cmdname' => 'center',
300 'extra' => {
301 'misc_content' => [
302 {},
303 {},
304 {}
305 ],
306 'spaces_after_command' => {}
307 },
308 'line_nr' => {},
309 'parent' => {}
310 },
311 {
312 'parent' => {},
313 'text' => '
314 ',
315 'type' => 'empty_line'
316 },
317 {
318 'cmdname' => 'flushright',
319 'contents' => [
320 {
321 'extra' => {
322 'command' => {}
323 },
324 'parent' => {},
325 'text' => '
326 ',
327 'type' => 'empty_line_after_command'
328 },
329 {
330 'contents' => [
331 {
332 'parent' => {},
333 'text' => 'AAA
334 '
335 },
336 {
337 'args' => [
338 {
339 'contents' => [
340 {
341 'parent' => {},
342 'text' => 'figure'
343 }
344 ],
345 'parent' => {},
346 'type' => 'brace_command_arg'
347 }
348 ],
349 'cmdname' => 'image',
350 'contents' => [],
351 'extra' => {
352 'brace_command_contents' => [
353 [
354 {}
355 ]
356 ],
357 'spaces_before_argument' => {
358 'text' => '',
359 'type' => 'empty_spaces_before_argument'
360 }
361 },
362 'line_nr' => {
363 'file_name' => '',
364 'line_nr' => 11,
365 'macro' => ''
366 },
367 'parent' => {}
368 },
369 {
370 'parent' => {},
371 'text' => '
372 '
373 }
374 ],
375 'parent' => {},
376 'type' => 'paragraph'
377 },
378 {
379 'parent' => {},
380 'text' => '
381 ',
382 'type' => 'empty_line'
383 },
384 {
385 'contents' => [
386 {
387 'parent' => {},
388 'text' => 'BBB '
389 },
390 {
391 'args' => [
392 {
393 'contents' => [
394 {
395 'parent' => {},
396 'text' => 'figure'
397 }
398 ],
399 'parent' => {},
400 'type' => 'brace_command_arg'
401 }
402 ],
403 'cmdname' => 'image',
404 'contents' => [],
405 'extra' => {
406 'brace_command_contents' => [
407 [
408 {}
409 ]
410 ],
411 'spaces_before_argument' => {
412 'text' => '',
413 'type' => 'empty_spaces_before_argument'
414 }
415 },
416 'line_nr' => {
417 'file_name' => '',
418 'line_nr' => 13,
419 'macro' => ''
420 },
421 'parent' => {}
422 },
423 {
424 'parent' => {},
425 'text' => ' gggg '
426 },
427 {
428 'args' => [
429 {
430 'contents' => [
431 {
432 'parent' => {},
433 'text' => 'figure'
434 }
435 ],
436 'parent' => {},
437 'type' => 'brace_command_arg'
438 }
439 ],
440 'cmdname' => 'image',
441 'contents' => [],
442 'extra' => {
443 'brace_command_contents' => [
444 [
445 {}
446 ]
447 ],
448 'spaces_before_argument' => {
449 'text' => '',
450 'type' => 'empty_spaces_before_argument'
451 }
452 },
453 'line_nr' => {},
454 'parent' => {}
455 },
456 {
457 'parent' => {},
458 'text' => '
459 '
460 }
461 ],
462 'parent' => {},
463 'type' => 'paragraph'
464 },
465 {
466 'parent' => {},
467 'text' => '
468 ',
469 'type' => 'empty_line'
470 },
471 {
472 'contents' => [
473 {
474 'parent' => {},
475 'text' => 'HHH
476 '
477 },
478 {
479 'args' => [
480 {
481 'contents' => [
482 {
483 'parent' => {},
484 'text' => 'figure'
485 }
486 ],
487 'parent' => {},
488 'type' => 'brace_command_arg'
489 }
490 ],
491 'cmdname' => 'image',
492 'contents' => [],
493 'extra' => {
494 'brace_command_contents' => [
495 [
496 {}
497 ]
498 ],
499 'spaces_before_argument' => {
500 'text' => '',
501 'type' => 'empty_spaces_before_argument'
502 }
503 },
504 'line_nr' => {
505 'file_name' => '',
506 'line_nr' => 16,
507 'macro' => ''
508 },
509 'parent' => {}
510 },
511 {
512 'parent' => {},
513 'text' => ' JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ
514 '
515 }
516 ],
517 'parent' => {},
518 'type' => 'paragraph'
519 },
520 {
521 'args' => [
522 {
523 'contents' => [
524 {
525 'extra' => {
526 'command' => {}
527 },
528 'parent' => {},
529 'text' => ' ',
530 'type' => 'empty_spaces_after_command'
531 },
532 {
533 'parent' => {},
534 'text' => 'flushright'
535 },
536 {
537 'parent' => {},
538 'text' => '
539 ',
540 'type' => 'spaces_at_end'
541 }
542 ],
543 'parent' => {},
544 'type' => 'misc_line_arg'
545 }
546 ],
547 'cmdname' => 'end',
548 'extra' => {
549 'command' => {},
550 'command_argument' => 'flushright',
551 'spaces_after_command' => {},
552 'text_arg' => 'flushright'
553 },
554 'line_nr' => {
555 'file_name' => '',
556 'line_nr' => 17,
557 'macro' => ''
558 },
559 'parent' => {}
560 }
561 ],
562 'extra' => {
563 'end_command' => {},
564 'spaces_after_command' => {}
565 },
566 'line_nr' => {
567 'file_name' => '',
568 'line_nr' => 9,
569 'macro' => ''
570 },
571 'parent' => {}
572 }
573 ],
574 'type' => 'text_root'
575 };
576 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'multiline_image_and_align'}{'contents'}[0];
577 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0];
578 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[1]{'args'}[0];
579 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[1]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[1];
580 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[1]{'extra'}{'brace_command_contents'}[0][0] = $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[1]{'args'}[0]{'contents'}[0];
581 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0];
582 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0];
583 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[0];
584 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'extra'}{'misc_content'}[0] = $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[1];
585 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'extra'}{'spaces_after_command'} = $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[0];
586 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'line_nr'} = $result_trees{'multiline_image_and_align'}{'contents'}[0]{'args'}[0]{'contents'}[1]{'line_nr'};
587 $result_trees{'multiline_image_and_align'}{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'};
588 $result_trees{'multiline_image_and_align'}{'contents'}[1]{'parent'} = $result_trees{'multiline_image_and_align'};
589 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'multiline_image_and_align'}{'contents'}[2];
590 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0];
591 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0];
592 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'args'}[0];
593 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[2];
594 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'extra'}{'brace_command_contents'}[0][0] = $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0];
595 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0];
596 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[3]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0];
597 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[2];
598 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'extra'}{'misc_content'}[0] = $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[1];
599 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'extra'}{'misc_content'}[1] = $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[2];
600 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'extra'}{'spaces_after_command'} = $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[0];
601 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'line_nr'} = $result_trees{'multiline_image_and_align'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'line_nr'};
602 $result_trees{'multiline_image_and_align'}{'contents'}[2]{'parent'} = $result_trees{'multiline_image_and_align'};
603 $result_trees{'multiline_image_and_align'}{'contents'}[3]{'parent'} = $result_trees{'multiline_image_and_align'};
604 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'multiline_image_and_align'}{'contents'}[4];
605 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0];
606 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0];
607 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'args'}[0];
608 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[2];
609 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'extra'}{'brace_command_contents'}[0][0] = $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0];
610 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0];
611 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[3]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0];
612 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[4];
613 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'extra'}{'misc_content'}[0] = $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[1];
614 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'extra'}{'misc_content'}[1] = $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[2];
615 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'extra'}{'spaces_after_command'} = $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[0];
616 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'line_nr'} = $result_trees{'multiline_image_and_align'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'line_nr'};
617 $result_trees{'multiline_image_and_align'}{'contents'}[4]{'parent'} = $result_trees{'multiline_image_and_align'};
618 $result_trees{'multiline_image_and_align'}{'contents'}[5]{'parent'} = $result_trees{'multiline_image_and_align'};
619 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'multiline_image_and_align'}{'contents'}[6];
620 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0];
621 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0];
622 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'args'}[0];
623 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[2];
624 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'extra'}{'brace_command_contents'}[0][0] = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0];
625 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0];
626 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[3]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0];
627 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[4]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0];
628 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[6];
629 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'extra'}{'misc_content'}[0] = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[1];
630 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'extra'}{'misc_content'}[1] = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[2];
631 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'extra'}{'misc_content'}[2] = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[3];
632 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'extra'}{'spaces_after_command'} = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[0];
633 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'line_nr'} = $result_trees{'multiline_image_and_align'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'line_nr'};
634 $result_trees{'multiline_image_and_align'}{'contents'}[6]{'parent'} = $result_trees{'multiline_image_and_align'};
635 $result_trees{'multiline_image_and_align'}{'contents'}[7]{'parent'} = $result_trees{'multiline_image_and_align'};
636 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[0]{'extra'}{'command'} = $result_trees{'multiline_image_and_align'}{'contents'}[8];
637 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8];
638 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1];
639 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[0];
640 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1]{'contents'}[1];
641 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'extra'}{'brace_command_contents'}[0][0] = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'args'}[0]{'contents'}[0];
642 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1]{'contents'}[1]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1];
643 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1]{'contents'}[2]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1];
644 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[1]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8];
645 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[2]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8];
646 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3];
647 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[1]{'args'}[0];
648 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[1]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[1];
649 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[1]{'extra'}{'brace_command_contents'}[0][0] = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[0];
650 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[1]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3];
651 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[2]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3];
652 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[3]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[3]{'args'}[0];
653 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[3]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[3];
654 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[3]{'extra'}{'brace_command_contents'}[0][0] = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[3]{'args'}[0]{'contents'}[0];
655 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[3]{'line_nr'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[1]{'line_nr'};
656 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[3]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3];
657 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'contents'}[4]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3];
658 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[3]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8];
659 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[4]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8];
660 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5];
661 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5]{'contents'}[1]{'args'}[0];
662 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5]{'contents'}[1]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5]{'contents'}[1];
663 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5]{'contents'}[1]{'extra'}{'brace_command_contents'}[0][0] = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5]{'contents'}[1]{'args'}[0]{'contents'}[0];
664 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5]{'contents'}[1]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5];
665 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5]{'contents'}[2]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5];
666 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[5]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8];
667 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'args'}[0]{'contents'}[0]{'extra'}{'command'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6];
668 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'args'}[0]{'contents'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'args'}[0];
669 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'args'}[0]{'contents'}[1]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'args'}[0];
670 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'args'}[0]{'contents'}[2]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'args'}[0];
671 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'args'}[0]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6];
672 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'extra'}{'command'} = $result_trees{'multiline_image_and_align'}{'contents'}[8];
673 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'extra'}{'spaces_after_command'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'args'}[0]{'contents'}[0];
674 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6]{'parent'} = $result_trees{'multiline_image_and_align'}{'contents'}[8];
675 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'extra'}{'end_command'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[6];
676 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'extra'}{'spaces_after_command'} = $result_trees{'multiline_image_and_align'}{'contents'}[8]{'contents'}[0];
677 $result_trees{'multiline_image_and_align'}{'contents'}[8]{'parent'} = $result_trees{'multiline_image_and_align'};
678
679 $result_texis{'multiline_image_and_align'} = '@center @image{figure}
680
681 @center CCCC @image{figure}
682
683 @center fffffffffffffffffffffffffffffffffffffff @image{figure}
684
685 @center dddd @image{figure} iiiii
686
687 @flushright
688 AAA
689 @image{figure}
690
691 BBB @image{figure} gggg @image{figure}
692
693 HHH
694 @image{figure} JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ
695 @end flushright
696 ';
697
698
699 $result_texts{'multiline_image_and_align'} = 'figure
700
701 CCCC figure
702
703 fffffffffffffffffffffffffffffffffffffff figure
704
705 dddd figure iiiii
706
707 AAA
708 figure
709
710 BBB figure gggg figure
711
712 HHH
713 figure JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ
714 ';
715
716 $result_errors{'multiline_image_and_align'} = [];
717
718
719
720 $result_converted{'plaintext'}->{'multiline_image_and_align'} = ' 1 A B
721 2 C D
722 3 E F
723
724 CCCC 1 A B
725 2 C D
726 3 E F
727
728 fffffffffffffffffffffffffffffffffffffff 1 A B
729 2 C D
730 3 E F
731
732 dddd 1 A B
733 2 C D
734 3 E F iiiii
735
736 AAA
737 1 A B
738 2 C D
739 3 E F
740
741 BBB 1 A B
742 2 C D
743 3 E F gggg 1 A B
744 2 C D
745 3 E F
746
747 HHH
748 1 A B
749 2 C D
750 3 E FJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ
751 ';
752
753 1;
539539 'type' => 'error continuation'
540540 },
541541 {
542 'error_line' => ':5: warning: menu entry node name `top\' different from node name `ToP\'
542 'error_line' => ':5: warning: @menu entry node name `top\' different from node name `ToP\'
543543 ',
544544 'file_name' => '',
545545 'line_nr' => 5,
546546 'macro' => '',
547 'text' => 'menu entry node name `top\' different from node name `ToP\'',
547 'text' => '@menu entry node name `top\' different from node name `ToP\'',
548548 'type' => 'warning'
549549 },
550550 {
551 'error_line' => ':6: warning: menu entry node name `TOP\' different from node name `ToP\'
551 'error_line' => ':6: warning: @menu entry node name `TOP\' different from node name `ToP\'
552552 ',
553553 'file_name' => '',
554554 'line_nr' => 6,
555555 'macro' => '',
556 'text' => 'menu entry node name `TOP\' different from node name `ToP\'',
556 'text' => '@menu entry node name `TOP\' different from node name `ToP\'',
557557 'type' => 'warning'
558558 },
559559 {
692692
693693 $result_errors{'equivalent_labels'} = [
694694 {
695 'error_line' => ':10: warning: menu entry node name `anch\' different from anchor name `@samp{anch}\'
695 'error_line' => ':10: warning: @menu entry node name `anch\' different from anchor name `@samp{anch}\'
696696 ',
697697 'file_name' => '',
698698 'line_nr' => 10,
699699 'macro' => '',
700 'text' => 'menu entry node name `anch\' different from anchor name `@samp{anch}\'',
700 'text' => '@menu entry node name `anch\' different from anchor name `@samp{anch}\'',
701701 'type' => 'warning'
702702 },
703703 {
704 'error_line' => ':11: warning: menu entry node name `@code{floa}\' different from float name `floa\'
704 'error_line' => ':11: warning: @menu entry node name `@code{floa}\' different from float name `floa\'
705705 ',
706706 'file_name' => '',
707707 'line_nr' => 11,
708708 'macro' => '',
709 'text' => 'menu entry node name `@code{floa}\' different from float name `floa\'',
709 'text' => '@menu entry node name `@code{floa}\' different from float name `floa\'',
710710 'type' => 'warning'
711711 }
712712 ];
516516 'type' => 'warning'
517517 },
518518 {
519 'error_line' => ':4: warning: menu entry node name `@strong{node}\' different from node name `@samp{node}\'
519 'error_line' => ':4: warning: @menu entry node name `@strong{node}\' different from node name `@samp{node}\'
520520 ',
521521 'file_name' => '',
522522 'line_nr' => 4,
523523 'macro' => '',
524 'text' => 'menu entry node name `@strong{node}\' different from node name `@samp{node}\'',
524 'text' => '@menu entry node name `@strong{node}\' different from node name `@samp{node}\'',
525525 'type' => 'warning'
526526 },
527527 {
499499
500500 $result_errors{'top_node_no_menu_direction'} = [
501501 {
502 'error_line' => ':5: warning: menu entry node name `TOP\' different from node name `Top\'
502 'error_line' => ':5: warning: @menu entry node name `TOP\' different from node name `Top\'
503503 ',
504504 'file_name' => '',
505505 'line_nr' => 5,
506506 'macro' => '',
507 'text' => 'menu entry node name `TOP\' different from node name `Top\'',
507 'text' => '@menu entry node name `TOP\' different from node name `Top\'',
508508 'type' => 'warning'
509509 },
510510 {
285285
286286 $result_errors{'unknown_node_in_menu'} = [
287287 {
288 'error_line' => ':4: menu reference to nonexistent node `unknown\'
288 'error_line' => ':4: @menu reference to nonexistent node `unknown\'
289289 ',
290290 'file_name' => '',
291291 'line_nr' => 4,
292292 'macro' => '',
293 'text' => 'menu reference to nonexistent node `unknown\'',
293 'text' => '@menu reference to nonexistent node `unknown\'',
294294 'type' => 'error'
295295 }
296296 ];
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 11 };
3 use File::Spec;
4 BEGIN { plan tests => 11;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 8 };
3 use File::Spec;
4 BEGIN { plan tests => 8;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 6 };
3 use File::Spec;
4 BEGIN { plan tests => 6;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 6 };
3 use File::Spec;
4 BEGIN { plan tests => 6;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
00 use strict;
11
22 use Test::More;
3 BEGIN { plan tests => 3 };
3 use File::Spec;
4 BEGIN { plan tests => 3;
5 if (defined($ENV{'top_srcdir'})) {
6 unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
412
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
22 use 5.006;
33
44 use Test::More;
5 use File::Spec;
6 BEGIN { if (defined($ENV{'top_srcdir'})) {
7 my $lib_dir = File::Spec->catdir($ENV{'top_srcdir'}, 'tp', 'maintain');
8 unshift @INC, (File::Spec->catdir($lib_dir, 'lib', 'libintl-perl', 'lib'),
9 File::Spec->catdir($lib_dir, 'lib', 'Unicode-EastAsianWidth', 'lib'),
10 File::Spec->catdir($lib_dir, 'lib', 'Text-Unidecode', 'lib'));
11 }};
12
513 use lib 'maintain/lib/Unicode-EastAsianWidth/lib/';
614 use lib 'maintain/lib/libintl-perl/lib/';
715 use lib 'maintain/lib/Text-Unidecode/lib/';
00 use strict;
1
2 use File::Spec;
3 BEGIN { if (defined($ENV{'top_srcdir'})) {unshift @INC, File::Spec->catdir($ENV{'top_srcdir'}, 'tp');} }
14
25 require 't/test_utils.pl';
36
0 # $Id: Makefile.am,v 1.13 2013/01/11 19:09:16 karl Exp $
0 # $Id: Makefile.am,v 1.14 2013/02/10 15:14:12 pertusus Exp $
11 # Makefile.am for texinfo/tp/tests.
22 # Copyright 2012, 2013 Free Software Foundation, Inc.
33 #
88 # This program is distributed in the hope that it will be useful, but
99 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
1010 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
12 # autogenerated test scripts list and tests-parser.txt list
13 include $(srcdir)/Makefile.onetst
14
15 $(srcdir)/Makefile.onetst: ../maintain/regenerate_cmd_tests.sh $(test_driving_files_generated_list)
16 cd $(srcdir) \
17 && $(SHELL) ../maintain/regenerate_cmd_tests.sh "$@" -base '$(base_tests)' -long '$(long_tests)' -tex_html '$(tex_html_tests)'
1118
1219 base_tests = \
1320 formatting htmlxref htmlxref-only_mono htmlxref-only_split
3542 clean-tests:
3643 $(srcdir)/parser_tests.sh -clean $(base_tests) $(long_tests) $(tex_html_tests)
3744
38 TESTS = parser_base_tests long_tests.sh tex_html_tests.sh
45 old_test_scripts = parser_base_tests long_tests.sh tex_html_tests.sh
46 #TESTS = $(old_test_scripts)
47 TESTS = $(one_test_files_generated_list)
3948
4049 long-checks long-check: all
4150 $(MAKE) $(AM_MAKEFLAGS) check LONG_TESTS=yes
7786 ${INSTALL_DATA} $(srcdir)/formatting/unknown_nodes_renamed-noderename.cnf-ref $@
7887
7988 EXTRA_DIST = run_parser_all.sh parser_tests.sh \
80 $(TESTS) coverage_macro.texi
89 $(old_test_scripts) $(one_test_files_generated_list) coverage_macro.texi
1313
1414 @SET_MAKE@
1515
16 # $Id: Makefile.am,v 1.13 2013/01/11 19:09:16 karl Exp $
16 # $Id: Makefile.am,v 1.14 2013/02/10 15:14:12 pertusus Exp $
1717 # Makefile.am for texinfo/tp/tests.
1818 # Copyright 2012, 2013 Free Software Foundation, Inc.
19 #
20 # This file is free software; as a special exception the author gives
21 # unlimited permission to copy and/or distribute it, with or without
22 # modifications, as long as this notice is preserved.
23 #
24 # This program is distributed in the hope that it will be useful, but
25 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
26 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
27
28 # Makefile.onetst generated by ../maintain/regenerate_cmd_tests.sh.
29 #
30 # Copyright 2013 Free Software Foundation, Inc.
1931 #
2032 # This file is free software; as a special exception the author gives
2133 # unlimited permission to copy and/or distribute it, with or without
5971 POST_UNINSTALL = :
6072 build_triplet = @build@
6173 host_triplet = @host@
74 DIST_COMMON = $(srcdir)/Makefile.onetst $(srcdir)/Makefile.in \
75 $(srcdir)/Makefile.am $(top_srcdir)/build-aux/test-driver \
76 README
6277 subdir = tp/tests
63 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
64 $(top_srcdir)/build-aux/test-driver README
6578 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
6679 am__aclocal_m4_deps = $(top_srcdir)/gnulib/m4/00gnulib.m4 \
6780 $(top_srcdir)/gnulib/m4/alloca.m4 \
11251138 top_build_prefix = @top_build_prefix@
11261139 top_builddir = @top_builddir@
11271140 top_srcdir = @top_srcdir@
1141 test_driving_files_generated_list = sectioning/tests-parser.txt coverage/tests-parser.txt indices/tests-parser.txt nested_formats/tests-parser.txt contents/tests-parser.txt layout/tests-parser.txt formatting/tests-parser.txt htmlxref/tests-parser.txt htmlxref-only_mono/tests-parser.txt htmlxref-only_split/tests-parser.txt tex_html/tests-parser.txt
1142 one_test_files_generated_list = \
1143 test_scripts/sectioning_node_footnote_end.sh \
1144 test_scripts/sectioning_node_footnote_use_node.sh \
1145 test_scripts/sectioning_node_footnote_separated.sh \
1146 test_scripts/sectioning_test_two_include.sh \
1147 test_scripts/sectioning_equivalent_nodes.sh \
1148 test_scripts/sectioning_equivalent_nodes_no_node.sh \
1149 test_scripts/sectioning_equivalent_nodes_test_renamed_nodes.sh \
1150 test_scripts/sectioning_nodes_after_top_before_chapter.sh \
1151 test_scripts/sectioning_nodes_after_top_before_chapter_use_nodes_chapter.sh \
1152 test_scripts/sectioning_nodes_after_top_before_section.sh \
1153 test_scripts/sectioning_nodes_after_top_before_section_use_nodes.sh \
1154 test_scripts/sectioning_nodes_after_top_before_section_use_nodes_chapter.sh \
1155 test_scripts/sectioning_sectioning_directions.sh \
1156 test_scripts/sectioning_sectioning_frames.sh \
1157 test_scripts/sectioning_no_node_chapter_split.sh \
1158 test_scripts/sectioning_placed_things_before_element.sh \
1159 test_scripts/sectioning_no_section_no_top.sh \
1160 test_scripts/sectioning_no_section_no_top_no_node.sh \
1161 test_scripts/sectioning_more_nodes_than_sections.sh \
1162 test_scripts/sectioning_one_node_no_node.sh \
1163 test_scripts/sectioning_one_node.sh \
1164 test_scripts/sectioning_more_sections_than_nodes.sh \
1165 test_scripts/sectioning_two_footnotes_in_nodes.sh \
1166 test_scripts/sectioning_two_footnotes_in_nodes_separated.sh \
1167 test_scripts/coverage_texi_formatting.sh \
1168 test_scripts/coverage_formatting.sh \
1169 test_scripts/coverage_formatting_utf8_enable_encoding.sh \
1170 test_scripts/coverage_formatting_fr.sh \
1171 test_scripts/indices_double_index_entry.sh \
1172 test_scripts/indices_split_chapter_index.sh \
1173 test_scripts/indices_index_split.sh \
1174 test_scripts/indices_index_split_nodes.sh \
1175 test_scripts/indices_index_no_node.sh \
1176 test_scripts/indices_nodes_before_top.sh \
1177 test_scripts/indices_nodes_before_top_nodes.sh \
1178 test_scripts/indices_nodes_before_top_no_nodes.sh \
1179 test_scripts/indices_nodes_before_top_and_sections_monolithic.sh \
1180 test_scripts/indices_nodes_before_top_and_sections_html_chapter.sh \
1181 test_scripts/indices_nodes_before_top_and_sections_html_chapter_nodes.sh \
1182 test_scripts/indices_index_special_region.sh \
1183 test_scripts/indices_index_special_region_no_region.sh \
1184 test_scripts/indices_index_special_region_no_insertcopying.sh \
1185 test_scripts/indices_index_special_region_html.sh \
1186 test_scripts/indices_index_special_region_no_region_html.sh \
1187 test_scripts/indices_index_special_region_no_insertcopying_html.sh \
1188 test_scripts/indices_index_nodes.sh \
1189 test_scripts/indices_index_nodes_nodes.sh \
1190 test_scripts/indices_printindex_between_node_section.sh \
1191 test_scripts/indices_printindex_between_part_chapter.sh \
1192 test_scripts/indices_index_and_node_same_name.sh \
1193 test_scripts/indices_index_entry_in_footnote.sh \
1194 test_scripts/indices_index_one_node.sh \
1195 test_scripts/indices_index_no_node_no_top.sh \
1196 test_scripts/indices_index_entry_in_footnote_info.sh \
1197 test_scripts/indices_index_entry_in_footnote_separated_info.sh \
1198 test_scripts/nested_formats_texi_nested_formats.sh \
1199 test_scripts/nested_formats_nested_group.sh \
1200 test_scripts/nested_formats_nested_itemize.sh \
1201 test_scripts/nested_formats_nested_menu.sh \
1202 test_scripts/nested_formats_nested_table.sh \
1203 test_scripts/nested_formats_nested_flushright.sh \
1204 test_scripts/nested_formats_nested_multitable.sh \
1205 test_scripts/nested_formats_nested_cartouche.sh \
1206 test_scripts/nested_formats_nested_enumerate.sh \
1207 test_scripts/nested_formats_nested_deffn.sh \
1208 test_scripts/nested_formats_nested_example.sh \
1209 test_scripts/nested_formats_nested_quotation.sh \
1210 test_scripts/contents_contents_at_begin.sh \
1211 test_scripts/contents_contents_at_end.sh \
1212 test_scripts/contents_contents_in_middle_chapter.sh \
1213 test_scripts/contents_contents_in_middle_section.sh \
1214 test_scripts/contents_double_contents.sh \
1215 test_scripts/contents_double_contents_setcontentsaftertitlepage.sh \
1216 test_scripts/contents_double_contents_chapter.sh \
1217 test_scripts/contents_double_contents_section.sh \
1218 test_scripts/contents_double_contents_nodes.sh \
1219 test_scripts/contents_no_content.sh \
1220 test_scripts/contents_no_content_do_contents.sh \
1221 test_scripts/contents_no_content_setcatpage.sh \
1222 test_scripts/contents_no_content_setcatpage_do_contents.sh \
1223 test_scripts/contents_contents_at_begin_inline.sh \
1224 test_scripts/contents_contents_at_end_inline.sh \
1225 test_scripts/contents_contents_in_middle_chapter_inline.sh \
1226 test_scripts/contents_contents_in_middle_section_inline.sh \
1227 test_scripts/contents_double_contents_inline.sh \
1228 test_scripts/contents_double_contents_setcontentsaftertitlepage_inline.sh \
1229 test_scripts/contents_double_contents_inline_chapter.sh \
1230 test_scripts/contents_double_contents_inline_section.sh \
1231 test_scripts/contents_double_contents_inline_nodes.sh \
1232 test_scripts/contents_no_content_inline.sh \
1233 test_scripts/contents_no_content_do_contents_inline.sh \
1234 test_scripts/contents_no_content_setcatpage_inline.sh \
1235 test_scripts/contents_no_content_setcatpage_do_contents_inline.sh \
1236 test_scripts/contents_double_contents_book.sh \
1237 test_scripts/contents_double_contents_setcontentsaftertitlepage_book.sh \
1238 test_scripts/contents_double_contents_setcontentsaftertitlepage_book_chapter.sh \
1239 test_scripts/contents_contents_and_parts.sh \
1240 test_scripts/contents_contents_at_begin_info.sh \
1241 test_scripts/contents_contents_at_end_info.sh \
1242 test_scripts/contents_contents_in_middle_chapter_info.sh \
1243 test_scripts/contents_contents_in_middle_section_info.sh \
1244 test_scripts/contents_double_contents_info.sh \
1245 test_scripts/contents_double_contents_setcontentsaftertitlepage_info.sh \
1246 test_scripts/layout_no_monolithic.sh \
1247 test_scripts/layout_no_monolithic_only_toc_out.sh \
1248 test_scripts/layout_navigation.sh \
1249 test_scripts/layout_navigation_no_header.sh \
1250 test_scripts/layout_navigation_vertical.sh \
1251 test_scripts/layout_navigation_no_header_vertical.sh \
1252 test_scripts/layout_navigation_chapter.sh \
1253 test_scripts/layout_navigation_section.sh \
1254 test_scripts/layout_navigation_node.sh \
1255 test_scripts/layout_navigation_chapter_no_header.sh \
1256 test_scripts/layout_navigation_section_no_header.sh \
1257 test_scripts/layout_navigation_node_no_header.sh \
1258 test_scripts/layout_navigation_chapter_vertical.sh \
1259 test_scripts/layout_navigation_section_vertical.sh \
1260 test_scripts/layout_navigation_node_vertical.sh \
1261 test_scripts/layout_navigation_chapter_no_header_vertical.sh \
1262 test_scripts/layout_navigation_section_no_header_vertical.sh \
1263 test_scripts/layout_navigation_node_no_header_vertical.sh \
1264 test_scripts/layout_navigation_test_misc_file_collision.sh \
1265 test_scripts/layout_formatting_docbook.sh \
1266 test_scripts/layout_formatting_xml.sh \
1267 test_scripts/layout_formatting_weird_quotes.sh \
1268 test_scripts/layout_formatting_html.sh \
1269 test_scripts/layout_formatting_html_nodes.sh \
1270 test_scripts/layout_formatting_plaintext.sh \
1271 test_scripts/layout_formatting_html32.sh \
1272 test_scripts/layout_formatting_regions.sh \
1273 test_scripts/layout_formatting_exotic.sh \
1274 test_scripts/layout_formatting_fr_icons.sh \
1275 test_scripts/layout_formatting_chm.sh \
1276 test_scripts/layout_formatting_nodes.sh \
1277 test_scripts/formatting_texi_glossary.sh \
1278 test_scripts/formatting_texi_bib-example.sh \
1279 test_scripts/formatting_texi_cond.sh \
1280 test_scripts/formatting_cond.sh \
1281 test_scripts/formatting_cond_xml.sh \
1282 test_scripts/formatting_cond_no-ifhtml_no-ifinfo_no-iftex.sh \
1283 test_scripts/formatting_cond_ifhtml_ifinfo_iftex.sh \
1284 test_scripts/formatting_cond_info.sh \
1285 test_scripts/formatting_cond_info_no-ifhtml_no-ifinfo_no-iftex.sh \
1286 test_scripts/formatting_cond_info_ifhtml_ifinfo_iftex.sh \
1287 test_scripts/formatting_defcondx_Dbar.sh \
1288 test_scripts/formatting_defcondx_Ubar.sh \
1289 test_scripts/formatting_unknown_nodes_renamed.sh \
1290 test_scripts/formatting_texi_ignore_and_comments.sh \
1291 test_scripts/formatting_ignore_and_comments_output.sh \
1292 test_scripts/formatting_test_redefine_need.sh \
1293 test_scripts/formatting_direntry_dircategory_info_split.sh \
1294 test_scripts/formatting_split_nocopying.sh \
1295 test_scripts/formatting_split_nocopying_split.sh \
1296 test_scripts/formatting_split_nocopying_split_dev_null.sh \
1297 test_scripts/formatting_simplest_test_prefix.sh \
1298 test_scripts/formatting_simplest_test_prefix_info.sh \
1299 test_scripts/formatting_simplest_test_css.sh \
1300 test_scripts/formatting_simplest_test_date_in_header.sh \
1301 test_scripts/formatting_documentlanguage_set_option.sh \
1302 test_scripts/formatting_documentlanguage_set_unknown.sh \
1303 test_scripts/formatting_documentlanguage_set_option_info.sh \
1304 test_scripts/formatting_float_copying.sh \
1305 test_scripts/formatting_simple_with_menu_docbook_info.sh \
1306 test_scripts/formatting_split_for_format_not_split.sh \
1307 test_scripts/htmlxref_htmlxref.sh \
1308 test_scripts/htmlxref_htmlxref_nodes.sh \
1309 test_scripts/htmlxref-only_mono_htmlxref.sh \
1310 test_scripts/htmlxref-only_mono_htmlxref_nodes.sh \
1311 test_scripts/htmlxref-only_split_htmlxref.sh \
1312 test_scripts/htmlxref-only_split_htmlxref_nodes.sh \
1313 test_scripts/tex_html_block_EOL_tex.sh \
1314 test_scripts/tex_html_simplest_httex.sh \
1315 test_scripts/tex_html_tex.sh \
1316 test_scripts/tex_html_tex_notex.sh \
1317 test_scripts/tex_html_tex_httex.sh \
1318 test_scripts/tex_html_tex_accents_httex.sh \
1319 test_scripts/tex_html_tex_accents_l2h.sh \
1320 test_scripts/tex_html_tex_complex_httex.sh \
1321 test_scripts/tex_html_tex_complex_l2h.sh \
1322 test_scripts/tex_html_math_not_closed.sh \
1323 test_scripts/tex_html_tex_not_closed.sh \
1324 test_scripts/tex_html_tex_in_copying.sh \
1325 test_scripts/tex_html_formatting_singular.sh
1326
11281327 base_tests = \
11291328 formatting htmlxref htmlxref-only_mono htmlxref-only_split
11301329
11361335
11371336 DIST_SUBDIRS = many_input_files $(base_tests) $(long_tests) $(tex_html_tests)
11381337 SUBDIRS = . many_input_files
1139 TESTS = parser_base_tests long_tests.sh tex_html_tests.sh
1338 old_test_scripts = parser_base_tests long_tests.sh tex_html_tests.sh
1339 #TESTS = $(old_test_scripts)
1340 TESTS = $(one_test_files_generated_list)
11401341 EXTRA_DIST = run_parser_all.sh parser_tests.sh \
1141 $(TESTS) coverage_macro.texi
1342 $(old_test_scripts) $(one_test_files_generated_list) coverage_macro.texi
11421343
11431344 all: all-recursive
11441345
11451346 .SUFFIXES:
11461347 .SUFFIXES: .log .test .test$(EXEEXT) .trs
1147 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
1348 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/Makefile.onetst $(am__configure_deps)
11481349 @for dep in $?; do \
11491350 case '$(am__configure_deps)' in \
11501351 *$$dep*) \
14161617 am__force_recheck=am--force-recheck \
14171618 TEST_LOGS="$$log_list"; \
14181619 exit $$?
1419 parser_base_tests.log: parser_base_tests
1420 @p='parser_base_tests'; \
1421 b='parser_base_tests'; \
1422 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1423 --log-file $$b.log --trs-file $$b.trs \
1424 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1425 "$$tst" $(AM_TESTS_FD_REDIRECT)
1426 long_tests.sh.log: long_tests.sh
1427 @p='long_tests.sh'; \
1428 b='long_tests.sh'; \
1429 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1430 --log-file $$b.log --trs-file $$b.trs \
1431 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1432 "$$tst" $(AM_TESTS_FD_REDIRECT)
1433 tex_html_tests.sh.log: tex_html_tests.sh
1434 @p='tex_html_tests.sh'; \
1435 b='tex_html_tests.sh'; \
1620 test_scripts/sectioning_node_footnote_end.sh.log: test_scripts/sectioning_node_footnote_end.sh
1621 @p='test_scripts/sectioning_node_footnote_end.sh'; \
1622 b='test_scripts/sectioning_node_footnote_end.sh'; \
1623 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1624 --log-file $$b.log --trs-file $$b.trs \
1625 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1626 "$$tst" $(AM_TESTS_FD_REDIRECT)
1627 test_scripts/sectioning_node_footnote_use_node.sh.log: test_scripts/sectioning_node_footnote_use_node.sh
1628 @p='test_scripts/sectioning_node_footnote_use_node.sh'; \
1629 b='test_scripts/sectioning_node_footnote_use_node.sh'; \
1630 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1631 --log-file $$b.log --trs-file $$b.trs \
1632 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1633 "$$tst" $(AM_TESTS_FD_REDIRECT)
1634 test_scripts/sectioning_node_footnote_separated.sh.log: test_scripts/sectioning_node_footnote_separated.sh
1635 @p='test_scripts/sectioning_node_footnote_separated.sh'; \
1636 b='test_scripts/sectioning_node_footnote_separated.sh'; \
1637 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1638 --log-file $$b.log --trs-file $$b.trs \
1639 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1640 "$$tst" $(AM_TESTS_FD_REDIRECT)
1641 test_scripts/sectioning_test_two_include.sh.log: test_scripts/sectioning_test_two_include.sh
1642 @p='test_scripts/sectioning_test_two_include.sh'; \
1643 b='test_scripts/sectioning_test_two_include.sh'; \
1644 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1645 --log-file $$b.log --trs-file $$b.trs \
1646 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1647 "$$tst" $(AM_TESTS_FD_REDIRECT)
1648 test_scripts/sectioning_equivalent_nodes.sh.log: test_scripts/sectioning_equivalent_nodes.sh
1649 @p='test_scripts/sectioning_equivalent_nodes.sh'; \
1650 b='test_scripts/sectioning_equivalent_nodes.sh'; \
1651 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1652 --log-file $$b.log --trs-file $$b.trs \
1653 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1654 "$$tst" $(AM_TESTS_FD_REDIRECT)
1655 test_scripts/sectioning_equivalent_nodes_no_node.sh.log: test_scripts/sectioning_equivalent_nodes_no_node.sh
1656 @p='test_scripts/sectioning_equivalent_nodes_no_node.sh'; \
1657 b='test_scripts/sectioning_equivalent_nodes_no_node.sh'; \
1658 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1659 --log-file $$b.log --trs-file $$b.trs \
1660 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1661 "$$tst" $(AM_TESTS_FD_REDIRECT)
1662 test_scripts/sectioning_equivalent_nodes_test_renamed_nodes.sh.log: test_scripts/sectioning_equivalent_nodes_test_renamed_nodes.sh
1663 @p='test_scripts/sectioning_equivalent_nodes_test_renamed_nodes.sh'; \
1664 b='test_scripts/sectioning_equivalent_nodes_test_renamed_nodes.sh'; \
1665 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1666 --log-file $$b.log --trs-file $$b.trs \
1667 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1668 "$$tst" $(AM_TESTS_FD_REDIRECT)
1669 test_scripts/sectioning_nodes_after_top_before_chapter.sh.log: test_scripts/sectioning_nodes_after_top_before_chapter.sh
1670 @p='test_scripts/sectioning_nodes_after_top_before_chapter.sh'; \
1671 b='test_scripts/sectioning_nodes_after_top_before_chapter.sh'; \
1672 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1673 --log-file $$b.log --trs-file $$b.trs \
1674 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1675 "$$tst" $(AM_TESTS_FD_REDIRECT)
1676 test_scripts/sectioning_nodes_after_top_before_chapter_use_nodes_chapter.sh.log: test_scripts/sectioning_nodes_after_top_before_chapter_use_nodes_chapter.sh
1677 @p='test_scripts/sectioning_nodes_after_top_before_chapter_use_nodes_chapter.sh'; \
1678 b='test_scripts/sectioning_nodes_after_top_before_chapter_use_nodes_chapter.sh'; \
1679 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1680 --log-file $$b.log --trs-file $$b.trs \
1681 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1682 "$$tst" $(AM_TESTS_FD_REDIRECT)
1683 test_scripts/sectioning_nodes_after_top_before_section.sh.log: test_scripts/sectioning_nodes_after_top_before_section.sh
1684 @p='test_scripts/sectioning_nodes_after_top_before_section.sh'; \
1685 b='test_scripts/sectioning_nodes_after_top_before_section.sh'; \
1686 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1687 --log-file $$b.log --trs-file $$b.trs \
1688 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1689 "$$tst" $(AM_TESTS_FD_REDIRECT)
1690 test_scripts/sectioning_nodes_after_top_before_section_use_nodes.sh.log: test_scripts/sectioning_nodes_after_top_before_section_use_nodes.sh
1691 @p='test_scripts/sectioning_nodes_after_top_before_section_use_nodes.sh'; \
1692 b='test_scripts/sectioning_nodes_after_top_before_section_use_nodes.sh'; \
1693 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1694 --log-file $$b.log --trs-file $$b.trs \
1695 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1696 "$$tst" $(AM_TESTS_FD_REDIRECT)
1697 test_scripts/sectioning_nodes_after_top_before_section_use_nodes_chapter.sh.log: test_scripts/sectioning_nodes_after_top_before_section_use_nodes_chapter.sh
1698 @p='test_scripts/sectioning_nodes_after_top_before_section_use_nodes_chapter.sh'; \
1699 b='test_scripts/sectioning_nodes_after_top_before_section_use_nodes_chapter.sh'; \
1700 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1701 --log-file $$b.log --trs-file $$b.trs \
1702 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1703 "$$tst" $(AM_TESTS_FD_REDIRECT)
1704 test_scripts/sectioning_sectioning_directions.sh.log: test_scripts/sectioning_sectioning_directions.sh
1705 @p='test_scripts/sectioning_sectioning_directions.sh'; \
1706 b='test_scripts/sectioning_sectioning_directions.sh'; \
1707 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1708 --log-file $$b.log --trs-file $$b.trs \
1709 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1710 "$$tst" $(AM_TESTS_FD_REDIRECT)
1711 test_scripts/sectioning_sectioning_frames.sh.log: test_scripts/sectioning_sectioning_frames.sh
1712 @p='test_scripts/sectioning_sectioning_frames.sh'; \
1713 b='test_scripts/sectioning_sectioning_frames.sh'; \
1714 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1715 --log-file $$b.log --trs-file $$b.trs \
1716 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1717 "$$tst" $(AM_TESTS_FD_REDIRECT)
1718 test_scripts/sectioning_no_node_chapter_split.sh.log: test_scripts/sectioning_no_node_chapter_split.sh
1719 @p='test_scripts/sectioning_no_node_chapter_split.sh'; \
1720 b='test_scripts/sectioning_no_node_chapter_split.sh'; \
1721 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1722 --log-file $$b.log --trs-file $$b.trs \
1723 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1724 "$$tst" $(AM_TESTS_FD_REDIRECT)
1725 test_scripts/sectioning_placed_things_before_element.sh.log: test_scripts/sectioning_placed_things_before_element.sh
1726 @p='test_scripts/sectioning_placed_things_before_element.sh'; \
1727 b='test_scripts/sectioning_placed_things_before_element.sh'; \
1728 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1729 --log-file $$b.log --trs-file $$b.trs \
1730 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1731 "$$tst" $(AM_TESTS_FD_REDIRECT)
1732 test_scripts/sectioning_no_section_no_top.sh.log: test_scripts/sectioning_no_section_no_top.sh
1733 @p='test_scripts/sectioning_no_section_no_top.sh'; \
1734 b='test_scripts/sectioning_no_section_no_top.sh'; \
1735 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1736 --log-file $$b.log --trs-file $$b.trs \
1737 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1738 "$$tst" $(AM_TESTS_FD_REDIRECT)
1739 test_scripts/sectioning_no_section_no_top_no_node.sh.log: test_scripts/sectioning_no_section_no_top_no_node.sh
1740 @p='test_scripts/sectioning_no_section_no_top_no_node.sh'; \
1741 b='test_scripts/sectioning_no_section_no_top_no_node.sh'; \
1742 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1743 --log-file $$b.log --trs-file $$b.trs \
1744 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1745 "$$tst" $(AM_TESTS_FD_REDIRECT)
1746 test_scripts/sectioning_more_nodes_than_sections.sh.log: test_scripts/sectioning_more_nodes_than_sections.sh
1747 @p='test_scripts/sectioning_more_nodes_than_sections.sh'; \
1748 b='test_scripts/sectioning_more_nodes_than_sections.sh'; \
1749 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1750 --log-file $$b.log --trs-file $$b.trs \
1751 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1752 "$$tst" $(AM_TESTS_FD_REDIRECT)
1753 test_scripts/sectioning_one_node_no_node.sh.log: test_scripts/sectioning_one_node_no_node.sh
1754 @p='test_scripts/sectioning_one_node_no_node.sh'; \
1755 b='test_scripts/sectioning_one_node_no_node.sh'; \
1756 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1757 --log-file $$b.log --trs-file $$b.trs \
1758 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1759 "$$tst" $(AM_TESTS_FD_REDIRECT)
1760 test_scripts/sectioning_one_node.sh.log: test_scripts/sectioning_one_node.sh
1761 @p='test_scripts/sectioning_one_node.sh'; \
1762 b='test_scripts/sectioning_one_node.sh'; \
1763 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1764 --log-file $$b.log --trs-file $$b.trs \
1765 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1766 "$$tst" $(AM_TESTS_FD_REDIRECT)
1767 test_scripts/sectioning_more_sections_than_nodes.sh.log: test_scripts/sectioning_more_sections_than_nodes.sh
1768 @p='test_scripts/sectioning_more_sections_than_nodes.sh'; \
1769 b='test_scripts/sectioning_more_sections_than_nodes.sh'; \
1770 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1771 --log-file $$b.log --trs-file $$b.trs \
1772 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1773 "$$tst" $(AM_TESTS_FD_REDIRECT)
1774 test_scripts/sectioning_two_footnotes_in_nodes.sh.log: test_scripts/sectioning_two_footnotes_in_nodes.sh
1775 @p='test_scripts/sectioning_two_footnotes_in_nodes.sh'; \
1776 b='test_scripts/sectioning_two_footnotes_in_nodes.sh'; \
1777 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1778 --log-file $$b.log --trs-file $$b.trs \
1779 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1780 "$$tst" $(AM_TESTS_FD_REDIRECT)
1781 test_scripts/sectioning_two_footnotes_in_nodes_separated.sh.log: test_scripts/sectioning_two_footnotes_in_nodes_separated.sh
1782 @p='test_scripts/sectioning_two_footnotes_in_nodes_separated.sh'; \
1783 b='test_scripts/sectioning_two_footnotes_in_nodes_separated.sh'; \
1784 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1785 --log-file $$b.log --trs-file $$b.trs \
1786 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1787 "$$tst" $(AM_TESTS_FD_REDIRECT)
1788 test_scripts/coverage_texi_formatting.sh.log: test_scripts/coverage_texi_formatting.sh
1789 @p='test_scripts/coverage_texi_formatting.sh'; \
1790 b='test_scripts/coverage_texi_formatting.sh'; \
1791 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1792 --log-file $$b.log --trs-file $$b.trs \
1793 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1794 "$$tst" $(AM_TESTS_FD_REDIRECT)
1795 test_scripts/coverage_formatting.sh.log: test_scripts/coverage_formatting.sh
1796 @p='test_scripts/coverage_formatting.sh'; \
1797 b='test_scripts/coverage_formatting.sh'; \
1798 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1799 --log-file $$b.log --trs-file $$b.trs \
1800 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1801 "$$tst" $(AM_TESTS_FD_REDIRECT)
1802 test_scripts/coverage_formatting_utf8_enable_encoding.sh.log: test_scripts/coverage_formatting_utf8_enable_encoding.sh
1803 @p='test_scripts/coverage_formatting_utf8_enable_encoding.sh'; \
1804 b='test_scripts/coverage_formatting_utf8_enable_encoding.sh'; \
1805 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1806 --log-file $$b.log --trs-file $$b.trs \
1807 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1808 "$$tst" $(AM_TESTS_FD_REDIRECT)
1809 test_scripts/coverage_formatting_fr.sh.log: test_scripts/coverage_formatting_fr.sh
1810 @p='test_scripts/coverage_formatting_fr.sh'; \
1811 b='test_scripts/coverage_formatting_fr.sh'; \
1812 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1813 --log-file $$b.log --trs-file $$b.trs \
1814 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1815 "$$tst" $(AM_TESTS_FD_REDIRECT)
1816 test_scripts/indices_double_index_entry.sh.log: test_scripts/indices_double_index_entry.sh
1817 @p='test_scripts/indices_double_index_entry.sh'; \
1818 b='test_scripts/indices_double_index_entry.sh'; \
1819 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1820 --log-file $$b.log --trs-file $$b.trs \
1821 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1822 "$$tst" $(AM_TESTS_FD_REDIRECT)
1823 test_scripts/indices_split_chapter_index.sh.log: test_scripts/indices_split_chapter_index.sh
1824 @p='test_scripts/indices_split_chapter_index.sh'; \
1825 b='test_scripts/indices_split_chapter_index.sh'; \
1826 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1827 --log-file $$b.log --trs-file $$b.trs \
1828 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1829 "$$tst" $(AM_TESTS_FD_REDIRECT)
1830 test_scripts/indices_index_split.sh.log: test_scripts/indices_index_split.sh
1831 @p='test_scripts/indices_index_split.sh'; \
1832 b='test_scripts/indices_index_split.sh'; \
1833 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1834 --log-file $$b.log --trs-file $$b.trs \
1835 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1836 "$$tst" $(AM_TESTS_FD_REDIRECT)
1837 test_scripts/indices_index_split_nodes.sh.log: test_scripts/indices_index_split_nodes.sh
1838 @p='test_scripts/indices_index_split_nodes.sh'; \
1839 b='test_scripts/indices_index_split_nodes.sh'; \
1840 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1841 --log-file $$b.log --trs-file $$b.trs \
1842 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1843 "$$tst" $(AM_TESTS_FD_REDIRECT)
1844 test_scripts/indices_index_no_node.sh.log: test_scripts/indices_index_no_node.sh
1845 @p='test_scripts/indices_index_no_node.sh'; \
1846 b='test_scripts/indices_index_no_node.sh'; \
1847 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1848 --log-file $$b.log --trs-file $$b.trs \
1849 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1850 "$$tst" $(AM_TESTS_FD_REDIRECT)
1851 test_scripts/indices_nodes_before_top.sh.log: test_scripts/indices_nodes_before_top.sh
1852 @p='test_scripts/indices_nodes_before_top.sh'; \
1853 b='test_scripts/indices_nodes_before_top.sh'; \
1854 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1855 --log-file $$b.log --trs-file $$b.trs \
1856 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1857 "$$tst" $(AM_TESTS_FD_REDIRECT)
1858 test_scripts/indices_nodes_before_top_nodes.sh.log: test_scripts/indices_nodes_before_top_nodes.sh
1859 @p='test_scripts/indices_nodes_before_top_nodes.sh'; \
1860 b='test_scripts/indices_nodes_before_top_nodes.sh'; \
1861 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1862 --log-file $$b.log --trs-file $$b.trs \
1863 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1864 "$$tst" $(AM_TESTS_FD_REDIRECT)
1865 test_scripts/indices_nodes_before_top_no_nodes.sh.log: test_scripts/indices_nodes_before_top_no_nodes.sh
1866 @p='test_scripts/indices_nodes_before_top_no_nodes.sh'; \
1867 b='test_scripts/indices_nodes_before_top_no_nodes.sh'; \
1868 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1869 --log-file $$b.log --trs-file $$b.trs \
1870 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1871 "$$tst" $(AM_TESTS_FD_REDIRECT)
1872 test_scripts/indices_nodes_before_top_and_sections_monolithic.sh.log: test_scripts/indices_nodes_before_top_and_sections_monolithic.sh
1873 @p='test_scripts/indices_nodes_before_top_and_sections_monolithic.sh'; \
1874 b='test_scripts/indices_nodes_before_top_and_sections_monolithic.sh'; \
1875 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1876 --log-file $$b.log --trs-file $$b.trs \
1877 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1878 "$$tst" $(AM_TESTS_FD_REDIRECT)
1879 test_scripts/indices_nodes_before_top_and_sections_html_chapter.sh.log: test_scripts/indices_nodes_before_top_and_sections_html_chapter.sh
1880 @p='test_scripts/indices_nodes_before_top_and_sections_html_chapter.sh'; \
1881 b='test_scripts/indices_nodes_before_top_and_sections_html_chapter.sh'; \
1882 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1883 --log-file $$b.log --trs-file $$b.trs \
1884 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1885 "$$tst" $(AM_TESTS_FD_REDIRECT)
1886 test_scripts/indices_nodes_before_top_and_sections_html_chapter_nodes.sh.log: test_scripts/indices_nodes_before_top_and_sections_html_chapter_nodes.sh
1887 @p='test_scripts/indices_nodes_before_top_and_sections_html_chapter_nodes.sh'; \
1888 b='test_scripts/indices_nodes_before_top_and_sections_html_chapter_nodes.sh'; \
1889 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1890 --log-file $$b.log --trs-file $$b.trs \
1891 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1892 "$$tst" $(AM_TESTS_FD_REDIRECT)
1893 test_scripts/indices_index_special_region.sh.log: test_scripts/indices_index_special_region.sh
1894 @p='test_scripts/indices_index_special_region.sh'; \
1895 b='test_scripts/indices_index_special_region.sh'; \
1896 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1897 --log-file $$b.log --trs-file $$b.trs \
1898 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1899 "$$tst" $(AM_TESTS_FD_REDIRECT)
1900 test_scripts/indices_index_special_region_no_region.sh.log: test_scripts/indices_index_special_region_no_region.sh
1901 @p='test_scripts/indices_index_special_region_no_region.sh'; \
1902 b='test_scripts/indices_index_special_region_no_region.sh'; \
1903 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1904 --log-file $$b.log --trs-file $$b.trs \
1905 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1906 "$$tst" $(AM_TESTS_FD_REDIRECT)
1907 test_scripts/indices_index_special_region_no_insertcopying.sh.log: test_scripts/indices_index_special_region_no_insertcopying.sh
1908 @p='test_scripts/indices_index_special_region_no_insertcopying.sh'; \
1909 b='test_scripts/indices_index_special_region_no_insertcopying.sh'; \
1910 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1911 --log-file $$b.log --trs-file $$b.trs \
1912 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1913 "$$tst" $(AM_TESTS_FD_REDIRECT)
1914 test_scripts/indices_index_special_region_html.sh.log: test_scripts/indices_index_special_region_html.sh
1915 @p='test_scripts/indices_index_special_region_html.sh'; \
1916 b='test_scripts/indices_index_special_region_html.sh'; \
1917 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1918 --log-file $$b.log --trs-file $$b.trs \
1919 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1920 "$$tst" $(AM_TESTS_FD_REDIRECT)
1921 test_scripts/indices_index_special_region_no_region_html.sh.log: test_scripts/indices_index_special_region_no_region_html.sh
1922 @p='test_scripts/indices_index_special_region_no_region_html.sh'; \
1923 b='test_scripts/indices_index_special_region_no_region_html.sh'; \
1924 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1925 --log-file $$b.log --trs-file $$b.trs \
1926 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1927 "$$tst" $(AM_TESTS_FD_REDIRECT)
1928 test_scripts/indices_index_special_region_no_insertcopying_html.sh.log: test_scripts/indices_index_special_region_no_insertcopying_html.sh
1929 @p='test_scripts/indices_index_special_region_no_insertcopying_html.sh'; \
1930 b='test_scripts/indices_index_special_region_no_insertcopying_html.sh'; \
1931 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1932 --log-file $$b.log --trs-file $$b.trs \
1933 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1934 "$$tst" $(AM_TESTS_FD_REDIRECT)
1935 test_scripts/indices_index_nodes.sh.log: test_scripts/indices_index_nodes.sh
1936 @p='test_scripts/indices_index_nodes.sh'; \
1937 b='test_scripts/indices_index_nodes.sh'; \
1938 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1939 --log-file $$b.log --trs-file $$b.trs \
1940 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1941 "$$tst" $(AM_TESTS_FD_REDIRECT)
1942 test_scripts/indices_index_nodes_nodes.sh.log: test_scripts/indices_index_nodes_nodes.sh
1943 @p='test_scripts/indices_index_nodes_nodes.sh'; \
1944 b='test_scripts/indices_index_nodes_nodes.sh'; \
1945 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1946 --log-file $$b.log --trs-file $$b.trs \
1947 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1948 "$$tst" $(AM_TESTS_FD_REDIRECT)
1949 test_scripts/indices_printindex_between_node_section.sh.log: test_scripts/indices_printindex_between_node_section.sh
1950 @p='test_scripts/indices_printindex_between_node_section.sh'; \
1951 b='test_scripts/indices_printindex_between_node_section.sh'; \
1952 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1953 --log-file $$b.log --trs-file $$b.trs \
1954 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1955 "$$tst" $(AM_TESTS_FD_REDIRECT)
1956 test_scripts/indices_printindex_between_part_chapter.sh.log: test_scripts/indices_printindex_between_part_chapter.sh
1957 @p='test_scripts/indices_printindex_between_part_chapter.sh'; \
1958 b='test_scripts/indices_printindex_between_part_chapter.sh'; \
1959 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1960 --log-file $$b.log --trs-file $$b.trs \
1961 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1962 "$$tst" $(AM_TESTS_FD_REDIRECT)
1963 test_scripts/indices_index_and_node_same_name.sh.log: test_scripts/indices_index_and_node_same_name.sh
1964 @p='test_scripts/indices_index_and_node_same_name.sh'; \
1965 b='test_scripts/indices_index_and_node_same_name.sh'; \
1966 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1967 --log-file $$b.log --trs-file $$b.trs \
1968 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1969 "$$tst" $(AM_TESTS_FD_REDIRECT)
1970 test_scripts/indices_index_entry_in_footnote.sh.log: test_scripts/indices_index_entry_in_footnote.sh
1971 @p='test_scripts/indices_index_entry_in_footnote.sh'; \
1972 b='test_scripts/indices_index_entry_in_footnote.sh'; \
1973 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1974 --log-file $$b.log --trs-file $$b.trs \
1975 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1976 "$$tst" $(AM_TESTS_FD_REDIRECT)
1977 test_scripts/indices_index_one_node.sh.log: test_scripts/indices_index_one_node.sh
1978 @p='test_scripts/indices_index_one_node.sh'; \
1979 b='test_scripts/indices_index_one_node.sh'; \
1980 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1981 --log-file $$b.log --trs-file $$b.trs \
1982 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1983 "$$tst" $(AM_TESTS_FD_REDIRECT)
1984 test_scripts/indices_index_no_node_no_top.sh.log: test_scripts/indices_index_no_node_no_top.sh
1985 @p='test_scripts/indices_index_no_node_no_top.sh'; \
1986 b='test_scripts/indices_index_no_node_no_top.sh'; \
1987 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1988 --log-file $$b.log --trs-file $$b.trs \
1989 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1990 "$$tst" $(AM_TESTS_FD_REDIRECT)
1991 test_scripts/indices_index_entry_in_footnote_info.sh.log: test_scripts/indices_index_entry_in_footnote_info.sh
1992 @p='test_scripts/indices_index_entry_in_footnote_info.sh'; \
1993 b='test_scripts/indices_index_entry_in_footnote_info.sh'; \
1994 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1995 --log-file $$b.log --trs-file $$b.trs \
1996 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1997 "$$tst" $(AM_TESTS_FD_REDIRECT)
1998 test_scripts/indices_index_entry_in_footnote_separated_info.sh.log: test_scripts/indices_index_entry_in_footnote_separated_info.sh
1999 @p='test_scripts/indices_index_entry_in_footnote_separated_info.sh'; \
2000 b='test_scripts/indices_index_entry_in_footnote_separated_info.sh'; \
2001 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2002 --log-file $$b.log --trs-file $$b.trs \
2003 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2004 "$$tst" $(AM_TESTS_FD_REDIRECT)
2005 test_scripts/nested_formats_texi_nested_formats.sh.log: test_scripts/nested_formats_texi_nested_formats.sh
2006 @p='test_scripts/nested_formats_texi_nested_formats.sh'; \
2007 b='test_scripts/nested_formats_texi_nested_formats.sh'; \
2008 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2009 --log-file $$b.log --trs-file $$b.trs \
2010 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2011 "$$tst" $(AM_TESTS_FD_REDIRECT)
2012 test_scripts/nested_formats_nested_group.sh.log: test_scripts/nested_formats_nested_group.sh
2013 @p='test_scripts/nested_formats_nested_group.sh'; \
2014 b='test_scripts/nested_formats_nested_group.sh'; \
2015 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2016 --log-file $$b.log --trs-file $$b.trs \
2017 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2018 "$$tst" $(AM_TESTS_FD_REDIRECT)
2019 test_scripts/nested_formats_nested_itemize.sh.log: test_scripts/nested_formats_nested_itemize.sh
2020 @p='test_scripts/nested_formats_nested_itemize.sh'; \
2021 b='test_scripts/nested_formats_nested_itemize.sh'; \
2022 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2023 --log-file $$b.log --trs-file $$b.trs \
2024 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2025 "$$tst" $(AM_TESTS_FD_REDIRECT)
2026 test_scripts/nested_formats_nested_menu.sh.log: test_scripts/nested_formats_nested_menu.sh
2027 @p='test_scripts/nested_formats_nested_menu.sh'; \
2028 b='test_scripts/nested_formats_nested_menu.sh'; \
2029 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2030 --log-file $$b.log --trs-file $$b.trs \
2031 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2032 "$$tst" $(AM_TESTS_FD_REDIRECT)
2033 test_scripts/nested_formats_nested_table.sh.log: test_scripts/nested_formats_nested_table.sh
2034 @p='test_scripts/nested_formats_nested_table.sh'; \
2035 b='test_scripts/nested_formats_nested_table.sh'; \
2036 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2037 --log-file $$b.log --trs-file $$b.trs \
2038 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2039 "$$tst" $(AM_TESTS_FD_REDIRECT)
2040 test_scripts/nested_formats_nested_flushright.sh.log: test_scripts/nested_formats_nested_flushright.sh
2041 @p='test_scripts/nested_formats_nested_flushright.sh'; \
2042 b='test_scripts/nested_formats_nested_flushright.sh'; \
2043 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2044 --log-file $$b.log --trs-file $$b.trs \
2045 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2046 "$$tst" $(AM_TESTS_FD_REDIRECT)
2047 test_scripts/nested_formats_nested_multitable.sh.log: test_scripts/nested_formats_nested_multitable.sh
2048 @p='test_scripts/nested_formats_nested_multitable.sh'; \
2049 b='test_scripts/nested_formats_nested_multitable.sh'; \
2050 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2051 --log-file $$b.log --trs-file $$b.trs \
2052 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2053 "$$tst" $(AM_TESTS_FD_REDIRECT)
2054 test_scripts/nested_formats_nested_cartouche.sh.log: test_scripts/nested_formats_nested_cartouche.sh
2055 @p='test_scripts/nested_formats_nested_cartouche.sh'; \
2056 b='test_scripts/nested_formats_nested_cartouche.sh'; \
2057 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2058 --log-file $$b.log --trs-file $$b.trs \
2059 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2060 "$$tst" $(AM_TESTS_FD_REDIRECT)
2061 test_scripts/nested_formats_nested_enumerate.sh.log: test_scripts/nested_formats_nested_enumerate.sh
2062 @p='test_scripts/nested_formats_nested_enumerate.sh'; \
2063 b='test_scripts/nested_formats_nested_enumerate.sh'; \
2064 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2065 --log-file $$b.log --trs-file $$b.trs \
2066 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2067 "$$tst" $(AM_TESTS_FD_REDIRECT)
2068 test_scripts/nested_formats_nested_deffn.sh.log: test_scripts/nested_formats_nested_deffn.sh
2069 @p='test_scripts/nested_formats_nested_deffn.sh'; \
2070 b='test_scripts/nested_formats_nested_deffn.sh'; \
2071 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2072 --log-file $$b.log --trs-file $$b.trs \
2073 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2074 "$$tst" $(AM_TESTS_FD_REDIRECT)
2075 test_scripts/nested_formats_nested_example.sh.log: test_scripts/nested_formats_nested_example.sh
2076 @p='test_scripts/nested_formats_nested_example.sh'; \
2077 b='test_scripts/nested_formats_nested_example.sh'; \
2078 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2079 --log-file $$b.log --trs-file $$b.trs \
2080 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2081 "$$tst" $(AM_TESTS_FD_REDIRECT)
2082 test_scripts/nested_formats_nested_quotation.sh.log: test_scripts/nested_formats_nested_quotation.sh
2083 @p='test_scripts/nested_formats_nested_quotation.sh'; \
2084 b='test_scripts/nested_formats_nested_quotation.sh'; \
2085 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2086 --log-file $$b.log --trs-file $$b.trs \
2087 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2088 "$$tst" $(AM_TESTS_FD_REDIRECT)
2089 test_scripts/contents_contents_at_begin.sh.log: test_scripts/contents_contents_at_begin.sh
2090 @p='test_scripts/contents_contents_at_begin.sh'; \
2091 b='test_scripts/contents_contents_at_begin.sh'; \
2092 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2093 --log-file $$b.log --trs-file $$b.trs \
2094 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2095 "$$tst" $(AM_TESTS_FD_REDIRECT)
2096 test_scripts/contents_contents_at_end.sh.log: test_scripts/contents_contents_at_end.sh
2097 @p='test_scripts/contents_contents_at_end.sh'; \
2098 b='test_scripts/contents_contents_at_end.sh'; \
2099 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2100 --log-file $$b.log --trs-file $$b.trs \
2101 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2102 "$$tst" $(AM_TESTS_FD_REDIRECT)
2103 test_scripts/contents_contents_in_middle_chapter.sh.log: test_scripts/contents_contents_in_middle_chapter.sh
2104 @p='test_scripts/contents_contents_in_middle_chapter.sh'; \
2105 b='test_scripts/contents_contents_in_middle_chapter.sh'; \
2106 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2107 --log-file $$b.log --trs-file $$b.trs \
2108 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2109 "$$tst" $(AM_TESTS_FD_REDIRECT)
2110 test_scripts/contents_contents_in_middle_section.sh.log: test_scripts/contents_contents_in_middle_section.sh
2111 @p='test_scripts/contents_contents_in_middle_section.sh'; \
2112 b='test_scripts/contents_contents_in_middle_section.sh'; \
2113 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2114 --log-file $$b.log --trs-file $$b.trs \
2115 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2116 "$$tst" $(AM_TESTS_FD_REDIRECT)
2117 test_scripts/contents_double_contents.sh.log: test_scripts/contents_double_contents.sh
2118 @p='test_scripts/contents_double_contents.sh'; \
2119 b='test_scripts/contents_double_contents.sh'; \
2120 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2121 --log-file $$b.log --trs-file $$b.trs \
2122 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2123 "$$tst" $(AM_TESTS_FD_REDIRECT)
2124 test_scripts/contents_double_contents_setcontentsaftertitlepage.sh.log: test_scripts/contents_double_contents_setcontentsaftertitlepage.sh
2125 @p='test_scripts/contents_double_contents_setcontentsaftertitlepage.sh'; \
2126 b='test_scripts/contents_double_contents_setcontentsaftertitlepage.sh'; \
2127 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2128 --log-file $$b.log --trs-file $$b.trs \
2129 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2130 "$$tst" $(AM_TESTS_FD_REDIRECT)
2131 test_scripts/contents_double_contents_chapter.sh.log: test_scripts/contents_double_contents_chapter.sh
2132 @p='test_scripts/contents_double_contents_chapter.sh'; \
2133 b='test_scripts/contents_double_contents_chapter.sh'; \
2134 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2135 --log-file $$b.log --trs-file $$b.trs \
2136 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2137 "$$tst" $(AM_TESTS_FD_REDIRECT)
2138 test_scripts/contents_double_contents_section.sh.log: test_scripts/contents_double_contents_section.sh
2139 @p='test_scripts/contents_double_contents_section.sh'; \
2140 b='test_scripts/contents_double_contents_section.sh'; \
2141 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2142 --log-file $$b.log --trs-file $$b.trs \
2143 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2144 "$$tst" $(AM_TESTS_FD_REDIRECT)
2145 test_scripts/contents_double_contents_nodes.sh.log: test_scripts/contents_double_contents_nodes.sh
2146 @p='test_scripts/contents_double_contents_nodes.sh'; \
2147 b='test_scripts/contents_double_contents_nodes.sh'; \
2148 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2149 --log-file $$b.log --trs-file $$b.trs \
2150 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2151 "$$tst" $(AM_TESTS_FD_REDIRECT)
2152 test_scripts/contents_no_content.sh.log: test_scripts/contents_no_content.sh
2153 @p='test_scripts/contents_no_content.sh'; \
2154 b='test_scripts/contents_no_content.sh'; \
2155 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2156 --log-file $$b.log --trs-file $$b.trs \
2157 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2158 "$$tst" $(AM_TESTS_FD_REDIRECT)
2159 test_scripts/contents_no_content_do_contents.sh.log: test_scripts/contents_no_content_do_contents.sh
2160 @p='test_scripts/contents_no_content_do_contents.sh'; \
2161 b='test_scripts/contents_no_content_do_contents.sh'; \
2162 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2163 --log-file $$b.log --trs-file $$b.trs \
2164 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2165 "$$tst" $(AM_TESTS_FD_REDIRECT)
2166 test_scripts/contents_no_content_setcatpage.sh.log: test_scripts/contents_no_content_setcatpage.sh
2167 @p='test_scripts/contents_no_content_setcatpage.sh'; \
2168 b='test_scripts/contents_no_content_setcatpage.sh'; \
2169 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2170 --log-file $$b.log --trs-file $$b.trs \
2171 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2172 "$$tst" $(AM_TESTS_FD_REDIRECT)
2173 test_scripts/contents_no_content_setcatpage_do_contents.sh.log: test_scripts/contents_no_content_setcatpage_do_contents.sh
2174 @p='test_scripts/contents_no_content_setcatpage_do_contents.sh'; \
2175 b='test_scripts/contents_no_content_setcatpage_do_contents.sh'; \
2176 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2177 --log-file $$b.log --trs-file $$b.trs \
2178 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2179 "$$tst" $(AM_TESTS_FD_REDIRECT)
2180 test_scripts/contents_contents_at_begin_inline.sh.log: test_scripts/contents_contents_at_begin_inline.sh
2181 @p='test_scripts/contents_contents_at_begin_inline.sh'; \
2182 b='test_scripts/contents_contents_at_begin_inline.sh'; \
2183 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2184 --log-file $$b.log --trs-file $$b.trs \
2185 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2186 "$$tst" $(AM_TESTS_FD_REDIRECT)
2187 test_scripts/contents_contents_at_end_inline.sh.log: test_scripts/contents_contents_at_end_inline.sh
2188 @p='test_scripts/contents_contents_at_end_inline.sh'; \
2189 b='test_scripts/contents_contents_at_end_inline.sh'; \
2190 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2191 --log-file $$b.log --trs-file $$b.trs \
2192 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2193 "$$tst" $(AM_TESTS_FD_REDIRECT)
2194 test_scripts/contents_contents_in_middle_chapter_inline.sh.log: test_scripts/contents_contents_in_middle_chapter_inline.sh
2195 @p='test_scripts/contents_contents_in_middle_chapter_inline.sh'; \
2196 b='test_scripts/contents_contents_in_middle_chapter_inline.sh'; \
2197 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2198 --log-file $$b.log --trs-file $$b.trs \
2199 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2200 "$$tst" $(AM_TESTS_FD_REDIRECT)
2201 test_scripts/contents_contents_in_middle_section_inline.sh.log: test_scripts/contents_contents_in_middle_section_inline.sh
2202 @p='test_scripts/contents_contents_in_middle_section_inline.sh'; \
2203 b='test_scripts/contents_contents_in_middle_section_inline.sh'; \
2204 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2205 --log-file $$b.log --trs-file $$b.trs \
2206 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2207 "$$tst" $(AM_TESTS_FD_REDIRECT)
2208 test_scripts/contents_double_contents_inline.sh.log: test_scripts/contents_double_contents_inline.sh
2209 @p='test_scripts/contents_double_contents_inline.sh'; \
2210 b='test_scripts/contents_double_contents_inline.sh'; \
2211 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2212 --log-file $$b.log --trs-file $$b.trs \
2213 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2214 "$$tst" $(AM_TESTS_FD_REDIRECT)
2215 test_scripts/contents_double_contents_setcontentsaftertitlepage_inline.sh.log: test_scripts/contents_double_contents_setcontentsaftertitlepage_inline.sh
2216 @p='test_scripts/contents_double_contents_setcontentsaftertitlepage_inline.sh'; \
2217 b='test_scripts/contents_double_contents_setcontentsaftertitlepage_inline.sh'; \
2218 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2219 --log-file $$b.log --trs-file $$b.trs \
2220 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2221 "$$tst" $(AM_TESTS_FD_REDIRECT)
2222 test_scripts/contents_double_contents_inline_chapter.sh.log: test_scripts/contents_double_contents_inline_chapter.sh
2223 @p='test_scripts/contents_double_contents_inline_chapter.sh'; \
2224 b='test_scripts/contents_double_contents_inline_chapter.sh'; \
2225 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2226 --log-file $$b.log --trs-file $$b.trs \
2227 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2228 "$$tst" $(AM_TESTS_FD_REDIRECT)
2229 test_scripts/contents_double_contents_inline_section.sh.log: test_scripts/contents_double_contents_inline_section.sh
2230 @p='test_scripts/contents_double_contents_inline_section.sh'; \
2231 b='test_scripts/contents_double_contents_inline_section.sh'; \
2232 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2233 --log-file $$b.log --trs-file $$b.trs \
2234 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2235 "$$tst" $(AM_TESTS_FD_REDIRECT)
2236 test_scripts/contents_double_contents_inline_nodes.sh.log: test_scripts/contents_double_contents_inline_nodes.sh
2237 @p='test_scripts/contents_double_contents_inline_nodes.sh'; \
2238 b='test_scripts/contents_double_contents_inline_nodes.sh'; \
2239 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2240 --log-file $$b.log --trs-file $$b.trs \
2241 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2242 "$$tst" $(AM_TESTS_FD_REDIRECT)
2243 test_scripts/contents_no_content_inline.sh.log: test_scripts/contents_no_content_inline.sh
2244 @p='test_scripts/contents_no_content_inline.sh'; \
2245 b='test_scripts/contents_no_content_inline.sh'; \
2246 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2247 --log-file $$b.log --trs-file $$b.trs \
2248 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2249 "$$tst" $(AM_TESTS_FD_REDIRECT)
2250 test_scripts/contents_no_content_do_contents_inline.sh.log: test_scripts/contents_no_content_do_contents_inline.sh
2251 @p='test_scripts/contents_no_content_do_contents_inline.sh'; \
2252 b='test_scripts/contents_no_content_do_contents_inline.sh'; \
2253 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2254 --log-file $$b.log --trs-file $$b.trs \
2255 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2256 "$$tst" $(AM_TESTS_FD_REDIRECT)
2257 test_scripts/contents_no_content_setcatpage_inline.sh.log: test_scripts/contents_no_content_setcatpage_inline.sh
2258 @p='test_scripts/contents_no_content_setcatpage_inline.sh'; \
2259 b='test_scripts/contents_no_content_setcatpage_inline.sh'; \
2260 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2261 --log-file $$b.log --trs-file $$b.trs \
2262 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2263 "$$tst" $(AM_TESTS_FD_REDIRECT)
2264 test_scripts/contents_no_content_setcatpage_do_contents_inline.sh.log: test_scripts/contents_no_content_setcatpage_do_contents_inline.sh
2265 @p='test_scripts/contents_no_content_setcatpage_do_contents_inline.sh'; \
2266 b='test_scripts/contents_no_content_setcatpage_do_contents_inline.sh'; \
2267 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2268 --log-file $$b.log --trs-file $$b.trs \
2269 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2270 "$$tst" $(AM_TESTS_FD_REDIRECT)
2271 test_scripts/contents_double_contents_book.sh.log: test_scripts/contents_double_contents_book.sh
2272 @p='test_scripts/contents_double_contents_book.sh'; \
2273 b='test_scripts/contents_double_contents_book.sh'; \
2274 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2275 --log-file $$b.log --trs-file $$b.trs \
2276 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2277 "$$tst" $(AM_TESTS_FD_REDIRECT)
2278 test_scripts/contents_double_contents_setcontentsaftertitlepage_book.sh.log: test_scripts/contents_double_contents_setcontentsaftertitlepage_book.sh
2279 @p='test_scripts/contents_double_contents_setcontentsaftertitlepage_book.sh'; \
2280 b='test_scripts/contents_double_contents_setcontentsaftertitlepage_book.sh'; \
2281 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2282 --log-file $$b.log --trs-file $$b.trs \
2283 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2284 "$$tst" $(AM_TESTS_FD_REDIRECT)
2285 test_scripts/contents_double_contents_setcontentsaftertitlepage_book_chapter.sh.log: test_scripts/contents_double_contents_setcontentsaftertitlepage_book_chapter.sh
2286 @p='test_scripts/contents_double_contents_setcontentsaftertitlepage_book_chapter.sh'; \
2287 b='test_scripts/contents_double_contents_setcontentsaftertitlepage_book_chapter.sh'; \
2288 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2289 --log-file $$b.log --trs-file $$b.trs \
2290 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2291 "$$tst" $(AM_TESTS_FD_REDIRECT)
2292 test_scripts/contents_contents_and_parts.sh.log: test_scripts/contents_contents_and_parts.sh
2293 @p='test_scripts/contents_contents_and_parts.sh'; \
2294 b='test_scripts/contents_contents_and_parts.sh'; \
2295 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2296 --log-file $$b.log --trs-file $$b.trs \
2297 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2298 "$$tst" $(AM_TESTS_FD_REDIRECT)
2299 test_scripts/contents_contents_at_begin_info.sh.log: test_scripts/contents_contents_at_begin_info.sh
2300 @p='test_scripts/contents_contents_at_begin_info.sh'; \
2301 b='test_scripts/contents_contents_at_begin_info.sh'; \
2302 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2303 --log-file $$b.log --trs-file $$b.trs \
2304 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2305 "$$tst" $(AM_TESTS_FD_REDIRECT)
2306 test_scripts/contents_contents_at_end_info.sh.log: test_scripts/contents_contents_at_end_info.sh
2307 @p='test_scripts/contents_contents_at_end_info.sh'; \
2308 b='test_scripts/contents_contents_at_end_info.sh'; \
2309 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2310 --log-file $$b.log --trs-file $$b.trs \
2311 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2312 "$$tst" $(AM_TESTS_FD_REDIRECT)
2313 test_scripts/contents_contents_in_middle_chapter_info.sh.log: test_scripts/contents_contents_in_middle_chapter_info.sh
2314 @p='test_scripts/contents_contents_in_middle_chapter_info.sh'; \
2315 b='test_scripts/contents_contents_in_middle_chapter_info.sh'; \
2316 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2317 --log-file $$b.log --trs-file $$b.trs \
2318 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2319 "$$tst" $(AM_TESTS_FD_REDIRECT)
2320 test_scripts/contents_contents_in_middle_section_info.sh.log: test_scripts/contents_contents_in_middle_section_info.sh
2321 @p='test_scripts/contents_contents_in_middle_section_info.sh'; \
2322 b='test_scripts/contents_contents_in_middle_section_info.sh'; \
2323 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2324 --log-file $$b.log --trs-file $$b.trs \
2325 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2326 "$$tst" $(AM_TESTS_FD_REDIRECT)
2327 test_scripts/contents_double_contents_info.sh.log: test_scripts/contents_double_contents_info.sh
2328 @p='test_scripts/contents_double_contents_info.sh'; \
2329 b='test_scripts/contents_double_contents_info.sh'; \
2330 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2331 --log-file $$b.log --trs-file $$b.trs \
2332 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2333 "$$tst" $(AM_TESTS_FD_REDIRECT)
2334 test_scripts/contents_double_contents_setcontentsaftertitlepage_info.sh.log: test_scripts/contents_double_contents_setcontentsaftertitlepage_info.sh
2335 @p='test_scripts/contents_double_contents_setcontentsaftertitlepage_info.sh'; \
2336 b='test_scripts/contents_double_contents_setcontentsaftertitlepage_info.sh'; \
2337 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2338 --log-file $$b.log --trs-file $$b.trs \
2339 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2340 "$$tst" $(AM_TESTS_FD_REDIRECT)
2341 test_scripts/layout_no_monolithic.sh.log: test_scripts/layout_no_monolithic.sh
2342 @p='test_scripts/layout_no_monolithic.sh'; \
2343 b='test_scripts/layout_no_monolithic.sh'; \
2344 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2345 --log-file $$b.log --trs-file $$b.trs \
2346 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2347 "$$tst" $(AM_TESTS_FD_REDIRECT)
2348 test_scripts/layout_no_monolithic_only_toc_out.sh.log: test_scripts/layout_no_monolithic_only_toc_out.sh
2349 @p='test_scripts/layout_no_monolithic_only_toc_out.sh'; \
2350 b='test_scripts/layout_no_monolithic_only_toc_out.sh'; \
2351 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2352 --log-file $$b.log --trs-file $$b.trs \
2353 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2354 "$$tst" $(AM_TESTS_FD_REDIRECT)
2355 test_scripts/layout_navigation.sh.log: test_scripts/layout_navigation.sh
2356 @p='test_scripts/layout_navigation.sh'; \
2357 b='test_scripts/layout_navigation.sh'; \
2358 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2359 --log-file $$b.log --trs-file $$b.trs \
2360 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2361 "$$tst" $(AM_TESTS_FD_REDIRECT)
2362 test_scripts/layout_navigation_no_header.sh.log: test_scripts/layout_navigation_no_header.sh
2363 @p='test_scripts/layout_navigation_no_header.sh'; \
2364 b='test_scripts/layout_navigation_no_header.sh'; \
2365 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2366 --log-file $$b.log --trs-file $$b.trs \
2367 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2368 "$$tst" $(AM_TESTS_FD_REDIRECT)
2369 test_scripts/layout_navigation_vertical.sh.log: test_scripts/layout_navigation_vertical.sh
2370 @p='test_scripts/layout_navigation_vertical.sh'; \
2371 b='test_scripts/layout_navigation_vertical.sh'; \
2372 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2373 --log-file $$b.log --trs-file $$b.trs \
2374 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2375 "$$tst" $(AM_TESTS_FD_REDIRECT)
2376 test_scripts/layout_navigation_no_header_vertical.sh.log: test_scripts/layout_navigation_no_header_vertical.sh
2377 @p='test_scripts/layout_navigation_no_header_vertical.sh'; \
2378 b='test_scripts/layout_navigation_no_header_vertical.sh'; \
2379 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2380 --log-file $$b.log --trs-file $$b.trs \
2381 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2382 "$$tst" $(AM_TESTS_FD_REDIRECT)
2383 test_scripts/layout_navigation_chapter.sh.log: test_scripts/layout_navigation_chapter.sh
2384 @p='test_scripts/layout_navigation_chapter.sh'; \
2385 b='test_scripts/layout_navigation_chapter.sh'; \
2386 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2387 --log-file $$b.log --trs-file $$b.trs \
2388 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2389 "$$tst" $(AM_TESTS_FD_REDIRECT)
2390 test_scripts/layout_navigation_section.sh.log: test_scripts/layout_navigation_section.sh
2391 @p='test_scripts/layout_navigation_section.sh'; \
2392 b='test_scripts/layout_navigation_section.sh'; \
2393 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2394 --log-file $$b.log --trs-file $$b.trs \
2395 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2396 "$$tst" $(AM_TESTS_FD_REDIRECT)
2397 test_scripts/layout_navigation_node.sh.log: test_scripts/layout_navigation_node.sh
2398 @p='test_scripts/layout_navigation_node.sh'; \
2399 b='test_scripts/layout_navigation_node.sh'; \
2400 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2401 --log-file $$b.log --trs-file $$b.trs \
2402 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2403 "$$tst" $(AM_TESTS_FD_REDIRECT)
2404 test_scripts/layout_navigation_chapter_no_header.sh.log: test_scripts/layout_navigation_chapter_no_header.sh
2405 @p='test_scripts/layout_navigation_chapter_no_header.sh'; \
2406 b='test_scripts/layout_navigation_chapter_no_header.sh'; \
2407 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2408 --log-file $$b.log --trs-file $$b.trs \
2409 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2410 "$$tst" $(AM_TESTS_FD_REDIRECT)
2411 test_scripts/layout_navigation_section_no_header.sh.log: test_scripts/layout_navigation_section_no_header.sh
2412 @p='test_scripts/layout_navigation_section_no_header.sh'; \
2413 b='test_scripts/layout_navigation_section_no_header.sh'; \
2414 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2415 --log-file $$b.log --trs-file $$b.trs \
2416 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2417 "$$tst" $(AM_TESTS_FD_REDIRECT)
2418 test_scripts/layout_navigation_node_no_header.sh.log: test_scripts/layout_navigation_node_no_header.sh
2419 @p='test_scripts/layout_navigation_node_no_header.sh'; \
2420 b='test_scripts/layout_navigation_node_no_header.sh'; \
2421 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2422 --log-file $$b.log --trs-file $$b.trs \
2423 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2424 "$$tst" $(AM_TESTS_FD_REDIRECT)
2425 test_scripts/layout_navigation_chapter_vertical.sh.log: test_scripts/layout_navigation_chapter_vertical.sh
2426 @p='test_scripts/layout_navigation_chapter_vertical.sh'; \
2427 b='test_scripts/layout_navigation_chapter_vertical.sh'; \
2428 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2429 --log-file $$b.log --trs-file $$b.trs \
2430 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2431 "$$tst" $(AM_TESTS_FD_REDIRECT)
2432 test_scripts/layout_navigation_section_vertical.sh.log: test_scripts/layout_navigation_section_vertical.sh
2433 @p='test_scripts/layout_navigation_section_vertical.sh'; \
2434 b='test_scripts/layout_navigation_section_vertical.sh'; \
2435 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2436 --log-file $$b.log --trs-file $$b.trs \
2437 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2438 "$$tst" $(AM_TESTS_FD_REDIRECT)
2439 test_scripts/layout_navigation_node_vertical.sh.log: test_scripts/layout_navigation_node_vertical.sh
2440 @p='test_scripts/layout_navigation_node_vertical.sh'; \
2441 b='test_scripts/layout_navigation_node_vertical.sh'; \
2442 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2443 --log-file $$b.log --trs-file $$b.trs \
2444 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2445 "$$tst" $(AM_TESTS_FD_REDIRECT)
2446 test_scripts/layout_navigation_chapter_no_header_vertical.sh.log: test_scripts/layout_navigation_chapter_no_header_vertical.sh
2447 @p='test_scripts/layout_navigation_chapter_no_header_vertical.sh'; \
2448 b='test_scripts/layout_navigation_chapter_no_header_vertical.sh'; \
2449 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2450 --log-file $$b.log --trs-file $$b.trs \
2451 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2452 "$$tst" $(AM_TESTS_FD_REDIRECT)
2453 test_scripts/layout_navigation_section_no_header_vertical.sh.log: test_scripts/layout_navigation_section_no_header_vertical.sh
2454 @p='test_scripts/layout_navigation_section_no_header_vertical.sh'; \
2455 b='test_scripts/layout_navigation_section_no_header_vertical.sh'; \
2456 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2457 --log-file $$b.log --trs-file $$b.trs \
2458 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2459 "$$tst" $(AM_TESTS_FD_REDIRECT)
2460 test_scripts/layout_navigation_node_no_header_vertical.sh.log: test_scripts/layout_navigation_node_no_header_vertical.sh
2461 @p='test_scripts/layout_navigation_node_no_header_vertical.sh'; \
2462 b='test_scripts/layout_navigation_node_no_header_vertical.sh'; \
2463 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2464 --log-file $$b.log --trs-file $$b.trs \
2465 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2466 "$$tst" $(AM_TESTS_FD_REDIRECT)
2467 test_scripts/layout_navigation_test_misc_file_collision.sh.log: test_scripts/layout_navigation_test_misc_file_collision.sh
2468 @p='test_scripts/layout_navigation_test_misc_file_collision.sh'; \
2469 b='test_scripts/layout_navigation_test_misc_file_collision.sh'; \
2470 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2471 --log-file $$b.log --trs-file $$b.trs \
2472 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2473 "$$tst" $(AM_TESTS_FD_REDIRECT)
2474 test_scripts/layout_formatting_docbook.sh.log: test_scripts/layout_formatting_docbook.sh
2475 @p='test_scripts/layout_formatting_docbook.sh'; \
2476 b='test_scripts/layout_formatting_docbook.sh'; \
2477 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2478 --log-file $$b.log --trs-file $$b.trs \
2479 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2480 "$$tst" $(AM_TESTS_FD_REDIRECT)
2481 test_scripts/layout_formatting_xml.sh.log: test_scripts/layout_formatting_xml.sh
2482 @p='test_scripts/layout_formatting_xml.sh'; \
2483 b='test_scripts/layout_formatting_xml.sh'; \
2484 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2485 --log-file $$b.log --trs-file $$b.trs \
2486 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2487 "$$tst" $(AM_TESTS_FD_REDIRECT)
2488 test_scripts/layout_formatting_weird_quotes.sh.log: test_scripts/layout_formatting_weird_quotes.sh
2489 @p='test_scripts/layout_formatting_weird_quotes.sh'; \
2490 b='test_scripts/layout_formatting_weird_quotes.sh'; \
2491 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2492 --log-file $$b.log --trs-file $$b.trs \
2493 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2494 "$$tst" $(AM_TESTS_FD_REDIRECT)
2495 test_scripts/layout_formatting_html.sh.log: test_scripts/layout_formatting_html.sh
2496 @p='test_scripts/layout_formatting_html.sh'; \
2497 b='test_scripts/layout_formatting_html.sh'; \
2498 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2499 --log-file $$b.log --trs-file $$b.trs \
2500 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2501 "$$tst" $(AM_TESTS_FD_REDIRECT)
2502 test_scripts/layout_formatting_html_nodes.sh.log: test_scripts/layout_formatting_html_nodes.sh
2503 @p='test_scripts/layout_formatting_html_nodes.sh'; \
2504 b='test_scripts/layout_formatting_html_nodes.sh'; \
2505 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2506 --log-file $$b.log --trs-file $$b.trs \
2507 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2508 "$$tst" $(AM_TESTS_FD_REDIRECT)
2509 test_scripts/layout_formatting_plaintext.sh.log: test_scripts/layout_formatting_plaintext.sh
2510 @p='test_scripts/layout_formatting_plaintext.sh'; \
2511 b='test_scripts/layout_formatting_plaintext.sh'; \
2512 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2513 --log-file $$b.log --trs-file $$b.trs \
2514 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2515 "$$tst" $(AM_TESTS_FD_REDIRECT)
2516 test_scripts/layout_formatting_html32.sh.log: test_scripts/layout_formatting_html32.sh
2517 @p='test_scripts/layout_formatting_html32.sh'; \
2518 b='test_scripts/layout_formatting_html32.sh'; \
2519 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2520 --log-file $$b.log --trs-file $$b.trs \
2521 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2522 "$$tst" $(AM_TESTS_FD_REDIRECT)
2523 test_scripts/layout_formatting_regions.sh.log: test_scripts/layout_formatting_regions.sh
2524 @p='test_scripts/layout_formatting_regions.sh'; \
2525 b='test_scripts/layout_formatting_regions.sh'; \
2526 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2527 --log-file $$b.log --trs-file $$b.trs \
2528 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2529 "$$tst" $(AM_TESTS_FD_REDIRECT)
2530 test_scripts/layout_formatting_exotic.sh.log: test_scripts/layout_formatting_exotic.sh
2531 @p='test_scripts/layout_formatting_exotic.sh'; \
2532 b='test_scripts/layout_formatting_exotic.sh'; \
2533 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2534 --log-file $$b.log --trs-file $$b.trs \
2535 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2536 "$$tst" $(AM_TESTS_FD_REDIRECT)
2537 test_scripts/layout_formatting_fr_icons.sh.log: test_scripts/layout_formatting_fr_icons.sh
2538 @p='test_scripts/layout_formatting_fr_icons.sh'; \
2539 b='test_scripts/layout_formatting_fr_icons.sh'; \
2540 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2541 --log-file $$b.log --trs-file $$b.trs \
2542 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2543 "$$tst" $(AM_TESTS_FD_REDIRECT)
2544 test_scripts/layout_formatting_chm.sh.log: test_scripts/layout_formatting_chm.sh
2545 @p='test_scripts/layout_formatting_chm.sh'; \
2546 b='test_scripts/layout_formatting_chm.sh'; \
2547 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2548 --log-file $$b.log --trs-file $$b.trs \
2549 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2550 "$$tst" $(AM_TESTS_FD_REDIRECT)
2551 test_scripts/layout_formatting_nodes.sh.log: test_scripts/layout_formatting_nodes.sh
2552 @p='test_scripts/layout_formatting_nodes.sh'; \
2553 b='test_scripts/layout_formatting_nodes.sh'; \
2554 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2555 --log-file $$b.log --trs-file $$b.trs \
2556 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2557 "$$tst" $(AM_TESTS_FD_REDIRECT)
2558 test_scripts/formatting_texi_glossary.sh.log: test_scripts/formatting_texi_glossary.sh
2559 @p='test_scripts/formatting_texi_glossary.sh'; \
2560 b='test_scripts/formatting_texi_glossary.sh'; \
2561 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2562 --log-file $$b.log --trs-file $$b.trs \
2563 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2564 "$$tst" $(AM_TESTS_FD_REDIRECT)
2565 test_scripts/formatting_texi_bib-example.sh.log: test_scripts/formatting_texi_bib-example.sh
2566 @p='test_scripts/formatting_texi_bib-example.sh'; \
2567 b='test_scripts/formatting_texi_bib-example.sh'; \
2568 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2569 --log-file $$b.log --trs-file $$b.trs \
2570 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2571 "$$tst" $(AM_TESTS_FD_REDIRECT)
2572 test_scripts/formatting_texi_cond.sh.log: test_scripts/formatting_texi_cond.sh
2573 @p='test_scripts/formatting_texi_cond.sh'; \
2574 b='test_scripts/formatting_texi_cond.sh'; \
2575 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2576 --log-file $$b.log --trs-file $$b.trs \
2577 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2578 "$$tst" $(AM_TESTS_FD_REDIRECT)
2579 test_scripts/formatting_cond.sh.log: test_scripts/formatting_cond.sh
2580 @p='test_scripts/formatting_cond.sh'; \
2581 b='test_scripts/formatting_cond.sh'; \
2582 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2583 --log-file $$b.log --trs-file $$b.trs \
2584 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2585 "$$tst" $(AM_TESTS_FD_REDIRECT)
2586 test_scripts/formatting_cond_xml.sh.log: test_scripts/formatting_cond_xml.sh
2587 @p='test_scripts/formatting_cond_xml.sh'; \
2588 b='test_scripts/formatting_cond_xml.sh'; \
2589 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2590 --log-file $$b.log --trs-file $$b.trs \
2591 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2592 "$$tst" $(AM_TESTS_FD_REDIRECT)
2593 test_scripts/formatting_cond_no-ifhtml_no-ifinfo_no-iftex.sh.log: test_scripts/formatting_cond_no-ifhtml_no-ifinfo_no-iftex.sh
2594 @p='test_scripts/formatting_cond_no-ifhtml_no-ifinfo_no-iftex.sh'; \
2595 b='test_scripts/formatting_cond_no-ifhtml_no-ifinfo_no-iftex.sh'; \
2596 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2597 --log-file $$b.log --trs-file $$b.trs \
2598 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2599 "$$tst" $(AM_TESTS_FD_REDIRECT)
2600 test_scripts/formatting_cond_ifhtml_ifinfo_iftex.sh.log: test_scripts/formatting_cond_ifhtml_ifinfo_iftex.sh
2601 @p='test_scripts/formatting_cond_ifhtml_ifinfo_iftex.sh'; \
2602 b='test_scripts/formatting_cond_ifhtml_ifinfo_iftex.sh'; \
2603 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2604 --log-file $$b.log --trs-file $$b.trs \
2605 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2606 "$$tst" $(AM_TESTS_FD_REDIRECT)
2607 test_scripts/formatting_cond_info.sh.log: test_scripts/formatting_cond_info.sh
2608 @p='test_scripts/formatting_cond_info.sh'; \
2609 b='test_scripts/formatting_cond_info.sh'; \
2610 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2611 --log-file $$b.log --trs-file $$b.trs \
2612 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2613 "$$tst" $(AM_TESTS_FD_REDIRECT)
2614 test_scripts/formatting_cond_info_no-ifhtml_no-ifinfo_no-iftex.sh.log: test_scripts/formatting_cond_info_no-ifhtml_no-ifinfo_no-iftex.sh
2615 @p='test_scripts/formatting_cond_info_no-ifhtml_no-ifinfo_no-iftex.sh'; \
2616 b='test_scripts/formatting_cond_info_no-ifhtml_no-ifinfo_no-iftex.sh'; \
2617 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2618 --log-file $$b.log --trs-file $$b.trs \
2619 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2620 "$$tst" $(AM_TESTS_FD_REDIRECT)
2621 test_scripts/formatting_cond_info_ifhtml_ifinfo_iftex.sh.log: test_scripts/formatting_cond_info_ifhtml_ifinfo_iftex.sh
2622 @p='test_scripts/formatting_cond_info_ifhtml_ifinfo_iftex.sh'; \
2623 b='test_scripts/formatting_cond_info_ifhtml_ifinfo_iftex.sh'; \
2624 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2625 --log-file $$b.log --trs-file $$b.trs \
2626 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2627 "$$tst" $(AM_TESTS_FD_REDIRECT)
2628 test_scripts/formatting_defcondx_Dbar.sh.log: test_scripts/formatting_defcondx_Dbar.sh
2629 @p='test_scripts/formatting_defcondx_Dbar.sh'; \
2630 b='test_scripts/formatting_defcondx_Dbar.sh'; \
2631 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2632 --log-file $$b.log --trs-file $$b.trs \
2633 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2634 "$$tst" $(AM_TESTS_FD_REDIRECT)
2635 test_scripts/formatting_defcondx_Ubar.sh.log: test_scripts/formatting_defcondx_Ubar.sh
2636 @p='test_scripts/formatting_defcondx_Ubar.sh'; \
2637 b='test_scripts/formatting_defcondx_Ubar.sh'; \
2638 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2639 --log-file $$b.log --trs-file $$b.trs \
2640 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2641 "$$tst" $(AM_TESTS_FD_REDIRECT)
2642 test_scripts/formatting_unknown_nodes_renamed.sh.log: test_scripts/formatting_unknown_nodes_renamed.sh
2643 @p='test_scripts/formatting_unknown_nodes_renamed.sh'; \
2644 b='test_scripts/formatting_unknown_nodes_renamed.sh'; \
2645 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2646 --log-file $$b.log --trs-file $$b.trs \
2647 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2648 "$$tst" $(AM_TESTS_FD_REDIRECT)
2649 test_scripts/formatting_texi_ignore_and_comments.sh.log: test_scripts/formatting_texi_ignore_and_comments.sh
2650 @p='test_scripts/formatting_texi_ignore_and_comments.sh'; \
2651 b='test_scripts/formatting_texi_ignore_and_comments.sh'; \
2652 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2653 --log-file $$b.log --trs-file $$b.trs \
2654 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2655 "$$tst" $(AM_TESTS_FD_REDIRECT)
2656 test_scripts/formatting_ignore_and_comments_output.sh.log: test_scripts/formatting_ignore_and_comments_output.sh
2657 @p='test_scripts/formatting_ignore_and_comments_output.sh'; \
2658 b='test_scripts/formatting_ignore_and_comments_output.sh'; \
2659 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2660 --log-file $$b.log --trs-file $$b.trs \
2661 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2662 "$$tst" $(AM_TESTS_FD_REDIRECT)
2663 test_scripts/formatting_test_redefine_need.sh.log: test_scripts/formatting_test_redefine_need.sh
2664 @p='test_scripts/formatting_test_redefine_need.sh'; \
2665 b='test_scripts/formatting_test_redefine_need.sh'; \
2666 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2667 --log-file $$b.log --trs-file $$b.trs \
2668 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2669 "$$tst" $(AM_TESTS_FD_REDIRECT)
2670 test_scripts/formatting_direntry_dircategory_info_split.sh.log: test_scripts/formatting_direntry_dircategory_info_split.sh
2671 @p='test_scripts/formatting_direntry_dircategory_info_split.sh'; \
2672 b='test_scripts/formatting_direntry_dircategory_info_split.sh'; \
2673 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2674 --log-file $$b.log --trs-file $$b.trs \
2675 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2676 "$$tst" $(AM_TESTS_FD_REDIRECT)
2677 test_scripts/formatting_split_nocopying.sh.log: test_scripts/formatting_split_nocopying.sh
2678 @p='test_scripts/formatting_split_nocopying.sh'; \
2679 b='test_scripts/formatting_split_nocopying.sh'; \
2680 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2681 --log-file $$b.log --trs-file $$b.trs \
2682 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2683 "$$tst" $(AM_TESTS_FD_REDIRECT)
2684 test_scripts/formatting_split_nocopying_split.sh.log: test_scripts/formatting_split_nocopying_split.sh
2685 @p='test_scripts/formatting_split_nocopying_split.sh'; \
2686 b='test_scripts/formatting_split_nocopying_split.sh'; \
2687 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2688 --log-file $$b.log --trs-file $$b.trs \
2689 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2690 "$$tst" $(AM_TESTS_FD_REDIRECT)
2691 test_scripts/formatting_split_nocopying_split_dev_null.sh.log: test_scripts/formatting_split_nocopying_split_dev_null.sh
2692 @p='test_scripts/formatting_split_nocopying_split_dev_null.sh'; \
2693 b='test_scripts/formatting_split_nocopying_split_dev_null.sh'; \
2694 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2695 --log-file $$b.log --trs-file $$b.trs \
2696 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2697 "$$tst" $(AM_TESTS_FD_REDIRECT)
2698 test_scripts/formatting_simplest_test_prefix.sh.log: test_scripts/formatting_simplest_test_prefix.sh
2699 @p='test_scripts/formatting_simplest_test_prefix.sh'; \
2700 b='test_scripts/formatting_simplest_test_prefix.sh'; \
2701 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2702 --log-file $$b.log --trs-file $$b.trs \
2703 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2704 "$$tst" $(AM_TESTS_FD_REDIRECT)
2705 test_scripts/formatting_simplest_test_prefix_info.sh.log: test_scripts/formatting_simplest_test_prefix_info.sh
2706 @p='test_scripts/formatting_simplest_test_prefix_info.sh'; \
2707 b='test_scripts/formatting_simplest_test_prefix_info.sh'; \
2708 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2709 --log-file $$b.log --trs-file $$b.trs \
2710 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2711 "$$tst" $(AM_TESTS_FD_REDIRECT)
2712 test_scripts/formatting_simplest_test_css.sh.log: test_scripts/formatting_simplest_test_css.sh
2713 @p='test_scripts/formatting_simplest_test_css.sh'; \
2714 b='test_scripts/formatting_simplest_test_css.sh'; \
2715 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2716 --log-file $$b.log --trs-file $$b.trs \
2717 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2718 "$$tst" $(AM_TESTS_FD_REDIRECT)
2719 test_scripts/formatting_simplest_test_date_in_header.sh.log: test_scripts/formatting_simplest_test_date_in_header.sh
2720 @p='test_scripts/formatting_simplest_test_date_in_header.sh'; \
2721 b='test_scripts/formatting_simplest_test_date_in_header.sh'; \
2722 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2723 --log-file $$b.log --trs-file $$b.trs \
2724 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2725 "$$tst" $(AM_TESTS_FD_REDIRECT)
2726 test_scripts/formatting_documentlanguage_set_option.sh.log: test_scripts/formatting_documentlanguage_set_option.sh
2727 @p='test_scripts/formatting_documentlanguage_set_option.sh'; \
2728 b='test_scripts/formatting_documentlanguage_set_option.sh'; \
2729 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2730 --log-file $$b.log --trs-file $$b.trs \
2731 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2732 "$$tst" $(AM_TESTS_FD_REDIRECT)
2733 test_scripts/formatting_documentlanguage_set_unknown.sh.log: test_scripts/formatting_documentlanguage_set_unknown.sh
2734 @p='test_scripts/formatting_documentlanguage_set_unknown.sh'; \
2735 b='test_scripts/formatting_documentlanguage_set_unknown.sh'; \
2736 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2737 --log-file $$b.log --trs-file $$b.trs \
2738 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2739 "$$tst" $(AM_TESTS_FD_REDIRECT)
2740 test_scripts/formatting_documentlanguage_set_option_info.sh.log: test_scripts/formatting_documentlanguage_set_option_info.sh
2741 @p='test_scripts/formatting_documentlanguage_set_option_info.sh'; \
2742 b='test_scripts/formatting_documentlanguage_set_option_info.sh'; \
2743 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2744 --log-file $$b.log --trs-file $$b.trs \
2745 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2746 "$$tst" $(AM_TESTS_FD_REDIRECT)
2747 test_scripts/formatting_float_copying.sh.log: test_scripts/formatting_float_copying.sh
2748 @p='test_scripts/formatting_float_copying.sh'; \
2749 b='test_scripts/formatting_float_copying.sh'; \
2750 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2751 --log-file $$b.log --trs-file $$b.trs \
2752 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2753 "$$tst" $(AM_TESTS_FD_REDIRECT)
2754 test_scripts/formatting_simple_with_menu_docbook_info.sh.log: test_scripts/formatting_simple_with_menu_docbook_info.sh
2755 @p='test_scripts/formatting_simple_with_menu_docbook_info.sh'; \
2756 b='test_scripts/formatting_simple_with_menu_docbook_info.sh'; \
2757 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2758 --log-file $$b.log --trs-file $$b.trs \
2759 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2760 "$$tst" $(AM_TESTS_FD_REDIRECT)
2761 test_scripts/formatting_split_for_format_not_split.sh.log: test_scripts/formatting_split_for_format_not_split.sh
2762 @p='test_scripts/formatting_split_for_format_not_split.sh'; \
2763 b='test_scripts/formatting_split_for_format_not_split.sh'; \
2764 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2765 --log-file $$b.log --trs-file $$b.trs \
2766 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2767 "$$tst" $(AM_TESTS_FD_REDIRECT)
2768 test_scripts/htmlxref_htmlxref.sh.log: test_scripts/htmlxref_htmlxref.sh
2769 @p='test_scripts/htmlxref_htmlxref.sh'; \
2770 b='test_scripts/htmlxref_htmlxref.sh'; \
2771 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2772 --log-file $$b.log --trs-file $$b.trs \
2773 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2774 "$$tst" $(AM_TESTS_FD_REDIRECT)
2775 test_scripts/htmlxref_htmlxref_nodes.sh.log: test_scripts/htmlxref_htmlxref_nodes.sh
2776 @p='test_scripts/htmlxref_htmlxref_nodes.sh'; \
2777 b='test_scripts/htmlxref_htmlxref_nodes.sh'; \
2778 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2779 --log-file $$b.log --trs-file $$b.trs \
2780 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2781 "$$tst" $(AM_TESTS_FD_REDIRECT)
2782 test_scripts/htmlxref-only_mono_htmlxref.sh.log: test_scripts/htmlxref-only_mono_htmlxref.sh
2783 @p='test_scripts/htmlxref-only_mono_htmlxref.sh'; \
2784 b='test_scripts/htmlxref-only_mono_htmlxref.sh'; \
2785 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2786 --log-file $$b.log --trs-file $$b.trs \
2787 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2788 "$$tst" $(AM_TESTS_FD_REDIRECT)
2789 test_scripts/htmlxref-only_mono_htmlxref_nodes.sh.log: test_scripts/htmlxref-only_mono_htmlxref_nodes.sh
2790 @p='test_scripts/htmlxref-only_mono_htmlxref_nodes.sh'; \
2791 b='test_scripts/htmlxref-only_mono_htmlxref_nodes.sh'; \
2792 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2793 --log-file $$b.log --trs-file $$b.trs \
2794 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2795 "$$tst" $(AM_TESTS_FD_REDIRECT)
2796 test_scripts/htmlxref-only_split_htmlxref.sh.log: test_scripts/htmlxref-only_split_htmlxref.sh
2797 @p='test_scripts/htmlxref-only_split_htmlxref.sh'; \
2798 b='test_scripts/htmlxref-only_split_htmlxref.sh'; \
2799 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2800 --log-file $$b.log --trs-file $$b.trs \
2801 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2802 "$$tst" $(AM_TESTS_FD_REDIRECT)
2803 test_scripts/htmlxref-only_split_htmlxref_nodes.sh.log: test_scripts/htmlxref-only_split_htmlxref_nodes.sh
2804 @p='test_scripts/htmlxref-only_split_htmlxref_nodes.sh'; \
2805 b='test_scripts/htmlxref-only_split_htmlxref_nodes.sh'; \
2806 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2807 --log-file $$b.log --trs-file $$b.trs \
2808 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2809 "$$tst" $(AM_TESTS_FD_REDIRECT)
2810 test_scripts/tex_html_block_EOL_tex.sh.log: test_scripts/tex_html_block_EOL_tex.sh
2811 @p='test_scripts/tex_html_block_EOL_tex.sh'; \
2812 b='test_scripts/tex_html_block_EOL_tex.sh'; \
2813 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2814 --log-file $$b.log --trs-file $$b.trs \
2815 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2816 "$$tst" $(AM_TESTS_FD_REDIRECT)
2817 test_scripts/tex_html_simplest_httex.sh.log: test_scripts/tex_html_simplest_httex.sh
2818 @p='test_scripts/tex_html_simplest_httex.sh'; \
2819 b='test_scripts/tex_html_simplest_httex.sh'; \
2820 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2821 --log-file $$b.log --trs-file $$b.trs \
2822 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2823 "$$tst" $(AM_TESTS_FD_REDIRECT)
2824 test_scripts/tex_html_tex.sh.log: test_scripts/tex_html_tex.sh
2825 @p='test_scripts/tex_html_tex.sh'; \
2826 b='test_scripts/tex_html_tex.sh'; \
2827 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2828 --log-file $$b.log --trs-file $$b.trs \
2829 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2830 "$$tst" $(AM_TESTS_FD_REDIRECT)
2831 test_scripts/tex_html_tex_notex.sh.log: test_scripts/tex_html_tex_notex.sh
2832 @p='test_scripts/tex_html_tex_notex.sh'; \
2833 b='test_scripts/tex_html_tex_notex.sh'; \
2834 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2835 --log-file $$b.log --trs-file $$b.trs \
2836 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2837 "$$tst" $(AM_TESTS_FD_REDIRECT)
2838 test_scripts/tex_html_tex_httex.sh.log: test_scripts/tex_html_tex_httex.sh
2839 @p='test_scripts/tex_html_tex_httex.sh'; \
2840 b='test_scripts/tex_html_tex_httex.sh'; \
2841 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2842 --log-file $$b.log --trs-file $$b.trs \
2843 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2844 "$$tst" $(AM_TESTS_FD_REDIRECT)
2845 test_scripts/tex_html_tex_accents_httex.sh.log: test_scripts/tex_html_tex_accents_httex.sh
2846 @p='test_scripts/tex_html_tex_accents_httex.sh'; \
2847 b='test_scripts/tex_html_tex_accents_httex.sh'; \
2848 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2849 --log-file $$b.log --trs-file $$b.trs \
2850 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2851 "$$tst" $(AM_TESTS_FD_REDIRECT)
2852 test_scripts/tex_html_tex_accents_l2h.sh.log: test_scripts/tex_html_tex_accents_l2h.sh
2853 @p='test_scripts/tex_html_tex_accents_l2h.sh'; \
2854 b='test_scripts/tex_html_tex_accents_l2h.sh'; \
2855 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2856 --log-file $$b.log --trs-file $$b.trs \
2857 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2858 "$$tst" $(AM_TESTS_FD_REDIRECT)
2859 test_scripts/tex_html_tex_complex_httex.sh.log: test_scripts/tex_html_tex_complex_httex.sh
2860 @p='test_scripts/tex_html_tex_complex_httex.sh'; \
2861 b='test_scripts/tex_html_tex_complex_httex.sh'; \
2862 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2863 --log-file $$b.log --trs-file $$b.trs \
2864 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2865 "$$tst" $(AM_TESTS_FD_REDIRECT)
2866 test_scripts/tex_html_tex_complex_l2h.sh.log: test_scripts/tex_html_tex_complex_l2h.sh
2867 @p='test_scripts/tex_html_tex_complex_l2h.sh'; \
2868 b='test_scripts/tex_html_tex_complex_l2h.sh'; \
2869 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2870 --log-file $$b.log --trs-file $$b.trs \
2871 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2872 "$$tst" $(AM_TESTS_FD_REDIRECT)
2873 test_scripts/tex_html_math_not_closed.sh.log: test_scripts/tex_html_math_not_closed.sh
2874 @p='test_scripts/tex_html_math_not_closed.sh'; \
2875 b='test_scripts/tex_html_math_not_closed.sh'; \
2876 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2877 --log-file $$b.log --trs-file $$b.trs \
2878 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2879 "$$tst" $(AM_TESTS_FD_REDIRECT)
2880 test_scripts/tex_html_tex_not_closed.sh.log: test_scripts/tex_html_tex_not_closed.sh
2881 @p='test_scripts/tex_html_tex_not_closed.sh'; \
2882 b='test_scripts/tex_html_tex_not_closed.sh'; \
2883 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2884 --log-file $$b.log --trs-file $$b.trs \
2885 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2886 "$$tst" $(AM_TESTS_FD_REDIRECT)
2887 test_scripts/tex_html_tex_in_copying.sh.log: test_scripts/tex_html_tex_in_copying.sh
2888 @p='test_scripts/tex_html_tex_in_copying.sh'; \
2889 b='test_scripts/tex_html_tex_in_copying.sh'; \
2890 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
2891 --log-file $$b.log --trs-file $$b.trs \
2892 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
2893 "$$tst" $(AM_TESTS_FD_REDIRECT)
2894 test_scripts/tex_html_formatting_singular.sh.log: test_scripts/tex_html_formatting_singular.sh
2895 @p='test_scripts/tex_html_formatting_singular.sh'; \
2896 b='test_scripts/tex_html_formatting_singular.sh'; \
14362897 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
14372898 --log-file $$b.log --trs-file $$b.trs \
14382899 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
16283089 tags tags-am uninstall uninstall-am
16293090
16303091
3092 # autogenerated test scripts list and tests-parser.txt list
3093
3094 $(srcdir)/Makefile.onetst: ../maintain/regenerate_cmd_tests.sh $(test_driving_files_generated_list)
3095 cd $(srcdir) \
3096 && $(SHELL) ../maintain/regenerate_cmd_tests.sh "$@" -base '$(base_tests)' -long '$(long_tests)' -tex_html '$(tex_html_tests)'
3097
16313098 copy-tests: copy-base copy-long
16323099 cd many_input_files && $(MAKE) copy-tests
16333100
0 # Makefile.onetst generated by ../maintain/regenerate_cmd_tests.sh.
1 #
2 # Copyright 2013 Free Software Foundation, Inc.
3 #
4 # This file is free software; as a special exception the author gives
5 # unlimited permission to copy and/or distribute it, with or without
6 # modifications, as long as this notice is preserved.
7 #
8 # This program is distributed in the hope that it will be useful, but
9 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
10 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
12 test_driving_files_generated_list = sectioning/tests-parser.txt coverage/tests-parser.txt indices/tests-parser.txt nested_formats/tests-parser.txt contents/tests-parser.txt layout/tests-parser.txt formatting/tests-parser.txt htmlxref/tests-parser.txt htmlxref-only_mono/tests-parser.txt htmlxref-only_split/tests-parser.txt tex_html/tests-parser.txt
13
14 one_test_files_generated_list = \
15 test_scripts/sectioning_node_footnote_end.sh \
16 test_scripts/sectioning_node_footnote_use_node.sh \
17 test_scripts/sectioning_node_footnote_separated.sh \
18 test_scripts/sectioning_test_two_include.sh \
19 test_scripts/sectioning_equivalent_nodes.sh \
20 test_scripts/sectioning_equivalent_nodes_no_node.sh \
21 test_scripts/sectioning_equivalent_nodes_test_renamed_nodes.sh \
22 test_scripts/sectioning_nodes_after_top_before_chapter.sh \
23 test_scripts/sectioning_nodes_after_top_before_chapter_use_nodes_chapter.sh \
24 test_scripts/sectioning_nodes_after_top_before_section.sh \
25 test_scripts/sectioning_nodes_after_top_before_section_use_nodes.sh \
26 test_scripts/sectioning_nodes_after_top_before_section_use_nodes_chapter.sh \
27 test_scripts/sectioning_sectioning_directions.sh \
28 test_scripts/sectioning_sectioning_frames.sh \
29 test_scripts/sectioning_no_node_chapter_split.sh \
30 test_scripts/sectioning_placed_things_before_element.sh \
31 test_scripts/sectioning_no_section_no_top.sh \
32 test_scripts/sectioning_no_section_no_top_no_node.sh \
33 test_scripts/sectioning_more_nodes_than_sections.sh \
34 test_scripts/sectioning_one_node_no_node.sh \
35 test_scripts/sectioning_one_node.sh \
36 test_scripts/sectioning_more_sections_than_nodes.sh \
37 test_scripts/sectioning_two_footnotes_in_nodes.sh \
38 test_scripts/sectioning_two_footnotes_in_nodes_separated.sh \
39 test_scripts/coverage_texi_formatting.sh \
40 test_scripts/coverage_formatting.sh \
41 test_scripts/coverage_formatting_utf8_enable_encoding.sh \
42 test_scripts/coverage_formatting_fr.sh \
43 test_scripts/indices_double_index_entry.sh \
44 test_scripts/indices_split_chapter_index.sh \
45 test_scripts/indices_index_split.sh \
46 test_scripts/indices_index_split_nodes.sh \
47 test_scripts/indices_index_no_node.sh \
48 test_scripts/indices_nodes_before_top.sh \
49 test_scripts/indices_nodes_before_top_nodes.sh \
50 test_scripts/indices_nodes_before_top_no_nodes.sh \
51 test_scripts/indices_nodes_before_top_and_sections_monolithic.sh \
52 test_scripts/indices_nodes_before_top_and_sections_html_chapter.sh \
53 test_scripts/indices_nodes_before_top_and_sections_html_chapter_nodes.sh \
54 test_scripts/indices_index_special_region.sh \
55 test_scripts/indices_index_special_region_no_region.sh \
56 test_scripts/indices_index_special_region_no_insertcopying.sh \
57 test_scripts/indices_index_special_region_html.sh \
58 test_scripts/indices_index_special_region_no_region_html.sh \
59 test_scripts/indices_index_special_region_no_insertcopying_html.sh \
60 test_scripts/indices_index_nodes.sh \
61 test_scripts/indices_index_nodes_nodes.sh \
62 test_scripts/indices_printindex_between_node_section.sh \
63 test_scripts/indices_printindex_between_part_chapter.sh \
64 test_scripts/indices_index_and_node_same_name.sh \
65 test_scripts/indices_index_entry_in_footnote.sh \
66 test_scripts/indices_index_one_node.sh \
67 test_scripts/indices_index_no_node_no_top.sh \
68 test_scripts/indices_index_entry_in_footnote_info.sh \
69 test_scripts/indices_index_entry_in_footnote_separated_info.sh \
70 test_scripts/nested_formats_texi_nested_formats.sh \
71 test_scripts/nested_formats_nested_group.sh \
72 test_scripts/nested_formats_nested_itemize.sh \
73 test_scripts/nested_formats_nested_menu.sh \
74 test_scripts/nested_formats_nested_table.sh \
75 test_scripts/nested_formats_nested_flushright.sh \
76 test_scripts/nested_formats_nested_multitable.sh \
77 test_scripts/nested_formats_nested_cartouche.sh \
78 test_scripts/nested_formats_nested_enumerate.sh \
79 test_scripts/nested_formats_nested_deffn.sh \
80 test_scripts/nested_formats_nested_example.sh \
81 test_scripts/nested_formats_nested_quotation.sh \
82 test_scripts/contents_contents_at_begin.sh \
83 test_scripts/contents_contents_at_end.sh \
84 test_scripts/contents_contents_in_middle_chapter.sh \
85 test_scripts/contents_contents_in_middle_section.sh \
86 test_scripts/contents_double_contents.sh \
87 test_scripts/contents_double_contents_setcontentsaftertitlepage.sh \
88 test_scripts/contents_double_contents_chapter.sh \
89 test_scripts/contents_double_contents_section.sh \
90 test_scripts/contents_double_contents_nodes.sh \
91 test_scripts/contents_no_content.sh \
92 test_scripts/contents_no_content_do_contents.sh \
93 test_scripts/contents_no_content_setcatpage.sh \
94 test_scripts/contents_no_content_setcatpage_do_contents.sh \
95 test_scripts/contents_contents_at_begin_inline.sh \
96 test_scripts/contents_contents_at_end_inline.sh \
97 test_scripts/contents_contents_in_middle_chapter_inline.sh \
98 test_scripts/contents_contents_in_middle_section_inline.sh \
99 test_scripts/contents_double_contents_inline.sh \
100 test_scripts/contents_double_contents_setcontentsaftertitlepage_inline.sh \
101 test_scripts/contents_double_contents_inline_chapter.sh \
102 test_scripts/contents_double_contents_inline_section.sh \
103 test_scripts/contents_double_contents_inline_nodes.sh \
104 test_scripts/contents_no_content_inline.sh \
105 test_scripts/contents_no_content_do_contents_inline.sh \
106 test_scripts/contents_no_content_setcatpage_inline.sh \
107 test_scripts/contents_no_content_setcatpage_do_contents_inline.sh \
108 test_scripts/contents_double_contents_book.sh \
109 test_scripts/contents_double_contents_setcontentsaftertitlepage_book.sh \
110 test_scripts/contents_double_contents_setcontentsaftertitlepage_book_chapter.sh \
111 test_scripts/contents_contents_and_parts.sh \
112 test_scripts/contents_contents_at_begin_info.sh \
113 test_scripts/contents_contents_at_end_info.sh \
114 test_scripts/contents_contents_in_middle_chapter_info.sh \
115 test_scripts/contents_contents_in_middle_section_info.sh \
116 test_scripts/contents_double_contents_info.sh \
117 test_scripts/contents_double_contents_setcontentsaftertitlepage_info.sh \
118 test_scripts/layout_no_monolithic.sh \
119 test_scripts/layout_no_monolithic_only_toc_out.sh \
120 test_scripts/layout_navigation.sh \
121 test_scripts/layout_navigation_no_header.sh \
122 test_scripts/layout_navigation_vertical.sh \
123 test_scripts/layout_navigation_no_header_vertical.sh \
124 test_scripts/layout_navigation_chapter.sh \
125 test_scripts/layout_navigation_section.sh \
126 test_scripts/layout_navigation_node.sh \
127 test_scripts/layout_navigation_chapter_no_header.sh \
128 test_scripts/layout_navigation_section_no_header.sh \
129 test_scripts/layout_navigation_node_no_header.sh \
130 test_scripts/layout_navigation_chapter_vertical.sh \
131 test_scripts/layout_navigation_section_vertical.sh \
132 test_scripts/layout_navigation_node_vertical.sh \
133 test_scripts/layout_navigation_chapter_no_header_vertical.sh \
134 test_scripts/layout_navigation_section_no_header_vertical.sh \
135 test_scripts/layout_navigation_node_no_header_vertical.sh \
136 test_scripts/layout_navigation_test_misc_file_collision.sh \
137 test_scripts/layout_formatting_docbook.sh \
138 test_scripts/layout_formatting_xml.sh \
139 test_scripts/layout_formatting_weird_quotes.sh \
140 test_scripts/layout_formatting_html.sh \
141 test_scripts/layout_formatting_html_nodes.sh \
142 test_scripts/layout_formatting_plaintext.sh \
143 test_scripts/layout_formatting_html32.sh \
144 test_scripts/layout_formatting_regions.sh \
145 test_scripts/layout_formatting_exotic.sh \
146 test_scripts/layout_formatting_fr_icons.sh \
147 test_scripts/layout_formatting_chm.sh \
148 test_scripts/layout_formatting_nodes.sh \
149 test_scripts/formatting_texi_glossary.sh \
150 test_scripts/formatting_texi_bib-example.sh \
151 test_scripts/formatting_texi_cond.sh \
152 test_scripts/formatting_cond.sh \
153 test_scripts/formatting_cond_xml.sh \
154 test_scripts/formatting_cond_no-ifhtml_no-ifinfo_no-iftex.sh \
155 test_scripts/formatting_cond_ifhtml_ifinfo_iftex.sh \
156 test_scripts/formatting_cond_info.sh \
157 test_scripts/formatting_cond_info_no-ifhtml_no-ifinfo_no-iftex.sh \
158 test_scripts/formatting_cond_info_ifhtml_ifinfo_iftex.sh \
159 test_scripts/formatting_defcondx_Dbar.sh \
160 test_scripts/formatting_defcondx_Ubar.sh \
161 test_scripts/formatting_unknown_nodes_renamed.sh \
162 test_scripts/formatting_texi_ignore_and_comments.sh \
163 test_scripts/formatting_ignore_and_comments_output.sh \
164 test_scripts/formatting_test_redefine_need.sh \
165 test_scripts/formatting_direntry_dircategory_info_split.sh \
166 test_scripts/formatting_split_nocopying.sh \
167 test_scripts/formatting_split_nocopying_split.sh \
168 test_scripts/formatting_split_nocopying_split_dev_null.sh \
169 test_scripts/formatting_simplest_test_prefix.sh \
170 test_scripts/formatting_simplest_test_prefix_info.sh \
171 test_scripts/formatting_simplest_test_css.sh \
172 test_scripts/formatting_simplest_test_date_in_header.sh \
173 test_scripts/formatting_documentlanguage_set_option.sh \
174 test_scripts/formatting_documentlanguage_set_unknown.sh \
175 test_scripts/formatting_documentlanguage_set_option_info.sh \
176 test_scripts/formatting_float_copying.sh \
177 test_scripts/formatting_simple_with_menu_docbook_info.sh \
178 test_scripts/formatting_split_for_format_not_split.sh \
179 test_scripts/htmlxref_htmlxref.sh \
180 test_scripts/htmlxref_htmlxref_nodes.sh \
181 test_scripts/htmlxref-only_mono_htmlxref.sh \
182 test_scripts/htmlxref-only_mono_htmlxref_nodes.sh \
183 test_scripts/htmlxref-only_split_htmlxref.sh \
184 test_scripts/htmlxref-only_split_htmlxref_nodes.sh \
185 test_scripts/tex_html_block_EOL_tex.sh \
186 test_scripts/tex_html_simplest_httex.sh \
187 test_scripts/tex_html_tex.sh \
188 test_scripts/tex_html_tex_notex.sh \
189 test_scripts/tex_html_tex_httex.sh \
190 test_scripts/tex_html_tex_accents_httex.sh \
191 test_scripts/tex_html_tex_accents_l2h.sh \
192 test_scripts/tex_html_tex_complex_httex.sh \
193 test_scripts/tex_html_tex_complex_l2h.sh \
194 test_scripts/tex_html_math_not_closed.sh \
195 test_scripts/tex_html_tex_not_closed.sh \
196 test_scripts/tex_html_tex_in_copying.sh \
197 test_scripts/tex_html_formatting_singular.sh
198
77 DISTCLEANFILES = tests.log tests.out
88
99 distclean-local:
10 rm -rf out_parser diffs
10 rm -rf out_parser diffs test_log
1111
1212 dist-hook:
1313 rm -rf `find $(distdir)/res_parser -name CVS`
10481048
10491049
10501050 distclean-local:
1051 rm -rf out_parser diffs
1051 rm -rf out_parser diffs test_log
10521052
10531053 dist-hook:
10541054 rm -rf `find $(distdir)/res_parser -name CVS`
44 DISTCLEANFILES = tests.log tests.out
55
66 distclean-local:
7 rm -rf out_parser out_parser_info diffs
7 rm -rf out_parser out_parser_info diffs test_log
88
99 dist-hook:
1010 rm -rf `find $(distdir)/res_parser $(distdir)/res_parser_info -name CVS`
10451045
10461046
10471047 distclean-local:
1048 rm -rf out_parser out_parser_info diffs
1048 rm -rf out_parser out_parser_info diffs test_log
10491049
10501050 dist-hook:
10511051 rm -rf `find $(distdir)/res_parser $(distdir)/res_parser_info -name CVS`
1212 DISTCLEANFILES = tests.log tests.out unknown_nodes_renamed-noderename.cnf
1313
1414 distclean-local:
15 rm -rf out_parser diffs
15 rm -rf out_parser diffs test_log
1616
1717 dist-hook:
1818 rm -rf `find $(distdir)/res_parser -name CVS`
10531053
10541054
10551055 distclean-local:
1056 rm -rf out_parser diffs
1056 rm -rf out_parser diffs test_log
10571057
10581058 dist-hook:
10591059 rm -rf `find $(distdir)/res_parser -name CVS`
33 DISTCLEANFILES = tests.log tests.out htmlxref.cnf
44
55 distclean-local:
6 rm -rf out_parser diffs
6 rm -rf out_parser diffs test_log
77
88 dist-hook:
99 rm -rf `find $(distdir)/res_parser -name CVS`
10441044
10451045
10461046 distclean-local:
1047 rm -rf out_parser diffs
1047 rm -rf out_parser diffs test_log
10481048
10491049 dist-hook:
10501050 rm -rf `find $(distdir)/res_parser -name CVS`
33 DISTCLEANFILES = tests.log tests.out htmlxref.cnf
44
55 distclean-local:
6 rm -rf out_parser diffs
6 rm -rf out_parser diffs test_log
77
88 dist-hook:
99 rm -rf `find $(distdir)/res_parser -name CVS`
10441044
10451045
10461046 distclean-local:
1047 rm -rf out_parser diffs
1047 rm -rf out_parser diffs test_log
10481048
10491049 dist-hook:
10501050 rm -rf `find $(distdir)/res_parser -name CVS`
33 DISTCLEANFILES = tests.log tests.out htmlxref.cnf
44
55 distclean-local:
6 rm -rf out_parser diffs .texinfo
6 rm -rf out_parser diffs test_log .texinfo
77
88 dist-hook:
99 rm -rf `find $(distdir)/res_parser -name CVS`
10441044
10451045
10461046 distclean-local:
1047 rm -rf out_parser diffs .texinfo
1047 rm -rf out_parser diffs test_log .texinfo
10481048
10491049 dist-hook:
10501050 rm -rf `find $(distdir)/res_parser -name CVS`
1313 DISTCLEANFILES = tests.log tests.out
1414
1515 distclean-local:
16 rm -rf out_parser out_parser_info diffs
16 rm -rf out_parser out_parser_info diffs test_log
1717
1818 dist-hook:
1919 rm -rf `find $(distdir)/res_parser $(distdir)/res_parser_info -name CVS`
10541054
10551055
10561056 distclean-local:
1057 rm -rf out_parser out_parser_info diffs
1057 rm -rf out_parser out_parser_info diffs test_log
10581058
10591059 dist-hook:
10601060 rm -rf `find $(distdir)/res_parser $(distdir)/res_parser_info -name CVS`
55 DISTCLEANFILES = tests.log tests.out
66
77 distclean-local:
8 rm -rf out_parser diffs
8 rm -rf out_parser diffs test_log
99
1010 dist-hook:
1111 rm -rf `find $(distdir)/res_parser -name CVS`
10451045
10461046
10471047 distclean-local:
1048 rm -rf out_parser diffs
1048 rm -rf out_parser diffs test_log
10491049
10501050 dist-hook:
10511051 rm -rf `find $(distdir)/res_parser -name CVS`
6060 '@v{a}' a< '@v{--a}' -a< '@,{c}' c, '@,{--c}' -c, '@footnote{in
6161 footnote}' (1) '@footnote{in footnote2}' (2)
6262
63 '@image{f--ile}' [ggg
64 aaa] '@image{f--ile,l--i}' [ggg
65 aaa] '@image{f--ile,,l--e}' [ggg
66 aaa]
67 '@image{f--ile,,,alt}' [ggg
68 aaa] '@image{f--ile,,,,e-d-xt}' [ggg
69 aaa]
70 '@image{f--ile,aze,az,alt,e--xt}' [ggg
71 aaa] '@image{f-ile,aze,,a--lt}' [a-lt]
63 '@image{f--ile}' ggg
64 aaa '@image{f--ile,l--i}' ggg
65 aaa '@image{f--ile,,l--e}' ggg
66 aaa
67 '@image{f--ile,,,alt}' ggg
68 aaa '@image{f--ile,,,,e-d-xt}' ggg
69 aaa
70 '@image{f--ile,aze,az,alt,e--xt}' ggg
71 aaa '@image{f-ile,aze,,a--lt}' [a-lt]
7272 '@image{@file{f--ile}@@@.,aze,az,alt,@file{file ext} e--xt@}' [alt]
7373
7474
407407 '@v{a}' a< '@v{--a}' -a< '@,{c}' c, '@,{--c}' -c, '@footnote{in
408408 footnote}' (3) '@footnote{in footnote2}' (4)
409409
410 '@image{f--ile}' [ggg
411 aaa] '@image{f--ile,l--i}' [ggg
412 aaa] '@image{f--ile,,l--e}' [ggg
413 aaa]
414 '@image{f--ile,,,alt}' [ggg
415 aaa] '@image{f--ile,,,,e-d-xt}' [ggg
416 aaa]
417 '@image{f--ile,aze,az,alt,e--xt}' [ggg
418 aaa] '@image{f-ile,aze,,a--lt}' [a-lt]
410 '@image{f--ile}' ggg
411 aaa '@image{f--ile,l--i}' ggg
412 aaa '@image{f--ile,,l--e}' ggg
413 aaa
414 '@image{f--ile,,,alt}' ggg
415 aaa '@image{f--ile,,,,e-d-xt}' ggg
416 aaa
417 '@image{f--ile,aze,az,alt,e--xt}' ggg
418 aaa '@image{f-ile,aze,,a--lt}' [a-lt]
419419 '@image{@file{f--ile}@@@.,aze,az,alt,@file{file ext} e--xt@}' [alt]
420420
421421
886886 @footnote{in footnote} (5)
887887 @footnote{in footnote2} (6)
888888
889 @image{f--ile} [ggg
890 aaa]
891 @image{f--ile,l--i} [ggg
892 aaa]
893 @image{f--ile,,l--e} [ggg
894 aaa]
895 @image{f--ile,,,alt} [ggg
896 aaa]
897 @image{f--ile,,,,e-d-xt} [ggg
898 aaa]
899 @image{f--ile,aze,az,alt,e--xt} [ggg
900 aaa]
889 @image{f--ile} ggg
890 aaa
891 @image{f--ile,l--i} ggg
892 aaa
893 @image{f--ile,,l--e} ggg
894 aaa
895 @image{f--ile,,,alt} ggg
896 aaa
897 @image{f--ile,,,,e-d-xt} ggg
898 aaa
899 @image{f--ile,aze,az,alt,e--xt} ggg
900 aaa
901901 @image{f-ile,aze,,a--lt} [a-lt]
902902 @image{@file{f--ile}@@@.,aze,az,alt,@file{file ext} e--xt@} [alt]
903903
33 DISTCLEANFILES = tests.log tests.out
44
55 distclean-local:
6 rm -rf out_parser out_parser_info diffs
6 rm -rf out_parser out_parser_info diffs test_log
77
88 dist-hook:
99 rm -rf `find $(distdir)/res_parser $(distdir)/res_parser_info -name CVS`
10441044
10451045
10461046 distclean-local:
1047 rm -rf out_parser out_parser_info diffs
1047 rm -rf out_parser out_parser_info diffs test_log
10481048
10491049 dist-hook:
10501050 rm -rf `find $(distdir)/res_parser $(distdir)/res_parser_info -name CVS`
2020 #res_dir_ref=res
2121 #command=texi2html.pl
2222 diffs_dir=diffs
23 one_test_logs_dir=test_log
2324
2425 logfile=tests.log
2526 main_command='texi2any.pl'
6970 if [ z"$1" != 'z' ]; then
7071 one_test=yes
7172 the_test=$1
73 test_name=$the_test
7274 if [ "z$the_test" = "ztexi" ]; then
7375 the_file=$2
7476 [ "z$the_file" != "z" ] && the_basename=`basename $the_file .texi`
75 fi
77 test_name="${test_name}_$the_basename"
78 fi
79 test -d $one_test_logs_dir || mkdir $one_test_logs_dir
80 logfile="$one_test_logs_dir/$test_name.log"
7681 fi
7782
7883 if [ "z$srcdir_test" = 'z' ]; then
2020 DISTCLEANFILES = tests.log tests.out equivalent_nodes-noderename.cnf
2121
2222 distclean-local:
23 rm -rf out_parser out_parser_html diffs
23 rm -rf out_parser out_parser_html diffs test_log
2424
2525 dist-hook:
2626 rm -rf `find $(distdir)/res_parser $(distdir)/res_parser_html -name CVS`
10611061
10621062
10631063 distclean-local:
1064 rm -rf out_parser out_parser_html diffs
1064 rm -rf out_parser out_parser_html diffs test_log
10651065
10661066 dist-hook:
10671067 rm -rf `find $(distdir)/res_parser $(distdir)/res_parser_html -name CVS`
00 equivalent_nodes.texi:17: @float `@samp{node}' previously defined
11 equivalent_nodes.texi:15: here is the previous definition as @node
22 equivalent_nodes.texi:25: warning: @ref to `@samp{node}', different from node name `node'
3 equivalent_nodes.texi:12: warning: menu entry node name `@strong{node}' different from node name `node'
3 equivalent_nodes.texi:12: warning: @menu entry node name `@strong{node}' different from node name `node'
44 equivalent_nodes.texi:5: warning: unreferenced node `before top'
55 equivalent_nodes.texi:5: warning: Next pointer `@asis{node}' (for node `before top') different from node name `node'
66 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
00 equivalent_nodes.texi:17: @float `@samp{node}' previously defined
11 equivalent_nodes.texi:15: here is the previous definition as @node
22 equivalent_nodes.texi:25: warning: @ref to `@samp{node}', different from node name `node'
3 equivalent_nodes.texi:12: warning: menu entry node name `@strong{node}' different from node name `node'
3 equivalent_nodes.texi:12: warning: @menu entry node name `@strong{node}' different from node name `node'
44 equivalent_nodes.texi:5: warning: unreferenced node `before top'
55 equivalent_nodes.texi:5: warning: Next pointer `@asis{node}' (for node `before top') different from node name `node'
66 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
00 equivalent_nodes.texi:17: @float `@samp{node}' previously defined
11 equivalent_nodes.texi:15: here is the previous definition as @node
22 equivalent_nodes.texi:25: warning: @ref to `@samp{node}', different from node name `node'
3 equivalent_nodes.texi:12: warning: menu entry node name `@strong{node}' different from node name `node'
3 equivalent_nodes.texi:12: warning: @menu entry node name `@strong{node}' different from node name `node'
44 equivalent_nodes.texi:5: warning: unreferenced node `before top'
55 equivalent_nodes.texi:5: warning: Next pointer `@asis{node}' (for node `before top') different from node name `node'
66 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
00 equivalent_nodes.texi:17: @float `@samp{node}' previously defined
11 equivalent_nodes.texi:15: here is the previous definition as @node
22 equivalent_nodes.texi:25: warning: @ref to `@samp{node}', different from node name `node'
3 equivalent_nodes.texi:12: warning: menu entry node name `@strong{node}' different from node name `node'
3 equivalent_nodes.texi:12: warning: @menu entry node name `@strong{node}' different from node name `node'
44 equivalent_nodes.texi:5: warning: unreferenced node `before top'
55 equivalent_nodes.texi:5: warning: Next pointer `@asis{node}' (for node `before top') different from node name `node'
66 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
00 equivalent_nodes.texi:17: @float `@samp{node}' previously defined
11 equivalent_nodes.texi:15: here is the previous definition as @node
22 equivalent_nodes.texi:25: warning: @ref to `@samp{node}', different from node name `node'
3 equivalent_nodes.texi:12: warning: menu entry node name `@strong{node}' different from node name `node'
3 equivalent_nodes.texi:12: warning: @menu entry node name `@strong{node}' different from node name `node'
44 equivalent_nodes.texi:5: warning: unreferenced node `before top'
55 equivalent_nodes.texi:5: warning: Next pointer `@asis{node}' (for node `before top') different from node name `node'
66 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
00 equivalent_nodes.texi:17: @float `@samp{node}' previously defined
11 equivalent_nodes.texi:15: here is the previous definition as @node
22 equivalent_nodes.texi:25: warning: @ref to `@samp{node}', different from node name `node'
3 equivalent_nodes.texi:12: warning: menu entry node name `@strong{node}' different from node name `node'
3 equivalent_nodes.texi:12: warning: @menu entry node name `@strong{node}' different from node name `node'
44 equivalent_nodes.texi:5: warning: unreferenced node `before top'
55 equivalent_nodes.texi:5: warning: Next pointer `@asis{node}' (for node `before top') different from node name `node'
66 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_and_parts'
24 name='contents_and_parts'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_at_begin'
24 name='contents_at_begin'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_at_begin_info'
24 name='contents_at_begin_info'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_at_begin_inline'
24 name='contents_at_begin_inline'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_at_end'
24 name='contents_at_end'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_at_end_info'
24 name='contents_at_end_info'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_at_end_inline'
24 name='contents_at_end_inline'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_in_middle_chapter'
24 name='contents_in_middle_chapter'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_in_middle_chapter_info'
24 name='contents_in_middle_chapter_info'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_in_middle_chapter_inline'
24 name='contents_in_middle_chapter_inline'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_in_middle_section'
24 name='contents_in_middle_section'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_in_middle_section_info'
24 name='contents_in_middle_section_info'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='contents_in_middle_section_inline'
24 name='contents_in_middle_section_inline'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents'
24 name='double_contents'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_book'
24 name='double_contents_book'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_chapter'
24 name='double_contents_chapter'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_info'
24 name='double_contents_info'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_inline'
24 name='double_contents_inline'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_inline_chapter'
24 name='double_contents_inline_chapter'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_inline_nodes'
24 name='double_contents_inline_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_inline_section'
24 name='double_contents_inline_section'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_nodes'
24 name='double_contents_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_section'
24 name='double_contents_section'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_setcontentsaftertitlepage'
24 name='double_contents_setcontentsaftertitlepage'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_setcontentsaftertitlepage_book'
24 name='double_contents_setcontentsaftertitlepage_book'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_setcontentsaftertitlepage_book_chapter'
24 name='double_contents_setcontentsaftertitlepage_book_chapter'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_setcontentsaftertitlepage_info'
24 name='double_contents_setcontentsaftertitlepage_info'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='double_contents_setcontentsaftertitlepage_inline'
24 name='double_contents_setcontentsaftertitlepage_inline'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='no_content'
24 name='no_content'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='no_content_do_contents'
24 name='no_content_do_contents'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='no_content_do_contents_inline'
24 name='no_content_do_contents_inline'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='no_content_inline'
24 name='no_content_inline'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='no_content_setcatpage'
24 name='no_content_setcatpage'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='no_content_setcatpage_do_contents'
24 name='no_content_setcatpage_do_contents'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='no_content_setcatpage_do_contents_inline'
24 name='no_content_setcatpage_do_contents_inline'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=contents
23 arg='no_content_setcatpage_inline'
24 name='no_content_setcatpage_inline'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=coverage
23 arg='formatting'
24 name='formatting'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=coverage
23 arg='formatting_fr'
24 name='formatting_fr'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=coverage
23 arg='formatting_utf8_enable_encoding'
24 name='formatting_utf8_enable_encoding'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=coverage
23 arg='texi formatting.texi'
24 name='texi_formatting'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='cond'
18 name='cond'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='cond_ifhtml_ifinfo_iftex'
18 name='cond_ifhtml_ifinfo_iftex'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='cond_info'
18 name='cond_info'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='cond_info_ifhtml_ifinfo_iftex'
18 name='cond_info_ifhtml_ifinfo_iftex'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='cond_info_no-ifhtml_no-ifinfo_no-iftex'
18 name='cond_info_no-ifhtml_no-ifinfo_no-iftex'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='cond_no-ifhtml_no-ifinfo_no-iftex'
18 name='cond_no-ifhtml_no-ifinfo_no-iftex'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='cond_xml'
18 name='cond_xml'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='defcondx_Dbar'
18 name='defcondx_Dbar'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='defcondx_Ubar'
18 name='defcondx_Ubar'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='direntry_dircategory_info_split'
18 name='direntry_dircategory_info_split'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='documentlanguage_set_option'
18 name='documentlanguage_set_option'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='documentlanguage_set_option_info'
18 name='documentlanguage_set_option_info'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='documentlanguage_set_unknown'
18 name='documentlanguage_set_unknown'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='float_copying'
18 name='float_copying'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='ignore_and_comments_output'
18 name='ignore_and_comments_output'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='simple_with_menu_docbook_info'
18 name='simple_with_menu_docbook_info'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='simplest_test_css'
18 name='simplest_test_css'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='simplest_test_date_in_header'
18 name='simplest_test_date_in_header'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='simplest_test_prefix'
18 name='simplest_test_prefix'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='simplest_test_prefix_info'
18 name='simplest_test_prefix_info'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='split_for_format_not_split'
18 name='split_for_format_not_split'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='split_nocopying'
18 name='split_nocopying'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='split_nocopying_split'
18 name='split_nocopying_split'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='split_nocopying_split_dev_null'
18 name='split_nocopying_split_dev_null'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='test_redefine_need'
18 name='test_redefine_need'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='texi bib-example.texi'
18 name='texi_bib-example'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='texi cond.texi'
18 name='texi_cond'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='texi glossary.texi'
18 name='texi_glossary'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='texi ignore_and_comments.texi'
18 name='texi_ignore_and_comments'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=formatting
17 arg='unknown_nodes_renamed'
18 name='unknown_nodes_renamed'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=htmlxref-only_mono
17 arg='htmlxref'
18 name='htmlxref'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=htmlxref-only_mono
17 arg='htmlxref_nodes'
18 name='htmlxref_nodes'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=htmlxref-only_split
17 arg='htmlxref'
18 name='htmlxref'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=htmlxref-only_split
17 arg='htmlxref_nodes'
18 name='htmlxref_nodes'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=htmlxref
17 arg='htmlxref'
18 name='htmlxref'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" = z"yes"; then
13 echo "Skipping short tests because we are only doing long tests"
14 exit 77
15 fi
16 dir=htmlxref
17 arg='htmlxref_nodes'
18 name='htmlxref_nodes'
19 [ -d "$dir" ] || mkdir $dir
20
21 srcdir_test=$dir; export srcdir_test;
22 cd "$dir" || exit 99
23 ../"$srcdir"/"$command" -dir $dir $arg
24 exit_status=$?
25 cat $one_test_logs_dir/$name.log
26 if test -f $diffs_dir/$name.diff; then
27 echo
28 cat $diffs_dir/$name.diff
29 fi
30 exit $exit_status
31
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='double_index_entry'
24 name='double_index_entry'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_and_node_same_name'
24 name='index_and_node_same_name'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_entry_in_footnote'
24 name='index_entry_in_footnote'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_entry_in_footnote_info'
24 name='index_entry_in_footnote_info'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_entry_in_footnote_separated_info'
24 name='index_entry_in_footnote_separated_info'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_no_node'
24 name='index_no_node'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_no_node_no_top'
24 name='index_no_node_no_top'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_nodes'
24 name='index_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_nodes_nodes'
24 name='index_nodes_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_one_node'
24 name='index_one_node'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_special_region'
24 name='index_special_region'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_special_region_html'
24 name='index_special_region_html'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_special_region_no_insertcopying'
24 name='index_special_region_no_insertcopying'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_special_region_no_insertcopying_html'
24 name='index_special_region_no_insertcopying_html'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_special_region_no_region'
24 name='index_special_region_no_region'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_special_region_no_region_html'
24 name='index_special_region_no_region_html'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_split'
24 name='index_split'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='index_split_nodes'
24 name='index_split_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='nodes_before_top'
24 name='nodes_before_top'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='nodes_before_top_and_sections_html_chapter'
24 name='nodes_before_top_and_sections_html_chapter'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='nodes_before_top_and_sections_html_chapter_nodes'
24 name='nodes_before_top_and_sections_html_chapter_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='nodes_before_top_and_sections_monolithic'
24 name='nodes_before_top_and_sections_monolithic'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='nodes_before_top_no_nodes'
24 name='nodes_before_top_no_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='nodes_before_top_nodes'
24 name='nodes_before_top_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='printindex_between_node_section'
24 name='printindex_between_node_section'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='printindex_between_part_chapter'
24 name='printindex_between_part_chapter'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=indices
23 arg='split_chapter_index'
24 name='split_chapter_index'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_chm'
24 name='formatting_chm'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_docbook'
24 name='formatting_docbook'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_exotic'
24 name='formatting_exotic'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_fr_icons'
24 name='formatting_fr_icons'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_html'
24 name='formatting_html'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_html32'
24 name='formatting_html32'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_html_nodes'
24 name='formatting_html_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_nodes'
24 name='formatting_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_plaintext'
24 name='formatting_plaintext'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_regions'
24 name='formatting_regions'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_weird_quotes'
24 name='formatting_weird_quotes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='formatting_xml'
24 name='formatting_xml'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation'
24 name='navigation'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_chapter'
24 name='navigation_chapter'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_chapter_no_header'
24 name='navigation_chapter_no_header'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_chapter_no_header_vertical'
24 name='navigation_chapter_no_header_vertical'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_chapter_vertical'
24 name='navigation_chapter_vertical'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_no_header'
24 name='navigation_no_header'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_no_header_vertical'
24 name='navigation_no_header_vertical'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_node'
24 name='navigation_node'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_node_no_header'
24 name='navigation_node_no_header'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_node_no_header_vertical'
24 name='navigation_node_no_header_vertical'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_node_vertical'
24 name='navigation_node_vertical'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_section'
24 name='navigation_section'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_section_no_header'
24 name='navigation_section_no_header'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_section_no_header_vertical'
24 name='navigation_section_no_header_vertical'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_section_vertical'
24 name='navigation_section_vertical'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_test_misc_file_collision'
24 name='navigation_test_misc_file_collision'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='navigation_vertical'
24 name='navigation_vertical'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='no_monolithic'
24 name='no_monolithic'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=layout
23 arg='no_monolithic_only_toc_out'
24 name='no_monolithic_only_toc_out'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='nested_cartouche'
24 name='nested_cartouche'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='nested_deffn'
24 name='nested_deffn'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='nested_enumerate'
24 name='nested_enumerate'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='nested_example'
24 name='nested_example'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='nested_flushright'
24 name='nested_flushright'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='nested_group'
24 name='nested_group'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='nested_itemize'
24 name='nested_itemize'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='nested_menu'
24 name='nested_menu'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='nested_multitable'
24 name='nested_multitable'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='nested_quotation'
24 name='nested_quotation'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='nested_table'
24 name='nested_table'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=nested_formats
23 arg='texi nested_formats.texi'
24 name='texi_nested_formats'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='equivalent_nodes'
24 name='equivalent_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='equivalent_nodes_no_node'
24 name='equivalent_nodes_no_node'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='equivalent_nodes_test_renamed_nodes'
24 name='equivalent_nodes_test_renamed_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='more_nodes_than_sections'
24 name='more_nodes_than_sections'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='more_sections_than_nodes'
24 name='more_sections_than_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='no_node_chapter_split'
24 name='no_node_chapter_split'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='no_section_no_top'
24 name='no_section_no_top'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='no_section_no_top_no_node'
24 name='no_section_no_top_no_node'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='node_footnote_end'
24 name='node_footnote_end'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='node_footnote_separated'
24 name='node_footnote_separated'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='node_footnote_use_node'
24 name='node_footnote_use_node'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='nodes_after_top_before_chapter'
24 name='nodes_after_top_before_chapter'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='nodes_after_top_before_chapter_use_nodes_chapter'
24 name='nodes_after_top_before_chapter_use_nodes_chapter'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='nodes_after_top_before_section'
24 name='nodes_after_top_before_section'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='nodes_after_top_before_section_use_nodes'
24 name='nodes_after_top_before_section_use_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='nodes_after_top_before_section_use_nodes_chapter'
24 name='nodes_after_top_before_section_use_nodes_chapter'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='one_node'
24 name='one_node'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='one_node_no_node'
24 name='one_node_no_node'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='placed_things_before_element'
24 name='placed_things_before_element'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='sectioning_directions'
24 name='sectioning_directions'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='sectioning_frames'
24 name='sectioning_frames'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='test_two_include'
24 name='test_two_include'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='two_footnotes_in_nodes'
24 name='two_footnotes_in_nodes'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$LONG_TESTS" != z"yes" && test "z$ALL_TESTS" != z"yes"; then
13 echo "Skipping long tests that take a lot of time to run"
14 exit 77
15 fi
16
17 if test "z$TEX_HTML_TESTS" = z"yes"; then
18 echo "Skipping long tests, only doing HTML TeX tests"
19 exit 77
20 fi
21
22 dir=sectioning
23 arg='two_footnotes_in_nodes_separated'
24 name='two_footnotes_in_nodes_separated'
25 [ -d "$dir" ] || mkdir $dir
26
27 srcdir_test=$dir; export srcdir_test;
28 cd "$dir" || exit 99
29 ../"$srcdir"/"$command" -dir $dir $arg
30 exit_status=$?
31 cat $one_test_logs_dir/$name.log
32 if test -f $diffs_dir/$name.diff; then
33 echo
34 cat $diffs_dir/$name.diff
35 fi
36 exit $exit_status
37
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='block_EOL_tex'
19 name='block_EOL_tex'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='formatting_singular'
19 name='formatting_singular'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='math_not_closed'
19 name='math_not_closed'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='simplest_httex'
19 name='simplest_httex'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='tex'
19 name='tex'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='tex_accents_httex'
19 name='tex_accents_httex'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='tex_accents_l2h'
19 name='tex_accents_l2h'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='tex_complex_httex'
19 name='tex_complex_httex'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='tex_complex_l2h'
19 name='tex_complex_l2h'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='tex_httex'
19 name='tex_httex'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='tex_in_copying'
19 name='tex_in_copying'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='tex_not_closed'
19 name='tex_not_closed'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
0 #! /bin/sh
1
2 if test z"$srcdir" = "z"; then
3 srcdir=.
4 fi
5
6 command=run_parser_all.sh
7 one_test_logs_dir=test_log
8 diffs_dir=diffs
9
10
11
12 if test "z$TEX_HTML_TESTS" != z"yes"; then
13 echo "Skipping HTML TeX tests that are not easily reproducible"
14 exit 77
15 fi
16
17 dir=tex_html
18 arg='tex_notex'
19 name='tex_notex'
20 [ -d "$dir" ] || mkdir $dir
21
22 srcdir_test=$dir; export srcdir_test;
23 cd "$dir" || exit 99
24 ../"$srcdir"/"$command" -dir $dir $arg
25 exit_status=$?
26 cat $one_test_logs_dir/$name.log
27 if test -f $diffs_dir/$name.diff; then
28 echo
29 cat $diffs_dir/$name.diff
30 fi
31 exit $exit_status
32
88 DISTCLEANFILES = tests.log tests.out
99
1010 distclean-local:
11 rm -rf out_parser diffs
11 rm -rf out_parser diffs test_log
1212
1313 dist-hook:
1414 rm -rf `find $(distdir)/res_parser -name CVS`
10491049
10501050
10511051 distclean-local:
1052 rm -rf out_parser diffs
1052 rm -rf out_parser diffs test_log
10531053
10541054 dist-hook:
10551055 rm -rf `find $(distdir)/res_parser -name CVS`
202202
203203 # we want a reliable way to switch locale, so we don't use the system
204204 # gettext.
205 Locale::Messages->select_package ('gettext_pp');
205 Locale::Messages->select_package('gettext_pp');
206206
207207 #my @search_locale_dirs = ("$datadir/locale", (map $_ . '/LocaleData', @INC),
208208 # qw (/usr/share/locale /usr/local/share/locale));
00 #!/bin/sh
1 # $Id: pdftexi2dvi,v 1.5 2011/10/21 18:42:36 karl Exp $
1 # $Id: pdftexi2dvi,v 1.6 2013/02/16 16:50:28 karl Exp $
22 # Written by Thomas Esser. Public domain.
33 # Execute texi2dvi --pdf.
44
1515 # hack around a bug in zsh:
1616 test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"'
1717
18 rcs_revision='$Revision: 1.5 $'
18 rcs_revision='$Revision: 1.6 $'
1919 rcs_version=`set - $rcs_revision; echo $2`
2020
2121 # special-case --version following GNU standards for identifying the
2424 # obliged to.
2525 if test "x$1" = x--version; then
2626 cat <<EOF
27 texi2pdf (GNU Texinfo 4.13+dev) $rcs_version
27 texi2pdf (GNU Texinfo 5.0) $rcs_version
2828
29 Copyright (C) 2011 Free Software Foundation, Inc.
29 Copyright (C) 2013 Free Software Foundation, Inc.
3030 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
3131 This is free software: you are free to change and redistribute it.
3232 There is NO WARRANTY, to the extent permitted by law.
00 #! /bin/sh
11 # texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
2 # $Id: texi2dvi,v 1.174 2013/01/01 19:31:57 karl Exp $
2 # $Id: texi2dvi,v 1.175 2013/02/16 16:50:28 karl Exp $
33 #
44 # Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002,
55 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
3333 set -e
3434
3535 # This string is expanded automatically when this file is checked out.
36 rcs_revision='$Revision: 1.174 $'
36 rcs_revision='$Revision: 1.175 $'
3737 rcs_version=`set - $rcs_revision; echo $2`
3838 program=`echo $0 | sed -e 's!.*/!!'`
3939
427427 version ()
428428 {
429429 cat <<EOF
430 texi2dvi (GNU Texinfo 4.13+dev) $rcs_version
430 texi2dvi (GNU Texinfo 5.0) $rcs_version
431431
432432 Copyright (C) 2013 Free Software Foundation, Inc.
433433 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
00 #!/bin/sh
1 # $Id: texi2pdf,v 1.4 2011/10/18 18:36:56 karl Exp $
1 # $Id: texi2pdf,v 1.5 2013/02/16 16:50:28 karl Exp $
22 # Written by Thomas Esser. Public domain.
33 # Execute texi2dvi --pdf.
44
1515 # hack around a bug in zsh:
1616 test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"'
1717
18 rcs_revision='$Revision: 1.4 $'
18 rcs_revision='$Revision: 1.5 $'
1919 rcs_version=`set - $rcs_revision; echo $2`
2020
2121 # special-case --version following GNU standards for identifying the
2424 # obliged to.
2525 if test "x$1" = x--version; then
2626 cat <<EOF
27 texi2pdf (GNU Texinfo 4.13+dev) $rcs_version
27 texi2pdf (GNU Texinfo 5.0) $rcs_version
2828
29 Copyright (C) 2011 Free Software Foundation, Inc.
29 Copyright (C) 2013 Free Software Foundation, Inc.
3030 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
3131 This is free software: you are free to change and redistribute it.
3232 There is NO WARRANTY, to the extent permitted by law.