Skip to content

Commit fb7de89

Browse files
committed
[css2] oops, didn't mean to check in those shebang changes
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%402546
1 parent 1c5f162 commit fb7de89

27 files changed

Lines changed: 51 additions & 51 deletions

css2/bin/addcite

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/perl -w
1+
#!/usr/local/bin/perl -w
22
#
33
# Expand references to bibliography:
44
# replaces [[xxx]] with
@@ -15,7 +15,7 @@
1515
# is used as prefix.
1616
#
1717
# Bert Bos <bert@w3.org>
18-
# $Id: addcite,v 2.3 2006-10-09 18:52:08 ihickson Exp $
18+
# $Id: addcite,v 2.4 2006-10-09 18:55:52 ihickson Exp $
1919

2020
use Getopt::Std;
2121
use lib 'bin';

css2/bin/addhanch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#!/usr/bin/perl
1+
#!/usr/local/bin/perl
22
# Add heading anchors.
33
# The files are rwritten.
44
# Arnaud Le Hors - lehors@w3.org
55
# Modifications by Bert Bos <bert@w3.org>
6-
# $Id: addhanch,v 2.4 2006-10-09 18:52:08 ihickson Exp $
6+
# $Id: addhanch,v 2.5 2006-10-09 18:55:52 ihickson Exp $
77

88
use DB_File;
99
use Getopt::Std;

css2/bin/addianch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#!/usr/bin/perl
1+
#!/usr/local/bin/perl
22
# Add index anchors to source file _and_ generate index database
33
# Arnaud Le Hors - lehors@w3.org
4-
# $Id: addianch,v 2.5 2006-10-09 18:52:08 ihickson Exp $
4+
# $Id: addianch,v 2.6 2006-10-09 18:55:52 ihickson Exp $
55

66
use DB_File;
77
use Getopt::Std;

css2/bin/addlinks

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/perl
1+
#!/usr/local/bin/perl
22
# Add links from instances to definitions
33
# Write to stdout
44
#
@@ -11,7 +11,7 @@
1111
#
1212
# Arnaud Le Hors - lehors@w3.org
1313
# Modifications by Bert Bos <bert@w3.org>
14-
# $Id: addlinks,v 2.7 2006-10-09 18:52:08 ihickson Exp $
14+
# $Id: addlinks,v 2.8 2006-10-09 18:55:52 ihickson Exp $
1515

1616
use DB_File;
1717
use Getopt::Std;

css2/bin/addlongdesc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/perl
1+
#!/usr/local/bin/perl
22
# Add d-links from images to long descriptions.
33
# Two cases:
44
# Image is part of a figure with a caption (<P class="caption">):
@@ -7,7 +7,7 @@
77
# Add d-link just after image.
88
#
99
# Ian Jacobs ij@w3.org
10-
# $Id: addlongdesc,v 1.4 2006-10-09 18:52:08 ihickson Exp $
10+
# $Id: addlongdesc,v 1.5 2006-10-09 18:55:52 ihickson Exp $
1111

1212
use English;
1313
use DB_File;

css2/bin/addmarkup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/perl -w
1+
#!/usr/local/bin/perl -w
22
#Add special markup to document
33
#- Add keyword "Example:" before examples for non-CSS UAs
44
# $id$

css2/bin/addnavbar

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
#!/usr/bin/perl
1+
#!/usr/local/bin/perl
22
# Add navigation "bars" containing a link for next and previous LINKs
33
# plus one for any url given in argument
44
#
55
# ToDo: compare URLs to find shortest relative path
66
#
77
# Arnaud Le Hors - lehors@w3.org
88
# Modified by Bert Bos <bert@w3.org>
9-
# $Id: addnavbar,v 2.4 2006-10-09 18:52:08 ihickson Exp $
9+
# $Id: addnavbar,v 2.5 2006-10-09 18:55:52 ihickson Exp $
1010

1111
use Getopt::Long;
1212
use lib 'bin';

css2/bin/chkprops

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#!/usr/bin/perl
1+
#!/usr/local/bin/perl
22
# Check validity of property instances in sepc.
33
# Ian Jacobs - ij@w3.org
4-
# $Id: chkprops,v 1.4 2006-10-09 18:52:08 ihickson Exp $
4+
# $Id: chkprops,v 1.5 2006-10-09 18:55:52 ihickson Exp $
55

66
$PROGNAME = substr($0, rindex($0, "/") + 1);
77
if ($#ARGV < 1) {

css2/bin/chkrefs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#!/usr/bin/perl
1+
#!/usr/local/bin/perl
22
# sub TOC builder
33
#
44
# Arnaud Le Hors - lehors@w3.org
5-
# $Id: chkrefs,v 1.3 2006-10-09 18:52:08 ihickson Exp $
5+
# $Id: chkrefs,v 1.4 2006-10-09 18:55:52 ihickson Exp $
66

77

88
$PROGNAME = substr($0, rindex($0, "/") + 1);

css2/bin/chksample

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#!/usr/bin/perl
1+
#!/usr/local/bin/perl
22
# Verify the following in the sample style sheet:
33
# 1) All properties are correct
44
# 2) All properties are represented
55
# Ian Jacobs - ij@w3.org
6-
# $Id: chksample,v 1.4 2006-10-09 18:52:08 ihickson Exp $
6+
# $Id: chksample,v 1.5 2006-10-09 18:55:52 ihickson Exp $
77

88
# To use long names like $INPUT_RECORD_SEPARATOR.
99
use English;

0 commit comments

Comments
 (0)