Skip to content

Commit 14aa965

Browse files
committed
[css2] removed default value from inherited column
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%401586
1 parent 768138c commit 14aa965

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

css2/bin/Attic/mkpropidx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/local/bin/perl
22
# Index of property names.
33
# Arnaud Le Hors lehors@w3.org/Ian Jacobs ij@w3.org
4-
# $Id: mkpropidx,v 2.3 1998-04-16 18:28:08 ijacobs Exp $
4+
# $Id: mkpropidx,v 2.4 1998-04-30 19:27:07 howcome Exp $
55
use English;
66

77

@@ -107,7 +107,7 @@ sub format_app {
107107
sub format_inh {
108108
# If not inherited, don't print anything.
109109
$inherited = cleanup($_[0]);
110-
$inherited =~ s/^no$/ /;
110+
# $inherited =~ s/^no$/ /;
111111
print OUTPUT "<td>$inherited\n";
112112
}
113113

@@ -144,7 +144,8 @@ sub table_head {
144144
print OUTPUT "<th>Values";
145145
print OUTPUT "<th>Initial value";
146146
print OUTPUT "<th>Applies to <BR> (Default: all)";
147-
print OUTPUT "<th>Inherited? <BR> (Default: no)";
147+
# print OUTPUT "<th>Inherited? <BR> (Default: no)";
148+
print OUTPUT "<th>Inherited?";
148149
print OUTPUT "<th>Percentages <BR> (Default: N/A)";
149150
print OUTPUT "<th>Media groups<BR>";
150151
print OUTPUT "</thead>";

css2/bin/mkpropidx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/local/bin/perl
22
# Index of property names.
33
# Arnaud Le Hors lehors@w3.org/Ian Jacobs ij@w3.org
4-
# $Id: mkpropidx,v 2.3 1998-04-16 18:28:08 ijacobs Exp $
4+
# $Id: mkpropidx,v 2.4 1998-04-30 19:27:07 howcome Exp $
55
use English;
66

77

@@ -107,7 +107,7 @@ sub format_app {
107107
sub format_inh {
108108
# If not inherited, don't print anything.
109109
$inherited = cleanup($_[0]);
110-
$inherited =~ s/^no$/&nbsp;/;
110+
# $inherited =~ s/^no$/&nbsp;/;
111111
print OUTPUT "<td>$inherited\n";
112112
}
113113

@@ -144,7 +144,8 @@ sub table_head {
144144
print OUTPUT "<th>Values";
145145
print OUTPUT "<th>Initial value";
146146
print OUTPUT "<th>Applies to <BR> (Default: all)";
147-
print OUTPUT "<th>Inherited? <BR> (Default: no)";
147+
# print OUTPUT "<th>Inherited? <BR> (Default: no)";
148+
print OUTPUT "<th>Inherited?";
148149
print OUTPUT "<th>Percentages <BR> (Default: N/A)";
149150
print OUTPUT "<th>Media groups<BR>";
150151
print OUTPUT "</thead>";

0 commit comments

Comments
 (0)