]> git.pld-linux.org Git - packages/docbook2X.git/commitdiff
- orphaned, outdated
authorJan Rękorajski <baggins@pld-linux.org>
Fri, 21 Apr 2006 23:40:32 +0000 (23:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    docbook2X-nls.patch -> 1.2

docbook2X-nls.patch [deleted file]

diff --git a/docbook2X-nls.patch b/docbook2X-nls.patch
deleted file mode 100644 (file)
index 4dd536b..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-diff -Nur docbook2X/docbook2man-spec.pl docbook2X.new/docbook2man-spec.pl
---- docbook2X/docbook2man-spec.pl      Sat Oct  2 16:35:18 1999
-+++ docbook2X.new/docbook2man-spec.pl  Fri Jun 23 15:14:07 2000
-@@ -328,6 +328,14 @@
-       @manpage_names = ();
-       
-       $manpage_misc = '';
-+
-+      # check refentry's language
-+      if(defined($_[0]->attribute('LANG')->value)) {
-+        $manpage_lang = $_[0]->attribute('LANG')->value;
-+      }
-+      else {
-+        $manpage_lang = '';
-+      }
- });
- sgml('</REFENTRY>', sub {
-       if(!$newline_last) {
-@@ -434,7 +442,13 @@
- # NAME section
--man_sgml('<REFNAMEDIV>', "\n.SH NAME\n");
-+#man_sgml('<REFNAMEDIV>', "\n.SH NAME\n");
-+man_sgml('<REFNAMEDIV>', sub {
-+         if ($manpage_lang eq "pl") { man_output "\n.SH NAZWA\n"; }
-+         # waits for another languages
-+         #elsif ($manpage_lang eq "xx") { man_output "\n.SH xxxxxxx\n"; } 
-+         else { man_output "\n.SH NAME\n"; }
-+});
- sgml('<REFNAME>', \&save_cdata);
- sgml('</REFNAME>', sub { 
-@@ -475,7 +489,14 @@
- #
- ########################################################################
--man_sgml('<REFSYNOPSISDIV>', "\n.SH SYNOPSIS\n");
-+#man_sgml('<REFSYNOPSISDIV>', "\n.SH SYNOPSIS\n");
-+man_sgml('<REFSYNOPSISDIV>', sub {
-+         if ($manpage_lang eq "pl") { man_output "\n.SH SK£ADNIA\n"; }
-+         # waits for another languages
-+         #elsif ($manpage_lang eq "xx") { man_output "\n.SH xxxxxxx\n"; } 
-+         else { man_output "\n.SH SYNOPSIS\n"; }
-+});   
-+
- man_sgml('</REFSYNOPSISDIV>', "\n");
- ## FIXME! Must be made into block elements!!
This page took 0.056857 seconds and 4 git commands to generate.