/usr/share/tcltk/tcllib1.16/doctools/changelog.tcl is in tcllib 1.16-dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # changelog.tcl --
#
# Handling of ChangeLog's.
#
# Copyright (c) 2003-2008 Andreas Kupries <andreas_kupries@sourceforge.net>
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: changelog.tcl,v 1.8 2008/07/08 23:03:58 andreas_kupries Exp $
# FUTURE -- Expand pre-parsed log (nested lists) into flat structures
# FUTURE -- => date/author/file/cref + cref/text
# FUTURE -- I.e. relational/tabular structure, useable in table displays,
# FUTURE -- sort by date, author, file to see aggregated changes
# FUTURE -- => Connectivity to 'struct::matrix', Reports!
package require Tcl 8.2
package require textutil
namespace eval ::doctools {}
namespace eval ::doctools::changelog {
namespace export scan flatten merge toDoctools
}
proc ::doctools::changelog::flatten {entries} {
# Reformat the entries into a simpler structure.
set result {}
foreach entry $entries {
foreach {date user sections} $entry break
set f {}
set t {}
foreach sec $sections {
foreach {files text} $sec break
foreach file $files { lappend f $file }
append t \n $text
}
set t [textutil::adjust::indent [textutil::adjust $t] " "]
lappend result \
"$date $user\n [join $f ", "]:\n$t"
}
return $result
}
# ::doctools::changelog::scan --
#
# Scan a ChangeLog generated by 'emacs' and extract the relevant information.
#
# Result
# List of entries. Each entry is a list of three elements. These
# are date, author, and commentary. The commentary is a list of
# sections. Each section is a list of two elements, a list of
# files, and the associated text.
proc ::doctools::changelog::scan {text} {
set text [split $text \n]
set n [llength $text]
set entries [list]
set clist [list]
set files [list]
set comment ""
set first 1
for {set i 0} {$i < $n} {incr i} {
set line [lindex $text $i]
if {[regexp "^\[^ \t\]" $line]} {
# No whitespace at the front, start a new entry
closeEntry
# For the upcoming entry. Quick extraction first, string
# based in case of failure.
if {[catch {
set date [string trim [lindex $line 0]]
set author [string trim [lrange $line 1 end]]
}]} {
set pos [string first " " $line]
set date [string trim [string range $line 0 $pos]]
set author [string trim [string range $line $pos end]]
}
continue
}
# Inside of an entry.
set line [string trim $line]
if {[string length $line] == 0} {
# Next comment section
closeSection
continue
}
# Line is not empty. Split into file and comment parts,
# remember the data.
if {[string first "* " $line] == 0} {
if {[regexp {^\* (.*):[ ]} $line full fname]} {
set line [string range $line [string length $full] end]
} elseif {[regexp {^\* (.*):$} $line full fname]} {
set line ""
} else {
# There is no filename
set fname ""
set line [string range $line 2 end] ; # Get rid of "* ".
}
set detail ""
while {[string first "(" $fname] >= 0} {
if {[regexp {\([^)]*\)} $fname detailx]} {
regsub {\([^)]*\)} $fname {} fnameNew
} elseif {[regexp {\([^)]*} $fname detailx]} {
regsub {\([^)]*} $fname {} fnameNew
} else {
break
}
append detail " " $detailx
set fname [string trim $fnameNew]
}
if {$detail != {}} {set line "$detail $line"}
if {$fname != {}} {lappend files $fname}
}
append comment $line\n
}
closeEntry
return $entries
}
proc ::doctools::changelog::closeSection {} {
upvar 1 clist clist comment comment files files
if {
([string length $comment] > 0) ||
([llength $files] > 0)
} {
lappend clist [list $files [string trim $comment]]
set files [list]
set comment ""
}
return
}
proc ::doctools::changelog::closeEntry {} {
upvar 1 clist clist comment comment files files first first \
date date author author entries entries
if {!$first} {
closeSection
lappend entries [list $date $author $clist]
}
set first 0
set clist [list]
set files [list]
set comment ""
return
}
# ::doctools::changelog::merge --
#
# Merge several preprocessed changelogs (see scan) into one structure.
proc ::doctools::changelog::merge {args} {
if {[llength $args] == 0} {return {}}
if {[llength $args] == 1} {return [lindex $args 0]}
set res [list]
array set tmp {}
# Merge up ...
foreach entries $args {
foreach e $entries {
foreach {date author comments} $e break
if {![info exists tmp($date,$author)]} {
lappend res [list $date $author]
set tmp($date,$author) $comments
} else {
foreach section $comments {
lappend tmp($date,$author) $section
}
}
}
}
# ... And construct the final result
set args $res
set res [list]
foreach key [lsort -decreasing $args] {
foreach {date author} $key break
lappend res [list $date $author $tmp($date,$author)]
}
return $res
}
# ::doctools::changelog::toDoctools --
#
# Convert a preprocessed changelog log (see scan) into a doctools page.
#
# Arguments:
# evar, cvar, fvar: Name of the variables containing the preprocessed log.
#
# Results:
# A string containing a properly formatted ChangeLog.
#
proc ::doctools::changelog::q {text} {return "\[$text\]"}
proc ::doctools::changelog::toDoctools {title module version entries} {
set linebuffer [list]
lappend linebuffer [q "manpage_begin [list ${title}-changelog n $version]"]
lappend linebuffer [q "titledesc [list "$title ChangeLog"]"]
lappend linebuffer [q "moddesc [list $module]"]
lappend linebuffer [q description]
lappend linebuffer [q "list_begin definitions compact"]
foreach entry $entries {
foreach {date author commentary} $entry break
lappend linebuffer [q "lst_item \"[q "emph [list $date]"] -- [string map {{"} {\"} {\"} {\\\"}} $author]\""]
if {[llength $commentary] > 0} {
lappend linebuffer [q nl]
}
foreach section $commentary {
foreach {files text} $section break
if {$text != {}} {
set text [string map {[ [lb] ] [rb]} [textutil::adjust $text]]
}
if {[llength $files] > 0} {
lappend linebuffer [q "list_begin definitions"]
foreach f $files {
lappend linebuffer [q "lst_item [q "file [list $f]"]"]
}
if {$text != {}} {
lappend linebuffer ""
lappend linebuffer $text
lappend linebuffer ""
}
lappend linebuffer [q list_end]
} elseif {$text != {}} {
# No files
lappend linebuffer [q "list_begin bullet"]
lappend linebuffer [q bullet]
lappend linebuffer ""
lappend linebuffer $text
lappend linebuffer ""
lappend linebuffer [q list_end]
}
}
lappend linebuffer [q nl]
}
lappend linebuffer [q list_end]
lappend linebuffer [q manpage_end]
return [join $linebuffer \n]
}
#------------------------------------
# Module initialization
package provide doctools::changelog 1.1
|