File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424Draft: http://www.w3.org/TR/2013/WD-css-text-decor-3-20130103/
2525Title: CSS Text Decoration Level 3
2626... anything else you want here, except 4 dashes ...
27- ... note: known status codes are Accepted/OutOfScope/Invalid/Rejected/Retracted
2827
2928----
3029Issue 1.
3130Summary: [summary]
3231From: [name]
3332Comment: [url]
3433Response: [url]
35- Closed: [status ... or replace this "Closed" line with "Open"]
34+ Closed: [Accepted/OutOfScope/Invalid/Rejected/Retracted ... or replace this "Closed" line with "Open"]
3635Verified: [url]
3736Resolved: Editorial/Bugfix (for obvious fixes)/Editors' discretion/[url to minutes]
3837----
4241
4342# Input/Output setup
4443my $outFile = $inFile ;
45- $outFile =~ s /\. txt/ \. html/ ;
44+ if ($inFile =~ / \. txt$ / ) {
45+ $outFile =~ s /\. txt/ \. html/ ;
46+ }
47+ elsif ($inFile =~ / \. $ / ) { # tab completion case
48+ $inFile .= ' txt' ;
49+ $outFile .= ' html' ;
50+ }
4651open IN, " <" , $inFile || die " Cannot open $inFile : $! " ;
4752open OUT, " >" , $outFile || die " Cannot open $outFile : $! " ;
4853$/ = " ----\n " ;
You can’t perform that action at this time.
0 commit comments