[PATCH 9/16] DocBook: s/sgml/xml/ in scripts/kernel-doc

2005-03-03 Thread Martin Waitz
DocBook: s/sgml/xml/ in scripts/kernel-doc
Signed-off-by: Martin Waitz <[EMAIL PROTECTED]>


# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
#  ChangeSet1.2033  -> 1.2034 
# scripts/kernel-doc1.25-> 1.26   
#
# The following is the BitKeeper ChangeSet Log
# 
# 05/02/08  [EMAIL PROTECTED]   1.2034
# DocBook: s/sgml/xml/ in scripts/kernel-doc
# 
# Signed-off-by: Martin Waitz <[EMAIL PROTECTED]>
# 
#
diff -Nru a/scripts/kernel-doc b/scripts/kernel-doc
--- a/scripts/kernel-docThu Mar  3 11:42:30 2005
+++ b/scripts/kernel-docThu Mar  3 11:42:30 2005
@@ -170,14 +170,14 @@
$type_param, "\$1" );
 my $blankline_html = "";
 
-# sgml, docbook format
-my %highlights_sgml = ( "([^=])\\\"([^\\\"<]+)\\\"", "\$1\$2",
+# XML, docbook format
+my %highlights_xml = ( "([^=])\\\"([^\\\"<]+)\\\"", "\$1\$2",
$type_constant, "\$1",
$type_func, "\$1",
$type_struct, "\$1",
$type_env, "\$1",
$type_param, "\$1" );
-my $blankline_sgml = "\n";
+my $blankline_xml = "\n";
 
 # gnome, docbook format
 my %highlights_gnome = ( $type_constant, "\$1",
@@ -297,14 +297,14 @@
%highlights = %highlights_text;
$blankline = $blankline_text;
 } elsif ($cmd eq "-docbook") {
-   $output_mode = "sgml";
-   %highlights = %highlights_sgml;
-   $blankline = $blankline_sgml;
+   $output_mode = "xml";
+   %highlights = %highlights_xml;
+   $blankline = $blankline_xml;
 } elsif ($cmd eq "-gnome") {
$output_mode = "gnome";
%highlights = %highlights_gnome;
$blankline = $blankline_gnome;
-} elsif ($cmd eq "-module") { # not needed for sgml, inherits from calling 
document
+} elsif ($cmd eq "-module") { # not needed for XML, inherits from calling 
document
$modulename = shift @ARGV;
 } elsif ($cmd eq "-function") { # to only output specific functions
$function_only = 1;
@@ -547,7 +547,7 @@
 print "\n";
 }
 
-sub output_section_sgml(%) {
+sub output_section_xml(%) {
 my %args = %{$_[0]};
 my $section;
 # print out each section
@@ -565,8 +565,8 @@
 }
 }
 
-# output function in sgml DocBook
-sub output_function_sgml(%) {
+# output function in XML DocBook
+sub output_function_xml(%) {
 my %args = %{$_[0]};
 my ($parameter, $section);
 my $count;
@@ -632,12 +632,12 @@
 }
 print "\n";
 
-output_section_sgml(@_);
+output_section_xml(@_);
 print "\n\n";
 }
 
-# output struct in sgml DocBook
-sub output_struct_sgml(%) {
+# output struct in XML DocBook
+sub output_struct_xml(%) {
 my %args = %{$_[0]};
 my ($parameter, $section);
 my $id;
@@ -708,13 +708,13 @@
 print "  \n";
 print " \n";
 
-output_section_sgml(@_);
+output_section_xml(@_);
 
 print "\n\n";
 }
 
-# output enum in sgml DocBook
-sub output_enum_sgml(%) {
+# output enum in XML DocBook
+sub output_enum_xml(%) {
 my %args = %{$_[0]};
 my ($parameter, $section);
 my $count;
@@ -769,13 +769,13 @@
 print "  \n";
 print "\n";
 
-output_section_sgml(@_);
+output_section_xml(@_);
 
 print "\n\n";
 }
 
-# output typedef in sgml DocBook
-sub output_typedef_sgml(%) {
+# output typedef in XML DocBook
+sub output_typedef_xml(%) {
 my %args = %{$_[0]};
 my ($parameter, $section);
 my $id;
@@ -800,13 +800,13 @@
 print "  typedef ".$args{'typedef'}.";\n";
 print "\n";
 
-output_section_sgml(@_);
+output_section_xml(@_);
 
 print "\n\n";
 }
 
-# output in sgml DocBook
-sub output_intro_sgml(%) {
+# output in XML DocBook
+sub output_intro_xml(%) {
 my %args = %{$_[0]};
 my ($parameter, $section);
 my $count;
@@ -831,7 +831,7 @@
 print "\n\n";
 }
 
-# output in sgml DocBook
+# output in XML DocBook
 sub output_function_gnome {
 my %args = %{$_[0]};
 my ($parameter, $section);
@@ -1799,7 +1799,7 @@
 }
 if ($initial_section_counter == $section_counter) {
print STDERR "Warning(${file}): no structured comments found\n";
-   if ($output_mode eq "sgml") {
+   if ($output_mode eq "xml") {
# The template wants at least one RefEntry here; make one.
print "\n";
print " \n";
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 9/16] DocBook: s/sgml/xml/ in scripts/kernel-doc

2005-03-03 Thread Martin Waitz
DocBook: s/sgml/xml/ in scripts/kernel-doc
Signed-off-by: Martin Waitz [EMAIL PROTECTED]


# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
#  ChangeSet1.2033  - 1.2034 
# scripts/kernel-doc1.25- 1.26   
#
# The following is the BitKeeper ChangeSet Log
# 
# 05/02/08  [EMAIL PROTECTED]   1.2034
# DocBook: s/sgml/xml/ in scripts/kernel-doc
# 
# Signed-off-by: Martin Waitz [EMAIL PROTECTED]
# 
#
diff -Nru a/scripts/kernel-doc b/scripts/kernel-doc
--- a/scripts/kernel-docThu Mar  3 11:42:30 2005
+++ b/scripts/kernel-docThu Mar  3 11:42:30 2005
@@ -170,14 +170,14 @@
$type_param, ttb\$1/b/tt );
 my $blankline_html = p;
 
-# sgml, docbook format
-my %highlights_sgml = ( ([^=])\\\([^\\\]+)\\\, \$1quote\$2/quote,
+# XML, docbook format
+my %highlights_xml = ( ([^=])\\\([^\\\]+)\\\, \$1quote\$2/quote,
$type_constant, constant\$1/constant,
$type_func, function\$1/function,
$type_struct, structname\$1/structname,
$type_env, envar\$1/envar,
$type_param, parameter\$1/parameter );
-my $blankline_sgml = /parapara\n;
+my $blankline_xml = /parapara\n;
 
 # gnome, docbook format
 my %highlights_gnome = ( $type_constant, replaceable 
class=\option\\$1/replaceable,
@@ -297,14 +297,14 @@
%highlights = %highlights_text;
$blankline = $blankline_text;
 } elsif ($cmd eq -docbook) {
-   $output_mode = sgml;
-   %highlights = %highlights_sgml;
-   $blankline = $blankline_sgml;
+   $output_mode = xml;
+   %highlights = %highlights_xml;
+   $blankline = $blankline_xml;
 } elsif ($cmd eq -gnome) {
$output_mode = gnome;
%highlights = %highlights_gnome;
$blankline = $blankline_gnome;
-} elsif ($cmd eq -module) { # not needed for sgml, inherits from calling 
document
+} elsif ($cmd eq -module) { # not needed for XML, inherits from calling 
document
$modulename = shift @ARGV;
 } elsif ($cmd eq -function) { # to only output specific functions
$function_only = 1;
@@ -547,7 +547,7 @@
 print hr\n;
 }
 
-sub output_section_sgml(%) {
+sub output_section_xml(%) {
 my %args = %{$_[0]};
 my $section;
 # print out each section
@@ -565,8 +565,8 @@
 }
 }
 
-# output function in sgml DocBook
-sub output_function_sgml(%) {
+# output function in XML DocBook
+sub output_function_xml(%) {
 my %args = %{$_[0]};
 my ($parameter, $section);
 my $count;
@@ -632,12 +632,12 @@
 }
 print /refsect1\n;
 
-output_section_sgml(@_);
+output_section_xml(@_);
 print /refentry\n\n;
 }
 
-# output struct in sgml DocBook
-sub output_struct_sgml(%) {
+# output struct in XML DocBook
+sub output_struct_xml(%) {
 my %args = %{$_[0]};
 my ($parameter, $section);
 my $id;
@@ -708,13 +708,13 @@
 print   /variablelist\n;
 print  /refsect1\n;
 
-output_section_sgml(@_);
+output_section_xml(@_);
 
 print /refentry\n\n;
 }
 
-# output enum in sgml DocBook
-sub output_enum_sgml(%) {
+# output enum in XML DocBook
+sub output_enum_xml(%) {
 my %args = %{$_[0]};
 my ($parameter, $section);
 my $count;
@@ -769,13 +769,13 @@
 print   /variablelist\n;
 print /refsect1\n;
 
-output_section_sgml(@_);
+output_section_xml(@_);
 
 print /refentry\n\n;
 }
 
-# output typedef in sgml DocBook
-sub output_typedef_sgml(%) {
+# output typedef in XML DocBook
+sub output_typedef_xml(%) {
 my %args = %{$_[0]};
 my ($parameter, $section);
 my $id;
@@ -800,13 +800,13 @@
 print   synopsistypedef .$args{'typedef'}.;/synopsis\n;
 print /refsynopsisdiv\n;
 
-output_section_sgml(@_);
+output_section_xml(@_);
 
 print /refentry\n\n;
 }
 
-# output in sgml DocBook
-sub output_intro_sgml(%) {
+# output in XML DocBook
+sub output_intro_xml(%) {
 my %args = %{$_[0]};
 my ($parameter, $section);
 my $count;
@@ -831,7 +831,7 @@
 print \n\n;
 }
 
-# output in sgml DocBook
+# output in XML DocBook
 sub output_function_gnome {
 my %args = %{$_[0]};
 my ($parameter, $section);
@@ -1799,7 +1799,7 @@
 }
 if ($initial_section_counter == $section_counter) {
print STDERR Warning(${file}): no structured comments found\n;
-   if ($output_mode eq sgml) {
+   if ($output_mode eq xml) {
# The template wants at least one RefEntry here; make one.
print refentry\n;
print  refnamediv\n;
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at