File: updateheader

package info (click to toggle)
ifhp 3.5.20-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,424 kB
  • sloc: ansic: 15,055; sh: 12,037; perl: 1,461; makefile: 643; sed: 16
file content (26 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/perl -spi
	if( $found and /^$/ ){
		print <<EOF;
<table><tr valign=top>
<td>
<a href="http://www.lprng.com">
<img align=left SRC="LPRng.jpg" ALT="LPRngLogo" height=60>
</a>
</td>
<td></td>
<td>
<a href="http://www.lprng.com">
<img align=left SRC="LPRngT-L.jpg" ALT="ifhp" height=75>
</a>
</td>
<td>
<a href="http://www.lprng.com">
<img align=left SRC="ifhp-S.jpg" ALT="ifhp" height=60>
</a>
</td>
</tr></table>
EOF
		$found = 0;
	} elsif( m,<body, ){
		$found = 1;
	}