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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
|
############################################################
# This file contain the functions to convert a
# html file to the format required by Tk in the
# help pages.
############################################################
############################################################
# Standard definitions
############################################################
set unaryTokens {
hr br li dt dd p
img
}
set binaryTokens {
h1 h2 h3 h4 h5 h6
b i u s
head body title html address
ul ol dl
}
set defaultSize 140
set headerSize(h1) 240
set headerSize(h2) 180
set headerSize(h3) 180
set headerSize(h4) 180
set headerSize(h5) 180
set headerSize(h6) 180
set headerSize(h7) $defaultSize; # a programming hack, to make it easyer
# to create original text which is italic and bold
############################################################
# sets the global setting
############################################################
set size $defaultSize
set bold "medium"
set italic "r"
set imgNo 0
############################################################
# Simple stack operations
############################################################
proc push {elm name} {
upvar \#0 $name stack
lappend stack $elm
}
proc pop {name} {
upvar \#0 $name stack
set elm [lindex $stack end]
set stack [lrange $stack 0 [expr [llength $stack]-2]]
return $elm
}
proc emptyStack {name} {
upvar \#0 $name stack
set stack ""
}
proc isEmptyStack {name} {
upvar \#0 $name stack
return [expr ![llength $stack]]
}
proc printStack {name} {
upvar \#0 $name stack
return $stack
}
############################################################
# Read the input file
# IN - A file identifyer for the input file
# return - a list where the first element is a text
# then every second element is a token, and every
# second is a text
############################################################
proc readFile {IN} {
set result {}
set FILE [read -nonewline $IN]
set length [string length $FILE]
set state text; # what is the next to read? text or token
set text ""
set line 1; # These two are used for error messages
set pos 0; # when "parsing" the input
emptyStack tokenStack
set lastspace 0
for {set index 0} {$index < $length} {incr index} {
set char [string index $FILE $index]
if {$char == "\n"} {
if {!$lastspace} {
append text " "
set lastspace 1
}
incr line
set pos 0
continue
}
if {$char == "\t" || $char == " "} {
if {!$lastspace} {
append text " "
set lastspace 1
}
incr pos
continue
}
incr pos
set lastspace 0
if {$state == "text"} {
if {$char != "<"} {
append text $char
} else {
# end of text, save it
if {! [regexp "^\[ \t\]+\$" $text]} {
lappend result \
[string trimright [string trimleft $text " \t\n"] " \t\n"]
} else {
lappend result ""
}
set text ""
set state token
}
} else { # reading a token
if {$char != ">"} {
append text $char
} else {
# end of token, verify and save
if {[string index $text 0] == "/"} {
# end token
set token [string range $text 1 end]
set match [lindex [pop tokenStack] 0]
if {[string tolower $match] != [string tolower $token]} {
error "line $line, pos $pos: \"$token\" doesn't match \"$match\""
}
lappend result $text
} else { # tsrat token
if {[unaryToken $text]} {
lappend result [list $text {}]
} elseif {[binaryToken $text]} {
push [list $text {}] tokenStack
lappend result [list $text {}]
} else {
set tokenl [getOtherToken $text]
if {$tokenl == -1} {
error "line $line, pos $pos: unknown token: \"$text\""
} else {
# token with argument
set type [lindex $tokenl 0]
if {$type == "binary"} {
push [lrange $tokenl 1 end] tokenStack
}
lappend result [lrange $tokenl 1 end]
}
}
}
set text ""
set state text
}
}
}
if {![isEmptyStack tokenStack]} {
error "Unmatch token, at end of file\nNon terminated tokens:\n[printStack tokenStack]"
}
if {$text != ""} {
lappend result \
[string trimright [string trimleft $text " \t\n"] " \t\n"]
}
return $result
}
############################################################
# Token Functions
############################################################
proc unaryToken {token} {
global unaryTokens
set token [string tolower $token]
if {[lsearch -exact $unaryTokens $token] != -1} {
return 1
} else {
return 0
}
}
proc binaryToken {token} {
global binaryTokens
set token [string tolower $token]
if {[lsearch -exact $binaryTokens $token] != -1} {
return 1
} else {
return 0
}
}
proc getOtherToken {token} {
if {[regexp -nocase {^a *href *= *"([^"]+)" *$} $token all value]} {
return [list binary a href $value]
} elseif {[regexp -nocase {^a *name *= *"([^"]+)" *$} $token all value]} {
if {[regexp { } $value]} {
error "You may *NOT* have spaces in your <a name=..> tokens: \"$value\""
}
return [list binary a name $value]
} elseif {[regexp -nocase {^img src *= *"([^"]+)" *$} $token all value]} {
return [list unary img $value]
} elseif {[regexp {^!--(.*)--$} $token all value]} {
# The token is a comment.
# This part of the script ought not to translate this information
# but to make things simple, it will translate this to nothing
# The reason for the complexity is that this is an unary token, while
# this section only handles binary tokens, and at the moment unary tokens
# doesn't take any argument
return {unary}
} else {
return -1
}
}
############################################################
# This functions translate the special character
# sequence in text. Ie '>' -> '>'
# list - the list to translate
# returns - the translated text
############################################################
proc translate {list} {
set result {}
set index -1
foreach elm $list {
incr index
if {$index %2 == 0} {
# text
regsub -all -- {>} $elm ">" elm
regsub -all -- {<} $elm "<" elm
regsub -all -- {&} $elm {\&} elm
regsub -all -- {"} $elm "\"" elm
regsub -all -- {æ} $elm "" elm
regsub -all -- {Æ} $elm "" elm
regsub -all -- {ø} $elm "" elm
regsub -all -- {Ø} $elm "" elm
regsub -all -- {å} $elm "" elm
regsub -all -- {Å} $elm "" elm
}
lappend result $elm
}
return $result
}
############################################################
# Write the format the help page need in TK.
# list - the list read with readFile
# outfile - the file to write to
############################################################
proc convert {list} {
global wantSpace size bold italic headerSize defaultSize first indentlevel last
writeStdDef
set state text; # what to read next, text or token
set wantSpace 0; # controles when a space delimeter shall be inserted
set first 1; # flag indicating when the first text is wrote
set indentlevel 0; # the number of nested indentation
for {set i 1} {$i <= 6} {incr i} {
set headerIndex($i) 0
}
set last 1.0
emptyStack tokenStack
foreach elm $list {
if {$state == "text"} {
if {$elm != ""} {
.text insert insert "$elm"
set wantSpace 1
set first 0
}
set state token
} else { #state == token
set token [lindex $elm 0]
if {[string index $token 0] != "/"} {
# start token
if {$wantSpace} {
.text insert insert " "
set wantSpace 0
}
set tok [string tolower $token]
if {$tok == "h1" || $tok == "h2" || $tok == "h3" ||
$tok == "h4" || $tok == "h5" || $tok == "h6" ||
$tok == "i" || $tok == "b"} {
# special care must be taken for these, since they all manipulate
# the font
.text tag add $italic$bold$size $last insert
switch -exact -- $tok {
h1 -
h2 -
h3 -
h4 -
h5 -
h6 {
set size $headerSize($tok)
if {!$first} {
.text insert insert \n\n
set wantSpace 0
}
set last [.text index insert]
set text ""
set index [string index $tok 1]
incr headerIndex($index)
### This is needed if the section shall be enumerated
for {set i 1} {$i <= $index} {incr i} {
append text $headerIndex($i) .
}
for {set i [expr $index +1]} {$i <= 6} {incr i} {
set headerIndex($i) 0
}
.text insert insert "$text "
}
i {
set italic o
set last [.text index insert]
}
b {
set bold bold
set last [.text index insert]
}
}
}
if {$tok == "ol" || $tok == "ul" || $tok == "dl"} {
push [list $tok 1] indentStack
incr indentlevel
}
set value [lrange $elm 1 end]
if {[unaryToken $token]} {
$tok $value
} else {
push [list [.text index insert] $value] tokenStack
}
} else {
# end token
set token [string range $token 1 end]
set tok [string tolower $token]
if {$tok == "h1" || $tok == "h2" || $tok == "h3" ||
$tok == "h4" || $tok == "h5" || $tok == "h6" ||
$tok == "i" || $tok == "b"} {
# special care must be takn for these since they
# all manipulate the font
.text tag add $italic$bold$size $last insert
set last [.text index insert]
switch -exact -- $tok {
h1 -
h2 -
h3 -
h4 -
h5 -
h6 {set size $defaultSize}
i {set italic r}
b {set bold medium}
}
}
set token_val [pop tokenStack]
set start [lindex $token_val 0]
set value [lindex $token_val 1]
# call the apropriate html-print function
$tok $start $value
if {$wantSpace} {
.text insert insert " "
set wantSpace 0
}
if {$tok == "ol" || $tok == "ul" || $tok == "dl"} {
pop indentStack
incr indentlevel -1
}
}
set state text
}
}
.text tag add rmedium$defaultSize $last insert
}
############################################################
# Write standard tags at the beginning
# OUT - the filehandler to write to
############################################################
proc writeStdDef {} {
global headerSize
foreach header {h1 h2 h3 h4 h5 h6 h7} {
foreach italic {o r} {
foreach bold {bold medium} {
.text tag configure $italic$bold$headerSize($header) -font "-*-helvetica-${bold}-${italic}-*-*-*-$headerSize($header)-*-*-*-*-*-*"
}
}
}
.text tag configure strike -overstrike 1
.text tag configure underline -underline 1
for {set i 0} {$i < 10} {incr i} {
.text tag configure indent$i -lmargin2 [expr 25*$i] \
-lmargin1 [expr 25*($i-1)]
}
}
############################################################
# Html-print functions
# These function takke care of transforming the tokens
# into the Tk format
############################################################
proc hr {value} {
global wantSpace
.text insert insert "\n------------------------\n"
set wantSpace 0
}
proc br {value} {
global wantSpace
.text insert insert \n
set wantSpace 0
}
proc p {valeu} {
global wantSpace
.text insert insert \n\n
set wantSpace 0
}
proc li {value} {
global indentlevel
set elm [pop indentStack]
set type [lindex $elm 0]
if {$type == "ul"} {
set char [lindex {* - o} [expr $indentlevel % 3]]
.text insert insert "\n$char "
push $elm indentStack
} else {
set indent [lindex $elm 1]
.text insert insert "\n$indent) "
push [list ol [expr $indent+1]] indentStack
}
}
proc img {value} {
global imgNo images argv
incr imgNo
label .text.img$imgNo -bitmap @[file dirname [lindex $argv 2]]/$value
.text window create insert -window .text.img$imgNo
lappend images [list $value [.text index insert-1c]]
}
proc html {start value} {
# Do Nothing
}
proc body {start value} {
# Do Nothing
}
proc title {start value} {
# Do Nothing
}
proc head {start value} {
# remove the header
global wantSpace first
.text delete $start insert
set wantSpace 0
set first 1
}
proc address {start value} {
.text delete $start [.text index insert]
set wantSpace 0
}
foreach header {h1 h2 h3 h4 h5 h6} {
proc $header {start value} "header \$start $header "
}
proc header {start header} {
global wantSpace __help_headers
lappend __help_headers "{[.text get $start insert]} $header $start"
.text insert insert \n
set wantSpace 0
# DO nothing else, since this manipulate the font
}
proc b {start value} {
# DO nothing, since this manipulate the font
}
proc i {start value} {
# DO nothing, since this manipulate the font
}
proc u {start value} {
.text tag add underline $start insert
}
proc s {start value} {
.text tag add strike $start insert
}
proc ol {start value} {
global indentlevel wantSpace
.text tag add indent$indentlevel $start insert
if {$indentlevel == 1} {
.text insert insert \n
set wantSpace 0
}
}
proc ul {start value} {
global indentlevel wantSpace
.text tag add indent$indentlevel $start insert
if {$indentlevel == 1} {
.text insert insert \n
set wantSpace 0
}
}
proc dl {start value} {
global indentlevel wantSpace
.text tag add indent$indentlevel $start insert
if {$indentlevel == 1} {
.text insert insert \n
set wantSpace 0
}
}
proc dt {value} {
global italic bold size last
.text tag add $italic$bold$size $last insert
set last [.text index insert]
set bold bold
.text insert insert \n
}
proc dd {value} {
global italic bold size last
.text tag add $italic$bold$size $last insert
set last [.text index insert]
set bold medium
.text insert insert " "
}
proc a {start value} {
global bold size __help_ref hyperref extHyperref
set type [lindex $value 0]
set val [lindex $value 1]
if {$type == "name"} {
set __help_ref($val) $start
} else { #type = href
if {[string index $val 0] == "\#"} {
lappend hyperref [list $start [.text index insert]\
[string range $val 1 end]]
} else {
lappend extHyperref [list $start [.text index insert] $val]
# .text insert insert " ($val)"
}
}
}
############################################################
# This function write the text widget to a file
############################################################
proc exportWidget file {
global __help_headers __help_ref hyperref images extHyperref
set OUT [open $file w]
puts $OUT "\#\# This file has been auto generated from makeman.tcl"
puts $OUT "\#\# on date [exec date]"
puts $OUT "\#\#\n\#\#\n"
puts $OUT "proc createHelpPage \{prefix\} \{"
puts $OUT "\tglobal __help_ref __help_headers __BASEDIR __system"
puts $OUT "set __help_headers {${__help_headers}}"
foreach key [array names __help_ref] {
puts $OUT "set __help_ref($key) {[set __help_ref($key)]}"
}
puts $OUT "\$prefix insert end {[.text get 1.0 end]}"
### writing the images
set imgNo 0
foreach img $images {
set value [lindex $img 0]
set index [lindex $img 1]
incr imgNo
puts $OUT "label \$prefix.img$imgNo -bitmap @\$__BASEDIR/$value"
puts $OUT "\$prefix window create $index -window \$prefix.img$imgNo"
}
### writing the tags
foreach tag [.text tag names] {
set ranges [.text tag ranges $tag]
if {$ranges != {}} {
foreach conf [.text tag configure $tag] {
if {[lindex $conf 4] != {}} {
puts $OUT "\$prefix tag configure $tag [lindex $conf 0] {[lindex $conf 4]}"
}
}
puts $OUT "\$prefix tag add $tag $ranges"
}
}
set i 0
foreach ref $hyperref {
set start [lindex $ref 0]
set end [lindex $ref 1]
set tag [lindex $ref 2]
puts $OUT "\$prefix tag add tag$i $start $end"
puts $OUT "\$prefix tag configure tag$i -underline 1"
puts $OUT "\$prefix tag bind tag$i <1> \"help`gotoTag $tag\""
incr i
}
foreach ref $extHyperref {
set start [lindex $ref 0]
set end [lindex $ref 1]
set tag [lindex $ref 2]
puts $OUT "\$prefix tag add tag$i $start $end"
puts $OUT "\$prefix tag configure tag$i -underline 1"
puts $OUT "\$prefix tag bind tag$i <1> \"startBrowser $tag\""
incr i
}
puts $OUT "\}"
close $OUT
}
############################################################
# main procedure.
# arguments: infile outfile basedir (for the Dotfile Generator)
############################################################
if {[llength $argv] < 1} {
puts "Syntax $argv0 infile \[outfile\]"
exit 1
}
set infile [lindex $argv 0]
set outfile [lindex $argv 1]
set hyperref {}
set extHyperref {}
set images {}
set IN [open $infile r]
set list [readFile $IN]
set newlist [translate $list]
pack [text .text -wrap word] -fill both -expand 1
convert $newlist
close $IN
exportWidget $outfile
exit 0
|