File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 58
58
< tr > < th > Editor:</ th > < td > < content select ="cxx-editor "/> </ td > </ tr >
59
59
</ template >
60
60
</ table >
61
- < h1 > {{title_prefix }}, Information technology – Programming languages, their environments and system software interfaces – {{title}}</ h1 >
61
+ < h1 > {{stage_title }}, {{iso_title_prefix}} {{title}}</ h1 >
62
62
< template if ="{{stage == 'draft'}} ">
63
63
< p class ="warning "> < strong > Note: this is an early draft. It’s known to be
64
64
incomplet and incorrekt, and it has lots of b< span
Original file line number Diff line number Diff line change @@ -30,12 +30,14 @@ limitations under the License.
30
30
this . title = this . querySelector ( 'h1' ) . textContent ;
31
31
this . stage = this . getAttribute ( 'stage' ) ;
32
32
if ( this . stage == 'draft' ) {
33
- this . title_prefix = "Working Draft" ;
33
+ this . stage_title = "Working Draft" ;
34
+ //} else if (this.stage == 'pdts') {
35
+ // this.iso_title_prefix = "Information technology – Programming languages, their environments and system software interfaces – "
34
36
} else {
35
37
console . error ( 'Unexpected stage: ' + this . stage ) ;
36
38
}
37
39
if ( this . title ) {
38
- document . title = this . title + ', ' + this . title_prefix ;
40
+ document . title = this . title + ', ' + this . stage_title ;
39
41
}
40
42
} ,
41
43
} )
You can’t perform that action at this time.
0 commit comments